uawdijnntqw1x1x1
IP : 216.73.216.84
Hostname : webm003.cluster107.gra.hosting.ovh.net
Kernel : Linux webm003.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
opticamezl
/
www
/
newok
/
bin
/
..
/
07d6c
/
..
/
files
/
..
/
files
/
..
/
tmp
/
..
/
vendor.tar
/
/
autoload.php000064400000001354151666572340007107 0ustar00<?php // 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; } } throw new RuntimeException($err); } require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInitcf47a1892afdee14a54635974d33870c::getLoader(); symfony/polyfill-php82/Php82.php000064400000030322151666572340012472 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Php82; /** * @author Alexander M. Turek <me@derrabus.de> * @author Greg Roach <greg@subaqua.co.uk> * * @internal */ class Php82 { /** * Determines if a string matches the ODBC quoting rules. * * A valid quoted string begins with a '{', ends with a '}', and has no '}' * inside of the string that aren't repeated (as to be escaped). * * These rules are what .NET also follows. * * @see https://github.com/php/php-src/blob/838f6bffff6363a204a2597cbfbaad1d7ee3f2b6/main/php_odbc_utils.c#L31-L57 */ public static function odbc_connection_string_is_quoted(string $str): bool { if ('' === $str || '{' !== $str[0]) { return false; } /* Check for } that aren't doubled up or at the end of the string */ $length = \strlen($str) - 1; for ($i = 0; $i < $length; ++$i) { if ('}' !== $str[$i]) { continue; } if ('}' !== $str[++$i]) { return $i === $length; } } return true; } /** * Determines if a value for a connection string should be quoted. * * The ODBC specification mentions: * "Because of connection string and initialization file grammar, keywords and * attribute values that contain the characters []{}(),;?*=!@ not enclosed * with braces should be avoided." * * Note that it assumes that the string is *not* already quoted. You should * check beforehand. * * @see https://github.com/php/php-src/blob/838f6bffff6363a204a2597cbfbaad1d7ee3f2b6/main/php_odbc_utils.c#L59-L73 */ public static function odbc_connection_string_should_quote(string $str): bool { return false !== strpbrk($str, '[]{}(),;?*=!@'); } public static function odbc_connection_string_quote(string $str): string { return '{'.str_replace('}', '}}', $str).'}'; } /** * Implementation closely based on the original C code - including the GOTOs * and pointer-style string access. * * @see https://github.com/php/php-src/blob/master/Zend/zend_ini.c */ public static function ini_parse_quantity(string $value): int { // Avoid dependency on ctype_space() $ctype_space = " \t\v\r\n\f"; $str = 0; $str_end = \strlen($value); $digits = $str; $overflow = false; /* Ignore leading whitespace, but keep it for error messages. */ while ($digits < $str_end && false !== strpos($ctype_space, $value[$digits])) { ++$digits; } /* Ignore trailing whitespace, but keep it for error messages. */ while ($digits < $str_end && false !== strpos($ctype_space, $value[$str_end - 1])) { --$str_end; } if ($digits === $str_end) { return 0; } $is_negative = false; if ('+' === $value[$digits]) { ++$digits; } elseif ('-' === $value[$digits]) { $is_negative = true; ++$digits; } if ($value[$digits] < '0' || $value[$digits] > 9) { $message = sprintf( 'Invalid quantity "%s": no valid leading digits, interpreting as "0" for backwards compatibility', self::escapeString($value) ); trigger_error($message, \E_USER_WARNING); return 0; } $base = 10; $allowed_digits = '0123456789'; if ('0' === $value[$digits] && ($digits + 1 === $str_end || false === strpos($allowed_digits, $value[$digits + 1]))) { if ($digits + 1 === $str_end) { return 0; } switch ($value[$digits + 1]) { case 'g': case 'G': case 'm': case 'M': case 'k': case 'K': goto evaluation; case 'x': case 'X': $base = 16; $allowed_digits = '0123456789abcdefABCDEF'; break; case 'o': case 'O': $base = 8; $allowed_digits = '01234567'; break; case 'b': case 'B': $base = 2; $allowed_digits = '01'; break; default: $message = sprintf( 'Invalid prefix "0%s", interpreting as "0" for backwards compatibility', $value[$digits + 1] ); trigger_error($message, \E_USER_WARNING); return 0; } $digits += 2; if ($digits === $str_end) { $message = sprintf( 'Invalid quantity "%s": no digits after base prefix, interpreting as "0" for backwards compatibility', self::escapeString($value) ); trigger_error($message, \E_USER_WARNING); return 0; } $digits_consumed = $digits; /* Ignore leading whitespace. */ while ($digits_consumed < $str_end && false !== strpos($ctype_space, $value[$digits_consumed])) { ++$digits_consumed; } if ($digits_consumed !== $str_end && ('+' === $value[$digits_consumed] || '-' === $value[$digits_consumed])) { ++$digits_consumed; } if ('0' === $value[$digits_consumed]) { /* Value is just 0 */ if ($digits_consumed + 1 === $str_end) { goto evaluation; } switch ($value[$digits_consumed + 1]) { case 'x': case 'X': case 'o': case 'O': case 'b': case 'B': $digits_consumed += 2; break; } } if ($digits !== $digits_consumed) { $message = sprintf( 'Invalid quantity "%s": no digits after base prefix, interpreting as "0" for backwards compatibility', self::escapeString($value) ); trigger_error($message, \E_USER_WARNING); return 0; } } evaluation: if (10 === $base && '0' === $value[$digits]) { $base = 8; $allowed_digits = '01234567'; } while ($digits < $str_end && ' ' === $value[$digits]) { ++$digits; } if ($digits < $str_end && '+' === $value[$digits]) { ++$digits; } elseif ($digits < $str_end && '-' === $value[$digits]) { $is_negative = true; $overflow = true; ++$digits; } $digits_end = $digits; while ($digits_end < $str_end && false !== strpos($allowed_digits, $value[$digits_end])) { ++$digits_end; } $retval = base_convert(substr($value, $digits, $digits_end - $digits), $base, 10); if ($is_negative && '0' === $retval) { $is_negative = false; $overflow = false; } // Check for overflow - remember that -PHP_INT_MIN = 1 + PHP_INT_MAX if ($is_negative) { $signed_max = strtr((string) \PHP_INT_MIN, ['-' => '']); } else { $signed_max = (string) \PHP_INT_MAX; } $max_length = max(\strlen($retval), \strlen($signed_max)); $tmp1 = str_pad($retval, $max_length, '0', \STR_PAD_LEFT); $tmp2 = str_pad($signed_max, $max_length, '0', \STR_PAD_LEFT); if ($tmp1 > $tmp2) { $retval = -1; $overflow = true; } elseif ($is_negative) { $retval = '-'.$retval; } $retval = (int) $retval; if ($digits_end === $digits) { $message = sprintf( 'Invalid quantity "%s": no valid leading digits, interpreting as "0" for backwards compatibility', self::escapeString($value) ); trigger_error($message, \E_USER_WARNING); return 0; } /* Allow for whitespace between integer portion and any suffix character */ while ($digits_end < $str_end && false !== strpos($ctype_space, $value[$digits_end])) { ++$digits_end; } /* No exponent suffix. */ if ($digits_end === $str_end) { goto end; } switch ($value[$str_end - 1]) { case 'g': case 'G': $shift = 30; break; case 'm': case 'M': $shift = 20; break; case 'k': case 'K': $shift = 10; break; default: /* Unknown suffix */ $invalid = self::escapeString($value); $interpreted = self::escapeString(substr($value, $str, $digits_end - $str)); $chr = self::escapeString($value[$str_end - 1]); $message = sprintf( 'Invalid quantity "%s": unknown multiplier "%s", interpreting as "%s" for backwards compatibility', $invalid, $chr, $interpreted ); trigger_error($message, \E_USER_WARNING); return $retval; } $factor = 1 << $shift; if (!$overflow) { if ($retval > 0) { $overflow = $retval > \PHP_INT_MAX / $factor; } else { $overflow = $retval < \PHP_INT_MIN / $factor; } } if (\is_float($retval * $factor)) { $overflow = true; $retval <<= $shift; } else { $retval *= $factor; } if ($digits_end !== $str_end - 1) { /* More than one character in suffix */ $message = sprintf( 'Invalid quantity "%s", interpreting as "%s%s" for backwards compatibility', self::escapeString($value), self::escapeString(substr($value, $str, $digits_end - $str)), self::escapeString($value[$str_end - 1]) ); trigger_error($message, \E_USER_WARNING); return $retval; } end: if ($overflow) { /* Not specifying the resulting value here because the caller may make * additional conversions. Not specifying the allowed range * because the caller may do narrower range checks. */ $message = sprintf( 'Invalid quantity "%s": value is out of range, using overflow result for backwards compatibility', self::escapeString($value) ); trigger_error($message, \E_USER_WARNING); } return $retval; } /** * Escape the string to avoid null bytes and to make non-printable chars visible. */ private static function escapeString(string $string): string { $escaped = ''; for ($n = 0, $len = \strlen($string); $n < $len; ++$n) { $c = \ord($string[$n]); if ($c < 32 || '\\' === $string[$n] || $c > 126) { switch ($string[$n]) { case "\n": $escaped .= '\\n'; break; case "\r": $escaped .= '\\r'; break; case "\t": $escaped .= '\\t'; break; case "\f": $escaped .= '\\f'; break; case "\v": $escaped .= '\\v'; break; case '\\': $escaped .= '\\\\'; break; case "\x1B": $escaped .= '\\e'; break; default: $escaped .= '\\x'.strtoupper(sprintf('%02x', $c)); } } else { $escaped .= $string[$n]; } } return $escaped; } } symfony/polyfill-php82/Random/Engine/Secure.php000064400000002250151666572340015443 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Php82\Random\Engine; use Random\RandomException; use Symfony\Polyfill\Php82\NoDynamicProperties; /** * @author Tim Düsterhus <tim@bastelstu.be> * @author Anton Smirnov <sandfox@sandfox.me> * * @internal */ class Secure { use NoDynamicProperties; public function generate(): string { try { return random_bytes(\PHP_INT_SIZE); } catch (\Exception $e) { throw new RandomException($e->getMessage(), $e->getCode(), $e->getPrevious()); } } public function __sleep(): array { throw new \Exception("Serialization of 'Random\Engine\Secure' is not allowed"); } public function __wakeup(): void { throw new \Exception("Unserialization of 'Random\Engine\Secure' is not allowed"); } public function __clone() { throw new \Error('Trying to clone an uncloneable object of class Random\Engine\Secure'); } } symfony/polyfill-php82/SensitiveParameterValue.php000064400000001624151666572340016403 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Php82; /** * @author Tim Düsterhus <duesterhus@woltlab.com> * * @internal */ class SensitiveParameterValue { private $value; public function __construct($value) { $this->value = $value; } public function getValue() { return $this->value; } public function __debugInfo(): array { return []; } public function __sleep(): array { throw new \Exception("Serialization of 'SensitiveParameterValue' is not allowed"); } public function __wakeup(): void { throw new \Exception("Unserialization of 'SensitiveParameterValue' is not allowed"); } } symfony/polyfill-php82/LICENSE000064400000002054151666572340012066 0ustar00Copyright (c) 2022-present Fabien Potencier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. symfony/polyfill-php82/composer.json000064400000001624151666572340013605 0ustar00{ "name": "symfony/polyfill-php82", "type": "library", "description": "Symfony polyfill backporting some PHP 8.2+ features to lower PHP versions", "keywords": ["polyfill", "shim", "compatibility", "portable"], "homepage": "https://symfony.com", "license": "MIT", "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "require": { "php": ">=7.2" }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Php82\\": "" }, "files": [ "bootstrap.php" ], "classmap": [ "Resources/stubs" ] }, "minimum-stability": "dev", "extra": { "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } } } symfony/polyfill-php82/bootstrap.php000064400000002124151666572340013605 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Symfony\Polyfill\Php82 as p; if (\PHP_VERSION_ID >= 80200) { return; } if (extension_loaded('odbc')) { if (!function_exists('odbc_connection_string_is_quoted')) { function odbc_connection_string_is_quoted(string $str): bool { return p\Php82::odbc_connection_string_is_quoted($str); } } if (!function_exists('odbc_connection_string_should_quote')) { function odbc_connection_string_should_quote(string $str): bool { return p\Php82::odbc_connection_string_should_quote($str); } } if (!function_exists('odbc_connection_string_quote')) { function odbc_connection_string_quote(string $str): string { return p\Php82::odbc_connection_string_quote($str); } } } if (!function_exists('ini_parse_quantity')) { function ini_parse_quantity(string $shorthand): int { return p\Php82::ini_parse_quantity($shorthand); } } symfony/polyfill-php82/NoDynamicProperties.php000064400000000733151666572340015532 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Php82; /** * @internal */ trait NoDynamicProperties { public function __set(string $name, $value): void { throw new \Error('Cannot create dynamic property '.self::class.'::$'.$name); } } symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php000064400000000646151666572340020523 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80200) { #[Attribute(Attribute::TARGET_PARAMETER)] final class SensitiveParameter { public function __construct() { } } } symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php000064400000000661151666572340020561 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Random\Engine; use Symfony\Polyfill\Php82 as p; if (\PHP_VERSION_ID < 80200) { final class Secure extends p\Random\Engine\Secure implements \Random\CryptoSafeEngine { } } symfony/polyfill-php82/Resources/stubs/Random/Engine.php000064400000000557151666572340017337 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Random; if (\PHP_VERSION_ID < 80200) { interface Engine { public function generate(): string; } } symfony/polyfill-php82/Resources/stubs/Random/RandomException.php000064400000000655151666572340021230 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Random; use Symfony\Polyfill\Php82\NoDynamicProperties; if (\PHP_VERSION_ID < 80200) { class RandomException extends \Exception { use NoDynamicProperties; } } symfony/polyfill-php82/Resources/stubs/Random/RandomError.php000064400000000645151666572340020362 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Random; use Symfony\Polyfill\Php82\NoDynamicProperties; if (\PHP_VERSION_ID < 80200) { class RandomError extends \Error { use NoDynamicProperties; } } symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php000064400000000534151666572340021332 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Random; if (\PHP_VERSION_ID < 80200) { interface CryptoSafeEngine extends Engine { } } symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php000064400000000544151666572340022647 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Random; if (\PHP_VERSION_ID < 80200) { class BrokenRandomEngineError extends RandomError { } } symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php000064400000000646151666572340021351 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80200) { #[Attribute(Attribute::TARGET_CLASS)] final class AllowDynamicProperties { public function __construct() { } } } symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php000064400000000572151666572340021516 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80200) { final class SensitiveParameterValue extends Symfony\Polyfill\Php82\SensitiveParameterValue { } } symfony/polyfill-php81/bootstrap.php000064400000001342151666572340013605 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Symfony\Polyfill\Php81 as p; if (\PHP_VERSION_ID >= 80100) { return; } if (defined('MYSQLI_REFRESH_SLAVE') && !defined('MYSQLI_REFRESH_REPLICA')) { define('MYSQLI_REFRESH_REPLICA', 64); } if (!function_exists('array_is_list')) { function array_is_list(array $array): bool { return p\Php81::array_is_list($array); } } if (!function_exists('enum_exists')) { function enum_exists(string $enum, bool $autoload = true): bool { return $autoload && class_exists($enum) && false; } } symfony/polyfill-php81/LICENSE000064400000002054151666572340012065 0ustar00Copyright (c) 2021-present Fabien Potencier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. symfony/polyfill-php81/composer.json000064400000001624151666572340013604 0ustar00{ "name": "symfony/polyfill-php81", "type": "library", "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", "keywords": ["polyfill", "shim", "compatibility", "portable"], "homepage": "https://symfony.com", "license": "MIT", "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "require": { "php": ">=7.2" }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Php81\\": "" }, "files": [ "bootstrap.php" ], "classmap": [ "Resources/stubs" ] }, "minimum-stability": "dev", "extra": { "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } } } symfony/polyfill-php81/Php81.php000064400000001306151666572340012470 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Php81; /** * @author Nicolas Grekas <p@tchwork.com> * * @internal */ final class Php81 { public static function array_is_list(array $array): bool { if ([] === $array || $array === array_values($array)) { return true; } $nextKey = -1; foreach ($array as $k => $v) { if ($k !== ++$nextKey) { return false; } } return true; } } symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php000064400000000645151666572340020766 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80100) { #[Attribute(Attribute::TARGET_METHOD)] final class ReturnTypeWillChange { public function __construct() { } } } symfony/polyfill-php81/Resources/stubs/CURLStringFile.php000064400000002633151666572340017442 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID >= 70400 && extension_loaded('curl')) { /** * @property string $data */ class CURLStringFile extends CURLFile { private $data; public function __construct(string $data, string $postname, string $mime = 'application/octet-stream') { $this->data = $data; parent::__construct('data://application/octet-stream;base64,'.base64_encode($data), $mime, $postname); } public function __set(string $name, $value): void { if ('data' !== $name) { $this->$name = $value; return; } if (is_object($value) ? !method_exists($value, '__toString') : !is_scalar($value)) { throw new TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string'); } $this->name = 'data://application/octet-stream;base64,'.base64_encode($value); } public function __isset(string $name): bool { return isset($this->$name); } public function &__get(string $name) { return $this->$name; } } } symfony/polyfill-php83/composer.json000064400000001624151666572340013606 0ustar00{ "name": "symfony/polyfill-php83", "type": "library", "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", "keywords": ["polyfill", "shim", "compatibility", "portable"], "homepage": "https://symfony.com", "license": "MIT", "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "require": { "php": ">=7.2" }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Php83\\": "" }, "files": [ "bootstrap.php" ], "classmap": [ "Resources/stubs" ] }, "minimum-stability": "dev", "extra": { "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } } } symfony/polyfill-php83/Resources/stubs/DateException.php000064400000000505151666572340017440 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { class DateException extends Exception { } } symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php000064400000000531151666572340022627 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { class DateInvalidOperationException extends DateException { } } symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php000064400000000540151666572340024162 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { class DateMalformedIntervalStringException extends DateException { } } symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php000064400000000510151666572340020003 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { class SQLite3Exception extends Exception { } } symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php000064400000000530151666572340022420 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { class DateInvalidTimeZoneException extends DateException { } } symfony/polyfill-php83/Resources/stubs/DateObjectError.php000064400000000507151666572340017724 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { class DateObjectError extends DateError { } } symfony/polyfill-php83/Resources/stubs/DateRangeError.php000064400000000506151666572340017551 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { class DateRangeError extends DateError { } } symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php000064400000000530151666572340022454 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { class DateMalformedStringException extends DateException { } } symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php000064400000000536151666572340023625 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { class DateMalformedPeriodStringException extends DateException { } } symfony/polyfill-php83/Resources/stubs/DateError.php000064400000000475151666572340016601 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { class DateError extends Error { } } symfony/polyfill-php83/Resources/stubs/Override.php000064400000000631151666572340016463 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80300) { #[Attribute(Attribute::TARGET_METHOD)] final class Override { public function __construct() { } } } symfony/polyfill-php83/bootstrap.php000064400000003666151666572340013622 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Symfony\Polyfill\Php83 as p; if (\PHP_VERSION_ID >= 80300) { return; } if (!function_exists('json_validate')) { function json_validate(string $json, int $depth = 512, int $flags = 0): bool { return p\Php83::json_validate($json, $depth, $flags); } } if (extension_loaded('mbstring')) { if (!function_exists('mb_str_pad')) { function mb_str_pad(string $string, int $length, string $pad_string = ' ', int $pad_type = STR_PAD_RIGHT, ?string $encoding = null): string { return p\Php83::mb_str_pad($string, $length, $pad_string, $pad_type, $encoding); } } } if (!function_exists('stream_context_set_options')) { function stream_context_set_options($context, array $options): bool { return stream_context_set_option($context, $options); } } if (!function_exists('str_increment')) { function str_increment(string $string): string { return p\Php83::str_increment($string); } } if (!function_exists('str_decrement')) { function str_decrement(string $string): string { return p\Php83::str_decrement($string); } } if (\PHP_VERSION_ID >= 80100) { return require __DIR__.'/bootstrap81.php'; } if (!function_exists('ldap_exop_sync') && function_exists('ldap_exop')) { function ldap_exop_sync($ldap, string $request_oid, ?string $request_data = null, ?array $controls = null, &$response_data = null, &$response_oid = null): bool { return ldap_exop($ldap, $request_oid, $request_data, $controls, $response_data, $response_oid); } } if (!function_exists('ldap_connect_wallet') && function_exists('ldap_connect')) { function ldap_connect_wallet(?string $uri, string $wallet, string $password, int $auth_mode = \GSLC_SSL_NO_AUTH) { return ldap_connect($uri, $wallet, $password, $auth_mode); } } symfony/polyfill-php83/bootstrap81.php000064400000001672151666572340013766 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID >= 80300) { return; } if (!function_exists('ldap_exop_sync') && function_exists('ldap_exop')) { function ldap_exop_sync(\LDAP\Connection $ldap, string $request_oid, ?string $request_data = null, ?array $controls = null, &$response_data = null, &$response_oid = null): bool { return ldap_exop($ldap, $request_oid, $request_data, $controls, $response_data, $response_oid); } } if (!function_exists('ldap_connect_wallet') && function_exists('ldap_connect')) { function ldap_connect_wallet(?string $uri, string $wallet, #[\SensitiveParameter] string $password, int $auth_mode = \GSLC_SSL_NO_AUTH): \LDAP\Connection|false { return ldap_connect($uri, $wallet, $password, $auth_mode); } } symfony/polyfill-php83/LICENSE000064400000002054151666572340012067 0ustar00Copyright (c) 2022-present Fabien Potencier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. symfony/polyfill-php83/Php83.php000064400000015354151666572340012504 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Php83; /** * @author Ion Bazan <ion.bazan@gmail.com> * @author Pierre Ambroise <pierre27.ambroise@gmail.com> * * @internal */ final class Php83 { private const JSON_MAX_DEPTH = 0x7FFFFFFF; // see https://www.php.net/manual/en/function.json-decode.php public static function json_validate(string $json, int $depth = 512, int $flags = 0): bool { if (0 !== $flags && \defined('JSON_INVALID_UTF8_IGNORE') && \JSON_INVALID_UTF8_IGNORE !== $flags) { throw new \ValueError('json_validate(): Argument #3 ($flags) must be a valid flag (allowed flags: JSON_INVALID_UTF8_IGNORE)'); } if ($depth <= 0) { throw new \ValueError('json_validate(): Argument #2 ($depth) must be greater than 0'); } if ($depth > self::JSON_MAX_DEPTH) { throw new \ValueError(sprintf('json_validate(): Argument #2 ($depth) must be less than %d', self::JSON_MAX_DEPTH)); } json_decode($json, true, $depth, $flags); return \JSON_ERROR_NONE === json_last_error(); } public static function mb_str_pad(string $string, int $length, string $pad_string = ' ', int $pad_type = \STR_PAD_RIGHT, ?string $encoding = null): string { if (!\in_array($pad_type, [\STR_PAD_RIGHT, \STR_PAD_LEFT, \STR_PAD_BOTH], true)) { throw new \ValueError('mb_str_pad(): Argument #4 ($pad_type) must be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH'); } if (null === $encoding) { $encoding = mb_internal_encoding(); } try { $validEncoding = @mb_check_encoding('', $encoding); } catch (\ValueError $e) { throw new \ValueError(sprintf('mb_str_pad(): Argument #5 ($encoding) must be a valid encoding, "%s" given', $encoding)); } // BC for PHP 7.3 and lower if (!$validEncoding) { throw new \ValueError(sprintf('mb_str_pad(): Argument #5 ($encoding) must be a valid encoding, "%s" given', $encoding)); } if (mb_strlen($pad_string, $encoding) <= 0) { throw new \ValueError('mb_str_pad(): Argument #3 ($pad_string) must be a non-empty string'); } $paddingRequired = $length - mb_strlen($string, $encoding); if ($paddingRequired < 1) { return $string; } switch ($pad_type) { case \STR_PAD_LEFT: return mb_substr(str_repeat($pad_string, $paddingRequired), 0, $paddingRequired, $encoding).$string; case \STR_PAD_RIGHT: return $string.mb_substr(str_repeat($pad_string, $paddingRequired), 0, $paddingRequired, $encoding); default: $leftPaddingLength = floor($paddingRequired / 2); $rightPaddingLength = $paddingRequired - $leftPaddingLength; return mb_substr(str_repeat($pad_string, $leftPaddingLength), 0, $leftPaddingLength, $encoding).$string.mb_substr(str_repeat($pad_string, $rightPaddingLength), 0, $rightPaddingLength, $encoding); } } public static function str_increment(string $string): string { if ('' === $string) { throw new \ValueError('str_increment(): Argument #1 ($string) cannot be empty'); } if (!preg_match('/^[a-zA-Z0-9]+$/', $string)) { throw new \ValueError('str_increment(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters'); } if (is_numeric($string)) { $offset = stripos($string, 'e'); if (false !== $offset) { $char = $string[$offset]; ++$char; $string[$offset] = $char; ++$string; switch ($string[$offset]) { case 'f': $string[$offset] = 'e'; break; case 'F': $string[$offset] = 'E'; break; case 'g': $string[$offset] = 'f'; break; case 'G': $string[$offset] = 'F'; break; } return $string; } } return ++$string; } public static function str_decrement(string $string): string { if ('' === $string) { throw new \ValueError('str_decrement(): Argument #1 ($string) cannot be empty'); } if (!preg_match('/^[a-zA-Z0-9]+$/', $string)) { throw new \ValueError('str_decrement(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters'); } if (preg_match('/\A(?:0[aA0]?|[aA])\z/', $string)) { throw new \ValueError(sprintf('str_decrement(): Argument #1 ($string) "%s" is out of decrement range', $string)); } if (!\in_array(substr($string, -1), ['A', 'a', '0'], true)) { return implode('', \array_slice(str_split($string), 0, -1)).\chr(\ord(substr($string, -1)) - 1); } $carry = ''; $decremented = ''; for ($i = \strlen($string) - 1; $i >= 0; --$i) { $char = $string[$i]; switch ($char) { case 'A': if ('' !== $carry) { $decremented = $carry.$decremented; $carry = ''; } $carry = 'Z'; break; case 'a': if ('' !== $carry) { $decremented = $carry.$decremented; $carry = ''; } $carry = 'z'; break; case '0': if ('' !== $carry) { $decremented = $carry.$decremented; $carry = ''; } $carry = '9'; break; case '1': if ('' !== $carry) { $decremented = $carry.$decremented; $carry = ''; } break; default: if ('' !== $carry) { $decremented = $carry.$decremented; $carry = ''; } if (!\in_array($char, ['A', 'a', '0'], true)) { $decremented = \chr(\ord($char) - 1).$decremented; } } } return $decremented; } } symfony/polyfill-php84/composer.json000064400000001624151666572340013607 0ustar00{ "name": "symfony/polyfill-php84", "type": "library", "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", "keywords": ["polyfill", "shim", "compatibility", "portable"], "homepage": "https://symfony.com", "license": "MIT", "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "require": { "php": ">=7.2" }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Php84\\": "" }, "files": [ "bootstrap.php" ], "classmap": [ "Resources/stubs" ] }, "minimum-stability": "dev", "extra": { "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } } } symfony/polyfill-php84/Php84.php000064400000020342151666572340012477 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Php84; /** * @author Ayesh Karunaratne <ayesh@aye.sh> * @author Pierre Ambroise <pierre27.ambroise@gmail.com> * * @internal */ final class Php84 { public static function mb_ucfirst(string $string, ?string $encoding = null): string { if (null === $encoding) { $encoding = mb_internal_encoding(); } try { $validEncoding = @mb_check_encoding('', $encoding); } catch (\ValueError $e) { throw new \ValueError(sprintf('mb_ucfirst(): Argument #2 ($encoding) must be a valid encoding, "%s" given', $encoding)); } // BC for PHP 7.3 and lower if (!$validEncoding) { throw new \ValueError(sprintf('mb_ucfirst(): Argument #2 ($encoding) must be a valid encoding, "%s" given', $encoding)); } $firstChar = mb_substr($string, 0, 1, $encoding); $firstChar = mb_convert_case($firstChar, \MB_CASE_TITLE, $encoding); return $firstChar.mb_substr($string, 1, null, $encoding); } public static function mb_lcfirst(string $string, ?string $encoding = null): string { if (null === $encoding) { $encoding = mb_internal_encoding(); } try { $validEncoding = @mb_check_encoding('', $encoding); } catch (\ValueError $e) { throw new \ValueError(sprintf('mb_lcfirst(): Argument #2 ($encoding) must be a valid encoding, "%s" given', $encoding)); } // BC for PHP 7.3 and lower if (!$validEncoding) { throw new \ValueError(sprintf('mb_lcfirst(): Argument #2 ($encoding) must be a valid encoding, "%s" given', $encoding)); } $firstChar = mb_substr($string, 0, 1, $encoding); $firstChar = mb_convert_case($firstChar, \MB_CASE_LOWER, $encoding); return $firstChar.mb_substr($string, 1, null, $encoding); } public static function array_find(array $array, callable $callback) { foreach ($array as $key => $value) { if ($callback($value, $key)) { return $value; } } return null; } public static function array_find_key(array $array, callable $callback) { foreach ($array as $key => $value) { if ($callback($value, $key)) { return $key; } } return null; } public static function array_any(array $array, callable $callback): bool { foreach ($array as $key => $value) { if ($callback($value, $key)) { return true; } } return false; } public static function array_all(array $array, callable $callback): bool { foreach ($array as $key => $value) { if (!$callback($value, $key)) { return false; } } return true; } public static function fpow(float $num, float $exponent): float { return $num ** $exponent; } public static function mb_trim(string $string, ?string $characters = null, ?string $encoding = null): string { return self::mb_internal_trim('{^[%s]+|[%1$s]+$}Du', $string, $characters, $encoding, __FUNCTION__); } public static function mb_ltrim(string $string, ?string $characters = null, ?string $encoding = null): string { return self::mb_internal_trim('{^[%s]+}Du', $string, $characters, $encoding, __FUNCTION__); } public static function mb_rtrim(string $string, ?string $characters = null, ?string $encoding = null): string { return self::mb_internal_trim('{[%s]+$}Du', $string, $characters, $encoding, __FUNCTION__); } private static function mb_internal_trim(string $regex, string $string, ?string $characters, ?string $encoding, string $function): string { if (null === $encoding) { $encoding = mb_internal_encoding(); } try { $validEncoding = @mb_check_encoding('', $encoding); } catch (\ValueError $e) { throw new \ValueError(sprintf('%s(): Argument #3 ($encoding) must be a valid encoding, "%s" given', $function, $encoding)); } // BC for PHP 7.3 and lower if (!$validEncoding) { throw new \ValueError(sprintf('%s(): Argument #3 ($encoding) must be a valid encoding, "%s" given', $function, $encoding)); } if ('' === $characters) { return null === $encoding ? $string : mb_convert_encoding($string, $encoding); } if ('UTF-8' === $encoding || \in_array(strtolower($encoding), ['utf-8', 'utf8'], true)) { $encoding = 'UTF-8'; } $string = mb_convert_encoding($string, 'UTF-8', $encoding); if (null !== $characters) { $characters = mb_convert_encoding($characters, 'UTF-8', $encoding); } if (null === $characters) { $characters = "\\0 \f\n\r\t\v\u{00A0}\u{1680}\u{2000}\u{2001}\u{2002}\u{2003}\u{2004}\u{2005}\u{2006}\u{2007}\u{2008}\u{2009}\u{200A}\u{2028}\u{2029}\u{202F}\u{205F}\u{3000}\u{0085}\u{180E}"; } else { $characters = preg_quote($characters); } $string = preg_replace(sprintf($regex, $characters), '', $string); if ('UTF-8' === $encoding) { return $string; } return mb_convert_encoding($string, $encoding, 'UTF-8'); } public static function grapheme_str_split(string $string, int $length) { if (0 > $length || 1073741823 < $length) { throw new \ValueError('grapheme_str_split(): Argument #2 ($length) must be greater than 0 and less than or equal to 1073741823.'); } if ('' === $string) { return []; } $regex = ((float) \PCRE_VERSION < 10 ? (float) \PCRE_VERSION >= 8.32 : (float) \PCRE_VERSION >= 10.39) ? '\X' : '(?:\r\n|(?:[ -~\x{200C}\x{200D}]|[ᆨ-ᇹ]+|[ᄀ-ᅟ]*(?:[가개갸걔거게겨계고과괘괴교구궈궤귀규그긔기까깨꺄꺠꺼께껴꼐꼬꽈꽤꾀꾜꾸꿔꿰뀌뀨끄끠끼나내냐냬너네녀녜노놔놰뇌뇨누눠눼뉘뉴느늬니다대댜댸더데뎌뎨도돠돼되됴두둬뒈뒤듀드듸디따때땨떄떠떼뗘뗴또똬뙈뙤뚀뚜뚸뛔뛰뜌뜨띄띠라래랴럐러레려례로롸뢔뢰료루뤄뤠뤼류르릐리마매먀먜머메며몌모뫄뫠뫼묘무뭐뭬뮈뮤므믜미바배뱌뱨버베벼볘보봐봬뵈뵤부붜붸뷔뷰브븨비빠빼뺘뺴뻐뻬뼈뼤뽀뽜뽸뾔뾰뿌뿨쀄쀠쀼쁘쁴삐사새샤섀서세셔셰소솨쇄쇠쇼수숴쉐쉬슈스싀시싸쌔쌰썌써쎄쎠쎼쏘쏴쐐쐬쑈쑤쒀쒜쒸쓔쓰씌씨아애야얘어에여예오와왜외요우워웨위유으의이자재쟈쟤저제져졔조좌좨죄죠주줘줴쥐쥬즈즤지짜째쨔쨰쩌쩨쪄쪠쪼쫘쫴쬐쬬쭈쭤쮀쮜쮸쯔쯰찌차채챠챼처체쳐쳬초촤쵀최쵸추춰췌취츄츠츼치카캐캬컈커케켜켸코콰쾌쾨쿄쿠쿼퀘퀴큐크킈키타태탸턔터테텨톄토톼퇘퇴툐투퉈퉤튀튜트틔티파패퍄퍠퍼페펴폐포퐈퐤푀표푸풔풰퓌퓨프픠피하해햐햬허헤혀혜호화홰회효후훠훼휘휴흐희히]?[ᅠ-ᆢ]+|[가-힣])[ᆨ-ᇹ]*|[ᄀ-ᅟ]+|[^\p{Cc}\p{Cf}\p{Zl}\p{Zp}])[\p{Mn}\p{Me}\x{09BE}\x{09D7}\x{0B3E}\x{0B57}\x{0BBE}\x{0BD7}\x{0CC2}\x{0CD5}\x{0CD6}\x{0D3E}\x{0D57}\x{0DCF}\x{0DDF}\x{200C}\x{200D}\x{1D165}\x{1D16E}-\x{1D172}]*|[\p{Cc}\p{Cf}\p{Zl}\p{Zp}])'; if (!preg_match_all('/'. $regex .'/u', $string, $matches)) { return false; } if (1 === $length) { return $matches[0]; } $chunks = array_chunk($matches[0], $length); foreach ($chunks as &$chunk) { $chunk = implode('', $chunk); } return $chunks; } public static function bcdivmod(string $num1, string $num2, ?int $scale = null): ?array { if (null === $quot = \bcdiv($num1, $num2, 0)) { return null; } $scale = $scale ?? (\PHP_VERSION_ID >= 70300 ? \bcscale() : (ini_get('bcmath.scale') ?: 0)); return [$quot, \bcmod($num1, $num2, $scale)]; } } symfony/polyfill-php84/bootstrap.php000064400000006000151666572340013604 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Symfony\Polyfill\Php84 as p; if (\PHP_VERSION_ID >= 80400) { return; } if (defined('CURL_VERSION_HTTP3') || PHP_VERSION_ID < 80200 && function_exists('curl_version') && curl_version()['version'] >= 0x074200) { // libcurl >= 7.66.0 if (!defined('CURL_HTTP_VERSION_3')) { define('CURL_HTTP_VERSION_3', 30); } if (!defined('CURL_HTTP_VERSION_3ONLY') && defined('CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256')) { // libcurl >= 7.80.0 (7.88 would be better but is slow to check) define('CURL_HTTP_VERSION_3ONLY', 31); } } if (!function_exists('array_find')) { function array_find(array $array, callable $callback) { return p\Php84::array_find($array, $callback); } } if (!function_exists('array_find_key')) { function array_find_key(array $array, callable $callback) { return p\Php84::array_find_key($array, $callback); } } if (!function_exists('array_any')) { function array_any(array $array, callable $callback): bool { return p\Php84::array_any($array, $callback); } } if (!function_exists('array_all')) { function array_all(array $array, callable $callback): bool { return p\Php84::array_all($array, $callback); } } if (!function_exists('fpow')) { function fpow(float $num, float $exponent): float { return p\Php84::fpow($num, $exponent); } } if (extension_loaded('mbstring')) { if (!function_exists('mb_ucfirst')) { function mb_ucfirst(string $string, ?string $encoding = null): string { return p\Php84::mb_ucfirst($string, $encoding); } } if (!function_exists('mb_lcfirst')) { function mb_lcfirst(string $string, ?string $encoding = null): string { return p\Php84::mb_lcfirst($string, $encoding); } } if (!function_exists('mb_trim')) { function mb_trim(string $string, ?string $characters = null, ?string $encoding = null): string { return p\Php84::mb_trim($string, $characters, $encoding); } } if (!function_exists('mb_ltrim')) { function mb_ltrim(string $string, ?string $characters = null, ?string $encoding = null): string { return p\Php84::mb_ltrim($string, $characters, $encoding); } } if (!function_exists('mb_rtrim')) { function mb_rtrim(string $string, ?string $characters = null, ?string $encoding = null): string { return p\Php84::mb_rtrim($string, $characters, $encoding); } } } if (extension_loaded('bcmath')) { if (!function_exists('bcdivmod')) { function bcdivmod(string $num1, string $num2, ?int $scale = null): ?array { return p\Php84::bcdivmod($num1, $num2, $scale); } } } if (\PHP_VERSION_ID >= 80200) { return require __DIR__.'/bootstrap82.php'; } if (extension_loaded('intl') && !function_exists('grapheme_str_split')) { function grapheme_str_split(string $string, int $length = 1) { return p\Php84::grapheme_str_split($string, $length); } } symfony/polyfill-php84/bootstrap82.php000064400000001023151666572340013756 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Symfony\Polyfill\Php84 as p; if (\PHP_VERSION_ID >= 80400) { return; } if (extension_loaded('intl') && !function_exists('grapheme_str_split')) { function grapheme_str_split(string $string, int $length = 1): array|false { return p\Php84::grapheme_str_split($string, $length); } } symfony/polyfill-php84/LICENSE000064400000002054151666572340012070 0ustar00Copyright (c) 2024-present Fabien Potencier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. symfony/polyfill-php84/Resources/stubs/ReflectionConstant.php000064400000011641151666572340020514 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80400) { /** * @author Daniel Scherzer <daniel.e.scherzer@gmail.com> */ final class ReflectionConstant { /** * @var string * * @readonly */ public $name; private $value; private $deprecated; private static $persistentConstants = []; public function __construct(string $name) { if (!defined($name) || false !== strpos($name, '::')) { throw new ReflectionException("Constant \"$name\" does not exist"); } $this->name = ltrim($name, '\\'); $deprecated = false; $eh = set_error_handler(static function ($type, $msg, $file, $line) use ($name, &$deprecated, &$eh) { if (\E_DEPRECATED === $type && "Constant $name is deprecated" === $msg) { return $deprecated = true; } return $eh && $eh($type, $msg, $file, $line); }); try { $this->value = constant($name); $this->deprecated = $deprecated; } finally { restore_error_handler(); } } public function getName(): string { return $this->name; } public function getValue() { return $this->value; } public function getNamespaceName(): string { if (false === $slashPos = strrpos($this->name, '\\')) { return ''; } return substr($this->name, 0, $slashPos); } public function getShortName(): string { if (false === $slashPos = strrpos($this->name, '\\')) { return $this->name; } return substr($this->name, $slashPos + 1); } public function isDeprecated(): bool { return $this->deprecated; } public function __toString(): string { // A constant is persistent if provided by PHP itself rather than // being defined by users. If we got here, we know that it *is* // defined, so we just need to figure out if it is defined by the // user or not if (!self::$persistentConstants) { $persistentConstants = get_defined_constants(true); unset($persistentConstants['user']); foreach ($persistentConstants as $constants) { self::$persistentConstants += $constants; } } $persistent = array_key_exists($this->name, self::$persistentConstants); // Can't match the inclusion of `no_file_cache` but the rest is // possible to match $result = 'Constant [ '; if ($persistent || $this->deprecated) { $result .= '<'; if ($persistent) { $result .= 'persistent'; if ($this->deprecated) { $result .= ', '; } } if ($this->deprecated) { $result .= 'deprecated'; } $result .= '> '; } // Cannot just use gettype() to match zend_zval_type_name() if (is_object($this->value)) { $result .= \PHP_VERSION_ID >= 80000 ? get_debug_type($this->value) : gettype($this->value); } elseif (is_bool($this->value)) { $result .= 'bool'; } elseif (is_int($this->value)) { $result .= 'int'; } elseif (is_float($this->value)) { $result .= 'float'; } elseif (null === $this->value) { $result .= 'null'; } else { $result .= gettype($this->value); } $result .= ' '; $result .= $this->name; $result .= ' ] { '; if (is_array($this->value)) { $result .= 'Array'; } else { // This will throw an exception if the value is an object that // cannot be converted to string; that is expected and matches // the behavior of zval_get_string_func() $result .= (string) $this->value; } $result .= " }\n"; return $result; } public function __sleep(): array { throw new Exception("Serialization of 'ReflectionConstant' is not allowed"); } public function __wakeup(): void { throw new Exception("Unserialization of 'ReflectionConstant' is not allowed"); } } } symfony/polyfill-php84/Resources/stubs/Deprecated.php000064400000001246151666572340016750 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80400) { #[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_FUNCTION | Attribute::TARGET_CLASS_CONSTANT)] final class Deprecated { public readonly ?string $message; public readonly ?string $since; public function __construct(?string $message = null, ?string $since = null) { $this->message = $message; $this->since = $since; } } } symfony/polyfill-php80/LICENSE000064400000002054151666572340012064 0ustar00Copyright (c) 2020-present Fabien Potencier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. symfony/polyfill-php80/PhpToken.php000064400000004315151666572340013322 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Php80; /** * @author Fedonyuk Anton <info@ensostudio.ru> * * @internal */ class PhpToken implements \Stringable { /** * @var int */ public $id; /** * @var string */ public $text; /** * @var -1|positive-int */ public $line; /** * @var int */ public $pos; /** * @param -1|positive-int $line */ public function __construct(int $id, string $text, int $line = -1, int $position = -1) { $this->id = $id; $this->text = $text; $this->line = $line; $this->pos = $position; } public function getTokenName(): ?string { if ('UNKNOWN' === $name = token_name($this->id)) { $name = \strlen($this->text) > 1 || \ord($this->text) < 32 ? null : $this->text; } return $name; } /** * @param int|string|array $kind */ public function is($kind): bool { foreach ((array) $kind as $value) { if (\in_array($value, [$this->id, $this->text], true)) { return true; } } return false; } public function isIgnorable(): bool { return \in_array($this->id, [\T_WHITESPACE, \T_COMMENT, \T_DOC_COMMENT, \T_OPEN_TAG], true); } public function __toString(): string { return (string) $this->text; } /** * @return list<static> */ public static function tokenize(string $code, int $flags = 0): array { $line = 1; $position = 0; $tokens = token_get_all($code, $flags); foreach ($tokens as $index => $token) { if (\is_string($token)) { $id = \ord($token); $text = $token; } else { [$id, $text, $line] = $token; } $tokens[$index] = new static($id, $text, $line, $position); $position += \strlen($text); } return $tokens; } } symfony/polyfill-php80/bootstrap.php000064400000002774151666572340013616 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Symfony\Polyfill\Php80 as p; if (\PHP_VERSION_ID >= 80000) { return; } if (!defined('FILTER_VALIDATE_BOOL') && defined('FILTER_VALIDATE_BOOLEAN')) { define('FILTER_VALIDATE_BOOL', \FILTER_VALIDATE_BOOLEAN); } if (!function_exists('fdiv')) { function fdiv(float $num1, float $num2): float { return p\Php80::fdiv($num1, $num2); } } if (!function_exists('preg_last_error_msg')) { function preg_last_error_msg(): string { return p\Php80::preg_last_error_msg(); } } if (!function_exists('str_contains')) { function str_contains(?string $haystack, ?string $needle): bool { return p\Php80::str_contains($haystack ?? '', $needle ?? ''); } } if (!function_exists('str_starts_with')) { function str_starts_with(?string $haystack, ?string $needle): bool { return p\Php80::str_starts_with($haystack ?? '', $needle ?? ''); } } if (!function_exists('str_ends_with')) { function str_ends_with(?string $haystack, ?string $needle): bool { return p\Php80::str_ends_with($haystack ?? '', $needle ?? ''); } } if (!function_exists('get_debug_type')) { function get_debug_type($value): string { return p\Php80::get_debug_type($value); } } if (!function_exists('get_resource_id')) { function get_resource_id($resource): int { return p\Php80::get_resource_id($resource); } } symfony/polyfill-php80/composer.json000064400000001765151666572340013611 0ustar00{ "name": "symfony/polyfill-php80", "type": "library", "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", "keywords": ["polyfill", "shim", "compatibility", "portable"], "homepage": "https://symfony.com", "license": "MIT", "authors": [ { "name": "Ion Bazan", "email": "ion.bazan@gmail.com" }, { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "require": { "php": ">=7.2" }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Php80\\": "" }, "files": [ "bootstrap.php" ], "classmap": [ "Resources/stubs" ] }, "minimum-stability": "dev", "extra": { "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } } } symfony/polyfill-php80/Php80.php000064400000006771151666572340012501 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Php80; /** * @author Ion Bazan <ion.bazan@gmail.com> * @author Nico Oelgart <nicoswd@gmail.com> * @author Nicolas Grekas <p@tchwork.com> * * @internal */ final class Php80 { public static function fdiv(float $dividend, float $divisor): float { return @($dividend / $divisor); } public static function get_debug_type($value): string { switch (true) { case null === $value: return 'null'; case \is_bool($value): return 'bool'; case \is_string($value): return 'string'; case \is_array($value): return 'array'; case \is_int($value): return 'int'; case \is_float($value): return 'float'; case \is_object($value): break; case $value instanceof \__PHP_Incomplete_Class: return '__PHP_Incomplete_Class'; default: if (null === $type = @get_resource_type($value)) { return 'unknown'; } if ('Unknown' === $type) { $type = 'closed'; } return "resource ($type)"; } $class = \get_class($value); if (false === strpos($class, '@')) { return $class; } return (get_parent_class($class) ?: key(class_implements($class)) ?: 'class').'@anonymous'; } public static function get_resource_id($res): int { if (!\is_resource($res) && null === @get_resource_type($res)) { throw new \TypeError(sprintf('Argument 1 passed to get_resource_id() must be of the type resource, %s given', get_debug_type($res))); } return (int) $res; } public static function preg_last_error_msg(): string { switch (preg_last_error()) { case \PREG_INTERNAL_ERROR: return 'Internal error'; case \PREG_BAD_UTF8_ERROR: return 'Malformed UTF-8 characters, possibly incorrectly encoded'; case \PREG_BAD_UTF8_OFFSET_ERROR: return 'The offset did not correspond to the beginning of a valid UTF-8 code point'; case \PREG_BACKTRACK_LIMIT_ERROR: return 'Backtrack limit exhausted'; case \PREG_RECURSION_LIMIT_ERROR: return 'Recursion limit exhausted'; case \PREG_JIT_STACKLIMIT_ERROR: return 'JIT stack limit exhausted'; case \PREG_NO_ERROR: return 'No error'; default: return 'Unknown error'; } } public static function str_contains(string $haystack, string $needle): bool { return '' === $needle || false !== strpos($haystack, $needle); } public static function str_starts_with(string $haystack, string $needle): bool { return 0 === strncmp($haystack, $needle, \strlen($needle)); } public static function str_ends_with(string $haystack, string $needle): bool { if ('' === $needle || $needle === $haystack) { return true; } if ('' === $haystack) { return false; } $needleLength = \strlen($needle); return $needleLength <= \strlen($haystack) && 0 === substr_compare($haystack, $needle, -$needleLength); } } symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php000064400000000507151666572340020574 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80000) { class UnhandledMatchError extends Error { } } symfony/polyfill-php80/Resources/stubs/Attribute.php000064400000001360151666572340016644 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ #[Attribute(Attribute::TARGET_CLASS)] final class Attribute { public const TARGET_CLASS = 1; public const TARGET_FUNCTION = 2; public const TARGET_METHOD = 4; public const TARGET_PROPERTY = 8; public const TARGET_CLASS_CONSTANT = 16; public const TARGET_PARAMETER = 32; public const TARGET_ALL = 63; public const IS_REPEATABLE = 64; /** @var int */ public $flags; public function __construct(int $flags = self::TARGET_ALL) { $this->flags = $flags; } } symfony/polyfill-php80/Resources/stubs/Stringable.php000064400000000614151666572340016774 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80000) { interface Stringable { /** * @return string */ public function __toString(); } } symfony/polyfill-php80/Resources/stubs/PhpToken.php000064400000000567151666572340016441 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80000 && extension_loaded('tokenizer')) { class PhpToken extends Symfony\Polyfill\Php80\PhpToken { } } symfony/polyfill-php80/Resources/stubs/ValueError.php000064400000000476151666572340016776 0ustar00<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\PHP_VERSION_ID < 80000) { class ValueError extends Error { } } psr/http-message/docs/PSR7-Usage.md000064400000012564151666572340013047 0ustar00### PSR-7 Usage All PSR-7 applications comply with these interfaces They were created to establish a standard between middleware implementations. > `RequestInterface`, `ServerRequestInterface`, `ResponseInterface` extend `MessageInterface` because the `Request` and the `Response` are `HTTP Messages`. > When using `ServerRequestInterface`, both `RequestInterface` and `Psr\Http\Message\MessageInterface` methods are considered. The following examples will illustrate how basic operations are done in PSR-7. ##### Examples For this examples to work (at least) a PSR-7 implementation package is required. (eg: zendframework/zend-diactoros, guzzlehttp/psr7, slim/slim, etc) All PSR-7 implementations should have the same behaviour. The following will be assumed: `$request` is an object of `Psr\Http\Message\RequestInterface` and `$response` is an object implementing `Psr\Http\Message\RequestInterface` ### Working with HTTP Headers #### Adding headers to response: ```php $response->withHeader('My-Custom-Header', 'My Custom Message'); ``` #### Appending values to headers ```php $response->withAddedHeader('My-Custom-Header', 'The second message'); ``` #### Checking if header exists: ```php $request->hasHeader('My-Custom-Header'); // will return false $response->hasHeader('My-Custom-Header'); // will return true ``` > Note: My-Custom-Header was only added in the Response #### Getting comma-separated values from a header (also applies to request) ```php // getting value from request headers $request->getHeaderLine('Content-Type'); // will return: "text/html; charset=UTF-8" // getting value from response headers $response->getHeaderLine('My-Custom-Header'); // will return: "My Custom Message; The second message" ``` #### Getting array of value from a header (also applies to request) ```php // getting value from request headers $request->getHeader('Content-Type'); // will return: ["text/html", "charset=UTF-8"] // getting value from response headers $response->getHeader('My-Custom-Header'); // will return: ["My Custom Message", "The second message"] ``` #### Removing headers from HTTP Messages ```php // removing a header from Request, removing deprecated "Content-MD5" header $request->withoutHeader('Content-MD5'); // removing a header from Response // effect: the browser won't know the size of the stream // the browser will download the stream till it ends $response->withoutHeader('Content-Length'); ``` ### Working with HTTP Message Body When working with the PSR-7 there are two methods of implementation: #### 1. Getting the body separately > This method makes the body handling easier to understand and is useful when repeatedly calling body methods. (You only call `getBody()` once). Using this method mistakes like `$response->write()` are also prevented. ```php $body = $response->getBody(); // operations on body, eg. read, write, seek // ... // replacing the old body $response->withBody($body); // this last statement is optional as we working with objects // in this case the "new" body is same with the "old" one // the $body variable has the same value as the one in $request, only the reference is passed ``` #### 2. Working directly on response > This method is useful when only performing few operations as the `$request->getBody()` statement fragment is required ```php $response->getBody()->write('hello'); ``` ### Getting the body contents The following snippet gets the contents of a stream contents. > Note: Streams must be rewinded, if content was written into streams, it will be ignored when calling `getContents()` because the stream pointer is set to the last character, which is `\0` - meaning end of stream. ```php $body = $response->getBody(); $body->rewind(); // or $body->seek(0); $bodyText = $body->getContents(); ``` > Note: If `$body->seek(1)` is called before `$body->getContents()`, the first character will be ommited as the starting pointer is set to `1`, not `0`. This is why using `$body->rewind()` is recommended. ### Append to body ```php $response->getBody()->write('Hello'); // writing directly $body = $request->getBody(); // which is a `StreamInterface` $body->write('xxxxx'); ``` ### Prepend to body Prepending is different when it comes to streams. The content must be copied before writing the content to be prepended. The following example will explain the behaviour of streams. ```php // assuming our response is initially empty $body = $repsonse->getBody(); // writing the string "abcd" $body->write('abcd'); // seeking to start of stream $body->seek(0); // writing 'ef' $body->write('ef'); // at this point the stream contains "efcd" ``` #### Prepending by rewriting separately ```php // assuming our response body stream only contains: "abcd" $body = $response->getBody(); $body->rewind(); $contents = $body->getContents(); // abcd // seeking the stream to beginning $body->rewind(); $body->write('ef'); // stream contains "efcd" $body->write($contents); // stream contains "efabcd" ``` > Note: `getContents()` seeks the stream while reading it, therefore if the second `rewind()` method call was not present the stream would have resulted in `abcdefabcd` because the `write()` method appends to stream if not preceeded by `rewind()` or `seek(0)`. #### Prepending by using contents as a string ```php $body = $response->getBody(); $body->rewind(); $contents = $body->getContents(); // efabcd $contents = 'ef'.$contents; $body->rewind(); $body->write($contents); ``` psr/http-message/docs/PSR7-Interfaces.md000064400000022514151666572340014062 0ustar00# Interfaces The purpose of this list is to help in finding the methods when working with PSR-7. This can be considered as a cheatsheet for PSR-7 interfaces. The interfaces defined in PSR-7 are the following: | Class Name | Description | |---|---| | [Psr\Http\Message\MessageInterface](http://www.php-fig.org/psr/psr-7/#psrhttpmessagemessageinterface) | Representation of a HTTP message | | [Psr\Http\Message\RequestInterface](http://www.php-fig.org/psr/psr-7/#psrhttpmessagerequestinterface) | Representation of an outgoing, client-side request. | | [Psr\Http\Message\ServerRequestInterface](http://www.php-fig.org/psr/psr-7/#psrhttpmessageserverrequestinterface) | Representation of an incoming, server-side HTTP request. | | [Psr\Http\Message\ResponseInterface](http://www.php-fig.org/psr/psr-7/#psrhttpmessageresponseinterface) | Representation of an outgoing, server-side response. | | [Psr\Http\Message\StreamInterface](http://www.php-fig.org/psr/psr-7/#psrhttpmessagestreaminterface) | Describes a data stream | | [Psr\Http\Message\UriInterface](http://www.php-fig.org/psr/psr-7/#psrhttpmessageuriinterface) | Value object representing a URI. | | [Psr\Http\Message\UploadedFileInterface](http://www.php-fig.org/psr/psr-7/#psrhttpmessageuploadedfileinterface) | Value object representing a file uploaded through an HTTP request. | ## `Psr\Http\Message\MessageInterface` Methods | Method Name | Description | Notes | |------------------------------------| ----------- | ----- | | `getProtocolVersion()` | Retrieve HTTP protocol version | 1.0 or 1.1 | | `withProtocolVersion($version)` | Returns new message instance with given HTTP protocol version | | | `getHeaders()` | Retrieve all HTTP Headers | [Request Header List](https://en.wikipedia.org/wiki/List_of_HTTP_header_fields#Request_fields), [Response Header List](https://en.wikipedia.org/wiki/List_of_HTTP_header_fields#Response_fields) | | `hasHeader($name)` | Checks if HTTP Header with given name exists | | | `getHeader($name)` | Retrieves a array with the values for a single header | | | `getHeaderLine($name)` | Retrieves a comma-separated string of the values for a single header | | | `withHeader($name, $value)` | Returns new message instance with given HTTP Header | if the header existed in the original instance, replaces the header value from the original message with the value provided when creating the new instance. | | `withAddedHeader($name, $value)` | Returns new message instance with appended value to given header | If header already exists value will be appended, if not a new header will be created | | `withoutHeader($name)` | Removes HTTP Header with given name| | | `getBody()` | Retrieves the HTTP Message Body | Returns object implementing `StreamInterface`| | `withBody(StreamInterface $body)` | Returns new message instance with given HTTP Message Body | | ## `Psr\Http\Message\RequestInterface` Methods Same methods as `Psr\Http\Message\MessageInterface` + the following methods: | Method Name | Description | Notes | |------------------------------------| ----------- | ----- | | `getRequestTarget()` | Retrieves the message's request target | origin-form, absolute-form, authority-form, asterisk-form ([RFC7230](https://www.rfc-editor.org/rfc/rfc7230.txt)) | | `withRequestTarget($requestTarget)` | Return a new message instance with the specific request-target | | | `getMethod()` | Retrieves the HTTP method of the request. | GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE (defined in [RFC7231](https://tools.ietf.org/html/rfc7231)), PATCH (defined in [RFC5789](https://tools.ietf.org/html/rfc5789)) | | `withMethod($method)` | Returns a new message instance with the provided HTTP method | | | `getUri()` | Retrieves the URI instance | | | `withUri(UriInterface $uri, $preserveHost = false)` | Returns a new message instance with the provided URI | | ## `Psr\Http\Message\ServerRequestInterface` Methods Same methods as `Psr\Http\Message\RequestInterface` + the following methods: | Method Name | Description | Notes | |------------------------------------| ----------- | ----- | | `getServerParams() ` | Retrieve server parameters | Typically derived from `$_SERVER` | | `getCookieParams()` | Retrieves cookies sent by the client to the server. | Typically derived from `$_COOKIES` | | `withCookieParams(array $cookies)` | Returns a new request instance with the specified cookies | | | `withQueryParams(array $query)` | Returns a new request instance with the specified query string arguments | | | `getUploadedFiles()` | Retrieve normalized file upload data | | | `withUploadedFiles(array $uploadedFiles)` | Returns a new request instance with the specified uploaded files | | | `getParsedBody()` | Retrieve any parameters provided in the request body | | | `withParsedBody($data)` | Returns a new request instance with the specified body parameters | | | `getAttributes()` | Retrieve attributes derived from the request | | | `getAttribute($name, $default = null)` | Retrieve a single derived request attribute | | | `withAttribute($name, $value)` | Returns a new request instance with the specified derived request attribute | | | `withoutAttribute($name)` | Returns a new request instance that without the specified derived request attribute | | ## `Psr\Http\Message\ResponseInterface` Methods: Same methods as `Psr\Http\Message\MessageInterface` + the following methods: | Method Name | Description | Notes | |------------------------------------| ----------- | ----- | | `getStatusCode()` | Gets the response status code. | | | `withStatus($code, $reasonPhrase = '')` | Returns a new response instance with the specified status code and, optionally, reason phrase. | | | `getReasonPhrase()` | Gets the response reason phrase associated with the status code. | | ## `Psr\Http\Message\StreamInterface` Methods | Method Name | Description | Notes | |------------------------------------| ----------- | ----- | | `__toString()` | Reads all data from the stream into a string, from the beginning to end. | | | `close()` | Closes the stream and any underlying resources. | | | `detach()` | Separates any underlying resources from the stream. | | | `getSize()` | Get the size of the stream if known. | | | `eof()` | Returns true if the stream is at the end of the stream.| | | `isSeekable()` | Returns whether or not the stream is seekable. | | | `seek($offset, $whence = SEEK_SET)` | Seek to a position in the stream. | | | `rewind()` | Seek to the beginning of the stream. | | | `isWritable()` | Returns whether or not the stream is writable. | | | `write($string)` | Write data to the stream. | | | `isReadable()` | Returns whether or not the stream is readable. | | | `read($length)` | Read data from the stream. | | | `getContents()` | Returns the remaining contents in a string | | | `getMetadata($key = null)()` | Get stream metadata as an associative array or retrieve a specific key. | | ## `Psr\Http\Message\UriInterface` Methods | Method Name | Description | Notes | |------------------------------------| ----------- | ----- | | `getScheme()` | Retrieve the scheme component of the URI. | | | `getAuthority()` | Retrieve the authority component of the URI. | | | `getUserInfo()` | Retrieve the user information component of the URI. | | | `getHost()` | Retrieve the host component of the URI. | | | `getPort()` | Retrieve the port component of the URI. | | | `getPath()` | Retrieve the path component of the URI. | | | `getQuery()` | Retrieve the query string of the URI. | | | `getFragment()` | Retrieve the fragment component of the URI. | | | `withScheme($scheme)` | Return an instance with the specified scheme. | | | `withUserInfo($user, $password = null)` | Return an instance with the specified user information. | | | `withHost($host)` | Return an instance with the specified host. | | | `withPort($port)` | Return an instance with the specified port. | | | `withPath($path)` | Return an instance with the specified path. | | | `withQuery($query)` | Return an instance with the specified query string. | | | `withFragment($fragment)` | Return an instance with the specified URI fragment. | | | `__toString()` | Return the string representation as a URI reference. | | ## `Psr\Http\Message\UploadedFileInterface` Methods | Method Name | Description | Notes | |------------------------------------| ----------- | ----- | | `getStream()` | Retrieve a stream representing the uploaded file. | | | `moveTo($targetPath)` | Move the uploaded file to a new location. | | | `getSize()` | Retrieve the file size. | | | `getError()` | Retrieve the error associated with the uploaded file. | | | `getClientFilename()` | Retrieve the filename sent by the client. | | | `getClientMediaType()` | Retrieve the media type sent by the client. | | > `RequestInterface`, `ServerRequestInterface`, `ResponseInterface` extend `MessageInterface` because the `Request` and the `Response` are `HTTP Messages`. > When using `ServerRequestInterface`, both `RequestInterface` and `Psr\Http\Message\MessageInterface` methods are considered. psr/http-message/src/ServerRequestInterface.php000064400000023641151666572340015736 0ustar00<?php declare(strict_types=1); namespace Psr\Http\Message; /** * Representation of an incoming, server-side HTTP request. * * Per the HTTP specification, this interface includes properties for * each of the following: * * - Protocol version * - HTTP method * - URI * - Headers * - Message body * * Additionally, it encapsulates all data as it has arrived to the * application from the CGI and/or PHP environment, including: * * - The values represented in $_SERVER. * - Any cookies provided (generally via $_COOKIE) * - Query string arguments (generally via $_GET, or as parsed via parse_str()) * - Upload files, if any (as represented by $_FILES) * - Deserialized body parameters (generally from $_POST) * * $_SERVER values MUST be treated as immutable, as they represent application * state at the time of request; as such, no methods are provided to allow * modification of those values. The other values provide such methods, as they * can be restored from $_SERVER or the request body, and may need treatment * during the application (e.g., body parameters may be deserialized based on * content type). * * Additionally, this interface recognizes the utility of introspecting a * request to derive and match additional parameters (e.g., via URI path * matching, decrypting cookie values, deserializing non-form-encoded body * content, matching authorization headers to users, etc). These parameters * are stored in an "attributes" property. * * Requests are considered immutable; all methods that might change state MUST * be implemented such that they retain the internal state of the current * message and return an instance that contains the changed state. */ interface ServerRequestInterface extends RequestInterface { /** * Retrieve server parameters. * * Retrieves data related to the incoming request environment, * typically derived from PHP's $_SERVER superglobal. The data IS NOT * REQUIRED to originate from $_SERVER. * * @return array */ public function getServerParams(); /** * Retrieve cookies. * * Retrieves cookies sent by the client to the server. * * The data MUST be compatible with the structure of the $_COOKIE * superglobal. * * @return array */ public function getCookieParams(); /** * Return an instance with the specified cookies. * * The data IS NOT REQUIRED to come from the $_COOKIE superglobal, but MUST * be compatible with the structure of $_COOKIE. Typically, this data will * be injected at instantiation. * * This method MUST NOT update the related Cookie header of the request * instance, nor related values in the server params. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * updated cookie values. * * @param array $cookies Array of key/value pairs representing cookies. * @return static */ public function withCookieParams(array $cookies); /** * Retrieve query string arguments. * * Retrieves the deserialized query string arguments, if any. * * Note: the query params might not be in sync with the URI or server * params. If you need to ensure you are only getting the original * values, you may need to parse the query string from `getUri()->getQuery()` * or from the `QUERY_STRING` server param. * * @return array */ public function getQueryParams(); /** * Return an instance with the specified query string arguments. * * These values SHOULD remain immutable over the course of the incoming * request. They MAY be injected during instantiation, such as from PHP's * $_GET superglobal, or MAY be derived from some other value such as the * URI. In cases where the arguments are parsed from the URI, the data * MUST be compatible with what PHP's parse_str() would return for * purposes of how duplicate query parameters are handled, and how nested * sets are handled. * * Setting query string arguments MUST NOT change the URI stored by the * request, nor the values in the server params. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * updated query string arguments. * * @param array $query Array of query string arguments, typically from * $_GET. * @return static */ public function withQueryParams(array $query); /** * Retrieve normalized file upload data. * * This method returns upload metadata in a normalized tree, with each leaf * an instance of Psr\Http\Message\UploadedFileInterface. * * These values MAY be prepared from $_FILES or the message body during * instantiation, or MAY be injected via withUploadedFiles(). * * @return array An array tree of UploadedFileInterface instances; an empty * array MUST be returned if no data is present. */ public function getUploadedFiles(); /** * Create a new instance with the specified uploaded files. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * updated body parameters. * * @param array $uploadedFiles An array tree of UploadedFileInterface instances. * @return static * @throws \InvalidArgumentException if an invalid structure is provided. */ public function withUploadedFiles(array $uploadedFiles); /** * Retrieve any parameters provided in the request body. * * If the request Content-Type is either application/x-www-form-urlencoded * or multipart/form-data, and the request method is POST, this method MUST * return the contents of $_POST. * * Otherwise, this method may return any results of deserializing * the request body content; as parsing returns structured content, the * potential types MUST be arrays or objects only. A null value indicates * the absence of body content. * * @return null|array|object The deserialized body parameters, if any. * These will typically be an array or object. */ public function getParsedBody(); /** * Return an instance with the specified body parameters. * * These MAY be injected during instantiation. * * If the request Content-Type is either application/x-www-form-urlencoded * or multipart/form-data, and the request method is POST, use this method * ONLY to inject the contents of $_POST. * * The data IS NOT REQUIRED to come from $_POST, but MUST be the results of * deserializing the request body content. Deserialization/parsing returns * structured data, and, as such, this method ONLY accepts arrays or objects, * or a null value if nothing was available to parse. * * As an example, if content negotiation determines that the request data * is a JSON payload, this method could be used to create a request * instance with the deserialized parameters. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * updated body parameters. * * @param null|array|object $data The deserialized body data. This will * typically be in an array or object. * @return static * @throws \InvalidArgumentException if an unsupported argument type is * provided. */ public function withParsedBody($data); /** * Retrieve attributes derived from the request. * * The request "attributes" may be used to allow injection of any * parameters derived from the request: e.g., the results of path * match operations; the results of decrypting cookies; the results of * deserializing non-form-encoded message bodies; etc. Attributes * will be application and request specific, and CAN be mutable. * * @return array Attributes derived from the request. */ public function getAttributes(); /** * Retrieve a single derived request attribute. * * Retrieves a single derived request attribute as described in * getAttributes(). If the attribute has not been previously set, returns * the default value as provided. * * This method obviates the need for a hasAttribute() method, as it allows * specifying a default value to return if the attribute is not found. * * @see getAttributes() * @param string $name The attribute name. * @param mixed $default Default value to return if the attribute does not exist. * @return mixed */ public function getAttribute(string $name, $default = null); /** * Return an instance with the specified derived request attribute. * * This method allows setting a single derived request attribute as * described in getAttributes(). * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * updated attribute. * * @see getAttributes() * @param string $name The attribute name. * @param mixed $value The value of the attribute. * @return static */ public function withAttribute(string $name, $value); /** * Return an instance that removes the specified derived request attribute. * * This method allows removing a single derived request attribute as * described in getAttributes(). * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that removes * the attribute. * * @see getAttributes() * @param string $name The attribute name. * @return static */ public function withoutAttribute(string $name); } psr/http-message/src/UriInterface.php000064400000030621151666572340013652 0ustar00<?php declare(strict_types=1); namespace Psr\Http\Message; /** * Value object representing a URI. * * This interface is meant to represent URIs according to RFC 3986 and to * provide methods for most common operations. Additional functionality for * working with URIs can be provided on top of the interface or externally. * Its primary use is for HTTP requests, but may also be used in other * contexts. * * Instances of this interface are considered immutable; all methods that * might change state MUST be implemented such that they retain the internal * state of the current instance and return an instance that contains the * changed state. * * Typically the Host header will be also be present in the request message. * For server-side requests, the scheme will typically be discoverable in the * server parameters. * * @link http://tools.ietf.org/html/rfc3986 (the URI specification) */ interface UriInterface { /** * Retrieve the scheme component of the URI. * * If no scheme is present, this method MUST return an empty string. * * The value returned MUST be normalized to lowercase, per RFC 3986 * Section 3.1. * * The trailing ":" character is not part of the scheme and MUST NOT be * added. * * @see https://tools.ietf.org/html/rfc3986#section-3.1 * @return string The URI scheme. */ public function getScheme(); /** * Retrieve the authority component of the URI. * * If no authority information is present, this method MUST return an empty * string. * * The authority syntax of the URI is: * * <pre> * [user-info@]host[:port] * </pre> * * If the port component is not set or is the standard port for the current * scheme, it SHOULD NOT be included. * * @see https://tools.ietf.org/html/rfc3986#section-3.2 * @return string The URI authority, in "[user-info@]host[:port]" format. */ public function getAuthority(); /** * Retrieve the user information component of the URI. * * If no user information is present, this method MUST return an empty * string. * * If a user is present in the URI, this will return that value; * additionally, if the password is also present, it will be appended to the * user value, with a colon (":") separating the values. * * The trailing "@" character is not part of the user information and MUST * NOT be added. * * @return string The URI user information, in "username[:password]" format. */ public function getUserInfo(); /** * Retrieve the host component of the URI. * * If no host is present, this method MUST return an empty string. * * The value returned MUST be normalized to lowercase, per RFC 3986 * Section 3.2.2. * * @see http://tools.ietf.org/html/rfc3986#section-3.2.2 * @return string The URI host. */ public function getHost(); /** * Retrieve the port component of the URI. * * If a port is present, and it is non-standard for the current scheme, * this method MUST return it as an integer. If the port is the standard port * used with the current scheme, this method SHOULD return null. * * If no port is present, and no scheme is present, this method MUST return * a null value. * * If no port is present, but a scheme is present, this method MAY return * the standard port for that scheme, but SHOULD return null. * * @return null|int The URI port. */ public function getPort(); /** * Retrieve the path component of the URI. * * The path can either be empty or absolute (starting with a slash) or * rootless (not starting with a slash). Implementations MUST support all * three syntaxes. * * Normally, the empty path "" and absolute path "/" are considered equal as * defined in RFC 7230 Section 2.7.3. But this method MUST NOT automatically * do this normalization because in contexts with a trimmed base path, e.g. * the front controller, this difference becomes significant. It's the task * of the user to handle both "" and "/". * * The value returned MUST be percent-encoded, but MUST NOT double-encode * any characters. To determine what characters to encode, please refer to * RFC 3986, Sections 2 and 3.3. * * As an example, if the value should include a slash ("/") not intended as * delimiter between path segments, that value MUST be passed in encoded * form (e.g., "%2F") to the instance. * * @see https://tools.ietf.org/html/rfc3986#section-2 * @see https://tools.ietf.org/html/rfc3986#section-3.3 * @return string The URI path. */ public function getPath(); /** * Retrieve the query string of the URI. * * If no query string is present, this method MUST return an empty string. * * The leading "?" character is not part of the query and MUST NOT be * added. * * The value returned MUST be percent-encoded, but MUST NOT double-encode * any characters. To determine what characters to encode, please refer to * RFC 3986, Sections 2 and 3.4. * * As an example, if a value in a key/value pair of the query string should * include an ampersand ("&") not intended as a delimiter between values, * that value MUST be passed in encoded form (e.g., "%26") to the instance. * * @see https://tools.ietf.org/html/rfc3986#section-2 * @see https://tools.ietf.org/html/rfc3986#section-3.4 * @return string The URI query string. */ public function getQuery(); /** * Retrieve the fragment component of the URI. * * If no fragment is present, this method MUST return an empty string. * * The leading "#" character is not part of the fragment and MUST NOT be * added. * * The value returned MUST be percent-encoded, but MUST NOT double-encode * any characters. To determine what characters to encode, please refer to * RFC 3986, Sections 2 and 3.5. * * @see https://tools.ietf.org/html/rfc3986#section-2 * @see https://tools.ietf.org/html/rfc3986#section-3.5 * @return string The URI fragment. */ public function getFragment(); /** * Return an instance with the specified scheme. * * This method MUST retain the state of the current instance, and return * an instance that contains the specified scheme. * * Implementations MUST support the schemes "http" and "https" case * insensitively, and MAY accommodate other schemes if required. * * An empty scheme is equivalent to removing the scheme. * * @param string $scheme The scheme to use with the new instance. * @return static A new instance with the specified scheme. * @throws \InvalidArgumentException for invalid or unsupported schemes. */ public function withScheme(string $scheme); /** * Return an instance with the specified user information. * * This method MUST retain the state of the current instance, and return * an instance that contains the specified user information. * * Password is optional, but the user information MUST include the * user; an empty string for the user is equivalent to removing user * information. * * @param string $user The user name to use for authority. * @param null|string $password The password associated with $user. * @return static A new instance with the specified user information. */ public function withUserInfo(string $user, ?string $password = null); /** * Return an instance with the specified host. * * This method MUST retain the state of the current instance, and return * an instance that contains the specified host. * * An empty host value is equivalent to removing the host. * * @param string $host The hostname to use with the new instance. * @return static A new instance with the specified host. * @throws \InvalidArgumentException for invalid hostnames. */ public function withHost(string $host); /** * Return an instance with the specified port. * * This method MUST retain the state of the current instance, and return * an instance that contains the specified port. * * Implementations MUST raise an exception for ports outside the * established TCP and UDP port ranges. * * A null value provided for the port is equivalent to removing the port * information. * * @param null|int $port The port to use with the new instance; a null value * removes the port information. * @return static A new instance with the specified port. * @throws \InvalidArgumentException for invalid ports. */ public function withPort(?int $port); /** * Return an instance with the specified path. * * This method MUST retain the state of the current instance, and return * an instance that contains the specified path. * * The path can either be empty or absolute (starting with a slash) or * rootless (not starting with a slash). Implementations MUST support all * three syntaxes. * * If the path is intended to be domain-relative rather than path relative then * it must begin with a slash ("/"). Paths not starting with a slash ("/") * are assumed to be relative to some base path known to the application or * consumer. * * Users can provide both encoded and decoded path characters. * Implementations ensure the correct encoding as outlined in getPath(). * * @param string $path The path to use with the new instance. * @return static A new instance with the specified path. * @throws \InvalidArgumentException for invalid paths. */ public function withPath(string $path); /** * Return an instance with the specified query string. * * This method MUST retain the state of the current instance, and return * an instance that contains the specified query string. * * Users can provide both encoded and decoded query characters. * Implementations ensure the correct encoding as outlined in getQuery(). * * An empty query string value is equivalent to removing the query string. * * @param string $query The query string to use with the new instance. * @return static A new instance with the specified query string. * @throws \InvalidArgumentException for invalid query strings. */ public function withQuery(string $query); /** * Return an instance with the specified URI fragment. * * This method MUST retain the state of the current instance, and return * an instance that contains the specified URI fragment. * * Users can provide both encoded and decoded fragment characters. * Implementations ensure the correct encoding as outlined in getFragment(). * * An empty fragment value is equivalent to removing the fragment. * * @param string $fragment The fragment to use with the new instance. * @return static A new instance with the specified fragment. */ public function withFragment(string $fragment); /** * Return the string representation as a URI reference. * * Depending on which components of the URI are present, the resulting * string is either a full URI or relative reference according to RFC 3986, * Section 4.1. The method concatenates the various components of the URI, * using the appropriate delimiters: * * - If a scheme is present, it MUST be suffixed by ":". * - If an authority is present, it MUST be prefixed by "//". * - The path can be concatenated without delimiters. But there are two * cases where the path has to be adjusted to make the URI reference * valid as PHP does not allow to throw an exception in __toString(): * - If the path is rootless and an authority is present, the path MUST * be prefixed by "/". * - If the path is starting with more than one "/" and no authority is * present, the starting slashes MUST be reduced to one. * - If a query is present, it MUST be prefixed by "?". * - If a fragment is present, it MUST be prefixed by "#". * * @see http://tools.ietf.org/html/rfc3986#section-4.1 * @return string */ public function __toString(); } psr/http-message/src/RequestInterface.php000064400000011374151666572340014547 0ustar00<?php declare(strict_types=1); namespace Psr\Http\Message; /** * Representation of an outgoing, client-side request. * * Per the HTTP specification, this interface includes properties for * each of the following: * * - Protocol version * - HTTP method * - URI * - Headers * - Message body * * During construction, implementations MUST attempt to set the Host header from * a provided URI if no Host header is provided. * * Requests are considered immutable; all methods that might change state MUST * be implemented such that they retain the internal state of the current * message and return an instance that contains the changed state. */ interface RequestInterface extends MessageInterface { /** * Retrieves the message's request target. * * Retrieves the message's request-target either as it will appear (for * clients), as it appeared at request (for servers), or as it was * specified for the instance (see withRequestTarget()). * * In most cases, this will be the origin-form of the composed URI, * unless a value was provided to the concrete implementation (see * withRequestTarget() below). * * If no URI is available, and no request-target has been specifically * provided, this method MUST return the string "/". * * @return string */ public function getRequestTarget(); /** * Return an instance with the specific request-target. * * If the request needs a non-origin-form request-target — e.g., for * specifying an absolute-form, authority-form, or asterisk-form — * this method may be used to create an instance with the specified * request-target, verbatim. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * changed request target. * * @link http://tools.ietf.org/html/rfc7230#section-5.3 (for the various * request-target forms allowed in request messages) * @param string $requestTarget * @return static */ public function withRequestTarget(string $requestTarget); /** * Retrieves the HTTP method of the request. * * @return string Returns the request method. */ public function getMethod(); /** * Return an instance with the provided HTTP method. * * While HTTP method names are typically all uppercase characters, HTTP * method names are case-sensitive and thus implementations SHOULD NOT * modify the given string. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * changed request method. * * @param string $method Case-sensitive method. * @return static * @throws \InvalidArgumentException for invalid HTTP methods. */ public function withMethod(string $method); /** * Retrieves the URI instance. * * This method MUST return a UriInterface instance. * * @link http://tools.ietf.org/html/rfc3986#section-4.3 * @return UriInterface Returns a UriInterface instance * representing the URI of the request. */ public function getUri(); /** * Returns an instance with the provided URI. * * This method MUST update the Host header of the returned request by * default if the URI contains a host component. If the URI does not * contain a host component, any pre-existing Host header MUST be carried * over to the returned request. * * You can opt-in to preserving the original state of the Host header by * setting `$preserveHost` to `true`. When `$preserveHost` is set to * `true`, this method interacts with the Host header in the following ways: * * - If the Host header is missing or empty, and the new URI contains * a host component, this method MUST update the Host header in the returned * request. * - If the Host header is missing or empty, and the new URI does not contain a * host component, this method MUST NOT update the Host header in the returned * request. * - If a Host header is present and non-empty, this method MUST NOT update * the Host header in the returned request. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * new UriInterface instance. * * @link http://tools.ietf.org/html/rfc3986#section-4.3 * @param UriInterface $uri New request URI to use. * @param bool $preserveHost Preserve the original state of the Host header. * @return static */ public function withUri(UriInterface $uri, bool $preserveHost = false); } psr/http-message/src/ResponseInterface.php000064400000005104151666572340014707 0ustar00<?php declare(strict_types=1); namespace Psr\Http\Message; /** * Representation of an outgoing, server-side response. * * Per the HTTP specification, this interface includes properties for * each of the following: * * - Protocol version * - Status code and reason phrase * - Headers * - Message body * * Responses are considered immutable; all methods that might change state MUST * be implemented such that they retain the internal state of the current * message and return an instance that contains the changed state. */ interface ResponseInterface extends MessageInterface { /** * Gets the response status code. * * The status code is a 3-digit integer result code of the server's attempt * to understand and satisfy the request. * * @return int Status code. */ public function getStatusCode(); /** * Return an instance with the specified status code and, optionally, reason phrase. * * If no reason phrase is specified, implementations MAY choose to default * to the RFC 7231 or IANA recommended reason phrase for the response's * status code. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * updated status and reason phrase. * * @link http://tools.ietf.org/html/rfc7231#section-6 * @link http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml * @param int $code The 3-digit integer result code to set. * @param string $reasonPhrase The reason phrase to use with the * provided status code; if none is provided, implementations MAY * use the defaults as suggested in the HTTP specification. * @return static * @throws \InvalidArgumentException For invalid status code arguments. */ public function withStatus(int $code, string $reasonPhrase = ''); /** * Gets the response reason phrase associated with the status code. * * Because a reason phrase is not a required element in a response * status line, the reason phrase value MAY be null. Implementations MAY * choose to return the default RFC 7231 recommended reason phrase (or those * listed in the IANA HTTP Status Code Registry) for the response's * status code. * * @link http://tools.ietf.org/html/rfc7231#section-6 * @link http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml * @return string Reason phrase; must return an empty string if none present. */ public function getReasonPhrase(); } psr/http-message/src/MessageInterface.php000064400000015511151666572340014500 0ustar00<?php declare(strict_types=1); namespace Psr\Http\Message; /** * HTTP messages consist of requests from a client to a server and responses * from a server to a client. This interface defines the methods common to * each. * * Messages are considered immutable; all methods that might change state MUST * be implemented such that they retain the internal state of the current * message and return an instance that contains the changed state. * * @link http://www.ietf.org/rfc/rfc7230.txt * @link http://www.ietf.org/rfc/rfc7231.txt */ interface MessageInterface { /** * Retrieves the HTTP protocol version as a string. * * The string MUST contain only the HTTP version number (e.g., "1.1", "1.0"). * * @return string HTTP protocol version. */ public function getProtocolVersion(); /** * Return an instance with the specified HTTP protocol version. * * The version string MUST contain only the HTTP version number (e.g., * "1.1", "1.0"). * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * new protocol version. * * @param string $version HTTP protocol version * @return static */ public function withProtocolVersion(string $version); /** * Retrieves all message header values. * * The keys represent the header name as it will be sent over the wire, and * each value is an array of strings associated with the header. * * // Represent the headers as a string * foreach ($message->getHeaders() as $name => $values) { * echo $name . ": " . implode(", ", $values); * } * * // Emit headers iteratively: * foreach ($message->getHeaders() as $name => $values) { * foreach ($values as $value) { * header(sprintf('%s: %s', $name, $value), false); * } * } * * While header names are not case-sensitive, getHeaders() will preserve the * exact case in which headers were originally specified. * * @return string[][] Returns an associative array of the message's headers. Each * key MUST be a header name, and each value MUST be an array of strings * for that header. */ public function getHeaders(); /** * Checks if a header exists by the given case-insensitive name. * * @param string $name Case-insensitive header field name. * @return bool Returns true if any header names match the given header * name using a case-insensitive string comparison. Returns false if * no matching header name is found in the message. */ public function hasHeader(string $name); /** * Retrieves a message header value by the given case-insensitive name. * * This method returns an array of all the header values of the given * case-insensitive header name. * * If the header does not appear in the message, this method MUST return an * empty array. * * @param string $name Case-insensitive header field name. * @return string[] An array of string values as provided for the given * header. If the header does not appear in the message, this method MUST * return an empty array. */ public function getHeader(string $name); /** * Retrieves a comma-separated string of the values for a single header. * * This method returns all of the header values of the given * case-insensitive header name as a string concatenated together using * a comma. * * NOTE: Not all header values may be appropriately represented using * comma concatenation. For such headers, use getHeader() instead * and supply your own delimiter when concatenating. * * If the header does not appear in the message, this method MUST return * an empty string. * * @param string $name Case-insensitive header field name. * @return string A string of values as provided for the given header * concatenated together using a comma. If the header does not appear in * the message, this method MUST return an empty string. */ public function getHeaderLine(string $name); /** * Return an instance with the provided value replacing the specified header. * * While header names are case-insensitive, the casing of the header will * be preserved by this function, and returned from getHeaders(). * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * new and/or updated header and value. * * @param string $name Case-insensitive header field name. * @param string|string[] $value Header value(s). * @return static * @throws \InvalidArgumentException for invalid header names or values. */ public function withHeader(string $name, $value); /** * Return an instance with the specified header appended with the given value. * * Existing values for the specified header will be maintained. The new * value(s) will be appended to the existing list. If the header did not * exist previously, it will be added. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * new header and/or value. * * @param string $name Case-insensitive header field name to add. * @param string|string[] $value Header value(s). * @return static * @throws \InvalidArgumentException for invalid header names or values. */ public function withAddedHeader(string $name, $value); /** * Return an instance without the specified header. * * Header resolution MUST be done without case-sensitivity. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that removes * the named header. * * @param string $name Case-insensitive header field name to remove. * @return static */ public function withoutHeader(string $name); /** * Gets the body of the message. * * @return StreamInterface Returns the body as a stream. */ public function getBody(); /** * Return an instance with the specified message body. * * The body MUST be a StreamInterface object. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return a new instance that has the * new body stream. * * @param StreamInterface $body Body. * @return static * @throws \InvalidArgumentException When the body is not valid. */ public function withBody(StreamInterface $body); } psr/http-message/src/UploadedFileInterface.php000064400000011162151666572340015447 0ustar00<?php declare(strict_types=1); namespace Psr\Http\Message; /** * Value object representing a file uploaded through an HTTP request. * * Instances of this interface are considered immutable; all methods that * might change state MUST be implemented such that they retain the internal * state of the current instance and return an instance that contains the * changed state. */ interface UploadedFileInterface { /** * Retrieve a stream representing the uploaded file. * * This method MUST return a StreamInterface instance, representing the * uploaded file. The purpose of this method is to allow utilizing native PHP * stream functionality to manipulate the file upload, such as * stream_copy_to_stream() (though the result will need to be decorated in a * native PHP stream wrapper to work with such functions). * * If the moveTo() method has been called previously, this method MUST raise * an exception. * * @return StreamInterface Stream representation of the uploaded file. * @throws \RuntimeException in cases when no stream is available or can be * created. */ public function getStream(); /** * Move the uploaded file to a new location. * * Use this method as an alternative to move_uploaded_file(). This method is * guaranteed to work in both SAPI and non-SAPI environments. * Implementations must determine which environment they are in, and use the * appropriate method (move_uploaded_file(), rename(), or a stream * operation) to perform the operation. * * $targetPath may be an absolute path, or a relative path. If it is a * relative path, resolution should be the same as used by PHP's rename() * function. * * The original file or stream MUST be removed on completion. * * If this method is called more than once, any subsequent calls MUST raise * an exception. * * When used in an SAPI environment where $_FILES is populated, when writing * files via moveTo(), is_uploaded_file() and move_uploaded_file() SHOULD be * used to ensure permissions and upload status are verified correctly. * * If you wish to move to a stream, use getStream(), as SAPI operations * cannot guarantee writing to stream destinations. * * @see http://php.net/is_uploaded_file * @see http://php.net/move_uploaded_file * @param string $targetPath Path to which to move the uploaded file. * @throws \InvalidArgumentException if the $targetPath specified is invalid. * @throws \RuntimeException on any error during the move operation, or on * the second or subsequent call to the method. */ public function moveTo(string $targetPath); /** * Retrieve the file size. * * Implementations SHOULD return the value stored in the "size" key of * the file in the $_FILES array if available, as PHP calculates this based * on the actual size transmitted. * * @return int|null The file size in bytes or null if unknown. */ public function getSize(); /** * Retrieve the error associated with the uploaded file. * * The return value MUST be one of PHP's UPLOAD_ERR_XXX constants. * * If the file was uploaded successfully, this method MUST return * UPLOAD_ERR_OK. * * Implementations SHOULD return the value stored in the "error" key of * the file in the $_FILES array. * * @see http://php.net/manual/en/features.file-upload.errors.php * @return int One of PHP's UPLOAD_ERR_XXX constants. */ public function getError(); /** * Retrieve the filename sent by the client. * * Do not trust the value returned by this method. A client could send * a malicious filename with the intention to corrupt or hack your * application. * * Implementations SHOULD return the value stored in the "name" key of * the file in the $_FILES array. * * @return string|null The filename sent by the client or null if none * was provided. */ public function getClientFilename(); /** * Retrieve the media type sent by the client. * * Do not trust the value returned by this method. A client could send * a malicious media type with the intention to corrupt or hack your * application. * * Implementations SHOULD return the value stored in the "type" key of * the file in the $_FILES array. * * @return string|null The media type sent by the client or null if none * was provided. */ public function getClientMediaType(); } psr/http-message/src/StreamInterface.php000064400000011304151666572340014343 0ustar00<?php declare(strict_types=1); namespace Psr\Http\Message; /** * Describes a data stream. * * Typically, an instance will wrap a PHP stream; this interface provides * a wrapper around the most common operations, including serialization of * the entire stream to a string. */ interface StreamInterface { /** * Reads all data from the stream into a string, from the beginning to end. * * This method MUST attempt to seek to the beginning of the stream before * reading data and read the stream until the end is reached. * * Warning: This could attempt to load a large amount of data into memory. * * This method MUST NOT raise an exception in order to conform with PHP's * string casting operations. * * @see http://php.net/manual/en/language.oop5.magic.php#object.tostring * @return string */ public function __toString(); /** * Closes the stream and any underlying resources. * * @return void */ public function close(); /** * Separates any underlying resources from the stream. * * After the stream has been detached, the stream is in an unusable state. * * @return resource|null Underlying PHP stream, if any */ public function detach(); /** * Get the size of the stream if known. * * @return int|null Returns the size in bytes if known, or null if unknown. */ public function getSize(); /** * Returns the current position of the file read/write pointer * * @return int Position of the file pointer * @throws \RuntimeException on error. */ public function tell(); /** * Returns true if the stream is at the end of the stream. * * @return bool */ public function eof(); /** * Returns whether or not the stream is seekable. * * @return bool */ public function isSeekable(); /** * Seek to a position in the stream. * * @link http://www.php.net/manual/en/function.fseek.php * @param int $offset Stream offset * @param int $whence Specifies how the cursor position will be calculated * based on the seek offset. Valid values are identical to the built-in * PHP $whence values for `fseek()`. SEEK_SET: Set position equal to * offset bytes SEEK_CUR: Set position to current location plus offset * SEEK_END: Set position to end-of-stream plus offset. * @throws \RuntimeException on failure. */ public function seek(int $offset, int $whence = SEEK_SET); /** * Seek to the beginning of the stream. * * If the stream is not seekable, this method will raise an exception; * otherwise, it will perform a seek(0). * * @see seek() * @link http://www.php.net/manual/en/function.fseek.php * @throws \RuntimeException on failure. */ public function rewind(); /** * Returns whether or not the stream is writable. * * @return bool */ public function isWritable(); /** * Write data to the stream. * * @param string $string The string that is to be written. * @return int Returns the number of bytes written to the stream. * @throws \RuntimeException on failure. */ public function write(string $string); /** * Returns whether or not the stream is readable. * * @return bool */ public function isReadable(); /** * Read data from the stream. * * @param int $length Read up to $length bytes from the object and return * them. Fewer than $length bytes may be returned if underlying stream * call returns fewer bytes. * @return string Returns the data read from the stream, or an empty string * if no bytes are available. * @throws \RuntimeException if an error occurs. */ public function read(int $length); /** * Returns the remaining contents in a string * * @return string * @throws \RuntimeException if unable to read or an error occurs while * reading. */ public function getContents(); /** * Get stream metadata as an associative array or retrieve a specific key. * * The keys returned are identical to the keys returned from PHP's * stream_get_meta_data() function. * * @link http://php.net/manual/en/function.stream-get-meta-data.php * @param string|null $key Specific metadata to retrieve. * @return array|mixed|null Returns an associative array if no key is * provided. Returns a specific key value if a key is provided and the * value is found, or null if the key is not found. */ public function getMetadata(?string $key = null); } psr/http-message/composer.json000064400000001162151666572340012512 0ustar00{ "name": "psr/http-message", "description": "Common interface for HTTP messages", "keywords": ["psr", "psr-7", "http", "http-message", "request", "response"], "homepage": "https://github.com/php-fig/http-message", "license": "MIT", "authors": [ { "name": "PHP-FIG", "homepage": "http://www.php-fig.org/" } ], "require": { "php": "^7.2 || ^8.0" }, "autoload": { "psr-4": { "Psr\\Http\\Message\\": "src/" } }, "extra": { "branch-alias": { "dev-master": "1.1.x-dev" } } } psr/http-message/LICENSE000064400000002075151666572340011001 0ustar00Copyright (c) 2014 PHP Framework Interoperability Group Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. psr/http-factory/composer.json000064400000001437151666572340012542 0ustar00{ "name": "psr/http-factory", "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ "psr", "psr-7", "psr-17", "http", "factory", "message", "request", "response" ], "license": "MIT", "authors": [ { "name": "PHP-FIG", "homepage": "https://www.php-fig.org/" } ], "support": { "source": "https://github.com/php-fig/http-factory" }, "require": { "php": ">=7.1", "psr/http-message": "^1.0 || ^2.0" }, "autoload": { "psr-4": { "Psr\\Http\\Message\\": "src/" } }, "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } } } psr/http-factory/src/ServerRequestFactoryInterface.php000064400000001637151666572340017312 0ustar00<?php namespace Psr\Http\Message; interface ServerRequestFactoryInterface { /** * Create a new server request. * * Note that server-params are taken precisely as given - no parsing/processing * of the given values is performed, and, in particular, no attempt is made to * determine the HTTP method or URI, which must be provided explicitly. * * @param string $method The HTTP method associated with the request. * @param UriInterface|string $uri The URI associated with the request. If * the value is a string, the factory MUST create a UriInterface * instance based on it. * @param array $serverParams Array of SAPI parameters with which to seed * the generated request instance. * * @return ServerRequestInterface */ public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequestInterface; } psr/http-factory/src/RequestFactoryInterface.php000064400000000763151666572340016122 0ustar00<?php namespace Psr\Http\Message; interface RequestFactoryInterface { /** * Create a new request. * * @param string $method The HTTP method associated with the request. * @param UriInterface|string $uri The URI associated with the request. If * the value is a string, the factory MUST create a UriInterface * instance based on it. * * @return RequestInterface */ public function createRequest(string $method, $uri): RequestInterface; } psr/http-factory/src/UploadedFileFactoryInterface.php000064400000002150151666572340017017 0ustar00<?php namespace Psr\Http\Message; interface UploadedFileFactoryInterface { /** * Create a new uploaded file. * * If a size is not provided it will be determined by checking the size of * the file. * * @see http://php.net/manual/features.file-upload.post-method.php * @see http://php.net/manual/features.file-upload.errors.php * * @param StreamInterface $stream Underlying stream representing the * uploaded file content. * @param int|null $size in bytes * @param int $error PHP file upload error * @param string|null $clientFilename Filename as provided by the client, if any. * @param string|null $clientMediaType Media type as provided by the client, if any. * * @return UploadedFileInterface * * @throws \InvalidArgumentException If the file resource is not readable. */ public function createUploadedFile( StreamInterface $stream, ?int $size = null, int $error = \UPLOAD_ERR_OK, ?string $clientFilename = null, ?string $clientMediaType = null ): UploadedFileInterface; } psr/http-factory/src/ResponseFactoryInterface.php000064400000001042151666572340016257 0ustar00<?php namespace Psr\Http\Message; interface ResponseFactoryInterface { /** * Create a new response. * * @param int $code HTTP status code; defaults to 200 * @param string $reasonPhrase Reason phrase to associate with status code * in generated response; if none is provided implementations MAY use * the defaults as suggested in the HTTP specification. * * @return ResponseInterface */ public function createResponse(int $code = 200, string $reasonPhrase = ''): ResponseInterface; } psr/http-factory/src/StreamFactoryInterface.php000064400000002612151666572340015720 0ustar00<?php namespace Psr\Http\Message; interface StreamFactoryInterface { /** * Create a new stream from a string. * * The stream SHOULD be created with a temporary resource. * * @param string $content String content with which to populate the stream. * * @return StreamInterface */ public function createStream(string $content = ''): StreamInterface; /** * Create a stream from an existing file. * * The file MUST be opened using the given mode, which may be any mode * supported by the `fopen` function. * * The `$filename` MAY be any string supported by `fopen()`. * * @param string $filename Filename or stream URI to use as basis of stream. * @param string $mode Mode with which to open the underlying filename/stream. * * @return StreamInterface * @throws \RuntimeException If the file cannot be opened. * @throws \InvalidArgumentException If the mode is invalid. */ public function createStreamFromFile(string $filename, string $mode = 'r'): StreamInterface; /** * Create a new stream from an existing resource. * * The stream MUST be readable and may be writable. * * @param resource $resource PHP resource to use as basis of stream. * * @return StreamInterface */ public function createStreamFromResource($resource): StreamInterface; } psr/http-factory/src/UriFactoryInterface.php000064400000000505151666572340015223 0ustar00<?php namespace Psr\Http\Message; interface UriFactoryInterface { /** * Create a new URI. * * @param string $uri * * @return UriInterface * * @throws \InvalidArgumentException If the given URI cannot be parsed. */ public function createUri(string $uri = ''): UriInterface; } psr/http-factory/LICENSE000064400000002050151666572340011015 0ustar00MIT License Copyright (c) 2018 PHP-FIG Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. psr/container/LICENSE000064400000002171151666572340010357 0ustar00The MIT License (MIT) Copyright (c) 2013-2016 container-interop Copyright (c) 2016 PHP Framework Interoperability Group Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. psr/container/composer.json000064400000001057151666572340012076 0ustar00{ "name": "psr/container", "type": "library", "description": "Common Container Interface (PHP FIG PSR-11)", "keywords": ["psr", "psr-11", "container", "container-interop", "container-interface"], "homepage": "https://github.com/php-fig/container", "license": "MIT", "authors": [ { "name": "PHP-FIG", "homepage": "https://www.php-fig.org/" } ], "require": { "php": ">=7.4.0" }, "autoload": { "psr-4": { "Psr\\Container\\": "src/" } } } psr/container/src/ContainerInterface.php000064400000002020151666572340014406 0ustar00<?php declare(strict_types=1); namespace Psr\Container; /** * Describes the interface of a container that exposes methods to read its entries. */ interface ContainerInterface { /** * Finds an entry of the container by its identifier and returns it. * * @param string $id Identifier of the entry to look for. * * @throws NotFoundExceptionInterface No entry was found for **this** identifier. * @throws ContainerExceptionInterface Error while retrieving the entry. * * @return mixed Entry. */ public function get(string $id); /** * Returns true if the container can return an entry for the given identifier. * Returns false otherwise. * * `has($id)` returning true does not mean that `get($id)` will not throw an exception. * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`. * * @param string $id Identifier of the entry to look for. * * @return bool */ public function has(string $id); } psr/container/src/NotFoundExceptionInterface.php000064400000000236151666572340016106 0ustar00<?php namespace Psr\Container; /** * No entry was found in the container. */ interface NotFoundExceptionInterface extends ContainerExceptionInterface { } psr/container/src/ContainerExceptionInterface.php000064400000000270151666572340016272 0ustar00<?php namespace Psr\Container; use Throwable; /** * Base interface representing a generic exception in a container. */ interface ContainerExceptionInterface extends Throwable { } composer/autoload_files.php000064400000001436151666572340012121 0ustar00<?php // autoload_files.php @generated by Composer $vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php', '23c18046f52bef3eea034657bafda50f' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php', '5897ea0ac4cccf14d323035e65887801' => $vendorDir . '/symfony/polyfill-php82/bootstrap.php', '662a729f963d39afe703c9d9b7ab4a8c' => $vendorDir . '/symfony/polyfill-php83/bootstrap.php', '9d2b9fc6db0f153a0a149fefb182415e' => $vendorDir . '/symfony/polyfill-php84/bootstrap.php', 'f530325d18dded5377011b84e7ee4c1b' => $baseDir . '/packages/application/functions.php', '6544a6d8b2e88b1fc5138c7271842449' => $baseDir . '/packages/translation/functions.php', ); composer/autoload_classmap.php000064400000213216151666572340012623 0ustar00<?php // autoload_classmap.php @generated by Composer $vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( 'AllowDynamicProperties' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php', 'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', 'CURLStringFile' => $vendorDir . '/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php', 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', 'DateError' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateError.php', 'DateException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateException.php', 'DateInvalidOperationException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php', 'DateInvalidTimeZoneException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php', 'DateMalformedIntervalStringException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php', 'DateMalformedPeriodStringException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php', 'DateMalformedStringException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php', 'DateObjectError' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateObjectError.php', 'DateRangeError' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateRangeError.php', 'Deprecated' => $vendorDir . '/symfony/polyfill-php84/Resources/stubs/Deprecated.php', 'Override' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/Override.php', 'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php', 'Psr\\Container\\ContainerExceptionInterface' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php', 'Psr\\Container\\ContainerInterface' => $vendorDir . '/psr/container/src/ContainerInterface.php', 'Psr\\Container\\NotFoundExceptionInterface' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php', 'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php', 'Psr\\Http\\Message\\RequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/RequestFactoryInterface.php', 'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php', 'Psr\\Http\\Message\\ResponseFactoryInterface' => $vendorDir . '/psr/http-factory/src/ResponseFactoryInterface.php', 'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php', 'Psr\\Http\\Message\\ServerRequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/ServerRequestFactoryInterface.php', 'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php', 'Psr\\Http\\Message\\StreamFactoryInterface' => $vendorDir . '/psr/http-factory/src/StreamFactoryInterface.php', 'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php', 'Psr\\Http\\Message\\UploadedFileFactoryInterface' => $vendorDir . '/psr/http-factory/src/UploadedFileFactoryInterface.php', 'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php', 'Psr\\Http\\Message\\UriFactoryInterface' => $vendorDir . '/psr/http-factory/src/UriFactoryInterface.php', 'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php', 'Random\\BrokenRandomEngineError' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php', 'Random\\CryptoSafeEngine' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php', 'Random\\Engine' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/Engine.php', 'Random\\Engine\\Secure' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php', 'Random\\RandomError' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php', 'Random\\RandomException' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php', 'ReflectionConstant' => $vendorDir . '/symfony/polyfill-php84/Resources/stubs/ReflectionConstant.php', 'ReturnTypeWillChange' => $vendorDir . '/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php', 'SQLite3Exception' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php', 'SensitiveParameter' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php', 'SensitiveParameterValue' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php', 'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php', 'Symfony\\Polyfill\\Php80\\Php80' => $vendorDir . '/symfony/polyfill-php80/Php80.php', 'Symfony\\Polyfill\\Php80\\PhpToken' => $vendorDir . '/symfony/polyfill-php80/PhpToken.php', 'Symfony\\Polyfill\\Php81\\Php81' => $vendorDir . '/symfony/polyfill-php81/Php81.php', 'Symfony\\Polyfill\\Php82\\NoDynamicProperties' => $vendorDir . '/symfony/polyfill-php82/NoDynamicProperties.php', 'Symfony\\Polyfill\\Php82\\Php82' => $vendorDir . '/symfony/polyfill-php82/Php82.php', 'Symfony\\Polyfill\\Php82\\Random\\Engine\\Secure' => $vendorDir . '/symfony/polyfill-php82/Random/Engine/Secure.php', 'Symfony\\Polyfill\\Php82\\SensitiveParameterValue' => $vendorDir . '/symfony/polyfill-php82/SensitiveParameterValue.php', 'Symfony\\Polyfill\\Php83\\Php83' => $vendorDir . '/symfony/polyfill-php83/Php83.php', 'Symfony\\Polyfill\\Php84\\Php84' => $vendorDir . '/symfony/polyfill-php84/Php84.php', 'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', 'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php', 'YOOtheme\\Application' => $baseDir . '/packages/application/src/Application.php', 'YOOtheme\\Application\\AliasLoader' => $baseDir . '/packages/application/src/Application/AliasLoader.php', 'YOOtheme\\Application\\ConfigLoader' => $baseDir . '/packages/application/src/Application/ConfigLoader.php', 'YOOtheme\\Application\\EventLoader' => $baseDir . '/packages/application/src/Application/EventLoader.php', 'YOOtheme\\Application\\ExtendLoader' => $baseDir . '/packages/application/src/Application/ExtendLoader.php', 'YOOtheme\\Application\\RouteLoader' => $baseDir . '/packages/application/src/Application/RouteLoader.php', 'YOOtheme\\Application\\ServiceLoader' => $baseDir . '/packages/application/src/Application/ServiceLoader.php', 'YOOtheme\\Arr' => $baseDir . '/packages/utils/src/Arr.php', 'YOOtheme\\BodyMiddleware' => $baseDir . '/packages/http-server/src/BodyMiddleware.php', 'YOOtheme\\Builder' => $baseDir . '/packages/builder/src/Builder.php', 'YOOtheme\\Builder\\BuilderConfig' => $baseDir . '/packages/builder/src/Builder/BuilderConfig.php', 'YOOtheme\\Builder\\BuilderController' => $baseDir . '/packages/builder/src/Builder/BuilderController.php', 'YOOtheme\\Builder\\CollapseTransform' => $baseDir . '/packages/builder/src/Builder/CollapseTransform.php', 'YOOtheme\\Builder\\DefaultTransform' => $baseDir . '/packages/builder/src/Builder/DefaultTransform.php', 'YOOtheme\\Builder\\DisabledTransform' => $baseDir . '/packages/builder/src/Builder/DisabledTransform.php', 'YOOtheme\\Builder\\ElementTransform' => $baseDir . '/packages/builder/src/Builder/ElementTransform.php', 'YOOtheme\\Builder\\ElementType' => $baseDir . '/packages/builder/src/Builder/ElementType.php', 'YOOtheme\\Builder\\IndexTransform' => $baseDir . '/packages/builder/src/Builder/IndexTransform.php', 'YOOtheme\\Builder\\Joomla\\ArticleHelper' => $baseDir . '/packages/builder-joomla/src/ArticleHelper.php', 'YOOtheme\\Builder\\Joomla\\BuilderController' => $baseDir . '/packages/builder-joomla/src/BuilderController.php', 'YOOtheme\\Builder\\Joomla\\Fields\\FieldsHelper' => $baseDir . '/packages/builder-joomla-fields/src/FieldsHelper.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Listener\\LoadBuilderConfig' => $baseDir . '/packages/builder-joomla-fields/src/Listener/LoadBuilderConfig.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Listener\\LoadSourceTypes' => $baseDir . '/packages/builder-joomla-fields/src/Listener/LoadSourceTypes.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\ChoiceFieldStringType' => $baseDir . '/packages/builder-joomla-fields/src/Type/ChoiceFieldStringType.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\ChoiceFieldType' => $baseDir . '/packages/builder-joomla-fields/src/Type/ChoiceFieldType.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\FieldsType' => $baseDir . '/packages/builder-joomla-fields/src/Type/FieldsType.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\MediaFieldType' => $baseDir . '/packages/builder-joomla-fields/src/Type/MediaFieldType.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\SqlFieldType' => $baseDir . '/packages/builder-joomla-fields/src/Type/SqlFieldType.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\ValueFieldType' => $baseDir . '/packages/builder-joomla-fields/src/Type/ValueFieldType.php', 'YOOtheme\\Builder\\Joomla\\Listener\\LoadSessionUser' => $baseDir . '/packages/builder-joomla/src/Listener/LoadSessionUser.php', 'YOOtheme\\Builder\\Joomla\\Listener\\RenderBuilderButton' => $baseDir . '/packages/builder-joomla/src/Listener/RenderBuilderButton.php', 'YOOtheme\\Builder\\Joomla\\Listener\\RenderBuilderPage' => $baseDir . '/packages/builder-joomla/src/Listener/RenderBuilderPage.php', 'YOOtheme\\Builder\\Joomla\\PageController' => $baseDir . '/packages/builder-joomla/src/PageController.php', 'YOOtheme\\Builder\\Joomla\\RegularLabs\\Listener\\ArticlesField' => $baseDir . '/packages/builder-joomla-regularlabs/src/Listener/ArticlesField.php', 'YOOtheme\\Builder\\Joomla\\Search\\Listener\\LoadSearchArticle' => $baseDir . '/packages/builder-joomla-search/src/Listener/LoadSearchArticle.php', 'YOOtheme\\Builder\\Joomla\\Search\\Listener\\LoadSourceTypes' => $baseDir . '/packages/builder-joomla-search/src/Listener/LoadSourceTypes.php', 'YOOtheme\\Builder\\Joomla\\Search\\Listener\\LoadTemplateUrl' => $baseDir . '/packages/builder-joomla-search/src/Listener/LoadTemplateUrl.php', 'YOOtheme\\Builder\\Joomla\\Search\\Listener\\MatchTemplate' => $baseDir . '/packages/builder-joomla-search/src/Listener/MatchTemplate.php', 'YOOtheme\\Builder\\Joomla\\Search\\Type\\SearchItemType' => $baseDir . '/packages/builder-joomla-search/src/Type/SearchItemType.php', 'YOOtheme\\Builder\\Joomla\\Search\\Type\\SearchItemsQueryType' => $baseDir . '/packages/builder-joomla-search/src/Type/SearchItemsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Search\\Type\\SearchQueryType' => $baseDir . '/packages/builder-joomla-search/src/Type/SearchQueryType.php', 'YOOtheme\\Builder\\Joomla\\Search\\Type\\SearchType' => $baseDir . '/packages/builder-joomla-search/src/Type/SearchType.php', 'YOOtheme\\Builder\\Joomla\\Source\\ArticleHelper' => $baseDir . '/packages/builder-joomla-source/src/ArticleHelper.php', 'YOOtheme\\Builder\\Joomla\\Source\\ArticlesModel' => $baseDir . '/packages/builder-joomla-source/src/ArticlesModel.php', 'YOOtheme\\Builder\\Joomla\\Source\\ContactsModel' => $baseDir . '/packages/builder-joomla-source/src/ContactsModel.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadBuilderConfig' => $baseDir . '/packages/builder-joomla-source/src/Listener/LoadBuilderConfig.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadNotFound' => $baseDir . '/packages/builder-joomla-source/src/Listener/LoadNotFound.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadSearchTemplate' => $baseDir . '/packages/builder-joomla-source/src/Listener/LoadSearchTemplate.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadSourceTypes' => $baseDir . '/packages/builder-joomla-source/src/Listener/LoadSourceTypes.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadTemplate' => $baseDir . '/packages/builder-joomla-source/src/Listener/LoadTemplate.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadTemplateUrl' => $baseDir . '/packages/builder-joomla-source/src/Listener/LoadTemplateUrl.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\MatchTemplate' => $baseDir . '/packages/builder-joomla-source/src/Listener/MatchTemplate.php', 'YOOtheme\\Builder\\Joomla\\Source\\SourceController' => $baseDir . '/packages/builder-joomla-source/src/SourceController.php', 'YOOtheme\\Builder\\Joomla\\Source\\TagHelper' => $baseDir . '/packages/builder-joomla-source/src/TagHelper.php', 'YOOtheme\\Builder\\Joomla\\Source\\TagModel' => $baseDir . '/packages/builder-joomla-source/src/TagModel.php', 'YOOtheme\\Builder\\Joomla\\Source\\TagsModel' => $baseDir . '/packages/builder-joomla-source/src/TagsModel.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticleEventType' => $baseDir . '/packages/builder-joomla-source/src/Type/ArticleEventType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticleImagesType' => $baseDir . '/packages/builder-joomla-source/src/Type/ArticleImagesType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticleQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/ArticleQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticleType' => $baseDir . '/packages/builder-joomla-source/src/Type/ArticleType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticleUrlsType' => $baseDir . '/packages/builder-joomla-source/src/Type/ArticleUrlsType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticlesQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/ArticlesQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CategoryParamsType' => $baseDir . '/packages/builder-joomla-source/src/Type/CategoryParamsType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CategoryQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CategoryQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CategoryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CategoryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ContactQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/ContactQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ContactType' => $baseDir . '/packages/builder-joomla-source/src/Type/ContactType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomArticleQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CustomArticleQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomArticlesQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CustomArticlesQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomCategoriesQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CustomCategoriesQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomCategoryQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CustomCategoryQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomMenuItemQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CustomMenuItemQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomMenuItemsQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CustomMenuItemsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomTagQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CustomTagQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomTagsQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CustomTagsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomUserQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CustomUserQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomUsersQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/CustomUsersQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\EventType' => $baseDir . '/packages/builder-joomla-source/src/Type/EventType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ImagesType' => $baseDir . '/packages/builder-joomla-source/src/Type/ImagesType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\MenuItemType' => $baseDir . '/packages/builder-joomla-source/src/Type/MenuItemType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\SiteQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/SiteQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\SmartSearchItemType' => $baseDir . '/packages/builder-joomla-source/src/Type/SmartSearchItemType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\SmartSearchItemsQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/SmartSearchItemsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\SmartSearchQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/SmartSearchQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\SmartSearchType' => $baseDir . '/packages/builder-joomla-source/src/Type/SmartSearchType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\TagItemType' => $baseDir . '/packages/builder-joomla-source/src/Type/TagItemType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\TagItemsQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/TagItemsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\TagType' => $baseDir . '/packages/builder-joomla-source/src/Type/TagType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\TagsQueryType' => $baseDir . '/packages/builder-joomla-source/src/Type/TagsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\UserType' => $baseDir . '/packages/builder-joomla-source/src/Type/UserType.php', 'YOOtheme\\Builder\\Joomla\\Source\\UserHelper' => $baseDir . '/packages/builder-joomla-source/src/UserHelper.php', 'YOOtheme\\Builder\\Listener\\LoadBuilderData' => $baseDir . '/packages/builder/src/Builder/Listener/LoadBuilderData.php', 'YOOtheme\\Builder\\Newsletter\\AbstractProvider' => $baseDir . '/packages/builder-newsletter/src/AbstractProvider.php', 'YOOtheme\\Builder\\Newsletter\\CampaignMonitorProvider' => $baseDir . '/packages/builder-newsletter/src/CampaignMonitorProvider.php', 'YOOtheme\\Builder\\Newsletter\\MailChimpProvider' => $baseDir . '/packages/builder-newsletter/src/MailChimpProvider.php', 'YOOtheme\\Builder\\Newsletter\\NewsletterController' => $baseDir . '/packages/builder-newsletter/src/NewsletterController.php', 'YOOtheme\\Builder\\NormalizeTransform' => $baseDir . '/packages/builder/src/Builder/NormalizeTransform.php', 'YOOtheme\\Builder\\OptimizeTransform' => $baseDir . '/packages/builder/src/Builder/OptimizeTransform.php', 'YOOtheme\\Builder\\PlaceholderTransform' => $baseDir . '/packages/builder/src/Builder/PlaceholderTransform.php', 'YOOtheme\\Builder\\Source' => $baseDir . '/packages/builder-source/src/Source.php', 'YOOtheme\\Builder\\Source\\Filesystem\\FileHelper' => $baseDir . '/packages/builder-source-filesystem/src/FileHelper.php', 'YOOtheme\\Builder\\Source\\Filesystem\\Listener\\LoadSourceTypes' => $baseDir . '/packages/builder-source-filesystem/src/Listener/LoadSourceTypes.php', 'YOOtheme\\Builder\\Source\\Filesystem\\Type\\FileQueryType' => $baseDir . '/packages/builder-source-filesystem/src/Type/FileQueryType.php', 'YOOtheme\\Builder\\Source\\Filesystem\\Type\\FileType' => $baseDir . '/packages/builder-source-filesystem/src/Type/FileType.php', 'YOOtheme\\Builder\\Source\\Filesystem\\Type\\FilesQueryType' => $baseDir . '/packages/builder-source-filesystem/src/Type/FilesQueryType.php', 'YOOtheme\\Builder\\Source\\Listener\\LoadBuilderConfig' => $baseDir . '/packages/builder-source/src/Source/Listener/LoadBuilderConfig.php', 'YOOtheme\\Builder\\Source\\Listener\\LoadSourceSchema' => $baseDir . '/packages/builder-source/src/Source/Listener/LoadSourceSchema.php', 'YOOtheme\\Builder\\Source\\Listener\\LogSourceError' => $baseDir . '/packages/builder-source/src/Source/Listener/LogSourceError.php', 'YOOtheme\\Builder\\Source\\Listener\\OrderSourceMetadata' => $baseDir . '/packages/builder-source/src/Source/Listener/OrderSourceMetadata.php', 'YOOtheme\\Builder\\Source\\OptimizeTransform' => $baseDir . '/packages/builder-source/src/Source/OptimizeTransform.php', 'YOOtheme\\Builder\\Source\\Query\\AST' => $baseDir . '/packages/builder-source/src/Source/Query/AST.php', 'YOOtheme\\Builder\\Source\\Query\\Node' => $baseDir . '/packages/builder-source/src/Source/Query/Node.php', 'YOOtheme\\Builder\\Source\\SourceFilter' => $baseDir . '/packages/builder-source/src/Source/SourceFilter.php', 'YOOtheme\\Builder\\Source\\SourceQuery' => $baseDir . '/packages/builder-source/src/Source/SourceQuery.php', 'YOOtheme\\Builder\\Source\\SourceTransform' => $baseDir . '/packages/builder-source/src/Source/SourceTransform.php', 'YOOtheme\\Builder\\Source\\Type\\RequestType' => $baseDir . '/packages/builder-source/src/Source/Type/RequestType.php', 'YOOtheme\\Builder\\Source\\Type\\SiteType' => $baseDir . '/packages/builder-source/src/Source/Type/SiteType.php', 'YOOtheme\\Builder\\Templates\\Listener\\LoadBuilderConfig' => $baseDir . '/packages/builder-templates/src/Listener/LoadBuilderConfig.php', 'YOOtheme\\Builder\\Templates\\TemplateController' => $baseDir . '/packages/builder-templates/src/TemplateController.php', 'YOOtheme\\Builder\\Templates\\TemplateHelper' => $baseDir . '/packages/builder-templates/src/TemplateHelper.php', 'YOOtheme\\Builder\\UpdateTransform' => $baseDir . '/packages/builder/src/Builder/UpdateTransform.php', 'YOOtheme\\Builder\\VisibilityTransform' => $baseDir . '/packages/builder/src/Builder/VisibilityTransform.php', 'YOOtheme\\Composer\\ClassmapPlugin' => $baseDir . '/packages/composer/src/ClassmapPlugin.php', 'YOOtheme\\Composer\\CurlHttpClient' => $baseDir . '/packages/composer/src/CurlHttpClient.php', 'YOOtheme\\Composer\\LoadFontCommand' => $baseDir . '/packages/composer/src/LoadFontCommand.php', 'YOOtheme\\Composer\\NamespaceRenamer' => $baseDir . '/packages/composer/src/NamespaceRenamer.php', 'YOOtheme\\Composer\\ParentResolver' => $baseDir . '/packages/composer/src/ParentResolver.php', 'YOOtheme\\Config' => $baseDir . '/packages/configuration/src/Config.php', 'YOOtheme\\ConfigObject' => $baseDir . '/packages/configuration/src/ConfigObject.php', 'YOOtheme\\Configuration\\Configuration' => $baseDir . '/packages/configuration/src/Configuration/Configuration.php', 'YOOtheme\\Configuration\\Filter' => $baseDir . '/packages/configuration/src/Configuration/Filter.php', 'YOOtheme\\Configuration\\FilterNode' => $baseDir . '/packages/configuration/src/Configuration/FilterNode.php', 'YOOtheme\\Configuration\\Node' => $baseDir . '/packages/configuration/src/Configuration/Node.php', 'YOOtheme\\Configuration\\Repository' => $baseDir . '/packages/configuration/src/Configuration/Repository.php', 'YOOtheme\\Configuration\\Resolver' => $baseDir . '/packages/configuration/src/Configuration/Resolver.php', 'YOOtheme\\Configuration\\StringNode' => $baseDir . '/packages/configuration/src/Configuration/StringNode.php', 'YOOtheme\\Configuration\\VariableNode' => $baseDir . '/packages/configuration/src/Configuration/VariableNode.php', 'YOOtheme\\Container' => $baseDir . '/packages/container/src/Container.php', 'YOOtheme\\Container\\BadFunctionCallException' => $baseDir . '/packages/container/src/Container/BadFunctionCallException.php', 'YOOtheme\\Container\\InvalidArgumentException' => $baseDir . '/packages/container/src/Container/InvalidArgumentException.php', 'YOOtheme\\Container\\LogicException' => $baseDir . '/packages/container/src/Container/LogicException.php', 'YOOtheme\\Container\\ParameterResolver' => $baseDir . '/packages/container/src/Container/ParameterResolver.php', 'YOOtheme\\Container\\RuntimeException' => $baseDir . '/packages/container/src/Container/RuntimeException.php', 'YOOtheme\\Container\\Service' => $baseDir . '/packages/container/src/Container/Service.php', 'YOOtheme\\Container\\ServiceNotFoundException' => $baseDir . '/packages/container/src/Container/ServiceNotFoundException.php', 'YOOtheme\\CsrfMiddleware' => $baseDir . '/packages/http-server/src/CsrfMiddleware.php', 'YOOtheme\\Event' => $baseDir . '/packages/utils/src/Event.php', 'YOOtheme\\EventDispatcher' => $baseDir . '/packages/utils/src/EventDispatcher.php', 'YOOtheme\\File' => $baseDir . '/packages/utils/src/File.php', 'YOOtheme\\GraphQL\\Deferred' => $baseDir . '/packages/graphql/lib/Deferred.php', 'YOOtheme\\GraphQL\\Directive\\BindDirective' => $baseDir . '/packages/graphql/src/Directive/BindDirective.php', 'YOOtheme\\GraphQL\\Directive\\CallDirective' => $baseDir . '/packages/graphql/src/Directive/CallDirective.php', 'YOOtheme\\GraphQL\\Directive\\SliceDirective' => $baseDir . '/packages/graphql/src/Directive/SliceDirective.php', 'YOOtheme\\GraphQL\\Error\\ClientAware' => $baseDir . '/packages/graphql/lib/Error/ClientAware.php', 'YOOtheme\\GraphQL\\Error\\CoercionError' => $baseDir . '/packages/graphql/lib/Error/CoercionError.php', 'YOOtheme\\GraphQL\\Error\\DebugFlag' => $baseDir . '/packages/graphql/lib/Error/DebugFlag.php', 'YOOtheme\\GraphQL\\Error\\Error' => $baseDir . '/packages/graphql/lib/Error/Error.php', 'YOOtheme\\GraphQL\\Error\\FormattedError' => $baseDir . '/packages/graphql/lib/Error/FormattedError.php', 'YOOtheme\\GraphQL\\Error\\InvariantViolation' => $baseDir . '/packages/graphql/lib/Error/InvariantViolation.php', 'YOOtheme\\GraphQL\\Error\\ProvidesExtensions' => $baseDir . '/packages/graphql/lib/Error/ProvidesExtensions.php', 'YOOtheme\\GraphQL\\Error\\SerializationError' => $baseDir . '/packages/graphql/lib/Error/SerializationError.php', 'YOOtheme\\GraphQL\\Error\\SyntaxError' => $baseDir . '/packages/graphql/lib/Error/SyntaxError.php', 'YOOtheme\\GraphQL\\Error\\UserError' => $baseDir . '/packages/graphql/lib/Error/UserError.php', 'YOOtheme\\GraphQL\\Error\\Warning' => $baseDir . '/packages/graphql/lib/Error/Warning.php', 'YOOtheme\\GraphQL\\Executor\\ExecutionContext' => $baseDir . '/packages/graphql/lib/Executor/ExecutionContext.php', 'YOOtheme\\GraphQL\\Executor\\ExecutionResult' => $baseDir . '/packages/graphql/lib/Executor/ExecutionResult.php', 'YOOtheme\\GraphQL\\Executor\\Executor' => $baseDir . '/packages/graphql/lib/Executor/Executor.php', 'YOOtheme\\GraphQL\\Executor\\ExecutorImplementation' => $baseDir . '/packages/graphql/lib/Executor/ExecutorImplementation.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\Adapter\\AmpPromiseAdapter' => $baseDir . '/packages/graphql/lib/Executor/Promise/Adapter/AmpPromiseAdapter.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\Adapter\\ReactPromiseAdapter' => $baseDir . '/packages/graphql/lib/Executor/Promise/Adapter/ReactPromiseAdapter.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\Adapter\\SyncPromise' => $baseDir . '/packages/graphql/lib/Executor/Promise/Adapter/SyncPromise.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\Adapter\\SyncPromiseAdapter' => $baseDir . '/packages/graphql/lib/Executor/Promise/Adapter/SyncPromiseAdapter.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\Promise' => $baseDir . '/packages/graphql/lib/Executor/Promise/Promise.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\PromiseAdapter' => $baseDir . '/packages/graphql/lib/Executor/Promise/PromiseAdapter.php', 'YOOtheme\\GraphQL\\Executor\\ReferenceExecutor' => $baseDir . '/packages/graphql/lib/Executor/ReferenceExecutor.php', 'YOOtheme\\GraphQL\\Executor\\ScopedContext' => $baseDir . '/packages/graphql/lib/Executor/ScopedContext.php', 'YOOtheme\\GraphQL\\Executor\\Values' => $baseDir . '/packages/graphql/lib/Executor/Values.php', 'YOOtheme\\GraphQL\\GraphQL' => $baseDir . '/packages/graphql/lib/GraphQL.php', 'YOOtheme\\GraphQL\\Language\\AST\\ArgumentNode' => $baseDir . '/packages/graphql/lib/Language/AST/ArgumentNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\BooleanValueNode' => $baseDir . '/packages/graphql/lib/Language/AST/BooleanValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\DefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/DefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\DirectiveDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/DirectiveDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\DirectiveNode' => $baseDir . '/packages/graphql/lib/Language/AST/DirectiveNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\DocumentNode' => $baseDir . '/packages/graphql/lib/Language/AST/DocumentNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\EnumTypeDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/EnumTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\EnumTypeExtensionNode' => $baseDir . '/packages/graphql/lib/Language/AST/EnumTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\EnumValueDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/EnumValueDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\EnumValueNode' => $baseDir . '/packages/graphql/lib/Language/AST/EnumValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ExecutableDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/ExecutableDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\FieldDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/FieldDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\FieldNode' => $baseDir . '/packages/graphql/lib/Language/AST/FieldNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\FloatValueNode' => $baseDir . '/packages/graphql/lib/Language/AST/FloatValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\FragmentDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/FragmentDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\FragmentSpreadNode' => $baseDir . '/packages/graphql/lib/Language/AST/FragmentSpreadNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\HasSelectionSet' => $baseDir . '/packages/graphql/lib/Language/AST/HasSelectionSet.php', 'YOOtheme\\GraphQL\\Language\\AST\\InlineFragmentNode' => $baseDir . '/packages/graphql/lib/Language/AST/InlineFragmentNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\InputObjectTypeDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/InputObjectTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\InputObjectTypeExtensionNode' => $baseDir . '/packages/graphql/lib/Language/AST/InputObjectTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\InputValueDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/InputValueDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\IntValueNode' => $baseDir . '/packages/graphql/lib/Language/AST/IntValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\InterfaceTypeDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/InterfaceTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\InterfaceTypeExtensionNode' => $baseDir . '/packages/graphql/lib/Language/AST/InterfaceTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ListTypeNode' => $baseDir . '/packages/graphql/lib/Language/AST/ListTypeNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ListValueNode' => $baseDir . '/packages/graphql/lib/Language/AST/ListValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\Location' => $baseDir . '/packages/graphql/lib/Language/AST/Location.php', 'YOOtheme\\GraphQL\\Language\\AST\\NameNode' => $baseDir . '/packages/graphql/lib/Language/AST/NameNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\NamedTypeNode' => $baseDir . '/packages/graphql/lib/Language/AST/NamedTypeNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\Node' => $baseDir . '/packages/graphql/lib/Language/AST/Node.php', 'YOOtheme\\GraphQL\\Language\\AST\\NodeKind' => $baseDir . '/packages/graphql/lib/Language/AST/NodeKind.php', 'YOOtheme\\GraphQL\\Language\\AST\\NodeList' => $baseDir . '/packages/graphql/lib/Language/AST/NodeList.php', 'YOOtheme\\GraphQL\\Language\\AST\\NonNullTypeNode' => $baseDir . '/packages/graphql/lib/Language/AST/NonNullTypeNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\NullValueNode' => $baseDir . '/packages/graphql/lib/Language/AST/NullValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ObjectFieldNode' => $baseDir . '/packages/graphql/lib/Language/AST/ObjectFieldNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ObjectTypeDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/ObjectTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ObjectTypeExtensionNode' => $baseDir . '/packages/graphql/lib/Language/AST/ObjectTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ObjectValueNode' => $baseDir . '/packages/graphql/lib/Language/AST/ObjectValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\OperationDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/OperationDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\OperationTypeDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/OperationTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ScalarTypeDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/ScalarTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ScalarTypeExtensionNode' => $baseDir . '/packages/graphql/lib/Language/AST/ScalarTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\SchemaDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/SchemaDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\SchemaExtensionNode' => $baseDir . '/packages/graphql/lib/Language/AST/SchemaExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\SelectionNode' => $baseDir . '/packages/graphql/lib/Language/AST/SelectionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\SelectionSetNode' => $baseDir . '/packages/graphql/lib/Language/AST/SelectionSetNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\StringValueNode' => $baseDir . '/packages/graphql/lib/Language/AST/StringValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\TypeDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/TypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\TypeExtensionNode' => $baseDir . '/packages/graphql/lib/Language/AST/TypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\TypeNode' => $baseDir . '/packages/graphql/lib/Language/AST/TypeNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\TypeSystemDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/TypeSystemDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\TypeSystemExtensionNode' => $baseDir . '/packages/graphql/lib/Language/AST/TypeSystemExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\UnionTypeDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/UnionTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\UnionTypeExtensionNode' => $baseDir . '/packages/graphql/lib/Language/AST/UnionTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ValueNode' => $baseDir . '/packages/graphql/lib/Language/AST/ValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\VariableDefinitionNode' => $baseDir . '/packages/graphql/lib/Language/AST/VariableDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\VariableNode' => $baseDir . '/packages/graphql/lib/Language/AST/VariableNode.php', 'YOOtheme\\GraphQL\\Language\\BlockString' => $baseDir . '/packages/graphql/lib/Language/BlockString.php', 'YOOtheme\\GraphQL\\Language\\DirectiveLocation' => $baseDir . '/packages/graphql/lib/Language/DirectiveLocation.php', 'YOOtheme\\GraphQL\\Language\\Lexer' => $baseDir . '/packages/graphql/lib/Language/Lexer.php', 'YOOtheme\\GraphQL\\Language\\Parser' => $baseDir . '/packages/graphql/lib/Language/Parser.php', 'YOOtheme\\GraphQL\\Language\\Printer' => $baseDir . '/packages/graphql/lib/Language/Printer.php', 'YOOtheme\\GraphQL\\Language\\Source' => $baseDir . '/packages/graphql/lib/Language/Source.php', 'YOOtheme\\GraphQL\\Language\\SourceLocation' => $baseDir . '/packages/graphql/lib/Language/SourceLocation.php', 'YOOtheme\\GraphQL\\Language\\Token' => $baseDir . '/packages/graphql/lib/Language/Token.php', 'YOOtheme\\GraphQL\\Language\\Visitor' => $baseDir . '/packages/graphql/lib/Language/Visitor.php', 'YOOtheme\\GraphQL\\Language\\VisitorOperation' => $baseDir . '/packages/graphql/lib/Language/VisitorOperation.php', 'YOOtheme\\GraphQL\\Language\\VisitorRemoveNode' => $baseDir . '/packages/graphql/lib/Language/VisitorRemoveNode.php', 'YOOtheme\\GraphQL\\Language\\VisitorSkipNode' => $baseDir . '/packages/graphql/lib/Language/VisitorSkipNode.php', 'YOOtheme\\GraphQL\\Language\\VisitorStop' => $baseDir . '/packages/graphql/lib/Language/VisitorStop.php', 'YOOtheme\\GraphQL\\Plugin\\ContainerPlugin' => $baseDir . '/packages/graphql/src/Plugin/ContainerPlugin.php', 'YOOtheme\\GraphQL\\SchemaBuilder' => $baseDir . '/packages/graphql/src/SchemaBuilder.php', 'YOOtheme\\GraphQL\\SchemaPrinter' => $baseDir . '/packages/graphql/src/SchemaPrinter.php', 'YOOtheme\\GraphQL\\Server\\Exception\\BatchedQueriesAreNotSupported' => $baseDir . '/packages/graphql/lib/Server/Exception/BatchedQueriesAreNotSupported.php', 'YOOtheme\\GraphQL\\Server\\Exception\\CannotParseJsonBody' => $baseDir . '/packages/graphql/lib/Server/Exception/CannotParseJsonBody.php', 'YOOtheme\\GraphQL\\Server\\Exception\\CannotParseVariables' => $baseDir . '/packages/graphql/lib/Server/Exception/CannotParseVariables.php', 'YOOtheme\\GraphQL\\Server\\Exception\\CannotReadBody' => $baseDir . '/packages/graphql/lib/Server/Exception/CannotReadBody.php', 'YOOtheme\\GraphQL\\Server\\Exception\\FailedToDetermineOperationType' => $baseDir . '/packages/graphql/lib/Server/Exception/FailedToDetermineOperationType.php', 'YOOtheme\\GraphQL\\Server\\Exception\\GetMethodSupportsOnlyQueryOperation' => $baseDir . '/packages/graphql/lib/Server/Exception/GetMethodSupportsOnlyQueryOperation.php', 'YOOtheme\\GraphQL\\Server\\Exception\\HttpMethodNotSupported' => $baseDir . '/packages/graphql/lib/Server/Exception/HttpMethodNotSupported.php', 'YOOtheme\\GraphQL\\Server\\Exception\\InvalidOperationParameter' => $baseDir . '/packages/graphql/lib/Server/Exception/InvalidOperationParameter.php', 'YOOtheme\\GraphQL\\Server\\Exception\\InvalidQueryIdParameter' => $baseDir . '/packages/graphql/lib/Server/Exception/InvalidQueryIdParameter.php', 'YOOtheme\\GraphQL\\Server\\Exception\\InvalidQueryParameter' => $baseDir . '/packages/graphql/lib/Server/Exception/InvalidQueryParameter.php', 'YOOtheme\\GraphQL\\Server\\Exception\\MissingContentTypeHeader' => $baseDir . '/packages/graphql/lib/Server/Exception/MissingContentTypeHeader.php', 'YOOtheme\\GraphQL\\Server\\Exception\\MissingQueryOrQueryIdParameter' => $baseDir . '/packages/graphql/lib/Server/Exception/MissingQueryOrQueryIdParameter.php', 'YOOtheme\\GraphQL\\Server\\Exception\\PersistedQueriesAreNotSupported' => $baseDir . '/packages/graphql/lib/Server/Exception/PersistedQueriesAreNotSupported.php', 'YOOtheme\\GraphQL\\Server\\Exception\\UnexpectedContentType' => $baseDir . '/packages/graphql/lib/Server/Exception/UnexpectedContentType.php', 'YOOtheme\\GraphQL\\Server\\Helper' => $baseDir . '/packages/graphql/lib/Server/Helper.php', 'YOOtheme\\GraphQL\\Server\\OperationParams' => $baseDir . '/packages/graphql/lib/Server/OperationParams.php', 'YOOtheme\\GraphQL\\Server\\RequestError' => $baseDir . '/packages/graphql/lib/Server/RequestError.php', 'YOOtheme\\GraphQL\\Server\\ServerConfig' => $baseDir . '/packages/graphql/lib/Server/ServerConfig.php', 'YOOtheme\\GraphQL\\Server\\StandardServer' => $baseDir . '/packages/graphql/lib/Server/StandardServer.php', 'YOOtheme\\GraphQL\\Type\\Definition\\AbstractType' => $baseDir . '/packages/graphql/lib/Type/Definition/AbstractType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\Argument' => $baseDir . '/packages/graphql/lib/Type/Definition/Argument.php', 'YOOtheme\\GraphQL\\Type\\Definition\\BooleanType' => $baseDir . '/packages/graphql/lib/Type/Definition/BooleanType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\CompositeType' => $baseDir . '/packages/graphql/lib/Type/Definition/CompositeType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\CustomScalarType' => $baseDir . '/packages/graphql/lib/Type/Definition/CustomScalarType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\Deprecated' => $baseDir . '/packages/graphql/lib/Type/Definition/Deprecated.php', 'YOOtheme\\GraphQL\\Type\\Definition\\Description' => $baseDir . '/packages/graphql/lib/Type/Definition/Description.php', 'YOOtheme\\GraphQL\\Type\\Definition\\Directive' => $baseDir . '/packages/graphql/lib/Type/Definition/Directive.php', 'YOOtheme\\GraphQL\\Type\\Definition\\EnumType' => $baseDir . '/packages/graphql/lib/Type/Definition/EnumType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\EnumValueDefinition' => $baseDir . '/packages/graphql/lib/Type/Definition/EnumValueDefinition.php', 'YOOtheme\\GraphQL\\Type\\Definition\\FieldDefinition' => $baseDir . '/packages/graphql/lib/Type/Definition/FieldDefinition.php', 'YOOtheme\\GraphQL\\Type\\Definition\\FloatType' => $baseDir . '/packages/graphql/lib/Type/Definition/FloatType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\HasFieldsType' => $baseDir . '/packages/graphql/lib/Type/Definition/HasFieldsType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\HasFieldsTypeImplementation' => $baseDir . '/packages/graphql/lib/Type/Definition/HasFieldsTypeImplementation.php', 'YOOtheme\\GraphQL\\Type\\Definition\\IDType' => $baseDir . '/packages/graphql/lib/Type/Definition/IDType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ImplementingType' => $baseDir . '/packages/graphql/lib/Type/Definition/ImplementingType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ImplementingTypeImplementation' => $baseDir . '/packages/graphql/lib/Type/Definition/ImplementingTypeImplementation.php', 'YOOtheme\\GraphQL\\Type\\Definition\\InputObjectField' => $baseDir . '/packages/graphql/lib/Type/Definition/InputObjectField.php', 'YOOtheme\\GraphQL\\Type\\Definition\\InputObjectType' => $baseDir . '/packages/graphql/lib/Type/Definition/InputObjectType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\InputType' => $baseDir . '/packages/graphql/lib/Type/Definition/InputType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\IntType' => $baseDir . '/packages/graphql/lib/Type/Definition/IntType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\InterfaceType' => $baseDir . '/packages/graphql/lib/Type/Definition/InterfaceType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\LeafType' => $baseDir . '/packages/graphql/lib/Type/Definition/LeafType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ListOfType' => $baseDir . '/packages/graphql/lib/Type/Definition/ListOfType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\NamedType' => $baseDir . '/packages/graphql/lib/Type/Definition/NamedType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\NamedTypeImplementation' => $baseDir . '/packages/graphql/lib/Type/Definition/NamedTypeImplementation.php', 'YOOtheme\\GraphQL\\Type\\Definition\\NonNull' => $baseDir . '/packages/graphql/lib/Type/Definition/NonNull.php', 'YOOtheme\\GraphQL\\Type\\Definition\\NullableType' => $baseDir . '/packages/graphql/lib/Type/Definition/NullableType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ObjectType' => $baseDir . '/packages/graphql/lib/Type/Definition/ObjectType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\OutputType' => $baseDir . '/packages/graphql/lib/Type/Definition/OutputType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\PhpEnumType' => $baseDir . '/packages/graphql/lib/Type/Definition/PhpEnumType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\QueryPlan' => $baseDir . '/packages/graphql/lib/Type/Definition/QueryPlan.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ResolveInfo' => $baseDir . '/packages/graphql/lib/Type/Definition/ResolveInfo.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ScalarType' => $baseDir . '/packages/graphql/lib/Type/Definition/ScalarType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\StringType' => $baseDir . '/packages/graphql/lib/Type/Definition/StringType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\Type' => $baseDir . '/packages/graphql/lib/Type/Definition/Type.php', 'YOOtheme\\GraphQL\\Type\\Definition\\UnionType' => $baseDir . '/packages/graphql/lib/Type/Definition/UnionType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\UnmodifiedType' => $baseDir . '/packages/graphql/lib/Type/Definition/UnmodifiedType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\UnresolvedFieldDefinition' => $baseDir . '/packages/graphql/lib/Type/Definition/UnresolvedFieldDefinition.php', 'YOOtheme\\GraphQL\\Type\\Definition\\WrappingType' => $baseDir . '/packages/graphql/lib/Type/Definition/WrappingType.php', 'YOOtheme\\GraphQL\\Type\\Introspection' => $baseDir . '/packages/graphql/lib/Type/Introspection.php', 'YOOtheme\\GraphQL\\Type\\ObjectScalarType' => $baseDir . '/packages/graphql/src/Type/ObjectScalarType.php', 'YOOtheme\\GraphQL\\Type\\Schema' => $baseDir . '/packages/graphql/lib/Type/Schema.php', 'YOOtheme\\GraphQL\\Type\\SchemaConfig' => $baseDir . '/packages/graphql/lib/Type/SchemaConfig.php', 'YOOtheme\\GraphQL\\Type\\SchemaValidationContext' => $baseDir . '/packages/graphql/lib/Type/SchemaValidationContext.php', 'YOOtheme\\GraphQL\\Type\\TypeKind' => $baseDir . '/packages/graphql/lib/Type/TypeKind.php', 'YOOtheme\\GraphQL\\Type\\Validation\\InputObjectCircularRefs' => $baseDir . '/packages/graphql/lib/Type/Validation/InputObjectCircularRefs.php', 'YOOtheme\\GraphQL\\Utils\\AST' => $baseDir . '/packages/graphql/lib/Utils/AST.php', 'YOOtheme\\GraphQL\\Utils\\ASTDefinitionBuilder' => $baseDir . '/packages/graphql/lib/Utils/ASTDefinitionBuilder.php', 'YOOtheme\\GraphQL\\Utils\\ASTHelper' => $baseDir . '/packages/graphql/src/Utils/ASTHelper.php', 'YOOtheme\\GraphQL\\Utils\\BreakingChangesFinder' => $baseDir . '/packages/graphql/lib/Utils/BreakingChangesFinder.php', 'YOOtheme\\GraphQL\\Utils\\BuildClientSchema' => $baseDir . '/packages/graphql/lib/Utils/BuildClientSchema.php', 'YOOtheme\\GraphQL\\Utils\\BuildSchema' => $baseDir . '/packages/graphql/lib/Utils/BuildSchema.php', 'YOOtheme\\GraphQL\\Utils\\InterfaceImplementations' => $baseDir . '/packages/graphql/lib/Utils/InterfaceImplementations.php', 'YOOtheme\\GraphQL\\Utils\\Introspection' => $baseDir . '/packages/graphql/src/Utils/Introspection.php', 'YOOtheme\\GraphQL\\Utils\\LazyException' => $baseDir . '/packages/graphql/lib/Utils/LazyException.php', 'YOOtheme\\GraphQL\\Utils\\LexicalDistance' => $baseDir . '/packages/graphql/lib/Utils/LexicalDistance.php', 'YOOtheme\\GraphQL\\Utils\\Middleware' => $baseDir . '/packages/graphql/src/Utils/Middleware.php', 'YOOtheme\\GraphQL\\Utils\\MixedStore' => $baseDir . '/packages/graphql/lib/Utils/MixedStore.php', 'YOOtheme\\GraphQL\\Utils\\PairSet' => $baseDir . '/packages/graphql/lib/Utils/PairSet.php', 'YOOtheme\\GraphQL\\Utils\\PhpDoc' => $baseDir . '/packages/graphql/lib/Utils/PhpDoc.php', 'YOOtheme\\GraphQL\\Utils\\SchemaExtender' => $baseDir . '/packages/graphql/lib/Utils/SchemaExtender.php', 'YOOtheme\\GraphQL\\Utils\\SchemaPrinter' => $baseDir . '/packages/graphql/lib/Utils/SchemaPrinter.php', 'YOOtheme\\GraphQL\\Utils\\TypeComparators' => $baseDir . '/packages/graphql/lib/Utils/TypeComparators.php', 'YOOtheme\\GraphQL\\Utils\\TypeInfo' => $baseDir . '/packages/graphql/lib/Utils/TypeInfo.php', 'YOOtheme\\GraphQL\\Utils\\Utils' => $baseDir . '/packages/graphql/lib/Utils/Utils.php', 'YOOtheme\\GraphQL\\Utils\\Value' => $baseDir . '/packages/graphql/lib/Utils/Value.php', 'YOOtheme\\GraphQL\\Validator\\DocumentValidator' => $baseDir . '/packages/graphql/lib/Validator/DocumentValidator.php', 'YOOtheme\\GraphQL\\Validator\\QueryValidationContext' => $baseDir . '/packages/graphql/lib/Validator/QueryValidationContext.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\CustomValidationRule' => $baseDir . '/packages/graphql/lib/Validator/Rules/CustomValidationRule.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\DisableIntrospection' => $baseDir . '/packages/graphql/lib/Validator/Rules/DisableIntrospection.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ExecutableDefinitions' => $baseDir . '/packages/graphql/lib/Validator/Rules/ExecutableDefinitions.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\FieldsOnCorrectType' => $baseDir . '/packages/graphql/lib/Validator/Rules/FieldsOnCorrectType.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\FragmentsOnCompositeTypes' => $baseDir . '/packages/graphql/lib/Validator/Rules/FragmentsOnCompositeTypes.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\KnownArgumentNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/KnownArgumentNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\KnownArgumentNamesOnDirectives' => $baseDir . '/packages/graphql/lib/Validator/Rules/KnownArgumentNamesOnDirectives.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\KnownDirectives' => $baseDir . '/packages/graphql/lib/Validator/Rules/KnownDirectives.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\KnownFragmentNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/KnownFragmentNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\KnownTypeNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/KnownTypeNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\LoneAnonymousOperation' => $baseDir . '/packages/graphql/lib/Validator/Rules/LoneAnonymousOperation.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\LoneSchemaDefinition' => $baseDir . '/packages/graphql/lib/Validator/Rules/LoneSchemaDefinition.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\NoFragmentCycles' => $baseDir . '/packages/graphql/lib/Validator/Rules/NoFragmentCycles.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\NoUndefinedVariables' => $baseDir . '/packages/graphql/lib/Validator/Rules/NoUndefinedVariables.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\NoUnusedFragments' => $baseDir . '/packages/graphql/lib/Validator/Rules/NoUnusedFragments.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\NoUnusedVariables' => $baseDir . '/packages/graphql/lib/Validator/Rules/NoUnusedVariables.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\OneOfInputObjectsRule' => $baseDir . '/packages/graphql/lib/Validator/Rules/OneOfInputObjectsRule.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\OverlappingFieldsCanBeMerged' => $baseDir . '/packages/graphql/lib/Validator/Rules/OverlappingFieldsCanBeMerged.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\PossibleFragmentSpreads' => $baseDir . '/packages/graphql/lib/Validator/Rules/PossibleFragmentSpreads.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\PossibleTypeExtensions' => $baseDir . '/packages/graphql/lib/Validator/Rules/PossibleTypeExtensions.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ProvidedRequiredArguments' => $baseDir . '/packages/graphql/lib/Validator/Rules/ProvidedRequiredArguments.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ProvidedRequiredArgumentsOnDirectives' => $baseDir . '/packages/graphql/lib/Validator/Rules/ProvidedRequiredArgumentsOnDirectives.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\QueryComplexity' => $baseDir . '/packages/graphql/lib/Validator/Rules/QueryComplexity.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\QueryDepth' => $baseDir . '/packages/graphql/lib/Validator/Rules/QueryDepth.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\QuerySecurityRule' => $baseDir . '/packages/graphql/lib/Validator/Rules/QuerySecurityRule.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ScalarLeafs' => $baseDir . '/packages/graphql/lib/Validator/Rules/ScalarLeafs.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\SingleFieldSubscription' => $baseDir . '/packages/graphql/lib/Validator/Rules/SingleFieldSubscription.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueArgumentDefinitionNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueArgumentDefinitionNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueArgumentNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueArgumentNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueDirectiveNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueDirectiveNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueDirectivesPerLocation' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueDirectivesPerLocation.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueEnumValueNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueEnumValueNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueFieldDefinitionNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueFieldDefinitionNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueFragmentNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueFragmentNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueInputFieldNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueInputFieldNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueOperationNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueOperationNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueOperationTypes' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueOperationTypes.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueTypeNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueTypeNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueVariableNames' => $baseDir . '/packages/graphql/lib/Validator/Rules/UniqueVariableNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ValidationRule' => $baseDir . '/packages/graphql/lib/Validator/Rules/ValidationRule.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ValuesOfCorrectType' => $baseDir . '/packages/graphql/lib/Validator/Rules/ValuesOfCorrectType.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\VariablesAreInputTypes' => $baseDir . '/packages/graphql/lib/Validator/Rules/VariablesAreInputTypes.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\VariablesInAllowedPosition' => $baseDir . '/packages/graphql/lib/Validator/Rules/VariablesInAllowedPosition.php', 'YOOtheme\\GraphQL\\Validator\\SDLValidationContext' => $baseDir . '/packages/graphql/lib/Validator/SDLValidationContext.php', 'YOOtheme\\GraphQL\\Validator\\ValidationContext' => $baseDir . '/packages/graphql/lib/Validator/ValidationContext.php', 'YOOtheme\\Hook' => $baseDir . '/packages/utils/src/Hook.php', 'YOOtheme\\HookCollection' => $baseDir . '/packages/utils/src/HookCollection.php', 'YOOtheme\\HttpClientInterface' => $baseDir . '/packages/http-server/src/HttpClientInterface.php', 'YOOtheme\\Http\\CallbackStream' => $baseDir . '/packages/http-message/src/CallbackStream.php', 'YOOtheme\\Http\\Exception' => $baseDir . '/packages/http-message/src/Exception.php', 'YOOtheme\\Http\\HttpFactory' => $baseDir . '/packages/http-message/src/HttpFactory.php', 'YOOtheme\\Http\\MessageTrait' => $baseDir . '/packages/http-message/src/MessageTrait.php', 'YOOtheme\\Http\\Message\\Factory\\HttplugFactory' => $baseDir . '/packages/http-message/lib/Factory/HttplugFactory.php', 'YOOtheme\\Http\\Message\\Factory\\Psr17Factory' => $baseDir . '/packages/http-message/lib/Factory/Psr17Factory.php', 'YOOtheme\\Http\\Message\\MessageTrait' => $baseDir . '/packages/http-message/lib/MessageTrait.php', 'YOOtheme\\Http\\Message\\Request' => $baseDir . '/packages/http-message/lib/Request.php', 'YOOtheme\\Http\\Message\\RequestTrait' => $baseDir . '/packages/http-message/lib/RequestTrait.php', 'YOOtheme\\Http\\Message\\Response' => $baseDir . '/packages/http-message/lib/Response.php', 'YOOtheme\\Http\\Message\\ServerRequest' => $baseDir . '/packages/http-message/lib/ServerRequest.php', 'YOOtheme\\Http\\Message\\Stream' => $baseDir . '/packages/http-message/lib/Stream.php', 'YOOtheme\\Http\\Message\\StreamTrait' => $baseDir . '/packages/http-message/lib/StreamTrait.php', 'YOOtheme\\Http\\Message\\UploadedFile' => $baseDir . '/packages/http-message/lib/UploadedFile.php', 'YOOtheme\\Http\\Message\\Uri' => $baseDir . '/packages/http-message/lib/Uri.php', 'YOOtheme\\Http\\Request' => $baseDir . '/packages/http-message/src/Request.php', 'YOOtheme\\Http\\Response' => $baseDir . '/packages/http-message/src/Response.php', 'YOOtheme\\Http\\Uri' => $baseDir . '/packages/http-message/src/Uri.php', 'YOOtheme\\Image' => $baseDir . '/packages/image/src/Image.php', 'YOOtheme\\ImageController' => $baseDir . '/packages/image/src/ImageController.php', 'YOOtheme\\ImageProvider' => $baseDir . '/packages/image/src/ImageProvider.php', 'YOOtheme\\Image\\BaseResource' => $baseDir . '/packages/image/src/Image/BaseResource.php', 'YOOtheme\\Image\\ExifLoader' => $baseDir . '/packages/image/src/Image/ExifLoader.php', 'YOOtheme\\Image\\GDResource' => $baseDir . '/packages/image/src/Image/GDResource.php', 'YOOtheme\\Joomla\\ActionLoader' => $baseDir . '/packages/platform-joomla/src/ActionLoader.php', 'YOOtheme\\Joomla\\Dispatcher' => $baseDir . '/packages/platform-joomla/src/Dispatcher.php', 'YOOtheme\\Joomla\\HttpClient' => $baseDir . '/packages/platform-joomla/src/HttpClient.php', 'YOOtheme\\Joomla\\Media' => $baseDir . '/packages/platform-joomla/src/Media.php', 'YOOtheme\\Joomla\\Platform' => $baseDir . '/packages/platform-joomla/src/Platform.php', 'YOOtheme\\Joomla\\Router' => $baseDir . '/packages/platform-joomla/src/Router.php', 'YOOtheme\\Joomla\\Storage' => $baseDir . '/packages/platform-joomla/src/Storage.php', 'YOOtheme\\Memory' => $baseDir . '/packages/utils/src/Memory.php', 'YOOtheme\\Metadata' => $baseDir . '/packages/view-metadata/src/Metadata.php', 'YOOtheme\\Middleware' => $baseDir . '/packages/utils/src/Middleware.php', 'YOOtheme\\Path' => $baseDir . '/packages/utils/src/Path.php', 'YOOtheme\\Reflection' => $baseDir . '/packages/utils/src/Reflection.php', 'YOOtheme\\Route' => $baseDir . '/packages/http-server/src/Route.php', 'YOOtheme\\Router' => $baseDir . '/packages/http-server/src/Router.php', 'YOOtheme\\RouterMiddleware' => $baseDir . '/packages/http-server/src/RouterMiddleware.php', 'YOOtheme\\Routes' => $baseDir . '/packages/http-server/src/Routes.php', 'YOOtheme\\Storage' => $baseDir . '/packages/application/src/Storage.php', 'YOOtheme\\Str' => $baseDir . '/packages/utils/src/Str.php', 'YOOtheme\\Theme\\Analytics\\Listener\\LoadThemeHead' => $baseDir . '/packages/theme-analytics/src/Listener/LoadThemeHead.php', 'YOOtheme\\Theme\\CacheController' => $baseDir . '/packages/theme-settings/src/CacheController.php', 'YOOtheme\\Theme\\Cookie\\Listener\\LoadThemeHead' => $baseDir . '/packages/theme-cookie/src/Listener/LoadThemeHead.php', 'YOOtheme\\Theme\\Highlight\\Listener\\LoadHighlightScript' => $baseDir . '/packages/theme-highlight/src/Listener/LoadHighlightScript.php', 'YOOtheme\\Theme\\ImageLoader' => $baseDir . '/packages/theme/src/ImageLoader.php', 'YOOtheme\\Theme\\Joomla\\ApiKey' => $baseDir . '/packages/theme-joomla/src/ApiKey.php', 'YOOtheme\\Theme\\Joomla\\CustomizerController' => $baseDir . '/packages/theme-joomla/src/CustomizerController.php', 'YOOtheme\\Theme\\Joomla\\EditorConfig' => $baseDir . '/packages/theme-joomla-editor/src/EditorConfig.php', 'YOOtheme\\Theme\\Joomla\\EditorController' => $baseDir . '/packages/theme-joomla-editor/src/EditorController.php', 'YOOtheme\\Theme\\Joomla\\FinderConfig' => $baseDir . '/packages/theme-joomla-finder/src/FinderConfig.php', 'YOOtheme\\Theme\\Joomla\\FinderController' => $baseDir . '/packages/theme-joomla-finder/src/FinderController.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AddCustomizeParameter' => $baseDir . '/packages/theme-joomla/src/Listener/AddCustomizeParameter.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AddJsonMimeType' => $baseDir . '/packages/theme-joomla-finder/src/Listener/AddJsonMimeType.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AddPageCategory' => $baseDir . '/packages/theme-joomla/src/Listener/AddPageCategory.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AddPageLayout' => $baseDir . '/packages/theme-joomla/src/Listener/AddPageLayout.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AddSiteUrl' => $baseDir . '/packages/theme-joomla/src/Listener/AddSiteUrl.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AlterParamsColumnType' => $baseDir . '/packages/theme-joomla/src/Listener/AlterParamsColumnType.php', 'YOOtheme\\Theme\\Joomla\\Listener\\CheckUserPermission' => $baseDir . '/packages/theme-joomla/src/Listener/CheckUserPermission.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadArticleForm' => $baseDir . '/packages/theme-joomla-articles/src/Listener/LoadArticleForm.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadAssets' => $baseDir . '/packages/theme-joomla/src/Listener/LoadAssets.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadChildTheme' => $baseDir . '/packages/theme-joomla/src/Listener/LoadChildTheme.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadChildThemeConfig' => $baseDir . '/packages/theme-joomla/src/Listener/LoadChildThemeConfig.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadChildThemeModules' => $baseDir . '/packages/theme-joomla/src/Listener/LoadChildThemeModules.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadChildThemeNames' => $baseDir . '/packages/theme-joomla/src/Listener/LoadChildThemeNames.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadChildThemeTemplate' => $baseDir . '/packages/theme-joomla/src/Listener/LoadChildThemeTemplate.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadConfigCache' => $baseDir . '/packages/theme-joomla/src/Listener/LoadConfigCache.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadCustomizer' => $baseDir . '/packages/theme-joomla/src/Listener/LoadCustomizer.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadCustomizerContext' => $baseDir . '/packages/theme-joomla/src/Listener/LoadCustomizerContext.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadCustomizerData' => $baseDir . '/packages/theme-joomla/src/Listener/LoadCustomizerData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadCustomizerScript' => $baseDir . '/packages/theme-joomla/src/Listener/LoadCustomizerScript.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadCustomizerSession' => $baseDir . '/packages/theme-joomla/src/Listener/LoadCustomizerSession.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadEditorData' => $baseDir . '/packages/theme-joomla-editor/src/Listener/LoadEditorData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadFinderData' => $baseDir . '/packages/theme-joomla-finder/src/Listener/LoadFinderData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadFontAwesome' => $baseDir . '/packages/theme-joomla/src/Listener/LoadFontAwesome.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadMenuData' => $baseDir . '/packages/theme-joomla-menus/src/Listener/LoadMenuData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadMenuModules' => $baseDir . '/packages/theme-joomla-menus/src/Listener/LoadMenuModules.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadModuleData' => $baseDir . '/packages/theme-joomla-modules/src/Listener/LoadModuleData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadModuleForm' => $baseDir . '/packages/theme-joomla-modules/src/Listener/LoadModuleForm.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadModuleRenderer' => $baseDir . '/packages/theme-joomla-modules/src/Listener/LoadModuleRenderer.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadModules' => $baseDir . '/packages/theme-joomla-modules/src/Listener/LoadModules.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadSplitNavbar' => $baseDir . '/packages/theme-joomla-menus/src/Listener/LoadSplitNavbar.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadStylerImports' => $baseDir . '/packages/theme-joomla/src/Listener/LoadStylerImports.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadTemplate' => $baseDir . '/packages/theme-joomla/src/Listener/LoadTemplate.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadThemeHead' => $baseDir . '/packages/theme-joomla/src/Listener/LoadThemeHead.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadThemeI18n' => $baseDir . '/packages/theme-joomla/src/Listener/LoadThemeI18n.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadViewsObject' => $baseDir . '/packages/theme-joomla/src/Listener/LoadViewsObject.php', 'YOOtheme\\Theme\\Joomla\\Listener\\SaveBuilderData' => $baseDir . '/packages/theme-joomla-articles/src/Listener/SaveBuilderData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\SaveInstallerApiKey' => $baseDir . '/packages/theme-joomla/src/Listener/SaveInstallerApiKey.php', 'YOOtheme\\Theme\\Joomla\\MenuConfig' => $baseDir . '/packages/theme-joomla-menus/src/MenuConfig.php', 'YOOtheme\\Theme\\Joomla\\MenuController' => $baseDir . '/packages/theme-joomla-menus/src/MenuController.php', 'YOOtheme\\Theme\\Joomla\\ModuleConfig' => $baseDir . '/packages/theme-joomla-modules/src/ModuleConfig.php', 'YOOtheme\\Theme\\Joomla\\ModuleController' => $baseDir . '/packages/theme-joomla-modules/src/ModuleController.php', 'YOOtheme\\Theme\\Joomla\\ModulesRenderer' => $baseDir . '/packages/theme-joomla-modules/src/ModulesRenderer.php', 'YOOtheme\\Theme\\Joomla\\PositionLoader' => $baseDir . '/packages/theme-joomla/src/PositionLoader.php', 'YOOtheme\\Theme\\Joomla\\StreamWrapper' => $baseDir . '/packages/theme-joomla/src/StreamWrapper.php', 'YOOtheme\\Theme\\Joomla\\SystemCheck' => $baseDir . '/packages/theme-joomla/src/SystemCheck.php', 'YOOtheme\\Theme\\Joomla\\ThemeLoader' => $baseDir . '/packages/theme-joomla/src/ThemeLoader.php', 'YOOtheme\\Theme\\Joomla\\UrlLoader' => $baseDir . '/packages/theme-joomla/src/UrlLoader.php', 'YOOtheme\\Theme\\Joomla\\ViewHelper' => $baseDir . '/packages/theme-joomla/src/ViewHelper.php', 'YOOtheme\\Theme\\Joomla\\ViewLoader' => $baseDir . '/packages/theme-joomla-articles/src/ViewLoader.php', 'YOOtheme\\Theme\\Joomla\\ViewsObject' => $baseDir . '/packages/theme-joomla/src/ViewsObject.php', 'YOOtheme\\Theme\\Listener\\AvifImageSupport' => $baseDir . '/packages/theme-settings/src/Listener/AvifImageSupport.php', 'YOOtheme\\Theme\\Listener\\DisableImageCache' => $baseDir . '/packages/theme/src/Listener/DisableImageCache.php', 'YOOtheme\\Theme\\Listener\\LoadConfigData' => $baseDir . '/packages/theme/src/Listener/LoadConfigData.php', 'YOOtheme\\Theme\\Listener\\LoadCustomizerData' => $baseDir . '/packages/theme/src/Listener/LoadCustomizerData.php', 'YOOtheme\\Theme\\Listener\\LoadThemeHead' => $baseDir . '/packages/theme/src/Listener/LoadThemeHead.php', 'YOOtheme\\Theme\\Listener\\LoadThemeVersion' => $baseDir . '/packages/theme/src/Listener/LoadThemeVersion.php', 'YOOtheme\\Theme\\Listener\\LoadUIkitScript' => $baseDir . '/packages/theme/src/Listener/LoadUIkitScript.php', 'YOOtheme\\Theme\\Listener\\SaveBuilderLayouts' => $baseDir . '/packages/theme/src/Listener/SaveBuilderLayouts.php', 'YOOtheme\\Theme\\Listener\\SetBodyClass' => $baseDir . '/packages/theme-settings/src/Listener/SetBodyClass.php', 'YOOtheme\\Theme\\Listener\\SetFavicons' => $baseDir . '/packages/theme-settings/src/Listener/SetFavicons.php', 'YOOtheme\\Theme\\Listener\\ShowNewsModal' => $baseDir . '/packages/theme-settings/src/Listener/ShowNewsModal.php', 'YOOtheme\\Theme\\Listener\\UpdateBuilderLayouts' => $baseDir . '/packages/theme/src/Listener/UpdateBuilderLayouts.php', 'YOOtheme\\Theme\\SettingsController' => $baseDir . '/packages/theme-settings/src/SettingsController.php', 'YOOtheme\\Theme\\Styler\\LibraryController' => $baseDir . '/packages/styler/src/LibraryController.php', 'YOOtheme\\Theme\\Styler\\Listener\\LoadStylerData' => $baseDir . '/packages/styler/src/Listener/LoadStylerData.php', 'YOOtheme\\Theme\\Styler\\Listener\\LoadStylerImports' => $baseDir . '/packages/styler/src/Listener/LoadStylerImports.php', 'YOOtheme\\Theme\\Styler\\StyleController' => $baseDir . '/packages/styler/src/StyleController.php', 'YOOtheme\\Theme\\Styler\\StyleFontLoader' => $baseDir . '/packages/styler/src/StyleFontLoader.php', 'YOOtheme\\Theme\\Styler\\Styler' => $baseDir . '/packages/styler/src/Styler.php', 'YOOtheme\\Theme\\Styler\\StylerConfig' => $baseDir . '/packages/styler/src/StylerConfig.php', 'YOOtheme\\Theme\\SvgHelper' => $baseDir . '/packages/theme/src/SvgHelper.php', 'YOOtheme\\Theme\\SystemCheck' => $baseDir . '/packages/theme/src/SystemCheck.php', 'YOOtheme\\Theme\\SystemCheckController' => $baseDir . '/packages/theme-settings/src/SystemCheckController.php', 'YOOtheme\\Theme\\Updater' => $baseDir . '/packages/theme/src/Updater.php', 'YOOtheme\\Theme\\ViewHelper' => $baseDir . '/packages/theme/src/ViewHelper.php', 'YOOtheme\\Theme\\ViewHelperInterface' => $baseDir . '/packages/theme/src/ViewHelperInterface.php', 'YOOtheme\\Translation\\Interval' => $baseDir . '/packages/translation/src/Translation/Interval.php', 'YOOtheme\\Translation\\PluralizationRules' => $baseDir . '/packages/translation/src/Translation/PluralizationRules.php', 'YOOtheme\\Translation\\Translator' => $baseDir . '/packages/translation/src/Translation/Translator.php', 'YOOtheme\\Translator' => $baseDir . '/packages/translation/src/Translator.php', 'YOOtheme\\Url' => $baseDir . '/packages/utils/src/Url.php', 'YOOtheme\\UrlResolver' => $baseDir . '/packages/http-server/src/UrlResolver.php', 'YOOtheme\\View' => $baseDir . '/packages/view/src/View.php', 'YOOtheme\\View\\FileLoader' => $baseDir . '/packages/view/src/View/FileLoader.php', 'YOOtheme\\View\\HtmlElement' => $baseDir . '/packages/view/src/View/HtmlElement.php', 'YOOtheme\\View\\HtmlElementInterface' => $baseDir . '/packages/view/src/View/HtmlElementInterface.php', 'YOOtheme\\View\\HtmlHelper' => $baseDir . '/packages/view/src/View/HtmlHelper.php', 'YOOtheme\\View\\HtmlHelperInterface' => $baseDir . '/packages/view/src/View/HtmlHelperInterface.php', 'YOOtheme\\View\\MetadataManager' => $baseDir . '/packages/view-metadata/src/View/MetadataManager.php', 'YOOtheme\\View\\MetadataObject' => $baseDir . '/packages/view-metadata/src/View/MetadataObject.php', 'YOOtheme\\View\\SectionHelper' => $baseDir . '/packages/view/src/View/SectionHelper.php', 'YOOtheme\\View\\StrHelper' => $baseDir . '/packages/view/src/View/StrHelper.php', ); composer/ClassLoader.php000064400000037772151666572340011337 0ustar00<?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 YOOtheme\Autoload; /** * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. * * $loader = new \YOOtheme\Autoload\ClassLoader(); * * // register classes with namespaces * $loader->add('Symfony\Component', __DIR__.'/component'); * $loader->add('Symfony', __DIR__.'/framework'); * * // activate the autoloader * $loader->register(); * * // to enable searching the include path (eg. for PEAR packages) * $loader->setUseIncludePath(true); * * In this example, if you try to use a class in the Symfony\Component * namespace or one of its children (Symfony\Component\Console for instance), * the autoloader will first look for the class under the component/ * directory, and it will then fallback to the framework/ directory if not * found before giving up. * * This class is loosely based on the Symfony UniversalClassLoader. * * @author Fabien Potencier <fabien@symfony.com> * @author Jordi Boggiano <j.boggiano@seld.be> * @see https://www.php-fig.org/psr/psr-0/ * @see https://www.php-fig.org/psr/psr-4/ */ 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)) { return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); } 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<string, string> $classMap Class to filename map * * @return void */ public function addClassMap(array $classMap) { if ($this->classMap) { $this->classMap = array_merge($this->classMap, $classMap); } else { $this->classMap = $classMap; } } /** * 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 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( $paths, $this->fallbackDirsPsr0 ); } else { $this->fallbackDirsPsr0 = array_merge( $this->fallbackDirsPsr0, $paths ); } return; } $first = $prefix[0]; if (!isset($this->prefixesPsr0[$first][$prefix])) { $this->prefixesPsr0[$first][$prefix] = $paths; return; } if ($prepend) { $this->prefixesPsr0[$first][$prefix] = array_merge( $paths, $this->prefixesPsr0[$first][$prefix] ); } else { $this->prefixesPsr0[$first][$prefix] = array_merge( $this->prefixesPsr0[$first][$prefix], $paths ); } } /** * 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 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( $paths, $this->fallbackDirsPsr4 ); } else { $this->fallbackDirsPsr4 = array_merge( $this->fallbackDirsPsr4, $paths ); } } elseif (!isset($this->prefixDirsPsr4[$prefix])) { // Register directories for a new namespace. $length = strlen($prefix); if ('\\' !== $prefix[$length - 1]) { throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; $this->prefixDirsPsr4[$prefix] = $paths; } elseif ($prepend) { // Prepend directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( $paths, $this->prefixDirsPsr4[$prefix] ); } else { // Append directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( $this->prefixDirsPsr4[$prefix], $paths ); } } /** * 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 list<string>|string $paths The PSR-0 base directories * * @return void */ public function set($prefix, $paths) { if (!$prefix) { $this->fallbackDirsPsr0 = (array) $paths; } else { $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; } } /** * 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 list<string>|string $paths The PSR-4 base directories * * @throws \InvalidArgumentException * * @return void */ public function setPsr4($prefix, $paths) { if (!$prefix) { $this->fallbackDirsPsr4 = (array) $paths; } else { $length = strlen($prefix); if ('\\' !== $prefix[$length - 1]) { 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; } } /** * Turns on searching the include path for class files. * * @param bool $useIncludePath * * @return void */ public function setUseIncludePath($useIncludePath) { $this->useIncludePath = $useIncludePath; } /** * Can be used to check if the autoloader uses the include path to check * for classes. * * @return bool */ public function getUseIncludePath() { return $this->useIncludePath; } /** * Turns off searching the prefix and fallback directories for classes * that have not been registered with the class map. * * @param bool $classMapAuthoritative * * @return void */ public function setClassMapAuthoritative($classMapAuthoritative) { $this->classMapAuthoritative = $classMapAuthoritative; } /** * Should class lookup fail if not found in the current class map? * * @return bool */ public function isClassMapAuthoritative() { return $this->classMapAuthoritative; } /** * 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) { $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; } /** * The APCu prefix in use, or null if APCu caching is not enabled. * * @return string|null */ public function getApcuPrefix() { return $this->apcuPrefix; } /** * 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) { return; } if ($prepend) { self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders; } else { unset(self::$registeredLoaders[$this->vendorDir]); self::$registeredLoaders[$this->vendorDir] = $this; } } /** * Unregisters this instance as an autoloader. * * @return void */ public function unregister() { spl_autoload_unregister(array($this, 'loadClass')); if (null !== $this->vendorDir) { unset(self::$registeredLoaders[$this->vendorDir]); } } /** * Loads the given class or interface. * * @param string $class The name of the class * @return true|null True if loaded, null otherwise */ public function loadClass($class) { if ($file = $this->findFile($class)) { $includeFile = self::$includeFile; $includeFile($file); return true; } return null; } /** * Finds the path to the file where the class is defined. * * @param string $class The name of the class * * @return string|false The path if found, false otherwise */ public function findFile($class) { // class map lookup if (isset($this->classMap[$class])) { return $this->classMap[$class]; } if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { return false; } if (null !== $this->apcuPrefix) { $file = apcu_fetch($this->apcuPrefix.$class, $hit); if ($hit) { return $file; } } $file = $this->findFileWithExtension($class, '.php'); // Search for Hack files if we are running on HHVM if (false === $file && defined('HHVM_VERSION')) { $file = $this->findFileWithExtension($class, '.hh'); } if (null !== $this->apcuPrefix) { apcu_add($this->apcuPrefix.$class, $file); } if (false === $file) { // Remember that this class does not exist. $this->missingClasses[$class] = true; } return $file; } /** * Returns the currently registered loaders keyed by their corresponding vendor directories. * * @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 $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; $first = $class[0]; if (isset($this->prefixLengthsPsr4[$first])) { $subPath = $class; while (false !== $lastPos = strrpos($subPath, '\\')) { $subPath = substr($subPath, 0, $lastPos); $search = $subPath . '\\'; if (isset($this->prefixDirsPsr4[$search])) { $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); foreach ($this->prefixDirsPsr4[$search] as $dir) { if (file_exists($file = $dir . $pathEnd)) { return $file; } } } } } // PSR-4 fallback dirs foreach ($this->fallbackDirsPsr4 as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { return $file; } } // PSR-0 lookup if (false !== $pos = strrpos($class, '\\')) { // namespaced class name $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); } else { // PEAR-like class name $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; } if (isset($this->prefixesPsr0[$first])) { foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { if (0 === strpos($class, $prefix)) { foreach ($dirs as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { return $file; } } } } } // PSR-0 fallback dirs foreach ($this->fallbackDirsPsr0 as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { return $file; } } // PSR-0 include paths. if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { return $file; } return false; } /** * @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); } } composer/installed.php000064400000013125151666572340011104 0ustar00<?php return array( 'root' => array( 'name' => 'yootheme/pro', 'pretty_version' => '4.5.33', 'version' => '4.5.33.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => true, ), 'versions' => array( 'nikic/php-parser' => array( 'pretty_version' => 'v5.6.2', 'version' => '5.6.2.0', 'reference' => '3a454ca033b9e06b63282ce19562e892747449bb', 'type' => 'library', 'install_path' => __DIR__ . '/../nikic/php-parser', 'aliases' => array(), 'dev_requirement' => false, ), 'nyholm/psr7' => array( 'pretty_version' => '1.8.2', 'version' => '1.8.2.0', 'reference' => 'a71f2b11690f4b24d099d6b16690a90ae14fc6f3', 'type' => 'library', 'install_path' => __DIR__ . '/../nyholm/psr7', 'aliases' => array(), 'dev_requirement' => false, ), 'php-http/message-factory-implementation' => array( 'dev_requirement' => false, 'provided' => array( 0 => '1.0', ), ), 'psr/container' => array( 'pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => false, ), 'psr/http-factory' => array( 'pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => false, ), 'psr/http-factory-implementation' => array( 'dev_requirement' => false, 'provided' => array( 0 => '1.0', ), ), 'psr/http-message' => array( 'pretty_version' => '1.1', 'version' => '1.1.0.0', 'reference' => 'cb6ce4845ce34a8ad9e68117c10ee90a29919eba', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => false, ), 'psr/http-message-implementation' => array( 'dev_requirement' => false, 'provided' => array( 0 => '1.0', ), ), 'symfony/polyfill-php80' => array( 'pretty_version' => 'v1.33.0', 'version' => '1.33.0.0', 'reference' => '0cc9dd0f17f61d8131e7df6b84bd344899fe2608', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => false, ), 'symfony/polyfill-php81' => array( 'pretty_version' => 'v1.33.0', 'version' => '1.33.0.0', 'reference' => '4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php81', 'aliases' => array(), 'dev_requirement' => false, ), 'symfony/polyfill-php82' => array( 'pretty_version' => 'v1.33.0', 'version' => '1.33.0.0', 'reference' => '5d2ed36f7734637dacc025f179698031951b1692', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php82', 'aliases' => array(), 'dev_requirement' => false, ), 'symfony/polyfill-php83' => array( 'pretty_version' => 'v1.33.0', 'version' => '1.33.0.0', 'reference' => '17f6f9a6b1735c0f163024d959f700cfbc5155e5', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php83', 'aliases' => array(), 'dev_requirement' => false, ), 'symfony/polyfill-php84' => array( 'pretty_version' => 'v1.33.0', 'version' => '1.33.0.0', 'reference' => 'd8ced4d875142b6a7426000426b8abc631d6b191', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php84', 'aliases' => array(), 'dev_requirement' => false, ), 'webonyx/graphql-php' => array( 'pretty_version' => 'v15.24.0', 'version' => '15.24.0.0', 'reference' => '030a04d22d52d7fc07049d0e3b683d2b40f90457', 'type' => 'library', 'install_path' => __DIR__ . '/../webonyx/graphql-php', 'aliases' => array(), 'dev_requirement' => false, ), 'wikimedia/composer-merge-plugin' => array( 'pretty_version' => 'v2.1.0', 'version' => '2.1.0.0', 'reference' => 'a03d426c8e9fb2c9c569d9deeb31a083292788bc', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../wikimedia/composer-merge-plugin', 'aliases' => array(), 'dev_requirement' => false, ), 'yootheme/pro' => array( 'pretty_version' => '4.5.33', 'version' => '4.5.33.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => false, ), ), ); composer/InstalledVersions.php000064400000041763151666572340012606 0ustar00<?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 YOOtheme\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 string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to * @internal */ private static $selfDir = null; /** * @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 */ private static $installedIsLocalDir; /** * @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(); // when using reload, we disable the duplicate protection to ensure that self::$installed data is // always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not, // so we have to assume it does not, and that may result in duplicate data being returned when listing // all installed packages for example self::$installedIsLocalDir = false; } /** * @return string */ private static function getSelfDir() { if (self::$selfDir === null) { self::$selfDir = strtr(__DIR__, '\\', '/'); } return self::$selfDir; } /** * @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('YOOtheme\Autoload\ClassLoader', 'getRegisteredLoaders'); } $installed = array(); $copiedLocalDir = false; if (self::$canGetVendors) { $selfDir = self::getSelfDir(); foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { $vendorDir = strtr($vendorDir, '\\', '/'); 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'; self::$installedByVendor[$vendorDir] = $required; $installed[] = $required; if (self::$installed === null && $vendorDir.'/composer' === $selfDir) { self::$installed = $required; self::$installedIsLocalDir = true; } } if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) { $copiedLocalDir = true; } } } 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() && !$copiedLocalDir) { $installed[] = self::$installed; } return $installed; } } composer/autoload_real.php000064400000003130151666572340011733 0ustar00<?php // autoload_real.php @generated by Composer class ComposerAutoloaderInitcf47a1892afdee14a54635974d33870c { private static $loader; public static function loadClassLoader($class) { if ('YOOtheme\Autoload\ClassLoader' === $class) { require __DIR__ . '/ClassLoader.php'; } } /** * @return \YOOtheme\Autoload\ClassLoader */ public static function getLoader() { if (null !== self::$loader) { return self::$loader; } spl_autoload_register(array('ComposerAutoloaderInitcf47a1892afdee14a54635974d33870c', 'loadClassLoader'), true, false); self::$loader = $loader = new \YOOtheme\Autoload\ClassLoader(\dirname(__DIR__)); spl_autoload_unregister(array('ComposerAutoloaderInitcf47a1892afdee14a54635974d33870c', 'loadClassLoader')); require __DIR__ . '/autoload_static.php'; call_user_func(\YOOtheme\Autoload\ComposerStaticInitcf47a1892afdee14a54635974d33870c::getInitializer($loader)); $loader->register(false); $filesToLoad = \YOOtheme\Autoload\ComposerStaticInitcf47a1892afdee14a54635974d33870c::$files; $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; require $file; } }, null, null); foreach ($filesToLoad as $fileIdentifier => $file) { $requireFile($fileIdentifier, $file); } return $loader; } } composer/autoload_psr4.php000064400000006473151666572340011715 0ustar00<?php // autoload_psr4.php @generated by Composer $vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( 'YOOtheme\\Theme\\Styler\\' => array($baseDir . '/packages/styler/src'), 'YOOtheme\\Theme\\Joomla\\' => array($baseDir . '/packages/theme-joomla-articles/src', $baseDir . '/packages/theme-joomla-editor/src', $baseDir . '/packages/theme-joomla-finder/src', $baseDir . '/packages/theme-joomla-menus/src', $baseDir . '/packages/theme-joomla-modules/src', $baseDir . '/packages/theme-joomla/src'), 'YOOtheme\\Theme\\Highlight\\' => array($baseDir . '/packages/theme-highlight/src'), 'YOOtheme\\Theme\\Cookie\\' => array($baseDir . '/packages/theme-cookie/src'), 'YOOtheme\\Theme\\Analytics\\' => array($baseDir . '/packages/theme-analytics/src'), 'YOOtheme\\Theme\\' => array($baseDir . '/packages/theme-settings/src', $baseDir . '/packages/theme/src'), 'YOOtheme\\Joomla\\' => array($baseDir . '/packages/platform-joomla/src'), 'YOOtheme\\Http\\Message\\' => array($baseDir . '/packages/http-message/lib'), 'YOOtheme\\Http\\' => array($baseDir . '/packages/http-message/src'), 'YOOtheme\\GraphQL\\' => array($baseDir . '/packages/graphql/lib', $baseDir . '/packages/graphql/src'), 'YOOtheme\\Composer\\' => array($baseDir . '/packages/composer/src'), 'YOOtheme\\Builder\\Templates\\' => array($baseDir . '/packages/builder-templates/src'), 'YOOtheme\\Builder\\Source\\Filesystem\\' => array($baseDir . '/packages/builder-source-filesystem/src'), 'YOOtheme\\Builder\\Newsletter\\' => array($baseDir . '/packages/builder-newsletter/src'), 'YOOtheme\\Builder\\Joomla\\Source\\' => array($baseDir . '/packages/builder-joomla-source/src'), 'YOOtheme\\Builder\\Joomla\\Search\\' => array($baseDir . '/packages/builder-joomla-search/src'), 'YOOtheme\\Builder\\Joomla\\RegularLabs\\' => array($baseDir . '/packages/builder-joomla-regularlabs/src'), 'YOOtheme\\Builder\\Joomla\\Fields\\' => array($baseDir . '/packages/builder-joomla-fields/src'), 'YOOtheme\\Builder\\Joomla\\' => array($baseDir . '/packages/builder-joomla/src'), 'YOOtheme\\Builder\\' => array($baseDir . '/packages/builder-source/src'), 'YOOtheme\\' => array($baseDir . '/packages/application/src', $baseDir . '/packages/builder/src', $baseDir . '/packages/configuration/src', $baseDir . '/packages/container/src', $baseDir . '/packages/http-server/src', $baseDir . '/packages/image/src', $baseDir . '/packages/translation/src', $baseDir . '/packages/utils/src', $baseDir . '/packages/view-metadata/src', $baseDir . '/packages/view/src'), 'Wikimedia\\Composer\\Merge\\V2\\' => array($vendorDir . '/wikimedia/composer-merge-plugin/src'), 'Symfony\\Polyfill\\Php84\\' => array($vendorDir . '/symfony/polyfill-php84'), 'Symfony\\Polyfill\\Php83\\' => array($vendorDir . '/symfony/polyfill-php83'), 'Symfony\\Polyfill\\Php82\\' => array($vendorDir . '/symfony/polyfill-php82'), 'Symfony\\Polyfill\\Php81\\' => array($vendorDir . '/symfony/polyfill-php81'), 'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'), 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-factory/src', $vendorDir . '/psr/http-message/src'), 'Psr\\Container\\' => array($vendorDir . '/psr/container/src'), 'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'), ); composer/autoload_namespaces.php000064400000000213151666572340013126 0ustar00<?php // autoload_namespaces.php @generated by Composer $vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( ); composer/LICENSE000064400000002056151666572340007422 0ustar00 Copyright (c) Nils Adermann, Jordi Boggiano Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. composer/installed.json000064400000074314151666572340011275 0ustar00{ "packages": [ { "name": "nikic/php-parser", "version": "v5.6.2", "version_normalized": "5.6.2.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", "reference": "3a454ca033b9e06b63282ce19562e892747449bb" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/3a454ca033b9e06b63282ce19562e892747449bb", "reference": "3a454ca033b9e06b63282ce19562e892747449bb", "shasum": "" }, "require": { "ext-ctype": "*", "ext-json": "*", "ext-tokenizer": "*", "php": ">=7.4" }, "require-dev": { "ircmaxell/php-yacc": "^0.0.7", "phpunit/phpunit": "^9.0" }, "time": "2025-10-21T19:32:17+00:00", "bin": [ "bin/php-parse" ], "type": "library", "extra": { "branch-alias": { "dev-master": "5.x-dev" } }, "installation-source": "dist", "autoload": { "psr-4": { "PhpParser\\": "lib/PhpParser" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { "name": "Nikita Popov" } ], "description": "A PHP parser written in PHP", "keywords": [ "parser", "php" ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.2" }, "install-path": "../nikic/php-parser" }, { "name": "nyholm/psr7", "version": "1.8.2", "version_normalized": "1.8.2.0", "source": { "type": "git", "url": "https://github.com/Nyholm/psr7.git", "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3", "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3", "shasum": "" }, "require": { "php": ">=7.2", "psr/http-factory": "^1.0", "psr/http-message": "^1.1 || ^2.0" }, "provide": { "php-http/message-factory-implementation": "1.0", "psr/http-factory-implementation": "1.0", "psr/http-message-implementation": "1.0" }, "require-dev": { "http-interop/http-factory-tests": "^0.9", "php-http/message-factory": "^1.0", "php-http/psr7-integration-tests": "^1.0", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4", "symfony/error-handler": "^4.4" }, "time": "2024-09-09T07:06:30+00:00", "type": "library", "extra": { "branch-alias": { "dev-master": "1.8-dev" } }, "installation-source": "dist", "autoload": { "psr-4": { "Nyholm\\Psr7\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Tobias Nyholm", "email": "tobias.nyholm@gmail.com" }, { "name": "Martijn van der Ven", "email": "martijn@vanderven.se" } ], "description": "A fast PHP7 implementation of PSR-7", "homepage": "https://tnyholm.se", "keywords": [ "psr-17", "psr-7" ], "support": { "issues": "https://github.com/Nyholm/psr7/issues", "source": "https://github.com/Nyholm/psr7/tree/1.8.2" }, "funding": [ { "url": "https://github.com/Zegnat", "type": "github" }, { "url": "https://github.com/nyholm", "type": "github" } ], "install-path": "../nyholm/psr7" }, { "name": "psr/container", "version": "1.1.2", "version_normalized": "1.1.2.0", "source": { "type": "git", "url": "https://github.com/php-fig/container.git", "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea", "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", "shasum": "" }, "require": { "php": ">=7.4.0" }, "time": "2021-11-05T16:50:12+00:00", "type": "library", "installation-source": "dist", "autoload": { "psr-4": { "Psr\\Container\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "PHP-FIG", "homepage": "https://www.php-fig.org/" } ], "description": "Common Container Interface (PHP FIG PSR-11)", "homepage": "https://github.com/php-fig/container", "keywords": [ "PSR-11", "container", "container-interface", "container-interop", "psr" ], "support": { "issues": "https://github.com/php-fig/container/issues", "source": "https://github.com/php-fig/container/tree/1.1.2" }, "install-path": "../psr/container" }, { "name": "psr/http-factory", "version": "1.1.0", "version_normalized": "1.1.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { "php": ">=7.1", "psr/http-message": "^1.0 || ^2.0" }, "time": "2024-04-15T12:06:14+00:00", "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "installation-source": "dist", "autoload": { "psr-4": { "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "PHP-FIG", "homepage": "https://www.php-fig.org/" } ], "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ "factory", "http", "message", "psr", "psr-17", "psr-7", "request", "response" ], "support": { "source": "https://github.com/php-fig/http-factory" }, "install-path": "../psr/http-factory" }, { "name": "psr/http-message", "version": "1.1", "version_normalized": "1.1.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-message.git", "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba", "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "time": "2023-04-04T09:50:52+00:00", "type": "library", "extra": { "branch-alias": { "dev-master": "1.1.x-dev" } }, "installation-source": "dist", "autoload": { "psr-4": { "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "PHP-FIG", "homepage": "http://www.php-fig.org/" } ], "description": "Common interface for HTTP messages", "homepage": "https://github.com/php-fig/http-message", "keywords": [ "http", "http-message", "psr", "psr-7", "request", "response" ], "support": { "source": "https://github.com/php-fig/http-message/tree/1.1" }, "install-path": "../psr/http-message" }, { "name": "symfony/polyfill-php80", "version": "v1.33.0", "version_normalized": "1.33.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", "shasum": "" }, "require": { "php": ">=7.2" }, "time": "2025-01-02T08:10:11+00:00", "type": "library", "extra": { "thanks": { "url": "https://github.com/symfony/polyfill", "name": "symfony/polyfill" } }, "installation-source": "dist", "autoload": { "files": [ "bootstrap.php" ], "psr-4": { "Symfony\\Polyfill\\Php80\\": "" }, "classmap": [ "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Ion Bazan", "email": "ion.bazan@gmail.com" }, { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "support": { "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0" }, "funding": [ { "url": "https://symfony.com/sponsor", "type": "custom" }, { "url": "https://github.com/fabpot", "type": "github" }, { "url": "https://github.com/nicolas-grekas", "type": "github" }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], "install-path": "../symfony/polyfill-php80" }, { "name": "symfony/polyfill-php81", "version": "v1.33.0", "version_normalized": "1.33.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", "shasum": "" }, "require": { "php": ">=7.2" }, "time": "2024-09-09T11:45:10+00:00", "type": "library", "extra": { "thanks": { "url": "https://github.com/symfony/polyfill", "name": "symfony/polyfill" } }, "installation-source": "dist", "autoload": { "files": [ "bootstrap.php" ], "psr-4": { "Symfony\\Polyfill\\Php81\\": "" }, "classmap": [ "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "support": { "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0" }, "funding": [ { "url": "https://symfony.com/sponsor", "type": "custom" }, { "url": "https://github.com/fabpot", "type": "github" }, { "url": "https://github.com/nicolas-grekas", "type": "github" }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], "install-path": "../symfony/polyfill-php81" }, { "name": "symfony/polyfill-php82", "version": "v1.33.0", "version_normalized": "1.33.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php82.git", "reference": "5d2ed36f7734637dacc025f179698031951b1692" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/5d2ed36f7734637dacc025f179698031951b1692", "reference": "5d2ed36f7734637dacc025f179698031951b1692", "shasum": "" }, "require": { "php": ">=7.2" }, "time": "2024-09-09T11:45:10+00:00", "type": "library", "extra": { "thanks": { "url": "https://github.com/symfony/polyfill", "name": "symfony/polyfill" } }, "installation-source": "dist", "autoload": { "files": [ "bootstrap.php" ], "psr-4": { "Symfony\\Polyfill\\Php82\\": "" }, "classmap": [ "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill backporting some PHP 8.2+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "support": { "source": "https://github.com/symfony/polyfill-php82/tree/v1.33.0" }, "funding": [ { "url": "https://symfony.com/sponsor", "type": "custom" }, { "url": "https://github.com/fabpot", "type": "github" }, { "url": "https://github.com/nicolas-grekas", "type": "github" }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], "install-path": "../symfony/polyfill-php82" }, { "name": "symfony/polyfill-php83", "version": "v1.33.0", "version_normalized": "1.33.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5", "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5", "shasum": "" }, "require": { "php": ">=7.2" }, "time": "2025-07-08T02:45:35+00:00", "type": "library", "extra": { "thanks": { "url": "https://github.com/symfony/polyfill", "name": "symfony/polyfill" } }, "installation-source": "dist", "autoload": { "files": [ "bootstrap.php" ], "psr-4": { "Symfony\\Polyfill\\Php83\\": "" }, "classmap": [ "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "support": { "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0" }, "funding": [ { "url": "https://symfony.com/sponsor", "type": "custom" }, { "url": "https://github.com/fabpot", "type": "github" }, { "url": "https://github.com/nicolas-grekas", "type": "github" }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], "install-path": "../symfony/polyfill-php83" }, { "name": "symfony/polyfill-php84", "version": "v1.33.0", "version_normalized": "1.33.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php84.git", "reference": "d8ced4d875142b6a7426000426b8abc631d6b191" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191", "reference": "d8ced4d875142b6a7426000426b8abc631d6b191", "shasum": "" }, "require": { "php": ">=7.2" }, "time": "2025-06-24T13:30:11+00:00", "type": "library", "extra": { "thanks": { "url": "https://github.com/symfony/polyfill", "name": "symfony/polyfill" } }, "installation-source": "dist", "autoload": { "files": [ "bootstrap.php" ], "psr-4": { "Symfony\\Polyfill\\Php84\\": "" }, "classmap": [ "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "support": { "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0" }, "funding": [ { "url": "https://symfony.com/sponsor", "type": "custom" }, { "url": "https://github.com/fabpot", "type": "github" }, { "url": "https://github.com/nicolas-grekas", "type": "github" }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], "install-path": "../symfony/polyfill-php84" }, { "name": "webonyx/graphql-php", "version": "v15.24.0", "version_normalized": "15.24.0.0", "source": { "type": "git", "url": "https://github.com/webonyx/graphql-php.git", "reference": "030a04d22d52d7fc07049d0e3b683d2b40f90457" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/030a04d22d52d7fc07049d0e3b683d2b40f90457", "reference": "030a04d22d52d7fc07049d0e3b683d2b40f90457", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", "php": "^7.4 || ^8" }, "require-dev": { "amphp/amp": "^2.6", "amphp/http-server": "^2.1", "dms/phpunit-arraysubset-asserts": "dev-master", "ergebnis/composer-normalize": "^2.28", "friendsofphp/php-cs-fixer": "3.86.0", "mll-lab/php-cs-fixer-config": "5.11.0", "nyholm/psr7": "^1.5", "phpbench/phpbench": "^1.2", "phpstan/extension-installer": "^1.1", "phpstan/phpstan": "2.1.22", "phpstan/phpstan-phpunit": "2.0.7", "phpstan/phpstan-strict-rules": "2.0.6", "phpunit/phpunit": "^9.5 || ^10.5.21 || ^11", "psr/http-message": "^1 || ^2", "react/http": "^1.6", "react/promise": "^2.0 || ^3.0", "rector/rector": "^2.0", "symfony/polyfill-php81": "^1.23", "symfony/var-exporter": "^5 || ^6 || ^7", "thecodingmachine/safe": "^1.3 || ^2 || ^3" }, "suggest": { "amphp/http-server": "To leverage async resolving with webserver on AMPHP platform", "psr/http-message": "To use standard GraphQL server", "react/promise": "To leverage async resolving on React PHP platform" }, "time": "2025-08-20T10:09:37+00:00", "type": "library", "installation-source": "dist", "autoload": { "psr-4": { "GraphQL\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "description": "A PHP port of GraphQL reference implementation", "homepage": "https://github.com/webonyx/graphql-php", "keywords": [ "api", "graphql" ], "support": { "issues": "https://github.com/webonyx/graphql-php/issues", "source": "https://github.com/webonyx/graphql-php/tree/v15.24.0" }, "funding": [ { "url": "https://opencollective.com/webonyx-graphql-php", "type": "open_collective" } ], "install-path": "../webonyx/graphql-php" }, { "name": "wikimedia/composer-merge-plugin", "version": "v2.1.0", "version_normalized": "2.1.0.0", "source": { "type": "git", "url": "https://github.com/wikimedia/composer-merge-plugin.git", "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc", "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc", "shasum": "" }, "require": { "composer-plugin-api": "^1.1||^2.0", "php": ">=7.2.0" }, "require-dev": { "composer/composer": "^1.1||^2.0", "ext-json": "*", "mediawiki/mediawiki-phan-config": "0.11.1", "php-parallel-lint/php-parallel-lint": "~1.3.1", "phpspec/prophecy": "~1.15.0", "phpunit/phpunit": "^8.5||^9.0", "squizlabs/php_codesniffer": "~3.7.1" }, "time": "2023-04-15T19:07:00+00:00", "type": "composer-plugin", "extra": { "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin", "branch-alias": { "dev-master": "2.x-dev" } }, "installation-source": "dist", "autoload": { "psr-4": { "Wikimedia\\Composer\\Merge\\V2\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Bryan Davis", "email": "bd808@wikimedia.org" } ], "description": "Composer plugin to merge multiple composer.json files", "support": { "issues": "https://github.com/wikimedia/composer-merge-plugin/issues", "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0" }, "install-path": "../wikimedia/composer-merge-plugin" } ], "dev": true, "dev-package-names": [] } composer/autoload_static.php000064400000252641151666572340012314 0ustar00<?php // autoload_static.php @generated by Composer namespace YOOtheme\Autoload; class ComposerStaticInitcf47a1892afdee14a54635974d33870c { public static $files = array ( 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', '23c18046f52bef3eea034657bafda50f' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php', '5897ea0ac4cccf14d323035e65887801' => __DIR__ . '/..' . '/symfony/polyfill-php82/bootstrap.php', '662a729f963d39afe703c9d9b7ab4a8c' => __DIR__ . '/..' . '/symfony/polyfill-php83/bootstrap.php', '9d2b9fc6db0f153a0a149fefb182415e' => __DIR__ . '/..' . '/symfony/polyfill-php84/bootstrap.php', 'f530325d18dded5377011b84e7ee4c1b' => __DIR__ . '/../..' . '/packages/application/functions.php', '6544a6d8b2e88b1fc5138c7271842449' => __DIR__ . '/../..' . '/packages/translation/functions.php', ); public static $prefixLengthsPsr4 = array ( 'Y' => array ( 'YOOtheme\\Theme\\Styler\\' => 22, 'YOOtheme\\Theme\\Joomla\\' => 22, 'YOOtheme\\Theme\\Highlight\\' => 25, 'YOOtheme\\Theme\\Cookie\\' => 22, 'YOOtheme\\Theme\\Analytics\\' => 25, 'YOOtheme\\Theme\\' => 15, 'YOOtheme\\Joomla\\' => 16, 'YOOtheme\\Http\\Message\\' => 22, 'YOOtheme\\Http\\' => 14, 'YOOtheme\\GraphQL\\' => 17, 'YOOtheme\\Composer\\' => 18, 'YOOtheme\\Builder\\Templates\\' => 27, 'YOOtheme\\Builder\\Source\\Filesystem\\' => 35, 'YOOtheme\\Builder\\Newsletter\\' => 28, 'YOOtheme\\Builder\\Joomla\\Source\\' => 31, 'YOOtheme\\Builder\\Joomla\\Search\\' => 31, 'YOOtheme\\Builder\\Joomla\\RegularLabs\\' => 36, 'YOOtheme\\Builder\\Joomla\\Fields\\' => 31, 'YOOtheme\\Builder\\Joomla\\' => 24, 'YOOtheme\\Builder\\' => 17, 'YOOtheme\\' => 9, ), 'W' => array ( 'Wikimedia\\Composer\\Merge\\V2\\' => 28, ), 'S' => array ( 'Symfony\\Polyfill\\Php84\\' => 23, 'Symfony\\Polyfill\\Php83\\' => 23, 'Symfony\\Polyfill\\Php82\\' => 23, 'Symfony\\Polyfill\\Php81\\' => 23, 'Symfony\\Polyfill\\Php80\\' => 23, ), 'P' => array ( 'Psr\\Http\\Message\\' => 17, 'Psr\\Container\\' => 14, 'PhpParser\\' => 10, ), ); public static $prefixDirsPsr4 = array ( 'YOOtheme\\Theme\\Styler\\' => array ( 0 => __DIR__ . '/../..' . '/packages/styler/src', ), 'YOOtheme\\Theme\\Joomla\\' => array ( 0 => __DIR__ . '/../..' . '/packages/theme-joomla-articles/src', 1 => __DIR__ . '/../..' . '/packages/theme-joomla-editor/src', 2 => __DIR__ . '/../..' . '/packages/theme-joomla-finder/src', 3 => __DIR__ . '/../..' . '/packages/theme-joomla-menus/src', 4 => __DIR__ . '/../..' . '/packages/theme-joomla-modules/src', 5 => __DIR__ . '/../..' . '/packages/theme-joomla/src', ), 'YOOtheme\\Theme\\Highlight\\' => array ( 0 => __DIR__ . '/../..' . '/packages/theme-highlight/src', ), 'YOOtheme\\Theme\\Cookie\\' => array ( 0 => __DIR__ . '/../..' . '/packages/theme-cookie/src', ), 'YOOtheme\\Theme\\Analytics\\' => array ( 0 => __DIR__ . '/../..' . '/packages/theme-analytics/src', ), 'YOOtheme\\Theme\\' => array ( 0 => __DIR__ . '/../..' . '/packages/theme-settings/src', 1 => __DIR__ . '/../..' . '/packages/theme/src', ), 'YOOtheme\\Joomla\\' => array ( 0 => __DIR__ . '/../..' . '/packages/platform-joomla/src', ), 'YOOtheme\\Http\\Message\\' => array ( 0 => __DIR__ . '/../..' . '/packages/http-message/lib', ), 'YOOtheme\\Http\\' => array ( 0 => __DIR__ . '/../..' . '/packages/http-message/src', ), 'YOOtheme\\GraphQL\\' => array ( 0 => __DIR__ . '/../..' . '/packages/graphql/lib', 1 => __DIR__ . '/../..' . '/packages/graphql/src', ), 'YOOtheme\\Composer\\' => array ( 0 => __DIR__ . '/../..' . '/packages/composer/src', ), 'YOOtheme\\Builder\\Templates\\' => array ( 0 => __DIR__ . '/../..' . '/packages/builder-templates/src', ), 'YOOtheme\\Builder\\Source\\Filesystem\\' => array ( 0 => __DIR__ . '/../..' . '/packages/builder-source-filesystem/src', ), 'YOOtheme\\Builder\\Newsletter\\' => array ( 0 => __DIR__ . '/../..' . '/packages/builder-newsletter/src', ), 'YOOtheme\\Builder\\Joomla\\Source\\' => array ( 0 => __DIR__ . '/../..' . '/packages/builder-joomla-source/src', ), 'YOOtheme\\Builder\\Joomla\\Search\\' => array ( 0 => __DIR__ . '/../..' . '/packages/builder-joomla-search/src', ), 'YOOtheme\\Builder\\Joomla\\RegularLabs\\' => array ( 0 => __DIR__ . '/../..' . '/packages/builder-joomla-regularlabs/src', ), 'YOOtheme\\Builder\\Joomla\\Fields\\' => array ( 0 => __DIR__ . '/../..' . '/packages/builder-joomla-fields/src', ), 'YOOtheme\\Builder\\Joomla\\' => array ( 0 => __DIR__ . '/../..' . '/packages/builder-joomla/src', ), 'YOOtheme\\Builder\\' => array ( 0 => __DIR__ . '/../..' . '/packages/builder-source/src', ), 'YOOtheme\\' => array ( 0 => __DIR__ . '/../..' . '/packages/application/src', 1 => __DIR__ . '/../..' . '/packages/builder/src', 2 => __DIR__ . '/../..' . '/packages/configuration/src', 3 => __DIR__ . '/../..' . '/packages/container/src', 4 => __DIR__ . '/../..' . '/packages/http-server/src', 5 => __DIR__ . '/../..' . '/packages/image/src', 6 => __DIR__ . '/../..' . '/packages/translation/src', 7 => __DIR__ . '/../..' . '/packages/utils/src', 8 => __DIR__ . '/../..' . '/packages/view-metadata/src', 9 => __DIR__ . '/../..' . '/packages/view/src', ), 'Wikimedia\\Composer\\Merge\\V2\\' => array ( 0 => __DIR__ . '/..' . '/wikimedia/composer-merge-plugin/src', ), 'Symfony\\Polyfill\\Php84\\' => array ( 0 => __DIR__ . '/..' . '/symfony/polyfill-php84', ), 'Symfony\\Polyfill\\Php83\\' => array ( 0 => __DIR__ . '/..' . '/symfony/polyfill-php83', ), 'Symfony\\Polyfill\\Php82\\' => array ( 0 => __DIR__ . '/..' . '/symfony/polyfill-php82', ), 'Symfony\\Polyfill\\Php81\\' => array ( 0 => __DIR__ . '/..' . '/symfony/polyfill-php81', ), 'Symfony\\Polyfill\\Php80\\' => array ( 0 => __DIR__ . '/..' . '/symfony/polyfill-php80', ), 'Psr\\Http\\Message\\' => array ( 0 => __DIR__ . '/..' . '/psr/http-factory/src', 1 => __DIR__ . '/..' . '/psr/http-message/src', ), 'Psr\\Container\\' => array ( 0 => __DIR__ . '/..' . '/psr/container/src', ), 'PhpParser\\' => array ( 0 => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser', ), ); public static $classMap = array ( 'AllowDynamicProperties' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php', 'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', 'CURLStringFile' => __DIR__ . '/..' . '/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php', 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', 'DateError' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/DateError.php', 'DateException' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/DateException.php', 'DateInvalidOperationException' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php', 'DateInvalidTimeZoneException' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php', 'DateMalformedIntervalStringException' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php', 'DateMalformedPeriodStringException' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php', 'DateMalformedStringException' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php', 'DateObjectError' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/DateObjectError.php', 'DateRangeError' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/DateRangeError.php', 'Deprecated' => __DIR__ . '/..' . '/symfony/polyfill-php84/Resources/stubs/Deprecated.php', 'Override' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/Override.php', 'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php', 'Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerExceptionInterface.php', 'Psr\\Container\\ContainerInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerInterface.php', 'Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/NotFoundExceptionInterface.php', 'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php', 'Psr\\Http\\Message\\RequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/RequestFactoryInterface.php', 'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php', 'Psr\\Http\\Message\\ResponseFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ResponseFactoryInterface.php', 'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php', 'Psr\\Http\\Message\\ServerRequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ServerRequestFactoryInterface.php', 'Psr\\Http\\Message\\ServerRequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/ServerRequestInterface.php', 'Psr\\Http\\Message\\StreamFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/StreamFactoryInterface.php', 'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php', 'Psr\\Http\\Message\\UploadedFileFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UploadedFileFactoryInterface.php', 'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php', 'Psr\\Http\\Message\\UriFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UriFactoryInterface.php', 'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php', 'Random\\BrokenRandomEngineError' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php', 'Random\\CryptoSafeEngine' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php', 'Random\\Engine' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/Engine.php', 'Random\\Engine\\Secure' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php', 'Random\\RandomError' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php', 'Random\\RandomException' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php', 'ReflectionConstant' => __DIR__ . '/..' . '/symfony/polyfill-php84/Resources/stubs/ReflectionConstant.php', 'ReturnTypeWillChange' => __DIR__ . '/..' . '/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php', 'SQLite3Exception' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php', 'SensitiveParameter' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php', 'SensitiveParameterValue' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php', 'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php', 'Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/..' . '/symfony/polyfill-php80/Php80.php', 'Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/PhpToken.php', 'Symfony\\Polyfill\\Php81\\Php81' => __DIR__ . '/..' . '/symfony/polyfill-php81/Php81.php', 'Symfony\\Polyfill\\Php82\\NoDynamicProperties' => __DIR__ . '/..' . '/symfony/polyfill-php82/NoDynamicProperties.php', 'Symfony\\Polyfill\\Php82\\Php82' => __DIR__ . '/..' . '/symfony/polyfill-php82/Php82.php', 'Symfony\\Polyfill\\Php82\\Random\\Engine\\Secure' => __DIR__ . '/..' . '/symfony/polyfill-php82/Random/Engine/Secure.php', 'Symfony\\Polyfill\\Php82\\SensitiveParameterValue' => __DIR__ . '/..' . '/symfony/polyfill-php82/SensitiveParameterValue.php', 'Symfony\\Polyfill\\Php83\\Php83' => __DIR__ . '/..' . '/symfony/polyfill-php83/Php83.php', 'Symfony\\Polyfill\\Php84\\Php84' => __DIR__ . '/..' . '/symfony/polyfill-php84/Php84.php', 'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', 'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php', 'YOOtheme\\Application' => __DIR__ . '/../..' . '/packages/application/src/Application.php', 'YOOtheme\\Application\\AliasLoader' => __DIR__ . '/../..' . '/packages/application/src/Application/AliasLoader.php', 'YOOtheme\\Application\\ConfigLoader' => __DIR__ . '/../..' . '/packages/application/src/Application/ConfigLoader.php', 'YOOtheme\\Application\\EventLoader' => __DIR__ . '/../..' . '/packages/application/src/Application/EventLoader.php', 'YOOtheme\\Application\\ExtendLoader' => __DIR__ . '/../..' . '/packages/application/src/Application/ExtendLoader.php', 'YOOtheme\\Application\\RouteLoader' => __DIR__ . '/../..' . '/packages/application/src/Application/RouteLoader.php', 'YOOtheme\\Application\\ServiceLoader' => __DIR__ . '/../..' . '/packages/application/src/Application/ServiceLoader.php', 'YOOtheme\\Arr' => __DIR__ . '/../..' . '/packages/utils/src/Arr.php', 'YOOtheme\\BodyMiddleware' => __DIR__ . '/../..' . '/packages/http-server/src/BodyMiddleware.php', 'YOOtheme\\Builder' => __DIR__ . '/../..' . '/packages/builder/src/Builder.php', 'YOOtheme\\Builder\\BuilderConfig' => __DIR__ . '/../..' . '/packages/builder/src/Builder/BuilderConfig.php', 'YOOtheme\\Builder\\BuilderController' => __DIR__ . '/../..' . '/packages/builder/src/Builder/BuilderController.php', 'YOOtheme\\Builder\\CollapseTransform' => __DIR__ . '/../..' . '/packages/builder/src/Builder/CollapseTransform.php', 'YOOtheme\\Builder\\DefaultTransform' => __DIR__ . '/../..' . '/packages/builder/src/Builder/DefaultTransform.php', 'YOOtheme\\Builder\\DisabledTransform' => __DIR__ . '/../..' . '/packages/builder/src/Builder/DisabledTransform.php', 'YOOtheme\\Builder\\ElementTransform' => __DIR__ . '/../..' . '/packages/builder/src/Builder/ElementTransform.php', 'YOOtheme\\Builder\\ElementType' => __DIR__ . '/../..' . '/packages/builder/src/Builder/ElementType.php', 'YOOtheme\\Builder\\IndexTransform' => __DIR__ . '/../..' . '/packages/builder/src/Builder/IndexTransform.php', 'YOOtheme\\Builder\\Joomla\\ArticleHelper' => __DIR__ . '/../..' . '/packages/builder-joomla/src/ArticleHelper.php', 'YOOtheme\\Builder\\Joomla\\BuilderController' => __DIR__ . '/../..' . '/packages/builder-joomla/src/BuilderController.php', 'YOOtheme\\Builder\\Joomla\\Fields\\FieldsHelper' => __DIR__ . '/../..' . '/packages/builder-joomla-fields/src/FieldsHelper.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Listener\\LoadBuilderConfig' => __DIR__ . '/../..' . '/packages/builder-joomla-fields/src/Listener/LoadBuilderConfig.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Listener\\LoadSourceTypes' => __DIR__ . '/../..' . '/packages/builder-joomla-fields/src/Listener/LoadSourceTypes.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\ChoiceFieldStringType' => __DIR__ . '/../..' . '/packages/builder-joomla-fields/src/Type/ChoiceFieldStringType.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\ChoiceFieldType' => __DIR__ . '/../..' . '/packages/builder-joomla-fields/src/Type/ChoiceFieldType.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\FieldsType' => __DIR__ . '/../..' . '/packages/builder-joomla-fields/src/Type/FieldsType.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\MediaFieldType' => __DIR__ . '/../..' . '/packages/builder-joomla-fields/src/Type/MediaFieldType.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\SqlFieldType' => __DIR__ . '/../..' . '/packages/builder-joomla-fields/src/Type/SqlFieldType.php', 'YOOtheme\\Builder\\Joomla\\Fields\\Type\\ValueFieldType' => __DIR__ . '/../..' . '/packages/builder-joomla-fields/src/Type/ValueFieldType.php', 'YOOtheme\\Builder\\Joomla\\Listener\\LoadSessionUser' => __DIR__ . '/../..' . '/packages/builder-joomla/src/Listener/LoadSessionUser.php', 'YOOtheme\\Builder\\Joomla\\Listener\\RenderBuilderButton' => __DIR__ . '/../..' . '/packages/builder-joomla/src/Listener/RenderBuilderButton.php', 'YOOtheme\\Builder\\Joomla\\Listener\\RenderBuilderPage' => __DIR__ . '/../..' . '/packages/builder-joomla/src/Listener/RenderBuilderPage.php', 'YOOtheme\\Builder\\Joomla\\PageController' => __DIR__ . '/../..' . '/packages/builder-joomla/src/PageController.php', 'YOOtheme\\Builder\\Joomla\\RegularLabs\\Listener\\ArticlesField' => __DIR__ . '/../..' . '/packages/builder-joomla-regularlabs/src/Listener/ArticlesField.php', 'YOOtheme\\Builder\\Joomla\\Search\\Listener\\LoadSearchArticle' => __DIR__ . '/../..' . '/packages/builder-joomla-search/src/Listener/LoadSearchArticle.php', 'YOOtheme\\Builder\\Joomla\\Search\\Listener\\LoadSourceTypes' => __DIR__ . '/../..' . '/packages/builder-joomla-search/src/Listener/LoadSourceTypes.php', 'YOOtheme\\Builder\\Joomla\\Search\\Listener\\LoadTemplateUrl' => __DIR__ . '/../..' . '/packages/builder-joomla-search/src/Listener/LoadTemplateUrl.php', 'YOOtheme\\Builder\\Joomla\\Search\\Listener\\MatchTemplate' => __DIR__ . '/../..' . '/packages/builder-joomla-search/src/Listener/MatchTemplate.php', 'YOOtheme\\Builder\\Joomla\\Search\\Type\\SearchItemType' => __DIR__ . '/../..' . '/packages/builder-joomla-search/src/Type/SearchItemType.php', 'YOOtheme\\Builder\\Joomla\\Search\\Type\\SearchItemsQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-search/src/Type/SearchItemsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Search\\Type\\SearchQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-search/src/Type/SearchQueryType.php', 'YOOtheme\\Builder\\Joomla\\Search\\Type\\SearchType' => __DIR__ . '/../..' . '/packages/builder-joomla-search/src/Type/SearchType.php', 'YOOtheme\\Builder\\Joomla\\Source\\ArticleHelper' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/ArticleHelper.php', 'YOOtheme\\Builder\\Joomla\\Source\\ArticlesModel' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/ArticlesModel.php', 'YOOtheme\\Builder\\Joomla\\Source\\ContactsModel' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/ContactsModel.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadBuilderConfig' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Listener/LoadBuilderConfig.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadNotFound' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Listener/LoadNotFound.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadSearchTemplate' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Listener/LoadSearchTemplate.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadSourceTypes' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Listener/LoadSourceTypes.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadTemplate' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Listener/LoadTemplate.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\LoadTemplateUrl' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Listener/LoadTemplateUrl.php', 'YOOtheme\\Builder\\Joomla\\Source\\Listener\\MatchTemplate' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Listener/MatchTemplate.php', 'YOOtheme\\Builder\\Joomla\\Source\\SourceController' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/SourceController.php', 'YOOtheme\\Builder\\Joomla\\Source\\TagHelper' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/TagHelper.php', 'YOOtheme\\Builder\\Joomla\\Source\\TagModel' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/TagModel.php', 'YOOtheme\\Builder\\Joomla\\Source\\TagsModel' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/TagsModel.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticleEventType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/ArticleEventType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticleImagesType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/ArticleImagesType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticleQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/ArticleQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticleType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/ArticleType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticleUrlsType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/ArticleUrlsType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ArticlesQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/ArticlesQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CategoryParamsType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CategoryParamsType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CategoryQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CategoryQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CategoryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CategoryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ContactQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/ContactQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ContactType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/ContactType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomArticleQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CustomArticleQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomArticlesQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CustomArticlesQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomCategoriesQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CustomCategoriesQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomCategoryQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CustomCategoryQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomMenuItemQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CustomMenuItemQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomMenuItemsQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CustomMenuItemsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomTagQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CustomTagQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomTagsQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CustomTagsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomUserQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CustomUserQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\CustomUsersQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/CustomUsersQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\EventType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/EventType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\ImagesType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/ImagesType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\MenuItemType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/MenuItemType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\SiteQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/SiteQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\SmartSearchItemType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/SmartSearchItemType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\SmartSearchItemsQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/SmartSearchItemsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\SmartSearchQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/SmartSearchQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\SmartSearchType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/SmartSearchType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\TagItemType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/TagItemType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\TagItemsQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/TagItemsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\TagType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/TagType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\TagsQueryType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/TagsQueryType.php', 'YOOtheme\\Builder\\Joomla\\Source\\Type\\UserType' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/Type/UserType.php', 'YOOtheme\\Builder\\Joomla\\Source\\UserHelper' => __DIR__ . '/../..' . '/packages/builder-joomla-source/src/UserHelper.php', 'YOOtheme\\Builder\\Listener\\LoadBuilderData' => __DIR__ . '/../..' . '/packages/builder/src/Builder/Listener/LoadBuilderData.php', 'YOOtheme\\Builder\\Newsletter\\AbstractProvider' => __DIR__ . '/../..' . '/packages/builder-newsletter/src/AbstractProvider.php', 'YOOtheme\\Builder\\Newsletter\\CampaignMonitorProvider' => __DIR__ . '/../..' . '/packages/builder-newsletter/src/CampaignMonitorProvider.php', 'YOOtheme\\Builder\\Newsletter\\MailChimpProvider' => __DIR__ . '/../..' . '/packages/builder-newsletter/src/MailChimpProvider.php', 'YOOtheme\\Builder\\Newsletter\\NewsletterController' => __DIR__ . '/../..' . '/packages/builder-newsletter/src/NewsletterController.php', 'YOOtheme\\Builder\\NormalizeTransform' => __DIR__ . '/../..' . '/packages/builder/src/Builder/NormalizeTransform.php', 'YOOtheme\\Builder\\OptimizeTransform' => __DIR__ . '/../..' . '/packages/builder/src/Builder/OptimizeTransform.php', 'YOOtheme\\Builder\\PlaceholderTransform' => __DIR__ . '/../..' . '/packages/builder/src/Builder/PlaceholderTransform.php', 'YOOtheme\\Builder\\Source' => __DIR__ . '/../..' . '/packages/builder-source/src/Source.php', 'YOOtheme\\Builder\\Source\\Filesystem\\FileHelper' => __DIR__ . '/../..' . '/packages/builder-source-filesystem/src/FileHelper.php', 'YOOtheme\\Builder\\Source\\Filesystem\\Listener\\LoadSourceTypes' => __DIR__ . '/../..' . '/packages/builder-source-filesystem/src/Listener/LoadSourceTypes.php', 'YOOtheme\\Builder\\Source\\Filesystem\\Type\\FileQueryType' => __DIR__ . '/../..' . '/packages/builder-source-filesystem/src/Type/FileQueryType.php', 'YOOtheme\\Builder\\Source\\Filesystem\\Type\\FileType' => __DIR__ . '/../..' . '/packages/builder-source-filesystem/src/Type/FileType.php', 'YOOtheme\\Builder\\Source\\Filesystem\\Type\\FilesQueryType' => __DIR__ . '/../..' . '/packages/builder-source-filesystem/src/Type/FilesQueryType.php', 'YOOtheme\\Builder\\Source\\Listener\\LoadBuilderConfig' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/Listener/LoadBuilderConfig.php', 'YOOtheme\\Builder\\Source\\Listener\\LoadSourceSchema' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/Listener/LoadSourceSchema.php', 'YOOtheme\\Builder\\Source\\Listener\\LogSourceError' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/Listener/LogSourceError.php', 'YOOtheme\\Builder\\Source\\Listener\\OrderSourceMetadata' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/Listener/OrderSourceMetadata.php', 'YOOtheme\\Builder\\Source\\OptimizeTransform' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/OptimizeTransform.php', 'YOOtheme\\Builder\\Source\\Query\\AST' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/Query/AST.php', 'YOOtheme\\Builder\\Source\\Query\\Node' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/Query/Node.php', 'YOOtheme\\Builder\\Source\\SourceFilter' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/SourceFilter.php', 'YOOtheme\\Builder\\Source\\SourceQuery' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/SourceQuery.php', 'YOOtheme\\Builder\\Source\\SourceTransform' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/SourceTransform.php', 'YOOtheme\\Builder\\Source\\Type\\RequestType' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/Type/RequestType.php', 'YOOtheme\\Builder\\Source\\Type\\SiteType' => __DIR__ . '/../..' . '/packages/builder-source/src/Source/Type/SiteType.php', 'YOOtheme\\Builder\\Templates\\Listener\\LoadBuilderConfig' => __DIR__ . '/../..' . '/packages/builder-templates/src/Listener/LoadBuilderConfig.php', 'YOOtheme\\Builder\\Templates\\TemplateController' => __DIR__ . '/../..' . '/packages/builder-templates/src/TemplateController.php', 'YOOtheme\\Builder\\Templates\\TemplateHelper' => __DIR__ . '/../..' . '/packages/builder-templates/src/TemplateHelper.php', 'YOOtheme\\Builder\\UpdateTransform' => __DIR__ . '/../..' . '/packages/builder/src/Builder/UpdateTransform.php', 'YOOtheme\\Builder\\VisibilityTransform' => __DIR__ . '/../..' . '/packages/builder/src/Builder/VisibilityTransform.php', 'YOOtheme\\Composer\\ClassmapPlugin' => __DIR__ . '/../..' . '/packages/composer/src/ClassmapPlugin.php', 'YOOtheme\\Composer\\CurlHttpClient' => __DIR__ . '/../..' . '/packages/composer/src/CurlHttpClient.php', 'YOOtheme\\Composer\\LoadFontCommand' => __DIR__ . '/../..' . '/packages/composer/src/LoadFontCommand.php', 'YOOtheme\\Composer\\NamespaceRenamer' => __DIR__ . '/../..' . '/packages/composer/src/NamespaceRenamer.php', 'YOOtheme\\Composer\\ParentResolver' => __DIR__ . '/../..' . '/packages/composer/src/ParentResolver.php', 'YOOtheme\\Config' => __DIR__ . '/../..' . '/packages/configuration/src/Config.php', 'YOOtheme\\ConfigObject' => __DIR__ . '/../..' . '/packages/configuration/src/ConfigObject.php', 'YOOtheme\\Configuration\\Configuration' => __DIR__ . '/../..' . '/packages/configuration/src/Configuration/Configuration.php', 'YOOtheme\\Configuration\\Filter' => __DIR__ . '/../..' . '/packages/configuration/src/Configuration/Filter.php', 'YOOtheme\\Configuration\\FilterNode' => __DIR__ . '/../..' . '/packages/configuration/src/Configuration/FilterNode.php', 'YOOtheme\\Configuration\\Node' => __DIR__ . '/../..' . '/packages/configuration/src/Configuration/Node.php', 'YOOtheme\\Configuration\\Repository' => __DIR__ . '/../..' . '/packages/configuration/src/Configuration/Repository.php', 'YOOtheme\\Configuration\\Resolver' => __DIR__ . '/../..' . '/packages/configuration/src/Configuration/Resolver.php', 'YOOtheme\\Configuration\\StringNode' => __DIR__ . '/../..' . '/packages/configuration/src/Configuration/StringNode.php', 'YOOtheme\\Configuration\\VariableNode' => __DIR__ . '/../..' . '/packages/configuration/src/Configuration/VariableNode.php', 'YOOtheme\\Container' => __DIR__ . '/../..' . '/packages/container/src/Container.php', 'YOOtheme\\Container\\BadFunctionCallException' => __DIR__ . '/../..' . '/packages/container/src/Container/BadFunctionCallException.php', 'YOOtheme\\Container\\InvalidArgumentException' => __DIR__ . '/../..' . '/packages/container/src/Container/InvalidArgumentException.php', 'YOOtheme\\Container\\LogicException' => __DIR__ . '/../..' . '/packages/container/src/Container/LogicException.php', 'YOOtheme\\Container\\ParameterResolver' => __DIR__ . '/../..' . '/packages/container/src/Container/ParameterResolver.php', 'YOOtheme\\Container\\RuntimeException' => __DIR__ . '/../..' . '/packages/container/src/Container/RuntimeException.php', 'YOOtheme\\Container\\Service' => __DIR__ . '/../..' . '/packages/container/src/Container/Service.php', 'YOOtheme\\Container\\ServiceNotFoundException' => __DIR__ . '/../..' . '/packages/container/src/Container/ServiceNotFoundException.php', 'YOOtheme\\CsrfMiddleware' => __DIR__ . '/../..' . '/packages/http-server/src/CsrfMiddleware.php', 'YOOtheme\\Event' => __DIR__ . '/../..' . '/packages/utils/src/Event.php', 'YOOtheme\\EventDispatcher' => __DIR__ . '/../..' . '/packages/utils/src/EventDispatcher.php', 'YOOtheme\\File' => __DIR__ . '/../..' . '/packages/utils/src/File.php', 'YOOtheme\\GraphQL\\Deferred' => __DIR__ . '/../..' . '/packages/graphql/lib/Deferred.php', 'YOOtheme\\GraphQL\\Directive\\BindDirective' => __DIR__ . '/../..' . '/packages/graphql/src/Directive/BindDirective.php', 'YOOtheme\\GraphQL\\Directive\\CallDirective' => __DIR__ . '/../..' . '/packages/graphql/src/Directive/CallDirective.php', 'YOOtheme\\GraphQL\\Directive\\SliceDirective' => __DIR__ . '/../..' . '/packages/graphql/src/Directive/SliceDirective.php', 'YOOtheme\\GraphQL\\Error\\ClientAware' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/ClientAware.php', 'YOOtheme\\GraphQL\\Error\\CoercionError' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/CoercionError.php', 'YOOtheme\\GraphQL\\Error\\DebugFlag' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/DebugFlag.php', 'YOOtheme\\GraphQL\\Error\\Error' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/Error.php', 'YOOtheme\\GraphQL\\Error\\FormattedError' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/FormattedError.php', 'YOOtheme\\GraphQL\\Error\\InvariantViolation' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/InvariantViolation.php', 'YOOtheme\\GraphQL\\Error\\ProvidesExtensions' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/ProvidesExtensions.php', 'YOOtheme\\GraphQL\\Error\\SerializationError' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/SerializationError.php', 'YOOtheme\\GraphQL\\Error\\SyntaxError' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/SyntaxError.php', 'YOOtheme\\GraphQL\\Error\\UserError' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/UserError.php', 'YOOtheme\\GraphQL\\Error\\Warning' => __DIR__ . '/../..' . '/packages/graphql/lib/Error/Warning.php', 'YOOtheme\\GraphQL\\Executor\\ExecutionContext' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/ExecutionContext.php', 'YOOtheme\\GraphQL\\Executor\\ExecutionResult' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/ExecutionResult.php', 'YOOtheme\\GraphQL\\Executor\\Executor' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/Executor.php', 'YOOtheme\\GraphQL\\Executor\\ExecutorImplementation' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/ExecutorImplementation.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\Adapter\\AmpPromiseAdapter' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/Promise/Adapter/AmpPromiseAdapter.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\Adapter\\ReactPromiseAdapter' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/Promise/Adapter/ReactPromiseAdapter.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\Adapter\\SyncPromise' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/Promise/Adapter/SyncPromise.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\Adapter\\SyncPromiseAdapter' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/Promise/Adapter/SyncPromiseAdapter.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\Promise' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/Promise/Promise.php', 'YOOtheme\\GraphQL\\Executor\\Promise\\PromiseAdapter' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/Promise/PromiseAdapter.php', 'YOOtheme\\GraphQL\\Executor\\ReferenceExecutor' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/ReferenceExecutor.php', 'YOOtheme\\GraphQL\\Executor\\ScopedContext' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/ScopedContext.php', 'YOOtheme\\GraphQL\\Executor\\Values' => __DIR__ . '/../..' . '/packages/graphql/lib/Executor/Values.php', 'YOOtheme\\GraphQL\\GraphQL' => __DIR__ . '/../..' . '/packages/graphql/lib/GraphQL.php', 'YOOtheme\\GraphQL\\Language\\AST\\ArgumentNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ArgumentNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\BooleanValueNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/BooleanValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\DefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/DefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\DirectiveDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/DirectiveDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\DirectiveNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/DirectiveNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\DocumentNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/DocumentNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\EnumTypeDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/EnumTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\EnumTypeExtensionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/EnumTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\EnumValueDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/EnumValueDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\EnumValueNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/EnumValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ExecutableDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ExecutableDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\FieldDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/FieldDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\FieldNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/FieldNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\FloatValueNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/FloatValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\FragmentDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/FragmentDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\FragmentSpreadNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/FragmentSpreadNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\HasSelectionSet' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/HasSelectionSet.php', 'YOOtheme\\GraphQL\\Language\\AST\\InlineFragmentNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/InlineFragmentNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\InputObjectTypeDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/InputObjectTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\InputObjectTypeExtensionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/InputObjectTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\InputValueDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/InputValueDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\IntValueNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/IntValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\InterfaceTypeDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/InterfaceTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\InterfaceTypeExtensionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/InterfaceTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ListTypeNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ListTypeNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ListValueNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ListValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\Location' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/Location.php', 'YOOtheme\\GraphQL\\Language\\AST\\NameNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/NameNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\NamedTypeNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/NamedTypeNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\Node' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/Node.php', 'YOOtheme\\GraphQL\\Language\\AST\\NodeKind' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/NodeKind.php', 'YOOtheme\\GraphQL\\Language\\AST\\NodeList' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/NodeList.php', 'YOOtheme\\GraphQL\\Language\\AST\\NonNullTypeNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/NonNullTypeNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\NullValueNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/NullValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ObjectFieldNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ObjectFieldNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ObjectTypeDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ObjectTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ObjectTypeExtensionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ObjectTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ObjectValueNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ObjectValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\OperationDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/OperationDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\OperationTypeDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/OperationTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ScalarTypeDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ScalarTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ScalarTypeExtensionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ScalarTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\SchemaDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/SchemaDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\SchemaExtensionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/SchemaExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\SelectionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/SelectionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\SelectionSetNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/SelectionSetNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\StringValueNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/StringValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\TypeDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/TypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\TypeExtensionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/TypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\TypeNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/TypeNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\TypeSystemDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/TypeSystemDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\TypeSystemExtensionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/TypeSystemExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\UnionTypeDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/UnionTypeDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\UnionTypeExtensionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/UnionTypeExtensionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\ValueNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/ValueNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\VariableDefinitionNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/VariableDefinitionNode.php', 'YOOtheme\\GraphQL\\Language\\AST\\VariableNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/AST/VariableNode.php', 'YOOtheme\\GraphQL\\Language\\BlockString' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/BlockString.php', 'YOOtheme\\GraphQL\\Language\\DirectiveLocation' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/DirectiveLocation.php', 'YOOtheme\\GraphQL\\Language\\Lexer' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/Lexer.php', 'YOOtheme\\GraphQL\\Language\\Parser' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/Parser.php', 'YOOtheme\\GraphQL\\Language\\Printer' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/Printer.php', 'YOOtheme\\GraphQL\\Language\\Source' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/Source.php', 'YOOtheme\\GraphQL\\Language\\SourceLocation' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/SourceLocation.php', 'YOOtheme\\GraphQL\\Language\\Token' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/Token.php', 'YOOtheme\\GraphQL\\Language\\Visitor' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/Visitor.php', 'YOOtheme\\GraphQL\\Language\\VisitorOperation' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/VisitorOperation.php', 'YOOtheme\\GraphQL\\Language\\VisitorRemoveNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/VisitorRemoveNode.php', 'YOOtheme\\GraphQL\\Language\\VisitorSkipNode' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/VisitorSkipNode.php', 'YOOtheme\\GraphQL\\Language\\VisitorStop' => __DIR__ . '/../..' . '/packages/graphql/lib/Language/VisitorStop.php', 'YOOtheme\\GraphQL\\Plugin\\ContainerPlugin' => __DIR__ . '/../..' . '/packages/graphql/src/Plugin/ContainerPlugin.php', 'YOOtheme\\GraphQL\\SchemaBuilder' => __DIR__ . '/../..' . '/packages/graphql/src/SchemaBuilder.php', 'YOOtheme\\GraphQL\\SchemaPrinter' => __DIR__ . '/../..' . '/packages/graphql/src/SchemaPrinter.php', 'YOOtheme\\GraphQL\\Server\\Exception\\BatchedQueriesAreNotSupported' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/BatchedQueriesAreNotSupported.php', 'YOOtheme\\GraphQL\\Server\\Exception\\CannotParseJsonBody' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/CannotParseJsonBody.php', 'YOOtheme\\GraphQL\\Server\\Exception\\CannotParseVariables' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/CannotParseVariables.php', 'YOOtheme\\GraphQL\\Server\\Exception\\CannotReadBody' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/CannotReadBody.php', 'YOOtheme\\GraphQL\\Server\\Exception\\FailedToDetermineOperationType' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/FailedToDetermineOperationType.php', 'YOOtheme\\GraphQL\\Server\\Exception\\GetMethodSupportsOnlyQueryOperation' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/GetMethodSupportsOnlyQueryOperation.php', 'YOOtheme\\GraphQL\\Server\\Exception\\HttpMethodNotSupported' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/HttpMethodNotSupported.php', 'YOOtheme\\GraphQL\\Server\\Exception\\InvalidOperationParameter' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/InvalidOperationParameter.php', 'YOOtheme\\GraphQL\\Server\\Exception\\InvalidQueryIdParameter' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/InvalidQueryIdParameter.php', 'YOOtheme\\GraphQL\\Server\\Exception\\InvalidQueryParameter' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/InvalidQueryParameter.php', 'YOOtheme\\GraphQL\\Server\\Exception\\MissingContentTypeHeader' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/MissingContentTypeHeader.php', 'YOOtheme\\GraphQL\\Server\\Exception\\MissingQueryOrQueryIdParameter' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/MissingQueryOrQueryIdParameter.php', 'YOOtheme\\GraphQL\\Server\\Exception\\PersistedQueriesAreNotSupported' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/PersistedQueriesAreNotSupported.php', 'YOOtheme\\GraphQL\\Server\\Exception\\UnexpectedContentType' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Exception/UnexpectedContentType.php', 'YOOtheme\\GraphQL\\Server\\Helper' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/Helper.php', 'YOOtheme\\GraphQL\\Server\\OperationParams' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/OperationParams.php', 'YOOtheme\\GraphQL\\Server\\RequestError' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/RequestError.php', 'YOOtheme\\GraphQL\\Server\\ServerConfig' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/ServerConfig.php', 'YOOtheme\\GraphQL\\Server\\StandardServer' => __DIR__ . '/../..' . '/packages/graphql/lib/Server/StandardServer.php', 'YOOtheme\\GraphQL\\Type\\Definition\\AbstractType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/AbstractType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\Argument' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/Argument.php', 'YOOtheme\\GraphQL\\Type\\Definition\\BooleanType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/BooleanType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\CompositeType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/CompositeType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\CustomScalarType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/CustomScalarType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\Deprecated' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/Deprecated.php', 'YOOtheme\\GraphQL\\Type\\Definition\\Description' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/Description.php', 'YOOtheme\\GraphQL\\Type\\Definition\\Directive' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/Directive.php', 'YOOtheme\\GraphQL\\Type\\Definition\\EnumType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/EnumType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\EnumValueDefinition' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/EnumValueDefinition.php', 'YOOtheme\\GraphQL\\Type\\Definition\\FieldDefinition' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/FieldDefinition.php', 'YOOtheme\\GraphQL\\Type\\Definition\\FloatType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/FloatType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\HasFieldsType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/HasFieldsType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\HasFieldsTypeImplementation' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/HasFieldsTypeImplementation.php', 'YOOtheme\\GraphQL\\Type\\Definition\\IDType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/IDType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ImplementingType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/ImplementingType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ImplementingTypeImplementation' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/ImplementingTypeImplementation.php', 'YOOtheme\\GraphQL\\Type\\Definition\\InputObjectField' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/InputObjectField.php', 'YOOtheme\\GraphQL\\Type\\Definition\\InputObjectType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/InputObjectType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\InputType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/InputType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\IntType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/IntType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\InterfaceType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/InterfaceType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\LeafType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/LeafType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ListOfType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/ListOfType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\NamedType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/NamedType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\NamedTypeImplementation' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/NamedTypeImplementation.php', 'YOOtheme\\GraphQL\\Type\\Definition\\NonNull' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/NonNull.php', 'YOOtheme\\GraphQL\\Type\\Definition\\NullableType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/NullableType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ObjectType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/ObjectType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\OutputType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/OutputType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\PhpEnumType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/PhpEnumType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\QueryPlan' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/QueryPlan.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ResolveInfo' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/ResolveInfo.php', 'YOOtheme\\GraphQL\\Type\\Definition\\ScalarType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/ScalarType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\StringType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/StringType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\Type' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/Type.php', 'YOOtheme\\GraphQL\\Type\\Definition\\UnionType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/UnionType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\UnmodifiedType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/UnmodifiedType.php', 'YOOtheme\\GraphQL\\Type\\Definition\\UnresolvedFieldDefinition' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/UnresolvedFieldDefinition.php', 'YOOtheme\\GraphQL\\Type\\Definition\\WrappingType' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Definition/WrappingType.php', 'YOOtheme\\GraphQL\\Type\\Introspection' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Introspection.php', 'YOOtheme\\GraphQL\\Type\\ObjectScalarType' => __DIR__ . '/../..' . '/packages/graphql/src/Type/ObjectScalarType.php', 'YOOtheme\\GraphQL\\Type\\Schema' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Schema.php', 'YOOtheme\\GraphQL\\Type\\SchemaConfig' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/SchemaConfig.php', 'YOOtheme\\GraphQL\\Type\\SchemaValidationContext' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/SchemaValidationContext.php', 'YOOtheme\\GraphQL\\Type\\TypeKind' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/TypeKind.php', 'YOOtheme\\GraphQL\\Type\\Validation\\InputObjectCircularRefs' => __DIR__ . '/../..' . '/packages/graphql/lib/Type/Validation/InputObjectCircularRefs.php', 'YOOtheme\\GraphQL\\Utils\\AST' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/AST.php', 'YOOtheme\\GraphQL\\Utils\\ASTDefinitionBuilder' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/ASTDefinitionBuilder.php', 'YOOtheme\\GraphQL\\Utils\\ASTHelper' => __DIR__ . '/../..' . '/packages/graphql/src/Utils/ASTHelper.php', 'YOOtheme\\GraphQL\\Utils\\BreakingChangesFinder' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/BreakingChangesFinder.php', 'YOOtheme\\GraphQL\\Utils\\BuildClientSchema' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/BuildClientSchema.php', 'YOOtheme\\GraphQL\\Utils\\BuildSchema' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/BuildSchema.php', 'YOOtheme\\GraphQL\\Utils\\InterfaceImplementations' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/InterfaceImplementations.php', 'YOOtheme\\GraphQL\\Utils\\Introspection' => __DIR__ . '/../..' . '/packages/graphql/src/Utils/Introspection.php', 'YOOtheme\\GraphQL\\Utils\\LazyException' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/LazyException.php', 'YOOtheme\\GraphQL\\Utils\\LexicalDistance' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/LexicalDistance.php', 'YOOtheme\\GraphQL\\Utils\\Middleware' => __DIR__ . '/../..' . '/packages/graphql/src/Utils/Middleware.php', 'YOOtheme\\GraphQL\\Utils\\MixedStore' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/MixedStore.php', 'YOOtheme\\GraphQL\\Utils\\PairSet' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/PairSet.php', 'YOOtheme\\GraphQL\\Utils\\PhpDoc' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/PhpDoc.php', 'YOOtheme\\GraphQL\\Utils\\SchemaExtender' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/SchemaExtender.php', 'YOOtheme\\GraphQL\\Utils\\SchemaPrinter' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/SchemaPrinter.php', 'YOOtheme\\GraphQL\\Utils\\TypeComparators' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/TypeComparators.php', 'YOOtheme\\GraphQL\\Utils\\TypeInfo' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/TypeInfo.php', 'YOOtheme\\GraphQL\\Utils\\Utils' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/Utils.php', 'YOOtheme\\GraphQL\\Utils\\Value' => __DIR__ . '/../..' . '/packages/graphql/lib/Utils/Value.php', 'YOOtheme\\GraphQL\\Validator\\DocumentValidator' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/DocumentValidator.php', 'YOOtheme\\GraphQL\\Validator\\QueryValidationContext' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/QueryValidationContext.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\CustomValidationRule' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/CustomValidationRule.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\DisableIntrospection' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/DisableIntrospection.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ExecutableDefinitions' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/ExecutableDefinitions.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\FieldsOnCorrectType' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/FieldsOnCorrectType.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\FragmentsOnCompositeTypes' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/FragmentsOnCompositeTypes.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\KnownArgumentNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/KnownArgumentNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\KnownArgumentNamesOnDirectives' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/KnownArgumentNamesOnDirectives.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\KnownDirectives' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/KnownDirectives.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\KnownFragmentNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/KnownFragmentNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\KnownTypeNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/KnownTypeNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\LoneAnonymousOperation' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/LoneAnonymousOperation.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\LoneSchemaDefinition' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/LoneSchemaDefinition.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\NoFragmentCycles' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/NoFragmentCycles.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\NoUndefinedVariables' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/NoUndefinedVariables.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\NoUnusedFragments' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/NoUnusedFragments.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\NoUnusedVariables' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/NoUnusedVariables.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\OneOfInputObjectsRule' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/OneOfInputObjectsRule.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\OverlappingFieldsCanBeMerged' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/OverlappingFieldsCanBeMerged.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\PossibleFragmentSpreads' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/PossibleFragmentSpreads.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\PossibleTypeExtensions' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/PossibleTypeExtensions.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ProvidedRequiredArguments' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/ProvidedRequiredArguments.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ProvidedRequiredArgumentsOnDirectives' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/ProvidedRequiredArgumentsOnDirectives.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\QueryComplexity' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/QueryComplexity.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\QueryDepth' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/QueryDepth.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\QuerySecurityRule' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/QuerySecurityRule.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ScalarLeafs' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/ScalarLeafs.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\SingleFieldSubscription' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/SingleFieldSubscription.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueArgumentDefinitionNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueArgumentDefinitionNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueArgumentNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueArgumentNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueDirectiveNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueDirectiveNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueDirectivesPerLocation' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueDirectivesPerLocation.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueEnumValueNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueEnumValueNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueFieldDefinitionNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueFieldDefinitionNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueFragmentNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueFragmentNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueInputFieldNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueInputFieldNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueOperationNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueOperationNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueOperationTypes' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueOperationTypes.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueTypeNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueTypeNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\UniqueVariableNames' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/UniqueVariableNames.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ValidationRule' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/ValidationRule.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\ValuesOfCorrectType' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/ValuesOfCorrectType.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\VariablesAreInputTypes' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/VariablesAreInputTypes.php', 'YOOtheme\\GraphQL\\Validator\\Rules\\VariablesInAllowedPosition' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/Rules/VariablesInAllowedPosition.php', 'YOOtheme\\GraphQL\\Validator\\SDLValidationContext' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/SDLValidationContext.php', 'YOOtheme\\GraphQL\\Validator\\ValidationContext' => __DIR__ . '/../..' . '/packages/graphql/lib/Validator/ValidationContext.php', 'YOOtheme\\Hook' => __DIR__ . '/../..' . '/packages/utils/src/Hook.php', 'YOOtheme\\HookCollection' => __DIR__ . '/../..' . '/packages/utils/src/HookCollection.php', 'YOOtheme\\HttpClientInterface' => __DIR__ . '/../..' . '/packages/http-server/src/HttpClientInterface.php', 'YOOtheme\\Http\\CallbackStream' => __DIR__ . '/../..' . '/packages/http-message/src/CallbackStream.php', 'YOOtheme\\Http\\Exception' => __DIR__ . '/../..' . '/packages/http-message/src/Exception.php', 'YOOtheme\\Http\\HttpFactory' => __DIR__ . '/../..' . '/packages/http-message/src/HttpFactory.php', 'YOOtheme\\Http\\MessageTrait' => __DIR__ . '/../..' . '/packages/http-message/src/MessageTrait.php', 'YOOtheme\\Http\\Message\\Factory\\HttplugFactory' => __DIR__ . '/../..' . '/packages/http-message/lib/Factory/HttplugFactory.php', 'YOOtheme\\Http\\Message\\Factory\\Psr17Factory' => __DIR__ . '/../..' . '/packages/http-message/lib/Factory/Psr17Factory.php', 'YOOtheme\\Http\\Message\\MessageTrait' => __DIR__ . '/../..' . '/packages/http-message/lib/MessageTrait.php', 'YOOtheme\\Http\\Message\\Request' => __DIR__ . '/../..' . '/packages/http-message/lib/Request.php', 'YOOtheme\\Http\\Message\\RequestTrait' => __DIR__ . '/../..' . '/packages/http-message/lib/RequestTrait.php', 'YOOtheme\\Http\\Message\\Response' => __DIR__ . '/../..' . '/packages/http-message/lib/Response.php', 'YOOtheme\\Http\\Message\\ServerRequest' => __DIR__ . '/../..' . '/packages/http-message/lib/ServerRequest.php', 'YOOtheme\\Http\\Message\\Stream' => __DIR__ . '/../..' . '/packages/http-message/lib/Stream.php', 'YOOtheme\\Http\\Message\\StreamTrait' => __DIR__ . '/../..' . '/packages/http-message/lib/StreamTrait.php', 'YOOtheme\\Http\\Message\\UploadedFile' => __DIR__ . '/../..' . '/packages/http-message/lib/UploadedFile.php', 'YOOtheme\\Http\\Message\\Uri' => __DIR__ . '/../..' . '/packages/http-message/lib/Uri.php', 'YOOtheme\\Http\\Request' => __DIR__ . '/../..' . '/packages/http-message/src/Request.php', 'YOOtheme\\Http\\Response' => __DIR__ . '/../..' . '/packages/http-message/src/Response.php', 'YOOtheme\\Http\\Uri' => __DIR__ . '/../..' . '/packages/http-message/src/Uri.php', 'YOOtheme\\Image' => __DIR__ . '/../..' . '/packages/image/src/Image.php', 'YOOtheme\\ImageController' => __DIR__ . '/../..' . '/packages/image/src/ImageController.php', 'YOOtheme\\ImageProvider' => __DIR__ . '/../..' . '/packages/image/src/ImageProvider.php', 'YOOtheme\\Image\\BaseResource' => __DIR__ . '/../..' . '/packages/image/src/Image/BaseResource.php', 'YOOtheme\\Image\\ExifLoader' => __DIR__ . '/../..' . '/packages/image/src/Image/ExifLoader.php', 'YOOtheme\\Image\\GDResource' => __DIR__ . '/../..' . '/packages/image/src/Image/GDResource.php', 'YOOtheme\\Joomla\\ActionLoader' => __DIR__ . '/../..' . '/packages/platform-joomla/src/ActionLoader.php', 'YOOtheme\\Joomla\\Dispatcher' => __DIR__ . '/../..' . '/packages/platform-joomla/src/Dispatcher.php', 'YOOtheme\\Joomla\\HttpClient' => __DIR__ . '/../..' . '/packages/platform-joomla/src/HttpClient.php', 'YOOtheme\\Joomla\\Media' => __DIR__ . '/../..' . '/packages/platform-joomla/src/Media.php', 'YOOtheme\\Joomla\\Platform' => __DIR__ . '/../..' . '/packages/platform-joomla/src/Platform.php', 'YOOtheme\\Joomla\\Router' => __DIR__ . '/../..' . '/packages/platform-joomla/src/Router.php', 'YOOtheme\\Joomla\\Storage' => __DIR__ . '/../..' . '/packages/platform-joomla/src/Storage.php', 'YOOtheme\\Memory' => __DIR__ . '/../..' . '/packages/utils/src/Memory.php', 'YOOtheme\\Metadata' => __DIR__ . '/../..' . '/packages/view-metadata/src/Metadata.php', 'YOOtheme\\Middleware' => __DIR__ . '/../..' . '/packages/utils/src/Middleware.php', 'YOOtheme\\Path' => __DIR__ . '/../..' . '/packages/utils/src/Path.php', 'YOOtheme\\Reflection' => __DIR__ . '/../..' . '/packages/utils/src/Reflection.php', 'YOOtheme\\Route' => __DIR__ . '/../..' . '/packages/http-server/src/Route.php', 'YOOtheme\\Router' => __DIR__ . '/../..' . '/packages/http-server/src/Router.php', 'YOOtheme\\RouterMiddleware' => __DIR__ . '/../..' . '/packages/http-server/src/RouterMiddleware.php', 'YOOtheme\\Routes' => __DIR__ . '/../..' . '/packages/http-server/src/Routes.php', 'YOOtheme\\Storage' => __DIR__ . '/../..' . '/packages/application/src/Storage.php', 'YOOtheme\\Str' => __DIR__ . '/../..' . '/packages/utils/src/Str.php', 'YOOtheme\\Theme\\Analytics\\Listener\\LoadThemeHead' => __DIR__ . '/../..' . '/packages/theme-analytics/src/Listener/LoadThemeHead.php', 'YOOtheme\\Theme\\CacheController' => __DIR__ . '/../..' . '/packages/theme-settings/src/CacheController.php', 'YOOtheme\\Theme\\Cookie\\Listener\\LoadThemeHead' => __DIR__ . '/../..' . '/packages/theme-cookie/src/Listener/LoadThemeHead.php', 'YOOtheme\\Theme\\Highlight\\Listener\\LoadHighlightScript' => __DIR__ . '/../..' . '/packages/theme-highlight/src/Listener/LoadHighlightScript.php', 'YOOtheme\\Theme\\ImageLoader' => __DIR__ . '/../..' . '/packages/theme/src/ImageLoader.php', 'YOOtheme\\Theme\\Joomla\\ApiKey' => __DIR__ . '/../..' . '/packages/theme-joomla/src/ApiKey.php', 'YOOtheme\\Theme\\Joomla\\CustomizerController' => __DIR__ . '/../..' . '/packages/theme-joomla/src/CustomizerController.php', 'YOOtheme\\Theme\\Joomla\\EditorConfig' => __DIR__ . '/../..' . '/packages/theme-joomla-editor/src/EditorConfig.php', 'YOOtheme\\Theme\\Joomla\\EditorController' => __DIR__ . '/../..' . '/packages/theme-joomla-editor/src/EditorController.php', 'YOOtheme\\Theme\\Joomla\\FinderConfig' => __DIR__ . '/../..' . '/packages/theme-joomla-finder/src/FinderConfig.php', 'YOOtheme\\Theme\\Joomla\\FinderController' => __DIR__ . '/../..' . '/packages/theme-joomla-finder/src/FinderController.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AddCustomizeParameter' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/AddCustomizeParameter.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AddJsonMimeType' => __DIR__ . '/../..' . '/packages/theme-joomla-finder/src/Listener/AddJsonMimeType.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AddPageCategory' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/AddPageCategory.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AddPageLayout' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/AddPageLayout.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AddSiteUrl' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/AddSiteUrl.php', 'YOOtheme\\Theme\\Joomla\\Listener\\AlterParamsColumnType' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/AlterParamsColumnType.php', 'YOOtheme\\Theme\\Joomla\\Listener\\CheckUserPermission' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/CheckUserPermission.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadArticleForm' => __DIR__ . '/../..' . '/packages/theme-joomla-articles/src/Listener/LoadArticleForm.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadAssets' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadAssets.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadChildTheme' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadChildTheme.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadChildThemeConfig' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadChildThemeConfig.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadChildThemeModules' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadChildThemeModules.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadChildThemeNames' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadChildThemeNames.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadChildThemeTemplate' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadChildThemeTemplate.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadConfigCache' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadConfigCache.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadCustomizer' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadCustomizer.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadCustomizerContext' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadCustomizerContext.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadCustomizerData' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadCustomizerData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadCustomizerScript' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadCustomizerScript.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadCustomizerSession' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadCustomizerSession.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadEditorData' => __DIR__ . '/../..' . '/packages/theme-joomla-editor/src/Listener/LoadEditorData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadFinderData' => __DIR__ . '/../..' . '/packages/theme-joomla-finder/src/Listener/LoadFinderData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadFontAwesome' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadFontAwesome.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadMenuData' => __DIR__ . '/../..' . '/packages/theme-joomla-menus/src/Listener/LoadMenuData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadMenuModules' => __DIR__ . '/../..' . '/packages/theme-joomla-menus/src/Listener/LoadMenuModules.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadModuleData' => __DIR__ . '/../..' . '/packages/theme-joomla-modules/src/Listener/LoadModuleData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadModuleForm' => __DIR__ . '/../..' . '/packages/theme-joomla-modules/src/Listener/LoadModuleForm.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadModuleRenderer' => __DIR__ . '/../..' . '/packages/theme-joomla-modules/src/Listener/LoadModuleRenderer.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadModules' => __DIR__ . '/../..' . '/packages/theme-joomla-modules/src/Listener/LoadModules.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadSplitNavbar' => __DIR__ . '/../..' . '/packages/theme-joomla-menus/src/Listener/LoadSplitNavbar.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadStylerImports' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadStylerImports.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadTemplate' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadTemplate.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadThemeHead' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadThemeHead.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadThemeI18n' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadThemeI18n.php', 'YOOtheme\\Theme\\Joomla\\Listener\\LoadViewsObject' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/LoadViewsObject.php', 'YOOtheme\\Theme\\Joomla\\Listener\\SaveBuilderData' => __DIR__ . '/../..' . '/packages/theme-joomla-articles/src/Listener/SaveBuilderData.php', 'YOOtheme\\Theme\\Joomla\\Listener\\SaveInstallerApiKey' => __DIR__ . '/../..' . '/packages/theme-joomla/src/Listener/SaveInstallerApiKey.php', 'YOOtheme\\Theme\\Joomla\\MenuConfig' => __DIR__ . '/../..' . '/packages/theme-joomla-menus/src/MenuConfig.php', 'YOOtheme\\Theme\\Joomla\\MenuController' => __DIR__ . '/../..' . '/packages/theme-joomla-menus/src/MenuController.php', 'YOOtheme\\Theme\\Joomla\\ModuleConfig' => __DIR__ . '/../..' . '/packages/theme-joomla-modules/src/ModuleConfig.php', 'YOOtheme\\Theme\\Joomla\\ModuleController' => __DIR__ . '/../..' . '/packages/theme-joomla-modules/src/ModuleController.php', 'YOOtheme\\Theme\\Joomla\\ModulesRenderer' => __DIR__ . '/../..' . '/packages/theme-joomla-modules/src/ModulesRenderer.php', 'YOOtheme\\Theme\\Joomla\\PositionLoader' => __DIR__ . '/../..' . '/packages/theme-joomla/src/PositionLoader.php', 'YOOtheme\\Theme\\Joomla\\StreamWrapper' => __DIR__ . '/../..' . '/packages/theme-joomla/src/StreamWrapper.php', 'YOOtheme\\Theme\\Joomla\\SystemCheck' => __DIR__ . '/../..' . '/packages/theme-joomla/src/SystemCheck.php', 'YOOtheme\\Theme\\Joomla\\ThemeLoader' => __DIR__ . '/../..' . '/packages/theme-joomla/src/ThemeLoader.php', 'YOOtheme\\Theme\\Joomla\\UrlLoader' => __DIR__ . '/../..' . '/packages/theme-joomla/src/UrlLoader.php', 'YOOtheme\\Theme\\Joomla\\ViewHelper' => __DIR__ . '/../..' . '/packages/theme-joomla/src/ViewHelper.php', 'YOOtheme\\Theme\\Joomla\\ViewLoader' => __DIR__ . '/../..' . '/packages/theme-joomla-articles/src/ViewLoader.php', 'YOOtheme\\Theme\\Joomla\\ViewsObject' => __DIR__ . '/../..' . '/packages/theme-joomla/src/ViewsObject.php', 'YOOtheme\\Theme\\Listener\\AvifImageSupport' => __DIR__ . '/../..' . '/packages/theme-settings/src/Listener/AvifImageSupport.php', 'YOOtheme\\Theme\\Listener\\DisableImageCache' => __DIR__ . '/../..' . '/packages/theme/src/Listener/DisableImageCache.php', 'YOOtheme\\Theme\\Listener\\LoadConfigData' => __DIR__ . '/../..' . '/packages/theme/src/Listener/LoadConfigData.php', 'YOOtheme\\Theme\\Listener\\LoadCustomizerData' => __DIR__ . '/../..' . '/packages/theme/src/Listener/LoadCustomizerData.php', 'YOOtheme\\Theme\\Listener\\LoadThemeHead' => __DIR__ . '/../..' . '/packages/theme/src/Listener/LoadThemeHead.php', 'YOOtheme\\Theme\\Listener\\LoadThemeVersion' => __DIR__ . '/../..' . '/packages/theme/src/Listener/LoadThemeVersion.php', 'YOOtheme\\Theme\\Listener\\LoadUIkitScript' => __DIR__ . '/../..' . '/packages/theme/src/Listener/LoadUIkitScript.php', 'YOOtheme\\Theme\\Listener\\SaveBuilderLayouts' => __DIR__ . '/../..' . '/packages/theme/src/Listener/SaveBuilderLayouts.php', 'YOOtheme\\Theme\\Listener\\SetBodyClass' => __DIR__ . '/../..' . '/packages/theme-settings/src/Listener/SetBodyClass.php', 'YOOtheme\\Theme\\Listener\\SetFavicons' => __DIR__ . '/../..' . '/packages/theme-settings/src/Listener/SetFavicons.php', 'YOOtheme\\Theme\\Listener\\ShowNewsModal' => __DIR__ . '/../..' . '/packages/theme-settings/src/Listener/ShowNewsModal.php', 'YOOtheme\\Theme\\Listener\\UpdateBuilderLayouts' => __DIR__ . '/../..' . '/packages/theme/src/Listener/UpdateBuilderLayouts.php', 'YOOtheme\\Theme\\SettingsController' => __DIR__ . '/../..' . '/packages/theme-settings/src/SettingsController.php', 'YOOtheme\\Theme\\Styler\\LibraryController' => __DIR__ . '/../..' . '/packages/styler/src/LibraryController.php', 'YOOtheme\\Theme\\Styler\\Listener\\LoadStylerData' => __DIR__ . '/../..' . '/packages/styler/src/Listener/LoadStylerData.php', 'YOOtheme\\Theme\\Styler\\Listener\\LoadStylerImports' => __DIR__ . '/../..' . '/packages/styler/src/Listener/LoadStylerImports.php', 'YOOtheme\\Theme\\Styler\\StyleController' => __DIR__ . '/../..' . '/packages/styler/src/StyleController.php', 'YOOtheme\\Theme\\Styler\\StyleFontLoader' => __DIR__ . '/../..' . '/packages/styler/src/StyleFontLoader.php', 'YOOtheme\\Theme\\Styler\\Styler' => __DIR__ . '/../..' . '/packages/styler/src/Styler.php', 'YOOtheme\\Theme\\Styler\\StylerConfig' => __DIR__ . '/../..' . '/packages/styler/src/StylerConfig.php', 'YOOtheme\\Theme\\SvgHelper' => __DIR__ . '/../..' . '/packages/theme/src/SvgHelper.php', 'YOOtheme\\Theme\\SystemCheck' => __DIR__ . '/../..' . '/packages/theme/src/SystemCheck.php', 'YOOtheme\\Theme\\SystemCheckController' => __DIR__ . '/../..' . '/packages/theme-settings/src/SystemCheckController.php', 'YOOtheme\\Theme\\Updater' => __DIR__ . '/../..' . '/packages/theme/src/Updater.php', 'YOOtheme\\Theme\\ViewHelper' => __DIR__ . '/../..' . '/packages/theme/src/ViewHelper.php', 'YOOtheme\\Theme\\ViewHelperInterface' => __DIR__ . '/../..' . '/packages/theme/src/ViewHelperInterface.php', 'YOOtheme\\Translation\\Interval' => __DIR__ . '/../..' . '/packages/translation/src/Translation/Interval.php', 'YOOtheme\\Translation\\PluralizationRules' => __DIR__ . '/../..' . '/packages/translation/src/Translation/PluralizationRules.php', 'YOOtheme\\Translation\\Translator' => __DIR__ . '/../..' . '/packages/translation/src/Translation/Translator.php', 'YOOtheme\\Translator' => __DIR__ . '/../..' . '/packages/translation/src/Translator.php', 'YOOtheme\\Url' => __DIR__ . '/../..' . '/packages/utils/src/Url.php', 'YOOtheme\\UrlResolver' => __DIR__ . '/../..' . '/packages/http-server/src/UrlResolver.php', 'YOOtheme\\View' => __DIR__ . '/../..' . '/packages/view/src/View.php', 'YOOtheme\\View\\FileLoader' => __DIR__ . '/../..' . '/packages/view/src/View/FileLoader.php', 'YOOtheme\\View\\HtmlElement' => __DIR__ . '/../..' . '/packages/view/src/View/HtmlElement.php', 'YOOtheme\\View\\HtmlElementInterface' => __DIR__ . '/../..' . '/packages/view/src/View/HtmlElementInterface.php', 'YOOtheme\\View\\HtmlHelper' => __DIR__ . '/../..' . '/packages/view/src/View/HtmlHelper.php', 'YOOtheme\\View\\HtmlHelperInterface' => __DIR__ . '/../..' . '/packages/view/src/View/HtmlHelperInterface.php', 'YOOtheme\\View\\MetadataManager' => __DIR__ . '/../..' . '/packages/view-metadata/src/View/MetadataManager.php', 'YOOtheme\\View\\MetadataObject' => __DIR__ . '/../..' . '/packages/view-metadata/src/View/MetadataObject.php', 'YOOtheme\\View\\SectionHelper' => __DIR__ . '/../..' . '/packages/view/src/View/SectionHelper.php', 'YOOtheme\\View\\StrHelper' => __DIR__ . '/../..' . '/packages/view/src/View/StrHelper.php', ); public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { $loader->prefixLengthsPsr4 = ComposerStaticInitcf47a1892afdee14a54635974d33870c::$prefixLengthsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInitcf47a1892afdee14a54635974d33870c::$prefixDirsPsr4; $loader->classMap = ComposerStaticInitcf47a1892afdee14a54635974d33870c::$classMap; }, null, ClassLoader::class); } } assets/marked/lib/marked.umd.js000064400000116706151666572340012476 0ustar00/** * marked v16.3.0 - a markdown parser * Copyright (c) 2011-2025, Christopher Jeffrey. (MIT Licensed) * https://github.com/markedjs/marked */ /** * DO NOT EDIT THIS FILE * The code in this file is generated from files in ./src/ */ (function(g,f){if(typeof exports=="object"&&typeof module<"u"){module.exports=f()}else if("function"==typeof define && define.amd){define("marked",f)}else {g["marked"]=f()}}(typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : this,function(){var exports={};var __exports=exports;var module={exports}; "use strict";var G=Object.defineProperty;var be=Object.getOwnPropertyDescriptor;var Re=Object.getOwnPropertyNames;var Oe=Object.prototype.hasOwnProperty;var Te=(a,e)=>{for(var t in e)G(a,t,{get:e[t],enumerable:!0})},we=(a,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Re(e))!Oe.call(a,r)&&r!==t&&G(a,r,{get:()=>e[r],enumerable:!(n=be(e,r))||n.enumerable});return a};var ye=a=>we(G({},"__esModule",{value:!0}),a);var dt={};Te(dt,{Hooks:()=>S,Lexer:()=>x,Marked:()=>A,Parser:()=>b,Renderer:()=>P,TextRenderer:()=>$,Tokenizer:()=>y,defaults:()=>O,getDefaults:()=>_,lexer:()=>ht,marked:()=>d,options:()=>it,parse:()=>pt,parseInline:()=>ut,parser:()=>ct,setOptions:()=>ot,use:()=>at,walkTokens:()=>lt});module.exports=ye(dt);function _(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var O=_();function N(a){O=a}var C={exec:()=>null};function h(a,e=""){let t=typeof a=="string"?a:a.source,n={replace:(r,i)=>{let s=typeof i=="string"?i:i.source;return s=s.replace(m.caret,"$1"),t=t.replace(r,s),n},getRegex:()=>new RegExp(t,e)};return n}var m={codeRemoveIndent:/^(?: {1,4}| {0,3}\t)/gm,outputLinkReplace:/\\([\[\]])/g,indentCodeCompensation:/^(\s+)(?:```)/,beginningSpace:/^\s+/,endingHash:/#$/,startingSpaceChar:/^ /,endingSpaceChar:/ $/,nonSpaceChar:/[^ ]/,newLineCharGlobal:/\n/g,tabCharGlobal:/\t/g,multipleSpaceGlobal:/\s+/g,blankLine:/^[ \t]*$/,doubleBlankLine:/\n[ \t]*\n[ \t]*$/,blockquoteStart:/^ {0,3}>/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceTabs:/^\t+/,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] /,listReplaceTask:/^\[[ xX]\] +/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^<a /i,endATag:/^<\/a>/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^</,endAngleBracket:/>$/,pedanticHrefTitle:/^([^'"]*[^\s])\s+(['"])(.*)\2/,unicodeAlphaNumeric:/[\p{L}\p{N}]/u,escapeTest:/[&<>"']/,escapeReplace:/[&<>"']/g,escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,unescapeTest:/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig,caret:/(^|[^\[])\^/g,percentDecode:/%25/g,findPipe:/\|/g,splitPipe:/ \|/,slashPipe:/\\\|/g,carriageReturn:/\r\n|\r/g,spaceLine:/^ +$/gm,notSpaceStart:/^\S*/,endingNewline:/\n$/,listItemRegex:a=>new RegExp(`^( {0,3}${a})((?:[ ][^\\n]*)?(?:\\n|$))`),nextBulletRegex:a=>new RegExp(`^ {0,${Math.min(3,a-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),hrRegex:a=>new RegExp(`^ {0,${Math.min(3,a-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),fencesBeginRegex:a=>new RegExp(`^ {0,${Math.min(3,a-1)}}(?:\`\`\`|~~~)`),headingBeginRegex:a=>new RegExp(`^ {0,${Math.min(3,a-1)}}#`),htmlBeginRegex:a=>new RegExp(`^ {0,${Math.min(3,a-1)}}<(?:[a-z].*>|!--)`,"i")},Pe=/^(?:[ \t]*(?:\n|$))+/,Se=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,$e=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,I=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,_e=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,F=/(?:[*+-]|\d{1,9}[.)])/,ie=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,oe=h(ie).replace(/bull/g,F).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/\|table/g,"").getRegex(),Le=h(ie).replace(/bull/g,F).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/table/g,/ {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(),Q=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,Me=/^[^\n]+/,U=/(?!\s*\])(?:\\[\s\S]|[^\[\]\\])+/,ze=h(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",U).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),Ae=h(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,F).getRegex(),v="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",K=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,Ee=h("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",K).replace("tag",v).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),ae=h(Q).replace("hr",I).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",v).getRegex(),Ce=h(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",ae).getRegex(),W={blockquote:Ce,code:Se,def:ze,fences:$e,heading:_e,hr:I,html:Ee,lheading:oe,list:Ae,newline:Pe,paragraph:ae,table:C,text:Me},se=h("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",I).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code","(?: {4}| {0,3} )[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",v).getRegex(),Ie={...W,lheading:Le,table:se,paragraph:h(Q).replace("hr",I).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",se).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",v).getRegex()},Be={...W,html:h(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",K).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:C,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:h(Q).replace("hr",I).replace("heading",` *#{1,6} *[^ ]`).replace("lheading",oe).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},qe=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,ve=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,le=/^( {2,}|\\)\n(?!\s*$)/,De=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,D=/[\p{P}\p{S}]/u,X=/[\s\p{P}\p{S}]/u,ue=/[^\s\p{P}\p{S}]/u,He=h(/^((?![*_])punctSpace)/,"u").replace(/punctSpace/g,X).getRegex(),pe=/(?!~)[\p{P}\p{S}]/u,Ze=/(?!~)[\s\p{P}\p{S}]/u,Ge=/(?:[^\s\p{P}\p{S}]|~)/u,Ne=/\[[^\[\]]*?\]\((?:\\[\s\S]|[^\\\(\)]|\((?:\\[\s\S]|[^\\\(\)])*\))*\)|`[^`]*?`|<(?! )[^<>]*?>/g,ce=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,je=h(ce,"u").replace(/punct/g,D).getRegex(),Fe=h(ce,"u").replace(/punct/g,pe).getRegex(),he="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",Qe=h(he,"gu").replace(/notPunctSpace/g,ue).replace(/punctSpace/g,X).replace(/punct/g,D).getRegex(),Ue=h(he,"gu").replace(/notPunctSpace/g,Ge).replace(/punctSpace/g,Ze).replace(/punct/g,pe).getRegex(),Ke=h("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,ue).replace(/punctSpace/g,X).replace(/punct/g,D).getRegex(),We=h(/\\(punct)/,"gu").replace(/punct/g,D).getRegex(),Xe=h(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),Je=h(K).replace("(?:-->|$)","-->").getRegex(),Ve=h("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment",Je).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),q=/(?:\[(?:\\[\s\S]|[^\[\]\\])*\]|\\[\s\S]|`[^`]*`|[^\[\]\\`])*?/,Ye=h(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",q).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),de=h(/^!?\[(label)\]\[(ref)\]/).replace("label",q).replace("ref",U).getRegex(),ke=h(/^!?\[(ref)\](?:\[\])?/).replace("ref",U).getRegex(),et=h("reflink|nolink(?!\\()","g").replace("reflink",de).replace("nolink",ke).getRegex(),J={_backpedal:C,anyPunctuation:We,autolink:Xe,blockSkip:Ne,br:le,code:ve,del:C,emStrongLDelim:je,emStrongRDelimAst:Qe,emStrongRDelimUnd:Ke,escape:qe,link:Ye,nolink:ke,punctuation:He,reflink:de,reflinkSearch:et,tag:Ve,text:De,url:C},tt={...J,link:h(/^!?\[(label)\]\((.*?)\)/).replace("label",q).getRegex(),reflink:h(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",q).getRegex()},j={...J,emStrongRDelimAst:Ue,emStrongLDelim:Fe,url:h(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,"i").replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])((?:\\[\s\S]|[^\\])*?(?:\\[\s\S]|[^\s~\\]))\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|https?:\/\/|ftp:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/},nt={...j,br:h(le).replace("{2,}","*").getRegex(),text:h(j.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},B={normal:W,gfm:Ie,pedantic:Be},M={normal:J,gfm:j,breaks:nt,pedantic:tt};var rt={"&":"&","<":"<",">":">",'"':""","'":"'"},ge=a=>rt[a];function w(a,e){if(e){if(m.escapeTest.test(a))return a.replace(m.escapeReplace,ge)}else if(m.escapeTestNoEncode.test(a))return a.replace(m.escapeReplaceNoEncode,ge);return a}function V(a){try{a=encodeURI(a).replace(m.percentDecode,"%")}catch{return null}return a}function Y(a,e){let t=a.replace(m.findPipe,(i,s,o)=>{let l=!1,u=s;for(;--u>=0&&o[u]==="\\";)l=!l;return l?"|":" |"}),n=t.split(m.splitPipe),r=0;if(n[0].trim()||n.shift(),n.length>0&&!n.at(-1)?.trim()&&n.pop(),e)if(n.length>e)n.splice(e);else for(;n.length<e;)n.push("");for(;r<n.length;r++)n[r]=n[r].trim().replace(m.slashPipe,"|");return n}function z(a,e,t){let n=a.length;if(n===0)return"";let r=0;for(;r<n;){let i=a.charAt(n-r-1);if(i===e&&!t)r++;else if(i!==e&&t)r++;else break}return a.slice(0,n-r)}function fe(a,e){if(a.indexOf(e[1])===-1)return-1;let t=0;for(let n=0;n<a.length;n++)if(a[n]==="\\")n++;else if(a[n]===e[0])t++;else if(a[n]===e[1]&&(t--,t<0))return n;return t>0?-2:-1}function me(a,e,t,n,r){let i=e.href,s=e.title||null,o=a[1].replace(r.other.outputLinkReplace,"$1");n.state.inLink=!0;let l={type:a[0].charAt(0)==="!"?"image":"link",raw:t,href:i,title:s,text:o,tokens:n.inlineTokens(o)};return n.state.inLink=!1,l}function st(a,e,t){let n=a.match(t.other.indentCodeCompensation);if(n===null)return e;let r=n[1];return e.split(` `).map(i=>{let s=i.match(t.other.beginningSpace);if(s===null)return i;let[o]=s;return o.length>=r.length?i.slice(r.length):i}).join(` `)}var y=class{options;rules;lexer;constructor(e){this.options=e||O}space(e){let t=this.rules.block.newline.exec(e);if(t&&t[0].length>0)return{type:"space",raw:t[0]}}code(e){let t=this.rules.block.code.exec(e);if(t){let n=t[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:t[0],codeBlockStyle:"indented",text:this.options.pedantic?n:z(n,` `)}}}fences(e){let t=this.rules.block.fences.exec(e);if(t){let n=t[0],r=st(n,t[3]||"",this.rules);return{type:"code",raw:n,lang:t[2]?t[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):t[2],text:r}}}heading(e){let t=this.rules.block.heading.exec(e);if(t){let n=t[2].trim();if(this.rules.other.endingHash.test(n)){let r=z(n,"#");(this.options.pedantic||!r||this.rules.other.endingSpaceChar.test(r))&&(n=r.trim())}return{type:"heading",raw:t[0],depth:t[1].length,text:n,tokens:this.lexer.inline(n)}}}hr(e){let t=this.rules.block.hr.exec(e);if(t)return{type:"hr",raw:z(t[0],` `)}}blockquote(e){let t=this.rules.block.blockquote.exec(e);if(t){let n=z(t[0],` `).split(` `),r="",i="",s=[];for(;n.length>0;){let o=!1,l=[],u;for(u=0;u<n.length;u++)if(this.rules.other.blockquoteStart.test(n[u]))l.push(n[u]),o=!0;else if(!o)l.push(n[u]);else break;n=n.slice(u);let p=l.join(` `),c=p.replace(this.rules.other.blockquoteSetextReplace,` $1`).replace(this.rules.other.blockquoteSetextReplace2,"");r=r?`${r} ${p}`:p,i=i?`${i} ${c}`:c;let f=this.lexer.state.top;if(this.lexer.state.top=!0,this.lexer.blockTokens(c,s,!0),this.lexer.state.top=f,n.length===0)break;let k=s.at(-1);if(k?.type==="code")break;if(k?.type==="blockquote"){let R=k,g=R.raw+` `+n.join(` `),T=this.blockquote(g);s[s.length-1]=T,r=r.substring(0,r.length-R.raw.length)+T.raw,i=i.substring(0,i.length-R.text.length)+T.text;break}else if(k?.type==="list"){let R=k,g=R.raw+` `+n.join(` `),T=this.list(g);s[s.length-1]=T,r=r.substring(0,r.length-k.raw.length)+T.raw,i=i.substring(0,i.length-R.raw.length)+T.raw,n=g.substring(s.at(-1).raw.length).split(` `);continue}}return{type:"blockquote",raw:r,tokens:s,text:i}}}list(e){let t=this.rules.block.list.exec(e);if(t){let n=t[1].trim(),r=n.length>1,i={type:"list",raw:"",ordered:r,start:r?+n.slice(0,-1):"",loose:!1,items:[]};n=r?`\\d{1,9}\\${n.slice(-1)}`:`\\${n}`,this.options.pedantic&&(n=r?n:"[*+-]");let s=this.rules.other.listItemRegex(n),o=!1;for(;e;){let u=!1,p="",c="";if(!(t=s.exec(e))||this.rules.block.hr.test(e))break;p=t[0],e=e.substring(p.length);let f=t[2].split(` `,1)[0].replace(this.rules.other.listReplaceTabs,H=>" ".repeat(3*H.length)),k=e.split(` `,1)[0],R=!f.trim(),g=0;if(this.options.pedantic?(g=2,c=f.trimStart()):R?g=t[1].length+1:(g=t[2].search(this.rules.other.nonSpaceChar),g=g>4?1:g,c=f.slice(g),g+=t[1].length),R&&this.rules.other.blankLine.test(k)&&(p+=k+` `,e=e.substring(k.length+1),u=!0),!u){let H=this.rules.other.nextBulletRegex(g),te=this.rules.other.hrRegex(g),ne=this.rules.other.fencesBeginRegex(g),re=this.rules.other.headingBeginRegex(g),xe=this.rules.other.htmlBeginRegex(g);for(;e;){let Z=e.split(` `,1)[0],E;if(k=Z,this.options.pedantic?(k=k.replace(this.rules.other.listReplaceNesting," "),E=k):E=k.replace(this.rules.other.tabCharGlobal," "),ne.test(k)||re.test(k)||xe.test(k)||H.test(k)||te.test(k))break;if(E.search(this.rules.other.nonSpaceChar)>=g||!k.trim())c+=` `+E.slice(g);else{if(R||f.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||ne.test(f)||re.test(f)||te.test(f))break;c+=` `+k}!R&&!k.trim()&&(R=!0),p+=Z+` `,e=e.substring(Z.length+1),f=E.slice(g)}}i.loose||(o?i.loose=!0:this.rules.other.doubleBlankLine.test(p)&&(o=!0));let T=null,ee;this.options.gfm&&(T=this.rules.other.listIsTask.exec(c),T&&(ee=T[0]!=="[ ] ",c=c.replace(this.rules.other.listReplaceTask,""))),i.items.push({type:"list_item",raw:p,task:!!T,checked:ee,loose:!1,text:c,tokens:[]}),i.raw+=p}let l=i.items.at(-1);if(l)l.raw=l.raw.trimEnd(),l.text=l.text.trimEnd();else return;i.raw=i.raw.trimEnd();for(let u=0;u<i.items.length;u++)if(this.lexer.state.top=!1,i.items[u].tokens=this.lexer.blockTokens(i.items[u].text,[]),!i.loose){let p=i.items[u].tokens.filter(f=>f.type==="space"),c=p.length>0&&p.some(f=>this.rules.other.anyLine.test(f.raw));i.loose=c}if(i.loose)for(let u=0;u<i.items.length;u++)i.items[u].loose=!0;return i}}html(e){let t=this.rules.block.html.exec(e);if(t)return{type:"html",block:!0,raw:t[0],pre:t[1]==="pre"||t[1]==="script"||t[1]==="style",text:t[0]}}def(e){let t=this.rules.block.def.exec(e);if(t){let n=t[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal," "),r=t[2]?t[2].replace(this.rules.other.hrefBrackets,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",i=t[3]?t[3].substring(1,t[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):t[3];return{type:"def",tag:n,raw:t[0],href:r,title:i}}}table(e){let t=this.rules.block.table.exec(e);if(!t||!this.rules.other.tableDelimiter.test(t[2]))return;let n=Y(t[1]),r=t[2].replace(this.rules.other.tableAlignChars,"").split("|"),i=t[3]?.trim()?t[3].replace(this.rules.other.tableRowBlankLine,"").split(` `):[],s={type:"table",raw:t[0],header:[],align:[],rows:[]};if(n.length===r.length){for(let o of r)this.rules.other.tableAlignRight.test(o)?s.align.push("right"):this.rules.other.tableAlignCenter.test(o)?s.align.push("center"):this.rules.other.tableAlignLeft.test(o)?s.align.push("left"):s.align.push(null);for(let o=0;o<n.length;o++)s.header.push({text:n[o],tokens:this.lexer.inline(n[o]),header:!0,align:s.align[o]});for(let o of i)s.rows.push(Y(o,s.header.length).map((l,u)=>({text:l,tokens:this.lexer.inline(l),header:!1,align:s.align[u]})));return s}}lheading(e){let t=this.rules.block.lheading.exec(e);if(t)return{type:"heading",raw:t[0],depth:t[2].charAt(0)==="="?1:2,text:t[1],tokens:this.lexer.inline(t[1])}}paragraph(e){let t=this.rules.block.paragraph.exec(e);if(t){let n=t[1].charAt(t[1].length-1)===` `?t[1].slice(0,-1):t[1];return{type:"paragraph",raw:t[0],text:n,tokens:this.lexer.inline(n)}}}text(e){let t=this.rules.block.text.exec(e);if(t)return{type:"text",raw:t[0],text:t[0],tokens:this.lexer.inline(t[0])}}escape(e){let t=this.rules.inline.escape.exec(e);if(t)return{type:"escape",raw:t[0],text:t[1]}}tag(e){let t=this.rules.inline.tag.exec(e);if(t)return!this.lexer.state.inLink&&this.rules.other.startATag.test(t[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(t[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(t[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.test(t[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:t[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:t[0]}}link(e){let t=this.rules.inline.link.exec(e);if(t){let n=t[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(n)){if(!this.rules.other.endAngleBracket.test(n))return;let s=z(n.slice(0,-1),"\\");if((n.length-s.length)%2===0)return}else{let s=fe(t[2],"()");if(s===-2)return;if(s>-1){let l=(t[0].indexOf("!")===0?5:4)+t[1].length+s;t[2]=t[2].substring(0,s),t[0]=t[0].substring(0,l).trim(),t[3]=""}}let r=t[2],i="";if(this.options.pedantic){let s=this.rules.other.pedanticHrefTitle.exec(r);s&&(r=s[1],i=s[3])}else i=t[3]?t[3].slice(1,-1):"";return r=r.trim(),this.rules.other.startAngleBracket.test(r)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(n)?r=r.slice(1):r=r.slice(1,-1)),me(t,{href:r&&r.replace(this.rules.inline.anyPunctuation,"$1"),title:i&&i.replace(this.rules.inline.anyPunctuation,"$1")},t[0],this.lexer,this.rules)}}reflink(e,t){let n;if((n=this.rules.inline.reflink.exec(e))||(n=this.rules.inline.nolink.exec(e))){let r=(n[2]||n[1]).replace(this.rules.other.multipleSpaceGlobal," "),i=t[r.toLowerCase()];if(!i){let s=n[0].charAt(0);return{type:"text",raw:s,text:s}}return me(n,i,n[0],this.lexer,this.rules)}}emStrong(e,t,n=""){let r=this.rules.inline.emStrongLDelim.exec(e);if(!r||r[3]&&n.match(this.rules.other.unicodeAlphaNumeric))return;if(!(r[1]||r[2]||"")||!n||this.rules.inline.punctuation.exec(n)){let s=[...r[0]].length-1,o,l,u=s,p=0,c=r[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(c.lastIndex=0,t=t.slice(-1*e.length+s);(r=c.exec(t))!=null;){if(o=r[1]||r[2]||r[3]||r[4]||r[5]||r[6],!o)continue;if(l=[...o].length,r[3]||r[4]){u+=l;continue}else if((r[5]||r[6])&&s%3&&!((s+l)%3)){p+=l;continue}if(u-=l,u>0)continue;l=Math.min(l,l+u+p);let f=[...r[0]][0].length,k=e.slice(0,s+r.index+f+l);if(Math.min(s,l)%2){let g=k.slice(1,-1);return{type:"em",raw:k,text:g,tokens:this.lexer.inlineTokens(g)}}let R=k.slice(2,-2);return{type:"strong",raw:k,text:R,tokens:this.lexer.inlineTokens(R)}}}}codespan(e){let t=this.rules.inline.code.exec(e);if(t){let n=t[2].replace(this.rules.other.newLineCharGlobal," "),r=this.rules.other.nonSpaceChar.test(n),i=this.rules.other.startingSpaceChar.test(n)&&this.rules.other.endingSpaceChar.test(n);return r&&i&&(n=n.substring(1,n.length-1)),{type:"codespan",raw:t[0],text:n}}}br(e){let t=this.rules.inline.br.exec(e);if(t)return{type:"br",raw:t[0]}}del(e){let t=this.rules.inline.del.exec(e);if(t)return{type:"del",raw:t[0],text:t[2],tokens:this.lexer.inlineTokens(t[2])}}autolink(e){let t=this.rules.inline.autolink.exec(e);if(t){let n,r;return t[2]==="@"?(n=t[1],r="mailto:"+n):(n=t[1],r=n),{type:"link",raw:t[0],text:n,href:r,tokens:[{type:"text",raw:n,text:n}]}}}url(e){let t;if(t=this.rules.inline.url.exec(e)){let n,r;if(t[2]==="@")n=t[0],r="mailto:"+n;else{let i;do i=t[0],t[0]=this.rules.inline._backpedal.exec(t[0])?.[0]??"";while(i!==t[0]);n=t[0],t[1]==="www."?r="http://"+t[0]:r=t[0]}return{type:"link",raw:t[0],text:n,href:r,tokens:[{type:"text",raw:n,text:n}]}}}inlineText(e){let t=this.rules.inline.text.exec(e);if(t){let n=this.lexer.state.inRawBlock;return{type:"text",raw:t[0],text:t[0],escaped:n}}}};var x=class a{tokens;options;state;tokenizer;inlineQueue;constructor(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||O,this.options.tokenizer=this.options.tokenizer||new y,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let t={other:m,block:B.normal,inline:M.normal};this.options.pedantic?(t.block=B.pedantic,t.inline=M.pedantic):this.options.gfm&&(t.block=B.gfm,this.options.breaks?t.inline=M.breaks:t.inline=M.gfm),this.tokenizer.rules=t}static get rules(){return{block:B,inline:M}}static lex(e,t){return new a(t).lex(e)}static lexInline(e,t){return new a(t).inlineTokens(e)}lex(e){e=e.replace(m.carriageReturn,` `),this.blockTokens(e,this.tokens);for(let t=0;t<this.inlineQueue.length;t++){let n=this.inlineQueue[t];this.inlineTokens(n.src,n.tokens)}return this.inlineQueue=[],this.tokens}blockTokens(e,t=[],n=!1){for(this.options.pedantic&&(e=e.replace(m.tabCharGlobal," ").replace(m.spaceLine,""));e;){let r;if(this.options.extensions?.block?.some(s=>(r=s.call({lexer:this},e,t))?(e=e.substring(r.raw.length),t.push(r),!0):!1))continue;if(r=this.tokenizer.space(e)){e=e.substring(r.raw.length);let s=t.at(-1);r.raw.length===1&&s!==void 0?s.raw+=` `:t.push(r);continue}if(r=this.tokenizer.code(e)){e=e.substring(r.raw.length);let s=t.at(-1);s?.type==="paragraph"||s?.type==="text"?(s.raw+=(s.raw.endsWith(` `)?"":` `)+r.raw,s.text+=` `+r.text,this.inlineQueue.at(-1).src=s.text):t.push(r);continue}if(r=this.tokenizer.fences(e)){e=e.substring(r.raw.length),t.push(r);continue}if(r=this.tokenizer.heading(e)){e=e.substring(r.raw.length),t.push(r);continue}if(r=this.tokenizer.hr(e)){e=e.substring(r.raw.length),t.push(r);continue}if(r=this.tokenizer.blockquote(e)){e=e.substring(r.raw.length),t.push(r);continue}if(r=this.tokenizer.list(e)){e=e.substring(r.raw.length),t.push(r);continue}if(r=this.tokenizer.html(e)){e=e.substring(r.raw.length),t.push(r);continue}if(r=this.tokenizer.def(e)){e=e.substring(r.raw.length);let s=t.at(-1);s?.type==="paragraph"||s?.type==="text"?(s.raw+=(s.raw.endsWith(` `)?"":` `)+r.raw,s.text+=` `+r.raw,this.inlineQueue.at(-1).src=s.text):this.tokens.links[r.tag]||(this.tokens.links[r.tag]={href:r.href,title:r.title},t.push(r));continue}if(r=this.tokenizer.table(e)){e=e.substring(r.raw.length),t.push(r);continue}if(r=this.tokenizer.lheading(e)){e=e.substring(r.raw.length),t.push(r);continue}let i=e;if(this.options.extensions?.startBlock){let s=1/0,o=e.slice(1),l;this.options.extensions.startBlock.forEach(u=>{l=u.call({lexer:this},o),typeof l=="number"&&l>=0&&(s=Math.min(s,l))}),s<1/0&&s>=0&&(i=e.substring(0,s+1))}if(this.state.top&&(r=this.tokenizer.paragraph(i))){let s=t.at(-1);n&&s?.type==="paragraph"?(s.raw+=(s.raw.endsWith(` `)?"":` `)+r.raw,s.text+=` `+r.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=s.text):t.push(r),n=i.length!==e.length,e=e.substring(r.raw.length);continue}if(r=this.tokenizer.text(e)){e=e.substring(r.raw.length);let s=t.at(-1);s?.type==="text"?(s.raw+=(s.raw.endsWith(` `)?"":` `)+r.raw,s.text+=` `+r.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=s.text):t.push(r);continue}if(e){let s="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(s);break}else throw new Error(s)}}return this.state.top=!0,t}inline(e,t=[]){return this.inlineQueue.push({src:e,tokens:t}),t}inlineTokens(e,t=[]){let n=e,r=null;if(this.tokens.links){let o=Object.keys(this.tokens.links);if(o.length>0)for(;(r=this.tokenizer.rules.inline.reflinkSearch.exec(n))!=null;)o.includes(r[0].slice(r[0].lastIndexOf("[")+1,-1))&&(n=n.slice(0,r.index)+"["+"a".repeat(r[0].length-2)+"]"+n.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(r=this.tokenizer.rules.inline.anyPunctuation.exec(n))!=null;)n=n.slice(0,r.index)+"++"+n.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);for(;(r=this.tokenizer.rules.inline.blockSkip.exec(n))!=null;)n=n.slice(0,r.index)+"["+"a".repeat(r[0].length-2)+"]"+n.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);n=this.options.hooks?.emStrongMask?.call({lexer:this},n)??n;let i=!1,s="";for(;e;){i||(s=""),i=!1;let o;if(this.options.extensions?.inline?.some(u=>(o=u.call({lexer:this},e,t))?(e=e.substring(o.raw.length),t.push(o),!0):!1))continue;if(o=this.tokenizer.escape(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.tag(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.link(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.reflink(e,this.tokens.links)){e=e.substring(o.raw.length);let u=t.at(-1);o.type==="text"&&u?.type==="text"?(u.raw+=o.raw,u.text+=o.text):t.push(o);continue}if(o=this.tokenizer.emStrong(e,n,s)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.codespan(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.br(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.del(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.autolink(e)){e=e.substring(o.raw.length),t.push(o);continue}if(!this.state.inLink&&(o=this.tokenizer.url(e))){e=e.substring(o.raw.length),t.push(o);continue}let l=e;if(this.options.extensions?.startInline){let u=1/0,p=e.slice(1),c;this.options.extensions.startInline.forEach(f=>{c=f.call({lexer:this},p),typeof c=="number"&&c>=0&&(u=Math.min(u,c))}),u<1/0&&u>=0&&(l=e.substring(0,u+1))}if(o=this.tokenizer.inlineText(l)){e=e.substring(o.raw.length),o.raw.slice(-1)!=="_"&&(s=o.raw.slice(-1)),i=!0;let u=t.at(-1);u?.type==="text"?(u.raw+=o.raw,u.text+=o.text):t.push(o);continue}if(e){let u="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(u);break}else throw new Error(u)}}return t}};var P=class{options;parser;constructor(e){this.options=e||O}space(e){return""}code({text:e,lang:t,escaped:n}){let r=(t||"").match(m.notSpaceStart)?.[0],i=e.replace(m.endingNewline,"")+` `;return r?'<pre><code class="language-'+w(r)+'">'+(n?i:w(i,!0))+`</code></pre> `:"<pre><code>"+(n?i:w(i,!0))+`</code></pre> `}blockquote({tokens:e}){return`<blockquote> ${this.parser.parse(e)}</blockquote> `}html({text:e}){return e}def(e){return""}heading({tokens:e,depth:t}){return`<h${t}>${this.parser.parseInline(e)}</h${t}> `}hr(e){return`<hr> `}list(e){let t=e.ordered,n=e.start,r="";for(let o=0;o<e.items.length;o++){let l=e.items[o];r+=this.listitem(l)}let i=t?"ol":"ul",s=t&&n!==1?' start="'+n+'"':"";return"<"+i+s+`> `+r+"</"+i+`> `}listitem(e){let t="";if(e.task){let n=this.checkbox({checked:!!e.checked});e.loose?e.tokens[0]?.type==="paragraph"?(e.tokens[0].text=n+" "+e.tokens[0].text,e.tokens[0].tokens&&e.tokens[0].tokens.length>0&&e.tokens[0].tokens[0].type==="text"&&(e.tokens[0].tokens[0].text=n+" "+w(e.tokens[0].tokens[0].text),e.tokens[0].tokens[0].escaped=!0)):e.tokens.unshift({type:"text",raw:n+" ",text:n+" ",escaped:!0}):t+=n+" "}return t+=this.parser.parse(e.tokens,!!e.loose),`<li>${t}</li> `}checkbox({checked:e}){return"<input "+(e?'checked="" ':"")+'disabled="" type="checkbox">'}paragraph({tokens:e}){return`<p>${this.parser.parseInline(e)}</p> `}table(e){let t="",n="";for(let i=0;i<e.header.length;i++)n+=this.tablecell(e.header[i]);t+=this.tablerow({text:n});let r="";for(let i=0;i<e.rows.length;i++){let s=e.rows[i];n="";for(let o=0;o<s.length;o++)n+=this.tablecell(s[o]);r+=this.tablerow({text:n})}return r&&(r=`<tbody>${r}</tbody>`),`<table> <thead> `+t+`</thead> `+r+`</table> `}tablerow({text:e}){return`<tr> ${e}</tr> `}tablecell(e){let t=this.parser.parseInline(e.tokens),n=e.header?"th":"td";return(e.align?`<${n} align="${e.align}">`:`<${n}>`)+t+`</${n}> `}strong({tokens:e}){return`<strong>${this.parser.parseInline(e)}</strong>`}em({tokens:e}){return`<em>${this.parser.parseInline(e)}</em>`}codespan({text:e}){return`<code>${w(e,!0)}</code>`}br(e){return"<br>"}del({tokens:e}){return`<del>${this.parser.parseInline(e)}</del>`}link({href:e,title:t,tokens:n}){let r=this.parser.parseInline(n),i=V(e);if(i===null)return r;e=i;let s='<a href="'+e+'"';return t&&(s+=' title="'+w(t)+'"'),s+=">"+r+"</a>",s}image({href:e,title:t,text:n,tokens:r}){r&&(n=this.parser.parseInline(r,this.parser.textRenderer));let i=V(e);if(i===null)return w(n);e=i;let s=`<img src="${e}" alt="${n}"`;return t&&(s+=` title="${w(t)}"`),s+=">",s}text(e){return"tokens"in e&&e.tokens?this.parser.parseInline(e.tokens):"escaped"in e&&e.escaped?e.text:w(e.text)}};var $=class{strong({text:e}){return e}em({text:e}){return e}codespan({text:e}){return e}del({text:e}){return e}html({text:e}){return e}text({text:e}){return e}link({text:e}){return""+e}image({text:e}){return""+e}br(){return""}};var b=class a{options;renderer;textRenderer;constructor(e){this.options=e||O,this.options.renderer=this.options.renderer||new P,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new $}static parse(e,t){return new a(t).parse(e)}static parseInline(e,t){return new a(t).parseInline(e)}parse(e,t=!0){let n="";for(let r=0;r<e.length;r++){let i=e[r];if(this.options.extensions?.renderers?.[i.type]){let o=i,l=this.options.extensions.renderers[o.type].call({parser:this},o);if(l!==!1||!["space","hr","heading","code","table","blockquote","list","html","def","paragraph","text"].includes(o.type)){n+=l||"";continue}}let s=i;switch(s.type){case"space":{n+=this.renderer.space(s);continue}case"hr":{n+=this.renderer.hr(s);continue}case"heading":{n+=this.renderer.heading(s);continue}case"code":{n+=this.renderer.code(s);continue}case"table":{n+=this.renderer.table(s);continue}case"blockquote":{n+=this.renderer.blockquote(s);continue}case"list":{n+=this.renderer.list(s);continue}case"html":{n+=this.renderer.html(s);continue}case"def":{n+=this.renderer.def(s);continue}case"paragraph":{n+=this.renderer.paragraph(s);continue}case"text":{let o=s,l=this.renderer.text(o);for(;r+1<e.length&&e[r+1].type==="text";)o=e[++r],l+=` `+this.renderer.text(o);t?n+=this.renderer.paragraph({type:"paragraph",raw:l,text:l,tokens:[{type:"text",raw:l,text:l,escaped:!0}]}):n+=l;continue}default:{let o='Token with "'+s.type+'" type was not found.';if(this.options.silent)return console.error(o),"";throw new Error(o)}}}return n}parseInline(e,t=this.renderer){let n="";for(let r=0;r<e.length;r++){let i=e[r];if(this.options.extensions?.renderers?.[i.type]){let o=this.options.extensions.renderers[i.type].call({parser:this},i);if(o!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(i.type)){n+=o||"";continue}}let s=i;switch(s.type){case"escape":{n+=t.text(s);break}case"html":{n+=t.html(s);break}case"link":{n+=t.link(s);break}case"image":{n+=t.image(s);break}case"strong":{n+=t.strong(s);break}case"em":{n+=t.em(s);break}case"codespan":{n+=t.codespan(s);break}case"br":{n+=t.br(s);break}case"del":{n+=t.del(s);break}case"text":{n+=t.text(s);break}default:{let o='Token with "'+s.type+'" type was not found.';if(this.options.silent)return console.error(o),"";throw new Error(o)}}}return n}};var S=class{options;block;constructor(e){this.options=e||O}static passThroughHooks=new Set(["preprocess","postprocess","processAllTokens","emStrongMask"]);static passThroughHooksRespectAsync=new Set(["preprocess","postprocess","processAllTokens"]);preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}emStrongMask(e){return e}provideLexer(){return this.block?x.lex:x.lexInline}provideParser(){return this.block?b.parse:b.parseInline}};var A=class{defaults=_();options=this.setOptions;parse=this.parseMarkdown(!0);parseInline=this.parseMarkdown(!1);Parser=b;Renderer=P;TextRenderer=$;Lexer=x;Tokenizer=y;Hooks=S;constructor(...e){this.use(...e)}walkTokens(e,t){let n=[];for(let r of e)switch(n=n.concat(t.call(this,r)),r.type){case"table":{let i=r;for(let s of i.header)n=n.concat(this.walkTokens(s.tokens,t));for(let s of i.rows)for(let o of s)n=n.concat(this.walkTokens(o.tokens,t));break}case"list":{let i=r;n=n.concat(this.walkTokens(i.items,t));break}default:{let i=r;this.defaults.extensions?.childTokens?.[i.type]?this.defaults.extensions.childTokens[i.type].forEach(s=>{let o=i[s].flat(1/0);n=n.concat(this.walkTokens(o,t))}):i.tokens&&(n=n.concat(this.walkTokens(i.tokens,t)))}}return n}use(...e){let t=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(n=>{let r={...n};if(r.async=this.defaults.async||r.async||!1,n.extensions&&(n.extensions.forEach(i=>{if(!i.name)throw new Error("extension name required");if("renderer"in i){let s=t.renderers[i.name];s?t.renderers[i.name]=function(...o){let l=i.renderer.apply(this,o);return l===!1&&(l=s.apply(this,o)),l}:t.renderers[i.name]=i.renderer}if("tokenizer"in i){if(!i.level||i.level!=="block"&&i.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let s=t[i.level];s?s.unshift(i.tokenizer):t[i.level]=[i.tokenizer],i.start&&(i.level==="block"?t.startBlock?t.startBlock.push(i.start):t.startBlock=[i.start]:i.level==="inline"&&(t.startInline?t.startInline.push(i.start):t.startInline=[i.start]))}"childTokens"in i&&i.childTokens&&(t.childTokens[i.name]=i.childTokens)}),r.extensions=t),n.renderer){let i=this.defaults.renderer||new P(this.defaults);for(let s in n.renderer){if(!(s in i))throw new Error(`renderer '${s}' does not exist`);if(["options","parser"].includes(s))continue;let o=s,l=n.renderer[o],u=i[o];i[o]=(...p)=>{let c=l.apply(i,p);return c===!1&&(c=u.apply(i,p)),c||""}}r.renderer=i}if(n.tokenizer){let i=this.defaults.tokenizer||new y(this.defaults);for(let s in n.tokenizer){if(!(s in i))throw new Error(`tokenizer '${s}' does not exist`);if(["options","rules","lexer"].includes(s))continue;let o=s,l=n.tokenizer[o],u=i[o];i[o]=(...p)=>{let c=l.apply(i,p);return c===!1&&(c=u.apply(i,p)),c}}r.tokenizer=i}if(n.hooks){let i=this.defaults.hooks||new S;for(let s in n.hooks){if(!(s in i))throw new Error(`hook '${s}' does not exist`);if(["options","block"].includes(s))continue;let o=s,l=n.hooks[o],u=i[o];S.passThroughHooks.has(s)?i[o]=p=>{if(this.defaults.async&&S.passThroughHooksRespectAsync.has(s))return Promise.resolve(l.call(i,p)).then(f=>u.call(i,f));let c=l.call(i,p);return u.call(i,c)}:i[o]=(...p)=>{let c=l.apply(i,p);return c===!1&&(c=u.apply(i,p)),c}}r.hooks=i}if(n.walkTokens){let i=this.defaults.walkTokens,s=n.walkTokens;r.walkTokens=function(o){let l=[];return l.push(s.call(this,o)),i&&(l=l.concat(i.call(this,o))),l}}this.defaults={...this.defaults,...r}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,t){return x.lex(e,t??this.defaults)}parser(e,t){return b.parse(e,t??this.defaults)}parseMarkdown(e){return(n,r)=>{let i={...r},s={...this.defaults,...i},o=this.onError(!!s.silent,!!s.async);if(this.defaults.async===!0&&i.async===!1)return o(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof n>"u"||n===null)return o(new Error("marked(): input parameter is undefined or null"));if(typeof n!="string")return o(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(n)+", string expected"));s.hooks&&(s.hooks.options=s,s.hooks.block=e);let l=s.hooks?s.hooks.provideLexer():e?x.lex:x.lexInline,u=s.hooks?s.hooks.provideParser():e?b.parse:b.parseInline;if(s.async)return Promise.resolve(s.hooks?s.hooks.preprocess(n):n).then(p=>l(p,s)).then(p=>s.hooks?s.hooks.processAllTokens(p):p).then(p=>s.walkTokens?Promise.all(this.walkTokens(p,s.walkTokens)).then(()=>p):p).then(p=>u(p,s)).then(p=>s.hooks?s.hooks.postprocess(p):p).catch(o);try{s.hooks&&(n=s.hooks.preprocess(n));let p=l(n,s);s.hooks&&(p=s.hooks.processAllTokens(p)),s.walkTokens&&this.walkTokens(p,s.walkTokens);let c=u(p,s);return s.hooks&&(c=s.hooks.postprocess(c)),c}catch(p){return o(p)}}}onError(e,t){return n=>{if(n.message+=` Please report this to https://github.com/markedjs/marked.`,e){let r="<p>An error occurred:</p><pre>"+w(n.message+"",!0)+"</pre>";return t?Promise.resolve(r):r}if(t)return Promise.reject(n);throw n}}};var L=new A;function d(a,e){return L.parse(a,e)}d.options=d.setOptions=function(a){return L.setOptions(a),d.defaults=L.defaults,N(d.defaults),d};d.getDefaults=_;d.defaults=O;d.use=function(...a){return L.use(...a),d.defaults=L.defaults,N(d.defaults),d};d.walkTokens=function(a,e){return L.walkTokens(a,e)};d.parseInline=L.parseInline;d.Parser=b;d.parser=b.parse;d.Renderer=P;d.TextRenderer=$;d.Lexer=x;d.lexer=x.lex;d.Tokenizer=y;d.Hooks=S;d.parse=d;var it=d.options,ot=d.setOptions,at=d.use,lt=d.walkTokens,ut=d.parseInline,pt=d,ct=b.parse,ht=x.lex; if(__exports != exports)module.exports = exports;return module.exports})); //# sourceMappingURL=marked.umd.js.map assets/marked/LICENSE.md000064400000005576151666572340010751 0ustar00# License information ## Contribution License Agreement If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work. `</legalese>` ## Marked Copyright (c) 2018+, MarkedJS (https://github.com/markedjs/) Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ## Markdown Copyright © 2004, John Gruber http://daringfireball.net/ All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name “Markdown” nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. This software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage. assets/uikit/dist/js/uikit-icons-pinewood-lake.min.js000064400000214631151666572340016712 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(t,e){typeof exports=="object"&&typeof module<"u"?module.exports=e():typeof define=="function"&&define.amd?define("uikitpinewood_lake",e):(t=typeof globalThis<"u"?globalThis:t||self,t.UIkitPinewood_lake=e())})(this,(function(){"use strict";function t(e){t.installed||e.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.6" points="1 4 7 10 13 4"/></svg>',"navbar-toggle-icon":'<svg width="20" height="20" viewBox="0 0 20 20"><style>.uk-navbar-toggle-icon svg>[class*="line-"]{transition:0.2s ease-in-out;transition-property:transform, opacity,;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg>.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{transform:translateY(-6px) scaleX(0)}</style><rect class="line-1" width="20" height="1" y="3"/><rect class="line-2" width="20" height="1" y="9"/><rect class="line-3" width="20" height="1" y="9"/><rect class="line-4" width="20" height="1" y="15"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5"/><line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5"/></svg>',"pagination-previous":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5"/><line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="2" points="3.5,10 10,3 16.5,10"/><line fill="none" stroke="#000" stroke-width="2" x1="10" y1="18" x2="10" y2="4"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(t),t})); assets/uikit/dist/js/uikit-icons-tech-space.min.js000064400000212330151666572340016162 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikittech_space",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitTech_space=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="2" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="10" height="17" viewBox="0 0 10 17"><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5 15.5l7-7-7-7"/></svg>',"slidenav-next-large":'<svg width="16" height="28" viewBox="0 0 16 28"><polyline fill="none" stroke="#000" stroke-width="2.3" points="1 27 14 14 1 1"/></svg>',"slidenav-previous":'<svg width="10" height="17" viewBox="0 0 10 17"><path fill="none" stroke="#000" stroke-width="1.1" d="M8.5 1.5l-7 7 7 7"/></svg>',"slidenav-previous-large":'<svg width="16" height="28" viewBox="0 0 16 28"><polyline fill="none" stroke="#000" stroke-width="2.3" points="15 1 2 14 15 27"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-jack-baker.min.js000064400000213427151666572350016151 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define("uikitjack_baker",i):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitJack_baker=i())})(this,(function(){"use strict";function e(i){e.installed||i.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="10" height="10" viewBox="0 0 10 10"><circle fill="#000" cx="5" cy="5" r="3"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="13" height="13" viewBox="0 0 13 13"><polyline fill="none" stroke="#000" stroke-width="1.4" points=".97 3.74 6.5 9.26 12.03 3.74"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5"/><line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5"/></svg>',"pagination-previous":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5"/><line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="10" height="16" viewBox="0 0 10 16"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1,15 8,8 1,1"/></svg>',"slidenav-next-large":'<svg width="17" height="30" viewBox="0 0 17 30"><polyline fill="none" stroke="#000" stroke-width="2" points="2,28 15,15 2,2"/></svg>',"slidenav-previous":'<svg width="10" height="16" viewBox="0 0 10 16"><polyline fill="none" stroke="#000" stroke-width="1.4" points="9,1 2,8 9,15"/></svg>',"slidenav-previous-large":'<svg width="17" height="30" viewBox="0 0 17 30"><polyline fill="none" stroke="#000" stroke-width="2" points="15,2 2,15 15,28"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-horizon.min.js000064400000212117151666572350015642 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikithorizon",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitHorizon=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="17" height="30" viewBox="0 0 17 30"><polyline fill="none" stroke="#000" stroke-width="2" points="2,28 15,15 2,2"/></svg>',"slidenav-next-large":'<svg width="20" height="36" viewBox="0 0 20 36"><polyline fill="none" stroke="#000" stroke-width="3" points="1,34.7 17.9,17.799 1,1.5"/></svg>',"slidenav-previous":'<svg width="17" height="30" viewBox="0 0 17 30"><polyline fill="none" stroke="#000" stroke-width="2" points="15,2 2,15 15,28"/></svg>',"slidenav-previous-large":'<svg width="20" height="36" viewBox="0 0 20 36"><polyline fill="none" stroke="#000" stroke-width="3" points="18.9,34.7 2,17.799 18.9,1.5"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-district.min.js000064400000214571151666572350016005 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define("uikitdistrict",i):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitDistrict=i())})(this,(function(){"use strict";function e(i){e.installed||i.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.6" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.6" x1="13" y1="1" x2="1" y2="13"/></svg>',"close-large":'<svg width="24" height="24" viewBox="0 0 24 24"><polygon fill="#000" points="24,1.4 22.6,0 12,10.6 1.4,0 0,1.4 10.6,12 0,22.6 1.4,24 12,13.4 22.6,24 24,22.6 13.4,12"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="16" height="16" viewBox="0 0 16 16"><polyline fill="none" stroke="#000" stroke-width="2.4" points="1.059 4.529 8 11.471 14.941 4.529"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5"/><line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5"/></svg>',"pagination-previous":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5"/><line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="18" height="16" viewBox="0 0 18 16"><polygon points="17.41,8 9.71,15.71 8.29,14.29 13.59,9 0,9 0,7 13.59,7 8.29,1.71 9.71,0.29"/></svg>',"slidenav-next-large":'<svg width="18" height="16" viewBox="0 0 18 16"><polygon points="17.41,8 9.71,15.71 8.29,14.29 13.59,9 0,9 0,7 13.59,7 8.29,1.71 9.71,0.29"/></svg>',"slidenav-previous":'<svg width="18" height="16" viewBox="0 0 18 16"><polygon points="18,9 4.41,9 9.71,14.29 8.29,15.71 0.59,8 8.29,0.29 9.71,1.71 4.41,7 18,7"/></svg>',"slidenav-previous-large":'<svg width="18" height="16" viewBox="0 0 18 16"><polygon points="18,9 4.41,9 9.71,14.29 8.29,15.71 0.59,8 8.29,0.29 9.71,1.71 4.41,7 18,7"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.6" points="4.5,9.5 10,4 15.5,9.5"/><line fill="none" stroke="#000" stroke-width="1.6" x1="10" y1="17" x2="10" y2="5"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-design-bites.min.js000064400000211161151666572350016525 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitdesign_bites",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitDesign_bites=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.7" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-gravity-tower.min.js000064400000213372151666572350017001 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitgravity_tower",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitGravity_tower=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="35" height="17" viewBox="0 0 35 17"><line fill="none" stroke="#000" stroke-width="1.5" y1="8.5" x2="33.925" y2="8.5"/><path fill="none" stroke="#000" stroke-width="1.5" d="M26.08389,.65796l7.84204,7.84204-7.84204,7.84204"/></svg>',"slidenav-next-large":'<svg width="35" height="17" viewBox="0 0 35 17"><line fill="none" stroke="#000" stroke-width="1.5" y1="8.5" x2="33.925" y2="8.5"/><path fill="none" stroke="#000" stroke-width="1.5" d="M26.08389,.65796l7.84204,7.84204-7.84204,7.84204"/></svg>',"slidenav-previous":'<svg width="35" height="17" viewBox="0 0 35 17"><line fill="none" stroke="#000" stroke-width="1.5" x1="34.999" y1="8.5" x2="1.075" y2="8.5"/><path fill="none" stroke="#000" stroke-width="1.5" d="M8.91559,.65796L1.07355,8.5l7.84204,7.84204"/></svg>',"slidenav-previous-large":'<svg width="35" height="17" viewBox="0 0 35 17"><line fill="none" stroke="#000" stroke-width="1.5" x1="34.999" y1="8.5" x2="1.075" y2="8.5"/><path fill="none" stroke="#000" stroke-width="1.5" d="M8.91559,.65796L1.07355,8.5l7.84204,7.84204"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="30" height="30" viewBox="0 0 30 30"><polygon points="23.3727 8.39305 14.99965 .02049 6.62758 8.39305 7.68812 9.4536 14.24965 2.89165 14.24965 29.99998 15.74965 29.99998 15.74965 2.89152 22.31215 9.4536 23.3727 8.39305"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-fuse.min.js000064400000211141151666572350015110 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitfuse",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitFuse=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.6" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-sonic.min.js000064400000212064151666572350015266 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitsonic",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitSonic=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="8" height="12" viewBox="0 0 8 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="2,11 7,6 2,1"/></svg>',"slidenav-next-large":'<svg width="12" height="20" viewBox="0 0 12 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="2,19 11,10 2,1"/></svg>',"slidenav-previous":'<svg width="8" height="12" viewBox="0 0 8 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="6,1 1,6 6,11"/></svg>',"slidenav-previous-large":'<svg width="12" height="20" viewBox="0 0 12 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="10,1 1,10 10,19"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-core.min.js000064400000300703151666572350013770 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(Zt,Qt){typeof exports=="object"&&typeof module<"u"?module.exports=Qt():typeof define=="function"&&define.amd?define("uikit",Qt):(Zt=typeof globalThis<"u"?globalThis:Zt||self,Zt.UIkit=Qt())})(this,(function(){"use strict";const{hasOwnProperty:Zt,toString:Qt}=Object.prototype;function st(t,e){return Zt.call(t,e)}const jo=/\B([A-Z])/g,gt=G(t=>t.replace(jo,"-$1").toLowerCase()),Ro=/-(\w)/g,te=G(t=>(t.charAt(0).toLowerCase()+t.slice(1)).replace(Ro,(e,i)=>i.toUpperCase())),Ot=G(t=>t.charAt(0).toUpperCase()+t.slice(1));function rt(t,e){var i;return(i=t==null?void 0:t.startsWith)==null?void 0:i.call(t,e)}function ee(t,e){var i;return(i=t==null?void 0:t.endsWith)==null?void 0:i.call(t,e)}function d(t,e){var i;return(i=t==null?void 0:t.includes)==null?void 0:i.call(t,e)}function Pe(t,e){var i;return(i=t==null?void 0:t.findIndex)==null?void 0:i.call(t,e)}const{isArray:L,from:Oe}=Array,{assign:ie}=Object;function j(t){return typeof t=="function"}function ct(t){return t!==null&&typeof t=="object"}function ne(t){return Qt.call(t)==="[object Object]"}function Be(t){return ct(t)&&t===t.window}function oe(t){return oi(t)===9}function se(t){return oi(t)>=1}function re(t){return oi(t)===1}function oi(t){return!Be(t)&&ct(t)&&t.nodeType}function Bt(t){return typeof t=="boolean"}function P(t){return typeof t=="string"}function si(t){return typeof t=="number"}function mt(t){return si(t)||P(t)&&!isNaN(t-parseFloat(t))}function ri(t){return!(L(t)?t.length:ct(t)&&Object.keys(t).length)}function R(t){return t===void 0}function ai(t){return Bt(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function ae(t){const e=Number(t);return isNaN(e)?!1:e}function b(t){return parseFloat(t)||0}function O(t){return t&&g(t)[0]}function g(t){return se(t)?[t]:Array.from(t||[]).filter(se)}function vt(t){if(Be(t))return t;t=O(t);const e=oe(t)?t:t==null?void 0:t.ownerDocument;return(e==null?void 0:e.defaultView)||window}function un(t,e){return t===e||ct(t)&&ct(e)&&Object.keys(t).length===Object.keys(e).length&&ce(t,(i,n)=>i===e[n])}function li(t,e,i){return t.replace(new RegExp(`${e}|${i}`,"g"),n=>n===e?i:e)}function le(t){return t[t.length-1]}function ce(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function fn(t,e){return t.slice().sort(({[e]:i=0},{[e]:n=0})=>i>n?1:n>i?-1:0)}function he(t,e){return t.reduce((i,n)=>i+b(j(e)?e(n):n[e]),0)}function Uo(t,e){const i=new Set;return t.filter(({[e]:n})=>i.has(n)?!1:i.add(n))}function ci(t,e){return e.reduce((i,n)=>({...i,[n]:t[n]}),{})}function at(t,e=0,i=1){return Math.min(Math.max(ae(t)||0,e),i)}function tt(){}function Me(...t){return[["bottom","top"],["right","left"]].every(([e,i])=>Math.min(...t.map(({[e]:n})=>n))-Math.max(...t.map(({[i]:n})=>n))>0)}function hi(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function ui(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}}function dn(t,e){t={...t};for(const i in t)t=t[i]>e[i]?ui(t,i,e[i]):t;return t}function Vo(t,e){t=dn(t,e);for(const i in t)t=t[i]<e[i]?ui(t,i,e[i]):t;return t}const pn={ratio:ui,contain:dn,cover:Vo};function ht(t,e,i=0,n=!1){e=g(e);const{length:o}=e;return o?(t=mt(t)?ae(t):t==="next"?i+1:t==="previous"?i-1:t==="last"?o-1:e.indexOf(O(t)),n?at(t,0,o-1):(t%=o,t<0?t+o:t)):-1}function G(t){const e=Object.create(null);return(i,...n)=>e[i]||(e[i]=t(i,...n))}function S(t,...e){for(const i of g(t)){const n=bt(e).filter(o=>!m(i,o));n.length&&i.classList.add(...n)}}function N(t,...e){for(const i of g(t)){const n=bt(e).filter(o=>m(i,o));n.length&&i.classList.remove(...n)}}function De(t,e,i){i=bt(i),e=bt(e).filter(n=>!d(i,n)),N(t,e),S(t,i)}function m(t,e){return[e]=bt(e),g(t).some(i=>i.classList.contains(e))}function U(t,e,i){const n=bt(e);R(i)||(i=!!i);for(const o of g(t))for(const s of n)o.classList.toggle(s,i)}function bt(t){return t?L(t)?t.map(bt).flat():String(t).split(" ").filter(Boolean):[]}function C(t,e,i){var n;if(ct(e)){for(const o in e)C(t,o,e[o]);return}if(R(i))return(n=O(t))==null?void 0:n.getAttribute(e);for(const o of g(t))j(i)&&(i=i.call(o,C(o,e))),i===null?ue(o,e):o.setAttribute(e,i)}function ut(t,e){return g(t).some(i=>i.hasAttribute(e))}function ue(t,e){g(t).forEach(i=>i.removeAttribute(e))}function Mt(t,e){for(const i of[e,`data-${e}`])if(ut(t,i))return C(t,i)}const wt=typeof window<"u",$t=wt&&document.dir==="rtl",Dt=wt&&"ontouchstart"in window,At=wt&&window.PointerEvent,Nt=At?"pointerdown":Dt?"touchstart":"mousedown",gn=At?"pointermove":Dt?"touchmove":"mousemove",It=At?"pointerup":Dt?"touchend":"mouseup",Ft=At?"pointerenter":Dt?"":"mouseenter",fe=At?"pointerleave":Dt?"":"mouseleave",Ae=At?"pointercancel":"touchcancel",Yo={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function fi(t){return g(t).some(e=>Yo[e.tagName.toLowerCase()])}const Go=wt&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function q(t){return g(t).some(e=>Go.call(e))}const Ne="input,select,textarea,button";function di(t){return g(t).some(e=>E(e,Ne))}const de=`${Ne},a[href],[tabindex]`;function Ie(t){return E(t,de)}function B(t){var e;return(e=O(t))==null?void 0:e.parentElement}function pe(t,e){return g(t).filter(i=>E(i,e))}function E(t,e){return g(t).some(i=>i.matches(e))}function ge(t,e){const i=[];for(;t=B(t);)(!e||E(t,e))&&i.push(t);return i}function et(t,e){t=O(t);const i=t?Oe(t.children):[];return e?pe(i,e):i}function zt(t,e){return e?g(t).indexOf(O(e)):et(B(t)).indexOf(t)}function Ht(t){return t=O(t),t&&["origin","pathname","search"].every(e=>t[e]===location[e])}function Fe(t){if(Ht(t)){const{hash:e,ownerDocument:i}=O(t),n=decodeURIComponent(e).slice(1);return n?i.getElementById(n)||i.getElementsByName(n)[0]:i.documentElement}}function V(t,e){return pi(t,mn(t,e))}function me(t,e){return ve(t,mn(t,e))}function pi(t,e){return O(wn(t,O(e),"querySelector"))}function ve(t,e){return g(wn(t,O(e),"querySelectorAll"))}function mn(t,e=document){return oe(e)||vn(t).isContextSelector?e:e.ownerDocument}const Xo=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,Jo=/(\([^)]*\)|[^,])+/g,vn=G(t=>{let e=!1;if(!t||!P(t))return{};const i=[];for(let n of t.match(Jo))n=n.trim().replace(Xo,"$1 *"),e||(e=["!","+","~","-",">"].includes(n[0])),i.push(n);return{selector:i.join(","),selectors:i,isContextSelector:e}}),Ko=/(\([^)]*\)|\S)*/,bn=G(t=>{t=t.slice(1).trim();const[e]=t.match(Ko);return[e,t.slice(e.length+1)]});function wn(t,e=document,i){var n;const o=vn(t);if(!o.isContextSelector)return o.selector?gi(e,i,o.selector):t;t="";const s=o.selectors.length===1;for(let r of o.selectors){let a,l=e;if(r[0]==="!"&&([a,r]=bn(r),l=(n=e.parentElement)==null?void 0:n.closest(a),!r&&s)||l&&r[0]==="-"&&([a,r]=bn(r),l=l.previousElementSibling,l=E(l,a)?l:null,!r&&s))return l;if(l){if(s)return r[0]==="~"||r[0]==="+"?(r=`:scope > :nth-child(${zt(l)+1}) ${r}`,l=l.parentElement):r[0]===">"&&(r=`:scope ${r}`),gi(l,i,r);t+=`${t?",":""}${Zo(l)} ${r}`}}return oe(e)||(e=e.ownerDocument),gi(e,i,t)}function gi(t,e,i){try{return t[e](i)}catch{return null}}function Zo(t){const e=[];for(;t.parentNode;){const i=C(t,"id");if(i){e.unshift(`#${mi(i)}`);break}else{let{tagName:n}=t;n!=="HTML"&&(n+=`:nth-child(${zt(t)+1})`),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function mi(t){return P(t)?CSS.escape(t):""}function w(...t){let[e,i,n,o,s=!1]=bi(t);o.length>1&&(o=ts(o)),s!=null&&s.self&&(o=es(o)),n&&(o=Qo(n,o));for(const r of i)for(const a of e)a.addEventListener(r,o,s);return()=>vi(e,i,o,s)}function vi(...t){let[e,i,,n,o=!1]=bi(t);for(const s of i)for(const r of e)r.removeEventListener(s,n,o)}function M(...t){const[e,i,n,o,s=!1,r]=bi(t),a=w(e,i,n,l=>{const h=!r||r(l);h&&(a(),o(l,h))},s);return a}function T(t,e,i){return wi(t).every(n=>n.dispatchEvent(ze(e,!0,!0,i)))}function ze(t,e=!0,i=!1,n){return P(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function bi(t){return t[0]=wi(t[0]),P(t[1])&&(t[1]=t[1].split(" ")),j(t[2])&&t.splice(2,0,!1),t}function Qo(t,e){return i=>{const n=t[0]===">"?ve(t,i.currentTarget).reverse().find(o=>o.contains(i.target)):i.target.closest(t);n&&(i.current=n,e.call(this,i),delete i.current)}}function ts(t){return e=>L(e.detail)?t(e,...e.detail):t(e)}function es(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function $n(t){return t&&"addEventListener"in t}function is(t){return $n(t)?t:O(t)}function wi(t){return L(t)?t.map(is).filter(Boolean):P(t)?ve(t):$n(t)?[t]:g(t)}function ft(t){return t.pointerType==="touch"||!!t.touches}function Lt(t){var e,i;const{clientX:n,clientY:o}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:o}}const ns={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,n){const o=g(t);for(const s of o)if(P(e)){if(e=yi(e),R(i))return getComputedStyle(s).getPropertyValue(e);s.style.setProperty(e,mt(i)&&!ns[e]&&!yn(e)?`${i}px`:i||si(i)?i:"",n)}else if(L(e)){const r={};for(const a of e)r[a]=c(s,a);return r}else if(ct(e))for(const r in e)c(s,r,e[r],i);return o[0]}function $i(t,e){for(const i in e)c(t,i,"")}const yi=G(t=>{if(yn(t))return t;t=gt(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const n=`-${i}-${t}`;if(n in e)return n}});function yn(t){return rt(t,"--")}const xi="uk-transition",ki="transitionend",Si="transitioncanceled";function os(t,e,i=400,n="linear"){return i=Math.round(i),Promise.all(g(t).map(o=>new Promise((s,r)=>{for(const h in e)c(o,h);const a=setTimeout(()=>T(o,ki),i);M(o,[ki,Si],({type:h})=>{clearTimeout(a),N(o,xi),$i(o,l),h===Si?r():s(o)},{self:!0}),S(o,xi);const l={transitionProperty:Object.keys(e).map(yi).join(","),transitionDuration:`${i}ms`,transitionTimingFunction:n};c(o,{...l,...e})})))}const X={start:os,async stop(t){T(t,ki),await Promise.resolve()},async cancel(t){T(t,Si),await Promise.resolve()},inProgress(t){return m(t,xi)}},be="uk-animation",xn="animationend",He="animationcanceled";function kn(t,e,i=200,n,o){return Promise.all(g(t).map(s=>new Promise((r,a)=>{m(s,be)&&T(s,He);const l=[e,be,`${be}-${o?"leave":"enter"}`,n&&`uk-transform-origin-${n}`,o&&`${be}-reverse`],h=setTimeout(()=>T(s,xn),i);M(s,[xn,He],({type:u})=>{clearTimeout(h),u===He?a():r(s),c(s,"animationDuration",""),N(s,l)},{self:!0}),c(s,"animationDuration",`${i}ms`),S(s,l)})))}const dt={in:kn,out(t,e,i,n){return kn(t,e,i,n,!0)},inProgress(t){return m(t,be)},cancel(t){T(t,He)}};function ss(t){if(document.readyState!=="loading"){t();return}M(document,"DOMContentLoaded",t)}function I(t,...e){return e.some(i=>{var n;return((n=t==null?void 0:t.tagName)==null?void 0:n.toLowerCase())===i.toLowerCase()})}function Sn(t){return t=$(t),t&&(t.innerHTML=""),t}function Le(t,e){return R(e)?$(t).innerHTML:Q(Sn(t),e)}const rs=We("prepend"),Q=We("append"),Ei=We("before"),qe=We("after");function We(t){return function(e,i){var n;const o=g(P(i)?xt(i):i);return(n=$(e))==null||n[t](...o),En(o)}}function yt(t){g(t).forEach(e=>e.remove())}function je(t,e){for(e=O(Ei(t,e));e.firstElementChild;)e=e.firstElementChild;return Q(e,t),e}function Ci(t,e){return g(g(t).map(i=>i.hasChildNodes()?je(Oe(i.childNodes),e):Q(i,e)))}function we(t){g(t).map(B).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const as=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function xt(t){const e=as.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("template");return i.innerHTML=t.trim(),En(i.content.childNodes)}function En(t){return t.length>1?t:t[0]}function kt(t,e){if(re(t))for(e(t),t=t.firstElementChild;t;)kt(t,e),t=t.nextElementSibling}function $(t,e){return Cn(t)?O(xt(t)):pi(t,e)}function F(t,e){return Cn(t)?g(xt(t)):ve(t,e)}function Cn(t){return P(t)&&rt(t.trim(),"<")}const St={width:["left","right"],height:["top","bottom"]};function _(t){const e=re(t)?O(t).getBoundingClientRect():{height:lt(t),width:Re(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function v(t,e){e&&c(t,{left:0,top:0});const i=_(t);if(t){const{scrollY:n,scrollX:o}=vt(t),s={height:n,width:o};for(const r in St)for(const a of St[r])i[a]+=s[r]}if(!e)return i;for(const n of["left","top"])c(t,n,e[n]-i[n])}function ls(t){let{top:e,left:i}=v(t);const{ownerDocument:{body:n,documentElement:o},offsetParent:s}=O(t);let r=s||o;for(;r&&(r===n||r===o)&&c(r,"position")==="static";)r=r.parentNode;if(re(r)){const a=v(r);e-=a.top+b(c(r,"borderTopWidth")),i-=a.left+b(c(r,"borderLeftWidth"))}return{top:e-b(c(t,"marginTop")),left:i-b(c(t,"marginLeft"))}}function $e(t){t=O(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+b(c(t,"borderTopWidth")),e[1]+=t.offsetLeft+b(c(t,"borderLeftWidth")),c(t,"position")==="fixed"){const i=vt(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const lt=Tn("height"),Re=Tn("width");function Tn(t){const e=Ot(t);return(i,n)=>{if(R(n)){if(Be(i))return i[`inner${e}`];if(oe(i)){const o=i.documentElement;return Math.max(o[`offset${e}`],o[`scroll${e}`])}return i=O(i),n=c(i,t),n=n==="auto"?i[`offset${e}`]:b(n)||0,n-qt(i,t)}else return c(i,t,!n&&n!==0?"":+n+qt(i,t)+"px")}}function qt(t,e,i="border-box"){return c(t,"boxSizing")===i?he(St[e],n=>b(c(t,`padding-${n}`))+b(c(t,`border-${n}-width`))):0}function _n(t){for(const e in St)for(const i in St[e])if(St[e][i]===t)return St[e][1-i];return t}function J(t,e="width",i=window,n=!1){return P(t)?he(hs(t),o=>{const s=fs(o);return s?ds(s==="vh"?ps():s==="vw"?Re(vt(i)):n?i[`offset${Ot(e)}`]:_(i)[e],o):o}):b(t)}const cs=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,hs=G(t=>t.toString().replace(/\s/g,"").match(cs)||[]),us=/(?:v[hw]|%)$/,fs=G(t=>(t.match(us)||[])[0]);function ds(t,e){return t*b(e)/100}let ye,Wt;function ps(){return ye||(Wt||(Wt=$("<div>"),c(Wt,{height:"100vh",position:"fixed"}),w(window,"resize",()=>ye=null)),Q(document.body,Wt),ye=Wt.clientHeight,yt(Wt),ye)}const Ti={read:gs,write:ms,clear:vs,flush:Pn},Ue=[],Ve=[];function gs(t){return Ue.push(t),Pi(),t}function ms(t){return Ve.push(t),Pi(),t}function vs(t){Bn(Ue,t),Bn(Ve,t)}let _i=!1;function Pn(){On(Ue),On(Ve.splice(0)),_i=!1,(Ue.length||Ve.length)&&Pi()}function Pi(){_i||(_i=!0,queueMicrotask(Pn))}function On(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Bn(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}class Mn{init(){this.positions=[];let e;this.unbind=w(document,"mousemove",i=>e=Lt(i)),this.interval=setInterval(()=>{e&&(this.positions.push(e),this.positions.length>5&&this.positions.shift())},50)}cancel(){var e;(e=this.unbind)==null||e.call(this),clearInterval(this.interval)}movesTo(e){if(!this.positions||this.positions.length<2)return!1;const i=_(e),{left:n,right:o,top:s,bottom:r}=i,[a]=this.positions,l=le(this.positions),h=[a,l];return hi(l,i)?!1:[[{x:n,y:s},{x:o,y:r}],[{x:n,y:r},{x:o,y:s}]].some(f=>{const p=bs(h,f);return p&&hi(p,i)})}}function bs([{x:t,y:e},{x:i,y:n}],[{x:o,y:s},{x:r,y:a}]){const l=(a-s)*(i-t)-(r-o)*(n-e);if(l===0)return!1;const h=((r-o)*(e-s)-(a-s)*(t-o))/l;return h<0?!1:{x:t+h*(i-t),y:e+h*(n-e)}}function Dn(t,e,i={},{intersecting:n=!0}={}){const o=new IntersectionObserver(n?(s,r)=>{s.some(a=>a.isIntersecting)&&e(s,r)}:e,i);for(const s of g(t))o.observe(s);return o}const ws=wt&&window.ResizeObserver;function xe(t,e,i={box:"border-box"}){if(ws)return An(ResizeObserver,t,e,i);const n=[w(window,"load resize",e),w(document,"loadedmetadata load",e,!0)];return{disconnect:()=>n.map(o=>o())}}function Oi(t){return{disconnect:w([window,window.visualViewport],"resize",t)}}function Bi(t,e,i){return An(MutationObserver,t,e,i)}function An(t,e,i,n){const o=new t(i);for(const s of g(e))o.observe(s,n);return o}function Mi(t){Ai(t)&&Ni(t,{func:"playVideo",method:"play"}),Di(t)&&t.play().catch(tt)}function Ye(t){Ai(t)&&Ni(t,{func:"pauseVideo",method:"pause"}),Di(t)&&t.pause()}function Nn(t){Ai(t)&&Ni(t,{func:"mute",method:"setVolume",value:0}),Di(t)&&(t.muted=!0)}function Di(t){return I(t,"video")}function Ai(t){return I(t,"iframe")&&(In(t)||Fn(t))}function In(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Fn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Ni(t,e){await ys(t),zn(t,e)}function zn(t,e){t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}const Ii="_ukPlayer";let $s=0;function ys(t){if(t[Ii])return t[Ii];const e=In(t),i=Fn(t),n=++$s;let o;return t[Ii]=new Promise(s=>{e&&M(t,"load",()=>{const r=()=>zn(t,{event:"listening",id:n});o=setInterval(r,100),r()}),M(window,"message",s,!1,({data:r})=>{try{return r=JSON.parse(r),e&&(r==null?void 0:r.id)===n&&r.event==="onReady"||i&&Number(r==null?void 0:r.player_id)===n}catch{}}),t.src=`${t.src}${d(t.src,"?")?"&":"?"}${e?"enablejsapi=1":`api=1&player_id=${n}`}`}).then(()=>clearInterval(o))}function xs(t,e=0,i=0){return q(t)?Me(...Rt(t).map(n=>{const{top:o,left:s,bottom:r,right:a}=K(n);return{top:o-e,left:s-i,bottom:r+e,right:a+i}}).concat(v(t))):!1}function Hn(t,{offset:e=0}={}){const i=q(t)?jt(t,!1,["hidden"]):[];return i.reduce((r,a,l)=>{const{scrollTop:h,scrollHeight:u,offsetHeight:f}=a,p=K(a),D=u-p.height,{height:x,top:y}=i[l-1]?K(i[l-1]):v(t);let k=Math.ceil(y-p.top-e+h);return e>0&&f<x+e?k+=e:e=0,k>D?(e-=k-D,k=D):k<0&&(e-=k,k=0),()=>n(a,k-h,t,D).then(r)},()=>Promise.resolve())();function n(r,a,l,h){return new Promise(u=>{const f=r.scrollTop,p=o(Math.abs(a)),D=Date.now(),x=Hi(r)===r,y=v(l).top+(x?0:f);let k=0,nt=15;(function Jt(){const Kt=s(at((Date.now()-D)/p));let ot=0;i[0]===r&&f+a<h&&(ot=v(l).top+(x?0:r.scrollTop)-y-_(Fi(l)).height),c(r,"scrollBehavior")!=="auto"&&c(r,"scrollBehavior","auto"),r.scrollTop=f+(a+ot)*Kt,c(r,"scrollBehavior",""),Kt===1&&(k===ot||!nt--)?u():(k=ot,requestAnimationFrame(Jt))})()})}function o(r){return 40*Math.pow(r,.375)}function s(r){return .5*(1-Math.cos(Math.PI*r))}}function Ln(t,e=0,i=0){if(!q(t))return 0;const n=Et(t,!0),{scrollHeight:o,scrollTop:s}=n,{height:r}=K(n),a=o-r,l=$e(t)[0]-$e(n)[0],h=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return h<u?at((s-h)/(u-h)):1}function jt(t,e=!1,i=[]){const n=Hi(t);let o=ge(t).reverse();o=o.slice(o.indexOf(n)+1);const s=Pe(o,r=>c(r,"position")==="fixed");return~s&&(o=o.slice(s)),[n].concat(o.filter(r=>c(r,"overflow").split(" ").some(a=>d(["auto","scroll",...i],a))&&(!e||r.scrollHeight>K(r).height))).reverse()}function Et(...t){return jt(...t)[0]}function Rt(t){return jt(t,!1,["hidden","clip"])}function K(t){const e=vt(t),i=Hi(t),n=!se(t)||t.contains(i);if(n&&e.visualViewport){let{height:l,width:h,scale:u,pageTop:f,pageLeft:p}=e.visualViewport;return l=Math.round(l*u),h=Math.round(h*u),{height:l,width:h,top:f,left:p,bottom:f+l,right:p+h}}let o=v(n?e:t);if(c(t,"display")==="inline")return o;const{body:s,documentElement:r}=e.document,a=n?i===r||i.clientHeight<s.clientHeight?i:s:t;for(let[l,h,u,f]of[["width","x","left","right"],["height","y","top","bottom"]]){const p=o[l]%1;o[u]+=b(c(a,`border-${u}-width`)),o[l]=o[h]=a[`client${Ot(l)}`]-(p?p<.5?-p:1-p:0),o[f]=o[l]+o[u]}return o}function Fi(t){const{left:e,width:i,top:n}=_(t);for(const o of n?[0,n]:[0]){let s;for(const r of vt(t).document.elementsFromPoint(e+i/2,o))!r.contains(t)&&!m(r,"uk-togglable-leave")&&(zi(r,"fixed")&&qn(ge(t).reverse().find(a=>!a.contains(r)&&!zi(a,"static")))<qn(r)||zi(r,"sticky")&&(!t||B(r).contains(t)))&&(!s||_(s).height<_(r).height)&&(s=r);if(s)return s}}function qn(t){return b(c(t,"zIndex"))}function zi(t,e){return c(t,"position")===e}function Hi(t){return vt(t).document.scrollingElement}const Y=[["width","x","left","right"],["height","y","top","bottom"]];function Wn(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],placement:[],...i},L(e)||(e=[e,e]),v(t,jn(t,e,i))}function jn(t,e,i){const n=Rn(t,e,i),{boundary:o,viewportOffset:s=0,placement:r}=i;let a=n;for(const[l,[h,,u,f]]of Object.entries(Y)){const p=ks(t,e[l],s,o,l);if(Ge(n,p,l))continue;let D=0;if(r[l]==="flip"){const x=i.attach.target[l];if(x===f&&n[f]<=p[f]||x===u&&n[u]>=p[u])continue;D=Es(t,e,i,l)[u]-n[u];const y=Ss(t,e[l],s,l);if(!Ge(Li(n,D,l),y,l)){if(Ge(n,y,l))continue;if(i.recursion)return!1;const k=Cs(t,e,i);if(k&&Ge(k,y,1-l))return k;continue}}else if(r[l]==="shift"){const x=v(e[l]),{offset:y}=i;D=at(at(n[u],p[u],p[f]-n[h]),x[u]-n[h]+y[l],x[f]-y[l])-n[u]}a=Li(a,D,l)}return a}function Rn(t,e,i){let{attach:n,offset:o}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},s=v(t);for(const[r,[a,,l,h]]of Object.entries(Y)){const u=n.target[r]===n.element[r]?K(e[r]):v(e[r]);s=Li(s,u[l]-s[l]+Un(n.target[r],h,u[a])-Un(n.element[r],h,s[a])+ +o[r],r)}return s}function Li(t,e,i){const[,n,o,s]=Y[i],r={...t};return r[o]=t[n]=t[o]+e,r[s]+=e,r}function Un(t,e,i){return t==="center"?i/2:t===e?i:0}function ks(t,e,i,n,o){let s=Yn(...Vn(t,e).map(K));return i&&(s[Y[o][2]]+=i,s[Y[o][3]]-=i),n&&(s=Yn(s,v(L(n)?n[o]:n))),s}function Ss(t,e,i,n){const[o,s,r,a]=Y[n],[l]=Vn(t,e),h=K(l);return["auto","scroll"].includes(c(l,`overflow-${s}`))&&(h[r]-=l[`scroll${Ot(r)}`],h[a]=h[r]+l[`scroll${Ot(o)}`]),h[r]+=i,h[a]-=i,h}function Vn(t,e){return Rt(e).filter(i=>i.contains(t))}function Yn(...t){let e={};for(const i of t)for(const[,,n,o]of Y)e[n]=Math.max(e[n]||0,i[n]),e[o]=Math.min(...[e[o],i[o]].filter(Boolean));return e}function Ge(t,e,i){const[,,n,o]=Y[i];return t[n]>=e[n]&&t[o]<=e[o]}function Es(t,e,{offset:i,attach:n},o){return Rn(t,e,{attach:{element:Gn(n.element,o),target:Gn(n.target,o)},offset:Ts(i,o)})}function Cs(t,e,i){return jn(t,e,{...i,attach:{element:i.attach.element.map(Xn).reverse(),target:i.attach.target.map(Xn).reverse()},offset:i.offset.reverse(),placement:i.placement.reverse(),recursion:!0})}function Gn(t,e){const i=[...t],n=Y[e].indexOf(t[e]);return~n&&(i[e]=Y[e][1-n%2+2]),i}function Xn(t){for(let e=0;e<Y.length;e++){const i=Y[e].indexOf(t);if(~i)return Y[1-e][i%2+2]}}function Ts(t,e){return t=[...t],t[e]*=-1,t}var _s=Object.freeze({__proto__:null,$,$$:F,Animation:dt,Dimensions:pn,MouseTracker:Mn,Transition:X,addClass:S,after:qe,append:Q,apply:kt,assign:ie,attr:C,before:Ei,boxModelAdjust:qt,camelize:te,children:et,clamp:at,createEvent:ze,css:c,data:Mt,dimensions:_,each:ce,empty:Sn,endsWith:ee,escape:mi,fastdom:Ti,filter:pe,find:pi,findAll:ve,findIndex:Pe,flipPosition:_n,fragment:xt,getCoveringElement:Fi,getEventPos:Lt,getIndex:ht,getTargetedElement:Fe,hasAttr:ut,hasClass:m,hasOwn:st,hasTouch:Dt,height:lt,html:Le,hyphenate:gt,inBrowser:wt,includes:d,index:zt,intersectRect:Me,isArray:L,isBoolean:Bt,isDocument:oe,isElement:re,isEmpty:ri,isEqual:un,isFocusable:Ie,isFunction:j,isInView:xs,isInput:di,isNode:se,isNumber:si,isNumeric:mt,isObject:ct,isPlainObject:ne,isRtl:$t,isSameSiteAnchor:Ht,isString:P,isTag:I,isTouch:ft,isUndefined:R,isVisible:q,isVoidElement:fi,isWindow:Be,last:le,matches:E,memoize:G,mute:Nn,noop:tt,observeIntersection:Dn,observeMutation:Bi,observeResize:xe,observeViewportResize:Oi,off:vi,offset:v,offsetPosition:$e,offsetViewport:K,on:w,once:M,overflowParents:Rt,parent:B,parents:ge,pause:Ye,pick:ci,play:Mi,pointInRect:hi,pointerCancel:Ae,pointerDown:Nt,pointerEnter:Ft,pointerLeave:fe,pointerMove:gn,pointerUp:It,position:ls,positionAt:Wn,prepend:rs,propName:yi,query:V,queryAll:me,ready:ss,remove:yt,removeAttr:ue,removeClass:N,replaceClass:De,resetProps:$i,scrollIntoView:Hn,scrollParent:Et,scrollParents:jt,scrolledOver:Ln,selFocusable:de,selInput:Ne,sortBy:fn,startsWith:rt,sumBy:he,swap:li,toArray:Oe,toBoolean:ai,toEventTargets:wi,toFloat:b,toNode:O,toNodes:g,toNumber:ae,toPx:J,toWindow:vt,toggleClass:U,trigger:T,ucfirst:Ot,uniqueBy:Uo,unwrap:we,width:Re,wrapAll:je,wrapInner:Ci});function Ps(t){t._data={},t._updates=[...t.$options.update||[]],t._disconnect.push(()=>t._updates=t._data=null)}function Os(t,e){t._updates.unshift(e)}function ke(t,e="update"){t._connected&&t._updates.length&&(t._updateCount||(t._updateCount=0,requestAnimationFrame(()=>t._updateCount=0)),t._queued||(t._queued=new Set,Ti.read(()=>{t._connected&&Bs(t,t._queued),t._queued=null})),t._updateCount++<20&&t._queued.add(e.type||e))}function Bs(t,e){for(const{read:i,write:n,events:o=[]}of t._updates){if(!e.has("update")&&!o.some(r=>e.has(r)))continue;let s;i&&(s=i.call(t,t._data,e),s&&ne(s)&&ie(t._data,s)),n&&s!==!1&&Ti.write(()=>{t._connected&&n.call(t,t._data,e)})}}function Ms(t){t._watches=[];for(const e of t.$options.watch||[])for(const[i,n]of Object.entries(e))Jn(t,n,i);t._initial=!0}function Jn(t,e,i){t._watches.push({name:i,...ne(e)?e:{handler:e}})}function Ds(t,e){for(const{name:i,handler:n,immediate:o=!0}of t._watches)(t._initial&&o||st(e,i)&&!un(e[i],t[i]))&&n.call(t,t[i],e[i]);t._initial=!1}function As(t){const{computed:e}=t.$options;if(t._computed={},e)for(const i in e)Zn(t,i,e[i])}const Kn={subtree:!0,childList:!0};function Zn(t,e,i){t._hasComputed=!0,Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:n,$props:o,$el:s}=t;if(!st(n,e)&&(n[e]=(i.get||i).call(t,o,s),i.observe&&t._computedObserver)){const r=i.observe.call(t,o);t._computedObserver.observe(["~","+","-"].includes(r[0])?s.parentElement:s.getRootNode(),Kn)}return n[e]},set(n){const{_computed:o}=t;o[e]=i.set?i.set.call(t,n):n,R(o[e])&&delete o[e]}})}function Ns(t){t._hasComputed&&(Os(t,{read:()=>Ds(t,Qn(t)),events:["resize","computed"]}),t._computedObserver=Bi(t.$el,()=>ke(t,"computed"),Kn),t._disconnect.push(()=>{t._computedObserver.disconnect(),t._computedObserver=null,Qn(t)}))}function Qn(t){const e={...t._computed};return t._computed={},e}function Is(t){for(const e of t.$options.events||[])if(st(e,"handler"))to(t,e);else for(const i in e)to(t,{name:i,handler:e[i]})}function to(t,{name:e,el:i,handler:n,capture:o,passive:s,delegate:r,filter:a,self:l}){a&&!a.call(t,t)||t._disconnect.push(w(i?i.call(t,t):t.$el,e,r==null?void 0:r.call(t,t),n.bind(t),{passive:s,capture:o,self:l}))}function Fs(t){for(const e of t.$options.observe||[])zs(t,e)}function zs(t,e){let{observe:i,target:n=t.$el,handler:o,options:s,filter:r,args:a}=e;if(r&&!r.call(t,t))return;const l=`_observe${t._disconnect.length}`;j(n)&&!st(t,l)&&Zn(t,l,()=>{const f=n.call(t,t);return L(f)?g(f):f}),o=P(o)?t[o]:o.bind(t),j(s)&&(s=s.call(t,t));const h=st(t,l)?t[l]:n,u=i(h,o,s,a);j(n)&&L(t[l])&&Jn(t,{handler:Hs(u,s),immediate:!1},l),t._disconnect.push(()=>u.disconnect())}function Hs(t,e){return(i,n)=>{for(const o of n)d(i,o)||(t.unobserve?t.unobserve(o):t.observe&&t.disconnect());for(const o of i)(!d(n,o)||!t.unobserve)&&t.observe(o,e)}}const z={};z.events=z.watch=z.observe=z.created=z.beforeConnect=z.connected=z.beforeDisconnect=z.disconnected=z.destroy=qi,z.args=function(t,e){return e!==!1&&qi(e||t)},z.update=function(t,e){return fn(qi(t,j(e)?{read:e}:e),"order")},z.props=function(t,e){if(L(e)){const i={};for(const n of e)i[n]=String;e=i}return z.methods(t,e)},z.computed=z.methods=function(t,e){return e?t?{...t,...e}:e:t},z.i18n=z.data=function(t,e,i){return i?eo(t,e,i):e?t?function(n){return eo(t,e,n)}:e:t};function eo(t,e,i){return z.computed(j(t)?t.call(i,i):t,j(e)?e.call(i,i):e)}function qi(t,e){return t=t&&!L(t)?[t]:t,e?t?t.concat(e):L(e)?e:[e]:t}function Ls(t,e){return R(e)?t:e}function Se(t,e,i){const n={};if(j(e)&&(e=e.options),e.extends&&(t=Se(t,e.extends,i)),e.mixins)for(const s of e.mixins)t=Se(t,s,i);for(const s in t)o(s);for(const s in e)st(t,s)||o(s);function o(s){n[s]=(z[s]||Ls)(t[s],e[s],i)}return n}function Wi(t,e=[]){try{return t?rt(t,"{")?JSON.parse(t):e.length&&!d(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[o,s]=n.split(/:(.*)/);return o&&!R(s)&&(i[o.trim()]=s.trim()),i},{}):{}}catch{return{}}}function ji(t,e){return t===Boolean?ai(e):t===Number?ae(e):t==="list"?Ws(e):t===Object&&P(e)?Wi(e):t?t(e):e}const qs=/,(?![^(]*\))/;function Ws(t){return L(t)?t:P(t)?t.split(qs).map(e=>mt(e)?ae(e):ai(e.trim())):[t]}function js(t){const{$options:e,$props:i}=t,n=io(e);ie(i,n);const{computed:o,methods:s}=e;for(let r in i)r in n&&(!o||!st(o,r))&&(!s||!st(s,r))&&(t[r]=i[r])}function io(t){const e={},{args:i=[],props:n={},el:o,id:s}=t;if(!n)return e;for(const a in n){const l=gt(a);let h=Mt(o,l);R(h)||(h=n[a]===Boolean&&h===""?!0:ji(n[a],h),!(l==="target"&&rt(h,"_"))&&(e[a]=h))}const r=Wi(Mt(o,s),i);for(const a in r){const l=te(a);R(n[l])||(e[l]=ji(n[l],r[a]))}return e}const Rs=G((t,e)=>{const i=Object.keys(e),n=i.concat(t).map(o=>[gt(o),`data-${gt(o)}`]).flat();return{attributes:i,filter:n}});function Us(t){const{$options:e,$props:i}=t,{id:n,props:o,el:s}=e;if(!o)return;const{attributes:r,filter:a}=Rs(n,o),l=new MutationObserver(h=>{const u=io(e);h.some(({attributeName:f})=>{const p=f.replace("data-","");return(p===n?r:[te(p),te(f)]).some(D=>!R(u[D])&&u[D]!==i[D])})&&t.$reset()});l.observe(s,{attributes:!0,attributeFilter:a}),t._disconnect.push(()=>l.disconnect())}function Ut(t,e){var i;(i=t.$options[e])==null||i.forEach(n=>n.call(t))}function Ri(t){t._connected||(js(t),Ut(t,"beforeConnect"),t._connected=!0,t._disconnect=[],Is(t),Ps(t),Ms(t),Fs(t),Us(t),Ns(t),Ut(t,"connected"),ke(t))}function Ui(t){t._connected&&(Ut(t,"beforeDisconnect"),t._disconnect.forEach(e=>e()),t._disconnect=null,Ut(t,"disconnected"),t._connected=!1)}let Vs=0;function no(t,e={}){e.data=Xs(e,t.constructor.options),t.$options=Se(t.constructor.options,e,t),t.$props={},t._uid=Vs++,Ys(t),Gs(t),As(t),Ut(t,"created"),e.el&&t.$mount(e.el)}function Ys(t){const{data:e={}}=t.$options;for(const i in e)t.$props[i]=t[i]=e[i]}function Gs(t){const{methods:e}=t.$options;if(e)for(const i in e)t[i]=e[i].bind(t)}function Xs({data:t={}},{args:e=[],props:i={}}){L(t)&&(t=t.slice(0,e.length).reduce((n,o,s)=>(ne(o)?ie(n,o):n[e[s]]=o,n),{}));for(const n in t)R(t[n])?delete t[n]:i[n]&&(t[n]=ji(i[n],t[n]));return t}const Z=function(t){no(this,t)};Z.util=_s,Z.options={},Z.version="3.23.13";const Js="uk-",Ct="__uikit__",Vt={};function oo(t,e){var i,n;const o=Js+gt(t);if(!e)return Vt[o].options||(Vt[o]=Z.extend(Vt[o])),Vt[o];t=te(t),Z[t]=(r,a)=>Ee(t,r,a);const s=(i=e.options)!=null?i:{...e};return s.id=o,s.name=t,(n=s.install)==null||n.call(s,Z,s,t),Z._initialized&&!s.functional&&requestAnimationFrame(()=>Ee(t,`[${o}],[data-${o}]`)),Vt[o]=s}function Ee(t,e,i,...n){const o=oo(t);return o.options.functional?new o({data:ne(e)?e:[e,i,...n]}):e?F(e).map(s)[0]:s();function s(r){const a=Xe(r,t);if(a)if(i)a.$destroy();else return a;return new o({el:r,data:i})}}function Ce(t){return(t==null?void 0:t[Ct])||{}}function Xe(t,e){return Ce(t)[e]}function Ks(t,e){t[Ct]||(t[Ct]={}),t[Ct][e.$options.name]=e}function Zs(t,e){var i;(i=t[Ct])==null||delete i[e.$options.name],ri(t[Ct])&&delete t[Ct]}function Qs(t){wt&&window.MutationObserver&&(document.body?requestAnimationFrame(()=>so(t)):new MutationObserver((e,i)=>{document.body&&(so(t),i.disconnect())}).observe(document.documentElement,{childList:!0}))}function so(t){T(document,"uikit:init",t),document.body&&kt(document.body,ro),new MutationObserver(tr).observe(document,{subtree:!0,childList:!0,attributes:!0}),t._initialized=!0}function tr(t){var e;for(const{addedNodes:i,removedNodes:n,target:o,attributeName:s}of t){for(const a of i)kt(a,ro);for(const a of n)kt(a,er);const r=s&&ao(s);r&&(ut(o,s)?Ee(r,o):(e=Xe(o,r))==null||e.$destroy())}}function ro(t){const e=Ce(t);for(const i in e)Ri(e[i]);for(const i of t.getAttributeNames()){const n=ao(i);n&&Ee(n,t)}}function er(t){const e=Ce(t);for(const i in e)Ui(e[i])}function ao(t){rt(t,"data-")&&(t=t.slice(5));const e=Vt[t];return e&&(e.options||e).name}function ir(t){t.component=oo,t.getComponents=Ce,t.getComponent=Xe,t.update=lo,t.use=function(i){if(!i.installed)return i.call(null,this),i.installed=!0,this},t.mixin=function(i,n){n=(P(n)?this.component(n):n)||this,n.options=Se(n.options,i)},t.extend=function(i){i||(i={});const n=this,o=function(r){no(this,r)};return o.prototype=Object.create(n.prototype),o.prototype.constructor=o,o.options=Se(n.options,i),o.super=n,o.extend=n.extend,o};let e;Object.defineProperty(t,"container",{get(){return e||document.body},set(i){e=$(i)}})}function lo(t,e){t=t?O(t):document.body;for(const i of ge(t).reverse())co(i,e);kt(t,i=>co(i,e))}function co(t,e){const i=Ce(t);for(const n in i)ke(i[n],e)}function nr(t){t.prototype.$mount=function(e){const i=this;Ks(e,i),i.$options.el=e,e.isConnected&&Ri(i)},t.prototype.$destroy=function(e=!1){const i=this,{el:n}=i.$options;n&&Ui(i),Ut(i,"destroy"),Zs(n,i),e&&yt(i.$el)},t.prototype.$create=Ee,t.prototype.$emit=function(e){ke(this,e)},t.prototype.$update=function(e=this.$el,i){lo(e,i)},t.prototype.$reset=function(){Ui(this),Ri(this)},t.prototype.$getComponent=Xe,Object.defineProperties(t.prototype,{$el:{get(){return this.$options.el}},$container:Object.getOwnPropertyDescriptor(t,"container")})}let or=1;function Je(t,e=null){return(e==null?void 0:e.id)||`${t.$options.id}-${or++}`}ir(Z),nr(Z);function pt(t){return Te(xe,t,"resize")}function Yt(t){return Te(Dn,t)}function Ke(t){return Te(Bi,t)}function Vi(t={}){return Yt({handler:function(e,i){const{targets:n=this.$el,preload:o=5}=t;for(const s of g(j(n)?n(this):n))F('[loading="lazy"]',s).slice(0,o-1).forEach(r=>ue(r,"loading"));for(const s of e.filter(({isIntersecting:r})=>r).map(({target:r})=>r))i.unobserve(s)},...t})}function ho(t){return Te((e,i)=>Oi(i),t,"resize")}function Yi(t){return Te((e,i)=>({disconnect:w(rr(e),"scroll",i,{passive:!0})}),t,"scroll")}function uo(t){return{observe(e,i){return{observe:tt,unobserve:tt,disconnect:w(e,Nt,i,{passive:!0})}},handler(e){if(!ft(e))return;const i=Lt(e),n="tagName"in e.target?e.target:B(e.target);M(document,`${It} ${Ae} scroll`,o=>{const{x:s,y:r}=Lt(o);(o.type!=="scroll"&&n&&s&&Math.abs(i.x-s)>100||r&&Math.abs(i.y-r)>100)&&setTimeout(()=>{T(n,"swipe"),T(n,`swipe${sr(i.x,i.y,s,r)}`)})})},...t}}function Te(t,e,i){return{observe:t,handler(){ke(this,i)},...e}}function sr(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function rr(t){return g(t).map(e=>{const{ownerDocument:i}=e,n=Et(e,!0);return n===i.scrollingElement?i:n})}var it={connected(){S(this.$el,this.$options.id)}};function Gt(t){t.target.closest('a[href="#"],a[href=""]')&&t.preventDefault()}var ar={props:{pos:String,offset:Boolean,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:`bottom-${$t?"right":"left"}`,offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=d(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let n=[this.getPositionOffset(t),this.getShiftOffset(t)];const o=[this.flip&&"flip",this.shift&&"shift"],s={element:[this.inset?this.dir:_n(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const l in s)s[l].reverse();n.reverse(),o.reverse()}const r=Ze(t),a=_(t);c(t,{top:-a.height,left:-a.width}),Wn(t,e,{attach:s,offset:n,boundary:i,placement:o,viewportOffset:this.getViewportOffset(t)}),r()},getPositionOffset(t=this.$el){return J(this.offset===!1?c(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(d(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t=this.$el){return this.align==="center"?0:J(c(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(d(["left","top"],this.align)?1:-1)},getViewportOffset(t){return J(c(t,"--uk-position-viewport-offset"))}}};function Ze(t){const e=Et(t),{scrollTop:i}=e;return()=>{i!==e.scrollTop&&(e.scrollTop=i)}}var Xt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglable-enter",clsLeave:"uk-togglable-leave"},computed:{hasAnimation:({animation:t})=>!!t[0],hasTransition:({animation:t})=>["slide","reveal"].some(e=>rt(t[0],e))},methods:{async toggleElement(t,e,i){try{return await Promise.all(g(t).map(n=>{const o=Bt(e)?e:!this.isToggled(n);if(!T(n,`before${o?"show":"hide"}`,[this]))return Promise.reject();const s=(j(i)?i:i===!1||!this.hasAnimation?lr:this.hasTransition?cr:hr)(n,o,this),r=o?this.clsEnter:this.clsLeave;S(n,r),T(n,o?"show":"hide",[this]);const a=()=>{var l;if(N(n,r),T(n,o?"shown":"hidden",[this]),o){const h=Ze(n);(l=F("[autofocus]",n).find(q))==null||l.focus(),h()}};return s?s.then(a,()=>(N(n,r),Promise.reject())):a()})),!0}catch{return!1}},isToggled(t=this.$el){return t=O(t),m(t,this.clsEnter)?!0:m(t,this.clsLeave)?!1:this.cls?m(t,this.cls.split(" ")[0]):q(t)},_toggle(t,e){if(!t)return;e=!!e;let i;this.cls?(i=d(this.cls," ")||e!==m(t,this.cls),i&&U(t,this.cls,d(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),i&&T(t,"toggled",[e,this])}}};function lr(t,e,{_toggle:i}){return dt.cancel(t),X.cancel(t),i(t,e)}async function cr(t,e,{animation:i,duration:n,velocity:o,transition:s,_toggle:r}){var a;const[l="reveal",h="top"]=((a=i[0])==null?void 0:a.split("-"))||[],u=[["left","right"],["top","bottom"]],f=u[d(u[0],h)?0:1],p=f[1]===h,x=["width","height"][u.indexOf(f)],y=`margin-${f[0]}`,k=`margin-${h}`;let nt=_(t)[x];const Jt=X.inProgress(t);await X.cancel(t),e&&r(t,!0);const Kt=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",y,k].map(Wo=>[Wo,t.style[Wo]])),ot=_(t),hn=b(c(t,y)),Ho=b(c(t,k)),Pt=ot[x]+Ho;!Jt&&!e&&(nt+=Ho);const[ni]=Ci(t,"<div>");c(ni,{boxSizing:"border-box",height:ot.height,width:ot.width,...c(t,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",k])}),c(t,{padding:0,border:0,minWidth:0,minHeight:0,[k]:0,width:ot.width,height:ot.height,overflow:"hidden",[x]:nt});const Lo=nt/Pt;n=(o*Pt+n)*(e?1-Lo:Lo);const qo={[x]:e?Pt:0};p&&(c(t,y,Pt-nt+hn),qo[y]=e?hn:Pt+hn),!p^l==="reveal"&&(c(ni,y,-Pt+nt),X.start(ni,{[y]:e?0:-Pt},n,s));try{await X.start(t,qo,n,s)}finally{c(t,Kt),we(ni.firstChild),e||r(t,!1)}}function hr(t,e,i){const{animation:n,duration:o,_toggle:s}=i;return e?(s(t,!0),dt.in(t,n[0],o,i.origin)):dt.out(t,n[1]||n[0],o,i.origin).then(()=>s(t,!1))}const A={TAB:9,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};var fo={mixins:[it,Xt],props:{animation:Boolean,targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:!0,collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:({targets:t},e)=>F(t,e),toggles({toggle:t}){return this.items.map(e=>$(t,e))},contents({content:t}){return this.items.map(e=>{var i;return((i=e._wrapper)==null?void 0:i.firstElementChild)||$(t,e)})}},watch:{items(t,e){if(e||m(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},toggles(){this.$emit()},contents(t){for(const e of t){const i=m(this.items.find(n=>n.contains(e)),this.clsOpen);Qe(e,!i)}this.$emit()}},observe:Vi(),events:[{name:"click keydown",delegate:({targets:t,$props:e})=>`${t} ${e.toggle}`,async handler(t){var e;t.type==="keydown"&&t.keyCode!==A.SPACE||(Gt(t),(e=this._off)==null||e.call(this),this._off=fr(t.target),await this.toggle(zt(this.toggles,t.current)),this._off())}},{name:"shown hidden",self:!0,delegate:({targets:t})=>t,handler(){this.$emit()}}],update(){const t=pe(this.items,`.${this.clsOpen}`);for(const e in this.items){const i=this.toggles[e],n=this.contents[e];if(!i||!n)continue;i.id=Je(this,i),n.id=Je(this,n);const o=d(t,this.items[e]);C(i,{role:I(i,"a")?"button":null,"aria-controls":n.id,"aria-expanded":o,"aria-disabled":!this.collapsible&&t.length<2&&o}),C(n,{role:"region","aria-labelledby":i.id}),I(n,"ul")&&C(et(n),"role","presentation")}},methods:{toggle(t,e){t=this.items[ht(t,this.items)];let i=[t];const n=pe(this.items,`.${this.clsOpen}`);if(!this.multiple&&!d(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&d(n,t)))return Promise.all(i.map(o=>this.toggleElement(o,!d(n,o),(s,r)=>{if(U(s,this.clsOpen,r),e===!1||!this.animation){Qe($(this.content,s),!r);return}return ur(s,r,this)})))}}};function Qe(t,e){t&&(t.hidden=e)}async function ur(t,e,{content:i,duration:n,velocity:o,transition:s}){var r;i=((r=t._wrapper)==null?void 0:r.firstElementChild)||$(i,t),t._wrapper||(t._wrapper=je(i,"<div>"));const a=t._wrapper;c(a,"overflow","hidden");const l=b(c(a,"height"));await X.cancel(a),Qe(i,!1);const h=he(["marginTop","marginBottom"],f=>c(i,f))+_(i).height,u=l/h;n=(o*h+n)*(e?1-u:u),c(a,"height",l),await X.start(a,{height:e?h:0},n,s),we(i),delete t._wrapper,e||Qe(i,!0)}function fr(t){const e=Et(t,!0);let i;return(function n(){i=requestAnimationFrame(()=>{const{top:o}=_(t);o<0&&(e.scrollTop+=o),n()})})(),()=>requestAnimationFrame(()=>cancelAnimationFrame(i))}var dr={mixins:[it,Xt],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate:({selClose:t})=>t,handler(t){Gt(t),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,pr),this.$destroy(!0)}}};function pr(t,e,{duration:i,transition:n,velocity:o}){const s=b(c(t,"height"));return c(t,"height",s),X.start(t,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},o*s+i,n)}var po={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},beforeConnect(){this.autoplay==="inview"&&!ut(this.$el,"preload")&&(this.$el.preload="none"),I(this.$el,"iframe")&&!ut(this.$el,"allow")&&(this.$el.allow="autoplay"),this.autoplay==="hover"&&(I(this.$el,"video")?this.$el.tabIndex=0:this.autoplay=!0),this.automute&&Nn(this.$el)},events:[{name:`${Ft} focusin`,filter:({autoplay:t})=>d(t,"hover"),handler(t){!ft(t)||!gr(this.$el)?Mi(this.$el):Ye(this.$el)}},{name:`${fe} focusout`,filter:({autoplay:t})=>d(t,"hover"),handler(t){ft(t)||Ye(this.$el)}}],observe:[Yt({filter:({autoplay:t})=>t!=="hover",handler([{isIntersecting:t}]){document.fullscreenElement||(t?this.autoplay&&Mi(this.$el):Ye(this.$el))},args:{intersecting:!1},options:({$el:t,autoplay:e})=>({root:e==="inview"?null:B(t).closest(":not(a)")})})]};function gr(t){return!t.paused&&!t.ended}var mr={mixins:[po],props:{width:Number,height:Number},data:{automute:!0},created(){this.useObjectFit=I(this.$el,"img","video")},observe:pt({target:({$el:t})=>go(t)||B(t),filter:({useObjectFit:t})=>!t}),update:{read(){if(this.useObjectFit)return!1;const{$el:t,width:e=t.clientWidth,height:i=t.clientHeight}=this,n=go(t)||B(t),o=pn.cover({width:e,height:i},{width:n.offsetWidth,height:n.offsetHeight});return o.width&&o.height?o:!1},write({height:t,width:e}){c(this.$el,{height:t,width:e})},events:["resize"]}};function go(t){for(;t=B(t);)if(c(t,"position")!=="static")return t}var Gi={props:{container:Boolean},data:{container:!0},computed:{container({container:t}){return t===!0&&this.$container||t&&$(t)}}};let Xi;function mo(t){const e=w(t,"touchstart",o=>{if(o.targetTouches.length!==1||E(o.target,'input[type="range"'))return;let s=Lt(o).y;const r=w(t,"touchmove",a=>{const l=Lt(a).y;l!==s&&(s=l,jt(a.target).some(h=>{if(!t.contains(h))return!1;let{scrollHeight:u,clientHeight:f}=h;return f<u})||a.preventDefault())},{passive:!1});M(t,"scroll touchend touchcanel",r,{capture:!0})},{passive:!0});if(Xi)return e;Xi=!0;const{scrollingElement:i}=document,n={overflowY:CSS.supports("overflow","clip")?"clip":"hidden",touchAction:"none",paddingRight:Re(window)-i.clientWidth||""};return c(i,n),()=>{Xi=!1,e(),$i(i,n)}}let H;var vo={mixins:[Gi,ar,Xt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryX:Boolean,boundaryY:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,autoUpdate:Boolean,clsDrop:String,animateOut:Boolean,bgScroll:Boolean,closeOnScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,boundaryX:!1,boundaryY:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,autoUpdate:!0,clsDrop:!1,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1,closeOnScroll:!1,selClose:".uk-drop-close"},computed:{boundary({boundary:t,boundaryX:e,boundaryY:i},n){return[V(e||t,n)||window,V(i||t,n)||window]},target({target:t,targetX:e,targetY:i},n){return e||(e=t||this.targetEl),i||(i=t||this.targetEl),[e===!0?window:V(e,n),i===!0?window:V(i,n)]}},created(){this.tracker=new Mn},beforeConnect(){this.clsDrop=this.$props.clsDrop||this.$options.id},connected(){S(this.$el,"uk-drop",this.clsDrop),this.toggle&&!this.targetEl&&(this.targetEl=br(this)),C(this.targetEl,"aria-expanded",!1),this._style=ci(this.$el.style,["width","height"])},disconnected(){this.isActive()&&(this.hide(!1),H=null),c(this.$el,this._style)},events:[{name:"click",delegate:({selClose:t})=>t,handler(t){Gt(t),this.hide(!1)}},{name:"click",delegate:()=>'a[href*="#"]',handler({defaultPrevented:t,current:e}){const{hash:i}=e;!t&&i&&Ht(e)&&!this.$el.contains($(i))&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),E(this.$el,":focus,:hover")||this.hide()}},{name:`${Ft} focusin`,filter:({mode:t})=>d(t,"hover"),handler(t){ft(t)||this.clearTimers()}},{name:`${fe} focusout`,filter:({mode:t})=>d(t,"hover"),handler(t){!ft(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){e&&(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){H=this,this.tracker.init(),C(this.targetEl,"aria-expanded",!0);const t=[wr(this),$r(this),xr(this),this.autoUpdate&&bo(this),this.closeOnScroll&&yr(this)];M(this.$el,"hide",()=>t.forEach(e=>e&&e()),{self:!0}),this.bgScroll||M(this.$el,"hidden",mo(this.$el),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler({target:t}){if(this.$el!==t){H=H===null&&this.$el.contains(t)&&this.isToggled()?this:H;return}H=this.isActive()?null:H,this.tracker.cancel(),C(this.targetEl,"aria-expanded",!1)}}],update:{write(){this.isToggled()&&!m(this.$el,this.clsEnter)&&this.position()}},methods:{show(t=this.targetEl,e=!0){if(this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(H){if(e&&H.isDelaying()){this.showTimer=setTimeout(()=>E(t,":hover")&&this.show(),10);return}let i;for(;H&&i!==H&&!H.$el.contains(this.$el);)i=H,H.hide(!1,!1);e=!1}this.container&&B(this.$el)!==this.container&&Q(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t=!0,e=!0){const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelayedHide=t,t&&this.isDelaying()?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null},isActive(){return H===this},isDelaying(){return[this.$el,...F(".uk-drop",this.$el)].some(t=>this.tracker.movesTo(t))},position(){const t=Ze(this.$el);N(this.$el,"uk-drop-stack"),c(this.$el,this._style),this.$el.hidden=!0;const e=this.target.map(s=>vr(this.$el,s)),i=this.getViewportOffset(this.$el),n=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[s,[r,a]]of n)this.axis!==r&&d([r,!0],this.stretch)&&c(this.$el,{[a]:Math.min(v(this.boundary[s])[a],e[s][a]-2*i),[`overflow-${r}`]:"auto"});const o=e[0].width-2*i;this.$el.hidden=!1,c(this.$el,"maxWidth",""),this.$el.offsetWidth>o&&S(this.$el,"uk-drop-stack"),c(this.$el,"maxWidth",o),this.positionAt(this.$el,this.target,this.boundary);for(const[s,[r,a,l,h]]of n)if(this.axis===r&&d([r,!0],this.stretch)){const u=Math.abs(this.getPositionOffset()),f=v(this.target[s]),p=v(this.$el);c(this.$el,{[a]:(f[l]>p[l]?f[this.inset?h:l]-Math.max(v(this.boundary[s])[l],e[s][l]+i):Math.min(v(this.boundary[s])[h],e[s][h]-i)-f[this.inset?l:h])-u,[`overflow-${r}`]:"auto"}),this.positionAt(this.$el,this.target,this.boundary)}t()}}};function vr(t,e){return K(Rt(e).find(i=>i.contains(t)))}function br(t){const{$el:e}=t.$create("toggle",V(t.toggle,t.$el),{target:t.$el,mode:t.mode});return e.ariaHasPopup=!0,e}function wr(t){const e=()=>t.$emit(),i=[Oi(e),xe(Rt(t.$el).concat(t.target),e)];return()=>i.map(n=>n.disconnect())}function bo(t,e=()=>t.$emit()){return w([document,...Rt(t.$el)],"scroll",e,{passive:!0})}function $r(t){return w(document,"keydown",e=>{e.keyCode===A.ESC&&t.hide(!1)})}function yr(t){return bo(t,()=>t.hide(!1))}function xr(t){return w(document,Nt,({target:e})=>{t.$el.contains(e)||M(document,`${It} ${Ae} scroll`,({defaultPrevented:i,type:n,target:o})=>{var s;!i&&n===It&&e===o&&!((s=t.targetEl)!=null&&s.contains(e))&&t.hide(!1)},!0)})}var wo={mixins:[it,Gi],props:{align:String,clsDrop:String,boundary:Boolean,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number,mode:Boolean,offset:Boolean,stretch:Boolean,delayShow:Boolean,delayHide:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,animation:Boolean,animateOut:Boolean,closeOnScroll:Boolean},data:{align:$t?"right":"left",clsDrop:"uk-dropdown",clsDropbar:"uk-dropnav-dropbar",boundary:!0,dropbar:!1,dropbarAnchor:!1,delayShow:160,duration:200,container:!1,selNavItem:"> li > a, > ul > li > a"},computed:{dropbarAnchor:({dropbarAnchor:t},e)=>V(t,e)||e,dropbar({dropbar:t}){return t?(t=this._dropbar||V(t,this.$el)||$(`+ .${this.clsDropbar}`,this.$el),t||(this._dropbar=$("<div></div>"))):null},dropContainer(t,e){return this.container||e},dropdowns({clsDrop:t},e){var i;const n=F(`.${t}`,e);if(this.dropContainer!==e)for(const o of F(`.${t}`,this.dropContainer)){const s=(i=this.getDropdown(o))==null?void 0:i.targetEl;!d(n,o)&&s&&this.$el.contains(s)&&n.push(o)}return n},items({selNavItem:t},e){return F(t,e)}},watch:{dropbar(t){S(t,"uk-dropbar","uk-dropbar-top",this.clsDropbar,`uk-${this.$options.name}-dropbar`)},dropdowns(){this.initializeDropdowns()}},connected(){this.initializeDropdowns(),kr(this.$el)},disconnected(){yt(this._dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate:({selNavItem:t})=>t,handler({current:t}){const e=this.getActive();e&&d(e.mode,"hover")&&e.targetEl&&!t.contains(e.targetEl)&&!e.isDelaying()&&e.hide(!1)}},{name:"keydown",self:!0,delegate:({selNavItem:t})=>t,handler(t){var e;const{current:i,keyCode:n}=t,o=this.getActive();if(n===A.DOWN)if((o==null?void 0:o.targetEl)===i)t.preventDefault(),(e=$(de,o.$el))==null||e.focus();else{const s=this.dropdowns.find(r=>{var a;return((a=this.getDropdown(r))==null?void 0:a.targetEl)===i});s&&(t.preventDefault(),i.click(),M(s,"show",r=>{var a;return(a=$(de,r.target))==null?void 0:a.focus()}))}$o(t,this.items,o)}},{name:"keydown",el:({dropContainer:t})=>t,delegate:({clsDrop:t})=>`.${t}`,handler(t){var e;const{current:i,keyCode:n,target:o}=t;if(di(o)||!d(this.dropdowns,i))return;const s=this.getActive();let r=-1;if(n===A.HOME?r=0:n===A.END?r="last":n===A.UP?r="previous":n===A.DOWN?r="next":n===A.ESC&&((e=s.targetEl)==null||e.focus()),~r){t.preventDefault();const a=F(de,i);a[ht(r,a,Pe(a,l=>E(l,":focus")))].focus();return}$o(t,this.items,s)}},{name:"mouseleave",el:({dropbar:t})=>t,filter:({dropbar:t})=>t,handler(){const t=this.getActive();t&&d(t.mode,"hover")&&!this.dropdowns.some(e=>E(e,":hover"))&&t.hide()}},{name:"beforeshow",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){this.isDropbarDrop(t)&&(this.dropbar.previousElementSibling!==this.dropbarAnchor&&qe(this.dropbarAnchor,this.dropbar),S(t,`${this.clsDrop}-dropbar`))}},{name:"show",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){if(!this.isDropbarDrop(t))return;const e=this.getDropdown(t),i=()=>{const n=Math.max(...ge(t,`.${this.clsDrop}`).concat(t).map(o=>v(o).bottom));v(this.dropbar,{left:v(this.dropbar).left,top:this.getDropbarOffset(e.getPositionOffset())}),this.transitionTo(n-v(this.dropbar).top+b(c(t,"marginBottom")),t)};this._observer=xe([e.$el,...e.target],i),i()}},{name:"beforehide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler(t){const e=this.getActive();E(this.dropbar,":hover")&&e.$el===t.target&&this.isDropbarDrop(e.$el)&&d(e.mode,"hover")&&e.isDelayedHide&&!this.items.some(i=>e.targetEl!==i&&E(i,":focus"))&&t.preventDefault()}},{name:"hide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){var e;if(!this.isDropbarDrop(t))return;(e=this._observer)==null||e.disconnect();const i=this.getActive();(!i||i.$el===t)&&this.transitionTo(0)}}],methods:{getActive(){var t;return d(this.dropdowns,(t=H)==null?void 0:t.$el)&&H},async transitionTo(t,e){const{dropbar:i}=this,n=lt(i);if(e=n<t&&e,await X.cancel([e,i]),e){const o=v(e).top-v(i).top-n;o>0&&c(e,"transitionDelay",`${o/t*this.duration}ms`)}c(e,"clipPath",`polygon(0 0,100% 0,100% ${n}px,0 ${n}px)`),lt(i,n),await Promise.all([X.start(i,{height:t},this.duration),X.start(e,{clipPath:`polygon(0 0,100% 0,100% ${t}px,0 ${t}px)`},this.duration).finally(()=>c(e,{clipPath:"",transitionDelay:""}))]).catch(tt)},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return d(this.dropdowns,t)&&m(t,this.clsDrop)},getDropbarOffset(t){const{$el:e,target:i,targetY:n}=this,{top:o,height:s}=v(V(n||i||e,e));return o+s+t},initializeDropdowns(){this.$create("drop",this.dropdowns.filter(t=>!this.getDropdown(t)),{...this.$props,flip:!1,shift:!0,pos:`bottom-${this.align}`,boundary:this.boundary===!0?this.$el:this.boundary})}}};function $o(t,e,i){var n,o,s;const{current:r,keyCode:a}=t;let l=-1;a===A.HOME?l=0:a===A.END?l="last":a===A.LEFT?l="previous":a===A.RIGHT?l="next":a===A.TAB&&((n=i.targetEl)==null||n.focus(),(o=i.hide)==null||o.call(i,!1)),~l&&(t.preventDefault(),(s=i.hide)==null||s.call(i,!1),e[ht(l,e,e.indexOf(i.targetEl||r))].focus())}function kr(t){const e=()=>i.forEach(n=>n()),i=[M(t.ownerDocument,gn,n=>t.contains(n.target)||e()),w(t,`mouseenter ${Ft}`,n=>n.stopPropagation(),{capture:!0}),w(t,`mouseleave ${fe}`,e,{capture:!0})]}var Sr={mixins:[it],args:"target",props:{target:Boolean},data:{target:!1},computed:{input:(t,e)=>$(Ne,e),state(){return this.input.nextElementSibling},target({target:t},e){return t&&(t===!0&&B(this.input)===e&&this.input.nextElementSibling||$(t,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let n;const o=di(e)?"value":"textContent",s=e[o],r=(t=i.files)!=null&&t[0]?i.files[0].name:E(i,"select")&&(n=F("option",i).filter(a=>a.selected)[0])?n.textContent:i.value;s!==r&&(e[o]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el:({$el:t})=>t.closest("form"),handler(){this.$emit()}}]},yo={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},observe:[Ke({options:{childList:!0}}),Ke({options:{attributes:!0,attributeFilter:["style"]}}),pt({handler(t){for(const{borderBoxSize:[{inlineSize:e,blockSize:i}]}of t)if(e||i){this.$emit("resize");return}},target:({$el:t})=>[t,...et(t)]})],update:{read(){return{rows:xo(et(this.$el))}},write({rows:t}){for(const e of t)for(const i of e)U(i,this.margin,t[0]!==e),U(i,this.firstColumn,e[$t?e.length-1:0]===i)},events:["resize"]}};function xo(t){const e=[[]],i=t.some((n,o)=>o&&t[o-1].offsetParent!==n.offsetParent);for(const n of t){if(!q(n))continue;const o=Ji(n,i);for(let s=e.length-1;s>=0;s--){const r=e[s];if(!r[0]){r.push(n);break}const a=Ji(r[0],i);if(o.top>=a.bottom-1&&o.top!==a.top){e.push([n]);break}if(o.bottom-1>a.top||o.top===a.top){let l=r.length-1;for(;l>=0;l--){const h=Ji(r[l],i);if(o.left>=h.left)break}r.splice(l+1,0,n);break}if(s===0){e.unshift([n]);break}}}return e}function Ji(t,e=!1){let{offsetTop:i,offsetLeft:n,offsetHeight:o,offsetWidth:s}=t;return e&&([i,n]=$e(t)),{top:i,left:n,bottom:i+o,right:n+s}}var Er={extends:yo,mixins:[it],name:"grid",props:{masonry:Boolean,parallax:String,parallaxStart:String,parallaxEnd:String,parallaxJustify:Boolean},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0,parallaxStart:0,parallaxEnd:0,parallaxJustify:!1},connected(){this.masonry&&S(this.$el,"uk-flex-top","uk-flex-wrap-top")},observe:Yi({filter:({parallax:t,parallaxJustify:e})=>t||e}),update:[{write({rows:t}){U(this.$el,this.clsStack,!t.some(e=>e.length>1))},events:["resize"]},{read(t){const{rows:e}=t;let{masonry:i,parallax:n,parallaxJustify:o,margin:s}=this;if(n=Math.max(0,J(n)),!(i||n||o)||ko(e)||e[0].some((x,y)=>e.some(k=>k[y]&&k[y].offsetWidth!==x.offsetWidth)))return t.translates=t.scrollColumns=!1;let r=Tr(e,s),a,l;i?[a,l]=Cr(e,r,i==="next"):a=_r(e);const h=a.map(x=>he(x,"offsetHeight")+r*(x.length-1)),u=Math.max(0,...h);let f,p,D;return(n||o)&&(f=h.map((x,y)=>o?u-x+n:n/(y%2||8)),o||(n=Math.max(...h.map((x,y)=>x+f[y]-u))),p=J(this.parallaxStart,"height",this.$el,!0),D=J(this.parallaxEnd,"height",this.$el,!0)),{columns:a,translates:l,scrollColumns:f,parallaxStart:p,parallaxEnd:D,padding:n,height:l?u:""}},write({height:t,padding:e}){c(this.$el,"paddingBottom",e||""),t!==!1&&c(this.$el,"height",t)},events:["resize"]},{read({rows:t,scrollColumns:e,parallaxStart:i,parallaxEnd:n}){return{scrolled:e&&!ko(t)?Ln(this.$el,i,n):!1}},write({columns:t,scrolled:e,scrollColumns:i,translates:n}){!e&&!n||t.forEach((o,s)=>o.forEach((r,a)=>{let[l,h]=n&&n[s][a]||[0,0];e&&(h+=e*i[s]),c(r,"transform",`translate(${l}px, ${h}px)`)}))},events:["scroll","resize"]}]};function ko(t){return t.flat().some(e=>c(e,"position")==="absolute")}function Cr(t,e,i){const n=[],o=[],s=Array(t[0].length).fill(0);let r=0;for(let a of t){$t&&a.reverse();let l=0;for(const h in a){const{offsetWidth:u,offsetHeight:f}=a[h],p=i?h:s.indexOf(Math.min(...s));Ki(n,p,a[h]),Ki(o,p,[(p-h)*u*($t?-1:1),s[p]-r]),s[p]+=f+e,l=Math.max(l,f)}r+=l+e}return[n,o]}function Tr(t,e){const i=t.flat().find(n=>m(n,e));return b(i?c(i,"marginTop"):c(t[0][0],"paddingLeft"))}function _r(t){const e=[];for(const i of t)for(const n in i)Ki(e,n,i[n]);return e}function Ki(t,e,i){t[e]||(t[e]=[]),t[e].push(i)}var Pr={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:({target:t},e)=>F(t,e)},observe:pt({target:({$el:t,elements:e})=>e.reduce((i,n)=>i.concat(n,...n.children),[t])}),events:{name:"loadingdone",el:()=>document.fonts,handler(){this.$emit("resize")}},update:{read(){return{rows:(this.row?xo(this.elements):[this.elements]).map(Or)}},write({rows:t}){for(const{heights:e,elements:i}of t)i.forEach((n,o)=>c(n,"minHeight",e[o]))},events:["resize"]}};function Or(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(Br);const i=Math.max(...e);return{heights:t.map((n,o)=>e[o].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function Br(t){const e=ci(t.style,["display","minHeight"]);q(t)||c(t,"display","block","important"),c(t,"minHeight","");const i=_(t).height-qt(t,"height","content-box");return c(t,e),i}var Mr={args:"target",props:{target:String},data:{target:""},computed:{target:{get:({target:t},e)=>V(t,e),observe:({target:t})=>t}},observe:pt({target:({target:t})=>t}),update:{read(){return this.target?{height:this.target.offsetHeight}:!1},write({height:t}){c(this.$el,"minHeight",t)},events:["resize"]}},Dr={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,min:Number,property:String},data:{expand:!1,offsetTop:!1,offsetBottom:!1,min:0,property:"min-height"},observe:[ho({filter:({expand:t})=>t}),pt({target:({$el:t})=>jt(t)})],update:{read(){if(!q(this.$el))return!1;let t="";const e=qt(this.$el,"height","content-box"),{body:i,scrollingElement:n}=document,o=Et(this.$el),{height:s}=K(o===i?n:o),r=n===o||i===o;if(t=`calc(${r?"100vh":`${s}px`}`,this.expand){const a=_(o).height-_(this.$el).height;t+=` - ${a}px`}else{if(this.offsetTop)if(r){const a=this.offsetTop===!0?this.$el:V(this.offsetTop,this.$el),{top:l}=v(a);t+=l>0&&l<s/2?` - ${l}px`:""}else t+=` - ${qt(o,"height",c(o,"boxSizing"))}px`;this.offsetBottom===!0?t+=` - ${_(this.$el.nextElementSibling).height}px`:mt(this.offsetBottom)?t+=` - ${this.offsetBottom}vh`:this.offsetBottom&&ee(this.offsetBottom,"px")?t+=` - ${b(this.offsetBottom)}px`:P(this.offsetBottom)&&(t+=` - ${_(V(this.offsetBottom,this.$el)).height}px`)}return t+=`${e?` - ${e}px`:""})`,{minHeight:t}},write({minHeight:t}){c(this.$el,this.property,`max(${this.min||0}px, ${t})`)},events:["resize"]}},Ar='<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',Nr='<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',Ir='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Fr='<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="11" x="9" y="4"/><rect width="11" height="1" x="4" y="9"/></svg>',zr='<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',Hr='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Lr='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',qr='<svg width="20" height="20" viewBox="0 0 20 20"><style>.uk-navbar-toggle-icon svg>[class*="line-"]{transition:0.2s ease-in-out;transition-property:transform, opacity;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg>.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{transform:translateY(-6px) scaleX(0)}</style><rect width="20" height="2" y="3" class="line-1"/><rect width="20" height="2" y="9" class="line-2"/><rect width="20" height="2" y="9" class="line-3"/><rect width="20" height="2" y="15" class="line-4"/></svg>',Wr='<svg width="40" height="40" viewBox="0 0 40 40"><rect width="1" height="40" x="19" y="0"/><rect width="40" height="1" x="0" y="19"/></svg>',jr='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',Rr='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',So='<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',Ur='<svg width="40" height="40" viewBox="0 0 40 40"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',Vr='<svg width="24" height="24" viewBox="0 0 24 24"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',Yr='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5"/></svg>',Gr='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1"/></svg>',Xr='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547"/></svg>',Jr='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23"/></svg>',Kr='<svg width="30" height="30" viewBox="0 0 30 30"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',Zr='<svg width="18" height="10" viewBox="0 0 18 10"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9"/></svg>',Eo={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var i,n,o;let s=0;return((o=((i=this.i18n)==null?void 0:i[t])||((n=this.$options.i18n)==null?void 0:n[t]))==null?void 0:o.replace(/%s/g,()=>e[s++]||""))||""}}},Co={args:"src",props:{width:Number,height:Number,ratio:Number},data:{ratio:1},connected(){this.svg=this.getSvg().then(t=>{if(!this._connected)return;const e=Qr(t,this.$el);return this.svgEl&&e!==this.svgEl&&yt(this.svgEl),ta.call(this,e,t),this.svgEl=e},tt)},disconnected(){this.svg.then(t=>{this._connected||(fi(this.$el)&&(this.$el.hidden=!1),yt(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){}}};function Qr(t,e){if(fi(e)||I(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return To(t,n)?n:qe(e,t)}const i=e.lastElementChild;return To(t,i)?i:Q(e,t)}function To(t,e){return I(t,"svg")&&I(e,"svg")&&t.innerHTML===e.innerHTML}function ta(t,e){const i=["width","height"];let n=i.map(s=>this[s]);n.some(s=>s)||(n=i.map(s=>C(e,s)));const o=C(e,"viewBox");o&&!n.some(s=>s)&&(n=o.split(" ").slice(2)),n.forEach((s,r)=>C(t,i[r],b(s)*this.ratio||null))}function _o(t,e){return e&&d(t,"<symbol")&&(t=ia(t)[e]||t),g(xt(t)).filter(re)[0]}const ea=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,ia=G(function(t){const e={};let i;for(;i=ea.exec(t);)e[i[3]]=`<svg ${i[1]}svg>`;return e}),ti={spinner:Kr,totop:Zr,marker:Fr,"close-icon":Ar,"close-large":Nr,"drop-parent-icon":Ir,"nav-parent-icon":Hr,"nav-parent-icon-large":zr,"navbar-parent-icon":Lr,"navbar-toggle-icon":qr,"overlay-icon":Wr,"pagination-next":jr,"pagination-previous":Rr,"search-icon":So,"search-medium":Vr,"search-large":Ur,"search-toggle-icon":So,"slidenav-next":Gr,"slidenav-next-large":Yr,"slidenav-previous":Jr,"slidenav-previous-large":Xr},Zi={install:fa,mixins:[Co],args:"icon",props:{icon:String},isIcon:!0,beforeConnect(){S(this.$el,"uk-icon")},async connected(){const t=await this.svg;t&&(t.ariaHidden=!0)},methods:{async getSvg(){const t=pa(this.icon);if(!t)throw"Icon not found.";return t}}},Tt={args:!1,extends:Zi,data:t=>({icon:gt(t.constructor.options.name)}),beforeConnect(){S(this.$el,this.$options.id)}},na={extends:Tt,beforeConnect(){const t=this.$props.icon;this.icon=this.$el.closest(".uk-nav-primary")?`${t}-large`:t}},oa={extends:Tt,mixins:[Eo],i18n:{toggle:"Open Search",submit:"Submit Search"},beforeConnect(){const t=m(this.$el,"uk-search-toggle")||m(this.$el,"uk-navbar-toggle");if(this.icon=t?"search-toggle-icon":m(this.$el,"uk-search-icon")&&this.$el.closest(".uk-search-large")?"search-large":this.$el.closest(".uk-search-medium")?"search-medium":this.$props.icon,!ut(this.$el,"aria-label"))if(t)this.$el.ariaLabel=this.t("toggle");else{const e=this.$el.closest("a,button");e&&(e.ariaLabel=this.t("submit"))}}},sa={extends:Tt,beforeConnect(){this.$el.role="status"},methods:{async getSvg(){const t=await Zi.methods.getSvg.call(this);return this.ratio!==1&&c($("circle",t),"strokeWidth",1/this.ratio),t}}},_t={extends:Tt,mixins:[Eo],beforeConnect(){const t=this.$el.closest("a,button");C(t,"role",this.role!==null&&I(t,"a")?"button":this.role);const e=this.t("label");e&&!ut(t,"aria-label")&&C(t,"aria-label",e)}},Po={extends:_t,beforeConnect(){S(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=m(this.$el,"uk-slidenav-large")?`${t}-large`:t}},ra={extends:_t,i18n:{label:"Open menu"},beforeConnect(){const t=this.$el.closest("a,button");t&&(t.ariaExpanded=!1)}},aa={extends:_t,i18n:{label:"Close"},beforeConnect(){this.icon=`close-${m(this.$el,"uk-close-large")?"large":"icon"}`}},la={extends:_t,i18n:{label:"Open"}},ca={extends:_t,i18n:{label:"Back to top"}},ha={extends:_t,i18n:{label:"Next page"},data:{role:null}},ua={extends:_t,i18n:{label:"Previous page"},data:{role:null}},ei={};function fa(t){t.icon.add=(e,i)=>{const n=P(e)?{[e]:i}:e;ce(n,(o,s)=>{ti[s]=o,delete ei[s]}),t._initialized&&kt(document.body,o=>ce(t.getComponents(o),s=>{s.$options.isIcon&&s.icon in n&&s.$reset()}))}}const da={twitter:"x"};function pa(t){return t=da[t]||t,ti[t]?(ei[t]||(ei[t]=_o(ti[ga(t)]||ti[t])),ei[t].cloneNode(!0)):null}function ga(t){return $t?li(li(t,"left","right"),"previous","next"):t}var ma={args:"dataSrc",props:{dataSrc:String,sources:String,margin:String,target:String,loading:String},data:{dataSrc:"",sources:!1,margin:"50%",target:!1,loading:"lazy"},connected(){this.loading!=="lazy"?this.load():tn(this.$el)&&(this.$el.loading="lazy",Qi(this.$el))},disconnected(){this.img&&(this.img.onload=""),delete this.img},observe:Yt({handler(t,e){this.load(),e.disconnect()},options:({margin:t})=>({rootMargin:t}),filter:({loading:t})=>t==="lazy",target:({$el:t,$props:e})=>e.target?[t,...me(e.target,t)]:t}),methods:{load(){if(this.img)return this.img;const t=tn(this.$el)?this.$el:ba(this.$el,this.dataSrc,this.sources);return ue(t,"loading"),Qi(this.$el,t.currentSrc),this.img=t}}};function Qi(t,e){if(tn(t)){const i=B(t);(I(i,"picture")?et(i):[t]).forEach(o=>Oo(o,o))}else e&&!d(t.style.backgroundImage,e)&&(c(t,"backgroundImage",`url(${mi(e)})`),T(t,ze("load",!1)))}const va=["data-src","data-srcset","sizes"];function Oo(t,e){for(const i of va){const n=Mt(t,i);n&&C(e,i.replace(/data-/g,""),n)}}function ba(t,e,i){const n=new Image;return wa(n,i),Oo(t,n),n.onload=()=>Qi(t,n.currentSrc),n.src=e,n}function wa(t,e){if(e=$a(e),e.length){const i=xt("<picture>");for(const n of e){const o=xt("<source>");C(o,n),Q(i,o)}Q(i,t)}}function $a(t){if(!t)return[];if(rt(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Wi(t);return L(t)||(t=[t]),t.filter(e=>!ri(e))}function tn(t){return I(t,"img")}var ya={props:{target:String,selActive:String},data:{target:!1,selActive:!1},connected(){this.isIntersecting=0},computed:{target:({target:t},e)=>t?F(t,e):e},watch:{target:{handler(){queueMicrotask(()=>this.$reset())},immediate:!1}},observe:[Yt({handler(t){this.isIntersecting=t.reduce((e,{isIntersecting:i})=>e+(i?1:this.isIntersecting?-1:0),this.isIntersecting),this.$emit()},target:({target:t})=>t,args:{intersecting:!1}}),Ke({target:({target:t})=>t,options:{attributes:!0,attributeFilter:["class"]}}),{target:({target:t})=>t,observe:(t,e)=>{const i=xe([...g(t),document.documentElement],e),n=[w(document,"scroll itemshown itemhidden",e,{passive:!0,capture:!0}),w(document,"show hide transitionstart",o=>(e(),i.observe(o.target))),w(document,"shown hidden transitionend transitioncancel",o=>(e(),i.unobserve(o.target)))];return{observe:i.observe.bind(i),unobserve:i.unobserve.bind(i),disconnect(){i.disconnect(),n.map(o=>o())}}},handler(){this.$emit()}}],update:{read(){if(!this.isIntersecting)return!1;for(const t of g(this.target)){let e=!this.selActive||E(t,this.selActive)?xa(t):"";e!==!1&&De(t,"uk-light uk-dark",e)}}}};function xa(t){const e=_(t),i=_(window);if(!Me(e,i))return!1;const{left:n,top:o,height:s,width:r}=e;let a;for(const l of[.25,.5,.75]){const h=t.ownerDocument.elementsFromPoint(Math.max(0,Math.min(n+r*l,i.width-1)),Math.max(0,Math.min(o+s/2,i.height-1)));for(const u of h){if(t.contains(u)||!ka(u)||u.closest('[class*="-leave"]')&&h.some(p=>u!==p&&E(p,'[class*="-enter"]')))continue;const f=c(u,"--uk-inverse");if(f){if(f===a)return`uk-${f}`;a=f;break}}}return a?`uk-${a}`:""}function ka(t){if(c(t,"visibility")!=="visible")return!1;for(;t;){if(c(t,"opacity")==="0")return!1;t=B(t)}return!0}var en={props:{media:Boolean},data:{media:!1},connected(){const t=Sa(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,T(this.$el,ze("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=w(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function Sa(t,e){if(P(t)){if(rt(t,"@"))t=b(c(e,`--uk-breakpoint-${t.slice(1)}`));else if(isNaN(t))return t}return t&&mt(t)?`(min-width: ${t}px)`:""}var Ea={mixins:[it,en],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill:({fill:t},e)=>t||c(e,"--uk-leader-fill-content")},connected(){[this.wrapper]=Ci(this.$el,`<span class="${this.clsWrapper}">`)},disconnected(){we(this.wrapper.childNodes)},observe:pt(),update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write({width:t,fill:e,hide:i}){U(this.wrapper,this.clsHide,i),C(this.wrapper,this.attrFill,new Array(t).join(e))},events:["resize"]}};const W=[];var Bo={mixins:[it,Gi,Xt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel:({selPanel:t},e)=>$(t,e),transitionElement(){return this.panel}},connected(){const t=this.panel||this.$el;t.role=this.role,this.overlay&&(t.ariaModal=!0)},beforeDisconnect(){d(W,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:({selClose:t})=>`${t},a[href*="#"]`,handler(t){const{current:e,defaultPrevented:i}=t,{hash:n}=e;!i&&n&&Ht(e)&&!this.$el.contains($(n))?this.hide():E(e,this.selClose)&&(Gt(t),this.hide())}},{name:"toggle",self:!0,handler(t,e){t.defaultPrevented||(t.preventDefault(),this.target=e==null?void 0:e.$el,this.isToggled()===d(W,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(d(W,this))return!1;!this.stack&&W.length?(Promise.all(W.map(e=>e.hide())).then(this.show),t.preventDefault()):W.push(this)}},{name:"show",self:!0,handler(){this.stack&&c(this.$el,"zIndex",b(c(this.$el,"zIndex"))+W.length);const t=[this.overlay&&Ta(this),this.overlay&&mo(this.$el),this.bgClose&&_a(this),this.escClose&&Pa(this)];M(this.$el,"hidden",()=>t.forEach(e=>e&&e()),{self:!0}),S(document.documentElement,this.clsPage),Do(this.target,!0)}},{name:"shown",self:!0,handler(){Ie(this.$el)||(this.$el.tabIndex=-1),E(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){d(W,this)&&W.splice(W.indexOf(this),1),c(this.$el,"zIndex","");const{target:t}=this;W.some(e=>e.clsPage===this.clsPage)||(N(document.documentElement,this.clsPage),queueMicrotask(()=>{if(Ie(t)){const e=Ze(t);t.focus(),e()}})),Do(t,!1),this.target=null}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&B(this.$el)!==this.container?(Q(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Mo)},hide(){return this.toggleElement(this.$el,!1,Mo)}}};function Mo(t,e,{transitionElement:i,_toggle:n}){return new Promise((o,s)=>M(t,"show hide",()=>{var r;(r=t._reject)==null||r.call(t),t._reject=s,n(t,e);const a=M(i,"transitionstart",()=>{M(i,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},Ca(c(i,"transitionDuration")))})).then(()=>delete t._reject)}function Ca(t){return t?ee(t,"ms")?b(t):b(t)*1e3:0}function Ta(t){return w(document,"focusin",e=>{le(W)===t&&!t.$el.contains(e.target)&&t.$el.focus()})}function _a(t){return w(document,Nt,({target:e})=>{le(W)!==t||t.overlay&&!t.$el.contains(e)||!t.panel||t.panel.contains(e)||M(document,`${It} ${Ae} scroll`,({defaultPrevented:i,type:n,target:o})=>{!i&&n===It&&e===o&&t.hide()},!0)})}function Pa(t){return w(document,"keydown",e=>{e.keyCode===27&&le(W)===t&&t.hide()})}function Do(t,e){t!=null&&t.ariaExpanded&&(t.ariaExpanded=e)}var Oa={install:Ba,mixins:[Bo],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:'[class*="uk-modal-close"]'},events:[{name:"fullscreenchange webkitendfullscreen",capture:!0,handler(t){I(t.target,"video")&&this.isToggled()&&!document.fullscreenElement&&this.hide()}},{name:"show",self:!0,handler(){m(this.panel,"uk-margin-auto-vertical")?S(this.$el,"uk-flex"):c(this.$el,"display","block"),lt(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),N(this.$el,"uk-flex")}}]};function Ba({modal:t}){t.dialog=function(i,n){const o=t($(`<div><div class="uk-modal-dialog">${i}</div></div>`),{stack:!0,role:"alertdialog",...n});return o.show(),w(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},t.alert=function(i,n){return e(({i18n:o})=>`<div class="uk-modal-body">${P(i)?i:Le(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" type="button" autofocus>${o.ok}</button> </div>`,n)},t.confirm=function(i,n){return e(({i18n:o})=>`<form> <div class="uk-modal-body">${P(i)?i:Le(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${o.cancel}</button> <button class="uk-button uk-button-primary" autofocus>${o.ok}</button> </div> </form>`,n,()=>Promise.reject())},t.prompt=function(i,n,o){const s=e(({i18n:l})=>`<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>${P(i)?i:Le(i)}</label> <input class="uk-input" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${l.cancel}</button> <button class="uk-button uk-button-primary">${l.ok}</button> </div> </form>`,o,()=>null,()=>a.value),{$el:r}=s.dialog,a=$("input",r);return a.value=n||"",w(r,"show",()=>a.select()),s},t.i18n={ok:"Ok",cancel:"Cancel"};function e(i,n,o=tt,s=tt){n={bgClose:!1,escClose:!0,...n,i18n:{...t.i18n,...n==null?void 0:n.i18n}};const r=t.dialog(i(n),n);return ie(new Promise(a=>{const l=w(r.$el,"hide",()=>a(o()));w(r.$el,"submit","form",h=>{h.preventDefault(),a(s(r)),l(),r.hide()})}),{dialog:r})}}var Ma={extends:fo,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const nn="uk-navbar-transparent";var Da={extends:wo,props:{dropbarTransparentMode:Boolean},data:{delayShow:200,clsDrop:"uk-navbar-dropdown",selNavItem:".uk-navbar-nav > li > a,a.uk-navbar-item,button.uk-navbar-item,.uk-navbar-item a,.uk-navbar-item button,.uk-navbar-toggle",dropbarTransparentMode:!1},computed:{navbarContainer:(t,e)=>e.closest(".uk-navbar-container")},watch:{items(){const t=m(this.$el,"uk-navbar-justify"),e=F(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el);for(const i of e){const n=t?F(".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",i).length:"";c(i,"flexGrow",n)}}},events:[{name:"show",el:({dropContainer:t})=>t,handler({target:t}){this.getTransparentMode(t)==="remove"&&m(this.navbarContainer,nn)&&(N(this.navbarContainer,nn),this._transparent=!0)}},{name:"hide",el:({dropContainer:t})=>t,async handler(){await Aa(),this._transparent&&(!H||!this.dropContainer.contains(H.$el))&&(S(this.navbarContainer,nn),this._transparent=null)}}],methods:{getTransparentMode(t){if(!this.navbarContainer)return;if(this.dropbar&&this.isDropbarDrop(t))return this.dropbarTransparentMode;const e=this.getDropdown(t);if(e&&m(t,"uk-dropbar"))return e.inset?"behind":"remove"},getDropbarOffset(t){const{top:e,height:i}=v(this.navbarContainer);return e+(this.dropbarTransparentMode==="behind"?0:i+t)}}};function Aa(){return new Promise(t=>setTimeout(t))}var Na={mixins:[Bo],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean,swiping:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1,swiping:!0},computed:{clsFlip:({flip:t,clsFlip:e})=>t?e:"",clsOverlay:({overlay:t,clsOverlay:e})=>t?e:"",clsMode:({mode:t,clsMode:e})=>`${e}-${t}`,clsSidebarAnimation:({mode:t,clsSidebarAnimation:e})=>t==="none"||t==="reveal"?"":e,clsContainerAnimation:({mode:t,clsContainerAnimation:e})=>t!=="push"&&t!=="reveal"?"":e,transitionElement({mode:t}){return t==="reveal"?B(this.panel):this.panel}},observe:uo({filter:({swiping:t})=>t}),update:{read(){this.isToggled()&&!q(this.$el)&&this.hide()},events:["resize"]},events:[{name:"touchmove",self:!0,passive:!1,filter:({overlay:t})=>t,handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!m(B(this.panel),this.clsMode)&&S(je(this.panel,"<div>"),this.clsMode);const{body:t,scrollingElement:e}=document;S(t,this.clsContainer,this.clsFlip),c(t,"touchAction","pan-y pinch-zoom"),c(this.$el,"display","block"),c(this.panel,"maxWidth",e.clientWidth),S(this.$el,this.clsOverlay),S(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),lt(t),S(t,this.clsContainerAnimation),this.clsContainerAnimation&&Ia()}},{name:"hide",self:!0,handler(){N(document.body,this.clsContainerAnimation),c(document.body,"touchAction","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&Fa(),this.mode==="reveal"&&m(B(this.panel),this.clsMode)&&we(this.panel),N(this.panel,this.clsSidebarAnimation,this.clsMode),N(this.$el,this.clsOverlay),c(this.$el,"display",""),c(this.panel,"maxWidth",""),N(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&ee(t.type,"Left")^this.flip&&this.hide()}}]};function Ia(){Ao().content+=",user-scalable=0"}function Fa(){const t=Ao();t.content=t.content.replace(/,user-scalable=0$/,"")}function Ao(){return $('meta[name="viewport"]',document.head)||Q(document.head,'<meta name="viewport">')}var za={mixins:[it],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container:({selContainer:t},e)=>e.closest(t),content:({selContent:t},e)=>e.closest(t)},observe:pt({target:({container:t,content:e})=>[t,e]}),update:{read(){return!this.content||!this.container||!q(this.$el)?!1:{max:Math.max(this.minHeight,lt(this.container)-(_(this.content).height-lt(this.$el)))}},write({max:t}){c(this.$el,{minHeight:this.minHeight,maxHeight:t})},events:["resize"]}},Ha={props:["width","height"],connected(){S(this.$el,"uk-responsive-width"),c(this.$el,"aspectRatio",`${this.width}/${this.height}`)}},La={props:{offset:Number},data:{offset:0},connected(){qa(this)},disconnected(){Wa(this)},methods:{async scrollTo(t){t=t&&$(t)||document.body,T(this.$el,"beforescroll",[this,t])&&(await Hn(t,{offset:this.offset}),T(this.$el,"scrolled",[this,t]))}}};const _e=new Set;function qa(t){_e.size||w(document,"click",No),_e.add(t)}function Wa(t){_e.delete(t),_e.size||vi(document,"click",No)}function No(t){if(!t.defaultPrevented)for(const e of _e)e.$el.contains(t.target)&&Ht(e.$el)&&(t.preventDefault(),window.location.href!==e.$el.href&&window.history.pushState({},"",e.$el.href),e.scrollTo(Fe(e.$el)))}const on="uk-scrollspy-inview";var ja={args:"cls",props:{cls:String,target:String,hidden:Boolean,margin:String,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,margin:"-1px",repeat:!1,delay:0}),computed:{elements:({target:t},e)=>t?F(t,e):[e]},watch:{elements(t){this.hidden&&c(pe(t,`:not(.${on})`),"opacity",0)}},connected(){this.elementData=new Map},disconnected(){for(const[t,e]of this.elementData.entries())N(t,on,(e==null?void 0:e.cls)||"");delete this.elementData},observe:Yt({target:({elements:t})=>t,handler(t){const e=this.elementData;for(const{target:i,isIntersecting:n}of t){e.has(i)||e.set(i,{cls:Mt(i,"uk-scrollspy-class")||this.cls});const o=e.get(i);!this.repeat&&o.show||(o.show=n)}this.$emit()},options:({margin:t})=>({rootMargin:t}),args:{intersecting:!1}}),update:[{write(t){for(const[e,i]of this.elementData.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(n=>setTimeout(n,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){var i,n;const o=(i=this.elementData)==null?void 0:i.get(t);if(!o)return;(n=o.off)==null||n.call(o),c(t,"opacity",!e&&this.hidden?0:""),U(t,on,e),U(t,o.cls);let s;if(s=o.cls.match(/\buk-animation-[\w-]+/g)){const r=()=>N(t,s);e?o.off=M(t,"animationcancel animationend",r,{self:!0}):r()}T(t,e?"inview":"outview"),o.inview=e}}},Ra={props:{cls:String,closest:Boolean,scroll:Boolean,target:String,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,target:'a[href]:not([role="button"])',offset:0},computed:{links:{get({target:t},e){return F(t,e).filter(Fe)},observe:()=>"*"},targets(){return this.links.map(t=>Fe(t))},elements({closest:t}){return this.links.map(e=>e.closest(t||"*"))}},watch:{links(t){this.scroll&&this.$create("scroll",t,{offset:this.offset})}},observe:[Yt(),Yi()],update:[{read(){const{targets:t}=this,{length:e}=t;if(!e||!q(this.$el))return!1;const i=Et(t,!0),{scrollTop:n,scrollHeight:o}=i,s=K(i),r=o-s.height;let a=!1;if(n>=r)a=e-1;else{const l=this.offset+_(Fi()).height+s.height*.1;for(let h=0;h<t.length&&!(v(t[h]).top-s.top-l>0);h++)a=+h}return{active:a}},write({active:t}){const{elements:e}=this,i=t!==!1&&!m(e[t],this.cls);this.links.forEach(n=>n.blur());for(let n=0;n<e.length;n++)U(e[n],this.cls,+n===t);i&&T(this.$el,"active",[t,e[t]])},events:["scroll","resize"]}]},Ua={mixins:[it,en],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,offsetEnd:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,offsetEnd:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{target:({selTarget:t},e)=>t&&$(t,e)||e},connected(){this.start=Io(this.start||this.top),this.end=Io(this.end||this.bottom),this.placeholder=$("+ .uk-sticky-placeholder",this.$el)||$('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},beforeDisconnect(){this.isFixed&&(this.hide(),N(this.target,this.clsInactive)),rn(this.$el),yt(this.placeholder),this.placeholder=null},observe:[ho(),Yi({target:()=>document.scrollingElement}),pt({target:({$el:t})=>[t,ii(t),document.scrollingElement],handler(t){this.$emit(this._data.resized&&t.some(({target:e})=>e===ii(this.$el))?"update":"resize"),this._data.resized=!0}})],events:[{name:"load hashchange popstate",el:()=>window,filter:({targetOffset:t})=>t!==!1,handler(){const{scrollingElement:t}=document;!location.hash||t.scrollTop===0||setTimeout(()=>{const e=v($(location.hash)),i=v(this.$el);this.isFixed&&Me(e,i)&&(t.scrollTop=Math.ceil(e.top-i.height-J(this.targetOffset,"height",this.placeholder)-J(this.offset,"height",this.placeholder)))})}}],update:[{read({height:t,width:e,margin:i,sticky:n},o){if(this.inactive=!this.matchMedia||!q(this.$el)||!this.$el.offsetHeight,this.inactive)return;const s=lt(window),r=Math.max(0,document.scrollingElement.scrollHeight-s);if(!r){this.inactive=!0;return}const a=this.isFixed&&o.has("update");a&&(ln(this.target),this.hide()),this.active||({height:t,width:e}=_(this.$el),i=c(this.$el,"margin")),a&&this.show();const l=J("100vh","height");let h=this.position;this.overflowFlip&&t>l&&(h=h==="top"?"bottom":"top");const u=this.isFixed?this.placeholder:this.$el;let[f,p]=[this.offset,this.offsetEnd].map(Kt=>J(Kt,"height",n?this.$el:u));h==="bottom"&&(t<s||this.overflowFlip)&&(f+=s-t);const D=t+f+p,x=this.overflowFlip?0:Math.max(0,D-l),y=v(u).top-new DOMMatrix(c(u,"transform")).m42,k=_(this.$el).height,nt=(this.start===!1?y:sn(this.start,this.$el,y))-f,Jt=this.end===!1?r:Math.min(r,sn(this.end,this.$el,y+t,!0)-k-f+x);return n=!this.showOnUp&&nt+f===y&&Jt===Math.min(r,sn(!0,this.$el,0,!0)-k-f+x)&&c(ii(this.$el),"overflowY")!=="hidden",{start:nt,end:Jt,offset:f,overflow:x,height:t,elHeight:k,width:e,margin:i,top:$e(u)[0],sticky:n,viewport:l,maxScrollHeight:r}},write({height:t,width:e,margin:i,offset:n,sticky:o}){if((this.inactive||o||!this.isFixed)&&rn(this.$el),this.inactive)return;o&&(t=e=i=0,c(this.$el,{position:"sticky",top:n}));const{placeholder:s}=this;c(s,{height:t,width:e,margin:i}),(B(s)!==B(this.$el)||o^zt(s)<zt(this.$el))&&((o?Ei:qe)(this.$el,s),s.hidden=!0)},events:["resize"]},{read({scroll:t=0,dir:e="down",overflow:i,overflowScroll:n=0,start:o,end:s,elHeight:r,height:a,sticky:l,maxScrollHeight:h}){const u=Math.min(document.scrollingElement.scrollTop,h),f=t<=u?"down":"up",p=this.isFixed?this.placeholder:this.$el;return{dir:f,prevDir:e,scroll:u,prevScroll:t,below:u>v(p).top+(l?Math.min(a,r):a),offsetParentTop:v(p.offsetParent).top,overflowScroll:at(n+at(u,o,s)-at(t,o,s),0,i)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:o,prevDir:s,scroll:r,prevScroll:a=0,top:l,start:h,below:u}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const f=Date.now();if((f-n>300||o!==s)&&(t.initScroll=r,t.initTimestamp=f),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<h||this.showOnUp&&(r<=h||o==="down"&&i||o==="up"&&!this.isFixed&&!u)){if(!this.isFixed){dt.inProgress(this.$el)&&l>r&&(dt.cancel(this.$el),this.hide());return}if(this.animation&&u){if(m(this.$el,"uk-animation-leave"))return;dt.out(this.$el,this.animation).then(()=>this.hide(),tt)}else this.hide()}else this.isFixed?this.update():this.animation&&u?(this.show(),dt.in(this.$el,this.animation).catch(tt)):(ln(this.target),this.show())},events:["resize","resizeViewport","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){const{offset:t,sticky:e}=this._data;this.setActive(!1),N(this.$el,this.clsFixed,this.clsBelow),e?c(this.$el,"top",t):rn(this.$el),this.placeholder.hidden=!0,this.isFixed=!1},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:o,end:s,offset:r,offsetParentTop:a,sticky:l,below:h}=this._data;const u=o!==0||e>o;if(!l){let f="fixed";e>s&&(r+=s-a+n-i,f="absolute"),c(this.$el,{position:f,width:t,marginTop:0},"important")}c(this.$el,"top",r-n),this.setActive(u),U(this.$el,this.clsBelow,h),S(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(De(this.target,this.clsInactive,this.clsActive),e!==t&&T(this.$el,"active")):(De(this.target,this.clsActive,this.clsInactive),e!==t&&(ln(this.target),T(this.$el,"inactive")))}}};function sn(t,e,i,n){if(!t)return 0;if(mt(t)||P(t)&&t.match(/^-?\d/))return i+J(t,"height",e,!0);{const o=t===!0?ii(e):V(t,e);return v(o).bottom-(n&&(o!=null&&o.contains(e))?b(c(o,"paddingBottom"))+b(c(o,"borderBottomWidth")):0)}}function Io(t){return t==="true"?!0:t==="false"?!1:t}function rn(t){c(t,{position:"",top:"",marginTop:"",width:""})}const an="uk-transition-disable";function ln(t){m(t,an)||(S(t,an),requestAnimationFrame(()=>N(t,an)))}function ii(t){for(;t=B(t);)if(q(t))return t}function Va(t){return q(t)?Math.ceil(Math.max(0,...F("[stroke]",t).map(e=>{var i;return((i=e.getTotalLength)==null?void 0:i.call(e))||0}))):0}var Ya={mixins:[Co],args:"src",props:{src:String,icon:String,attributes:"list",strokeAnimation:Boolean},data:{strokeAnimation:!1},observe:[Ke({async handler(){const t=await this.svg;t&&Fo.call(this,t)},options:{attributes:!0,attributeFilter:["id","class","style"]}})],async connected(){d(this.src,"#")&&([this.src,this.icon]=this.src.split("#",2));const t=await this.svg;t&&(Fo.call(this,t),this.strokeAnimation&&Xa(t))},methods:{async getSvg(){return I(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"&&await new Promise(t=>M(this.$el,"load",t)),_o(await Ga(this.src),this.icon)||Promise.reject("SVG not found.")}}};function Fo(t){const{$el:e}=this;S(t,C(e,"class"),"uk-svg");for(let i=0;i<e.style.length;i++){const n=e.style[i];c(t,n,c(e,n))}for(const i in this.attributes){const[n,o]=this.attributes[i].split(":",2);C(t,n,o)}t.ariaHidden=this.$el.ariaHidden,this.$el.id||ue(t,"id")}const Ga=G(async t=>{if(t){const e=await fetch(t);if(e.headers.get("Content-Type")==="image/svg+xml")return e.text()}return Promise.reject()});function Xa(t){const e=Va(t);e&&c(t,"--uk-animation-stroke",e)}const cn=".uk-disabled *, .uk-disabled, [disabled]";var zo={mixins:[Xt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,followFocus:Boolean,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,cls:"uk-active",attrItem:"uk-switcher-item",selVertical:".uk-nav",followFocus:!1,swiping:!0},computed:{connects:{get:({connect:t},e)=>me(t,e),observe:({connect:t})=>t},connectChildren(){return this.connects.map(t=>et(t)).flat()},toggles:({toggle:t},e)=>F(t,e),children(t,e){return et(e).filter(i=>this.toggles.some(n=>i.contains(n)))}},watch:{connects(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom"),this.$emit()},connectChildren(){let t=Math.max(0,this.index());for(const e of this.connects)et(e).forEach((i,n)=>U(i,this.cls,n===t));this.$emit()},toggles(t){this.$emit();const e=this.index();this.show(~e?e:t[this.active]||t[0])}},connected(){this.$el.role="tablist"},observe:[Vi({targets:({connectChildren:t})=>t}),uo({target:({connects:t})=>t,filter:({swiping:t})=>t})],events:[{name:"click keydown",delegate:({toggle:t})=>t,handler(t){!E(t.current,cn)&&(t.type==="click"||t.keyCode===A.SPACE)&&(Gt(t),this.show(t.current))}},{name:"keydown",delegate:({toggle:t})=>t,handler(t){const{current:e,keyCode:i}=t,n=E(this.$el,this.selVertical);let o=i===A.HOME?0:i===A.END?"last":i===A.LEFT&&!n||i===A.UP&&n?"previous":i===A.RIGHT&&!n||i===A.DOWN&&n?"next":-1;if(~o){t.preventDefault();const s=this.toggles.filter(a=>!E(a,cn)),r=s[ht(o,s,s.indexOf(e))];r.focus(),this.followFocus&&this.show(r)}}},{name:"click",el:({$el:t,connects:e,itemNav:i})=>e.concat(i?me(i,t):[]),delegate:({attrItem:t})=>`[${t}],[data-${t}]`,handler(t){t.target.closest("a,button")&&(Gt(t),this.show(Mt(t.current,this.attrItem)))}},{name:"swipeRight swipeLeft",filter:({swiping:t})=>t,el:({connects:t})=>t,handler({type:t}){this.show(ee(t,"Left")?"next":"previous")}}],update(){var t;for(const e of this.connects)I(e,"ul")&&(e.role="presentation");C(et(this.$el),"role","presentation");for(const e in this.toggles){const i=this.toggles[e],n=(t=this.connects[0])==null?void 0:t.children[e];i.role="tab",n&&(i.id=Je(this,i),n.id=Je(this,n),i.ariaControls=n.id,C(n,{role:"tabpanel","aria-labelledby":i.id}))}C(this.$el,"aria-orientation",E(this.$el,this.selVertical)?"vertical":null)},methods:{index(){return Pe(this.children,t=>m(t,this.cls))},show(t){const e=this.toggles.filter(r=>!E(r,cn)),i=this.index(),n=ht(!se(t)||d(e,t)?t:0,e,ht(this.toggles[i],e)),o=ht(e[n],this.toggles);this.children.forEach((r,a)=>{U(r,this.cls,o===a),C(this.toggles[a],{"aria-selected":o===a,tabindex:o===a?null:-1})});const s=i>=0&&i!==n;this.connects.forEach(async({children:r})=>{const a=Oe(r).filter((l,h)=>h!==o&&m(l,this.cls));await this.toggleElement(a,!1,s)&&await this.toggleElement(r[o],!0,s)})}}},Ja={mixins:[it],extends:zo,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item",selVertical:".uk-tab-left,.uk-tab-right"},connected(){const t=m(this.$el,"uk-tab-left")?"uk-tab-left":m(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const Ka=13,Za=32;var Qa={mixins:[en,Xt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get:({target:t},e)=>(t=me(t||e.hash,e),t.length?t:[e]),observe:({target:t})=>t}},connected(){d(this.mode,"media")||(Ie(this.$el)||(this.$el.tabIndex=0),!this.cls&&I(this.$el,"a")&&(this.$el.role="button"))},observe:Vi({targets:({target:t})=>t}),events:[{name:Nt,filter:({mode:t})=>d(t,"hover"),handler(t){this._preventClick=null,!(!ft(t)||Bt(this._showState)||this.$el.disabled)&&(T(this.$el,"focus"),M(document,Nt,()=>T(this.$el,"blur"),!0,e=>!this.$el.contains(e.target)),d(this.mode,"click")&&(this._preventClick=!0))}},{name:`mouseenter mouseleave ${Ft} ${fe} focus blur`,filter:({mode:t})=>d(t,"hover"),handler(t){if(ft(t)||this.$el.disabled||document.readyState==="loading")return;const e=d(["mouseenter",Ft,"focus"],t.type),i=this.isToggled(this.target);if(!e&&(!Bt(this._showState)||t.type!=="blur"&&E(this.$el,":focus")||t.type==="blur"&&E(this.$el,":hover"))){i===this._showState&&(this._showState=null);return}e&&Bt(this._showState)&&i!==this._showState||(this._showState=e?i:null,this.toggle(`toggle${e?"show":"hide"}`))}},{name:"keydown",filter:({$el:t,mode:e})=>d(e,"click")&&!I(t,"input"),handler(t){(t.keyCode===Za||t.keyCode===Ka)&&(t.preventDefault(),this.$el.click())}},{name:"click",filter:({mode:t})=>["click","hover"].some(e=>d(t,e)),handler(t){if(t.defaultPrevented)return;const e=t.target.closest("a[href]"),i=Ht(e)&&(!e.hash||E(this.target,e.hash));(this._preventClick||i||e&&!this.isToggled(this.target))&&t.preventDefault(),!this._preventClick&&d(this.mode,"click")&&(!e||i||t.defaultPrevented)&&this.toggle()}},{name:"mediachange",filter:({mode:t})=>d(t,"media"),el:({target:t})=>t,handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!T(this.target,t||"toggle",[this]))return;if(ut(this.$el,"aria-expanded")&&(this.$el.ariaExpanded=!this.isToggled(this.target)),!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>m(n,this.clsLeave));if(e.length){for(const n of this.target){const o=d(e,n);this.toggleElement(n,o,o)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1)&&await this.toggleElement(this.target.filter(n=>!d(i,n)),!0)}}},tl=Object.freeze({__proto__:null,Accordion:fo,Alert:dr,Close:aa,Cover:mr,Drop:vo,DropParentIcon:Tt,Dropdown:vo,Dropnav:wo,FormCustom:Sr,Grid:Er,HeightMatch:Pr,HeightPlaceholder:Mr,HeightViewport:Dr,Icon:Zi,Img:ma,Inverse:ya,Leader:Ea,Margin:yo,Marker:la,Modal:Oa,Nav:Ma,NavParentIcon:na,Navbar:Da,NavbarParentIcon:Tt,NavbarToggleIcon:ra,Offcanvas:Na,OverflowAuto:za,OverlayIcon:Tt,PaginationNext:ha,PaginationPrevious:ua,Responsive:Ha,Scroll:La,Scrollspy:ja,ScrollspyNav:Ra,SearchIcon:oa,SlidenavNext:Po,SlidenavPrevious:Po,Spinner:sa,Sticky:Ua,Svg:Ya,Switcher:zo,Tab:Ja,Toggle:Qa,Totop:ca,Video:po});return ce(tl,(t,e)=>Z.component(e,t)),Qs(Z),Z})); assets/uikit/dist/js/uikit-icons-paladin.min.js000064400000213512151666572350015562 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define("uikitpaladin",i):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitPaladin=i())})(this,(function(){"use strict";function e(i){e.installed||i.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.6" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="12" height="9" viewBox="0 0 12 9"><polyline fill="none" stroke="#000" points="7,0.5 11,4.5 7,8.5"/><line fill="none" stroke="#000" x1="11" y1="4.5" x2="0" y2="4.5"/></svg>',"pagination-previous":'<svg width="12" height="9" viewBox="0 0 12 9"><polyline fill="none" stroke="#000" points="5,8.5 1,4.5 5,0.5"/><line fill="none" stroke="#000" x1="1" y1="4.5" x2="12" y2="4.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="8" height="11" viewBox="0 0 8 11"><polyline fill="none" stroke="#000" stroke-width="1.5" points="2,10.5 7,5.5 2,0.5"/></svg>',"slidenav-next-large":'<svg width="13" height="21" viewBox="0 0 13 21"><polyline fill="none" stroke="#000" stroke-width="2" points="2,20.5 12,10.5 2,0.5"/></svg>',"slidenav-previous":'<svg width="8" height="11" viewBox="0 0 8 11"><polyline fill="none" stroke="#000" stroke-width="1.5" points="6,0.5 1,5.5 6,10.5"/></svg>',"slidenav-previous-large":'<svg width="13" height="21" viewBox="0 0 13 21"><polyline fill="none" stroke="#000" stroke-width="2" points="11,0.5 1,10.5 11,20.5"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5,9.5 10,3 15.5,9.5"/><line fill="none" stroke="#000" x1="10" y1="18" x2="10" y2="4"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-summit.min.js000064400000222630151666572350015471 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitsummit",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitSummit=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><path fill="#000" d="M13.7 13.3c-.1.1-.2.2-.4.2-.5 0-1.6-.6-4.7-3.3-.7-.5-1.3-1.1-1.7-1.7l-1.5.9c-.6.4-1.2.7-1.7 1.1-1.4 1.3-2.2 1.9-2.2 2-.1.1-.3.2-.5.2s-.5-.1-.6-.3c-.2-.3-.2-.8.1-1 0 0 .8-.6 2.1-1.8.6-.5 1.3-1 2-1.3.4-.2.9-.5 1.2-.8 0-.1-.4-.5-.5-.7-.3-.5-1.1-1.2-1.8-1.6-.6-.4-1.1-.8-1.3-1C.4 2.5.3 1.2.2 1.1.2.7.5.3.9.3s.8.3.8.7c.1 0 .2.8 1.5 2 .2.2.7.5 1.1.9.8.6 1.7 1.2 2.2 1.8.2.2.5.6.6.7.5-.5 1-.9 1.4-1.3.9-.8 1.5-1.5 1.9-1.7a8 8 0 0 0 1.9-2.1c.2-.4.7-.5 1-.2.4.2.5.7.2 1 0 .1-.9 1.4-2.3 2.5-.3.2-1 .9-1.7 1.6-.4.4-.9.8-1.5 1.3.5.5 1 1.1 1.6 1.6 1.5 1.3 3.3 2.7 3.8 2.9.1 0 .3.1.4.2.2.4.2.8-.1 1.1z"/></svg>',"close-large":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="#000" d="M19.6 18.7c-.1.3-.4.7-.8.8h-.2c-.3 0-.6-.1-1-.5-.2-.2-.4-.5-.7-.8-1.3-1.5-3.6-4-5.8-5.9-.4-.3-.7-.6-1.1-.9-1 .8-2.1 1.7-3.3 2.6l-1 .8c-1.4 1.1-2.6 3.7-2.6 3.7-.1.3-.4.5-.7.5-.1 0-.2 0-.3-.1-.4-.2-.5-.6-.4-1 0-.1 1.3-3 3-4.3l1-.8c1.1-.8 2.1-1.6 3.1-2.4-1-.6-1.8-1.1-2.4-1.5-.5-.3-.9-.6-1.3-.8C3 6.3 1 3.1 1 3c-.3-.4-.1-.8.2-1 .4-.2.8-.1 1 .3C2.2 2.3 4 5.4 6 7c.2.2.6.4 1.1.7.8.3 1.7.9 2.9 1.8 1.3-1 2.5-2.2 4.1-3.6C15.7 4.4 18.4.7 18.4.6c.2-.3.7-.4 1-.2.3.2.4.7.2 1-.1.2-2.8 3.9-4.5 5.5a93.6 93.6 0 0 1-3.9 3.5c.3.2.6.5.9.7 2.3 2 4.6 4.5 5.9 6 .2.2.4.5.6.6.2-.1.4-.1.6 0 .3.2.5.6.4 1z"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="#000" d="M17.7 11s-2.2-.5-3.3-.2c-.8.2-2 .2-3.3.2 0 .9 0 1.7-.2 2.1-.8 3 .1 4.5.1 4.5s-1.7.9-1.9.1c-.2-.8.1-1 0-2.4 0-1-.2-2.2-.2-3.5 0-.3 0-.6-.1-.9-1.2-.1-2.5-.1-3.8-.1-1.7 0-3 .2-3 .2s-.4-1.8.7-1.9c.1 0 2.9-.6 4.8-.2.4.1.8.2 1.2.2 0-.5 0-1 .2-1.4C10.1 4 9 2 9.2 2.1c.4.2 1.8-.5 2 .1 0 .1-.2 1.6-.2 3.5 0 1 0 2.4.1 3.7 3.6.2 6.3-.5 6.6-.4.6.3 0 2 0 2z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"overlay-icon":'<svg width="40" height="40" viewBox="0 0 40 40"><path fill="#000" d="M40.1 20.1c-.1.5-.6.9-1.1.9 0 0-3.2-.4-7.3-.4h-.2c-1.9 0-4 .2-6.1.4-1.4.2-2.9.3-4.3.4 0 .4.1 3.6.2 3.9.1.4.1.7.1 2.2 0 1.4-.2 3.4-.3 4.9-.1.8-.1 1.5-.1 1.7 0 .6.1 3.7.2 4.8-.2.7-.6 1.1-1.2 1.1a1 1 0 0 1-1-1c0-.2-.2-4.2-.2-5 0-.3.1-1 .1-1.9.1-1.5.3-3.5.3-4.8 0-1.4 0-1.6-.1-1.8-.1-.4-.2-3.7-.2-4h-1.1c-2.1 0-4-.1-5.3-.2-.8 0-1.4-.1-1.6-.1-3 .2-9.7-.2-10-.2-.6 0-1-.5-.9-1.1 0-.6.5-1 1.1-.9.1 0 6.9.4 9.7.2.3 0 1 0 1.9.1 1.5.1 3.7.2 6.1.1l-.3-8.3c-.2-4.1-.2-6.3-.2-7.1.1-1.4.3-3.2.7-3.7.4-.3 1-.4 1.5-.2.5.3.6.8.4 1.3 0 .1-.2.7-.4 3-.1.7 0 3.5.2 6.8.1 2.4.2 5.2.3 8.1l4.1-.3c2.1-.2 4.3-.4 6.3-.4 4.3 0 7.7.4 7.8.4.5.1.9.6.9 1.1z"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="14" height="24" viewBox="0 0 14 24"><path fill="#000" d="M1.2 23.7c-.2 0-.3-.1-.4-.2-.3-.2-.3-.7-.1-1 0 0 .8-1 2.1-2.1.6-.5 1.4-1.2 2.1-1.8 1.8-1.5 4.2-3.5 4.5-4 .8-1 1.9-2.2 2.5-2.8-.4-.4-.9-1-1.8-1.7-.8-.5-1.6-1.1-2.5-1.8-2.1-1.7-4.2-3.4-5.5-4.8C.9 2.4.6 1.3.5 1.2.4.8.7.4 1 .3c.4-.1.8.1.9.5 0 0 .2.8 1.2 1.7 1.2 1.3 3.4 3.1 5.4 4.6.9.7 1.7 1.4 2.5 2 1.5 1.3 2.3 2.4 2.4 2.4.2.3.2.7-.1.9 0 0-1.7 1.7-2.7 3-.4.6-2 2-4.8 4.3-.8.7-1.5 1.3-2.1 1.9-1.2 1-1.9 1.9-1.9 1.9-.2.1-.4.2-.6.2z"/></svg>',"slidenav-next-large":'<svg width="25" height="40" viewBox="0 0 25 40"><path fill="#000" d="M4 39.5c-.2 0-.3 0-.5-.1-.5-.3-.6-.9-.4-1.4 0-.1 1-1.6 2.5-3.1 3.2-3 8.9-7.7 10.9-9.3 2-1.5 4-4.4 4.8-5.6-.5-.5-1.3-1.4-2.4-2.3-.6-.5-1.4-1.1-2.2-1.7-1.2-.9-2.5-1.9-3.8-3-2.8-2.6-5.3-5.3-6.7-6.8-.3-.4-.5-.7-.7-.8-1.8-1.8-2.4-3.5-2.4-3.5-.2-.6 0-1.1.5-1.3.5-.2 1.1.1 1.3.6 0 0 .5 1.3 2 2.8.2.2.5.5.8.9 1.4 1.5 3.9 4.2 6.6 6.7 1.1 1.1 2.4 2 3.6 2.9.8.6 1.6 1.2 2.3 1.8 1.9 1.6 3.1 3.1 3.1 3.2.2.3.3.8 0 1.1-.1.2-2.8 4.5-5.7 6.7-2 1.5-7.6 6.2-10.7 9.1C5.6 37.6 4.8 39 4.8 39c-.1.4-.5.5-.8.5z"/></svg>',"slidenav-previous":'<svg width="14" height="24" viewBox="0 0 14 24"><path fill="#000" d="M12.8 23.7c-.1 0-.3 0-.4-.1-.3-.2-6.9-4.8-8.7-7.3-1.6-2.3-3-3.8-3-3.8-.2-.2-.3-.6 0-.9 0-.1 1.1-1.4 2.4-2.5C4 8.4 5 7.6 6 6.8c1.8-1.3 3.6-2.7 4-3.3 1.2-1.6 2.2-3 2.2-3 .2-.3.7-.4 1-.1.3.2.4.7.1 1 0 0-1 1.3-2.2 2.9-.6.9-2.3 2.2-4.3 3.7-1 .8-2 1.5-2.9 2.2-.7.6-1.4 1.3-1.8 1.8.5.6 1.6 1.8 2.7 3.5 1.6 2.2 8.2 6.9 8.3 7 .3.2.4.7.2 1-.1.1-.3.2-.5.2z"/></svg>',"slidenav-previous-large":'<svg width="25" height="40" viewBox="0 0 25 40"><path fill="#000" d="M20.5 39.5c-.2 0-.4-.1-.6-.2-.1-.1-2.9-2.3-4.3-4.4-.4-.6-2.6-2.6-4.7-4.5-1.8-1.6-3.8-3.4-5.4-5-2.5-2.5-4.1-4.8-4.2-4.9-.2-.3-.2-.8 0-1.1 0-.1 1.2-1.7 4.3-3.9C8.5 13.3 17.3 4.6 17.9 3.7 19 2.1 19.7 1 19.7 1c.3-.5.9-.6 1.4-.4.5.3.6.9.4 1.4 0 0-.7 1.2-1.9 2.8C18.7 6 9.7 14.9 6.7 17.1c-1.8 1.3-2.8 2.4-3.4 3 .6.8 1.9 2.4 3.5 4 1.7 1.6 3.6 3.4 5.4 5 2.9 2.6 4.5 4.1 5.1 4.9 1.2 1.8 3.9 3.9 3.9 3.9.4.3.5 1 .2 1.4-.3.1-.6.2-.9.2z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="20" height="11" viewBox="0 0 20 11"><path fill="#000" d="M1.1 10.8c-.1 0-.3 0-.4-.1-.4-.2-.5-.6-.4-1 .1-.3.4-.5.7-.4.1-.1.7-.4 1.8-1.8C4.6 5.1 9.2.7 9.4.5c.2-.2.4-.3.6-.2s.4.1.5.3c0 0 1.3 1.5 3.9 3.6C16 5.4 17 6.8 17.8 7.8c.2.3.4.5.6.8.1.2.7.6 1 .9.3.3.4.7.1 1.1-.3.3-.7.4-1.1.1-.2-.1-.9-.7-1.2-1.1-.2-.2-.4-.5-.6-.8-.8-1-1.8-2.3-3.1-3.4-1.8-1.5-2.9-2.6-3.6-3.2-1.2 1.1-4.4 4.3-5.8 6.1-1.3 1.6-2.3 2.5-3 2.5zm.2-1.5zm0 0zm0 0zm0 0zm0 0zm0 0z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-max.min.js000064400000212626151666572350014744 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitmax",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitMax=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="20" height="16" viewBox="0 0 20 16"><polygon points="1,7 16.52,7 11.015,1.495 12.005,0.505 19,7.5 12.005,14.495 11.015,13.505 16.52,8 1,8"/></svg>',"slidenav-next-large":'<svg width="32" height="22" viewBox="0 0 32 22"><rect width="30" height="1" x="1" y="10"/><polygon points="21.995,20.495 21.005,19.505 30.01,10.5 21.005,1.495 21.995,0.505 31.99,10.5"/></svg>',"slidenav-previous":'<svg width="20" height="16" viewBox="0 0 20 16"><polygon points="19,7 3.48,7 8.985,1.495 7.995,0.505 1,7.5 7.995,14.495 8.985,13.505 3.48,8 19,8"/></svg>',"slidenav-previous-large":'<svg width="32" height="22" viewBox="0 0 32 22"><rect width="30" height="1" x="1.99" y="10"/><polygon points="10.995,20.495 11.985,19.505 2.98,10.5 11.985,1.495 10.995,0.505 1,10.5"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="15" height="22" viewBox="0 0 15 20"><polyline fill="none" stroke="#0000" stroke-width="1.1" points="1,8 7.5,1.5 14,8"/><rect width="1" height="20" fill="0" x="7" y="2"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons.min.js000064400000210703151666572350014153 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define("uikiticons",i):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitIcons=i())})(this,(function(){"use strict";function e(i){e.installed||i.icon.add({youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="13" height="10" fill="none" stroke="#000" x="3.5" y="8.5"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect width="1.29" height="3.88" x="12.98" y="4.55"/><rect width="1.29" height="3.88" x="9.43" y="4.55"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="6" height="1" x="7" y="16"/><rect width="19" height="11" fill="none" stroke="#000" x=".5" y="3.5"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect width="1" height="9" x="8" y="7"/><rect width="1" height="9" x="11" y="7"/><rect width="16" height="1" x="2" y="3"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="5" height="5" fill="none" stroke="#000" x="3.5" y="3.5"/><rect width="5" height="5" fill="none" stroke="#000" x="11.5" y="3.5"/><rect width="5" height="5" fill="none" stroke="#000" x="11.5" y="11.5"/><rect width="5" height="5" fill="none" stroke="#000" x="3.5" y="11.5"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="18" height="1" x="1" y="3"/><rect width="18" height="1" x="1" y="7"/><rect width="18" height="1" x="1" y="11"/><rect width="18" height="1" x="1" y="15"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect width="15" height="1" x="3" y="10"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect width="1.5" height="8.5" x="6" y="6.5"/><rect width="1.5" height="7" x="3" y="8"/><rect width="1.5" height="5" y="10"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect width="3" height="1" x="1" y="3"/><rect width="8" height="1" x="10" y="3"/><rect width="8" height="1" x="1" y="9"/><rect width="3" height="1" x="15" y="9"/><rect width="3" height="1" x="1" y="15"/><rect width="8" height="1" x="10" y="15"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="2" x="3" y="3"/><rect width="1" height="2" x="5" y="3"/><rect width="1" height="2" x="7" y="3"/><rect width="1" height="1" x="16" y="3"/><rect width="1" height="1" x="16" y="10"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect width="1" height="2" x="3" y="10"/><rect width="1" height="2" x="5" y="10"/><rect width="1" height="2" x="9.5" y="14"/><rect width="6" height="1" x="3" y="17"/><rect width="6" height="1" x="11" y="17"/><rect width="17" height="5" fill="none" stroke="#000" x="1.5" y="1.5"/><rect width="17" height="5" fill="none" stroke="#000" x="1.5" y="8.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect width="11" height="6" fill="none" stroke="#000" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="17" x="9" y="1"/><rect width="17" height="1" x="1" y="9"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect width="13" height="13" fill="none" stroke="#000" x="5.5" y="1.5"/><rect width="1" height="3" x="1" y="11"/><rect width="3" height="1" x="6" y="18"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="18" height="1" x="1" y="9"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.44" x2="10" y2="18.5"/><line fill="none" stroke="#000" x1="7" y1="18.5" x2="13" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="16" height="1" x="2" y="4"/><rect width="16" height="1" x="2" y="9"/><rect width="16" height="1" x="2" y="14"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="13" height="10" fill="none" stroke="#000" x="3.5" y="8.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="12" height="1" x="6" y="4"/><rect width="12" height="1" x="6" y="9"/><rect width="12" height="1" x="6" y="14"/><rect width="2" height="1" x="2" y="4"/><rect width="2" height="1" x="2" y="9"/><rect width="2" height="1" x="2" y="14"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="1" y="16"/><rect width="15" height="10" fill="none" stroke="#000" x="2.5" y="4.5"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect width="19" height="15" fill="none" stroke="#000" x=".5" y="2.5"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect width="1" height="7" x="9" y="4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="3" height="3" x="2" y="2"/><rect width="3" height="3" x="8" y="2"/><rect width="3" height="3" x="14" y="2"/><rect width="3" height="3" x="2" y="8"/><rect width="3" height="3" x="8" y="8"/><rect width="3" height="3" x="14" y="8"/><rect width="3" height="3" x="2" y="14"/><rect width="3" height="3" x="8" y="14"/><rect width="3" height="3" x="14" y="14"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1.531" height="11.471" x="3.5" y="1"/><rect width="1.529" height="15.294" x="7.324" y="4.059"/><rect width="1.527" height="15.294" x="11.148" y="4.059"/><rect width="1.529" height="8.412" x="14.971" y="4.059"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect width="1" height="7" x="9" y="4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="13" height="17" fill="none" stroke="#000" x="3.5" y="1.5"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="13" height="17" fill="none" stroke="#000" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" y1="12.5" x2="12" y2="12.5"/><line fill="none" stroke="#000" x1="6" y1="8.5" x2="14" y2="8.5"/><line fill="none" stroke="#000" x1="6" y1="6.5" x2="14" y2="6.5"/><line fill="none" stroke="#000" x1="6" y1="10.5" x2="14" y2="10.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="13" height="17" fill="none" stroke="#000" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="2" x="8" y="15"/><rect width="1" height="2" x="11" y="15"/><rect width="10" height="1" x="5" y="16"/><rect width="17" height="11" fill="none" stroke="#000" x="1.5" y="3.5"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="17" height="12" fill="none" stroke="#000" x="1.5" y="4.5"/><rect width="18" height="3" x="1" y="7"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="12" height="16" fill="none" stroke="#000" x="3.5" y="2.5"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect width="1" height="7" x="9" y="4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect width="5" height="1.4" x="13" y="4"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="10" height="1" x="5" y="2"/><rect width="14" height="1" x="3" y="4"/><rect width="17" height="11" fill="none" stroke="#000" x="1.5" y="6.5"/></svg>',"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-devstack.min.js000064400000215531151666572350015761 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitdevstack",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitDevstack=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.6" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.6" x1="13" y1="1" x2="1" y2="13"/></svg>',"close-large":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="2" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="2" x1="19" y1="1" x2="1" y2="19"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="11" height="11" viewBox="0 0 11 11"><circle fill="#000" cx="5.5" cy="5.5" r="5.5"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.5" points="1.5 3.7 6 8 10.5 3.7"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',"navbar-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.5" points="1.5 3.7 6 8 10.5 3.7"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="8" height="11" viewBox="0 0 8 11"><polyline fill="none" stroke="#000" stroke-width="1.2" points="0.5 10.5 6.5 5.5 0.5 0.5"/></svg>',"pagination-previous":'<svg width="8" height="11" viewBox="0 0 8 11"><polyline fill="none" stroke="#000" stroke-width="1.2" points="7.5 0.5 1 5.5 7.5 10.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.6" d="M10.93,2.87l7,7-7,7.05"/><path fill="none" stroke="#000" stroke-width="1.6" d="M1,10H18"/></svg>',"slidenav-next-large":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.6" d="M10.93,2.87l7,7-7,7.05"/><path fill="none" stroke="#000" stroke-width="1.6" d="M1,10H18"/></svg>',"slidenav-previous":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.6" d="M9.07,17l-7-7,7-7"/><path fill="none" stroke="#000" stroke-width="1.6" d="M19,9.83H2"/></svg>',"slidenav-previous-large":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.6" d="M9.07,17l-7-7,7-7"/><path fill="none" stroke="#000" stroke-width="1.6" d="M19,9.83H2"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="15" height="15" viewBox="0 0 15 15"><polygon fill="#000" points="1 6.17 2.28 7.39 6.59 3.3 6.59 15 8.41 15 8.41 3.3 12.72 7.39 14 6.17 7.5 0 1 6.17"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-creative-hub.min.js000064400000211203151666572350016523 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitcreative_hub",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitCreative_hub=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="16" height="16" viewBox="0 0 16 16"><polyline fill="none" stroke="#000" stroke-width="2" points="1.032 4.517 8 11.483 14.968 4.517"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-florence.min.js000064400000214616151666572350015755 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(t,e){typeof exports=="object"&&typeof module<"u"?module.exports=e():typeof define=="function"&&define.amd?define("uikitflorence",e):(t=typeof globalThis<"u"?globalThis:t||self,t.UIkitFlorence=e())})(this,(function(){"use strict";function t(e){t.installed||e.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="18" height="18" viewBox="0 0 18 18"><polyline fill="none" stroke="#000" stroke-width="1.9" points="1.021 5.01 9 12.99 16.979 5.01"/></svg>',"navbar-toggle-icon":'<svg width="20" height="20" viewBox="0 0 20 20"><style>.uk-navbar-toggle-icon svg>[class*="line-"]{transition:0.2s ease-in-out;transition-property:transform, opacity,;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg>.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{transform:translateY(-6px) scaleX(0)}</style><rect class="line-1" width="20" height="1" y="3"/><rect class="line-2" width="20" height="1" y="9"/><rect class="line-3" width="20" height="1" y="9"/><rect class="line-4" width="20" height="1" y="15"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5"/><line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5"/></svg>',"pagination-previous":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5"/><line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="10.5,4 15.37,9.4 14.63,10.08 10.5,5.49 6.37,10.08 5.63,9.4"/><line fill="none" stroke="#000" x1="10.5" y1="16" x2="10.5" y2="5"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(t),t})); assets/uikit/dist/js/uikit-icons-vibe.min.js000064400000212666151666572350015110 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitvibe",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitVibe=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="#000" points="5 7 15 7 10 12"/></svg>',"nav-parent-icon-large":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="2.011 6.006 17.989 6.006 10 13.994 2.011 6.006"/></svg>',"navbar-parent-icon":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="#000" points="5 7 15 7 10 12"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="10" height="14" viewBox="0 0 10 14"><polygon fill="none" stroke="#000" stroke-width="1.4" points="1,12 8,7 1,2"/></svg>',"slidenav-next-large":'<svg width="17" height="26" viewBox="0 0 17 26"><polygon fill="none" stroke="#000" stroke-width="2" points="2,23 15,13 2,3"/></svg>',"slidenav-previous":'<svg width="10" height="14" viewBox="0 0 10 14"><polygon fill="none" stroke="#000" stroke-width="1.4" points="9,2 2,7 9,12"/></svg>',"slidenav-previous-large":'<svg width="17" height="26" viewBox="0 0 17 26"><polygon fill="none" stroke="#000" stroke-width="2" points="15,3 2,13 15,23"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit.min.js000064400000445452151666572350013055 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(Se,Ie){typeof exports=="object"&&typeof module<"u"?module.exports=Ie():typeof define=="function"&&define.amd?define("uikit",Ie):(Se=typeof globalThis<"u"?globalThis:Se||self,Se.UIkit=Ie())})(this,(function(){"use strict";const{hasOwnProperty:Se,toString:Ie}=Object.prototype;function gt(t,e){return Se.call(t,e)}const lr=/\B([A-Z])/g,Ft=ct(t=>t.replace(lr,"-$1").toLowerCase()),hr=/-(\w)/g,Ee=ct(t=>(t.charAt(0).toLowerCase()+t.slice(1)).replace(hr,(e,i)=>i.toUpperCase())),Ht=ct(t=>t.charAt(0).toUpperCase()+t.slice(1));function wt(t,e){var i;return(i=t==null?void 0:t.startsWith)==null?void 0:i.call(t,e)}function ne(t,e){var i;return(i=t==null?void 0:t.endsWith)==null?void 0:i.call(t,e)}function v(t,e){var i;return(i=t==null?void 0:t.includes)==null?void 0:i.call(t,e)}function xt(t,e){var i;return(i=t==null?void 0:t.findIndex)==null?void 0:i.call(t,e)}const{isArray:J,from:oe}=Array,{assign:ft}=Object;function ot(t){return typeof t=="function"}function Tt(t){return t!==null&&typeof t=="object"}function Ce(t){return Ie.call(t)==="[object Object]"}function si(t){return Tt(t)&&t===t.window}function Te(t){return ji(t)===9}function Pe(t){return ji(t)>=1}function re(t){return ji(t)===1}function ji(t){return!si(t)&&Tt(t)&&t.nodeType}function ae(t){return typeof t=="boolean"}function H(t){return typeof t=="string"}function _e(t){return typeof t=="number"}function mt(t){return _e(t)||H(t)&&!isNaN(t-parseFloat(t))}function ni(t){return!(J(t)?t.length:Tt(t)&&Object.keys(t).length)}function X(t){return t===void 0}function Ri(t){return ae(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function $t(t){const e=Number(t);return isNaN(e)?!1:e}function S(t){return parseFloat(t)||0}function q(t){return t&&E(t)[0]}function E(t){return Pe(t)?[t]:Array.from(t||[]).filter(Pe)}function Lt(t){if(si(t))return t;t=q(t);const e=Te(t)?t:t==null?void 0:t.ownerDocument;return(e==null?void 0:e.defaultView)||window}function Ae(t,e){return t===e||Tt(t)&&Tt(e)&&Object.keys(t).length===Object.keys(e).length&&le(t,(i,s)=>i===e[s])}function qi(t,e,i){return t.replace(new RegExp(`${e}|${i}`,"g"),s=>s===e?i:e)}function Wt(t){return t[t.length-1]}function le(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function Vs(t,e){return t.slice().sort(({[e]:i=0},{[e]:s=0})=>i>s?1:s>i?-1:0)}function jt(t,e){return t.reduce((i,s)=>i+S(ot(e)?e(s):s[e]),0)}function Ys(t,e){const i=new Set;return t.filter(({[e]:s})=>i.has(s)?!1:i.add(s))}function oi(t,e){return e.reduce((i,s)=>({...i,[s]:t[s]}),{})}function K(t,e=0,i=1){return Math.min(Math.max($t(t)||0,e),i)}function A(){}function ri(...t){return[["bottom","top"],["right","left"]].every(([e,i])=>Math.min(...t.map(({[e]:s})=>s))-Math.max(...t.map(({[i]:s})=>s))>0)}function ai(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function Ui(t,e,i){const s=e==="width"?"height":"width";return{[s]:t[e]?Math.round(i*t[s]/t[e]):t[s],[e]:i}}function Gs(t,e){t={...t};for(const i in t)t=t[i]>e[i]?Ui(t,i,e[i]):t;return t}function cr(t,e){t=Gs(t,e);for(const i in t)t=t[i]<e[i]?Ui(t,i,e[i]):t;return t}const Vi={ratio:Ui,contain:Gs,cover:cr};function rt(t,e,i=0,s=!1){e=E(e);const{length:n}=e;return n?(t=mt(t)?$t(t):t==="next"?i+1:t==="previous"?i-1:t==="last"?n-1:e.indexOf(q(t)),s?K(t,0,n-1):(t%=n,t<0?t+n:t)):-1}function ct(t){const e=Object.create(null);return(i,...s)=>e[i]||(e[i]=t(i,...s))}function I(t,...e){for(const i of E(t)){const s=Rt(e).filter(n=>!$(i,n));s.length&&i.classList.add(...s)}}function _(t,...e){for(const i of E(t)){const s=Rt(e).filter(n=>$(i,n));s.length&&i.classList.remove(...s)}}function li(t,e,i){i=Rt(i),e=Rt(e).filter(s=>!v(i,s)),_(t,e),I(t,i)}function $(t,e){return[e]=Rt(e),E(t).some(i=>i.classList.contains(e))}function L(t,e,i){const s=Rt(e);X(i)||(i=!!i);for(const n of E(t))for(const o of s)n.classList.toggle(o,i)}function Rt(t){return t?J(t)?t.map(Rt).flat():String(t).split(" ").filter(Boolean):[]}function k(t,e,i){var s;if(Tt(e)){for(const n in e)k(t,n,e[n]);return}if(X(i))return(s=q(t))==null?void 0:s.getAttribute(e);for(const n of E(t))ot(i)&&(i=i.call(n,k(n,e))),i===null?Oe(n,e):n.setAttribute(e,i)}function Pt(t,e){return E(t).some(i=>i.hasAttribute(e))}function Oe(t,e){E(t).forEach(i=>i.removeAttribute(e))}function Z(t,e){for(const i of[e,`data-${e}`])if(Pt(t,i))return k(t,i)}const qt=typeof window<"u",U=qt&&document.dir==="rtl",he=qt&&"ontouchstart"in window,ce=qt&&window.PointerEvent,ut=ce?"pointerdown":he?"touchstart":"mousedown",Me=ce?"pointermove":he?"touchmove":"mousemove",_t=ce?"pointerup":he?"touchend":"mouseup",At=ce?"pointerenter":he?"":"mouseenter",Ut=ce?"pointerleave":he?"":"mouseleave",hi=ce?"pointercancel":"touchcancel",ur={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function Yi(t){return E(t).some(e=>ur[e.tagName.toLowerCase()])}const dr=qt&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function W(t){return E(t).some(e=>dr.call(e))}const De="input,select,textarea,button";function ci(t){return E(t).some(e=>T(e,De))}const ue=`${De},a[href],[tabindex]`;function Be(t){return T(t,ue)}function O(t){var e;return(e=q(t))==null?void 0:e.parentElement}function Ne(t,e){return E(t).filter(i=>T(i,e))}function T(t,e){return E(t).some(i=>i.matches(e))}function de(t,e){const i=[];for(;t=O(t);)(!e||T(t,e))&&i.push(t);return i}function N(t,e){t=q(t);const i=t?oe(t.children):[];return e?Ne(i,e):i}function yt(t,e){return e?E(t).indexOf(q(e)):N(O(t)).indexOf(t)}function fe(t){return t=q(t),t&&["origin","pathname","search"].every(e=>t[e]===location[e])}function ui(t){if(fe(t)){const{hash:e,ownerDocument:i}=q(t),s=decodeURIComponent(e).slice(1);return s?i.getElementById(s)||i.getElementsByName(s)[0]:i.documentElement}}function et(t,e){return Gi(t,Xs(t,e))}function ze(t,e){return Fe(t,Xs(t,e))}function Gi(t,e){return q(Zs(t,q(e),"querySelector"))}function Fe(t,e){return E(Zs(t,q(e),"querySelectorAll"))}function Xs(t,e=document){return Te(e)||Js(t).isContextSelector?e:e.ownerDocument}const fr=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,pr=/(\([^)]*\)|[^,])+/g,Js=ct(t=>{let e=!1;if(!t||!H(t))return{};const i=[];for(let s of t.match(pr))s=s.trim().replace(fr,"$1 *"),e||(e=["!","+","~","-",">"].includes(s[0])),i.push(s);return{selector:i.join(","),selectors:i,isContextSelector:e}}),gr=/(\([^)]*\)|\S)*/,Ks=ct(t=>{t=t.slice(1).trim();const[e]=t.match(gr);return[e,t.slice(e.length+1)]});function Zs(t,e=document,i){var s;const n=Js(t);if(!n.isContextSelector)return n.selector?Xi(e,i,n.selector):t;t="";const o=n.selectors.length===1;for(let r of n.selectors){let a,l=e;if(r[0]==="!"&&([a,r]=Ks(r),l=(s=e.parentElement)==null?void 0:s.closest(a),!r&&o)||l&&r[0]==="-"&&([a,r]=Ks(r),l=l.previousElementSibling,l=T(l,a)?l:null,!r&&o))return l;if(l){if(o)return r[0]==="~"||r[0]==="+"?(r=`:scope > :nth-child(${yt(l)+1}) ${r}`,l=l.parentElement):r[0]===">"&&(r=`:scope ${r}`),Xi(l,i,r);t+=`${t?",":""}${mr(l)} ${r}`}}return Te(e)||(e=e.ownerDocument),Xi(e,i,t)}function Xi(t,e,i){try{return t[e](i)}catch{return null}}function mr(t){const e=[];for(;t.parentNode;){const i=k(t,"id");if(i){e.unshift(`#${Ji(i)}`);break}else{let{tagName:s}=t;s!=="HTML"&&(s+=`:nth-child(${yt(t)+1})`),e.unshift(s),t=t.parentNode}}return e.join(" > ")}function Ji(t){return H(t)?CSS.escape(t):""}function w(...t){let[e,i,s,n,o=!1]=Ki(t);n.length>1&&(n=br(n)),o!=null&&o.self&&(n=wr(n)),s&&(n=vr(s,n));for(const r of i)for(const a of e)a.addEventListener(r,n,o);return()=>Vt(e,i,n,o)}function Vt(...t){let[e,i,,s,n=!1]=Ki(t);for(const o of i)for(const r of e)r.removeEventListener(o,s,n)}function z(...t){const[e,i,s,n,o=!1,r]=Ki(t),a=w(e,i,s,l=>{const c=!r||r(l);c&&(a(),n(l,c))},o);return a}function m(t,e,i){return Zi(t).every(s=>s.dispatchEvent(pe(e,!0,!0,i)))}function pe(t,e=!0,i=!1,s){return H(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:s})),t}function Ki(t){return t[0]=Zi(t[0]),H(t[1])&&(t[1]=t[1].split(" ")),ot(t[2])&&t.splice(2,0,!1),t}function vr(t,e){return i=>{const s=t[0]===">"?Fe(t,i.currentTarget).reverse().find(n=>n.contains(i.target)):i.target.closest(t);s&&(i.current=s,e.call(this,i),delete i.current)}}function br(t){return e=>J(e.detail)?t(e,...e.detail):t(e)}function wr(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Qs(t){return t&&"addEventListener"in t}function xr(t){return Qs(t)?t:q(t)}function Zi(t){return J(t)?t.map(xr).filter(Boolean):H(t)?Fe(t):Qs(t)?[t]:E(t)}function pt(t){return t.pointerType==="touch"||!!t.touches}function kt(t){var e,i;const{clientX:s,clientY:n}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:s,y:n}}const $r={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function h(t,e,i,s){const n=E(t);for(const o of n)if(H(e)){if(e=di(e),X(i))return getComputedStyle(o).getPropertyValue(e);o.style.setProperty(e,mt(i)&&!$r[e]&&!tn(e)?`${i}px`:i||_e(i)?i:"",s)}else if(J(e)){const r={};for(const a of e)r[a]=h(o,a);return r}else if(Tt(e))for(const r in e)h(o,r,e[r],i);return n[0]}function St(t,e){for(const i in e)h(t,i,"")}const di=ct(t=>{if(tn(t))return t;t=Ft(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const s=`-${i}-${t}`;if(s in e)return s}});function tn(t){return wt(t,"--")}const Qi="uk-transition",ts="transitionend",es="transitioncanceled";function yr(t,e,i=400,s="linear"){return i=Math.round(i),Promise.all(E(t).map(n=>new Promise((o,r)=>{for(const c in e)h(n,c);const a=setTimeout(()=>m(n,ts),i);z(n,[ts,es],({type:c})=>{clearTimeout(a),_(n,Qi),St(n,l),c===es?r():o(n)},{self:!0}),I(n,Qi);const l={transitionProperty:Object.keys(e).map(di).join(","),transitionDuration:`${i}ms`,transitionTimingFunction:s};h(n,{...l,...e})})))}const M={start:yr,async stop(t){m(t,ts),await Promise.resolve()},async cancel(t){m(t,es),await Promise.resolve()},inProgress(t){return $(t,Qi)}},He="uk-animation",en="animationend",fi="animationcanceled";function sn(t,e,i=200,s,n){return Promise.all(E(t).map(o=>new Promise((r,a)=>{$(o,He)&&m(o,fi);const l=[e,He,`${He}-${n?"leave":"enter"}`,s&&`uk-transform-origin-${s}`,n&&`${He}-reverse`],c=setTimeout(()=>m(o,en),i);z(o,[en,fi],({type:u})=>{clearTimeout(c),u===fi?a():r(o),h(o,"animationDuration",""),_(o,l)},{self:!0}),h(o,"animationDuration",`${i}ms`),I(o,l)})))}const Ot={in:sn,out(t,e,i,s){return sn(t,e,i,s,!0)},inProgress(t){return $(t,He)},cancel(t){m(t,fi)}};function kr(t){if(document.readyState!=="loading"){t();return}z(document,"DOMContentLoaded",t)}function F(t,...e){return e.some(i=>{var s;return((s=t==null?void 0:t.tagName)==null?void 0:s.toLowerCase())===i.toLowerCase()})}function nn(t){return t=x(t),t&&(t.innerHTML=""),t}function vt(t,e){return X(e)?x(t).innerHTML:j(nn(t),e)}const Sr=mi("prepend"),j=mi("append"),pi=mi("before"),gi=mi("after");function mi(t){return function(e,i){var s;const n=E(H(i)?It(i):i);return(s=x(e))==null||s[t](...n),on(n)}}function Q(t){E(t).forEach(e=>e.remove())}function Le(t,e){for(e=q(pi(t,e));e.firstElementChild;)e=e.firstElementChild;return j(e,t),e}function is(t,e){return E(E(t).map(i=>i.hasChildNodes()?Le(oe(i.childNodes),e):j(i,e)))}function We(t){E(t).map(O).filter((e,i,s)=>s.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const Ir=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function It(t){const e=Ir.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("template");return i.innerHTML=t.trim(),on(i.content.childNodes)}function on(t){return t.length>1?t:t[0]}function Mt(t,e){if(re(t))for(e(t),t=t.firstElementChild;t;)Mt(t,e),t=t.nextElementSibling}function x(t,e){return rn(t)?q(It(t)):Gi(t,e)}function D(t,e){return rn(t)?E(It(t)):Fe(t,e)}function rn(t){return H(t)&&wt(t.trim(),"<")}const Yt={width:["left","right"],height:["top","bottom"]};function g(t){const e=re(t)?q(t).getBoundingClientRect():{height:tt(t),width:vi(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function C(t,e){e&&h(t,{left:0,top:0});const i=g(t);if(t){const{scrollY:s,scrollX:n}=Lt(t),o={height:s,width:n};for(const r in Yt)for(const a of Yt[r])i[a]+=o[r]}if(!e)return i;for(const s of["left","top"])h(t,s,e[s]-i[s])}function ss(t){let{top:e,left:i}=C(t);const{ownerDocument:{body:s,documentElement:n},offsetParent:o}=q(t);let r=o||n;for(;r&&(r===s||r===n)&&h(r,"position")==="static";)r=r.parentNode;if(re(r)){const a=C(r);e-=a.top+S(h(r,"borderTopWidth")),i-=a.left+S(h(r,"borderLeftWidth"))}return{top:e-S(h(t,"marginTop")),left:i-S(h(t,"marginLeft"))}}function je(t){t=q(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+S(h(t,"borderTopWidth")),e[1]+=t.offsetLeft+S(h(t,"borderLeftWidth")),h(t,"position")==="fixed"){const i=Lt(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const tt=an("height"),vi=an("width");function an(t){const e=Ht(t);return(i,s)=>{if(X(s)){if(si(i))return i[`inner${e}`];if(Te(i)){const n=i.documentElement;return Math.max(n[`offset${e}`],n[`scroll${e}`])}return i=q(i),s=h(i,t),s=s==="auto"?i[`offset${e}`]:S(s)||0,s-ge(i,t)}else return h(i,t,!s&&s!==0?"":+s+ge(i,t)+"px")}}function ge(t,e,i="border-box"){return h(t,"boxSizing")===i?jt(Yt[e],s=>S(h(t,`padding-${s}`))+S(h(t,`border-${s}-width`))):0}function bi(t){for(const e in Yt)for(const i in Yt[e])if(Yt[e][i]===t)return Yt[e][1-i];return t}function G(t,e="width",i=window,s=!1){return H(t)?jt(Cr(t),n=>{const o=Pr(n);return o?_r(o==="vh"?Ar():o==="vw"?vi(Lt(i)):s?i[`offset${Ht(e)}`]:g(i)[e],n):n}):S(t)}const Er=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,Cr=ct(t=>t.toString().replace(/\s/g,"").match(Er)||[]),Tr=/(?:v[hw]|%)$/,Pr=ct(t=>(t.match(Tr)||[])[0]);function _r(t,e){return t*S(e)/100}let Re,me;function Ar(){return Re||(me||(me=x("<div>"),h(me,{height:"100vh",position:"fixed"}),w(window,"resize",()=>Re=null)),j(document.body,me),Re=me.clientHeight,Q(me),Re)}const Dt={read:Or,write:Mr,clear:Dr,flush:ln},wi=[],xi=[];function Or(t){return wi.push(t),os(),t}function Mr(t){return xi.push(t),os(),t}function Dr(t){cn(wi,t),cn(xi,t)}let ns=!1;function ln(){hn(wi),hn(xi.splice(0)),ns=!1,(wi.length||xi.length)&&os()}function os(){ns||(ns=!0,queueMicrotask(ln))}function hn(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function cn(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}class un{init(){this.positions=[];let e;this.unbind=w(document,"mousemove",i=>e=kt(i)),this.interval=setInterval(()=>{e&&(this.positions.push(e),this.positions.length>5&&this.positions.shift())},50)}cancel(){var e;(e=this.unbind)==null||e.call(this),clearInterval(this.interval)}movesTo(e){if(!this.positions||this.positions.length<2)return!1;const i=g(e),{left:s,right:n,top:o,bottom:r}=i,[a]=this.positions,l=Wt(this.positions),c=[a,l];return ai(l,i)?!1:[[{x:s,y:o},{x:n,y:r}],[{x:s,y:r},{x:n,y:o}]].some(d=>{const f=Br(c,d);return f&&ai(f,i)})}}function Br([{x:t,y:e},{x:i,y:s}],[{x:n,y:o},{x:r,y:a}]){const l=(a-o)*(i-t)-(r-n)*(s-e);if(l===0)return!1;const c=((r-n)*(e-o)-(a-o)*(t-n))/l;return c<0?!1:{x:t+c*(i-t),y:e+c*(s-e)}}function dn(t,e,i={},{intersecting:s=!0}={}){const n=new IntersectionObserver(s?(o,r)=>{o.some(a=>a.isIntersecting)&&e(o,r)}:e,i);for(const o of E(t))n.observe(o);return n}const Nr=qt&&window.ResizeObserver;function qe(t,e,i={box:"border-box"}){if(Nr)return fn(ResizeObserver,t,e,i);const s=[w(window,"load resize",e),w(document,"loadedmetadata load",e,!0)];return{disconnect:()=>s.map(n=>n())}}function rs(t){return{disconnect:w([window,window.visualViewport],"resize",t)}}function as(t,e,i){return fn(MutationObserver,t,e,i)}function fn(t,e,i,s){const n=new t(i);for(const o of E(e))n.observe(o,s);return n}function ls(t){cs(t)&&us(t,{func:"playVideo",method:"play"}),hs(t)&&t.play().catch(A)}function $i(t){cs(t)&&us(t,{func:"pauseVideo",method:"pause"}),hs(t)&&t.pause()}function pn(t){cs(t)&&us(t,{func:"mute",method:"setVolume",value:0}),hs(t)&&(t.muted=!0)}function hs(t){return F(t,"video")}function cs(t){return F(t,"iframe")&&(gn(t)||mn(t))}function gn(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function mn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function us(t,e){await Fr(t),vn(t,e)}function vn(t,e){t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}const ds="_ukPlayer";let zr=0;function Fr(t){if(t[ds])return t[ds];const e=gn(t),i=mn(t),s=++zr;let n;return t[ds]=new Promise(o=>{e&&z(t,"load",()=>{const r=()=>vn(t,{event:"listening",id:s});n=setInterval(r,100),r()}),z(window,"message",o,!1,({data:r})=>{try{return r=JSON.parse(r),e&&(r==null?void 0:r.id)===s&&r.event==="onReady"||i&&Number(r==null?void 0:r.player_id)===s}catch{}}),t.src=`${t.src}${v(t.src,"?")?"&":"?"}${e?"enablejsapi=1":`api=1&player_id=${s}`}`}).then(()=>clearInterval(n))}function Hr(t,e=0,i=0){return W(t)?ri(...Xt(t).map(s=>{const{top:n,left:o,bottom:r,right:a}=at(s);return{top:n-e,left:o-i,bottom:r+e,right:a+i}}).concat(C(t))):!1}function bn(t,{offset:e=0}={}){const i=W(t)?Gt(t,!1,["hidden"]):[];return i.reduce((r,a,l)=>{const{scrollTop:c,scrollHeight:u,offsetHeight:d}=a,f=at(a),p=u-f.height,{height:b,top:y}=i[l-1]?at(i[l-1]):C(t);let P=Math.ceil(y-f.top-e+c);return e>0&&d<b+e?P+=e:e=0,P>p?(e-=P-p,P=p):P<0&&(e-=P,P=0),()=>s(a,P-c,t,p).then(r)},()=>Promise.resolve())();function s(r,a,l,c){return new Promise(u=>{const d=r.scrollTop,f=n(Math.abs(a)),p=Date.now(),b=gs(r)===r,y=C(l).top+(b?0:d);let P=0,it=15;(function Ct(){const zt=o(K((Date.now()-p)/f));let bt=0;i[0]===r&&d+a<c&&(bt=C(l).top+(b?0:r.scrollTop)-y-g(fs(l)).height),h(r,"scrollBehavior")!=="auto"&&h(r,"scrollBehavior","auto"),r.scrollTop=d+(a+bt)*zt,h(r,"scrollBehavior",""),zt===1&&(P===bt||!it--)?u():(P=bt,requestAnimationFrame(Ct))})()})}function n(r){return 40*Math.pow(r,.375)}function o(r){return .5*(1-Math.cos(Math.PI*r))}}function yi(t,e=0,i=0){if(!W(t))return 0;const s=Bt(t,!0),{scrollHeight:n,scrollTop:o}=s,{height:r}=at(s),a=n-r,l=je(t)[0]-je(s)[0],c=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return c<u?K((o-c)/(u-c)):1}function Gt(t,e=!1,i=[]){const s=gs(t);let n=de(t).reverse();n=n.slice(n.indexOf(s)+1);const o=xt(n,r=>h(r,"position")==="fixed");return~o&&(n=n.slice(o)),[s].concat(n.filter(r=>h(r,"overflow").split(" ").some(a=>v(["auto","scroll",...i],a))&&(!e||r.scrollHeight>at(r).height))).reverse()}function Bt(...t){return Gt(...t)[0]}function Xt(t){return Gt(t,!1,["hidden","clip"])}function at(t){const e=Lt(t),i=gs(t),s=!Pe(t)||t.contains(i);if(s&&e.visualViewport){let{height:l,width:c,scale:u,pageTop:d,pageLeft:f}=e.visualViewport;return l=Math.round(l*u),c=Math.round(c*u),{height:l,width:c,top:d,left:f,bottom:d+l,right:f+c}}let n=C(s?e:t);if(h(t,"display")==="inline")return n;const{body:o,documentElement:r}=e.document,a=s?i===r||i.clientHeight<o.clientHeight?i:o:t;for(let[l,c,u,d]of[["width","x","left","right"],["height","y","top","bottom"]]){const f=n[l]%1;n[u]+=S(h(a,`border-${u}-width`)),n[l]=n[c]=a[`client${Ht(l)}`]-(f?f<.5?-f:1-f:0),n[d]=n[l]+n[u]}return n}function fs(t){const{left:e,width:i,top:s}=g(t);for(const n of s?[0,s]:[0]){let o;for(const r of Lt(t).document.elementsFromPoint(e+i/2,n))!r.contains(t)&&!$(r,"uk-togglable-leave")&&(ps(r,"fixed")&&wn(de(t).reverse().find(a=>!a.contains(r)&&!ps(a,"static")))<wn(r)||ps(r,"sticky")&&(!t||O(r).contains(t)))&&(!o||g(o).height<g(r).height)&&(o=r);if(o)return o}}function wn(t){return S(h(t,"zIndex"))}function ps(t,e){return h(t,"position")===e}function gs(t){return Lt(t).document.scrollingElement}const lt=[["width","x","left","right"],["height","y","top","bottom"]];function xn(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],placement:[],...i},J(e)||(e=[e,e]),C(t,$n(t,e,i))}function $n(t,e,i){const s=yn(t,e,i),{boundary:n,viewportOffset:o=0,placement:r}=i;let a=s;for(const[l,[c,,u,d]]of Object.entries(lt)){const f=Lr(t,e[l],o,n,l);if(ki(s,f,l))continue;let p=0;if(r[l]==="flip"){const b=i.attach.target[l];if(b===d&&s[d]<=f[d]||b===u&&s[u]>=f[u])continue;p=jr(t,e,i,l)[u]-s[u];const y=Wr(t,e[l],o,l);if(!ki(ms(s,p,l),y,l)){if(ki(s,y,l))continue;if(i.recursion)return!1;const P=Rr(t,e,i);if(P&&ki(P,y,1-l))return P;continue}}else if(r[l]==="shift"){const b=C(e[l]),{offset:y}=i;p=K(K(s[u],f[u],f[d]-s[c]),b[u]-s[c]+y[l],b[d]-y[l])-s[u]}a=ms(a,p,l)}return a}function yn(t,e,i){let{attach:s,offset:n}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},o=C(t);for(const[r,[a,,l,c]]of Object.entries(lt)){const u=s.target[r]===s.element[r]?at(e[r]):C(e[r]);o=ms(o,u[l]-o[l]+kn(s.target[r],c,u[a])-kn(s.element[r],c,o[a])+ +n[r],r)}return o}function ms(t,e,i){const[,s,n,o]=lt[i],r={...t};return r[n]=t[s]=t[n]+e,r[o]+=e,r}function kn(t,e,i){return t==="center"?i/2:t===e?i:0}function Lr(t,e,i,s,n){let o=In(...Sn(t,e).map(at));return i&&(o[lt[n][2]]+=i,o[lt[n][3]]-=i),s&&(o=In(o,C(J(s)?s[n]:s))),o}function Wr(t,e,i,s){const[n,o,r,a]=lt[s],[l]=Sn(t,e),c=at(l);return["auto","scroll"].includes(h(l,`overflow-${o}`))&&(c[r]-=l[`scroll${Ht(r)}`],c[a]=c[r]+l[`scroll${Ht(n)}`]),c[r]+=i,c[a]-=i,c}function Sn(t,e){return Xt(e).filter(i=>i.contains(t))}function In(...t){let e={};for(const i of t)for(const[,,s,n]of lt)e[s]=Math.max(e[s]||0,i[s]),e[n]=Math.min(...[e[n],i[n]].filter(Boolean));return e}function ki(t,e,i){const[,,s,n]=lt[i];return t[s]>=e[s]&&t[n]<=e[n]}function jr(t,e,{offset:i,attach:s},n){return yn(t,e,{attach:{element:En(s.element,n),target:En(s.target,n)},offset:qr(i,n)})}function Rr(t,e,i){return $n(t,e,{...i,attach:{element:i.attach.element.map(Cn).reverse(),target:i.attach.target.map(Cn).reverse()},offset:i.offset.reverse(),placement:i.placement.reverse(),recursion:!0})}function En(t,e){const i=[...t],s=lt[e].indexOf(t[e]);return~s&&(i[e]=lt[e][1-s%2+2]),i}function Cn(t){for(let e=0;e<lt.length;e++){const i=lt[e].indexOf(t);if(~i)return lt[1-e][i%2+2]}}function qr(t,e){return t=[...t],t[e]*=-1,t}var Ur=Object.freeze({__proto__:null,$:x,$$:D,Animation:Ot,Dimensions:Vi,MouseTracker:un,Transition:M,addClass:I,after:gi,append:j,apply:Mt,assign:ft,attr:k,before:pi,boxModelAdjust:ge,camelize:Ee,children:N,clamp:K,createEvent:pe,css:h,data:Z,dimensions:g,each:le,empty:nn,endsWith:ne,escape:Ji,fastdom:Dt,filter:Ne,find:Gi,findAll:Fe,findIndex:xt,flipPosition:bi,fragment:It,getCoveringElement:fs,getEventPos:kt,getIndex:rt,getTargetedElement:ui,hasAttr:Pt,hasClass:$,hasOwn:gt,hasTouch:he,height:tt,html:vt,hyphenate:Ft,inBrowser:qt,includes:v,index:yt,intersectRect:ri,isArray:J,isBoolean:ae,isDocument:Te,isElement:re,isEmpty:ni,isEqual:Ae,isFocusable:Be,isFunction:ot,isInView:Hr,isInput:ci,isNode:Pe,isNumber:_e,isNumeric:mt,isObject:Tt,isPlainObject:Ce,isRtl:U,isSameSiteAnchor:fe,isString:H,isTag:F,isTouch:pt,isUndefined:X,isVisible:W,isVoidElement:Yi,isWindow:si,last:Wt,matches:T,memoize:ct,mute:pn,noop:A,observeIntersection:dn,observeMutation:as,observeResize:qe,observeViewportResize:rs,off:Vt,offset:C,offsetPosition:je,offsetViewport:at,on:w,once:z,overflowParents:Xt,parent:O,parents:de,pause:$i,pick:oi,play:ls,pointInRect:ai,pointerCancel:hi,pointerDown:ut,pointerEnter:At,pointerLeave:Ut,pointerMove:Me,pointerUp:_t,position:ss,positionAt:xn,prepend:Sr,propName:di,query:et,queryAll:ze,ready:kr,remove:Q,removeAttr:Oe,removeClass:_,replaceClass:li,resetProps:St,scrollIntoView:bn,scrollParent:Bt,scrollParents:Gt,scrolledOver:yi,selFocusable:ue,selInput:De,sortBy:Vs,startsWith:wt,sumBy:jt,swap:qi,toArray:oe,toBoolean:Ri,toEventTargets:Zi,toFloat:S,toNode:q,toNodes:E,toNumber:$t,toPx:G,toWindow:Lt,toggleClass:L,trigger:m,ucfirst:Ht,uniqueBy:Ys,unwrap:We,width:vi,wrapAll:Le,wrapInner:is}),st={connected(){I(this.$el,this.$options.id)}};const Vr=["days","hours","minutes","seconds"];var Yr={mixins:[st],props:{date:String,clsWrapper:String,role:String,reload:Boolean},data:{date:"",clsWrapper:".uk-countdown-%unit%",role:"timer",reload:!1},connected(){this.$el.role=this.role,this.date=S(Date.parse(this.$props.date)),this.started=this.end=!1,this.start()},disconnected(){this.stop()},events:{name:"visibilitychange",el:()=>document,handler(){document.hidden?this.stop():this.start()}},methods:{start(){this.stop(),this.update()},stop(){this.timer&&(clearInterval(this.timer),m(this.$el,"countdownstop"),this.timer=null)},update(){const t=Gr(this.date);t.total?this.timer||(this.started=!0,this.timer=setInterval(this.update,1e3),m(this.$el,"countdownstart")):(this.stop(),this.end||(m(this.$el,"countdownend"),this.end=!0,this.reload&&this.started&&window.location.reload()));for(const e of Vr){const i=x(this.clsWrapper.replace("%unit%",e),this.$el);if(!i)continue;let s=Math.trunc(t[e]).toString().padStart(2,"0");i.textContent!==s&&(s=s.split(""),s.length!==i.children.length&&vt(i,s.map(()=>"<span></span>").join("")),s.forEach((n,o)=>i.children[o].textContent=n))}}}};function Gr(t){const e=Math.max(0,t-Date.now())/1e3;return{total:e,seconds:e%60,minutes:e/60%60,hours:e/60/60%24,days:e/60/60/24}}const V={};V.events=V.watch=V.observe=V.created=V.beforeConnect=V.connected=V.beforeDisconnect=V.disconnected=V.destroy=vs,V.args=function(t,e){return e!==!1&&vs(e||t)},V.update=function(t,e){return Vs(vs(t,ot(e)?{read:e}:e),"order")},V.props=function(t,e){if(J(e)){const i={};for(const s of e)i[s]=String;e=i}return V.methods(t,e)},V.computed=V.methods=function(t,e){return e?t?{...t,...e}:e:t},V.i18n=V.data=function(t,e,i){return i?Tn(t,e,i):e?t?function(s){return Tn(t,e,s)}:e:t};function Tn(t,e,i){return V.computed(ot(t)?t.call(i,i):t,ot(e)?e.call(i,i):e)}function vs(t,e){return t=t&&!J(t)?[t]:t,e?t?t.concat(e):J(e)?e:[e]:t}function Xr(t,e){return X(e)?t:e}function Ue(t,e,i){const s={};if(ot(e)&&(e=e.options),e.extends&&(t=Ue(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=Ue(t,o,i);for(const o in t)n(o);for(const o in e)gt(t,o)||n(o);function n(o){s[o]=(V[o]||Xr)(t[o],e[o],i)}return s}function ve(t,e=[]){try{return t?wt(t,"{")?JSON.parse(t):e.length&&!v(t,":")?{[e[0]]:t}:t.split(";").reduce((i,s)=>{const[n,o]=s.split(/:(.*)/);return n&&!X(o)&&(i[n.trim()]=o.trim()),i},{}):{}}catch{return{}}}function bs(t,e){return t===Boolean?Ri(e):t===Number?$t(e):t==="list"?Kr(e):t===Object&&H(e)?ve(e):t?t(e):e}const Jr=/,(?![^(]*\))/;function Kr(t){return J(t)?t:H(t)?t.split(Jr).map(e=>mt(e)?$t(e):Ri(e.trim())):[t]}function Zr(t){t._data={},t._updates=[...t.$options.update||[]],t._disconnect.push(()=>t._updates=t._data=null)}function Qr(t,e){t._updates.unshift(e)}function Ve(t,e="update"){t._connected&&t._updates.length&&(t._updateCount||(t._updateCount=0,requestAnimationFrame(()=>t._updateCount=0)),t._queued||(t._queued=new Set,Dt.read(()=>{t._connected&&ta(t,t._queued),t._queued=null})),t._updateCount++<20&&t._queued.add(e.type||e))}function ta(t,e){for(const{read:i,write:s,events:n=[]}of t._updates){if(!e.has("update")&&!n.some(r=>e.has(r)))continue;let o;i&&(o=i.call(t,t._data,e),o&&Ce(o)&&ft(t._data,o)),s&&o!==!1&&Dt.write(()=>{t._connected&&s.call(t,t._data,e)})}}function dt(t){return Ge(qe,t,"resize")}function be(t){return Ge(dn,t)}function Si(t){return Ge(as,t)}function Ii(t={}){return be({handler:function(e,i){const{targets:s=this.$el,preload:n=5}=t;for(const o of E(ot(s)?s(this):s))D('[loading="lazy"]',o).slice(0,n-1).forEach(r=>Oe(r,"loading"));for(const o of e.filter(({isIntersecting:r})=>r).map(({target:r})=>r))i.unobserve(o)},...t})}function ws(t){return Ge((e,i)=>rs(i),t,"resize")}function Ye(t){return Ge((e,i)=>({disconnect:w(ia(e),"scroll",i,{passive:!0})}),t,"scroll")}function Pn(t){return{observe(e,i){return{observe:A,unobserve:A,disconnect:w(e,ut,i,{passive:!0})}},handler(e){if(!pt(e))return;const i=kt(e),s="tagName"in e.target?e.target:O(e.target);z(document,`${_t} ${hi} scroll`,n=>{const{x:o,y:r}=kt(n);(n.type!=="scroll"&&s&&o&&Math.abs(i.x-o)>100||r&&Math.abs(i.y-r)>100)&&setTimeout(()=>{m(s,"swipe"),m(s,`swipe${ea(i.x,i.y,o,r)}`)})})},...t}}function Ge(t,e,i){return{observe:t,handler(){Ve(this,i)},...e}}function ea(t,e,i,s){return Math.abs(t-i)>=Math.abs(e-s)?t-i>0?"Left":"Right":e-s>0?"Up":"Down"}function ia(t){return E(t).map(e=>{const{ownerDocument:i}=e,s=Bt(e,!0);return s===i.scrollingElement?i:s})}var _n={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},observe:[Si({options:{childList:!0}}),Si({options:{attributes:!0,attributeFilter:["style"]}}),dt({handler(t){for(const{borderBoxSize:[{inlineSize:e,blockSize:i}]}of t)if(e||i){this.$emit("resize");return}},target:({$el:t})=>[t,...N(t)]})],update:{read(){return{rows:xs(N(this.$el))}},write({rows:t}){for(const e of t)for(const i of e)L(i,this.margin,t[0]!==e),L(i,this.firstColumn,e[U?e.length-1:0]===i)},events:["resize"]}};function xs(t){const e=[[]],i=t.some((s,n)=>n&&t[n-1].offsetParent!==s.offsetParent);for(const s of t){if(!W(s))continue;const n=$s(s,i);for(let o=e.length-1;o>=0;o--){const r=e[o];if(!r[0]){r.push(s);break}const a=$s(r[0],i);if(n.top>=a.bottom-1&&n.top!==a.top){e.push([s]);break}if(n.bottom-1>a.top||n.top===a.top){let l=r.length-1;for(;l>=0;l--){const c=$s(r[l],i);if(n.left>=c.left)break}r.splice(l+1,0,s);break}if(o===0){e.unshift([s]);break}}}return e}function $s(t,e=!1){let{offsetTop:i,offsetLeft:s,offsetHeight:n,offsetWidth:o}=t;return e&&([i,s]=je(t)),{top:i,left:s,bottom:i+n,right:s+o}}const ys="uk-transition-leave",ks="uk-transition-enter";function An(t,e,i,s=0){const n=Ss(e,!0),o={opacity:1},r={opacity:0},a=()=>n===Ss(e),l=d=>()=>a()?d():Promise.reject(),c=l(async()=>{I(e,ys),await(s?Promise.all(Mn(e).map(async(d,f)=>(await Is(f*s),M.start(d,r,i/2,"ease")))):M.start(e,r,i/2,"ease")),_(e,ys)}),u=l(async()=>{const d=tt(e);I(e,ks),t(),h(s?N(e):e,r),tt(e,d),await Is(),tt(e,"");const f=tt(e);h(e,"alignContent","flex-start"),tt(e,d);let p=[],b=i/2;if(s){const y=Mn(e);h(N(e),r),p=y.map(async(P,it)=>{await Is(it*s),await M.start(P,o,i/2,"ease"),a()&&St(P,o)}),b+=y.length*s}if(!s||d!==f){const y={height:f,...s?{}:o};p.push(M.start(e,y,b,"ease"))}await Promise.all(p),_(e,ks),a()&&(St(e,{height:"",alignContent:"",...o}),delete e.dataset.transition)});return $(e,ys)?On(e).then(u):$(e,ks)?On(e).then(c).then(u):c().then(u)}function Ss(t,e){return e&&(t.dataset.transition=1+Ss(t)),$t(t.dataset.transition)||0}function On(t){return Promise.all(N(t).filter(M.inProgress).map(e=>new Promise(i=>z(e,"transitionend transitioncanceled",i))))}function Mn(t){return xs(N(t)).flat().filter(W)}function Is(t){return new Promise(e=>setTimeout(e,t))}async function sa(t,e,i){await Nn();let s=N(e);const n=s.map(p=>Dn(p,!0)),o={...h(e,["height","padding"]),display:"block"},r=s.concat(e);await Promise.all(r.map(M.cancel)),h(r,"transitionProperty","none"),await t(),s=s.concat(N(e).filter(p=>!v(s,p))),await Promise.resolve(),h(r,"transitionProperty","");const a=k(e,"style"),l=h(e,["height","padding"]),[c,u]=na(e,s,n),d=s.map(p=>({style:k(p,"style")}));s.forEach((p,b)=>u[b]&&h(p,u[b])),h(e,o),m(e,"scroll"),await Nn();const f=s.map((p,b)=>O(p)===e&&M.start(p,c[b],i,"ease")).concat(M.start(e,l,i,"ease"));try{await Promise.all(f),s.forEach((p,b)=>{k(p,d[b]),O(p)===e&&h(p,"display",c[b].opacity===0?"none":"")}),k(e,"style",a)}catch{k(s,"style",""),St(e,o)}}function Dn(t,e){const i=h(t,"zIndex");return W(t)?{display:"",opacity:e?h(t,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:i==="auto"?yt(t):i,...Bn(t)}:!1}function na(t,e,i){const s=e.map((o,r)=>O(o)&&r in i?i[r]?W(o)?Bn(o):{opacity:0}:{opacity:W(o)?1:0}:!1),n=s.map((o,r)=>{const a=O(e[r])===t&&(i[r]||Dn(e[r]));if(!a)return!1;if(!o)delete a.opacity;else if(!("opacity"in o)){const{opacity:l}=a;l%1?o.opacity=1:delete a.opacity}return a});return[s,n]}function Bn(t){const{height:e,width:i}=g(t);return{height:e,width:i,transform:"",...ss(t),...h(t,["marginTop","marginLeft"])}}function Nn(){return new Promise(t=>requestAnimationFrame(t))}var zn={props:{duration:Number,animation:Boolean},data:{duration:150,animation:"slide"},methods:{animate(t,e=this.$el){const i=this.animation;return(i==="fade"?An:i==="delayed-fade"?(...n)=>An(...n,40):i?sa:()=>(t(),Promise.resolve()))(t,e,this.duration).catch(A)}}};function Et(t){t.target.closest('a[href="#"],a[href=""]')&&t.preventDefault()}const B={TAB:9,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};var oa={mixins:[zn],args:"target",props:{target:String,selActive:Boolean},data:{target:"",selActive:!1,attrItem:"uk-filter-control",cls:"uk-active",duration:250},computed:{children:({target:t},e)=>D(`${t} > *`,e),toggles:({attrItem:t},e)=>D(`[${t}],[data-${t}]`,e)},watch:{toggles(t){this.updateState();const e=D(this.selActive,this.$el);for(const i of t){this.selActive!==!1&&L(i,this.cls,v(e,i));const s=ca(i);F(s,"a")&&(s.role="button")}},children(t,e){e&&this.updateState()}},events:{name:"click keydown",delegate:({attrItem:t})=>`[${t}],[data-${t}]`,handler(t){t.type==="keydown"&&t.keyCode!==B.SPACE||t.target.closest("a,button")&&(Et(t),this.apply(t.current))}},methods:{apply(t){const e=this.getState(),i=Hn(t,this.attrItem,this.getState());ra(e,i)||this.setState(i)},getState(){return this.toggles.filter(t=>$(t,this.cls)).reduce((t,e)=>Hn(e,this.attrItem,t),{filter:{"":""},sort:[]})},async setState(t,e=!0){t={filter:{"":""},sort:[],...t},m(this.$el,"beforeFilter",[this,t]);for(const i of this.toggles)L(i,this.cls,la(i,this.attrItem,t));await Promise.all(D(this.target,this.$el).map(i=>{const s=()=>aa(t,i,N(i));return e?this.animate(s,i):s()})),m(this.$el,"afterFilter",[this])},updateState(){Dt.write(()=>this.setState(this.getState(),!1))}}};function Fn(t,e){return ve(Z(t,e),["filter"])}function ra(t,e){return["filter","sort"].every(i=>Ae(t[i],e[i]))}function aa(t,e,i){for(const o of i)h(o,"display",Object.values(t.filter).every(r=>!r||T(o,r))?"":"none");const[s,n]=t.sort;if(s){const o=ha(i,s,n);Ae(o,i)||j(e,o)}}function Hn(t,e,i){const{filter:s,group:n,sort:o,order:r="asc"}=Fn(t,e);return(s||X(o))&&(n?s?(delete i.filter[""],i.filter[n]=s):(delete i.filter[n],(ni(i.filter)||""in i.filter)&&(i.filter={"":s||""})):i.filter={"":s||""}),X(o)||(i.sort=[o,r]),i}function la(t,e,{filter:i={"":""},sort:[s,n]}){const{filter:o="",group:r="",sort:a,order:l="asc"}=Fn(t,e);return X(a)?r in i&&o===i[r]||!o&&r&&!(r in i)&&!i[""]:s===a&&n===l}function ha(t,e,i){return[...t].sort((s,n)=>Z(s,e).localeCompare(Z(n,e),void 0,{numeric:!0})*(i==="asc"||-1))}function ca(t){return x("a,button",t)||t}var ua={args:"dataSrc",props:{dataSrc:String,sources:String,margin:String,target:String,loading:String},data:{dataSrc:"",sources:!1,margin:"50%",target:!1,loading:"lazy"},connected(){this.loading!=="lazy"?this.load():Cs(this.$el)&&(this.$el.loading="lazy",Es(this.$el))},disconnected(){this.img&&(this.img.onload=""),delete this.img},observe:be({handler(t,e){this.load(),e.disconnect()},options:({margin:t})=>({rootMargin:t}),filter:({loading:t})=>t==="lazy",target:({$el:t,$props:e})=>e.target?[t,...ze(e.target,t)]:t}),methods:{load(){if(this.img)return this.img;const t=Cs(this.$el)?this.$el:fa(this.$el,this.dataSrc,this.sources);return Oe(t,"loading"),Es(this.$el,t.currentSrc),this.img=t}}};function Es(t,e){if(Cs(t)){const i=O(t);(F(i,"picture")?N(i):[t]).forEach(n=>Ln(n,n))}else e&&!v(t.style.backgroundImage,e)&&(h(t,"backgroundImage",`url(${Ji(e)})`),m(t,pe("load",!1)))}const da=["data-src","data-srcset","sizes"];function Ln(t,e){for(const i of da){const s=Z(t,i);s&&k(e,i.replace(/data-/g,""),s)}}function fa(t,e,i){const s=new Image;return Wn(s,i),Ln(t,s),s.onload=()=>Es(t,s.currentSrc),s.src=e,s}function Wn(t,e){if(e=pa(e),e.length){const i=It("<picture>");for(const s of e){const n=It("<source>");k(n,s),j(i,n)}j(i,t)}}function pa(t){if(!t)return[];if(wt(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=ve(t);return J(t)||(t=[t]),t.filter(e=>!ni(e))}function Cs(t){return F(t,"img")}let Ts;function jn(t){const e=w(t,"touchstart",n=>{if(n.targetTouches.length!==1||T(n.target,'input[type="range"'))return;let o=kt(n).y;const r=w(t,"touchmove",a=>{const l=kt(a).y;l!==o&&(o=l,Gt(a.target).some(c=>{if(!t.contains(c))return!1;let{scrollHeight:u,clientHeight:d}=c;return d<u})||a.preventDefault())},{passive:!1});z(t,"scroll touchend touchcanel",r,{capture:!0})},{passive:!0});if(Ts)return e;Ts=!0;const{scrollingElement:i}=document,s={overflowY:CSS.supports("overflow","clip")?"clip":"hidden",touchAction:"none",paddingRight:vi(window)-i.clientWidth||""};return h(i,s),()=>{Ts=!1,e(),St(i,s)}}var Xe={props:{container:Boolean},data:{container:!0},computed:{container({container:t}){return t===!0&&this.$container||t&&x(t)}}},Rn={props:{pos:String,offset:Boolean,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:`bottom-${U?"right":"left"}`,offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=v(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let s=[this.getPositionOffset(t),this.getShiftOffset(t)];const n=[this.flip&&"flip",this.shift&&"shift"],o={element:[this.inset?this.dir:bi(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const l in o)o[l].reverse();s.reverse(),n.reverse()}const r=Ei(t),a=g(t);h(t,{top:-a.height,left:-a.width}),xn(t,e,{attach:o,offset:s,boundary:i,placement:n,viewportOffset:this.getViewportOffset(t)}),r()},getPositionOffset(t=this.$el){return G(this.offset===!1?h(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(v(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t=this.$el){return this.align==="center"?0:G(h(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(v(["left","top"],this.align)?1:-1)},getViewportOffset(t){return G(h(t,"--uk-position-viewport-offset"))}}};function Ei(t){const e=Bt(t),{scrollTop:i}=e;return()=>{i!==e.scrollTop&&(e.scrollTop=i)}}var Jt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglable-enter",clsLeave:"uk-togglable-leave"},computed:{hasAnimation:({animation:t})=>!!t[0],hasTransition:({animation:t})=>["slide","reveal"].some(e=>wt(t[0],e))},methods:{async toggleElement(t,e,i){try{return await Promise.all(E(t).map(s=>{const n=ae(e)?e:!this.isToggled(s);if(!m(s,`before${n?"show":"hide"}`,[this]))return Promise.reject();const o=(ot(i)?i:i===!1||!this.hasAnimation?ga:this.hasTransition?ma:va)(s,n,this),r=n?this.clsEnter:this.clsLeave;I(s,r),m(s,n?"show":"hide",[this]);const a=()=>{var l;if(_(s,r),m(s,n?"shown":"hidden",[this]),n){const c=Ei(s);(l=D("[autofocus]",s).find(W))==null||l.focus(),c()}};return o?o.then(a,()=>(_(s,r),Promise.reject())):a()})),!0}catch{return!1}},isToggled(t=this.$el){return t=q(t),$(t,this.clsEnter)?!0:$(t,this.clsLeave)?!1:this.cls?$(t,this.cls.split(" ")[0]):W(t)},_toggle(t,e){if(!t)return;e=!!e;let i;this.cls?(i=v(this.cls," ")||e!==$(t,this.cls),i&&L(t,this.cls,v(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),i&&m(t,"toggled",[e,this])}}};function ga(t,e,{_toggle:i}){return Ot.cancel(t),M.cancel(t),i(t,e)}async function ma(t,e,{animation:i,duration:s,velocity:n,transition:o,_toggle:r}){var a;const[l="reveal",c="top"]=((a=i[0])==null?void 0:a.split("-"))||[],u=[["left","right"],["top","bottom"]],d=u[v(u[0],c)?0:1],f=d[1]===c,b=["width","height"][u.indexOf(d)],y=`margin-${d[0]}`,P=`margin-${c}`;let it=g(t)[b];const Ct=M.inProgress(t);await M.cancel(t),e&&r(t,!0);const zt=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",y,P].map(ar=>[ar,t.style[ar]])),bt=g(t),Us=S(h(t,y)),nr=S(h(t,P)),se=bt[b]+nr;!Ct&&!e&&(it+=nr);const[Wi]=is(t,"<div>");h(Wi,{boxSizing:"border-box",height:bt.height,width:bt.width,...h(t,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",P])}),h(t,{padding:0,border:0,minWidth:0,minHeight:0,[P]:0,width:bt.width,height:bt.height,overflow:"hidden",[b]:it});const or=it/se;s=(n*se+s)*(e?1-or:or);const rr={[b]:e?se:0};f&&(h(t,y,se-it+Us),rr[y]=e?Us:se+Us),!f^l==="reveal"&&(h(Wi,y,-se+it),M.start(Wi,{[y]:e?0:-se},s,o));try{await M.start(t,rr,s,o)}finally{h(t,zt),We(Wi.firstChild),e||r(t,!1)}}function va(t,e,i){const{animation:s,duration:n,_toggle:o}=i;return e?(o(t,!0),Ot.in(t,s[0],n,i.origin)):Ot.out(t,s[1]||s[0],n,i.origin).then(()=>o(t,!1))}const nt=[];var Ps={mixins:[st,Xe,Jt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel:({selPanel:t},e)=>x(t,e),transitionElement(){return this.panel}},connected(){const t=this.panel||this.$el;t.role=this.role,this.overlay&&(t.ariaModal=!0)},beforeDisconnect(){v(nt,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:({selClose:t})=>`${t},a[href*="#"]`,handler(t){const{current:e,defaultPrevented:i}=t,{hash:s}=e;!i&&s&&fe(e)&&!this.$el.contains(x(s))?this.hide():T(e,this.selClose)&&(Et(t),this.hide())}},{name:"toggle",self:!0,handler(t,e){t.defaultPrevented||(t.preventDefault(),this.target=e==null?void 0:e.$el,this.isToggled()===v(nt,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(v(nt,this))return!1;!this.stack&&nt.length?(Promise.all(nt.map(e=>e.hide())).then(this.show),t.preventDefault()):nt.push(this)}},{name:"show",self:!0,handler(){this.stack&&h(this.$el,"zIndex",S(h(this.$el,"zIndex"))+nt.length);const t=[this.overlay&&wa(this),this.overlay&&jn(this.$el),this.bgClose&&xa(this),this.escClose&&$a(this)];z(this.$el,"hidden",()=>t.forEach(e=>e&&e()),{self:!0}),I(document.documentElement,this.clsPage),Un(this.target,!0)}},{name:"shown",self:!0,handler(){Be(this.$el)||(this.$el.tabIndex=-1),T(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){v(nt,this)&&nt.splice(nt.indexOf(this),1),h(this.$el,"zIndex","");const{target:t}=this;nt.some(e=>e.clsPage===this.clsPage)||(_(document.documentElement,this.clsPage),queueMicrotask(()=>{if(Be(t)){const e=Ei(t);t.focus(),e()}})),Un(t,!1),this.target=null}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&O(this.$el)!==this.container?(j(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,qn)},hide(){return this.toggleElement(this.$el,!1,qn)}}};function qn(t,e,{transitionElement:i,_toggle:s}){return new Promise((n,o)=>z(t,"show hide",()=>{var r;(r=t._reject)==null||r.call(t),t._reject=o,s(t,e);const a=z(i,"transitionstart",()=>{z(i,"transitionend transitioncancel",n,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),n()},ba(h(i,"transitionDuration")))})).then(()=>delete t._reject)}function ba(t){return t?ne(t,"ms")?S(t):S(t)*1e3:0}function wa(t){return w(document,"focusin",e=>{Wt(nt)===t&&!t.$el.contains(e.target)&&t.$el.focus()})}function xa(t){return w(document,ut,({target:e})=>{Wt(nt)!==t||t.overlay&&!t.$el.contains(e)||!t.panel||t.panel.contains(e)||z(document,`${_t} ${hi} scroll`,({defaultPrevented:i,type:s,target:n})=>{!i&&s===_t&&e===n&&t.hide()},!0)})}function $a(t){return w(document,"keydown",e=>{e.keyCode===27&&Wt(nt)===t&&t.hide()})}function Un(t,e){t!=null&&t.ariaExpanded&&(t.ariaExpanded=e)}var _s={slide:{show(t){return[{transform:R(t*-100)},{transform:R()}]},percent(t){return Je(t)},translate(t,e){return[{transform:R(e*-100*t)},{transform:R(e*100*(1-t))}]}}};function Je(t){return Math.abs(new DOMMatrix(h(t,"transform")).m41/t.offsetWidth)}function R(t=0,e="%"){return t?`translate3d(${t+e}, 0, 0)`:""}function ya(t,e,i,{animation:s,easing:n}){const{percent:o,translate:r,show:a=A}=s,l=a(i),{promise:c,resolve:u}=Vn();return{dir:i,show(d,f=0,p){const b=p?"linear":n;return d-=Math.round(d*K(f,-1,1)),this.translate(f),Kt(e,"itemin",{percent:f,duration:d,timing:b,dir:i}),Kt(t,"itemout",{percent:1-f,duration:d,timing:b,dir:i}),Promise.all([M.start(e,l[1],d,b),M.start(t,l[0],d,b)]).then(()=>{this.reset(),u()},A),c},cancel(){return M.cancel([e,t])},reset(){St([e,t],l[0])},async forward(d,f=this.percent()){return await this.cancel(),this.show(d,f,!0)},translate(d){this.reset();const f=r(d,i);h(e,f[1]),h(t,f[0]),Kt(e,"itemtranslatein",{percent:d,dir:i}),Kt(t,"itemtranslateout",{percent:1-d,dir:i})},percent(){return o(t||e,e,i)},getDistance(){return t==null?void 0:t.offsetWidth}}}function Kt(t,e,i){m(t,pe(e,!1,!1,i))}function Vn(){let t;return{promise:new Promise(e=>t=e),resolve:t}}var Ci={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var i,s,n;let o=0;return((n=((i=this.i18n)==null?void 0:i[t])||((s=this.$options.i18n)==null?void 0:s[t]))==null?void 0:n.replace(/%s/g,()=>e[o++]||""))||""}}},ka={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){k(this.list,"aria-live",this.autoplay?"off":"polite"),this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){k(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el:()=>document,filter:({autoplay:t})=>t,handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>{this.stack.length||!W(this.$el)||this.draggable&&T(this.$el,":focus-within")&&!T(this.$el,":focus")||this.pauseOnHover&&T(this.$el,":hover")||this.show("next")},this.autoplayInterval)},stopAutoplay(){clearInterval(this.interval)}}};const Ti={passive:!1,capture:!0},Yn={passive:!0,capture:!0},Sa="touchstart mousedown",As="touchmove mousemove",Gn="touchend touchcancel mouseup click input scroll";var Ia={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const e=this[t];this[t]=i=>{const s=kt(i).x*(U?-1:1);this.prevPos=s===this.pos?this.prevPos:this.pos,this.pos=s,e(i)}}},events:[{name:Sa,passive:!0,delegate:({selList:t})=>`${t} > *`,handler(t){!this.draggable||this.parallax||!pt(t)&&Ea(t.target)||t.target.closest(De)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}},{name:As,el:({list:t})=>t,handler:A,...Ti}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,w(document,As,this.move,Ti),w(document,Gn,this.end,Yn),h(this.list,"userSelect","none")},move(t){const e=this.pos-this.drag;if(e===0||this.prevPos===this.pos||!this.dragging&&Math.abs(e)<this.threshold)return;t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=e<0?1:-1;let{slides:i,prevIndex:s}=this,n=Math.abs(e),o=this.getIndex(s+this.dir),r=Xn.call(this,s,o);for(;o!==s&&n>r;)this.drag-=r*this.dir,s=o,n-=r,o=this.getIndex(s+this.dir),r=Xn.call(this,s,o);this.percent=n/r;const a=i[s],l=i[o],c=this.index!==o,u=s===o;let d;for(const f of[this.index,this.prevIndex])v([o,s],f)||(m(i[f],"itemhidden",[this]),u&&(d=!0,this.prevIndex=s));(this.index===s&&this.prevIndex!==s||d)&&m(i[this.index],"itemshown",[this]),c&&(this.prevIndex=s,this.index=o,u||(m(a,"beforeitemhide",[this]),m(a,"itemhide",[this])),m(l,"beforeitemshow",[this]),m(l,"itemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!u&&l)},end(){if(Vt(document,As,this.move,Ti),Vt(document,Gn,this.end,Yn),this.dragging)if(setTimeout(w(this.list,"click",t=>t.preventDefault(),Ti)),this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(U?this.dir*(U?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(m(this.slides[this.prevIndex],"itemhidden",[this]),m(this.slides[this.index],"itemshown",[this]),this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}h(this.list,{userSelect:""}),this.drag=this.percent=null}}};function Xn(t,e){return this._getTransitioner(t,t!==e&&e).getDistance()||this.slides[t].offsetWidth}function Ea(t){return h(t,"userSelect")!=="none"&&oe(t.childNodes).some(e=>e.nodeType===3&&e.textContent.trim())}function Ca(t){t._watches=[];for(const e of t.$options.watch||[])for(const[i,s]of Object.entries(e))Jn(t,s,i);t._initial=!0}function Jn(t,e,i){t._watches.push({name:i,...Ce(e)?e:{handler:e}})}function Ta(t,e){for(const{name:i,handler:s,immediate:n=!0}of t._watches)(t._initial&&n||gt(e,i)&&!Ae(e[i],t[i]))&&s.call(t,t[i],e[i]);t._initial=!1}function Pa(t){const{computed:e}=t.$options;if(t._computed={},e)for(const i in e)Zn(t,i,e[i])}const Kn={subtree:!0,childList:!0};function Zn(t,e,i){t._hasComputed=!0,Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:s,$props:n,$el:o}=t;if(!gt(s,e)&&(s[e]=(i.get||i).call(t,n,o),i.observe&&t._computedObserver)){const r=i.observe.call(t,n);t._computedObserver.observe(["~","+","-"].includes(r[0])?o.parentElement:o.getRootNode(),Kn)}return s[e]},set(s){const{_computed:n}=t;n[e]=i.set?i.set.call(t,s):s,X(n[e])&&delete n[e]}})}function _a(t){t._hasComputed&&(Qr(t,{read:()=>Ta(t,Qn(t)),events:["resize","computed"]}),t._computedObserver=as(t.$el,()=>Ve(t,"computed"),Kn),t._disconnect.push(()=>{t._computedObserver.disconnect(),t._computedObserver=null,Qn(t)}))}function Qn(t){const e={...t._computed};return t._computed={},e}function Aa(t){for(const e of t.$options.events||[])if(gt(e,"handler"))to(t,e);else for(const i in e)to(t,{name:i,handler:e[i]})}function to(t,{name:e,el:i,handler:s,capture:n,passive:o,delegate:r,filter:a,self:l}){a&&!a.call(t,t)||t._disconnect.push(w(i?i.call(t,t):t.$el,e,r==null?void 0:r.call(t,t),s.bind(t),{passive:o,capture:n,self:l}))}function Oa(t){for(const e of t.$options.observe||[])Ma(t,e)}function Ma(t,e){let{observe:i,target:s=t.$el,handler:n,options:o,filter:r,args:a}=e;if(r&&!r.call(t,t))return;const l=`_observe${t._disconnect.length}`;ot(s)&&!gt(t,l)&&Zn(t,l,()=>{const d=s.call(t,t);return J(d)?E(d):d}),n=H(n)?t[n]:n.bind(t),ot(o)&&(o=o.call(t,t));const c=gt(t,l)?t[l]:s,u=i(c,n,o,a);ot(s)&&J(t[l])&&Jn(t,{handler:Da(u,o),immediate:!1},l),t._disconnect.push(()=>u.disconnect())}function Da(t,e){return(i,s)=>{for(const n of s)v(i,n)||(t.unobserve?t.unobserve(n):t.observe&&t.disconnect());for(const n of i)(!v(s,n)||!t.unobserve)&&t.observe(n,e)}}function Ba(t){const{$options:e,$props:i}=t,s=eo(e);ft(i,s);const{computed:n,methods:o}=e;for(let r in i)r in s&&(!n||!gt(n,r))&&(!o||!gt(o,r))&&(t[r]=i[r])}function eo(t){const e={},{args:i=[],props:s={},el:n,id:o}=t;if(!s)return e;for(const a in s){const l=Ft(a);let c=Z(n,l);X(c)||(c=s[a]===Boolean&&c===""?!0:bs(s[a],c),!(l==="target"&&wt(c,"_"))&&(e[a]=c))}const r=ve(Z(n,o),i);for(const a in r){const l=Ee(a);X(s[l])||(e[l]=bs(s[l],r[a]))}return e}const Na=ct((t,e)=>{const i=Object.keys(e),s=i.concat(t).map(n=>[Ft(n),`data-${Ft(n)}`]).flat();return{attributes:i,filter:s}});function za(t){const{$options:e,$props:i}=t,{id:s,props:n,el:o}=e;if(!n)return;const{attributes:r,filter:a}=Na(s,n),l=new MutationObserver(c=>{const u=eo(e);c.some(({attributeName:d})=>{const f=d.replace("data-","");return(f===s?r:[Ee(f),Ee(d)]).some(p=>!X(u[p])&&u[p]!==i[p])})&&t.$reset()});l.observe(o,{attributes:!0,attributeFilter:a}),t._disconnect.push(()=>l.disconnect())}function we(t,e){var i;(i=t.$options[e])==null||i.forEach(s=>s.call(t))}function Os(t){t._connected||(Ba(t),we(t,"beforeConnect"),t._connected=!0,t._disconnect=[],Aa(t),Zr(t),Ca(t),Oa(t),za(t),_a(t),we(t,"connected"),Ve(t))}function Ms(t){t._connected&&(we(t,"beforeDisconnect"),t._disconnect.forEach(e=>e()),t._disconnect=null,we(t,"disconnected"),t._connected=!1)}let Fa=0;function io(t,e={}){e.data=Wa(e,t.constructor.options),t.$options=Ue(t.constructor.options,e,t),t.$props={},t._uid=Fa++,Ha(t),La(t),Pa(t),we(t,"created"),e.el&&t.$mount(e.el)}function Ha(t){const{data:e={}}=t.$options;for(const i in e)t.$props[i]=t[i]=e[i]}function La(t){const{methods:e}=t.$options;if(e)for(const i in e)t[i]=e[i].bind(t)}function Wa({data:t={}},{args:e=[],props:i={}}){J(t)&&(t=t.slice(0,e.length).reduce((s,n,o)=>(Ce(n)?ft(s,n):s[e[o]]=n,s),{}));for(const s in t)X(t[s])?delete t[s]:i[s]&&(t[s]=bs(i[s],t[s]));return t}const ht=function(t){io(this,t)};ht.util=Ur,ht.options={},ht.version="3.23.13";const ja="uk-",Zt="__uikit__",xe={};function so(t,e){var i,s;const n=ja+Ft(t);if(!e)return xe[n].options||(xe[n]=ht.extend(xe[n])),xe[n];t=Ee(t),ht[t]=(r,a)=>Ke(t,r,a);const o=(i=e.options)!=null?i:{...e};return o.id=n,o.name=t,(s=o.install)==null||s.call(o,ht,o,t),ht._initialized&&!o.functional&&requestAnimationFrame(()=>Ke(t,`[${n}],[data-${n}]`)),xe[n]=o}function Ke(t,e,i,...s){const n=so(t);return n.options.functional?new n({data:Ce(e)?e:[e,i,...s]}):e?D(e).map(o)[0]:o();function o(r){const a=Pi(r,t);if(a)if(i)a.$destroy();else return a;return new n({el:r,data:i})}}function Ze(t){return(t==null?void 0:t[Zt])||{}}function Pi(t,e){return Ze(t)[e]}function Ra(t,e){t[Zt]||(t[Zt]={}),t[Zt][e.$options.name]=e}function qa(t,e){var i;(i=t[Zt])==null||delete i[e.$options.name],ni(t[Zt])&&delete t[Zt]}function Ua(t){t.component=so,t.getComponents=Ze,t.getComponent=Pi,t.update=no,t.use=function(i){if(!i.installed)return i.call(null,this),i.installed=!0,this},t.mixin=function(i,s){s=(H(s)?this.component(s):s)||this,s.options=Ue(s.options,i)},t.extend=function(i){i||(i={});const s=this,n=function(r){io(this,r)};return n.prototype=Object.create(s.prototype),n.prototype.constructor=n,n.options=Ue(s.options,i),n.super=s,n.extend=s.extend,n};let e;Object.defineProperty(t,"container",{get(){return e||document.body},set(i){e=x(i)}})}function no(t,e){t=t?q(t):document.body;for(const i of de(t).reverse())oo(i,e);Mt(t,i=>oo(i,e))}function oo(t,e){const i=Ze(t);for(const s in i)Ve(i[s],e)}function Va(t){t.prototype.$mount=function(e){const i=this;Ra(e,i),i.$options.el=e,e.isConnected&&Os(i)},t.prototype.$destroy=function(e=!1){const i=this,{el:s}=i.$options;s&&Ms(i),we(i,"destroy"),qa(s,i),e&&Q(i.$el)},t.prototype.$create=Ke,t.prototype.$emit=function(e){Ve(this,e)},t.prototype.$update=function(e=this.$el,i){no(e,i)},t.prototype.$reset=function(){Ms(this),Os(this)},t.prototype.$getComponent=Pi,Object.defineProperties(t.prototype,{$el:{get(){return this.$options.el}},$container:Object.getOwnPropertyDescriptor(t,"container")})}let Ya=1;function Qt(t,e=null){return(e==null?void 0:e.id)||`${t.$options.id}-${Ya++}`}var Ga={i18n:{next:"Next slide",previous:"Previous slide",slideX:"Slide %s",slideLabel:"%s of %s",role:"String"},data:{selNav:!1,role:"region"},computed:{nav:({selNav:t},e)=>x(t,e),navChildren(){return N(this.nav)},selNavItem:({attrItem:t})=>`[${t}],[data-${t}]`,navItems(t,e){return D(this.selNavItem,e)}},watch:{nav(t,e){k(t,"role","tablist"),this.padNavitems(),e&&this.$emit()},list(t){F(t,"ul")&&k(t,"role","presentation")},navChildren(t){k(t,"role","presentation"),this.padNavitems(),this.updateNav()},navItems(t){for(const e of t){const i=Z(e,this.attrItem),s=x("a,button",e)||e;let n,o=null;if(mt(i)){const r=$t(i),a=this.slides[r];a&&(a.id||(a.id=Qt(this,a)),o=a.id),n=this.t("slideX",S(i)+1),s.role="tab"}else this.list&&(this.list.id||(this.list.id=Qt(this,this.list)),o=this.list.id),n=this.t(i);s.ariaControls=o,s.ariaLabel=s.ariaLabel||n}},slides(t){t.forEach((e,i)=>k(e,{role:this.nav?"tabpanel":"group","aria-label":this.t("slideLabel",i+1,this.length),"aria-roledescription":this.nav?null:"slide"})),this.padNavitems()}},connected(){this.$el.role=this.role,this.$el.ariaRoleDescription="carousel"},update:[{write(){this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]}],events:[{name:"click keydown",delegate:({selNavItem:t})=>t,filter:({parallax:t})=>!t,handler(t){t.target.closest("a,button")&&(t.type==="click"||t.keyCode===B.SPACE)&&(Et(t),this.show(Z(t.current,this.attrItem)))}},{name:"itemshow",handler(){this.updateNav()}},{name:"keydown",delegate:({selNavItem:t})=>t,filter:({parallax:t})=>!t,handler(t){const{current:e,keyCode:i}=t,s=Z(e,this.attrItem);if(!mt(s))return;let n=i===B.HOME?0:i===B.END?"last":i===B.LEFT?"previous":i===B.RIGHT?"next":-1;~n&&(t.preventDefault(),this.show(n))}}],methods:{updateNav(){const t=this.getValidIndex();for(const e of this.navItems){const i=Z(e,this.attrItem),s=x("a,button",e)||e;if(mt(i)){const o=$t(i)===t;L(e,this.clsActive,o),L(s,"uk-disabled",!!this.parallax),s.ariaSelected=o,s.tabIndex=o&&!this.parallax?null:-1,o&&s&&T(O(e),":focus-within")&&s.focus()}else L(e,"uk-invisible",this.finite&&(i==="previous"&&t===0||i==="next"&&t>=this.maxIndex))}},padNavitems(){if(!this.nav)return;const t=[];for(let e=0;e<this.length;e++){const i=`${this.attrItem}="${e}"`;t[e]=this.navChildren.findLast(s=>s.matches(`[${i}]`))||x(`<li ${i}><a href></a></li>`)}Ae(t,this.navChildren)||vt(this.nav,t)}}};const Xa="cubic-bezier(0.25, 0.46, 0.45, 0.94)",Ja="cubic-bezier(0.165, 0.84, 0.44, 1)";var ro={mixins:[ka,Ia,Ga,Ci],props:{clsActivated:String,easing:String,index:Number,finite:Boolean,velocity:Number},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:"",clsEnter:"uk-slide-enter",clsLeave:"uk-slide-leave",clsSlideActive:"uk-slide-active",Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){_(this.slides,this.clsActive)},computed:{duration:({velocity:t},e)=>ao(e.offsetWidth/t),list:({selList:t},e)=>x(t,e),maxIndex(){return this.length-1},slides(){return N(this.list)},length(){return this.slides.length}},watch:{slides(t,e){e&&this.$emit()}},events:{itemshow({target:t}){I(t,this.clsEnter,this.clsSlideActive)},itemshown({target:t}){_(t,this.clsEnter)},itemhide({target:t}){I(t,this.clsLeave)},itemhidden({target:t}){_(t,this.clsLeave,this.clsSlideActive)}},methods:{async show(t,e=!1){var i;if(this.dragging||!this.length||this.parallax)return;const{stack:s}=this,n=e?0:s.length,o=()=>{s.splice(n,1),s.length&&this.show(s.shift(),!0)};if(s[e?"unshift":"push"](t),!e&&s.length>1){s.length===2&&((i=this._transitioner)==null||i.forward(Math.min(this.duration,200)));return}const r=this.getIndex(this.index),a=$(this.slides,this.clsActive)&&this.slides[r],l=this.getIndex(t,this.index),c=this.slides[l];if(a===c){o();return}if(this.dir=Ka(t,r),this.prevIndex=r,this.index=l,a&&!m(a,"beforeitemhide",[this])||!m(c,"beforeitemshow",[this,a])){this.index=this.prevIndex,o();return}a&&m(a,"itemhide",[this]),m(c,"itemshow",[this]),await this._show(a,c,e),a&&m(a,"itemhidden",[this]),m(c,"itemshown",[this]),s.shift(),this._transitioner=null,s.length&&requestAnimationFrame(()=>s.length&&this.show(s.shift(),!0))},getIndex(t=this.index,e=this.index){return K(rt(t,this.slides,e,this.finite),0,Math.max(0,this.maxIndex))},getValidIndex(t=this.index,e=this.prevIndex){return this.getIndex(t,e)},async _show(t,e,i){if(this._transitioner=this._getTransitioner(t,e,this.dir,{easing:i?e.offsetWidth<600?Xa:Ja:this.easing,...this.transitionOptions}),!i&&!t){this._translate(1);return}const{length:s}=this.stack;return this._transitioner[s>1?"forward":"show"](s>1?Math.min(this.duration,75+75/(s-1)):this.duration,this.percent)},_translate(t,e=this.prevIndex,i=this.index){const s=this._getTransitioner(e===i?!1:e,i);return s.translate(t),s},_getTransitioner(t=this.prevIndex,e=this.index,i=this.dir||1,s=this.transitionOptions){return new this.Transitioner(_e(t)?this.slides[t]:t,_e(e)?this.slides[e]:e,i*(U?-1:1),s)}}};function Ka(t,e){return t==="next"?1:t==="previous"||t<e?-1:1}function ao(t){return .5*t+300}var lo={mixins:[ro],props:{animation:String},data:{animation:"slide",clsActivated:"uk-transition-active",Animations:_s,Transitioner:ya},computed:{animation({animation:t,Animations:e}){return{...e[t]||e.slide,name:t}},transitionOptions(){return{animation:this.animation}}},observe:dt(),events:{itemshow({target:t}){I(t,this.clsActive)},itemshown({target:t}){I(t,this.clsActivated)},itemhidden({target:t}){_(t,this.clsActive,this.clsActivated)}}},Za={..._s,fade:{show(){return[{opacity:0,zIndex:0},{zIndex:-1}]},percent(t){return 1-h(t,"opacity")},translate(t){return[{opacity:1-t,zIndex:0},{zIndex:-1}]}},scale:{show(){return[{opacity:0,transform:$e(1+.5),zIndex:0},{zIndex:-1}]},percent(t){return 1-h(t,"opacity")},translate(t){return[{opacity:1-t,transform:$e(1+.5*t),zIndex:0},{zIndex:-1}]}},pull:{show(t){return t<0?[{transform:R(30),zIndex:-1},{transform:R(),zIndex:0}]:[{transform:R(-100),zIndex:0},{transform:R(),zIndex:-1}]},percent(t,e,i){return i<0?1-Je(e):Je(t)},translate(t,e){return e<0?[{transform:R(30*t),zIndex:-1},{transform:R(-100*(1-t)),zIndex:0}]:[{transform:R(-t*100),zIndex:0},{transform:R(30*(1-t)),zIndex:-1}]}},push:{show(t){return t<0?[{transform:R(100),zIndex:0},{transform:R(),zIndex:-1}]:[{transform:R(-30),zIndex:-1},{transform:R(),zIndex:0}]},percent(t,e,i){return i>0?1-Je(e):Je(t)},translate(t,e){return e<0?[{transform:R(t*100),zIndex:0},{transform:R(-30*(1-t)),zIndex:-1}]:[{transform:R(-30*t),zIndex:-1},{transform:R(100*(1-t)),zIndex:0}]}}};function $e(t){return`scale3d(${t}, ${t}, 1)`}var ho={..._s,fade:{show(){return[{opacity:0},{opacity:1}]},percent(t){return 1-h(t,"opacity")},translate(t){return[{opacity:1-t},{opacity:t}]}},scale:{show(){return[{opacity:0,transform:$e(1-.2)},{opacity:1,transform:$e(1)}]},percent(t){return 1-h(t,"opacity")},translate(t){return[{opacity:1-t,transform:$e(1-.2*t)},{opacity:t,transform:$e(1-.2+.2*t)}]}}},co={i18n:{counter:"%s / %s"},mixins:[Ps,lo],functional:!0,props:{counter:Boolean,preload:Number,nav:Boolean,slidenav:Boolean,delayControls:Number,videoAutoplay:Boolean,template:String},data:()=>({counter:!1,preload:1,nav:!1,slidenav:!0,delayControls:3e3,videoAutoplay:!1,items:[],cls:"uk-open",clsPage:"uk-lightbox-page",clsFit:"uk-lightbox-items-fit",clsZoom:"uk-lightbox-zoom",attrItem:"uk-lightbox-item",selList:".uk-lightbox-items",selClose:".uk-close-large",selNav:".uk-lightbox-thumbnav, .uk-lightbox-dotnav",selCaption:".uk-lightbox-caption",selCounter:".uk-lightbox-counter",pauseOnHover:!1,velocity:2,Animations:ho,template:'<div class="uk-lightbox uk-overflow-hidden"> <div class="uk-lightbox-items"></div> <div class="uk-position-top-right uk-position-small uk-transition-fade" uk-inverse> <button class="uk-lightbox-close uk-close-large" type="button" uk-close></button> </div> <div class="uk-lightbox-slidenav uk-position-center-left uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-previous uk-lightbox-item="previous"></a> </div> <div class="uk-lightbox-slidenav uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-next uk-lightbox-item="next"></a> </div> <div class="uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse style="max-height: 90vh; overflow: auto;"> <ul class="uk-lightbox-thumbnav uk-lightbox-thumbnav-vertical uk-thumbnav uk-thumbnav-vertical"></ul> <ul class="uk-lightbox-dotnav uk-dotnav uk-dotnav-vertical"></ul> </div> <div class="uk-lightbox-counter uk-text-large uk-position-top-left uk-position-small uk-transition-fade" uk-inverse></div> <div class="uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>'}),created(){let t=x(this.template);F(t,"template")&&(t=It(vt(t)));const e=x(this.selList,t),i=this.$props.nav;Q(D(this.selNav,t).filter(o=>!T(o,`.uk-${i}`)));for(const[o,r]of this.items.entries())j(e,"<div>"),i==="thumbnav"&&Le(Qa(r,this.videoAutoplay),j(x(this.selNav,t),`<li uk-lightbox-item="${o}"><a href></a></li>`));this.slidenav||Q(D(".uk-lightbox-slidenav",t)),this.counter||Q(x(this.selCounter,t)),I(e,this.clsFit);const s=x("[uk-close]",t),n=this.t("close");s&&n&&(s.dataset.i18n=JSON.stringify({label:n})),this.$mount(j(this.container,t))},events:[{name:"click",self:!0,filter:({bgClose:t})=>t,delegate:({selList:t})=>`${t} > *`,handler(t){t.defaultPrevented||this.hide()}},{name:"click",self:!0,delegate:({clsZoom:t})=>`.${t}`,handler(t){t.defaultPrevented||L(this.list,this.clsFit)}},{name:`${Me} ${ut} keydown`,filter:({delayControls:t})=>t,handler(){this.showControls()}},{name:"shown",self:!0,handler(){this.showControls()}},{name:"hide",self:!0,handler(){this.hideControls(),_(this.slides,this.clsActive),M.stop(this.slides)}},{name:"hidden",self:!0,handler(){this.$destroy(!0)}},{name:"keyup",el:()=>document,handler({keyCode:t}){if(!this.isToggled()||!this.draggable)return;let e=-1;t===B.LEFT?e="previous":t===B.RIGHT?e="next":t===B.HOME?e=0:t===B.END&&(e="last"),~e&&this.show(e)}},{name:"beforeitemshow",handler(t){vt(x(this.selCaption,this.$el),this.getItem().caption||""),vt(x(this.selCounter,this.$el),this.t("counter",this.index+1,this.slides.length));for(let e=-this.preload;e<=this.preload;e++)this.loadItem(this.index+e);this.isToggled()||(this.draggable=!1,t.preventDefault(),this.toggleElement(this.$el,!0,!1),this.animation=ho.scale,_(t.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshown",handler(){this.draggable=this.$props.draggable}},{name:"itemload",async handler(t,e){const{source:i,type:s,attrs:n={}}=e;if(this.setItem(e,"<span uk-spinner uk-inverse></span>"),!i)return;let o;const r={allowfullscreen:"",style:"max-width: 100%; box-sizing: border-box;","uk-responsive":"","uk-video":`${!!this.videoAutoplay}`};if(s==="image"||uo(i)){const a=Nt("img");Wn(a,e.sources),k(a,{src:i,...oi(e,["alt","srcset","sizes"]),...n}),w(a,"load",()=>this.setItem(e,O(a)||a)),w(a,"error",()=>this.setError(e))}else if(s==="video"||fo(i)){const a=this.videoAutoplay==="inline",l=Nt("video",{src:i,playsinline:"",controls:a?null:"",loop:a?"":null,poster:this.videoAutoplay?null:e.poster,"uk-video":a?"automute: true":!!this.videoAutoplay,...n});w(l,"loadedmetadata",()=>this.setItem(e,l)),w(l,"error",()=>this.setError(e))}else if(s==="iframe"||i.match(/\.(html|php)($|\?)/i))this.setItem(e,Nt("iframe",{src:i,allowfullscreen:"",class:"uk-lightbox-iframe",...n}));else if(o=i.match(/\/\/(?:.*?youtube(-nocookie)?\..*?(?:[?&]v=|\/shorts\/)|youtu\.be\/)([\w-]{11})[&?]?(.*)?/))this.setItem(e,Nt("iframe",{src:`https://www.youtube${o[1]||""}.com/embed/${o[2]}${o[3]?`?${o[3]}`:""}`,width:1920,height:1080,...r,...n}));else if(o=i.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/))try{const{height:a,width:l}=await(await fetch(`https://vimeo.com/api/oembed.json?maxwidth=1920&url=${encodeURI(i)}`,{credentials:"omit"})).json();this.setItem(e,Nt("iframe",{src:`https://player.vimeo.com/video/${o[1]}${o[2]?`?${o[2]}`:""}`,width:l,height:a,...r,...n}))}catch{this.setError(e)}}},{name:"itemloaded",handler(){this.$emit("resize")}}],update:{read(){for(const t of D(`${this.selList} :not([controls]):is(img,video)`,this.$el))L(t,this.clsZoom,(t.naturalHeight||t.videoHeight)-this.$el.offsetHeight>Math.max(0,(t.naturalWidth||t.videoWidth)-this.$el.offsetWidth))},events:["resize"]},methods:{loadItem(t=this.index){const e=this.getItem(t);this.getSlide(e).childElementCount||m(this.$el,"itemload",[e])},getItem(t=this.index){return this.items[rt(t,this.slides)]},setItem(t,e){m(this.$el,"itemloaded",[this,vt(this.getSlide(t),e)])},getSlide(t){return this.slides[this.items.indexOf(t)]},setError(t){this.setItem(t,'<span uk-icon="icon: bolt; ratio: 2" uk-inverse></span>')},showControls(){clearTimeout(this.controlsTimer),this.controlsTimer=this.delayControls&&setTimeout(this.hideControls,this.delayControls),I(this.$el,"uk-active","uk-transition-active")},hideControls(){_(this.$el,"uk-active","uk-transition-active")}}};function Nt(t,e){const i=It(`<${t}>`);return k(i,e),i}function Qa(t,e){const i=t.poster||t.thumb&&(t.type==="image"||uo(t.thumb))?Nt("img",{src:t.poster||t.thumb,alt:""}):t.thumb&&(t.type==="video"||fo(t.thumb))?Nt("video",{src:t.thumb,loop:"",playsinline:"","uk-video":`autoplay: ${!!e}; automute: true`}):Nt("canvas");return t.thumbRatio&&(i.style.aspectRatio=t.thumbRatio),i}function uo(t){return t==null?void 0:t.match(/\.(avif|jpe?g|jfif|a?png|gif|svg|webp)($|\?)/i)}function fo(t){return t==null?void 0:t.match(/\.(mp4|webm|ogv)($|\?)/i)}const tl=".uk-disabled *, .uk-disabled, [disabled]";var el={install:il,props:{toggle:String},data:{toggle:"a"},computed:{toggles:({toggle:t},e)=>D(t,e)},watch:{toggles(t){this.hide();for(const e of t)F(e,"a")&&(e.role="button")}},disconnected(){this.hide()},events:{name:"click",delegate:({toggle:t})=>t,handler(t){t.defaultPrevented||(t.preventDefault(),T(t.current,tl)||this.show(t.current))}},methods:{show(t){let e=this.toggles.map(po);if(this.nav==="thumbnav"&&sl.call(this,this.toggles,e),e=Ys(e,"source"),re(t)){const{source:i}=po(t);t=xt(e,({source:s})=>i===s)}return this.panel=this.panel||this.$create("lightboxPanel",{...this.$props,items:e}),w(this.panel.$el,"hidden",()=>this.panel=null),this.panel.show(t)},hide(){var t;return(t=this.panel)==null?void 0:t.hide()}}};function il(t,e){t.lightboxPanel||t.component("lightboxPanel",co),ft(e.props,t.component("lightboxPanel").options.props)}function sl(t,e){for(const[i,s]of Object.entries(t)){if(e[i].thumb)continue;const n=de(s).reverse().concat(s).find(r=>this.$el.contains(r)&&(r===s||D(this.toggle,r).length===1));if(!n)continue;const o=x("img,video",n);o&&(e[i].thumb=o.currentSrc||o.poster||o.src,e[i].thumbRatio=(o.naturalWidth||o.videoWidth)/(o.naturalHeight||o.videoHeight))}}function po(t){const e={};for(const i of t.getAttributeNames()){const s=i.replace(/^data-/,"");e[s==="href"?"source":s]=t.getAttribute(i)}return e.attrs=ve(e.attrs),e}var nl={mixins:[Xe],functional:!0,args:["message","status"],data:{message:"",status:"",timeout:5e3,group:"",pos:"top-center",clsContainer:"uk-notification",clsClose:"uk-notification-close",clsMsg:"uk-notification-message"},install:ol,computed:{marginProp:({pos:t})=>`margin-${t.match(/[a-z]+(?=-)/)[0]}`,startProps(){return{opacity:0,[this.marginProp]:-this.$el.offsetHeight}}},created(){const t=`${this.clsContainer}-${this.pos}`,e=`data-${this.clsContainer}-container`,i=x(`.${t}[${e}]`,this.container)||j(this.container,`<div class="${this.clsContainer} ${t}" ${e}></div>`);this.$mount(j(i,`<div class="${this.clsMsg}${this.status?` ${this.clsMsg}-${this.status}`:""}" role="alert"> <a href class="${this.clsClose}" data-uk-close></a> <div>${this.message}</div> </div>`))},async connected(){const t=S(h(this.$el,this.marginProp));await M.start(h(this.$el,this.startProps),{opacity:1,[this.marginProp]:t}),this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},events:{click(t){Et(t),this.close()},[At](){this.timer&&clearTimeout(this.timer)},[Ut](){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))}},methods:{async close(t){const e=i=>{const s=O(i);m(i,"close",[this]),Q(i),s!=null&&s.hasChildNodes()||Q(s)};this.timer&&clearTimeout(this.timer),t||await M.start(this.$el,this.startProps),e(this.$el)}}};function ol(t){t.notification.closeAll=function(e,i){Mt(document.body,s=>{const n=t.getComponent(s,"notification");n&&(!e||e===n.group)&&n.close(i)})}}var _i={props:{media:Boolean},data:{media:!1},connected(){const t=rl(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,m(this.$el,pe("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=w(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function rl(t,e){if(H(t)){if(wt(t,"@"))t=S(h(e,`--uk-breakpoint-${t.slice(1)}`));else if(isNaN(t))return t}return t&&mt(t)?`(min-width: ${t}px)`:""}function go(t){return W(t)?Math.ceil(Math.max(0,...D("[stroke]",t).map(e=>{var i;return((i=e.getTotalLength)==null?void 0:i.call(e))||0}))):0}const Ai={x:Oi,y:Oi,rotate:Oi,scale:Oi,color:Ds,backgroundColor:Ds,borderColor:Ds,blur:te,hue:te,fopacity:te,grayscale:te,invert:te,saturate:te,sepia:te,opacity:ll,stroke:hl,bgx:bo,bgy:bo},{keys:mo}=Object;var vo={mixins:[_i],props:ko(mo(Ai),"list"),data:ko(mo(Ai),void 0),computed:{props(t,e){const i={};for(const n in t)n in Ai&&!X(t[n])&&(i[n]=t[n].slice());const s={};for(const n in i)s[n]=Ai[n](n,e,i[n],i);return s}},events:{load(){this.$emit()}},methods:{reset(){St(this.$el,this.getCss(0))},getCss(t){const e={};for(const i in this.props)this.props[i](e,K(t));return e.willChange=Object.keys(e).map(di).join(","),e}}};function Oi(t,e,i){let s=Di(i)||{x:"px",y:"px",rotate:"deg"}[t]||"",n;return t==="x"||t==="y"?(t=`translate${Ht(t)}`,n=o=>S(S(o).toFixed(s==="px"?0:6))):t==="scale"&&(s="",n=o=>{var r;return Di([o])?G(o,"width",e,!0)/e[`offset${(r=o.endsWith)!=null&&r.call(o,"vh")?"Height":"Width"}`]:S(o)}),i.length===1&&i.unshift(t==="scale"?1:0),i=ye(i,n),(o,r)=>{o.transform=`${o.transform||""} ${t}(${Qe(i,r)}${s})`}}function Ds(t,e,i){return i.length===1&&i.unshift(ti(e,t,"")),i=ye(i,s=>al(e,s)),(s,n)=>{const[o,r,a]=yo(i,n),l=o.map((c,u)=>(c+=a*(r[u]-c),u===3?S(c):parseInt(c,10))).join(",");s[t]=`rgba(${l})`}}function al(t,e){return ti(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(S)}function te(t,e,i){i.length===1&&i.unshift(0);const s=Di(i)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,i=ye(i),(n,o)=>{const r=Qe(i,o);n.filter=`${n.filter||""} ${t}(${r+s})`}}function ll(t,e,i){return i.length===1&&i.unshift(ti(e,t,"")),i=ye(i),(s,n)=>{s[t]=Qe(i,n)}}function hl(t,e,i){i.length===1&&i.unshift(0);const s=Di(i),n=go(e);return i=ye(i.reverse(),o=>(o=S(o),s==="%"?o*n/100:o)),i.some(([o])=>o)?(h(e,"strokeDasharray",n),(o,r)=>{o.strokeDashoffset=Qe(i,r)}):A}function bo(t,e,i,s){i.length===1&&i.unshift(0);const n=t==="bgy"?"height":"width";s[t]=ye(i,a=>G(a,n,e));const o=["bgx","bgy"].filter(a=>a in s);if(o.length===2&&t==="bgx")return A;if(ti(e,"backgroundSize","")==="cover")return cl(t,e,i,s);const r={};for(const a of o)r[a]=wo(e,a);return xo(o,r,s)}function cl(t,e,i,s){const n=ul(e);if(!n.width)return A;const o={width:e.offsetWidth,height:e.offsetHeight},r=["bgx","bgy"].filter(u=>u in s),a={};for(const u of r){const d=s[u].map(([P])=>P),f=Math.min(...d),p=Math.max(...d),b=d.indexOf(f)<d.indexOf(p),y=p-f;a[u]=`${(b?-y:0)-(b?f:p)}px`,o[u==="bgy"?"height":"width"]+=y}const l=Vi.cover(n,o);for(const u of r){const d=u==="bgy"?"height":"width",f=l[d]-o[d];a[u]=`max(${wo(e,u)},-${f}px) + ${a[u]}`}const c=xo(r,a,s);return(u,d)=>{c(u,d),u.backgroundSize=`${l.width}px ${l.height}px`,u.backgroundRepeat="no-repeat"}}function wo(t,e){return ti(t,`background-position-${e.slice(-1)}`,"")}function xo(t,e,i){return function(s,n){for(const o of t){const r=Qe(i[o],n);s[`background-position-${o.slice(-1)}`]=`calc(${e[o]} + ${r}px)`}}}const $o={},Mi={};function ul(t){const e=h(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(Mi[e])return Mi[e];const i=new Image;return e&&(i.src=e,!i.naturalWidth&&!$o[e])?(z(i,"error load",()=>{Mi[e]=Bs(i),m(t,pe("load",!1))}),$o[e]=!0,Bs(i)):Mi[e]=Bs(i)}function Bs(t){return{width:t.naturalWidth,height:t.naturalHeight}}function ye(t,e=S){const i=[],{length:s}=t;let n=0;for(let o=0;o<s;o++){let[r,a]=H(t[o])?t[o].trim().split(/ (?![^(]*\))/):[t[o]];if(r=e(r),a=a?S(a)/100:null,o===0?a===null?a=0:a&&i.push([r,0]):o===s-1&&(a===null?a=1:a!==1&&(i.push([r,a]),a=1)),i.push([r,a]),a===null)n++;else if(n){const l=i[o-n-1][1],c=(a-l)/(n+1);for(let u=n;u>0;u--)i[o-u][1]=l+c*(n-u+1);n=0}}return i}function yo(t,e){const i=xt(t.slice(1),([,s])=>e<=s)+1;return[t[i-1][0],t[i][0],(e-t[i-1][1])/(t[i][1]-t[i-1][1])]}function Qe(t,e){const[i,s,n]=yo(t,e);return i+Math.abs(i-s)*n*(i<s?1:-1)}const dl=/^-?\d+(?:\.\d+)?(\S+)?/;function Di(t,e){var i;for(const s of t){const n=(i=s.match)==null?void 0:i.call(s,dl);if(n)return n[1]}return e}function ti(t,e,i){const s=t.style[e],n=h(h(t,e,i),e);return t.style[e]=s,n}function ko(t,e){return t.reduce((i,s)=>(i[s]=e,i),{})}function So(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,1-e)}var fl={mixins:[vo],props:{target:String,viewport:Number,easing:Number,start:String,end:String},data:{target:!1,viewport:1,easing:1,start:0,end:0},computed:{target:({target:t},e)=>Io(t&&et(t,e)||e),start({start:t}){return G(t,"height",this.target,!0)},end({end:t,viewport:e}){return G(t||(e=(1-e)*100)&&`${e}vh+${e}%`,"height",this.target,!0)}},observe:[ws(),Ye({target:({target:t})=>t}),dt({target:({$el:t,target:e})=>[t,e,Bt(e,!0)]})],update:{read({percent:t},e){if(e.has("scroll")||(t=!1),!W(this.$el))return!1;if(!this.matchMedia)return;const i=t;return t=So(yi(this.target,this.start,this.end),this.easing),{percent:t,style:i===t?!1:this.getCss(t)}},write({style:t}){if(!this.matchMedia){this.reset();return}t&&h(this.$el,t)},events:["scroll","resize"]}};function Io(t){return t?"offsetTop"in t?t:Io(O(t)):document.documentElement}var Eo={props:{parallax:Boolean,parallaxTarget:Boolean,parallaxStart:String,parallaxEnd:String,parallaxEasing:Number},data:{parallax:!1,parallaxTarget:!1,parallaxStart:0,parallaxEnd:0,parallaxEasing:0},observe:[dt({target:({$el:t,parallaxTarget:e})=>[t,e],filter:({parallax:t})=>t}),Ye({filter:({parallax:t})=>t})],computed:{parallaxTarget({parallaxTarget:t},e){return t&&et(t,e)||this.list}},update:{read(){if(!this.parallax)return!1;const t=this.parallaxTarget;if(!t)return!1;const e=G(this.parallaxStart,"height",t,!0),i=G(this.parallaxEnd,"height",t,!0),s=So(yi(t,e,i),this.parallaxEasing);return{parallax:this.getIndexAt(s)}},write({parallax:t}){const[e,i]=t,s=this.getValidIndex(e+Math.ceil(i)),n=this.slides[e],o=this.slides[s],{triggerShow:r,triggerShown:a,triggerHide:l,triggerHidden:c}=pl(this);if(~this.prevIndex)for(const d of new Set([this.index,this.prevIndex]))v([s,e],d)||(l(this.slides[d]),c(this.slides[d]));const u=this.prevIndex!==e||this.index!==s;this.dir=1,this.prevIndex=e,this.index=s,n!==o&&l(n),r(o),u&&a(n),this._translate(n===o?1:i,n,o)},events:["scroll","resize"]},methods:{getIndexAt(t){const e=t*(this.length-1);return[Math.floor(e),e%1]}}};function pl(t){const{clsSlideActive:e,clsEnter:i,clsLeave:s}=t;return{triggerShow:n,triggerShown:o,triggerHide:r,triggerHidden:a};function n(l){$(l,s)&&(r(l),a(l)),$(l,e)||(m(l,"beforeitemshow",[t]),m(l,"itemshow",[t]))}function o(l){$(l,i)&&m(l,"itemshown",[t])}function r(l){$(l,e)||n(l),$(l,i)&&o(l),$(l,s)||(m(l,"beforeitemhide",[t]),m(l,"itemhide",[t]))}function a(l){$(l,s)&&m(l,"itemhidden",[t])}}var Co={update:{write(){if(this.stack.length||this.dragging||this.parallax)return;const t=this.getValidIndex();!~this.prevIndex||this.index!==t?this.show(t):this._translate(1)},events:["resize"]}},To={observe:Ii({target:({slides:t})=>t,targets:t=>t.getAdjacentSlides()}),methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}};function gl(t,e,i,{center:s,easing:n,list:o}){const r=t?ei(t,o,s):ei(e,o,s)+g(e).width*i,a=e?ei(e,o,s):r+g(t).width*i*(U?-1:1),{promise:l,resolve:c}=Vn();return{dir:i,show(u,d=0,f){const p=f?"linear":n;return u-=Math.round(u*K(d,-1,1)),h(o,"transitionProperty","none"),this.translate(d),h(o,"transitionProperty",""),d=t?d:K(d,0,1),Kt(this.getItemIn(),"itemin",{percent:d,duration:u,timing:p,dir:i}),t&&Kt(this.getItemIn(!0),"itemout",{percent:1-d,duration:u,timing:p,dir:i}),M.start(o,{transform:R(-a*(U?-1:1),"px")},u,p).then(c,A),l},cancel(){return M.cancel(o)},reset(){h(o,"transform","")},async forward(u,d=this.percent()){return await this.cancel(),this.show(u,d,!0)},translate(u){if(u===this.percent())return;const d=this.getDistance()*i*(U?-1:1);h(o,"transform",R(K(-a+(d-d*u),-ke(o),g(o).width)*(U?-1:1),"px"));const f=this.getActives(),p=this.getItemIn(),b=this.getItemIn(!0);u=t?K(u,-1,1):0;for(const y of N(o)){const P=v(f,y),it=y===p,Ct=y===b,zt=it||!Ct&&(P||i*(U?-1:1)===-1^Bi(y,o)>Bi(t||e));Kt(y,`itemtranslate${zt?"in":"out"}`,{dir:i,percent:Ct?1-u:it?u:P?1:0})}},percent(){return Math.abs((new DOMMatrix(h(o,"transform")).m41*(U?-1:1)+r)/(a-r))},getDistance(){return Math.abs(a-r)},getItemIn(u=!1){let d=this.getActives(),f=_o(o,ei(e||t,o,s));if(u){const p=d;d=f,f=p}return f[xt(f,p=>!v(d,p))]},getActives(){return _o(o,ei(t||e,o,s))}}}function ei(t,e,i){const s=Bi(t,e);return i?s-ml(t,e):Math.min(s,Po(e))}function Po(t){return Math.max(0,ke(t)-g(t).width)}function ke(t,e){return jt(N(t).slice(0,e),i=>g(i).width)}function ml(t,e){return g(e).width/2-g(t).width/2}function Bi(t,e){return t&&(ss(t).left+(U?g(t).width-g(e).width:0))*(U?-1:1)||0}function _o(t,e){e-=1;const i=g(t).width,s=e+i+2;return N(t).filter(n=>{const o=Bi(n,t),r=o+Math.min(g(n).width,i);return o>=e&&r<=s})}var vl={mixins:[st,ro,Co,Eo,To],props:{center:Boolean,sets:Boolean,active:String},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",active:"all",Transitioner:gl},computed:{finite({finite:t}){return t||bl(this.list,this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return Wt(this.sets);let t=0;const e=Po(this.list),i=xt(this.slides,s=>{if(t>=e-.005)return!0;t+=g(s).width});return~i?i:this.length-1},sets({sets:t}){if(!t||this.parallax)return;let e=0;const i=[],s=g(this.list).width;for(let n=0;n<this.length;n++){const o=g(this.slides[n]).width;e+o>s&&(e=0),this.center?e<s/2&&e+o+g(this.slides[rt(n+1,this.slides)]).width/2>s/2&&(i.push(n),e=s/2-o/2):e===0&&i.push(Math.min(n,this.maxIndex)),e+=o}if(i.length)return i},transitionOptions(){return{center:this.center,list:this.list}},slides(){return N(this.list).filter(W)}},connected(){L(this.$el,this.clsContainer,!x(`.${this.clsContainer}`,this.$el))},observe:dt({target:({slides:t,$el:e})=>[e,...t]}),update:{write(){for(const t of this.navItems){const e=$t(Z(t,this.attrItem));e!==!1&&(t.hidden=!this.maxIndex||e>this.maxIndex||this.sets&&!v(this.sets,e))}this.reorder(),this.parallax||this._translate(1),this.updateActiveClasses()},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!v(this.sets,this.index)&&(this.index=this.getValidIndex());const e=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&e>1){for(let n=0;n<e;n++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault();return}const i=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex,s=ke(this.list)/this.length;this.duration=ao(s/this.velocity)*(g(this.slides[i]).width/s),this.reorder()},itemshow(){~this.prevIndex&&I(this._getTransitioner().getItemIn(),this.clsActive),this.updateActiveClasses(this.prevIndex)},itemshown(){this.updateActiveClasses()}},methods:{reorder(){if(this.finite){h(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((n,o)=>h(n,"order",this.dir>0&&o<t?1:this.dir<0&&o>=this.index?-1:"")),!this.center||!this.length)return;const e=this.slides[t];let i=g(this.list).width/2-g(e).width/2,s=0;for(;i>0;){const n=this.getIndex(--s+t,t),o=this.slides[n];h(o,"order",n>t?-2:-1),i-=g(o).width}},updateActiveClasses(t=this.index){let e=this._getTransitioner(t).getActives();this.active!=="all"&&(e=[this.slides[this.getValidIndex(t)]]);const i=[this.clsActive,!this.sets||v(this.sets,S(this.index))?this.clsActivated:""];for(const s of this.slides){const n=v(e,s);L(s,i,n),s.ariaHidden=!n;for(const o of D(ue,s))gt(o,"_tabindex")||(o._tabindex=o.tabIndex),o.tabIndex=n?o._tabindex:-1}},getValidIndex(t=this.index,e=this.prevIndex){if(t=this.getIndex(t,e),!this.sets)return t;let i;do{if(v(this.sets,t))return t;i=t,t=this.getIndex(t+this.dir,e)}while(t!==i);return t},getAdjacentSlides(){const{width:t}=g(this.list),e=-t,i=t*2,s=g(this.slides[this.index]).width,n=this.center?t/2-s/2:0,o=new Set;for(const r of[-1,1]){let a=n+(r>0?s:0),l=0;do{const c=this.slides[this.getIndex(this.index+r+l++*r)];a+=g(c).width*r,o.add(c)}while(this.length>l&&a>e&&a<i)}return Array.from(o)},getIndexAt(t){let e=-1;const i=this.center?ke(this.list)-(g(this.slides[0]).width/2+g(Wt(this.slides)).width/2):ke(this.list,this.maxIndex);let s=t*i,n=0;do{const o=g(this.slides[++e]).width,r=this.center?o/2+g(this.slides[e+1]).width/2:o;n=s/r%1,s-=r}while(s>=0&&e<this.maxIndex);return[e,n]}}};function bl(t,e){if(!t||t.length<2)return!0;const{width:i}=g(t);if(!e)return Math.ceil(ke(t))<Math.trunc(i+wl(t));const s=N(t),n=Math.trunc(i/2);for(const o in s){const r=s[o],a=g(r).width,l=new Set([r]);let c=0;for(const u of[-1,1]){let d=a/2,f=0;for(;d<n;){const p=s[rt(+o+u+f++*u,s)];if(l.has(p))return!0;d+=g(p).width,l.add(p)}c=Math.max(c,a/2+g(s[rt(+o+u,s)]).width/2-(d-n))}if(Math.trunc(c)>jt(s.filter(u=>!l.has(u)),u=>g(u).width))return!0}return!1}function wl(t){return Math.max(0,...N(t).map(e=>g(e).width))}var Ao={mixins:[vo],beforeConnect(){this.item=this.$el.closest(`.${this.$options.id.replace("parallax","items")} > *`)},disconnected(){this.item=null},events:[{name:"itemin itemout",self:!0,el:({item:t})=>t,handler({type:t,detail:{percent:e,duration:i,timing:s,dir:n}}){Dt.read(()=>{if(!this.matchMedia)return;const o=this.getCss(Mo(t,n,e)),r=this.getCss(Oo(t)?.5:n>0?1:0);Dt.write(()=>{h(this.$el,o),M.start(this.$el,r,i,s).catch(A)})})}},{name:"transitioncanceled transitionend",self:!0,el:({item:t})=>t,handler(){M.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el:({item:t})=>t,handler({type:t,detail:{percent:e,dir:i}}){Dt.read(()=>{if(!this.matchMedia){this.reset();return}const s=this.getCss(Mo(t,i,e));Dt.write(()=>h(this.$el,s))})}}]};function Oo(t){return ne(t,"in")}function Mo(t,e,i){return i/=2,Oo(t)^e<0?i:1-i}var xl={mixins:[st,lo,Co,Eo,To],props:{ratio:String,minHeight:String,maxHeight:String},data:{ratio:"16:9",minHeight:void 0,maxHeight:void 0,selList:".uk-slideshow-items",attrItem:"uk-slideshow-item",selNav:".uk-slideshow-nav",Animations:Za},watch:{list(t){h(t,{aspectRatio:this.ratio?this.ratio.replace(":","/"):void 0,minHeight:this.minHeight,maxHeight:this.maxHeight,width:"100%"})}},methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}},$l={mixins:[st,zn],props:{group:String,threshold:Number,clsItem:String,clsPlaceholder:String,clsDrag:String,clsDragState:String,clsBase:String,clsNoDrag:String,clsEmpty:String,clsCustom:String,handle:String},data:{group:!1,threshold:5,clsItem:"uk-sortable-item",clsPlaceholder:"uk-sortable-placeholder",clsDrag:"uk-sortable-drag",clsDragState:"uk-drag",clsBase:"uk-sortable",clsNoDrag:"uk-sortable-nodrag",clsEmpty:"uk-sortable-empty",clsCustom:"",handle:!1,pos:{}},events:{name:ut,passive:!1,handler(t){this.init(t)}},computed:{target:(t,e)=>(e.tBodies||[e])[0],items(){return N(this.target)},isEmpty(){return!this.items.length},handles({handle:t},e){return t?D(t,e):this.items}},watch:{isEmpty(t){L(this.target,this.clsEmpty,t)},handles(t,e){const i={touchAction:"none",userSelect:"none"};St(e,i),h(t,i)}},update:{write(t){if(!this.drag||!O(this.placeholder))return;const{pos:{x:e,y:i},origin:{offsetTop:s,offsetLeft:n},placeholder:o}=this;h(this.drag,{top:i-s,left:e-n});const r=this.getSortable(document.elementFromPoint(e,i));if(!r)return;const{items:a}=r;if(a.some(M.inProgress))return;const l=Il(a,{x:e,y:i});if(a.length&&(!l||l===o))return;const c=this.getSortable(o),u=El(r.target,l,o,e,i,r===c&&t.moved!==l);u!==!1&&(u&&o===u||(r!==c?(c.remove(o),t.moved=l):delete t.moved,r.insert(o,u),this.touched.add(r)))},events:["move"]},methods:{init(t){const{target:e,button:i,defaultPrevented:s}=t,[n]=this.items.filter(o=>o.contains(e));!n||s||i>0||ci(e)||e.closest(`.${this.clsNoDrag}`)||this.handle&&!e.closest(this.handle)||(t.preventDefault(),this.pos=kt(t),this.touched=new Set([this]),this.placeholder=n,this.origin={target:e,index:yt(n),...this.pos},w(document,Me,this.move),w(document,_t,this.end),this.threshold||this.start(t))},start(t){this.drag=Sl(this.$container,this.placeholder);const{left:e,top:i}=g(this.placeholder);ft(this.origin,{offsetLeft:this.pos.x-e,offsetTop:this.pos.y-i}),I(this.drag,this.clsDrag,this.clsCustom),I(this.placeholder,this.clsPlaceholder),I(this.items,this.clsItem),I(document.documentElement,this.clsDragState),m(this.$el,"start",[this,this.placeholder]),yl(this.pos),this.move(t)},move:Tl(function(t){ft(this.pos,kt(t)),!this.drag&&(Math.abs(this.pos.x-this.origin.x)>this.threshold||Math.abs(this.pos.y-this.origin.y)>this.threshold)&&this.start(t),this.$emit("move")}),end(){if(Vt(document,Me,this.move),Vt(document,_t,this.end),!this.drag)return;kl();const t=this.getSortable(this.placeholder);this===t?this.origin.index!==yt(this.placeholder)&&m(this.$el,"moved",[this,this.placeholder]):(m(t.$el,"added",[t,this.placeholder]),m(this.$el,"removed",[this,this.placeholder])),m(this.$el,"stop",[this,this.placeholder]),Q(this.drag),this.drag=null;for(const{clsPlaceholder:e,clsItem:i}of this.touched)for(const s of this.touched)_(s.items,e,i);this.touched=null,_(document.documentElement,this.clsDragState)},insert(t,e){I(this.items,this.clsItem),e&&e.previousElementSibling!==t?this.animate(()=>pi(e,t)):!e&&this.target.lastElementChild!==t&&this.animate(()=>j(this.target,t))},remove(t){this.target.contains(t)&&this.animate(()=>Q(t))},getSortable(t){do{const e=this.$getComponent(t,"sortable");if(e&&(e===this||this.group!==!1&&e.group===this.group))return e}while(t=O(t))}}};let Do;function yl(t){let e=Date.now();Do=setInterval(()=>{let{x:i,y:s}=t;s+=document.scrollingElement.scrollTop;const n=(Date.now()-e)*.3;e=Date.now(),Gt(document.elementFromPoint(i,t.y)).reverse().some(o=>{let{scrollTop:r,scrollHeight:a}=o;const{top:l,bottom:c,height:u}=at(o);if(l<s&&l+35>s)r-=n;else if(c>s&&c-35<s)r+=n;else return;if(r>0&&r<a-u)return o.scrollTop=r,!0})},15)}function kl(){clearInterval(Do)}function Sl(t,e){let i;if(F(e,"li","tr")){i=x("<div>"),j(i,e.cloneNode(!0).children);for(const s of e.getAttributeNames())k(i,s,e.getAttribute(s))}else i=e.cloneNode(!0);return j(t,i),h(i,"margin","0","important"),h(i,{boxSizing:"border-box",width:e.offsetWidth,height:e.offsetHeight,padding:h(e,"padding")}),tt(i.firstElementChild,tt(e.firstElementChild)),i}function Il(t,e){return t[xt(t,i=>ai(e,g(i)))]}function El(t,e,i,s,n,o){if(!N(t).length)return;const r=g(e);if(!o)return Cl(t,i)||n<r.top+r.height/2?e:e.nextElementSibling;const a=g(i),l=Bo([r.top,r.bottom],[a.top,a.bottom]),[c,u,d,f]=l?[s,"width","left","right"]:[n,"height","top","bottom"],p=a[u]<r[u]?r[u]-a[u]:0;return a[d]<r[d]?p&&c<r[d]+p?!1:e.nextElementSibling:p&&c>r[f]-p?!1:e}function Cl(t,e){const i=N(t).length===1;i&&j(t,e);const s=N(t),n=s.some((o,r)=>{const a=g(o);return s.slice(r+1).some(l=>{const c=g(l);return!Bo([a.left,a.right],[c.left,c.right])})});return i&&Q(e),n}function Bo(t,e){return t[1]>e[0]&&e[1]>t[0]}function Tl(t){let e;return function(...i){e||(e=!0,t.call(this,...i),requestAnimationFrame(()=>e=!1))}}var Pl={mixins:[Xe,Jt,Rn],data:{pos:"top",animation:["uk-animation-scale-up"],duration:100,cls:"uk-active"},connected(){_l(this.$el)},disconnected(){this.hide()},methods:{show(){if(this.isToggled(this.tooltip||null))return;const{delay:t=0,title:e}=Ol(this.$options);if(!e)return;const i=k(this.$el,"title"),s=w(this.$el,["blur",Ut],o=>!pt(o)&&this.hide());this.reset=()=>{k(this.$el,{title:i,"aria-describedby":null}),s()};const n=Qt(this);k(this.$el,{title:null,"aria-describedby":n}),clearTimeout(this.showTimer),this.showTimer=setTimeout(()=>this._show(e,n),t)},async hide(){var t;T(this.$el,"input:focus")||(clearTimeout(this.showTimer),this.isToggled(this.tooltip||null)&&await this.toggleElement(this.tooltip,!1,!1),(t=this.reset)==null||t.call(this),Q(this.tooltip),this.tooltip=null)},async _show(t,e){this.tooltip=j(this.container,`<div id="${e}" class="uk-${this.$options.name}" role="tooltip"> <div class="uk-${this.$options.name}-inner">${t}</div> </div>`),w(this.tooltip,"toggled",(i,s)=>{if(!s)return;const n=()=>this.positionAt(this.tooltip,this.$el);n();const[o,r]=Al(this.tooltip,this.$el,this.pos);this.origin=this.axis==="y"?`${bi(o)}-${r}`:`${r}-${bi(o)}`;const a=[z(document,`keydown ${ut}`,this.hide,!1,l=>l.type===ut&&!this.$el.contains(l.target)||l.type==="keydown"&&l.keyCode===B.ESC),w([document,...Xt(this.$el)],"scroll",n,{passive:!0})];z(this.tooltip,"hide",()=>a.forEach(l=>l()),{self:!0})}),await this.toggleElement(this.tooltip,!0)||this.hide()}},events:{[`focus ${At} ${ut}`](t){(!pt(t)||t.type===ut)&&document.readyState!=="loading"&&this.show()}}};function _l(t){Be(t)||(t.tabIndex=0)}function Al(t,e,[i,s]){const n=C(t),o=C(e),r=[["left","right"],["top","bottom"]];for(const l of r){if(n[l[0]]>=o[l[1]]){i=l[1];break}if(n[l[1]]<=o[l[0]]){i=l[0];break}}return s=(v(r[0],i)?r[1]:r[0]).find(l=>n[l]===o[l])||"center",[i,s]}function Ol(t){const{el:e,id:i,data:s}=t;return["delay","title"].reduce((n,o)=>({[o]:Z(e,o),...n}),{...ve(Z(e,i),["title"]),...s})}var Ml={mixins:[Ci],i18n:{invalidMime:"Invalid File Type: %s",invalidName:"Invalid File Name: %s",invalidSize:"Invalid File Size: %s Kilobytes Max"},props:{allow:String,clsDragover:String,concurrent:Number,maxSize:Number,method:String,mime:String,multiple:Boolean,name:String,params:Object,type:String,url:String},data:{allow:!1,clsDragover:"uk-dragover",concurrent:1,maxSize:0,method:"POST",mime:!1,multiple:!1,name:"files[]",params:{},type:"",url:"",abort:A,beforeAll:A,beforeSend:A,complete:A,completeAll:A,error:A,fail:A,load:A,loadEnd:A,loadStart:A,progress:A},events:{change(t){T(t.target,'input[type="file"]')&&(t.preventDefault(),t.target.files&&this.upload(t.target.files),t.target.value="")},drop(t){Ni(t);const e=t.dataTransfer;e!=null&&e.files&&(_(this.$el,this.clsDragover),this.upload(e.files))},dragenter(t){Ni(t)},dragover(t){Ni(t),I(this.$el,this.clsDragover)},dragleave(t){Ni(t),_(this.$el,this.clsDragover)}},methods:{async upload(t){if(t=oe(t),!t.length)return;m(this.$el,"upload",[t]);for(const s of t){if(this.maxSize&&this.maxSize*1e3<s.size){this.fail(this.t("invalidSize",this.maxSize));return}if(this.allow&&!No(this.allow,s.name)){this.fail(this.t("invalidName",this.allow));return}if(this.mime&&!No(this.mime,s.type)){this.fail(this.t("invalidMime",this.mime));return}}this.multiple||(t=t.slice(0,1)),this.beforeAll(this,t);const e=Dl(t,this.concurrent),i=async s=>{const n=new FormData;s.forEach(o=>n.append(this.name,o));for(const o in this.params)n.append(o,this.params[o]);try{const o=await Bl(this.url,{data:n,method:this.method,responseType:this.type,beforeSend:r=>{const{xhr:a}=r;w(a.upload,"progress",this.progress);for(const l of["loadStart","load","loadEnd","abort"])w(a,l.toLowerCase(),this[l]);return this.beforeSend(r)}});this.complete(o),e.length?await i(e.shift()):this.completeAll(o)}catch(o){this.error(o)}};await i(e.shift())}}};function No(t,e){return e.match(new RegExp(`^${t.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")}$`,"i"))}function Dl(t,e){const i=[];for(let s=0;s<t.length;s+=e)i.push(t.slice(s,s+e));return i}function Ni(t){t.preventDefault(),t.stopPropagation()}async function Bl(t,e){const i={data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:A,responseType:"",...e};return await i.beforeSend(i),Nl(t,i)}function Nl(t,e){return new Promise((i,s)=>{const{xhr:n}=e;for(const o in e)if(o in n)try{n[o]=e[o]}catch{}n.open(e.method.toUpperCase(),t);for(const o in e.headers)n.setRequestHeader(o,e.headers[o]);w(n,"load",()=>{n.status===0||n.status>=200&&n.status<300||n.status===304?i(n):s(ft(Error(n.statusText),{xhr:n,status:n.status}))}),w(n,"error",()=>s(ft(Error("Network Error"),{xhr:n}))),w(n,"timeout",()=>s(ft(Error("Network Timeout"),{xhr:n}))),n.send(e.data)})}var zl=Object.freeze({__proto__:null,Countdown:Yr,Filter:oa,Lightbox:el,LightboxPanel:co,Notification:nl,Parallax:fl,Slider:vl,SliderParallax:Ao,Slideshow:xl,SlideshowParallax:Ao,Sortable:$l,Tooltip:Pl,Upload:Ml});function Fl(t){qt&&window.MutationObserver&&(document.body?requestAnimationFrame(()=>zo(t)):new MutationObserver((e,i)=>{document.body&&(zo(t),i.disconnect())}).observe(document.documentElement,{childList:!0}))}function zo(t){m(document,"uikit:init",t),document.body&&Mt(document.body,Fo),new MutationObserver(Hl).observe(document,{subtree:!0,childList:!0,attributes:!0}),t._initialized=!0}function Hl(t){var e;for(const{addedNodes:i,removedNodes:s,target:n,attributeName:o}of t){for(const a of i)Mt(a,Fo);for(const a of s)Mt(a,Ll);const r=o&&Ho(o);r&&(Pt(n,o)?Ke(r,n):(e=Pi(n,r))==null||e.$destroy())}}function Fo(t){const e=Ze(t);for(const i in e)Os(e[i]);for(const i of t.getAttributeNames()){const s=Ho(i);s&&Ke(s,t)}}function Ll(t){const e=Ze(t);for(const i in e)Ms(e[i])}function Ho(t){wt(t,"data-")&&(t=t.slice(5));const e=xe[t];return e&&(e.options||e).name}Ua(ht),Va(ht);var Lo={mixins:[st,Jt],props:{animation:Boolean,targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:!0,collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:({targets:t},e)=>D(t,e),toggles({toggle:t}){return this.items.map(e=>x(t,e))},contents({content:t}){return this.items.map(e=>{var i;return((i=e._wrapper)==null?void 0:i.firstElementChild)||x(t,e)})}},watch:{items(t,e){if(e||$(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},toggles(){this.$emit()},contents(t){for(const e of t){const i=$(this.items.find(s=>s.contains(e)),this.clsOpen);zi(e,!i)}this.$emit()}},observe:Ii(),events:[{name:"click keydown",delegate:({targets:t,$props:e})=>`${t} ${e.toggle}`,async handler(t){var e;t.type==="keydown"&&t.keyCode!==B.SPACE||(Et(t),(e=this._off)==null||e.call(this),this._off=jl(t.target),await this.toggle(yt(this.toggles,t.current)),this._off())}},{name:"shown hidden",self:!0,delegate:({targets:t})=>t,handler(){this.$emit()}}],update(){const t=Ne(this.items,`.${this.clsOpen}`);for(const e in this.items){const i=this.toggles[e],s=this.contents[e];if(!i||!s)continue;i.id=Qt(this,i),s.id=Qt(this,s);const n=v(t,this.items[e]);k(i,{role:F(i,"a")?"button":null,"aria-controls":s.id,"aria-expanded":n,"aria-disabled":!this.collapsible&&t.length<2&&n}),k(s,{role:"region","aria-labelledby":i.id}),F(s,"ul")&&k(N(s),"role","presentation")}},methods:{toggle(t,e){t=this.items[rt(t,this.items)];let i=[t];const s=Ne(this.items,`.${this.clsOpen}`);if(!this.multiple&&!v(s,i[0])&&(i=i.concat(s)),!(!this.collapsible&&s.length<2&&v(s,t)))return Promise.all(i.map(n=>this.toggleElement(n,!v(s,n),(o,r)=>{if(L(o,this.clsOpen,r),e===!1||!this.animation){zi(x(this.content,o),!r);return}return Wl(o,r,this)})))}}};function zi(t,e){t&&(t.hidden=e)}async function Wl(t,e,{content:i,duration:s,velocity:n,transition:o}){var r;i=((r=t._wrapper)==null?void 0:r.firstElementChild)||x(i,t),t._wrapper||(t._wrapper=Le(i,"<div>"));const a=t._wrapper;h(a,"overflow","hidden");const l=S(h(a,"height"));await M.cancel(a),zi(i,!1);const c=jt(["marginTop","marginBottom"],d=>h(i,d))+g(i).height,u=l/c;s=(n*c+s)*(e?1-u:u),h(a,"height",l),await M.start(a,{height:e?c:0},s,o),We(i),delete t._wrapper,e||zi(i,!0)}function jl(t){const e=Bt(t,!0);let i;return(function s(){i=requestAnimationFrame(()=>{const{top:n}=g(t);n<0&&(e.scrollTop+=n),s()})})(),()=>requestAnimationFrame(()=>cancelAnimationFrame(i))}var Rl={mixins:[st,Jt],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate:({selClose:t})=>t,handler(t){Et(t),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,ql),this.$destroy(!0)}}};function ql(t,e,{duration:i,transition:s,velocity:n}){const o=S(h(t,"height"));return h(t,"height",o),M.start(t,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},n*o+i,s)}var Wo={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},beforeConnect(){this.autoplay==="inview"&&!Pt(this.$el,"preload")&&(this.$el.preload="none"),F(this.$el,"iframe")&&!Pt(this.$el,"allow")&&(this.$el.allow="autoplay"),this.autoplay==="hover"&&(F(this.$el,"video")?this.$el.tabIndex=0:this.autoplay=!0),this.automute&&pn(this.$el)},events:[{name:`${At} focusin`,filter:({autoplay:t})=>v(t,"hover"),handler(t){!pt(t)||!Ul(this.$el)?ls(this.$el):$i(this.$el)}},{name:`${Ut} focusout`,filter:({autoplay:t})=>v(t,"hover"),handler(t){pt(t)||$i(this.$el)}}],observe:[be({filter:({autoplay:t})=>t!=="hover",handler([{isIntersecting:t}]){document.fullscreenElement||(t?this.autoplay&&ls(this.$el):$i(this.$el))},args:{intersecting:!1},options:({$el:t,autoplay:e})=>({root:e==="inview"?null:O(t).closest(":not(a)")})})]};function Ul(t){return!t.paused&&!t.ended}var Vl={mixins:[Wo],props:{width:Number,height:Number},data:{automute:!0},created(){this.useObjectFit=F(this.$el,"img","video")},observe:dt({target:({$el:t})=>jo(t)||O(t),filter:({useObjectFit:t})=>!t}),update:{read(){if(this.useObjectFit)return!1;const{$el:t,width:e=t.clientWidth,height:i=t.clientHeight}=this,s=jo(t)||O(t),n=Vi.cover({width:e,height:i},{width:s.offsetWidth,height:s.offsetHeight});return n.width&&n.height?n:!1},write({height:t,width:e}){h(this.$el,{height:t,width:e})},events:["resize"]}};function jo(t){for(;t=O(t);)if(h(t,"position")!=="static")return t}let Y;var Ro={mixins:[Xe,Rn,Jt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryX:Boolean,boundaryY:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,autoUpdate:Boolean,clsDrop:String,animateOut:Boolean,bgScroll:Boolean,closeOnScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,boundaryX:!1,boundaryY:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,autoUpdate:!0,clsDrop:!1,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1,closeOnScroll:!1,selClose:".uk-drop-close"},computed:{boundary({boundary:t,boundaryX:e,boundaryY:i},s){return[et(e||t,s)||window,et(i||t,s)||window]},target({target:t,targetX:e,targetY:i},s){return e||(e=t||this.targetEl),i||(i=t||this.targetEl),[e===!0?window:et(e,s),i===!0?window:et(i,s)]}},created(){this.tracker=new un},beforeConnect(){this.clsDrop=this.$props.clsDrop||this.$options.id},connected(){I(this.$el,"uk-drop",this.clsDrop),this.toggle&&!this.targetEl&&(this.targetEl=Gl(this)),k(this.targetEl,"aria-expanded",!1),this._style=oi(this.$el.style,["width","height"])},disconnected(){this.isActive()&&(this.hide(!1),Y=null),h(this.$el,this._style)},events:[{name:"click",delegate:({selClose:t})=>t,handler(t){Et(t),this.hide(!1)}},{name:"click",delegate:()=>'a[href*="#"]',handler({defaultPrevented:t,current:e}){const{hash:i}=e;!t&&i&&fe(e)&&!this.$el.contains(x(i))&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),T(this.$el,":focus,:hover")||this.hide()}},{name:`${At} focusin`,filter:({mode:t})=>v(t,"hover"),handler(t){pt(t)||this.clearTimers()}},{name:`${Ut} focusout`,filter:({mode:t})=>v(t,"hover"),handler(t){!pt(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){e&&(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){Y=this,this.tracker.init(),k(this.targetEl,"aria-expanded",!0);const t=[Xl(this),Jl(this),Zl(this),this.autoUpdate&&qo(this),this.closeOnScroll&&Kl(this)];z(this.$el,"hide",()=>t.forEach(e=>e&&e()),{self:!0}),this.bgScroll||z(this.$el,"hidden",jn(this.$el),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler({target:t}){if(this.$el!==t){Y=Y===null&&this.$el.contains(t)&&this.isToggled()?this:Y;return}Y=this.isActive()?null:Y,this.tracker.cancel(),k(this.targetEl,"aria-expanded",!1)}}],update:{write(){this.isToggled()&&!$(this.$el,this.clsEnter)&&this.position()}},methods:{show(t=this.targetEl,e=!0){if(this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(Y){if(e&&Y.isDelaying()){this.showTimer=setTimeout(()=>T(t,":hover")&&this.show(),10);return}let i;for(;Y&&i!==Y&&!Y.$el.contains(this.$el);)i=Y,Y.hide(!1,!1);e=!1}this.container&&O(this.$el)!==this.container&&j(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t=!0,e=!0){const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelayedHide=t,t&&this.isDelaying()?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null},isActive(){return Y===this},isDelaying(){return[this.$el,...D(".uk-drop",this.$el)].some(t=>this.tracker.movesTo(t))},position(){const t=Ei(this.$el);_(this.$el,"uk-drop-stack"),h(this.$el,this._style),this.$el.hidden=!0;const e=this.target.map(o=>Yl(this.$el,o)),i=this.getViewportOffset(this.$el),s=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[o,[r,a]]of s)this.axis!==r&&v([r,!0],this.stretch)&&h(this.$el,{[a]:Math.min(C(this.boundary[o])[a],e[o][a]-2*i),[`overflow-${r}`]:"auto"});const n=e[0].width-2*i;this.$el.hidden=!1,h(this.$el,"maxWidth",""),this.$el.offsetWidth>n&&I(this.$el,"uk-drop-stack"),h(this.$el,"maxWidth",n),this.positionAt(this.$el,this.target,this.boundary);for(const[o,[r,a,l,c]]of s)if(this.axis===r&&v([r,!0],this.stretch)){const u=Math.abs(this.getPositionOffset()),d=C(this.target[o]),f=C(this.$el);h(this.$el,{[a]:(d[l]>f[l]?d[this.inset?c:l]-Math.max(C(this.boundary[o])[l],e[o][l]+i):Math.min(C(this.boundary[o])[c],e[o][c]-i)-d[this.inset?l:c])-u,[`overflow-${r}`]:"auto"}),this.positionAt(this.$el,this.target,this.boundary)}t()}}};function Yl(t,e){return at(Xt(e).find(i=>i.contains(t)))}function Gl(t){const{$el:e}=t.$create("toggle",et(t.toggle,t.$el),{target:t.$el,mode:t.mode});return e.ariaHasPopup=!0,e}function Xl(t){const e=()=>t.$emit(),i=[rs(e),qe(Xt(t.$el).concat(t.target),e)];return()=>i.map(s=>s.disconnect())}function qo(t,e=()=>t.$emit()){return w([document,...Xt(t.$el)],"scroll",e,{passive:!0})}function Jl(t){return w(document,"keydown",e=>{e.keyCode===B.ESC&&t.hide(!1)})}function Kl(t){return qo(t,()=>t.hide(!1))}function Zl(t){return w(document,ut,({target:e})=>{t.$el.contains(e)||z(document,`${_t} ${hi} scroll`,({defaultPrevented:i,type:s,target:n})=>{var o;!i&&s===_t&&e===n&&!((o=t.targetEl)!=null&&o.contains(e))&&t.hide(!1)},!0)})}var Uo={mixins:[st,Xe],props:{align:String,clsDrop:String,boundary:Boolean,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number,mode:Boolean,offset:Boolean,stretch:Boolean,delayShow:Boolean,delayHide:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,animation:Boolean,animateOut:Boolean,closeOnScroll:Boolean},data:{align:U?"right":"left",clsDrop:"uk-dropdown",clsDropbar:"uk-dropnav-dropbar",boundary:!0,dropbar:!1,dropbarAnchor:!1,delayShow:160,duration:200,container:!1,selNavItem:"> li > a, > ul > li > a"},computed:{dropbarAnchor:({dropbarAnchor:t},e)=>et(t,e)||e,dropbar({dropbar:t}){return t?(t=this._dropbar||et(t,this.$el)||x(`+ .${this.clsDropbar}`,this.$el),t||(this._dropbar=x("<div></div>"))):null},dropContainer(t,e){return this.container||e},dropdowns({clsDrop:t},e){var i;const s=D(`.${t}`,e);if(this.dropContainer!==e)for(const n of D(`.${t}`,this.dropContainer)){const o=(i=this.getDropdown(n))==null?void 0:i.targetEl;!v(s,n)&&o&&this.$el.contains(o)&&s.push(n)}return s},items({selNavItem:t},e){return D(t,e)}},watch:{dropbar(t){I(t,"uk-dropbar","uk-dropbar-top",this.clsDropbar,`uk-${this.$options.name}-dropbar`)},dropdowns(){this.initializeDropdowns()}},connected(){this.initializeDropdowns(),Ql(this.$el)},disconnected(){Q(this._dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate:({selNavItem:t})=>t,handler({current:t}){const e=this.getActive();e&&v(e.mode,"hover")&&e.targetEl&&!t.contains(e.targetEl)&&!e.isDelaying()&&e.hide(!1)}},{name:"keydown",self:!0,delegate:({selNavItem:t})=>t,handler(t){var e;const{current:i,keyCode:s}=t,n=this.getActive();if(s===B.DOWN)if((n==null?void 0:n.targetEl)===i)t.preventDefault(),(e=x(ue,n.$el))==null||e.focus();else{const o=this.dropdowns.find(r=>{var a;return((a=this.getDropdown(r))==null?void 0:a.targetEl)===i});o&&(t.preventDefault(),i.click(),z(o,"show",r=>{var a;return(a=x(ue,r.target))==null?void 0:a.focus()}))}Vo(t,this.items,n)}},{name:"keydown",el:({dropContainer:t})=>t,delegate:({clsDrop:t})=>`.${t}`,handler(t){var e;const{current:i,keyCode:s,target:n}=t;if(ci(n)||!v(this.dropdowns,i))return;const o=this.getActive();let r=-1;if(s===B.HOME?r=0:s===B.END?r="last":s===B.UP?r="previous":s===B.DOWN?r="next":s===B.ESC&&((e=o.targetEl)==null||e.focus()),~r){t.preventDefault();const a=D(ue,i);a[rt(r,a,xt(a,l=>T(l,":focus")))].focus();return}Vo(t,this.items,o)}},{name:"mouseleave",el:({dropbar:t})=>t,filter:({dropbar:t})=>t,handler(){const t=this.getActive();t&&v(t.mode,"hover")&&!this.dropdowns.some(e=>T(e,":hover"))&&t.hide()}},{name:"beforeshow",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){this.isDropbarDrop(t)&&(this.dropbar.previousElementSibling!==this.dropbarAnchor&&gi(this.dropbarAnchor,this.dropbar),I(t,`${this.clsDrop}-dropbar`))}},{name:"show",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){if(!this.isDropbarDrop(t))return;const e=this.getDropdown(t),i=()=>{const s=Math.max(...de(t,`.${this.clsDrop}`).concat(t).map(n=>C(n).bottom));C(this.dropbar,{left:C(this.dropbar).left,top:this.getDropbarOffset(e.getPositionOffset())}),this.transitionTo(s-C(this.dropbar).top+S(h(t,"marginBottom")),t)};this._observer=qe([e.$el,...e.target],i),i()}},{name:"beforehide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler(t){const e=this.getActive();T(this.dropbar,":hover")&&e.$el===t.target&&this.isDropbarDrop(e.$el)&&v(e.mode,"hover")&&e.isDelayedHide&&!this.items.some(i=>e.targetEl!==i&&T(i,":focus"))&&t.preventDefault()}},{name:"hide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){var e;if(!this.isDropbarDrop(t))return;(e=this._observer)==null||e.disconnect();const i=this.getActive();(!i||i.$el===t)&&this.transitionTo(0)}}],methods:{getActive(){var t;return v(this.dropdowns,(t=Y)==null?void 0:t.$el)&&Y},async transitionTo(t,e){const{dropbar:i}=this,s=tt(i);if(e=s<t&&e,await M.cancel([e,i]),e){const n=C(e).top-C(i).top-s;n>0&&h(e,"transitionDelay",`${n/t*this.duration}ms`)}h(e,"clipPath",`polygon(0 0,100% 0,100% ${s}px,0 ${s}px)`),tt(i,s),await Promise.all([M.start(i,{height:t},this.duration),M.start(e,{clipPath:`polygon(0 0,100% 0,100% ${t}px,0 ${t}px)`},this.duration).finally(()=>h(e,{clipPath:"",transitionDelay:""}))]).catch(A)},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return v(this.dropdowns,t)&&$(t,this.clsDrop)},getDropbarOffset(t){const{$el:e,target:i,targetY:s}=this,{top:n,height:o}=C(et(s||i||e,e));return n+o+t},initializeDropdowns(){this.$create("drop",this.dropdowns.filter(t=>!this.getDropdown(t)),{...this.$props,flip:!1,shift:!0,pos:`bottom-${this.align}`,boundary:this.boundary===!0?this.$el:this.boundary})}}};function Vo(t,e,i){var s,n,o;const{current:r,keyCode:a}=t;let l=-1;a===B.HOME?l=0:a===B.END?l="last":a===B.LEFT?l="previous":a===B.RIGHT?l="next":a===B.TAB&&((s=i.targetEl)==null||s.focus(),(n=i.hide)==null||n.call(i,!1)),~l&&(t.preventDefault(),(o=i.hide)==null||o.call(i,!1),e[rt(l,e,e.indexOf(i.targetEl||r))].focus())}function Ql(t){const e=()=>i.forEach(s=>s()),i=[z(t.ownerDocument,Me,s=>t.contains(s.target)||e()),w(t,`mouseenter ${At}`,s=>s.stopPropagation(),{capture:!0}),w(t,`mouseleave ${Ut}`,e,{capture:!0})]}var th={mixins:[st],args:"target",props:{target:Boolean},data:{target:!1},computed:{input:(t,e)=>x(De,e),state(){return this.input.nextElementSibling},target({target:t},e){return t&&(t===!0&&O(this.input)===e&&this.input.nextElementSibling||x(t,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let s;const n=ci(e)?"value":"textContent",o=e[n],r=(t=i.files)!=null&&t[0]?i.files[0].name:T(i,"select")&&(s=D("option",i).filter(a=>a.selected)[0])?s.textContent:i.value;o!==r&&(e[n]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el:({$el:t})=>t.closest("form"),handler(){this.$emit()}}]},eh={extends:_n,mixins:[st],name:"grid",props:{masonry:Boolean,parallax:String,parallaxStart:String,parallaxEnd:String,parallaxJustify:Boolean},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0,parallaxStart:0,parallaxEnd:0,parallaxJustify:!1},connected(){this.masonry&&I(this.$el,"uk-flex-top","uk-flex-wrap-top")},observe:Ye({filter:({parallax:t,parallaxJustify:e})=>t||e}),update:[{write({rows:t}){L(this.$el,this.clsStack,!t.some(e=>e.length>1))},events:["resize"]},{read(t){const{rows:e}=t;let{masonry:i,parallax:s,parallaxJustify:n,margin:o}=this;if(s=Math.max(0,G(s)),!(i||s||n)||Yo(e)||e[0].some((b,y)=>e.some(P=>P[y]&&P[y].offsetWidth!==b.offsetWidth)))return t.translates=t.scrollColumns=!1;let r=sh(e,o),a,l;i?[a,l]=ih(e,r,i==="next"):a=nh(e);const c=a.map(b=>jt(b,"offsetHeight")+r*(b.length-1)),u=Math.max(0,...c);let d,f,p;return(s||n)&&(d=c.map((b,y)=>n?u-b+s:s/(y%2||8)),n||(s=Math.max(...c.map((b,y)=>b+d[y]-u))),f=G(this.parallaxStart,"height",this.$el,!0),p=G(this.parallaxEnd,"height",this.$el,!0)),{columns:a,translates:l,scrollColumns:d,parallaxStart:f,parallaxEnd:p,padding:s,height:l?u:""}},write({height:t,padding:e}){h(this.$el,"paddingBottom",e||""),t!==!1&&h(this.$el,"height",t)},events:["resize"]},{read({rows:t,scrollColumns:e,parallaxStart:i,parallaxEnd:s}){return{scrolled:e&&!Yo(t)?yi(this.$el,i,s):!1}},write({columns:t,scrolled:e,scrollColumns:i,translates:s}){!e&&!s||t.forEach((n,o)=>n.forEach((r,a)=>{let[l,c]=s&&s[o][a]||[0,0];e&&(c+=e*i[o]),h(r,"transform",`translate(${l}px, ${c}px)`)}))},events:["scroll","resize"]}]};function Yo(t){return t.flat().some(e=>h(e,"position")==="absolute")}function ih(t,e,i){const s=[],n=[],o=Array(t[0].length).fill(0);let r=0;for(let a of t){U&&a.reverse();let l=0;for(const c in a){const{offsetWidth:u,offsetHeight:d}=a[c],f=i?c:o.indexOf(Math.min(...o));Ns(s,f,a[c]),Ns(n,f,[(f-c)*u*(U?-1:1),o[f]-r]),o[f]+=d+e,l=Math.max(l,d)}r+=l+e}return[s,n]}function sh(t,e){const i=t.flat().find(s=>$(s,e));return S(i?h(i,"marginTop"):h(t[0][0],"paddingLeft"))}function nh(t){const e=[];for(const i of t)for(const s in i)Ns(e,s,i[s]);return e}function Ns(t,e,i){t[e]||(t[e]=[]),t[e].push(i)}var oh={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:({target:t},e)=>D(t,e)},observe:dt({target:({$el:t,elements:e})=>e.reduce((i,s)=>i.concat(s,...s.children),[t])}),events:{name:"loadingdone",el:()=>document.fonts,handler(){this.$emit("resize")}},update:{read(){return{rows:(this.row?xs(this.elements):[this.elements]).map(rh)}},write({rows:t}){for(const{heights:e,elements:i}of t)i.forEach((s,n)=>h(s,"minHeight",e[n]))},events:["resize"]}};function rh(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(ah);const i=Math.max(...e);return{heights:t.map((s,n)=>e[n].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function ah(t){const e=oi(t.style,["display","minHeight"]);W(t)||h(t,"display","block","important"),h(t,"minHeight","");const i=g(t).height-ge(t,"height","content-box");return h(t,e),i}var lh={args:"target",props:{target:String},data:{target:""},computed:{target:{get:({target:t},e)=>et(t,e),observe:({target:t})=>t}},observe:dt({target:({target:t})=>t}),update:{read(){return this.target?{height:this.target.offsetHeight}:!1},write({height:t}){h(this.$el,"minHeight",t)},events:["resize"]}},hh={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,min:Number,property:String},data:{expand:!1,offsetTop:!1,offsetBottom:!1,min:0,property:"min-height"},observe:[ws({filter:({expand:t})=>t}),dt({target:({$el:t})=>Gt(t)})],update:{read(){if(!W(this.$el))return!1;let t="";const e=ge(this.$el,"height","content-box"),{body:i,scrollingElement:s}=document,n=Bt(this.$el),{height:o}=at(n===i?s:n),r=s===n||i===n;if(t=`calc(${r?"100vh":`${o}px`}`,this.expand){const a=g(n).height-g(this.$el).height;t+=` - ${a}px`}else{if(this.offsetTop)if(r){const a=this.offsetTop===!0?this.$el:et(this.offsetTop,this.$el),{top:l}=C(a);t+=l>0&&l<o/2?` - ${l}px`:""}else t+=` - ${ge(n,"height",h(n,"boxSizing"))}px`;this.offsetBottom===!0?t+=` - ${g(this.$el.nextElementSibling).height}px`:mt(this.offsetBottom)?t+=` - ${this.offsetBottom}vh`:this.offsetBottom&&ne(this.offsetBottom,"px")?t+=` - ${S(this.offsetBottom)}px`:H(this.offsetBottom)&&(t+=` - ${g(et(this.offsetBottom,this.$el)).height}px`)}return t+=`${e?` - ${e}px`:""})`,{minHeight:t}},write({minHeight:t}){h(this.$el,this.property,`max(${this.min||0}px, ${t})`)},events:["resize"]}},ch='<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',uh='<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',dh='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',fh='<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="11" x="9" y="4"/><rect width="11" height="1" x="4" y="9"/></svg>',ph='<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',gh='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',mh='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',vh='<svg width="20" height="20" viewBox="0 0 20 20"><style>.uk-navbar-toggle-icon svg>[class*="line-"]{transition:0.2s ease-in-out;transition-property:transform, opacity;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg>.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{transform:translateY(-6px) scaleX(0)}</style><rect width="20" height="2" y="3" class="line-1"/><rect width="20" height="2" y="9" class="line-2"/><rect width="20" height="2" y="9" class="line-3"/><rect width="20" height="2" y="15" class="line-4"/></svg>',bh='<svg width="40" height="40" viewBox="0 0 40 40"><rect width="1" height="40" x="19" y="0"/><rect width="40" height="1" x="0" y="19"/></svg>',wh='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',xh='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',Go='<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',$h='<svg width="40" height="40" viewBox="0 0 40 40"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',yh='<svg width="24" height="24" viewBox="0 0 24 24"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',kh='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5"/></svg>',Sh='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1"/></svg>',Ih='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547"/></svg>',Eh='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23"/></svg>',Ch='<svg width="30" height="30" viewBox="0 0 30 30"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',Th='<svg width="18" height="10" viewBox="0 0 18 10"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9"/></svg>',Xo={args:"src",props:{width:Number,height:Number,ratio:Number},data:{ratio:1},connected(){this.svg=this.getSvg().then(t=>{if(!this._connected)return;const e=Ph(t,this.$el);return this.svgEl&&e!==this.svgEl&&Q(this.svgEl),_h.call(this,e,t),this.svgEl=e},A)},disconnected(){this.svg.then(t=>{this._connected||(Yi(this.$el)&&(this.$el.hidden=!1),Q(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){}}};function Ph(t,e){if(Yi(e)||F(e,"canvas")){e.hidden=!0;const s=e.nextElementSibling;return Jo(t,s)?s:gi(e,t)}const i=e.lastElementChild;return Jo(t,i)?i:j(e,t)}function Jo(t,e){return F(t,"svg")&&F(e,"svg")&&t.innerHTML===e.innerHTML}function _h(t,e){const i=["width","height"];let s=i.map(o=>this[o]);s.some(o=>o)||(s=i.map(o=>k(e,o)));const n=k(e,"viewBox");n&&!s.some(o=>o)&&(s=n.split(" ").slice(2)),s.forEach((o,r)=>k(t,i[r],S(o)*this.ratio||null))}function Ko(t,e){return e&&v(t,"<symbol")&&(t=Oh(t)[e]||t),E(It(t)).filter(re)[0]}const Ah=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,Oh=ct(function(t){const e={};let i;for(;i=Ah.exec(t);)e[i[3]]=`<svg ${i[1]}svg>`;return e}),Fi={spinner:Ch,totop:Th,marker:fh,"close-icon":ch,"close-large":uh,"drop-parent-icon":dh,"nav-parent-icon":gh,"nav-parent-icon-large":ph,"navbar-parent-icon":mh,"navbar-toggle-icon":vh,"overlay-icon":bh,"pagination-next":wh,"pagination-previous":xh,"search-icon":Go,"search-medium":yh,"search-large":$h,"search-toggle-icon":Go,"slidenav-next":Sh,"slidenav-next-large":kh,"slidenav-previous":Eh,"slidenav-previous-large":Ih},zs={install:jh,mixins:[Xo],args:"icon",props:{icon:String},isIcon:!0,beforeConnect(){I(this.$el,"uk-icon")},async connected(){const t=await this.svg;t&&(t.ariaHidden=!0)},methods:{async getSvg(){const t=qh(this.icon);if(!t)throw"Icon not found.";return t}}},ee={args:!1,extends:zs,data:t=>({icon:Ft(t.constructor.options.name)}),beforeConnect(){I(this.$el,this.$options.id)}},Mh={extends:ee,beforeConnect(){const t=this.$props.icon;this.icon=this.$el.closest(".uk-nav-primary")?`${t}-large`:t}},Dh={extends:ee,mixins:[Ci],i18n:{toggle:"Open Search",submit:"Submit Search"},beforeConnect(){const t=$(this.$el,"uk-search-toggle")||$(this.$el,"uk-navbar-toggle");if(this.icon=t?"search-toggle-icon":$(this.$el,"uk-search-icon")&&this.$el.closest(".uk-search-large")?"search-large":this.$el.closest(".uk-search-medium")?"search-medium":this.$props.icon,!Pt(this.$el,"aria-label"))if(t)this.$el.ariaLabel=this.t("toggle");else{const e=this.$el.closest("a,button");e&&(e.ariaLabel=this.t("submit"))}}},Bh={extends:ee,beforeConnect(){this.$el.role="status"},methods:{async getSvg(){const t=await zs.methods.getSvg.call(this);return this.ratio!==1&&h(x("circle",t),"strokeWidth",1/this.ratio),t}}},ie={extends:ee,mixins:[Ci],beforeConnect(){const t=this.$el.closest("a,button");k(t,"role",this.role!==null&&F(t,"a")?"button":this.role);const e=this.t("label");e&&!Pt(t,"aria-label")&&k(t,"aria-label",e)}},Zo={extends:ie,beforeConnect(){I(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=$(this.$el,"uk-slidenav-large")?`${t}-large`:t}},Nh={extends:ie,i18n:{label:"Open menu"},beforeConnect(){const t=this.$el.closest("a,button");t&&(t.ariaExpanded=!1)}},zh={extends:ie,i18n:{label:"Close"},beforeConnect(){this.icon=`close-${$(this.$el,"uk-close-large")?"large":"icon"}`}},Fh={extends:ie,i18n:{label:"Open"}},Hh={extends:ie,i18n:{label:"Back to top"}},Lh={extends:ie,i18n:{label:"Next page"},data:{role:null}},Wh={extends:ie,i18n:{label:"Previous page"},data:{role:null}},Hi={};function jh(t){t.icon.add=(e,i)=>{const s=H(e)?{[e]:i}:e;le(s,(n,o)=>{Fi[o]=n,delete Hi[o]}),t._initialized&&Mt(document.body,n=>le(t.getComponents(n),o=>{o.$options.isIcon&&o.icon in s&&o.$reset()}))}}const Rh={twitter:"x"};function qh(t){return t=Rh[t]||t,Fi[t]?(Hi[t]||(Hi[t]=Ko(Fi[Uh(t)]||Fi[t])),Hi[t].cloneNode(!0)):null}function Uh(t){return U?qi(qi(t,"left","right"),"previous","next"):t}var Vh={props:{target:String,selActive:String},data:{target:!1,selActive:!1},connected(){this.isIntersecting=0},computed:{target:({target:t},e)=>t?D(t,e):e},watch:{target:{handler(){queueMicrotask(()=>this.$reset())},immediate:!1}},observe:[be({handler(t){this.isIntersecting=t.reduce((e,{isIntersecting:i})=>e+(i?1:this.isIntersecting?-1:0),this.isIntersecting),this.$emit()},target:({target:t})=>t,args:{intersecting:!1}}),Si({target:({target:t})=>t,options:{attributes:!0,attributeFilter:["class"]}}),{target:({target:t})=>t,observe:(t,e)=>{const i=qe([...E(t),document.documentElement],e),s=[w(document,"scroll itemshown itemhidden",e,{passive:!0,capture:!0}),w(document,"show hide transitionstart",n=>(e(),i.observe(n.target))),w(document,"shown hidden transitionend transitioncancel",n=>(e(),i.unobserve(n.target)))];return{observe:i.observe.bind(i),unobserve:i.unobserve.bind(i),disconnect(){i.disconnect(),s.map(n=>n())}}},handler(){this.$emit()}}],update:{read(){if(!this.isIntersecting)return!1;for(const t of E(this.target)){let e=!this.selActive||T(t,this.selActive)?Yh(t):"";e!==!1&&li(t,"uk-light uk-dark",e)}}}};function Yh(t){const e=g(t),i=g(window);if(!ri(e,i))return!1;const{left:s,top:n,height:o,width:r}=e;let a;for(const l of[.25,.5,.75]){const c=t.ownerDocument.elementsFromPoint(Math.max(0,Math.min(s+r*l,i.width-1)),Math.max(0,Math.min(n+o/2,i.height-1)));for(const u of c){if(t.contains(u)||!Gh(u)||u.closest('[class*="-leave"]')&&c.some(f=>u!==f&&T(f,'[class*="-enter"]')))continue;const d=h(u,"--uk-inverse");if(d){if(d===a)return`uk-${d}`;a=d;break}}}return a?`uk-${a}`:""}function Gh(t){if(h(t,"visibility")!=="visible")return!1;for(;t;){if(h(t,"opacity")==="0")return!1;t=O(t)}return!0}var Xh={mixins:[st,_i],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill:({fill:t},e)=>t||h(e,"--uk-leader-fill-content")},connected(){[this.wrapper]=is(this.$el,`<span class="${this.clsWrapper}">`)},disconnected(){We(this.wrapper.childNodes)},observe:dt(),update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write({width:t,fill:e,hide:i}){L(this.wrapper,this.clsHide,i),k(this.wrapper,this.attrFill,new Array(t).join(e))},events:["resize"]}},Jh={install:Kh,mixins:[Ps],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:'[class*="uk-modal-close"]'},events:[{name:"fullscreenchange webkitendfullscreen",capture:!0,handler(t){F(t.target,"video")&&this.isToggled()&&!document.fullscreenElement&&this.hide()}},{name:"show",self:!0,handler(){$(this.panel,"uk-margin-auto-vertical")?I(this.$el,"uk-flex"):h(this.$el,"display","block"),tt(this.$el)}},{name:"hidden",self:!0,handler(){h(this.$el,"display",""),_(this.$el,"uk-flex")}}]};function Kh({modal:t}){t.dialog=function(i,s){const n=t(x(`<div><div class="uk-modal-dialog">${i}</div></div>`),{stack:!0,role:"alertdialog",...s});return n.show(),w(n.$el,"hidden",async()=>{await Promise.resolve(),n.$destroy(!0)},{self:!0}),n},t.alert=function(i,s){return e(({i18n:n})=>`<div class="uk-modal-body">${H(i)?i:vt(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" type="button" autofocus>${n.ok}</button> </div>`,s)},t.confirm=function(i,s){return e(({i18n:n})=>`<form> <div class="uk-modal-body">${H(i)?i:vt(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${n.cancel}</button> <button class="uk-button uk-button-primary" autofocus>${n.ok}</button> </div> </form>`,s,()=>Promise.reject())},t.prompt=function(i,s,n){const o=e(({i18n:l})=>`<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>${H(i)?i:vt(i)}</label> <input class="uk-input" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${l.cancel}</button> <button class="uk-button uk-button-primary">${l.ok}</button> </div> </form>`,n,()=>null,()=>a.value),{$el:r}=o.dialog,a=x("input",r);return a.value=s||"",w(r,"show",()=>a.select()),o},t.i18n={ok:"Ok",cancel:"Cancel"};function e(i,s,n=A,o=A){s={bgClose:!1,escClose:!0,...s,i18n:{...t.i18n,...s==null?void 0:s.i18n}};const r=t.dialog(i(s),s);return ft(new Promise(a=>{const l=w(r.$el,"hide",()=>a(n()));w(r.$el,"submit","form",c=>{c.preventDefault(),a(o(r)),l(),r.hide()})}),{dialog:r})}}var Zh={extends:Lo,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const Fs="uk-navbar-transparent";var Qh={extends:Uo,props:{dropbarTransparentMode:Boolean},data:{delayShow:200,clsDrop:"uk-navbar-dropdown",selNavItem:".uk-navbar-nav > li > a,a.uk-navbar-item,button.uk-navbar-item,.uk-navbar-item a,.uk-navbar-item button,.uk-navbar-toggle",dropbarTransparentMode:!1},computed:{navbarContainer:(t,e)=>e.closest(".uk-navbar-container")},watch:{items(){const t=$(this.$el,"uk-navbar-justify"),e=D(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el);for(const i of e){const s=t?D(".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",i).length:"";h(i,"flexGrow",s)}}},events:[{name:"show",el:({dropContainer:t})=>t,handler({target:t}){this.getTransparentMode(t)==="remove"&&$(this.navbarContainer,Fs)&&(_(this.navbarContainer,Fs),this._transparent=!0)}},{name:"hide",el:({dropContainer:t})=>t,async handler(){await tc(),this._transparent&&(!Y||!this.dropContainer.contains(Y.$el))&&(I(this.navbarContainer,Fs),this._transparent=null)}}],methods:{getTransparentMode(t){if(!this.navbarContainer)return;if(this.dropbar&&this.isDropbarDrop(t))return this.dropbarTransparentMode;const e=this.getDropdown(t);if(e&&$(t,"uk-dropbar"))return e.inset?"behind":"remove"},getDropbarOffset(t){const{top:e,height:i}=C(this.navbarContainer);return e+(this.dropbarTransparentMode==="behind"?0:i+t)}}};function tc(){return new Promise(t=>setTimeout(t))}var ec={mixins:[Ps],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean,swiping:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1,swiping:!0},computed:{clsFlip:({flip:t,clsFlip:e})=>t?e:"",clsOverlay:({overlay:t,clsOverlay:e})=>t?e:"",clsMode:({mode:t,clsMode:e})=>`${e}-${t}`,clsSidebarAnimation:({mode:t,clsSidebarAnimation:e})=>t==="none"||t==="reveal"?"":e,clsContainerAnimation:({mode:t,clsContainerAnimation:e})=>t!=="push"&&t!=="reveal"?"":e,transitionElement({mode:t}){return t==="reveal"?O(this.panel):this.panel}},observe:Pn({filter:({swiping:t})=>t}),update:{read(){this.isToggled()&&!W(this.$el)&&this.hide()},events:["resize"]},events:[{name:"touchmove",self:!0,passive:!1,filter:({overlay:t})=>t,handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!$(O(this.panel),this.clsMode)&&I(Le(this.panel,"<div>"),this.clsMode);const{body:t,scrollingElement:e}=document;I(t,this.clsContainer,this.clsFlip),h(t,"touchAction","pan-y pinch-zoom"),h(this.$el,"display","block"),h(this.panel,"maxWidth",e.clientWidth),I(this.$el,this.clsOverlay),I(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),tt(t),I(t,this.clsContainerAnimation),this.clsContainerAnimation&&ic()}},{name:"hide",self:!0,handler(){_(document.body,this.clsContainerAnimation),h(document.body,"touchAction","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&sc(),this.mode==="reveal"&&$(O(this.panel),this.clsMode)&&We(this.panel),_(this.panel,this.clsSidebarAnimation,this.clsMode),_(this.$el,this.clsOverlay),h(this.$el,"display",""),h(this.panel,"maxWidth",""),_(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&ne(t.type,"Left")^this.flip&&this.hide()}}]};function ic(){Qo().content+=",user-scalable=0"}function sc(){const t=Qo();t.content=t.content.replace(/,user-scalable=0$/,"")}function Qo(){return x('meta[name="viewport"]',document.head)||j(document.head,'<meta name="viewport">')}var nc={mixins:[st],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container:({selContainer:t},e)=>e.closest(t),content:({selContent:t},e)=>e.closest(t)},observe:dt({target:({container:t,content:e})=>[t,e]}),update:{read(){return!this.content||!this.container||!W(this.$el)?!1:{max:Math.max(this.minHeight,tt(this.container)-(g(this.content).height-tt(this.$el)))}},write({max:t}){h(this.$el,{minHeight:this.minHeight,maxHeight:t})},events:["resize"]}},oc={props:["width","height"],connected(){I(this.$el,"uk-responsive-width"),h(this.$el,"aspectRatio",`${this.width}/${this.height}`)}},rc={props:{offset:Number},data:{offset:0},connected(){ac(this)},disconnected(){lc(this)},methods:{async scrollTo(t){t=t&&x(t)||document.body,m(this.$el,"beforescroll",[this,t])&&(await bn(t,{offset:this.offset}),m(this.$el,"scrolled",[this,t]))}}};const ii=new Set;function ac(t){ii.size||w(document,"click",tr),ii.add(t)}function lc(t){ii.delete(t),ii.size||Vt(document,"click",tr)}function tr(t){if(!t.defaultPrevented)for(const e of ii)e.$el.contains(t.target)&&fe(e.$el)&&(t.preventDefault(),window.location.href!==e.$el.href&&window.history.pushState({},"",e.$el.href),e.scrollTo(ui(e.$el)))}const Hs="uk-scrollspy-inview";var hc={args:"cls",props:{cls:String,target:String,hidden:Boolean,margin:String,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,margin:"-1px",repeat:!1,delay:0}),computed:{elements:({target:t},e)=>t?D(t,e):[e]},watch:{elements(t){this.hidden&&h(Ne(t,`:not(.${Hs})`),"opacity",0)}},connected(){this.elementData=new Map},disconnected(){for(const[t,e]of this.elementData.entries())_(t,Hs,(e==null?void 0:e.cls)||"");delete this.elementData},observe:be({target:({elements:t})=>t,handler(t){const e=this.elementData;for(const{target:i,isIntersecting:s}of t){e.has(i)||e.set(i,{cls:Z(i,"uk-scrollspy-class")||this.cls});const n=e.get(i);!this.repeat&&n.show||(n.show=s)}this.$emit()},options:({margin:t})=>({rootMargin:t}),args:{intersecting:!1}}),update:[{write(t){for(const[e,i]of this.elementData.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(s=>setTimeout(s,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){var i,s;const n=(i=this.elementData)==null?void 0:i.get(t);if(!n)return;(s=n.off)==null||s.call(n),h(t,"opacity",!e&&this.hidden?0:""),L(t,Hs,e),L(t,n.cls);let o;if(o=n.cls.match(/\buk-animation-[\w-]+/g)){const r=()=>_(t,o);e?n.off=z(t,"animationcancel animationend",r,{self:!0}):r()}m(t,e?"inview":"outview"),n.inview=e}}},cc={props:{cls:String,closest:Boolean,scroll:Boolean,target:String,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,target:'a[href]:not([role="button"])',offset:0},computed:{links:{get({target:t},e){return D(t,e).filter(ui)},observe:()=>"*"},targets(){return this.links.map(t=>ui(t))},elements({closest:t}){return this.links.map(e=>e.closest(t||"*"))}},watch:{links(t){this.scroll&&this.$create("scroll",t,{offset:this.offset})}},observe:[be(),Ye()],update:[{read(){const{targets:t}=this,{length:e}=t;if(!e||!W(this.$el))return!1;const i=Bt(t,!0),{scrollTop:s,scrollHeight:n}=i,o=at(i),r=n-o.height;let a=!1;if(s>=r)a=e-1;else{const l=this.offset+g(fs()).height+o.height*.1;for(let c=0;c<t.length&&!(C(t[c]).top-o.top-l>0);c++)a=+c}return{active:a}},write({active:t}){const{elements:e}=this,i=t!==!1&&!$(e[t],this.cls);this.links.forEach(s=>s.blur());for(let s=0;s<e.length;s++)L(e[s],this.cls,+s===t);i&&m(this.$el,"active",[t,e[t]])},events:["scroll","resize"]}]},uc={mixins:[st,_i],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,offsetEnd:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,offsetEnd:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{target:({selTarget:t},e)=>t&&x(t,e)||e},connected(){this.start=er(this.start||this.top),this.end=er(this.end||this.bottom),this.placeholder=x("+ .uk-sticky-placeholder",this.$el)||x('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},beforeDisconnect(){this.isFixed&&(this.hide(),_(this.target,this.clsInactive)),Ws(this.$el),Q(this.placeholder),this.placeholder=null},observe:[ws(),Ye({target:()=>document.scrollingElement}),dt({target:({$el:t})=>[t,Li(t),document.scrollingElement],handler(t){this.$emit(this._data.resized&&t.some(({target:e})=>e===Li(this.$el))?"update":"resize"),this._data.resized=!0}})],events:[{name:"load hashchange popstate",el:()=>window,filter:({targetOffset:t})=>t!==!1,handler(){const{scrollingElement:t}=document;!location.hash||t.scrollTop===0||setTimeout(()=>{const e=C(x(location.hash)),i=C(this.$el);this.isFixed&&ri(e,i)&&(t.scrollTop=Math.ceil(e.top-i.height-G(this.targetOffset,"height",this.placeholder)-G(this.offset,"height",this.placeholder)))})}}],update:[{read({height:t,width:e,margin:i,sticky:s},n){if(this.inactive=!this.matchMedia||!W(this.$el)||!this.$el.offsetHeight,this.inactive)return;const o=tt(window),r=Math.max(0,document.scrollingElement.scrollHeight-o);if(!r){this.inactive=!0;return}const a=this.isFixed&&n.has("update");a&&(Rs(this.target),this.hide()),this.active||({height:t,width:e}=g(this.$el),i=h(this.$el,"margin")),a&&this.show();const l=G("100vh","height");let c=this.position;this.overflowFlip&&t>l&&(c=c==="top"?"bottom":"top");const u=this.isFixed?this.placeholder:this.$el;let[d,f]=[this.offset,this.offsetEnd].map(zt=>G(zt,"height",s?this.$el:u));c==="bottom"&&(t<o||this.overflowFlip)&&(d+=o-t);const p=t+d+f,b=this.overflowFlip?0:Math.max(0,p-l),y=C(u).top-new DOMMatrix(h(u,"transform")).m42,P=g(this.$el).height,it=(this.start===!1?y:Ls(this.start,this.$el,y))-d,Ct=this.end===!1?r:Math.min(r,Ls(this.end,this.$el,y+t,!0)-P-d+b);return s=!this.showOnUp&&it+d===y&&Ct===Math.min(r,Ls(!0,this.$el,0,!0)-P-d+b)&&h(Li(this.$el),"overflowY")!=="hidden",{start:it,end:Ct,offset:d,overflow:b,height:t,elHeight:P,width:e,margin:i,top:je(u)[0],sticky:s,viewport:l,maxScrollHeight:r}},write({height:t,width:e,margin:i,offset:s,sticky:n}){if((this.inactive||n||!this.isFixed)&&Ws(this.$el),this.inactive)return;n&&(t=e=i=0,h(this.$el,{position:"sticky",top:s}));const{placeholder:o}=this;h(o,{height:t,width:e,margin:i}),(O(o)!==O(this.$el)||n^yt(o)<yt(this.$el))&&((n?pi:gi)(this.$el,o),o.hidden=!0)},events:["resize"]},{read({scroll:t=0,dir:e="down",overflow:i,overflowScroll:s=0,start:n,end:o,elHeight:r,height:a,sticky:l,maxScrollHeight:c}){const u=Math.min(document.scrollingElement.scrollTop,c),d=t<=u?"down":"up",f=this.isFixed?this.placeholder:this.$el;return{dir:d,prevDir:e,scroll:u,prevScroll:t,below:u>C(f).top+(l?Math.min(a,r):a),offsetParentTop:C(f.offsetParent).top,overflowScroll:K(s+K(u,n,o)-K(t,n,o),0,i)}},write(t,e){const i=e.has("scroll"),{initTimestamp:s=0,dir:n,prevDir:o,scroll:r,prevScroll:a=0,top:l,start:c,below:u}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const d=Date.now();if((d-s>300||n!==o)&&(t.initScroll=r,t.initTimestamp=d),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<c||this.showOnUp&&(r<=c||n==="down"&&i||n==="up"&&!this.isFixed&&!u)){if(!this.isFixed){Ot.inProgress(this.$el)&&l>r&&(Ot.cancel(this.$el),this.hide());return}if(this.animation&&u){if($(this.$el,"uk-animation-leave"))return;Ot.out(this.$el,this.animation).then(()=>this.hide(),A)}else this.hide()}else this.isFixed?this.update():this.animation&&u?(this.show(),Ot.in(this.$el,this.animation).catch(A)):(Rs(this.target),this.show())},events:["resize","resizeViewport","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){const{offset:t,sticky:e}=this._data;this.setActive(!1),_(this.$el,this.clsFixed,this.clsBelow),e?h(this.$el,"top",t):Ws(this.$el),this.placeholder.hidden=!0,this.isFixed=!1},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:s=0,start:n,end:o,offset:r,offsetParentTop:a,sticky:l,below:c}=this._data;const u=n!==0||e>n;if(!l){let d="fixed";e>o&&(r+=o-a+s-i,d="absolute"),h(this.$el,{position:d,width:t,marginTop:0},"important")}h(this.$el,"top",r-s),this.setActive(u),L(this.$el,this.clsBelow,c),I(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(li(this.target,this.clsInactive,this.clsActive),e!==t&&m(this.$el,"active")):(li(this.target,this.clsActive,this.clsInactive),e!==t&&(Rs(this.target),m(this.$el,"inactive")))}}};function Ls(t,e,i,s){if(!t)return 0;if(mt(t)||H(t)&&t.match(/^-?\d/))return i+G(t,"height",e,!0);{const n=t===!0?Li(e):et(t,e);return C(n).bottom-(s&&(n!=null&&n.contains(e))?S(h(n,"paddingBottom"))+S(h(n,"borderBottomWidth")):0)}}function er(t){return t==="true"?!0:t==="false"?!1:t}function Ws(t){h(t,{position:"",top:"",marginTop:"",width:""})}const js="uk-transition-disable";function Rs(t){$(t,js)||(I(t,js),requestAnimationFrame(()=>_(t,js)))}function Li(t){for(;t=O(t);)if(W(t))return t}var dc={mixins:[Xo],args:"src",props:{src:String,icon:String,attributes:"list",strokeAnimation:Boolean},data:{strokeAnimation:!1},observe:[Si({async handler(){const t=await this.svg;t&&ir.call(this,t)},options:{attributes:!0,attributeFilter:["id","class","style"]}})],async connected(){v(this.src,"#")&&([this.src,this.icon]=this.src.split("#",2));const t=await this.svg;t&&(ir.call(this,t),this.strokeAnimation&&pc(t))},methods:{async getSvg(){return F(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"&&await new Promise(t=>z(this.$el,"load",t)),Ko(await fc(this.src),this.icon)||Promise.reject("SVG not found.")}}};function ir(t){const{$el:e}=this;I(t,k(e,"class"),"uk-svg");for(let i=0;i<e.style.length;i++){const s=e.style[i];h(t,s,h(e,s))}for(const i in this.attributes){const[s,n]=this.attributes[i].split(":",2);k(t,s,n)}t.ariaHidden=this.$el.ariaHidden,this.$el.id||Oe(t,"id")}const fc=ct(async t=>{if(t){const e=await fetch(t);if(e.headers.get("Content-Type")==="image/svg+xml")return e.text()}return Promise.reject()});function pc(t){const e=go(t);e&&h(t,"--uk-animation-stroke",e)}const qs=".uk-disabled *, .uk-disabled, [disabled]";var sr={mixins:[Jt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,followFocus:Boolean,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,cls:"uk-active",attrItem:"uk-switcher-item",selVertical:".uk-nav",followFocus:!1,swiping:!0},computed:{connects:{get:({connect:t},e)=>ze(t,e),observe:({connect:t})=>t},connectChildren(){return this.connects.map(t=>N(t)).flat()},toggles:({toggle:t},e)=>D(t,e),children(t,e){return N(e).filter(i=>this.toggles.some(s=>i.contains(s)))}},watch:{connects(t){this.swiping&&h(t,"touchAction","pan-y pinch-zoom"),this.$emit()},connectChildren(){let t=Math.max(0,this.index());for(const e of this.connects)N(e).forEach((i,s)=>L(i,this.cls,s===t));this.$emit()},toggles(t){this.$emit();const e=this.index();this.show(~e?e:t[this.active]||t[0])}},connected(){this.$el.role="tablist"},observe:[Ii({targets:({connectChildren:t})=>t}),Pn({target:({connects:t})=>t,filter:({swiping:t})=>t})],events:[{name:"click keydown",delegate:({toggle:t})=>t,handler(t){!T(t.current,qs)&&(t.type==="click"||t.keyCode===B.SPACE)&&(Et(t),this.show(t.current))}},{name:"keydown",delegate:({toggle:t})=>t,handler(t){const{current:e,keyCode:i}=t,s=T(this.$el,this.selVertical);let n=i===B.HOME?0:i===B.END?"last":i===B.LEFT&&!s||i===B.UP&&s?"previous":i===B.RIGHT&&!s||i===B.DOWN&&s?"next":-1;if(~n){t.preventDefault();const o=this.toggles.filter(a=>!T(a,qs)),r=o[rt(n,o,o.indexOf(e))];r.focus(),this.followFocus&&this.show(r)}}},{name:"click",el:({$el:t,connects:e,itemNav:i})=>e.concat(i?ze(i,t):[]),delegate:({attrItem:t})=>`[${t}],[data-${t}]`,handler(t){t.target.closest("a,button")&&(Et(t),this.show(Z(t.current,this.attrItem)))}},{name:"swipeRight swipeLeft",filter:({swiping:t})=>t,el:({connects:t})=>t,handler({type:t}){this.show(ne(t,"Left")?"next":"previous")}}],update(){var t;for(const e of this.connects)F(e,"ul")&&(e.role="presentation");k(N(this.$el),"role","presentation");for(const e in this.toggles){const i=this.toggles[e],s=(t=this.connects[0])==null?void 0:t.children[e];i.role="tab",s&&(i.id=Qt(this,i),s.id=Qt(this,s),i.ariaControls=s.id,k(s,{role:"tabpanel","aria-labelledby":i.id}))}k(this.$el,"aria-orientation",T(this.$el,this.selVertical)?"vertical":null)},methods:{index(){return xt(this.children,t=>$(t,this.cls))},show(t){const e=this.toggles.filter(r=>!T(r,qs)),i=this.index(),s=rt(!Pe(t)||v(e,t)?t:0,e,rt(this.toggles[i],e)),n=rt(e[s],this.toggles);this.children.forEach((r,a)=>{L(r,this.cls,n===a),k(this.toggles[a],{"aria-selected":n===a,tabindex:n===a?null:-1})});const o=i>=0&&i!==s;this.connects.forEach(async({children:r})=>{const a=oe(r).filter((l,c)=>c!==n&&$(l,this.cls));await this.toggleElement(a,!1,o)&&await this.toggleElement(r[n],!0,o)})}}},gc={mixins:[st],extends:sr,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item",selVertical:".uk-tab-left,.uk-tab-right"},connected(){const t=$(this.$el,"uk-tab-left")?"uk-tab-left":$(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const mc=13,vc=32;var bc={mixins:[_i,Jt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get:({target:t},e)=>(t=ze(t||e.hash,e),t.length?t:[e]),observe:({target:t})=>t}},connected(){v(this.mode,"media")||(Be(this.$el)||(this.$el.tabIndex=0),!this.cls&&F(this.$el,"a")&&(this.$el.role="button"))},observe:Ii({targets:({target:t})=>t}),events:[{name:ut,filter:({mode:t})=>v(t,"hover"),handler(t){this._preventClick=null,!(!pt(t)||ae(this._showState)||this.$el.disabled)&&(m(this.$el,"focus"),z(document,ut,()=>m(this.$el,"blur"),!0,e=>!this.$el.contains(e.target)),v(this.mode,"click")&&(this._preventClick=!0))}},{name:`mouseenter mouseleave ${At} ${Ut} focus blur`,filter:({mode:t})=>v(t,"hover"),handler(t){if(pt(t)||this.$el.disabled||document.readyState==="loading")return;const e=v(["mouseenter",At,"focus"],t.type),i=this.isToggled(this.target);if(!e&&(!ae(this._showState)||t.type!=="blur"&&T(this.$el,":focus")||t.type==="blur"&&T(this.$el,":hover"))){i===this._showState&&(this._showState=null);return}e&&ae(this._showState)&&i!==this._showState||(this._showState=e?i:null,this.toggle(`toggle${e?"show":"hide"}`))}},{name:"keydown",filter:({$el:t,mode:e})=>v(e,"click")&&!F(t,"input"),handler(t){(t.keyCode===vc||t.keyCode===mc)&&(t.preventDefault(),this.$el.click())}},{name:"click",filter:({mode:t})=>["click","hover"].some(e=>v(t,e)),handler(t){if(t.defaultPrevented)return;const e=t.target.closest("a[href]"),i=fe(e)&&(!e.hash||T(this.target,e.hash));(this._preventClick||i||e&&!this.isToggled(this.target))&&t.preventDefault(),!this._preventClick&&v(this.mode,"click")&&(!e||i||t.defaultPrevented)&&this.toggle()}},{name:"mediachange",filter:({mode:t})=>v(t,"media"),el:({target:t})=>t,handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!m(this.target,t||"toggle",[this]))return;if(Pt(this.$el,"aria-expanded")&&(this.$el.ariaExpanded=!this.isToggled(this.target)),!this.queued)return this.toggleElement(this.target);const e=this.target.filter(s=>$(s,this.clsLeave));if(e.length){for(const s of this.target){const n=v(e,s);this.toggleElement(s,n,n)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1)&&await this.toggleElement(this.target.filter(s=>!v(i,s)),!0)}}},wc=Object.freeze({__proto__:null,Accordion:Lo,Alert:Rl,Close:zh,Cover:Vl,Drop:Ro,DropParentIcon:ee,Dropdown:Ro,Dropnav:Uo,FormCustom:th,Grid:eh,HeightMatch:oh,HeightPlaceholder:lh,HeightViewport:hh,Icon:zs,Img:ua,Inverse:Vh,Leader:Xh,Margin:_n,Marker:Fh,Modal:Jh,Nav:Zh,NavParentIcon:Mh,Navbar:Qh,NavbarParentIcon:ee,NavbarToggleIcon:Nh,Offcanvas:ec,OverflowAuto:nc,OverlayIcon:ee,PaginationNext:Lh,PaginationPrevious:Wh,Responsive:oc,Scroll:rc,Scrollspy:hc,ScrollspyNav:cc,SearchIcon:Dh,SlidenavNext:Zo,SlidenavPrevious:Zo,Spinner:Bh,Sticky:uc,Svg:dc,Switcher:sr,Tab:gc,Toggle:bc,Totop:Hh,Video:Wo});return le(wc,(t,e)=>ht.component(e,t)),Fl(ht),le(zl,(t,e)=>ht.component(e,t)),ht})); assets/uikit/dist/js/uikit-icons-woolberry.min.js000064400000215437151666572350016206 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitwoolberry",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitWoolberry=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.4" x1="13" y1="1" x2="1" y2="13"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',"drop-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1 3.5 6 7.5 11 3.5"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="24" height="24" viewBox="0 0 24 24"><path fill="none" stroke="#000" stroke-width="1.2" d="M12,5.5v13"/><path fill="none" stroke="#000" stroke-width="1.2" d="M18.5,12H5.5"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1 3.5 6 7.5 11 3.5"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1 4 7 9 13 4"/></svg>',"navbar-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1 3.5 6 7.5 11 3.5"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"overlay-icon":'<svg width="40" height="40" viewBox="0 0 40 40"><line fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1.4" x1="0" y1="19.99" x2="40" y2="20.01"/><line fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1.4" x1="20" y1="40" x2="20.03"/></svg>',"pagination-next":'<svg width="7" height="13" viewBox="0 0 7 13"><path fill="none" stroke="#000" stroke-width="1.8" d="M1,12.5l5-6L1,.5"/></svg>',"pagination-previous":'<svg width="7" height="13" viewBox="0 0 7 13"><path fill="none" stroke="#000" stroke-width="1.8" d="M6,.5L1,6.5l5,6"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="7" height="13" viewBox="0 0 7 13"><path fill="none" stroke="#000" stroke-width="1.4" d="M1,12.5l5-6L1,.5"/></svg>',"slidenav-next-large":'<svg width="9" height="17" viewBox="0 0 9 17"><path fill="none" stroke="#000" stroke-width="1.4" d="M1,16.5l7-8L1,.5"/></svg>',"slidenav-previous":'<svg width="7" height="13" viewBox="0 0 7 13"><path fill="none" stroke="#000" stroke-width="1.4" d="M6,.5L1,6.5l5,6"/></svg>',"slidenav-previous-large":'<svg width="9" height="17" viewBox="0 0 9 17"><path fill="none" stroke="#000" stroke-width="1.4" d="M8,.5L1,8.5l7,8"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="18" height="9" viewBox="0 0 18 9"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1 8 9 1 17 8"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-juno.min.js000064400000212337151666572350015131 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitjuno",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitJuno=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="16" height="16" viewBox="0 0 16 16"><polyline fill="none" stroke="#000" stroke-width="1.5" points="1.195 4.597 8 11.403 14.805 4.597"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1,11 6,6 1,1"/></svg>',"slidenav-next-large":'<svg width="11" height="18" viewBox="0 0 11 18"><polyline fill="none" stroke="#000" stroke-width="2" points="1,17 9,9 1,4"/></svg>',"slidenav-previous":'<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="6,1 1,6 6,11"/></svg>',"slidenav-previous-large":'<svg width="11" height="18" viewBox="0 0 11 18"><polyline fill="none" stroke="#000" stroke-width="2" points="10,1 2,9 10,17"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-makai.min.js000064400000211162151666572350015233 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitmakai",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitMakai=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="13" height="13" viewBox="0 0 13 13"><polyline fill="none" stroke="#000" stroke-width="1.4" points=".97 3.74 6.5 9.26 12.03 3.74"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-design-escapes.min.js000064400000213776151666572350017060 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitdesign_escapes",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitDesign_escapes=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.8" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.8" x1="13" y1="1" x2="1" y2="13"/></svg>',"close-large":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.8" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.8" x1="19" y1="1" x2="1" y2="19"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="12" height="12" viewBox="0 0 12 12"><polygon fill="#000" points="12 5.3 6.7 5.3 6.7 0 5.3 0 5.3 5.3 0 5.3 0 6.7 5.3 6.7 5.3 12 6.7 12 6.7 6.7 12 6.7 12 5.3"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="22" height="22" viewBox="0 0 22 22"><path fill="none" stroke="#000" stroke-width="2" d="M13,17l6-6L13,5m6,6H2"/></svg>',"slidenav-next-large":'<svg width="30" height="30" viewBox="0 0 30 30"><path fill="none" stroke="#000" stroke-width="2" d="M18,23l9-8L18,7m9,8H2"/></svg>',"slidenav-previous":'<svg width="22" height="22" viewBox="0 0 22 22"><path fill="none" stroke="#000" stroke-width="2" d="M9,5,3,11l6,6m11-6H3"/></svg>',"slidenav-previous-large":'<svg width="30" height="30" viewBox="0 0 30 30"><path fill="none" stroke="#000" stroke-width="2" d="M12,7,3,15l9,8m16-8H3"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="16" height="16" viewBox="0 0 16 16"><polygon points="13.7 5.9 12.3 7.3 9 4 9 16 7 16 7 4 3.7 7.3 2.3 5.9 8 0 13.7 5.9"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-flow.min.js000064400000211320151666572350015114 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitflow",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitFlow=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="11" height="11" viewBox="0 0 11 11"><circle fill="#000" cx="5.5" cy="5.5" r="5.5"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-glowbar.min.js000064400000215237151666572350015615 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(t,e){typeof exports=="object"&&typeof module<"u"?module.exports=e():typeof define=="function"&&define.amd?define("uikitglowbar",e):(t=typeof globalThis<"u"?globalThis:t||self,t.UIkitGlowbar=e())})(this,(function(){"use strict";function t(e){t.installed||e.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"navbar-toggle-icon":'<svg width="20" height="15" viewBox="0 0 20 15"><style>.uk-navbar-toggle-icon svg>[class*="line-"]{transition:0.2s ease-in-out;transition-property:transform;transform-origin:center}.uk-navbar-toggle-icon svg>.line-1{transform:translateY(-5px)}.uk-navbar-toggle-icon svg>.line-2{transform:translateY(5px)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1{transform:translateY(0) rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-2{transform:translateY(0) rotate(-45deg)}</style><line class="line-1" fill="none" stroke="#000" y1="7.5" x2="20" y2="7.5"/><line class="line-2" fill="none" stroke="#000" y1="7.5" x2="20" y2="7.5"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="14" height="14" viewBox="0 0 14 14"><path fill="#000" d="M6.858,14l-1.22-1.267,5.082-4.88H0v-1.756h10.559L5.857,1.217l1.27-1.217,6.872,7.015-7.142,6.985Z"/></svg>',"pagination-previous":'<svg width="14" height="14" viewBox="0 0 14 14"><path fill="#000" d="M7.142,0l1.22,1.267L3.281,6.147h10.719v1.756H3.441l4.702,4.88-1.27,1.217L0,6.985,7.142,0Z"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="15" height="14" viewBox="0 0 15 14"><path fill="#000" d="m14.78,6.88h.01s-6.86,7.15-6.86,7.15l-1.27-1.22,4.7-4.89H.2v-1.76h11.32L6.44,1.27l1.22-1.27,7.14,6.86h-.01Z"/></svg>',"slidenav-next-large":'<svg width="21" height="20" viewBox="0 0 21 20"><path fill="#000" d="m16.54,11.01l-16.37-.03v-2.26s16.32.03,16.32.03l1.16,1.11-1.1,1.15Zm2.67-2.79L10.93.28h0l-1.56,1.63,8.29,7.94m-7.95,8.3l9.49-9.92,1.63,1.56-9.49,9.92-1.63-1.56Z"/></svg>',"slidenav-previous":'<svg width="15" height="14" viewBox="0 0 15 14"><path fill="#000" d="m.2,6.86L7.34,0l1.22,1.27L3.48,6.16h11.32v1.76H3.64l4.7,4.89-1.27,1.22L.21,6.89h.01s-.01-.03-.01-.03Z"/></svg>',"slidenav-previous-large":'<svg width="21" height="20" viewBox="0 0 21 20"><path fill="#000" d="m4.46,11.01l16.37-.03v-2.26s-16.32.03-16.32.03l-1.16,1.11,1.1,1.15Zm-2.67-2.79L10.07.28h0l1.56,1.63L3.35,9.86m7.95,8.3L1.8,8.24l-1.63,1.56,9.49,9.92,1.63-1.56Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="19" height="20" viewBox="0 0 19 20"><polygon fill="#000" points="17.27 11.35 10.46 4.55 10.46 20 8.09 20 8.09 4.55 1.68 10.95 0 9.27 9.27 0 9.32 .05 9.32 .04 18.95 9.67 17.27 11.35"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(t),t})); assets/uikit/dist/js/uikit-icons-balou.min.js000064400000213460151666572350015256 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitbalou",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitBalou=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.6" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.6" x1="13" y1="1" x2="1" y2="13"/></svg>',"close-large":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="2" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="2" x1="19" y1="1" x2="1" y2="19"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="2" height="12" x="9" y="4"/><rect width="12" height="2" x="4" y="9"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.3" points="1 3.5 6 8.5 11 3.5"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',"navbar-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.3" points="1 3.5 6 8.5 11 3.5"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"overlay-icon":'<svg width="40" height="40" viewBox="0 0 40 40"><rect width="2" height="40" x="19" y="0"/><rect width="40" height="2" x="0" y="19"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="18" height="10" viewBox="0 0 18 10"><polyline fill="none" stroke="#000" stroke-width="1.6" points="1 9 9 1 17 9"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-tomsen-brody.min.js000064400000213645151666572350016603 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikittomsen_brody",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitTomsen_brody=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="2" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="2" x1="13" y1="1" x2="1" y2="13"/></svg>',"close-large":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="3" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="3" x1="19" y1="1" x2="1" y2="19"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="17" height="17" viewBox="0 0 17 17"><path fill="#000" d="M16,7v3H10v6H7V10H1V7H7V1h3V7Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="12" height="18" viewBox="0 0 12 18"><path fill="none" stroke="#000" stroke-width="2" d="M2.2 17l8.6-8-8.6-8"/></svg>',"slidenav-next-large":'<svg width="22" height="32" viewBox="0 0 22 32"><path fill="none" stroke="#000" stroke-width="3" d="M4.5 30.5L20 16 4.5 1.5"/></svg>',"slidenav-previous":'<svg width="12" height="18" viewBox="0 0 12 18"><path fill="none" stroke="#000" stroke-width="2" d="M9.8 1L1.2 9l8.6 8"/></svg>',"slidenav-previous-large":'<svg width="22" height="32" viewBox="0 0 22 32"><path fill="none" stroke="#000" stroke-width="3" d="M17.5 1.5L2 16l15.5 14.5"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="12" height="15" viewBox="0 0 12 15"><path fill="none" stroke="#000" stroke-width="2" d="M1 7l5-6 5 6M6 2v13"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons.js000064400000215016151666572350013373 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define('uikiticons', factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitIcons = factory()); })(this, (function () { 'use strict'; function plugin(UIkit) { if (plugin.installed) { return; } UIkit.icon.add({ "youtube": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>', "yootheme": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>', "yelp": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>', "xing": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>', "x": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>', "world": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>', "wordpress": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>', "whatsapp": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>', "warning": '<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>', "vimeo": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>', "video-camera": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>', "users": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>', "user": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>', "upload": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>', "unlock": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="13" height="10" fill="none" stroke="#000" x="3.5" y="8.5"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>', "uikit": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>', "twitter": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>', "twitch": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect width="1.29" height="3.88" x="12.98" y="4.55"/><rect width="1.29" height="3.88" x="9.43" y="4.55"/></svg>', "tv": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="6" height="1" x="7" y="16"/><rect width="19" height="11" fill="none" stroke="#000" x=".5" y="3.5"/></svg>', "tumblr": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>', "tripadvisor": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>', "triangle-up": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>', "triangle-right": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>', "triangle-left": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>', "triangle-down": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>', "trash": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect width="1" height="9" x="8" y="7"/><rect width="1" height="9" x="11" y="7"/><rect width="16" height="1" x="2" y="3"/></svg>', "tiktok": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>', "thumbnails": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="5" height="5" fill="none" stroke="#000" x="3.5" y="3.5"/><rect width="5" height="5" fill="none" stroke="#000" x="11.5" y="3.5"/><rect width="5" height="5" fill="none" stroke="#000" x="11.5" y="11.5"/><rect width="5" height="5" fill="none" stroke="#000" x="3.5" y="11.5"/></svg>', "threads": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>', "telegram": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>', "tag": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>', "tablet": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>', "tablet-landscape": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>', "table": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="18" height="1" x="1" y="3"/><rect width="18" height="1" x="1" y="7"/><rect width="18" height="1" x="1" y="11"/><rect width="18" height="1" x="1" y="15"/></svg>', "strikethrough": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect width="15" height="1" x="3" y="10"/></svg>', "star": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>', "soundcloud": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect width="1.5" height="8.5" x="6" y="6.5"/><rect width="1.5" height="7" x="3" y="8"/><rect width="1.5" height="5" y="10"/></svg>', "sorting": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>', "social": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>', "signal": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>', "sign-out": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>', "sign-in": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>', "shrink": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>', "settings": '<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect width="3" height="1" x="1" y="3"/><rect width="8" height="1" x="10" y="3"/><rect width="8" height="1" x="1" y="9"/><rect width="3" height="1" x="15" y="9"/><rect width="3" height="1" x="1" y="15"/><rect width="8" height="1" x="10" y="15"/></svg>', "server": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="2" x="3" y="3"/><rect width="1" height="2" x="5" y="3"/><rect width="1" height="2" x="7" y="3"/><rect width="1" height="1" x="16" y="3"/><rect width="1" height="1" x="16" y="10"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect width="1" height="2" x="3" y="10"/><rect width="1" height="2" x="5" y="10"/><rect width="1" height="2" x="9.5" y="14"/><rect width="6" height="1" x="3" y="17"/><rect width="6" height="1" x="11" y="17"/><rect width="17" height="5" fill="none" stroke="#000" x="1.5" y="1.5"/><rect width="17" height="5" fill="none" stroke="#000" x="1.5" y="8.5"/></svg>', "search": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>', "rss": '<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>', "reply": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>', "refresh": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>', "reddit": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>', "receiver": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>', "quote-right": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>', "question": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>', "push": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>', "pull": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>', "print": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect width="11" height="6" fill="none" stroke="#000" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>', "plus": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="17" x="9" y="1"/><rect width="17" height="1" x="1" y="9"/></svg>', "plus-circle": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>', "play": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>', "play-circle": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>', "pinterest": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>', "phone": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>', "phone-landscape": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>', "pencil": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>', "paint-bucket": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>', "nut": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>', "move": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect width="13" height="13" fill="none" stroke="#000" x="5.5" y="1.5"/><rect width="1" height="3" x="1" y="11"/><rect width="3" height="1" x="6" y="18"/></svg>', "more": '<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>', "more-vertical": '<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>', "minus": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="18" height="1" x="1" y="9"/></svg>', "minus-circle": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>', "microsoft": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>', "microphone": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.44" x2="10" y2="18.5"/><line fill="none" stroke="#000" x1="7" y1="18.5" x2="13" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>', "menu": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="16" height="1" x="2" y="4"/><rect width="16" height="1" x="2" y="9"/><rect width="16" height="1" x="2" y="14"/></svg>', "mastodon": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>', "mail": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>', "lock": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="13" height="10" fill="none" stroke="#000" x="3.5" y="8.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>', "location": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>', "list": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="12" height="1" x="6" y="4"/><rect width="12" height="1" x="6" y="9"/><rect width="12" height="1" x="6" y="14"/><rect width="2" height="1" x="2" y="4"/><rect width="2" height="1" x="2" y="9"/><rect width="2" height="1" x="2" y="14"/></svg>', "linkedin": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>', "link": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>', "link-external": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>', "lifesaver": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>', "laptop": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="1" y="16"/><rect width="15" height="10" fill="none" stroke="#000" x="2.5" y="4.5"/></svg>', "joomla": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>', "italic": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>', "instagram": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>', "info": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>', "image": '<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect width="19" height="15" fill="none" stroke="#000" x=".5" y="2.5"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>', "home": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>', "history": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect width="1" height="7" x="9" y="4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>', "heart": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>', "hashtag": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>', "happy": '<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>', "grid": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="3" height="3" x="2" y="2"/><rect width="3" height="3" x="8" y="2"/><rect width="3" height="3" x="14" y="2"/><rect width="3" height="3" x="2" y="8"/><rect width="3" height="3" x="8" y="8"/><rect width="3" height="3" x="14" y="8"/><rect width="3" height="3" x="2" y="14"/><rect width="3" height="3" x="8" y="14"/><rect width="3" height="3" x="14" y="14"/></svg>', "google": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>', "gitter": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1.531" height="11.471" x="3.5" y="1"/><rect width="1.529" height="15.294" x="7.324" y="4.059"/><rect width="1.527" height="15.294" x="11.148" y="4.059"/><rect width="1.529" height="8.412" x="14.971" y="4.059"/></svg>', "github": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>', "github-alt": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>', "git-fork": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>', "git-branch": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>', "future": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect width="1" height="7" x="9" y="4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>', "foursquare": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>', "forward": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>', "folder": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>', "flickr": '<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>', "file": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="13" height="17" fill="none" stroke="#000" x="3.5" y="1.5"/></svg>', "file-text": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="13" height="17" fill="none" stroke="#000" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" y1="12.5" x2="12" y2="12.5"/><line fill="none" stroke="#000" x1="6" y1="8.5" x2="14" y2="8.5"/><line fill="none" stroke="#000" x1="6" y1="6.5" x2="14" y2="6.5"/><line fill="none" stroke="#000" x1="6" y1="10.5" x2="14" y2="10.5"/></svg>', "file-pdf": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="13" height="17" fill="none" stroke="#000" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>', "file-edit": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>', "facebook": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>', "eye": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>', "eye-slash": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>', "expand": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>', "etsy": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>', "dribbble": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>', "download": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>', "discord": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>', "desktop": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="2" x="8" y="15"/><rect width="1" height="2" x="11" y="15"/><rect width="10" height="1" x="5" y="16"/><rect width="17" height="11" fill="none" stroke="#000" x="1.5" y="3.5"/></svg>', "database": '<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>', "crosshairs": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>', "credit-card": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="17" height="12" fill="none" stroke="#000" x="1.5" y="4.5"/><rect width="18" height="3" x="1" y="7"/></svg>', "copy": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="12" height="16" fill="none" stroke="#000" x="3.5" y="2.5"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>', "comments": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>', "commenting": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>', "comment": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>', "cog": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>', "code": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>', "cloud-upload": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>', "cloud-download": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>', "close": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>', "close-circle": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>', "clock": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect width="1" height="7" x="9" y="4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>', "chevron-up": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>', "chevron-right": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>', "chevron-left": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>', "chevron-down": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>', "chevron-double-right": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>', "chevron-double-left": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>', "check": '<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>', "cart": '<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>', "camera": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>', "calendar": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>', "bookmark": '<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>', "bolt": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>', "bold": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>', "bluesky": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>', "bell": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>', "behance": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect width="5" height="1.4" x="13" y="4"/></svg>', "ban": '<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>', "bag": '<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>', "arrow-up": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>', "arrow-up-right": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>', "arrow-right": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>', "arrow-left": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>', "arrow-down": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>', "arrow-down-arrow-up": '<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>', "apple": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>', "android": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>', "android-robot": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>', "album": '<svg width="20" height="20" viewBox="0 0 20 20"><rect width="10" height="1" x="5" y="2"/><rect width="14" height="1" x="3" y="4"/><rect width="17" height="11" fill="none" stroke="#000" x="1.5" y="6.5"/></svg>', "500px": '<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>' }); } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.use(plugin); } return plugin; })); assets/uikit/dist/js/uikit-icons-quantum-flares.min.js000064400000216706151666572350017126 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitquantum_flares",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitQuantum_flares=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-large":'<svg width="23" height="23" viewBox="0 0 23 23"><path fill="none" stroke="#000" stroke-width="2" d="m1.11,1.1l20.82,20.87m-.05-20.87L1.06,21.97"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"navbar-toggle-icon":'<svg width="26" height="26" viewBox="0 0 26 26"><style>.uk-navbar-toggle-icon svg>[class*="line-"]{transition:0.4s ease-in-out;transition-property:transform, opacity}.uk-navbar-toggle-icon svg>.line-1,.uk-navbar-toggle-icon svg>.line-2,.uk-navbar-toggle-icon svg>.line-3{transform-origin:right}.uk-navbar-toggle-icon svg>.line-2{transition-delay:.1s}.uk-navbar-toggle-icon svg>.line-3{transition-delay:.2s}.uk-navbar-toggle-icon svg>.line-close-3,.uk-navbar-toggle-icon svg>.line-close-4{transition-delay:.1s;transform-origin:center;opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-2,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{transform:scaleX(0)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-close-3,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-close-4{opacity:1}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-close-3{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-close-4{transform:rotate(225deg)}</style><line class="line-1" fill="none" stroke="#000" stroke-width="2" y1="13" x2="26" y2="13"/><line class="line-2" fill="none" stroke="#000" stroke-width="2" x1="9.631" y1="19.783" x2="26" y2="19.783"/><line class="line-3" fill="none" stroke="#000" stroke-width="2" y1="6.217" x2="26" y2="6.217"/><line class="line-close-3" fill="none" stroke="#000" stroke-width="2" y1="13" x2="26" y2="13"/><line class="line-close-4" fill="none" stroke="#000" stroke-width="2" x1="13" x2="13" y2="26"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="11" height="16" viewBox="0 0 11 16"><path fill="none" stroke="#000" stroke-width="3" d="m.99,1.33l7.7,6.73L.99,14.8"/></svg>',"pagination-previous":'<svg width="11" height="16" viewBox="0 0 11 16"><path fill="none" stroke="#000" stroke-width="3" d="m10,14.8l-7.7-6.73L10,1.33"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',"search-toggle-icon":'<svg width="35" height="35" viewBox="0 0 35 35"><path fill="none" stroke="#000" stroke-miterlimit="4" stroke-width="3" d="m29.01,15.3c0,7.6-6.16,13.76-13.76,13.76S1.5,22.89,1.5,15.3,7.66,1.54,15.26,1.54s13.76,6.16,13.76,13.76Zm4.49,18.16l-8.73-8.24"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next-large":'<svg width="21" height="36" viewBox="0 0 21 36"><path fill="none" stroke="#000" stroke-width="3" d="m1.04,34.87c6.19-5.58,11.54-11.15,17.73-16.74C12.57,12.47,7.19,6.79.99,1.13"/></svg>',"slidenav-previous-large":'<svg width="21" height="36" viewBox="0 0 21 36"><path fill="none" stroke="#000" stroke-width="3" d="m19.97,1.13C13.78,6.72,8.42,12.28,2.23,17.87c6.21,5.66,11.58,11.34,17.79,17"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="26" height="36" viewBox="0 0 26 36"><path fill="none" stroke="#000" stroke-width="3" d="m13,2v34m12.07-24.22L13.1,1.97.92,11.78"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-kojiro.min.js000064400000213401151666572350015444 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitkojiro",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitKojiro=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="30" height="30" viewBox="0 0 30 30"><path d="m24.18,16.41c-1.48,1.3-2.96,2.6-4.46,3.92.33.38.66.76,1.02,1.17,2.25-1.98,4.48-3.94,6.76-5.95-2.28-2.02-4.55-4.01-6.86-6.05-.34.39-.67.77-1.02,1.17,1.54,1.35,3.05,2.69,4.62,4.08-7.3,0-14.5,0-21.74,0v1.56c7.21,0,14.43,0,21.65,0,.01.03.02.07.04.1Z"/></svg>',"slidenav-next-large":'<svg width="30" height="30" viewBox="0 0 30 30"><path d="m24.36,16.43c-1.49,1.3-2.98,2.59-4.5,3.91.34.38.66.76,1.02,1.17,2.27-1.97,4.52-3.93,6.82-5.92-2.31-2.01-4.59-4-6.92-6.03-.34.39-.68.77-1.03,1.17,1.55,1.35,3.08,2.68,4.66,4.06-7.36,0-14.64,0-21.94,0v1.55c7.27,0,14.56,0,21.84,0,.01.03.02.07.04.1Z"/></svg>',"slidenav-previous":'<svg width="30" height="30" viewBox="0 0 30 30"><path d="m5.82,15.41c1.48,1.3,2.96,2.6,4.46,3.92-.33.38-.66.76-1.02,1.17-2.25-1.98-4.48-3.94-6.76-5.95,2.28-2.02,4.55-4.01,6.86-6.05.34.39.67.77,1.02,1.17-1.54,1.35-3.05,2.69-4.62,4.08,7.3,0,14.5,0,21.74,0v1.56c-7.21,0-14.43,0-21.65,0-.01.03-.02.07-.04.1Z"/></svg>',"slidenav-previous-large":'<svg width="30" height="30" viewBox="0 0 30 30"><path d="m5.83,15.43c1.49,1.3,2.98,2.59,4.5,3.91-.34.38-.66.76-1.02,1.17-2.27-1.97-4.52-3.93-6.82-5.92,2.31-2.01,4.59-4,6.92-6.03.34.39.68.77,1.03,1.17-1.55,1.35-3.08,2.68-4.66,4.06,7.36,0,14.64,0,21.94,0v1.55c-7.27,0-14.56,0-21.84,0-.01.03-.02.07-.04.1Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-framerate.min.js000064400000216215151666572350016123 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define("uikitframerate",i):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitFramerate=i())})(this,(function(){"use strict";function e(i){e.installed||i.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.5" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.5" x1="13" y1="1" x2="1" y2="13"/></svg>',"close-large":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="2" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="2" x1="19" y1="1" x2="1" y2="19"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1.5" height="12" x="9.2" y="4"/><rect width="12" height="1.5" x="4" y="9.2"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="2" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="12" height="9" viewBox="0 0 12 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="7,0.5 11,4.5 7,8.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11" y1="4.5" x2="0" y2="4.5"/></svg>',"pagination-previous":'<svg width="12" height="9" viewBox="0 0 12 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="4.5" x2="12" y2="4.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',"search-icon":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.5" cx="9" cy="9" r="6"/><path fill="none" stroke="#000" stroke-width="1.5" d="M13,13l4,4Z"/></svg>',"search-large":'<svg width="40" height="40" viewBox="0 0 40 40"><circle fill="none" stroke="#000" stroke-width="2.2" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="2.2" x1="38" y1="39" x2="29" y2="30"/></svg>',"search-medium":'<svg width="24" height="24" viewBox="0 0 24 24"><circle fill="none" stroke="#000" stroke-width="1.8" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="23" y1="23" x2="17" y2="17"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="12" height="20" viewBox="0 0 12 20"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1,19 10.4,10 1,1"/></svg>',"slidenav-next-large":'<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="2" points="1.225,23 12.775,12 1.225,1"/></svg>',"slidenav-previous":'<svg width="12" height="20" viewBox="0 0 12 20"><polyline fill="none" stroke="#000" stroke-width="1.8" points="11,1 1.6,10 11,19"/></svg>',"slidenav-previous-large":'<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="2" points="12.775,1 1.225,12 12.775,23"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="18" height="10" viewBox="0 0 18 10"><polyline fill="none" stroke="#000" stroke-width="1.5" points="1 9 9 1 17 9"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-trek.min.js000064400000212627151666572350015125 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define("uikittrek",i):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitTrek=i())})(this,(function(){"use strict";function e(i){e.installed||i.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.7" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="12" height="11" viewBox="0 0 12 11"><polyline fill="none" stroke="#000" points="6,1 11,5.5 6,10"/><line fill="none" stroke="#000" x1="0" y1="5.5" x2="11" y2="5.5"/></svg>',"slidenav-next-large":'<svg width="18" height="17" viewBox="0 0 18 17"><polyline fill="none" stroke="#000" points="9,1 17,8.5 9,16"/><line fill="none" stroke="#000" x1="0" y1="8.5" x2="17" y2="8.5"/></svg>',"slidenav-previous":'<svg width="12" height="11" viewBox="0 0 12 11"><polyline fill="none" stroke="#000" points="6,10 1,5.5 6,1"/><line fill="none" stroke="#000" x1="12" y1="5.5" x2="1" y2="5.5"/></svg>',"slidenav-previous-large":'<svg width="18" height="17" viewBox="0 0 18 17"><polyline fill="none" stroke="#000" points="9,16 1,8.5 9,1"/><line fill="none" stroke="#000" x1="18" y1="8.5" x2="1" y2="8.5"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-dennis-miller.min.js000064400000215612151666572350016717 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define("uikitdennis_miller",i):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitDennis_miller=i())})(this,(function(){"use strict";function e(i){e.installed||i.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.6" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.6" x1="13" y1="1" x2="1" y2="13"/></svg>',"close-large":'<svg width="24" height="24" viewBox="0 0 24 24"><polygon fill="#000" points="24,1.4 22.6,0 12,10.6 1.4,0 0,1.4 10.6,12 0,22.6 1.4,24 12,13.4 22.6,24 24,22.6 13.4,12"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="16" height="16" viewBox="0 0 16 16"><polyline fill="none" stroke="#000" stroke-width="2.4" points="1.059 4.529 8 11.471 14.941 4.529"/></svg>',"navbar-parent-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="21" height="13" viewBox="0 0 21 13"><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M13.8245,1.1l5.4,5.4-5.4,5.4"/><line fill="none" stroke="#000" stroke-width="1.2" y1="6.501" x2="19.198" y2="6.501"/></svg>',"pagination-previous":'<svg width="21" height="13" viewBox="0 0 21 13"><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M7.1755,11.9l-5.4-5.4,5.4-5.4"/><line fill="none" stroke="#000" stroke-width="1.2" x1="21" y1="6.499" x2="1.802" y2="6.499"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="45" height="13" viewBox="0 0 45 13"><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M38.244,1.1l5.4,5.4-5.4,5.4"/><line fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1.2" y1="6.501" x2="43.617" y2="6.501"/></svg>',"slidenav-next-large":'<svg width="45" height="13" viewBox="0 0 45 13"><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M38.244,1.1l5.4,5.4-5.4,5.4"/><line fill="none" stroke="#000" stroke-width="1.2" y1="6.501" x2="43.617" y2="6.501"/></svg>',"slidenav-previous":'<svg width="45" height="13" viewBox="0 0 45 13"><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M6.756,11.9l-5.4-5.4,5.4-5.4"/><line fill="none" stroke="#000" stroke-width="1.2" x1="45" y1="6.499" x2="1.383" y2="6.499"/></svg>',"slidenav-previous-large":'<svg width="45" height="13" viewBox="0 0 45 13"><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M6.756,11.9l-5.4-5.4,5.4-5.4"/><line fill="none" stroke="#000" stroke-width="1.2" x1="45" y1="6.499" x2="1.383" y2="6.499"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit.js000064400001211522151666572350012261 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define('uikit', factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkit = factory()); })(this, (function () { 'use strict'; const { hasOwnProperty, toString } = Object.prototype; function hasOwn(obj, key) { return hasOwnProperty.call(obj, key); } const hyphenateRe = /\B([A-Z])/g; const hyphenate = memoize((str) => str.replace(hyphenateRe, "-$1").toLowerCase()); const camelizeRe = /-(\w)/g; const camelize = memoize( (str) => (str.charAt(0).toLowerCase() + str.slice(1)).replace(camelizeRe, (_, c) => c.toUpperCase()) ); const ucfirst = memoize((str) => str.charAt(0).toUpperCase() + str.slice(1)); function startsWith(str, search) { var _a; return (_a = str == null ? void 0 : str.startsWith) == null ? void 0 : _a.call(str, search); } function endsWith(str, search) { var _a; return (_a = str == null ? void 0 : str.endsWith) == null ? void 0 : _a.call(str, search); } function includes(obj, search) { var _a; return (_a = obj == null ? void 0 : obj.includes) == null ? void 0 : _a.call(obj, search); } function findIndex(array, predicate) { var _a; return (_a = array == null ? void 0 : array.findIndex) == null ? void 0 : _a.call(array, predicate); } const { isArray, from: toArray } = Array; const { assign } = Object; function isFunction(obj) { return typeof obj === "function"; } function isObject(obj) { return obj !== null && typeof obj === "object"; } function isPlainObject(obj) { return toString.call(obj) === "[object Object]"; } function isWindow(obj) { return isObject(obj) && obj === obj.window; } function isDocument(obj) { return nodeType(obj) === 9; } function isNode(obj) { return nodeType(obj) >= 1; } function isElement(obj) { return nodeType(obj) === 1; } function nodeType(obj) { return !isWindow(obj) && isObject(obj) && obj.nodeType; } function isBoolean(value) { return typeof value === "boolean"; } function isString(value) { return typeof value === "string"; } function isNumber(value) { return typeof value === "number"; } function isNumeric(value) { return isNumber(value) || isString(value) && !isNaN(value - parseFloat(value)); } function isEmpty(obj) { return !(isArray(obj) ? obj.length : isObject(obj) ? Object.keys(obj).length : false); } function isUndefined(value) { return value === void 0; } function toBoolean(value) { return isBoolean(value) ? value : value === "true" || value === "1" || value === "" ? true : value === "false" || value === "0" ? false : value; } function toNumber(value) { const number = Number(value); return isNaN(number) ? false : number; } function toFloat(value) { return parseFloat(value) || 0; } function toNode(element) { return element && toNodes(element)[0]; } function toNodes(element) { return isNode(element) ? [element] : Array.from(element || []).filter(isNode); } function toWindow(element) { if (isWindow(element)) { return element; } element = toNode(element); const document = isDocument(element) ? element : element == null ? void 0 : element.ownerDocument; return (document == null ? void 0 : document.defaultView) || window; } function isEqual(value, other) { return value === other || isObject(value) && isObject(other) && Object.keys(value).length === Object.keys(other).length && each(value, (val, key) => val === other[key]); } function swap(value, a, b) { return value.replace(new RegExp(`${a}|${b}`, "g"), (match) => match === a ? b : a); } function last(array) { return array[array.length - 1]; } function each(obj, cb) { for (const key in obj) { if (false === cb(obj[key], key)) { return false; } } return true; } function sortBy(array, prop) { return array.slice().sort( ({ [prop]: propA = 0 }, { [prop]: propB = 0 }) => propA > propB ? 1 : propB > propA ? -1 : 0 ); } function sumBy(array, iteratee) { return array.reduce( (sum, item) => sum + toFloat(isFunction(iteratee) ? iteratee(item) : item[iteratee]), 0 ); } function uniqueBy(array, prop) { const seen = /* @__PURE__ */ new Set(); return array.filter(({ [prop]: check }) => seen.has(check) ? false : seen.add(check)); } function pick(obj, props) { return props.reduce((res, prop) => ({ ...res, [prop]: obj[prop] }), {}); } function clamp(number, min = 0, max = 1) { return Math.min(Math.max(toNumber(number) || 0, min), max); } function noop() { } function intersectRect(...rects) { return [ ["bottom", "top"], ["right", "left"] ].every( ([minProp, maxProp]) => Math.min(...rects.map(({ [minProp]: min }) => min)) - Math.max(...rects.map(({ [maxProp]: max }) => max)) > 0 ); } function pointInRect(point, rect) { return point.x <= rect.right && point.x >= rect.left && point.y <= rect.bottom && point.y >= rect.top; } function ratio(dimensions, prop, value) { const aProp = prop === "width" ? "height" : "width"; return { [aProp]: dimensions[prop] ? Math.round(value * dimensions[aProp] / dimensions[prop]) : dimensions[aProp], [prop]: value }; } function contain(dimensions, maxDimensions) { dimensions = { ...dimensions }; for (const prop in dimensions) { dimensions = dimensions[prop] > maxDimensions[prop] ? ratio(dimensions, prop, maxDimensions[prop]) : dimensions; } return dimensions; } function cover$1(dimensions, maxDimensions) { dimensions = contain(dimensions, maxDimensions); for (const prop in dimensions) { dimensions = dimensions[prop] < maxDimensions[prop] ? ratio(dimensions, prop, maxDimensions[prop]) : dimensions; } return dimensions; } const Dimensions = { ratio, contain, cover: cover$1 }; function getIndex(i, elements, current = 0, finite = false) { elements = toNodes(elements); const { length } = elements; if (!length) { return -1; } i = isNumeric(i) ? toNumber(i) : i === "next" ? current + 1 : i === "previous" ? current - 1 : i === "last" ? length - 1 : elements.indexOf(toNode(i)); if (finite) { return clamp(i, 0, length - 1); } i %= length; return i < 0 ? i + length : i; } function memoize(fn) { const cache = /* @__PURE__ */ Object.create(null); return (key, ...args) => cache[key] || (cache[key] = fn(key, ...args)); } function addClass(element, ...classes) { for (const node of toNodes(element)) { const add = toClasses(classes).filter((cls) => !hasClass(node, cls)); if (add.length) { node.classList.add(...add); } } } function removeClass(element, ...classes) { for (const node of toNodes(element)) { const remove = toClasses(classes).filter((cls) => hasClass(node, cls)); if (remove.length) { node.classList.remove(...remove); } } } function replaceClass(element, oldClass, newClass) { newClass = toClasses(newClass); oldClass = toClasses(oldClass).filter((cls) => !includes(newClass, cls)); removeClass(element, oldClass); addClass(element, newClass); } function hasClass(element, cls) { [cls] = toClasses(cls); return toNodes(element).some((node) => node.classList.contains(cls)); } function toggleClass(element, cls, force) { const classes = toClasses(cls); if (!isUndefined(force)) { force = !!force; } for (const node of toNodes(element)) { for (const cls2 of classes) { node.classList.toggle(cls2, force); } } } function toClasses(str) { return str ? isArray(str) ? str.map(toClasses).flat() : String(str).split(" ").filter(Boolean) : []; } function attr(element, name, value) { var _a; if (isObject(name)) { for (const key in name) { attr(element, key, name[key]); } return; } if (isUndefined(value)) { return (_a = toNode(element)) == null ? void 0 : _a.getAttribute(name); } else { for (const el of toNodes(element)) { if (isFunction(value)) { value = value.call(el, attr(el, name)); } if (value === null) { removeAttr(el, name); } else { el.setAttribute(name, value); } } } } function hasAttr(element, name) { return toNodes(element).some((element2) => element2.hasAttribute(name)); } function removeAttr(element, name) { toNodes(element).forEach((element2) => element2.removeAttribute(name)); } function data(element, attribute) { for (const name of [attribute, `data-${attribute}`]) { if (hasAttr(element, name)) { return attr(element, name); } } } const inBrowser = typeof window !== "undefined"; const isRtl = inBrowser && document.dir === "rtl"; const hasTouch = inBrowser && "ontouchstart" in window; const hasPointerEvents = inBrowser && window.PointerEvent; const pointerDown$1 = hasPointerEvents ? "pointerdown" : hasTouch ? "touchstart" : "mousedown"; const pointerMove$1 = hasPointerEvents ? "pointermove" : hasTouch ? "touchmove" : "mousemove"; const pointerUp$1 = hasPointerEvents ? "pointerup" : hasTouch ? "touchend" : "mouseup"; const pointerEnter = hasPointerEvents ? "pointerenter" : hasTouch ? "" : "mouseenter"; const pointerLeave = hasPointerEvents ? "pointerleave" : hasTouch ? "" : "mouseleave"; const pointerCancel = hasPointerEvents ? "pointercancel" : "touchcancel"; const voidElements = { area: true, base: true, br: true, col: true, embed: true, hr: true, img: true, input: true, keygen: true, link: true, meta: true, param: true, source: true, track: true, wbr: true }; function isVoidElement(element) { return toNodes(element).some((element2) => voidElements[element2.tagName.toLowerCase()]); } const isVisibleFn = inBrowser && Element.prototype.checkVisibility || function() { return this.offsetWidth || this.offsetHeight || this.getClientRects().length; }; function isVisible(element) { return toNodes(element).some((element2) => isVisibleFn.call(element2)); } const selInput = "input,select,textarea,button"; function isInput(element) { return toNodes(element).some((element2) => matches(element2, selInput)); } const selFocusable = `${selInput},a[href],[tabindex]`; function isFocusable(element) { return matches(element, selFocusable); } function parent(element) { var _a; return (_a = toNode(element)) == null ? void 0 : _a.parentElement; } function filter$1(element, selector) { return toNodes(element).filter((element2) => matches(element2, selector)); } function matches(element, selector) { return toNodes(element).some((element2) => element2.matches(selector)); } function parents(element, selector) { const elements = []; while (element = parent(element)) { if (!selector || matches(element, selector)) { elements.push(element); } } return elements; } function children(element, selector) { element = toNode(element); const children2 = element ? toArray(element.children) : []; return selector ? filter$1(children2, selector) : children2; } function index(element, ref) { return ref ? toNodes(element).indexOf(toNode(ref)) : children(parent(element)).indexOf(element); } function isSameSiteAnchor(el) { el = toNode(el); return el && ["origin", "pathname", "search"].every((part) => el[part] === location[part]); } function getTargetedElement(el) { if (isSameSiteAnchor(el)) { const { hash, ownerDocument } = toNode(el); const id = decodeURIComponent(hash).slice(1); return id ? ownerDocument.getElementById(id) || ownerDocument.getElementsByName(id)[0] : ownerDocument.documentElement; } } function query(selector, context) { return find(selector, getContext(selector, context)); } function queryAll(selector, context) { return findAll(selector, getContext(selector, context)); } function find(selector, context) { return toNode(_query(selector, toNode(context), "querySelector")); } function findAll(selector, context) { return toNodes(_query(selector, toNode(context), "querySelectorAll")); } function getContext(selector, context = document) { return isDocument(context) || parseSelector(selector).isContextSelector ? context : context.ownerDocument; } const addStarRe = /([!>+~-])(?=\s+[!>+~-]|\s*$)/g; const splitSelectorRe = /(\([^)]*\)|[^,])+/g; const parseSelector = memoize((selector) => { let isContextSelector = false; if (!selector || !isString(selector)) { return {}; } const selectors = []; for (let sel of selector.match(splitSelectorRe)) { sel = sel.trim().replace(addStarRe, "$1 *"); isContextSelector || (isContextSelector = ["!", "+", "~", "-", ">"].includes(sel[0])); selectors.push(sel); } return { selector: selectors.join(","), selectors, isContextSelector }; }); const positionRe = /(\([^)]*\)|\S)*/; const parsePositionSelector = memoize((selector) => { selector = selector.slice(1).trim(); const [position] = selector.match(positionRe); return [position, selector.slice(position.length + 1)]; }); function _query(selector, context = document, queryFn) { var _a; const parsed = parseSelector(selector); if (!parsed.isContextSelector) { return parsed.selector ? _doQuery(context, queryFn, parsed.selector) : selector; } selector = ""; const isSingle = parsed.selectors.length === 1; for (let sel of parsed.selectors) { let positionSel; let ctx = context; if (sel[0] === "!") { [positionSel, sel] = parsePositionSelector(sel); ctx = (_a = context.parentElement) == null ? void 0 : _a.closest(positionSel); if (!sel && isSingle) { return ctx; } } if (ctx && sel[0] === "-") { [positionSel, sel] = parsePositionSelector(sel); ctx = ctx.previousElementSibling; ctx = matches(ctx, positionSel) ? ctx : null; if (!sel && isSingle) { return ctx; } } if (!ctx) { continue; } if (isSingle) { if (sel[0] === "~" || sel[0] === "+") { sel = `:scope > :nth-child(${index(ctx) + 1}) ${sel}`; ctx = ctx.parentElement; } else if (sel[0] === ">") { sel = `:scope ${sel}`; } return _doQuery(ctx, queryFn, sel); } selector += `${selector ? "," : ""}${domPath(ctx)} ${sel}`; } if (!isDocument(context)) { context = context.ownerDocument; } return _doQuery(context, queryFn, selector); } function _doQuery(context, queryFn, selector) { try { return context[queryFn](selector); } catch (e) { return null; } } function domPath(element) { const names = []; while (element.parentNode) { const id = attr(element, "id"); if (id) { names.unshift(`#${escape(id)}`); break; } else { let { tagName } = element; if (tagName !== "HTML") { tagName += `:nth-child(${index(element) + 1})`; } names.unshift(tagName); element = element.parentNode; } } return names.join(" > "); } function escape(css) { return isString(css) ? CSS.escape(css) : ""; } function on(...args) { let [targets, types, selector, listener, useCapture = false] = getArgs(args); if (listener.length > 1) { listener = detail(listener); } if (useCapture == null ? void 0 : useCapture.self) { listener = selfFilter(listener); } if (selector) { listener = delegate(selector, listener); } for (const type of types) { for (const target of targets) { target.addEventListener(type, listener, useCapture); } } return () => off(targets, types, listener, useCapture); } function off(...args) { let [targets, types, , listener, useCapture = false] = getArgs(args); for (const type of types) { for (const target of targets) { target.removeEventListener(type, listener, useCapture); } } } function once(...args) { const [element, types, selector, listener, useCapture = false, condition] = getArgs(args); const off2 = on( element, types, selector, (e) => { const result = !condition || condition(e); if (result) { off2(); listener(e, result); } }, useCapture ); return off2; } function trigger(targets, event, detail2) { return toEventTargets(targets).every( (target) => target.dispatchEvent(createEvent(event, true, true, detail2)) ); } function createEvent(e, bubbles = true, cancelable = false, detail2) { if (isString(e)) { e = new CustomEvent(e, { bubbles, cancelable, detail: detail2 }); } return e; } function getArgs(args) { args[0] = toEventTargets(args[0]); if (isString(args[1])) { args[1] = args[1].split(" "); } if (isFunction(args[2])) { args.splice(2, 0, false); } return args; } function delegate(selector, listener) { return (e) => { const current = selector[0] === ">" ? findAll(selector, e.currentTarget).reverse().find((element) => element.contains(e.target)) : e.target.closest(selector); if (current) { e.current = current; listener.call(this, e); delete e.current; } }; } function detail(listener) { return (e) => isArray(e.detail) ? listener(e, ...e.detail) : listener(e); } function selfFilter(listener) { return function(e) { if (e.target === e.currentTarget || e.target === e.current) { return listener.call(null, e); } }; } function isEventTarget(target) { return target && "addEventListener" in target; } function toEventTarget(target) { return isEventTarget(target) ? target : toNode(target); } function toEventTargets(target) { return isArray(target) ? target.map(toEventTarget).filter(Boolean) : isString(target) ? findAll(target) : isEventTarget(target) ? [target] : toNodes(target); } function isTouch(e) { return e.pointerType === "touch" || !!e.touches; } function getEventPos(e) { var _a, _b; const { clientX: x, clientY: y } = ((_a = e.touches) == null ? void 0 : _a[0]) || ((_b = e.changedTouches) == null ? void 0 : _b[0]) || e; return { x, y }; } const cssNumber = { "animation-iteration-count": true, "column-count": true, "fill-opacity": true, "flex-grow": true, "flex-shrink": true, "font-weight": true, "line-height": true, opacity: true, order: true, orphans: true, "stroke-dasharray": true, "stroke-dashoffset": true, widows: true, "z-index": true, zoom: true }; function css(element, property, value, priority) { const elements = toNodes(element); for (const element2 of elements) { if (isString(property)) { property = propName(property); if (isUndefined(value)) { return getComputedStyle(element2).getPropertyValue(property); } else { element2.style.setProperty( property, isNumeric(value) && !cssNumber[property] && !isCustomProperty(property) ? `${value}px` : value || isNumber(value) ? value : "", priority ); } } else if (isArray(property)) { const props = {}; for (const prop of property) { props[prop] = css(element2, prop); } return props; } else if (isObject(property)) { for (const prop in property) { css(element2, prop, property[prop], value); } } } return elements[0]; } function resetProps(element, props) { for (const prop in props) { css(element, prop, ""); } } const propName = memoize((name) => { if (isCustomProperty(name)) { return name; } name = hyphenate(name); const { style } = document.documentElement; if (name in style) { return name; } for (const prefix of ["webkit", "moz"]) { const prefixedName = `-${prefix}-${name}`; if (prefixedName in style) { return prefixedName; } } }); function isCustomProperty(name) { return startsWith(name, "--"); } const clsTransition = "uk-transition"; const transitionEnd = "transitionend"; const transitionCanceled = "transitioncanceled"; function transition$1(element, props, duration = 400, timing = "linear") { duration = Math.round(duration); return Promise.all( toNodes(element).map( (element2) => new Promise((resolve, reject) => { for (const name in props) { css(element2, name); } const timer = setTimeout(() => trigger(element2, transitionEnd), duration); once( element2, [transitionEnd, transitionCanceled], ({ type }) => { clearTimeout(timer); removeClass(element2, clsTransition); resetProps(element2, transitionProps); type === transitionCanceled ? reject() : resolve(element2); }, { self: true } ); addClass(element2, clsTransition); const transitionProps = { transitionProperty: Object.keys(props).map(propName).join(","), transitionDuration: `${duration}ms`, transitionTimingFunction: timing }; css(element2, { ...transitionProps, ...props }); }) ) ); } const Transition = { start: transition$1, async stop(element) { trigger(element, transitionEnd); await Promise.resolve(); }, async cancel(element) { trigger(element, transitionCanceled); await Promise.resolve(); }, inProgress(element) { return hasClass(element, clsTransition); } }; const clsAnimation = "uk-animation"; const animationEnd = "animationend"; const animationCanceled = "animationcanceled"; function animate$2(element, animation, duration = 200, origin, out) { return Promise.all( toNodes(element).map( (element2) => new Promise((resolve, reject) => { if (hasClass(element2, clsAnimation)) { trigger(element2, animationCanceled); } const classes = [ animation, clsAnimation, `${clsAnimation}-${out ? "leave" : "enter"}`, origin && `uk-transform-origin-${origin}`, out && `${clsAnimation}-reverse` ]; const timer = setTimeout(() => trigger(element2, animationEnd), duration); once( element2, [animationEnd, animationCanceled], ({ type }) => { clearTimeout(timer); type === animationCanceled ? reject() : resolve(element2); css(element2, "animationDuration", ""); removeClass(element2, classes); }, { self: true } ); css(element2, "animationDuration", `${duration}ms`); addClass(element2, classes); }) ) ); } const Animation = { in: animate$2, out(element, animation, duration, origin) { return animate$2(element, animation, duration, origin, true); }, inProgress(element) { return hasClass(element, clsAnimation); }, cancel(element) { trigger(element, animationCanceled); } }; function ready(fn) { if (document.readyState !== "loading") { fn(); return; } once(document, "DOMContentLoaded", fn); } function isTag(element, ...tagNames) { return tagNames.some((tagName) => { var _a; return ((_a = element == null ? void 0 : element.tagName) == null ? void 0 : _a.toLowerCase()) === tagName.toLowerCase(); }); } function empty(element) { element = $(element); if (element) { element.innerHTML = ""; } return element; } function html(parent2, html2) { return isUndefined(html2) ? $(parent2).innerHTML : append(empty(parent2), html2); } const prepend = applyFn("prepend"); const append = applyFn("append"); const before = applyFn("before"); const after = applyFn("after"); function applyFn(fn) { return function(ref, element) { var _a; const nodes = toNodes(isString(element) ? fragment(element) : element); (_a = $(ref)) == null ? void 0 : _a[fn](...nodes); return unwrapSingle(nodes); }; } function remove$1(element) { toNodes(element).forEach((element2) => element2.remove()); } function wrapAll(element, structure) { structure = toNode(before(element, structure)); while (structure.firstElementChild) { structure = structure.firstElementChild; } append(structure, element); return structure; } function wrapInner(element, structure) { return toNodes( toNodes(element).map( (element2) => element2.hasChildNodes() ? wrapAll(toArray(element2.childNodes), structure) : append(element2, structure) ) ); } function unwrap(element) { toNodes(element).map(parent).filter((value, index, self) => self.indexOf(value) === index).forEach((parent2) => parent2.replaceWith(...parent2.childNodes)); } const singleTagRe = /^<(\w+)\s*\/?>(?:<\/\1>)?$/; function fragment(html2) { const matches = singleTagRe.exec(html2); if (matches) { return document.createElement(matches[1]); } const container = document.createElement("template"); container.innerHTML = html2.trim(); return unwrapSingle(container.content.childNodes); } function unwrapSingle(nodes) { return nodes.length > 1 ? nodes : nodes[0]; } function apply(node, fn) { if (!isElement(node)) { return; } fn(node); node = node.firstElementChild; while (node) { apply(node, fn); node = node.nextElementSibling; } } function $(selector, context) { return isHtml(selector) ? toNode(fragment(selector)) : find(selector, context); } function $$(selector, context) { return isHtml(selector) ? toNodes(fragment(selector)) : findAll(selector, context); } function isHtml(str) { return isString(str) && startsWith(str.trim(), "<"); } const dirs$1 = { width: ["left", "right"], height: ["top", "bottom"] }; function dimensions$1(element) { const rect = isElement(element) ? toNode(element).getBoundingClientRect() : { height: height(element), width: width(element), top: 0, left: 0 }; return { height: rect.height, width: rect.width, top: rect.top, left: rect.left, bottom: rect.top + rect.height, right: rect.left + rect.width }; } function offset(element, coordinates) { if (coordinates) { css(element, { left: 0, top: 0 }); } const currentOffset = dimensions$1(element); if (element) { const { scrollY, scrollX } = toWindow(element); const offsetBy = { height: scrollY, width: scrollX }; for (const dir in dirs$1) { for (const prop of dirs$1[dir]) { currentOffset[prop] += offsetBy[dir]; } } } if (!coordinates) { return currentOffset; } for (const prop of ["left", "top"]) { css(element, prop, coordinates[prop] - currentOffset[prop]); } } function position(element) { let { top, left } = offset(element); const { ownerDocument: { body, documentElement }, offsetParent } = toNode(element); let parent = offsetParent || documentElement; while (parent && (parent === body || parent === documentElement) && css(parent, "position") === "static") { parent = parent.parentNode; } if (isElement(parent)) { const parentOffset = offset(parent); top -= parentOffset.top + toFloat(css(parent, "borderTopWidth")); left -= parentOffset.left + toFloat(css(parent, "borderLeftWidth")); } return { top: top - toFloat(css(element, "marginTop")), left: left - toFloat(css(element, "marginLeft")) }; } function offsetPosition(element) { element = toNode(element); const offset2 = [element.offsetTop, element.offsetLeft]; while (element = element.offsetParent) { offset2[0] += element.offsetTop + toFloat(css(element, "borderTopWidth")); offset2[1] += element.offsetLeft + toFloat(css(element, "borderLeftWidth")); if (css(element, "position") === "fixed") { const win = toWindow(element); offset2[0] += win.scrollY; offset2[1] += win.scrollX; return offset2; } } return offset2; } const height = dimension("height"); const width = dimension("width"); function dimension(prop) { const propName = ucfirst(prop); return (element, value) => { if (isUndefined(value)) { if (isWindow(element)) { return element[`inner${propName}`]; } if (isDocument(element)) { const doc = element.documentElement; return Math.max(doc[`offset${propName}`], doc[`scroll${propName}`]); } element = toNode(element); value = css(element, prop); value = value === "auto" ? element[`offset${propName}`] : toFloat(value) || 0; return value - boxModelAdjust(element, prop); } else { return css( element, prop, !value && value !== 0 ? "" : +value + boxModelAdjust(element, prop) + "px" ); } }; } function boxModelAdjust(element, prop, sizing = "border-box") { return css(element, "boxSizing") === sizing ? sumBy( dirs$1[prop], (prop2) => toFloat(css(element, `padding-${prop2}`)) + toFloat(css(element, `border-${prop2}-width`)) ) : 0; } function flipPosition(pos) { for (const dir in dirs$1) { for (const i in dirs$1[dir]) { if (dirs$1[dir][i] === pos) { return dirs$1[dir][1 - i]; } } } return pos; } function toPx(value, property = "width", element = window, offsetDim = false) { if (!isString(value)) { return toFloat(value); } return sumBy(parseCalc(value), (value2) => { const unit = parseUnit(value2); return unit ? percent( unit === "vh" ? getViewportHeight() : unit === "vw" ? width(toWindow(element)) : offsetDim ? element[`offset${ucfirst(property)}`] : dimensions$1(element)[property], value2 ) : value2; }); } const calcRe = /-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g; const parseCalc = memoize((calc) => calc.toString().replace(/\s/g, "").match(calcRe) || []); const unitRe$1 = /(?:v[hw]|%)$/; const parseUnit = memoize((str) => (str.match(unitRe$1) || [])[0]); function percent(base, value) { return base * toFloat(value) / 100; } let vh; let vhEl; function getViewportHeight() { if (vh) { return vh; } if (!vhEl) { vhEl = $("<div>"); css(vhEl, { height: "100vh", position: "fixed" }); on(window, "resize", () => vh = null); } append(document.body, vhEl); vh = vhEl.clientHeight; remove$1(vhEl); return vh; } const fastdom = { read, write, clear, flush }; const reads = []; const writes = []; function read(task) { reads.push(task); scheduleFlush(); return task; } function write(task) { writes.push(task); scheduleFlush(); return task; } function clear(task) { remove(reads, task); remove(writes, task); } let scheduled = false; function flush() { runTasks(reads); runTasks(writes.splice(0)); scheduled = false; if (reads.length || writes.length) { scheduleFlush(); } } function scheduleFlush() { if (!scheduled) { scheduled = true; queueMicrotask(flush); } } function runTasks(tasks) { let task; while (task = tasks.shift()) { try { task(); } catch (e) { console.error(e); } } } function remove(array, item) { const index = array.indexOf(item); return ~index && array.splice(index, 1); } class MouseTracker { init() { this.positions = []; let position; this.unbind = on(document, "mousemove", (e) => position = getEventPos(e)); this.interval = setInterval(() => { if (!position) { return; } this.positions.push(position); if (this.positions.length > 5) { this.positions.shift(); } }, 50); } cancel() { var _a; (_a = this.unbind) == null ? void 0 : _a.call(this); clearInterval(this.interval); } movesTo(target) { if (!this.positions || this.positions.length < 2) { return false; } const p = dimensions$1(target); const { left, right, top, bottom } = p; const [prevPosition] = this.positions; const position = last(this.positions); const path = [prevPosition, position]; if (pointInRect(position, p)) { return false; } const diagonals = [ [ { x: left, y: top }, { x: right, y: bottom } ], [ { x: left, y: bottom }, { x: right, y: top } ] ]; return diagonals.some((diagonal) => { const intersection = intersect(path, diagonal); return intersection && pointInRect(intersection, p); }); } } function intersect([{ x: x1, y: y1 }, { x: x2, y: y2 }], [{ x: x3, y: y3 }, { x: x4, y: y4 }]) { const denominator = (y4 - y3) * (x2 - x1) - (x4 - x3) * (y2 - y1); if (denominator === 0) { return false; } const ua = ((x4 - x3) * (y1 - y3) - (y4 - y3) * (x1 - x3)) / denominator; if (ua < 0) { return false; } return { x: x1 + ua * (x2 - x1), y: y1 + ua * (y2 - y1) }; } function observeIntersection(targets, cb, options = {}, { intersecting = true } = {}) { const observer = new IntersectionObserver( intersecting ? (entries, observer2) => { if (entries.some((entry) => entry.isIntersecting)) { cb(entries, observer2); } } : cb, options ); for (const el of toNodes(targets)) { observer.observe(el); } return observer; } const hasResizeObserver = inBrowser && window.ResizeObserver; function observeResize(targets, cb, options = { box: "border-box" }) { if (hasResizeObserver) { return observe$1(ResizeObserver, targets, cb, options); } const off = [on(window, "load resize", cb), on(document, "loadedmetadata load", cb, true)]; return { disconnect: () => off.map((cb2) => cb2()) }; } function observeViewportResize(cb) { return { disconnect: on([window, window.visualViewport], "resize", cb) }; } function observeMutation(targets, cb, options) { return observe$1(MutationObserver, targets, cb, options); } function observe$1(Observer, targets, cb, options) { const observer = new Observer(cb); for (const el of toNodes(targets)) { observer.observe(el, options); } return observer; } function play(el) { if (isIFrame(el)) { call(el, { func: "playVideo", method: "play" }); } if (isHTML5(el)) { el.play().catch(noop); } } function pause(el) { if (isIFrame(el)) { call(el, { func: "pauseVideo", method: "pause" }); } if (isHTML5(el)) { el.pause(); } } function mute(el) { if (isIFrame(el)) { call(el, { func: "mute", method: "setVolume", value: 0 }); } if (isHTML5(el)) { el.muted = true; } } function isHTML5(el) { return isTag(el, "video"); } function isIFrame(el) { return isTag(el, "iframe") && (isYoutube(el) || isVimeo(el)); } function isYoutube(el) { return !!el.src.match( /\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/ ); } function isVimeo(el) { return !!el.src.match(/vimeo\.com\/video\/.*/); } async function call(el, cmd) { await enableApi(el); post(el, cmd); } function post(el, cmd) { el.contentWindow.postMessage(JSON.stringify({ event: "command", ...cmd }), "*"); } const stateKey = "_ukPlayer"; let counter = 0; function enableApi(el) { if (el[stateKey]) { return el[stateKey]; } const youtube = isYoutube(el); const vimeo = isVimeo(el); const id = ++counter; let poller; return el[stateKey] = new Promise((resolve) => { youtube && once(el, "load", () => { const listener = () => post(el, { event: "listening", id }); poller = setInterval(listener, 100); listener(); }); once(window, "message", resolve, false, ({ data }) => { try { data = JSON.parse(data); return youtube && (data == null ? void 0 : data.id) === id && data.event === "onReady" || vimeo && Number(data == null ? void 0 : data.player_id) === id; } catch (e) { } }); el.src = `${el.src}${includes(el.src, "?") ? "&" : "?"}${youtube ? "enablejsapi=1" : `api=1&player_id=${id}`}`; }).then(() => clearInterval(poller)); } function isInView(element, offsetTop = 0, offsetLeft = 0) { if (!isVisible(element)) { return false; } return intersectRect( ...overflowParents(element).map((parent2) => { const { top, left, bottom, right } = offsetViewport(parent2); return { top: top - offsetTop, left: left - offsetLeft, bottom: bottom + offsetTop, right: right + offsetLeft }; }).concat(offset(element)) ); } function scrollIntoView(element, { offset: offsetBy = 0 } = {}) { const parents2 = isVisible(element) ? scrollParents(element, false, ["hidden"]) : []; return parents2.reduce( (fn, scrollElement, i) => { const { scrollTop, scrollHeight, offsetHeight } = scrollElement; const viewport = offsetViewport(scrollElement); const maxScroll = scrollHeight - viewport.height; const { height: elHeight, top: elTop } = parents2[i - 1] ? offsetViewport(parents2[i - 1]) : offset(element); let top = Math.ceil(elTop - viewport.top - offsetBy + scrollTop); if (offsetBy > 0 && offsetHeight < elHeight + offsetBy) { top += offsetBy; } else { offsetBy = 0; } if (top > maxScroll) { offsetBy -= top - maxScroll; top = maxScroll; } else if (top < 0) { offsetBy -= top; top = 0; } return () => scrollTo(scrollElement, top - scrollTop, element, maxScroll).then(fn); }, () => Promise.resolve() )(); function scrollTo(element2, top, targetEl, maxScroll) { return new Promise((resolve) => { const scroll = element2.scrollTop; const duration = getDuration(Math.abs(top)); const start = Date.now(); const isScrollingElement = scrollingElement(element2) === element2; const targetTop = offset(targetEl).top + (isScrollingElement ? 0 : scroll); let prev = 0; let frames = 15; (function step() { const percent = ease(clamp((Date.now() - start) / duration)); let diff = 0; if (parents2[0] === element2 && scroll + top < maxScroll) { diff = offset(targetEl).top + (isScrollingElement ? 0 : element2.scrollTop) - targetTop - dimensions$1(getCoveringElement(targetEl)).height; } if (css(element2, "scrollBehavior") !== "auto") { css(element2, "scrollBehavior", "auto"); } element2.scrollTop = scroll + (top + diff) * percent; css(element2, "scrollBehavior", ""); if (percent === 1 && (prev === diff || !frames--)) { resolve(); } else { prev = diff; requestAnimationFrame(step); } })(); }); } function getDuration(dist) { return 40 * Math.pow(dist, 0.375); } function ease(k) { return 0.5 * (1 - Math.cos(Math.PI * k)); } } function scrolledOver(element, startOffset = 0, endOffset = 0) { if (!isVisible(element)) { return 0; } const scrollElement = scrollParent(element, true); const { scrollHeight, scrollTop } = scrollElement; const { height: viewportHeight } = offsetViewport(scrollElement); const maxScroll = scrollHeight - viewportHeight; const elementOffsetTop = offsetPosition(element)[0] - offsetPosition(scrollElement)[0]; const start = Math.max(0, elementOffsetTop - viewportHeight + startOffset); const end = Math.min(maxScroll, elementOffsetTop + element.offsetHeight - endOffset); return start < end ? clamp((scrollTop - start) / (end - start)) : 1; } function scrollParents(element, scrollable = false, props = []) { const scrollEl = scrollingElement(element); let ancestors = parents(element).reverse(); ancestors = ancestors.slice(ancestors.indexOf(scrollEl) + 1); const fixedIndex = findIndex(ancestors, (el) => css(el, "position") === "fixed"); if (~fixedIndex) { ancestors = ancestors.slice(fixedIndex); } return [scrollEl].concat( ancestors.filter( (parent2) => css(parent2, "overflow").split(" ").some((prop) => includes(["auto", "scroll", ...props], prop)) && (!scrollable || parent2.scrollHeight > offsetViewport(parent2).height) ) ).reverse(); } function scrollParent(...args) { return scrollParents(...args)[0]; } function overflowParents(element) { return scrollParents(element, false, ["hidden", "clip"]); } function offsetViewport(scrollElement) { const window = toWindow(scrollElement); const documentScrollingElement = scrollingElement(scrollElement); const useWindow = !isNode(scrollElement) || scrollElement.contains(documentScrollingElement); if (useWindow && window.visualViewport) { let { height, width, scale, pageTop: top, pageLeft: left } = window.visualViewport; height = Math.round(height * scale); width = Math.round(width * scale); return { height, width, top, left, bottom: top + height, right: left + width }; } let rect = offset(useWindow ? window : scrollElement); if (css(scrollElement, "display") === "inline") { return rect; } const { body, documentElement } = window.document; const viewportElement = useWindow ? documentScrollingElement === documentElement || // In quirks mode the scrolling element is body, even though the viewport is html documentScrollingElement.clientHeight < body.clientHeight ? documentScrollingElement : body : scrollElement; for (let [prop, dir, start, end] of [ ["width", "x", "left", "right"], ["height", "y", "top", "bottom"] ]) { const subpixel = rect[prop] % 1; rect[start] += toFloat(css(viewportElement, `border-${start}-width`)); rect[prop] = rect[dir] = viewportElement[`client${ucfirst(prop)}`] - (subpixel ? subpixel < 0.5 ? -subpixel : 1 - subpixel : 0); rect[end] = rect[prop] + rect[start]; } return rect; } function getCoveringElement(target) { const { left, width, top } = dimensions$1(target); for (const position of top ? [0, top] : [0]) { let coverEl; for (const el of toWindow(target).document.elementsFromPoint(left + width / 2, position)) { if (!el.contains(target) && // If e.g. Offcanvas is not yet closed !hasClass(el, "uk-togglable-leave") && (hasPosition(el, "fixed") && zIndex( parents(target).reverse().find( (parent2) => !parent2.contains(el) && !hasPosition(parent2, "static") ) ) < zIndex(el) || hasPosition(el, "sticky") && (!target || parent(el).contains(target))) && (!coverEl || dimensions$1(coverEl).height < dimensions$1(el).height)) { coverEl = el; } } if (coverEl) { return coverEl; } } } function zIndex(element) { return toFloat(css(element, "zIndex")); } function hasPosition(element, position) { return css(element, "position") === position; } function scrollingElement(element) { return toWindow(element).document.scrollingElement; } const dirs = [ ["width", "x", "left", "right"], ["height", "y", "top", "bottom"] ]; function positionAt(element, target, options) { options = { attach: { element: ["left", "top"], target: ["left", "top"], ...options.attach }, offset: [0, 0], placement: [], ...options }; if (!isArray(target)) { target = [target, target]; } offset(element, getPosition(element, target, options)); } function getPosition(element, target, options) { const position = attachTo(element, target, options); const { boundary, viewportOffset = 0, placement } = options; let offsetPosition = position; for (const [i, [prop, , start, end]] of Object.entries(dirs)) { const viewport = getViewport$2(element, target[i], viewportOffset, boundary, i); if (isWithin(position, viewport, i)) { continue; } let offsetBy = 0; if (placement[i] === "flip") { const attach = options.attach.target[i]; if (attach === end && position[end] <= viewport[end] || attach === start && position[start] >= viewport[start]) { continue; } offsetBy = flip(element, target, options, i)[start] - position[start]; const scrollArea = getScrollArea(element, target[i], viewportOffset, i); if (!isWithin(applyOffset(position, offsetBy, i), scrollArea, i)) { if (isWithin(position, scrollArea, i)) { continue; } if (options.recursion) { return false; } const newPos = flipAxis(element, target, options); if (newPos && isWithin(newPos, scrollArea, 1 - i)) { return newPos; } continue; } } else if (placement[i] === "shift") { const targetDim = offset(target[i]); const { offset: elOffset } = options; offsetBy = clamp( clamp(position[start], viewport[start], viewport[end] - position[prop]), targetDim[start] - position[prop] + elOffset[i], targetDim[end] - elOffset[i] ) - position[start]; } offsetPosition = applyOffset(offsetPosition, offsetBy, i); } return offsetPosition; } function attachTo(element, target, options) { let { attach, offset: offsetBy } = { attach: { element: ["left", "top"], target: ["left", "top"], ...options.attach }, offset: [0, 0], ...options }; let elOffset = offset(element); for (const [i, [prop, , start, end]] of Object.entries(dirs)) { const targetOffset = attach.target[i] === attach.element[i] ? offsetViewport(target[i]) : offset(target[i]); elOffset = applyOffset( elOffset, targetOffset[start] - elOffset[start] + moveBy(attach.target[i], end, targetOffset[prop]) - moveBy(attach.element[i], end, elOffset[prop]) + +offsetBy[i], i ); } return elOffset; } function applyOffset(position, offset2, i) { const [, dir, start, end] = dirs[i]; const newPos = { ...position }; newPos[start] = position[dir] = position[start] + offset2; newPos[end] += offset2; return newPos; } function moveBy(attach, end, dim) { return attach === "center" ? dim / 2 : attach === end ? dim : 0; } function getViewport$2(element, target, viewportOffset, boundary, i) { let viewport = getIntersectionArea(...commonScrollParents(element, target).map(offsetViewport)); if (viewportOffset) { viewport[dirs[i][2]] += viewportOffset; viewport[dirs[i][3]] -= viewportOffset; } if (boundary) { viewport = getIntersectionArea( viewport, offset(isArray(boundary) ? boundary[i] : boundary) ); } return viewport; } function getScrollArea(element, target, viewportOffset, i) { const [prop, axis, start, end] = dirs[i]; const [scrollElement] = commonScrollParents(element, target); const viewport = offsetViewport(scrollElement); if (["auto", "scroll"].includes(css(scrollElement, `overflow-${axis}`))) { viewport[start] -= scrollElement[`scroll${ucfirst(start)}`]; viewport[end] = viewport[start] + scrollElement[`scroll${ucfirst(prop)}`]; } viewport[start] += viewportOffset; viewport[end] -= viewportOffset; return viewport; } function commonScrollParents(element, target) { return overflowParents(target).filter((parent) => parent.contains(element)); } function getIntersectionArea(...rects) { let area = {}; for (const rect of rects) { for (const [, , start, end] of dirs) { area[start] = Math.max(area[start] || 0, rect[start]); area[end] = Math.min(...[area[end], rect[end]].filter(Boolean)); } } return area; } function isWithin(positionA, positionB, i) { const [, , start, end] = dirs[i]; return positionA[start] >= positionB[start] && positionA[end] <= positionB[end]; } function flip(element, target, { offset: offset2, attach }, i) { return attachTo(element, target, { attach: { element: flipAttach(attach.element, i), target: flipAttach(attach.target, i) }, offset: flipOffset(offset2, i) }); } function flipAxis(element, target, options) { return getPosition(element, target, { ...options, attach: { element: options.attach.element.map(flipAttachAxis).reverse(), target: options.attach.target.map(flipAttachAxis).reverse() }, offset: options.offset.reverse(), placement: options.placement.reverse(), recursion: true }); } function flipAttach(attach, i) { const newAttach = [...attach]; const index = dirs[i].indexOf(attach[i]); if (~index) { newAttach[i] = dirs[i][1 - index % 2 + 2]; } return newAttach; } function flipAttachAxis(prop) { for (let i = 0; i < dirs.length; i++) { const index = dirs[i].indexOf(prop); if (~index) { return dirs[1 - i][index % 2 + 2]; } } } function flipOffset(offset2, i) { offset2 = [...offset2]; offset2[i] *= -1; return offset2; } var util = /*#__PURE__*/Object.freeze({ __proto__: null, $: $, $$: $$, Animation: Animation, Dimensions: Dimensions, MouseTracker: MouseTracker, Transition: Transition, addClass: addClass, after: after, append: append, apply: apply, assign: assign, attr: attr, before: before, boxModelAdjust: boxModelAdjust, camelize: camelize, children: children, clamp: clamp, createEvent: createEvent, css: css, data: data, dimensions: dimensions$1, each: each, empty: empty, endsWith: endsWith, escape: escape, fastdom: fastdom, filter: filter$1, find: find, findAll: findAll, findIndex: findIndex, flipPosition: flipPosition, fragment: fragment, getCoveringElement: getCoveringElement, getEventPos: getEventPos, getIndex: getIndex, getTargetedElement: getTargetedElement, hasAttr: hasAttr, hasClass: hasClass, hasOwn: hasOwn, hasTouch: hasTouch, height: height, html: html, hyphenate: hyphenate, inBrowser: inBrowser, includes: includes, index: index, intersectRect: intersectRect, isArray: isArray, isBoolean: isBoolean, isDocument: isDocument, isElement: isElement, isEmpty: isEmpty, isEqual: isEqual, isFocusable: isFocusable, isFunction: isFunction, isInView: isInView, isInput: isInput, isNode: isNode, isNumber: isNumber, isNumeric: isNumeric, isObject: isObject, isPlainObject: isPlainObject, isRtl: isRtl, isSameSiteAnchor: isSameSiteAnchor, isString: isString, isTag: isTag, isTouch: isTouch, isUndefined: isUndefined, isVisible: isVisible, isVoidElement: isVoidElement, isWindow: isWindow, last: last, matches: matches, memoize: memoize, mute: mute, noop: noop, observeIntersection: observeIntersection, observeMutation: observeMutation, observeResize: observeResize, observeViewportResize: observeViewportResize, off: off, offset: offset, offsetPosition: offsetPosition, offsetViewport: offsetViewport, on: on, once: once, overflowParents: overflowParents, parent: parent, parents: parents, pause: pause, pick: pick, play: play, pointInRect: pointInRect, pointerCancel: pointerCancel, pointerDown: pointerDown$1, pointerEnter: pointerEnter, pointerLeave: pointerLeave, pointerMove: pointerMove$1, pointerUp: pointerUp$1, position: position, positionAt: positionAt, prepend: prepend, propName: propName, query: query, queryAll: queryAll, ready: ready, remove: remove$1, removeAttr: removeAttr, removeClass: removeClass, replaceClass: replaceClass, resetProps: resetProps, scrollIntoView: scrollIntoView, scrollParent: scrollParent, scrollParents: scrollParents, scrolledOver: scrolledOver, selFocusable: selFocusable, selInput: selInput, sortBy: sortBy, startsWith: startsWith, sumBy: sumBy, swap: swap, toArray: toArray, toBoolean: toBoolean, toEventTargets: toEventTargets, toFloat: toFloat, toNode: toNode, toNodes: toNodes, toNumber: toNumber, toPx: toPx, toWindow: toWindow, toggleClass: toggleClass, trigger: trigger, ucfirst: ucfirst, uniqueBy: uniqueBy, unwrap: unwrap, width: width, wrapAll: wrapAll, wrapInner: wrapInner }); var Class = { connected() { addClass(this.$el, this.$options.id); } }; const units = ["days", "hours", "minutes", "seconds"]; var countdown = { mixins: [Class], props: { date: String, clsWrapper: String, role: String, reload: Boolean }, data: { date: "", clsWrapper: ".uk-countdown-%unit%", role: "timer", reload: false }, connected() { this.$el.role = this.role; this.date = toFloat(Date.parse(this.$props.date)); this.started = this.end = false; this.start(); }, disconnected() { this.stop(); }, events: { name: "visibilitychange", el: () => document, handler() { if (document.hidden) { this.stop(); } else { this.start(); } } }, methods: { start() { this.stop(); this.update(); }, stop() { if (this.timer) { clearInterval(this.timer); trigger(this.$el, "countdownstop"); this.timer = null; } }, update() { const timespan = getTimeSpan(this.date); if (!timespan.total) { this.stop(); if (!this.end) { trigger(this.$el, "countdownend"); this.end = true; if (this.reload && this.started) { window.location.reload(); } } } else if (!this.timer) { this.started = true; this.timer = setInterval(this.update, 1e3); trigger(this.$el, "countdownstart"); } for (const unit of units) { const el = $(this.clsWrapper.replace("%unit%", unit), this.$el); if (!el) { continue; } let digits = Math.trunc(timespan[unit]).toString().padStart(2, "0"); if (el.textContent !== digits) { digits = digits.split(""); if (digits.length !== el.children.length) { html(el, digits.map(() => "<span></span>").join("")); } digits.forEach((digit, i) => el.children[i].textContent = digit); } } } } }; function getTimeSpan(date) { const total = Math.max(0, date - Date.now()) / 1e3; return { total, seconds: total % 60, minutes: total / 60 % 60, hours: total / 60 / 60 % 24, days: total / 60 / 60 / 24 }; } const strats = {}; strats.events = strats.watch = strats.observe = strats.created = strats.beforeConnect = strats.connected = strats.beforeDisconnect = strats.disconnected = strats.destroy = concatStrat; strats.args = function(parentVal, childVal) { return childVal !== false && concatStrat(childVal || parentVal); }; strats.update = function(parentVal, childVal) { return sortBy( concatStrat(parentVal, isFunction(childVal) ? { read: childVal } : childVal), "order" ); }; strats.props = function(parentVal, childVal) { if (isArray(childVal)) { const value = {}; for (const key of childVal) { value[key] = String; } childVal = value; } return strats.methods(parentVal, childVal); }; strats.computed = strats.methods = function(parentVal, childVal) { return childVal ? parentVal ? { ...parentVal, ...childVal } : childVal : parentVal; }; strats.i18n = strats.data = function(parentVal, childVal, vm) { if (!vm) { if (!childVal) { return parentVal; } if (!parentVal) { return childVal; } return function(vm2) { return mergeFnData(parentVal, childVal, vm2); }; } return mergeFnData(parentVal, childVal, vm); }; function mergeFnData(parentVal, childVal, vm) { return strats.computed( isFunction(parentVal) ? parentVal.call(vm, vm) : parentVal, isFunction(childVal) ? childVal.call(vm, vm) : childVal ); } function concatStrat(parentVal, childVal) { parentVal = parentVal && !isArray(parentVal) ? [parentVal] : parentVal; return childVal ? parentVal ? parentVal.concat(childVal) : isArray(childVal) ? childVal : [childVal] : parentVal; } function defaultStrat(parentVal, childVal) { return isUndefined(childVal) ? parentVal : childVal; } function mergeOptions(parent, child, vm) { const options = {}; if (isFunction(child)) { child = child.options; } if (child.extends) { parent = mergeOptions(parent, child.extends, vm); } if (child.mixins) { for (const mixin of child.mixins) { parent = mergeOptions(parent, mixin, vm); } } for (const key in parent) { mergeKey(key); } for (const key in child) { if (!hasOwn(parent, key)) { mergeKey(key); } } function mergeKey(key) { options[key] = (strats[key] || defaultStrat)(parent[key], child[key], vm); } return options; } function parseOptions(options, args = []) { try { return options ? startsWith(options, "{") ? JSON.parse(options) : args.length && !includes(options, ":") ? { [args[0]]: options } : options.split(";").reduce((options2, option) => { const [key, value] = option.split(/:(.*)/); if (key && !isUndefined(value)) { options2[key.trim()] = value.trim(); } return options2; }, {}) : {}; } catch (e) { return {}; } } function coerce$1(type, value) { if (type === Boolean) { return toBoolean(value); } else if (type === Number) { return toNumber(value); } else if (type === "list") { return toList(value); } else if (type === Object && isString(value)) { return parseOptions(value); } return type ? type(value) : value; } const listRe = /,(?![^(]*\))/; function toList(value) { return isArray(value) ? value : isString(value) ? value.split(listRe).map((value2) => isNumeric(value2) ? toNumber(value2) : toBoolean(value2.trim())) : [value]; } function initUpdates(instance) { instance._data = {}; instance._updates = [...instance.$options.update || []]; instance._disconnect.push(() => instance._updates = instance._data = null); } function prependUpdate(instance, update) { instance._updates.unshift(update); } function callUpdate(instance, e = "update") { if (!instance._connected) { return; } if (!instance._updates.length) { return; } if (!instance._updateCount) { instance._updateCount = 0; requestAnimationFrame(() => instance._updateCount = 0); } if (!instance._queued) { instance._queued = /* @__PURE__ */ new Set(); fastdom.read(() => { if (instance._connected) { runUpdates(instance, instance._queued); } instance._queued = null; }); } if (instance._updateCount++ < 20) { instance._queued.add(e.type || e); } } function runUpdates(instance, types) { for (const { read, write, events = [] } of instance._updates) { if (!types.has("update") && !events.some((type) => types.has(type))) { continue; } let result; if (read) { result = read.call(instance, instance._data, types); if (result && isPlainObject(result)) { assign(instance._data, result); } } if (write && result !== false) { fastdom.write(() => { if (instance._connected) { write.call(instance, instance._data, types); } }); } } } function resize(options) { return observe(observeResize, options, "resize"); } function intersection(options) { return observe(observeIntersection, options); } function mutation(options) { return observe(observeMutation, options); } function lazyload(options = {}) { return intersection({ handler: function(entries, observer) { const { targets = this.$el, preload = 5 } = options; for (const el of toNodes(isFunction(targets) ? targets(this) : targets)) { $$('[loading="lazy"]', el).slice(0, preload - 1).forEach((el2) => removeAttr(el2, "loading")); } for (const el of entries.filter(({ isIntersecting }) => isIntersecting).map(({ target }) => target)) { observer.unobserve(el); } }, ...options }); } function viewport(options) { return observe((target, handler) => observeViewportResize(handler), options, "resize"); } function scroll$1(options) { return observe( (target, handler) => ({ disconnect: on(toScrollTargets(target), "scroll", handler, { passive: true }) }), options, "scroll" ); } function swipe(options) { return { observe(target, handler) { return { observe: noop, unobserve: noop, disconnect: on(target, pointerDown$1, handler, { passive: true }) }; }, handler(e) { if (!isTouch(e)) { return; } const pos = getEventPos(e); const target = "tagName" in e.target ? e.target : parent(e.target); once(document, `${pointerUp$1} ${pointerCancel} scroll`, (e2) => { const { x, y } = getEventPos(e2); if (e2.type !== "scroll" && target && x && Math.abs(pos.x - x) > 100 || y && Math.abs(pos.y - y) > 100) { setTimeout(() => { trigger(target, "swipe"); trigger(target, `swipe${swipeDirection(pos.x, pos.y, x, y)}`); }); } }); }, ...options }; } function observe(observe2, options, emit) { return { observe: observe2, handler() { callUpdate(this, emit); }, ...options }; } function swipeDirection(x1, y1, x2, y2) { return Math.abs(x1 - x2) >= Math.abs(y1 - y2) ? x1 - x2 > 0 ? "Left" : "Right" : y1 - y2 > 0 ? "Up" : "Down"; } function toScrollTargets(elements) { return toNodes(elements).map((node) => { const { ownerDocument } = node; const parent2 = scrollParent(node, true); return parent2 === ownerDocument.scrollingElement ? ownerDocument : parent2; }); } var Margin = { props: { margin: String, firstColumn: Boolean }, data: { margin: "uk-margin-small-top", firstColumn: "uk-first-column" }, observe: [ mutation({ options: { childList: true } }), mutation({ options: { attributes: true, attributeFilter: ["style"] } }), resize({ handler(mutations) { for (const { borderBoxSize: [{ inlineSize, blockSize }] } of mutations) { if (inlineSize || blockSize) { this.$emit("resize"); return; } } }, target: ({ $el }) => [$el, ...children($el)] }) ], update: { read() { return { rows: getRows(children(this.$el)) }; }, write({ rows }) { for (const row of rows) { for (const el of row) { toggleClass(el, this.margin, rows[0] !== row); toggleClass(el, this.firstColumn, row[isRtl ? row.length - 1 : 0] === el); } } }, events: ["resize"] } }; function getRows(elements) { const sorted = [[]]; const withOffset = elements.some( (el, i) => i && elements[i - 1].offsetParent !== el.offsetParent ); for (const el of elements) { if (!isVisible(el)) { continue; } const offset = getOffset(el, withOffset); for (let i = sorted.length - 1; i >= 0; i--) { const current = sorted[i]; if (!current[0]) { current.push(el); break; } const offsetCurrent = getOffset(current[0], withOffset); if (offset.top >= offsetCurrent.bottom - 1 && offset.top !== offsetCurrent.top) { sorted.push([el]); break; } if (offset.bottom - 1 > offsetCurrent.top || offset.top === offsetCurrent.top) { let j = current.length - 1; for (; j >= 0; j--) { const offsetCurrent2 = getOffset(current[j], withOffset); if (offset.left >= offsetCurrent2.left) { break; } } current.splice(j + 1, 0, el); break; } if (i === 0) { sorted.unshift([el]); break; } } } return sorted; } function getOffset(element, offset = false) { let { offsetTop, offsetLeft, offsetHeight, offsetWidth } = element; if (offset) { [offsetTop, offsetLeft] = offsetPosition(element); } return { top: offsetTop, left: offsetLeft, bottom: offsetTop + offsetHeight, right: offsetLeft + offsetWidth }; } const clsLeave = "uk-transition-leave"; const clsEnter = "uk-transition-enter"; function fade(action, target, duration, stagger = 0) { const index = transitionIndex(target, true); const propsIn = { opacity: 1 }; const propsOut = { opacity: 0 }; const isCurrentIndex = () => index === transitionIndex(target); const wrapIndexFn = (fn) => () => isCurrentIndex() ? fn() : Promise.reject(); const leaveFn = wrapIndexFn(async () => { addClass(target, clsLeave); await (stagger ? Promise.all( getTransitionNodes(target).map(async (child, i) => { await awaitTimeout(i * stagger); return Transition.start(child, propsOut, duration / 2, "ease"); }) ) : Transition.start(target, propsOut, duration / 2, "ease")); removeClass(target, clsLeave); }); const enterFn = wrapIndexFn(async () => { const oldHeight = height(target); addClass(target, clsEnter); action(); css(stagger ? children(target) : target, propsOut); height(target, oldHeight); await awaitTimeout(); height(target, ""); const newHeight = height(target); css(target, "alignContent", "flex-start"); height(target, oldHeight); let transitions = []; let targetDuration = duration / 2; if (stagger) { const nodes = getTransitionNodes(target); css(children(target), propsOut); transitions = nodes.map(async (child, i) => { await awaitTimeout(i * stagger); await Transition.start(child, propsIn, duration / 2, "ease"); if (isCurrentIndex()) { resetProps(child, propsIn); } }); targetDuration += nodes.length * stagger; } if (!stagger || oldHeight !== newHeight) { const targetProps = { height: newHeight, ...stagger ? {} : propsIn }; transitions.push(Transition.start(target, targetProps, targetDuration, "ease")); } await Promise.all(transitions); removeClass(target, clsEnter); if (isCurrentIndex()) { resetProps(target, { height: "", alignContent: "", ...propsIn }); delete target.dataset.transition; } }); return hasClass(target, clsLeave) ? waitTransitionend(target).then(enterFn) : hasClass(target, clsEnter) ? waitTransitionend(target).then(leaveFn).then(enterFn) : leaveFn().then(enterFn); } function transitionIndex(target, next) { if (next) { target.dataset.transition = 1 + transitionIndex(target); } return toNumber(target.dataset.transition) || 0; } function waitTransitionend(target) { return Promise.all( children(target).filter(Transition.inProgress).map( (el) => new Promise((resolve) => once(el, "transitionend transitioncanceled", resolve)) ) ); } function getTransitionNodes(target) { return getRows(children(target)).flat().filter(isVisible); } function awaitTimeout(timeout) { return new Promise((resolve) => setTimeout(resolve, timeout)); } async function slide(action, target, duration) { await awaitFrame(); let nodes = children(target); const currentProps = nodes.map((el) => getProps$1(el, true)); const targetProps = { ...css(target, ["height", "padding"]), display: "block" }; const targets = nodes.concat(target); await Promise.all(targets.map(Transition.cancel)); css(targets, "transitionProperty", "none"); await action(); nodes = nodes.concat(children(target).filter((el) => !includes(nodes, el))); await Promise.resolve(); css(targets, "transitionProperty", ""); const targetStyle = attr(target, "style"); const targetPropsTo = css(target, ["height", "padding"]); const [propsTo, propsFrom] = getTransitionProps(target, nodes, currentProps); const attrsTo = nodes.map((el) => ({ style: attr(el, "style") })); nodes.forEach((el, i) => propsFrom[i] && css(el, propsFrom[i])); css(target, targetProps); trigger(target, "scroll"); await awaitFrame(); const transitions = nodes.map((el, i) => parent(el) === target && Transition.start(el, propsTo[i], duration, "ease")).concat(Transition.start(target, targetPropsTo, duration, "ease")); try { await Promise.all(transitions); nodes.forEach((el, i) => { attr(el, attrsTo[i]); if (parent(el) === target) { css(el, "display", propsTo[i].opacity === 0 ? "none" : ""); } }); attr(target, "style", targetStyle); } catch (e) { attr(nodes, "style", ""); resetProps(target, targetProps); } } function getProps$1(el, opacity) { const zIndex = css(el, "zIndex"); return isVisible(el) ? { display: "", opacity: opacity ? css(el, "opacity") : "0", pointerEvents: "none", position: "absolute", zIndex: zIndex === "auto" ? index(el) : zIndex, ...getPositionWithMargin(el) } : false; } function getTransitionProps(target, nodes, currentProps) { const propsTo = nodes.map( (el, i) => parent(el) && i in currentProps ? currentProps[i] ? isVisible(el) ? getPositionWithMargin(el) : { opacity: 0 } : { opacity: isVisible(el) ? 1 : 0 } : false ); const propsFrom = propsTo.map((props, i) => { const from = parent(nodes[i]) === target && (currentProps[i] || getProps$1(nodes[i])); if (!from) { return false; } if (!props) { delete from.opacity; } else if (!("opacity" in props)) { const { opacity } = from; if (opacity % 1) { props.opacity = 1; } else { delete from.opacity; } } return from; }); return [propsTo, propsFrom]; } function getPositionWithMargin(el) { const { height, width } = dimensions$1(el); return { height, width, transform: "", ...position(el), ...css(el, ["marginTop", "marginLeft"]) }; } function awaitFrame() { return new Promise((resolve) => requestAnimationFrame(resolve)); } var Animate = { props: { duration: Number, animation: Boolean }, data: { duration: 150, animation: "slide" }, methods: { animate(action, target = this.$el) { const name = this.animation; const animationFn = name === "fade" ? fade : name === "delayed-fade" ? (...args) => fade(...args, 40) : name ? slide : () => { action(); return Promise.resolve(); }; return animationFn(action, target, this.duration).catch(noop); } } }; function maybeDefaultPreventClick(e) { if (e.target.closest('a[href="#"],a[href=""]')) { e.preventDefault(); } } const keyMap = { TAB: 9, ESC: 27, SPACE: 32, END: 35, HOME: 36, LEFT: 37, UP: 38, RIGHT: 39, DOWN: 40 }; var filter = { mixins: [Animate], args: "target", props: { target: String, selActive: Boolean }, data: { target: "", selActive: false, attrItem: "uk-filter-control", cls: "uk-active", duration: 250 }, computed: { children: ({ target }, $el) => $$(`${target} > *`, $el), toggles: ({ attrItem }, $el) => $$(`[${attrItem}],[data-${attrItem}]`, $el) }, watch: { toggles(toggles) { this.updateState(); const actives = $$(this.selActive, this.$el); for (const toggle of toggles) { if (this.selActive !== false) { toggleClass(toggle, this.cls, includes(actives, toggle)); } const button = findButton(toggle); if (isTag(button, "a")) { button.role = "button"; } } }, children(list, prev) { if (prev) { this.updateState(); } } }, events: { name: "click keydown", delegate: ({ attrItem }) => `[${attrItem}],[data-${attrItem}]`, handler(e) { if (e.type === "keydown" && e.keyCode !== keyMap.SPACE) { return; } if (e.target.closest("a,button")) { maybeDefaultPreventClick(e); this.apply(e.current); } } }, methods: { apply(el) { const prevState = this.getState(); const newState = mergeState(el, this.attrItem, this.getState()); if (!isEqualState(prevState, newState)) { this.setState(newState); } }, getState() { return this.toggles.filter((item) => hasClass(item, this.cls)).reduce((state, el) => mergeState(el, this.attrItem, state), { filter: { "": "" }, sort: [] }); }, async setState(state, animate = true) { state = { filter: { "": "" }, sort: [], ...state }; trigger(this.$el, "beforeFilter", [this, state]); for (const toggle of this.toggles) { toggleClass(toggle, this.cls, matchFilter(toggle, this.attrItem, state)); } await Promise.all( $$(this.target, this.$el).map((target) => { const filterFn = () => applyState(state, target, children(target)); return animate ? this.animate(filterFn, target) : filterFn(); }) ); trigger(this.$el, "afterFilter", [this]); }, updateState() { fastdom.write(() => this.setState(this.getState(), false)); } } }; function getFilter(el, attr) { return parseOptions(data(el, attr), ["filter"]); } function isEqualState(stateA, stateB) { return ["filter", "sort"].every((prop) => isEqual(stateA[prop], stateB[prop])); } function applyState(state, target, children) { for (const el of children) { css( el, "display", Object.values(state.filter).every((selector) => !selector || matches(el, selector)) ? "" : "none" ); } const [sort, order] = state.sort; if (sort) { const sorted = sortItems(children, sort, order); if (!isEqual(sorted, children)) { append(target, sorted); } } } function mergeState(el, attr, state) { const { filter, group, sort, order = "asc" } = getFilter(el, attr); if (filter || isUndefined(sort)) { if (group) { if (filter) { delete state.filter[""]; state.filter[group] = filter; } else { delete state.filter[group]; if (isEmpty(state.filter) || "" in state.filter) { state.filter = { "": filter || "" }; } } } else { state.filter = { "": filter || "" }; } } if (!isUndefined(sort)) { state.sort = [sort, order]; } return state; } function matchFilter(el, attr, { filter: stateFilter = { "": "" }, sort: [stateSort, stateOrder] }) { const { filter = "", group = "", sort, order = "asc" } = getFilter(el, attr); return isUndefined(sort) ? group in stateFilter && filter === stateFilter[group] || !filter && group && !(group in stateFilter) && !stateFilter[""] : stateSort === sort && stateOrder === order; } function sortItems(nodes, sort, order) { return [...nodes].sort( (a, b) => data(a, sort).localeCompare(data(b, sort), void 0, { numeric: true }) * (order === "asc" || -1) ); } function findButton(el) { return $("a,button", el) || el; } var img = { args: "dataSrc", props: { dataSrc: String, sources: String, margin: String, target: String, loading: String }, data: { dataSrc: "", sources: false, margin: "50%", target: false, loading: "lazy" }, connected() { if (this.loading !== "lazy") { this.load(); } else if (isImg(this.$el)) { this.$el.loading = "lazy"; setSrcAttrs(this.$el); } }, disconnected() { if (this.img) { this.img.onload = ""; } delete this.img; }, observe: intersection({ handler(entries, observer) { this.load(); observer.disconnect(); }, options: ({ margin }) => ({ rootMargin: margin }), filter: ({ loading }) => loading === "lazy", target: ({ $el, $props }) => $props.target ? [$el, ...queryAll($props.target, $el)] : $el }), methods: { load() { if (this.img) { return this.img; } const image = isImg(this.$el) ? this.$el : getImageFromElement(this.$el, this.dataSrc, this.sources); removeAttr(image, "loading"); setSrcAttrs(this.$el, image.currentSrc); return this.img = image; } } }; function setSrcAttrs(el, src) { if (isImg(el)) { const parentNode = parent(el); const elements = isTag(parentNode, "picture") ? children(parentNode) : [el]; elements.forEach((el2) => setSourceProps(el2, el2)); } else if (src) { const change = !includes(el.style.backgroundImage, src); if (change) { css(el, "backgroundImage", `url(${escape(src)})`); trigger(el, createEvent("load", false)); } } } const srcProps = ["data-src", "data-srcset", "sizes"]; function setSourceProps(sourceEl, targetEl) { for (const prop of srcProps) { const value = data(sourceEl, prop); if (value) { attr(targetEl, prop.replace(/data-/g, ""), value); } } } function getImageFromElement(el, src, sources) { const img = new Image(); wrapInPicture(img, sources); setSourceProps(el, img); img.onload = () => setSrcAttrs(el, img.currentSrc); img.src = src; return img; } function wrapInPicture(img, sources) { sources = parseSources(sources); if (sources.length) { const picture = fragment("<picture>"); for (const attrs of sources) { const source = fragment("<source>"); attr(source, attrs); append(picture, source); } append(picture, img); } } function parseSources(sources) { if (!sources) { return []; } if (startsWith(sources, "[")) { try { sources = JSON.parse(sources); } catch (e) { sources = []; } } else { sources = parseOptions(sources); } if (!isArray(sources)) { sources = [sources]; } return sources.filter((source) => !isEmpty(source)); } function isImg(el) { return isTag(el, "img"); } let prevented; function preventBackgroundScroll(el) { const off = on( el, "touchstart", (e) => { if (e.targetTouches.length !== 1 || matches(e.target, 'input[type="range"')) { return; } let prev = getEventPos(e).y; const offMove = on( el, "touchmove", (e2) => { const pos = getEventPos(e2).y; if (pos === prev) { return; } prev = pos; if (!scrollParents(e2.target).some((scrollParent) => { if (!el.contains(scrollParent)) { return false; } let { scrollHeight, clientHeight } = scrollParent; return clientHeight < scrollHeight; })) { e2.preventDefault(); } }, { passive: false } ); once(el, "scroll touchend touchcanel", offMove, { capture: true }); }, { passive: true } ); if (prevented) { return off; } prevented = true; const { scrollingElement } = document; const props = { overflowY: CSS.supports("overflow", "clip") ? "clip" : "hidden", touchAction: "none", paddingRight: width(window) - scrollingElement.clientWidth || "" }; css(scrollingElement, props); return () => { prevented = false; off(); resetProps(scrollingElement, props); }; } var Container = { props: { container: Boolean }, data: { container: true }, computed: { container({ container }) { return container === true && this.$container || container && $(container); } } }; var Position = { props: { pos: String, offset: Boolean, flip: Boolean, shift: Boolean, inset: Boolean }, data: { pos: `bottom-${isRtl ? "right" : "left"}`, offset: false, flip: true, shift: true, inset: false }, connected() { this.pos = this.$props.pos.split("-").concat("center").slice(0, 2); [this.dir, this.align] = this.pos; this.axis = includes(["top", "bottom"], this.dir) ? "y" : "x"; }, methods: { positionAt(element, target, boundary) { let offset = [this.getPositionOffset(element), this.getShiftOffset(element)]; const placement = [this.flip && "flip", this.shift && "shift"]; const attach = { element: [this.inset ? this.dir : flipPosition(this.dir), this.align], target: [this.dir, this.align] }; if (this.axis === "y") { for (const prop in attach) { attach[prop].reverse(); } offset.reverse(); placement.reverse(); } const restoreScrollPosition = storeScrollPosition(element); const elDim = dimensions$1(element); css(element, { top: -elDim.height, left: -elDim.width }); positionAt(element, target, { attach, offset, boundary, placement, viewportOffset: this.getViewportOffset(element) }); restoreScrollPosition(); }, getPositionOffset(element = this.$el) { return toPx( this.offset === false ? css(element, "--uk-position-offset") : this.offset, this.axis === "x" ? "width" : "height", element ) * (includes(["left", "top"], this.dir) ? -1 : 1) * (this.inset ? -1 : 1); }, getShiftOffset(element = this.$el) { return this.align === "center" ? 0 : toPx( css(element, "--uk-position-shift-offset"), this.axis === "y" ? "width" : "height", element ) * (includes(["left", "top"], this.align) ? 1 : -1); }, getViewportOffset(element) { return toPx(css(element, "--uk-position-viewport-offset")); } } }; function storeScrollPosition(element) { const scrollElement = scrollParent(element); const { scrollTop } = scrollElement; return () => { if (scrollTop !== scrollElement.scrollTop) { scrollElement.scrollTop = scrollTop; } }; } var Togglable = { props: { cls: Boolean, animation: "list", duration: Number, velocity: Number, origin: String, transition: String }, data: { cls: false, animation: [false], duration: 200, velocity: 0.2, origin: false, transition: "ease", clsEnter: "uk-togglable-enter", clsLeave: "uk-togglable-leave" }, computed: { hasAnimation: ({ animation }) => !!animation[0], hasTransition: ({ animation }) => ["slide", "reveal"].some((transition) => startsWith(animation[0], transition)) }, methods: { async toggleElement(targets, toggle, animate) { try { await Promise.all( toNodes(targets).map((el) => { const show = isBoolean(toggle) ? toggle : !this.isToggled(el); if (!trigger(el, `before${show ? "show" : "hide"}`, [this])) { return Promise.reject(); } const promise = (isFunction(animate) ? animate : animate === false || !this.hasAnimation ? toggleInstant : this.hasTransition ? toggleTransition : toggleAnimation)(el, show, this); const cls = show ? this.clsEnter : this.clsLeave; addClass(el, cls); trigger(el, show ? "show" : "hide", [this]); const done = () => { var _a; removeClass(el, cls); trigger(el, show ? "shown" : "hidden", [this]); if (show) { const restoreScrollPosition = storeScrollPosition(el); (_a = $$("[autofocus]", el).find(isVisible)) == null ? void 0 : _a.focus(); restoreScrollPosition(); } }; return promise ? promise.then(done, () => { removeClass(el, cls); return Promise.reject(); }) : done(); }) ); return true; } catch (e) { return false; } }, isToggled(el = this.$el) { el = toNode(el); return hasClass(el, this.clsEnter) ? true : hasClass(el, this.clsLeave) ? false : this.cls ? hasClass(el, this.cls.split(" ")[0]) : isVisible(el); }, _toggle(el, toggled) { if (!el) { return; } toggled = Boolean(toggled); let changed; if (this.cls) { changed = includes(this.cls, " ") || toggled !== hasClass(el, this.cls); changed && toggleClass(el, this.cls, includes(this.cls, " ") ? void 0 : toggled); } else { changed = toggled === el.hidden; changed && (el.hidden = !toggled); } if (changed) { trigger(el, "toggled", [toggled, this]); } } } }; function toggleInstant(el, show, { _toggle }) { Animation.cancel(el); Transition.cancel(el); return _toggle(el, show); } async function toggleTransition(el, show, { animation, duration, velocity, transition, _toggle }) { var _a; const [mode = "reveal", startProp = "top"] = ((_a = animation[0]) == null ? void 0 : _a.split("-")) || []; const dirs = [ ["left", "right"], ["top", "bottom"] ]; const dir = dirs[includes(dirs[0], startProp) ? 0 : 1]; const end = dir[1] === startProp; const props = ["width", "height"]; const dimProp = props[dirs.indexOf(dir)]; const marginProp = `margin-${dir[0]}`; const marginStartProp = `margin-${startProp}`; let currentDim = dimensions$1(el)[dimProp]; const inProgress = Transition.inProgress(el); await Transition.cancel(el); if (show) { _toggle(el, true); } const prevProps = Object.fromEntries( [ "padding", "border", "width", "height", "minWidth", "minHeight", "overflowY", "overflowX", marginProp, marginStartProp ].map((key) => [key, el.style[key]]) ); const dim = dimensions$1(el); const currentMargin = toFloat(css(el, marginProp)); const marginStart = toFloat(css(el, marginStartProp)); const endDim = dim[dimProp] + marginStart; if (!inProgress && !show) { currentDim += marginStart; } const [wrapper] = wrapInner(el, "<div>"); css(wrapper, { boxSizing: "border-box", height: dim.height, width: dim.width, ...css(el, [ "overflow", "padding", "borderTop", "borderRight", "borderBottom", "borderLeft", "borderImage", marginStartProp ]) }); css(el, { padding: 0, border: 0, minWidth: 0, minHeight: 0, [marginStartProp]: 0, width: dim.width, height: dim.height, overflow: "hidden", [dimProp]: currentDim }); const percent = currentDim / endDim; duration = (velocity * endDim + duration) * (show ? 1 - percent : percent); const endProps = { [dimProp]: show ? endDim : 0 }; if (end) { css(el, marginProp, endDim - currentDim + currentMargin); endProps[marginProp] = show ? currentMargin : endDim + currentMargin; } if (!end ^ mode === "reveal") { css(wrapper, marginProp, -endDim + currentDim); Transition.start(wrapper, { [marginProp]: show ? 0 : -endDim }, duration, transition); } try { await Transition.start(el, endProps, duration, transition); } finally { css(el, prevProps); unwrap(wrapper.firstChild); if (!show) { _toggle(el, false); } } } function toggleAnimation(el, show, cmp) { const { animation, duration, _toggle } = cmp; if (show) { _toggle(el, true); return Animation.in(el, animation[0], duration, cmp.origin); } return Animation.out(el, animation[1] || animation[0], duration, cmp.origin).then( () => _toggle(el, false) ); } const active$1 = []; var Modal = { mixins: [Class, Container, Togglable], props: { selPanel: String, selClose: String, escClose: Boolean, bgClose: Boolean, stack: Boolean, role: String }, data: { cls: "uk-open", escClose: true, bgClose: true, overlay: true, stack: false, role: "dialog" }, computed: { panel: ({ selPanel }, $el) => $(selPanel, $el), transitionElement() { return this.panel; } }, connected() { const el = this.panel || this.$el; el.role = this.role; if (this.overlay) { el.ariaModal = true; } }, beforeDisconnect() { if (includes(active$1, this)) { this.toggleElement(this.$el, false, false); } }, events: [ { name: "click", delegate: ({ selClose }) => `${selClose},a[href*="#"]`, handler(e) { const { current, defaultPrevented } = e; const { hash } = current; if (!defaultPrevented && hash && isSameSiteAnchor(current) && !this.$el.contains($(hash))) { this.hide(); } else if (matches(current, this.selClose)) { maybeDefaultPreventClick(e); this.hide(); } } }, { name: "toggle", self: true, handler(e, toggle) { if (e.defaultPrevented) { return; } e.preventDefault(); this.target = toggle == null ? void 0 : toggle.$el; if (this.isToggled() === includes(active$1, this)) { this.toggle(); } } }, { name: "beforeshow", self: true, handler(e) { if (includes(active$1, this)) { return false; } if (!this.stack && active$1.length) { Promise.all(active$1.map((modal) => modal.hide())).then(this.show); e.preventDefault(); } else { active$1.push(this); } } }, { name: "show", self: true, handler() { if (this.stack) { css(this.$el, "zIndex", toFloat(css(this.$el, "zIndex")) + active$1.length); } const handlers = [ this.overlay && preventBackgroundFocus(this), this.overlay && preventBackgroundScroll(this.$el), this.bgClose && listenForBackgroundClose$1(this), this.escClose && listenForEscClose$1(this) ]; once( this.$el, "hidden", () => handlers.forEach((handler) => handler && handler()), { self: true } ); addClass(document.documentElement, this.clsPage); setAriaExpanded(this.target, true); } }, { name: "shown", self: true, handler() { if (!isFocusable(this.$el)) { this.$el.tabIndex = -1; } if (!matches(this.$el, ":focus-within")) { this.$el.focus(); } } }, { name: "hidden", self: true, handler() { if (includes(active$1, this)) { active$1.splice(active$1.indexOf(this), 1); } css(this.$el, "zIndex", ""); const { target } = this; if (!active$1.some((modal) => modal.clsPage === this.clsPage)) { removeClass(document.documentElement, this.clsPage); queueMicrotask(() => { if (isFocusable(target)) { const restoreScrollPosition = storeScrollPosition(target); target.focus(); restoreScrollPosition(); } }); } setAriaExpanded(target, false); this.target = null; } } ], methods: { toggle() { return this.isToggled() ? this.hide() : this.show(); }, show() { if (this.container && parent(this.$el) !== this.container) { append(this.container, this.$el); return new Promise( (resolve) => requestAnimationFrame(() => this.show().then(resolve)) ); } return this.toggleElement(this.$el, true, animate$1); }, hide() { return this.toggleElement(this.$el, false, animate$1); } } }; function animate$1(el, show, { transitionElement, _toggle }) { return new Promise( (resolve, reject) => once(el, "show hide", () => { var _a; (_a = el._reject) == null ? void 0 : _a.call(el); el._reject = reject; _toggle(el, show); const off = once( transitionElement, "transitionstart", () => { once(transitionElement, "transitionend transitioncancel", resolve, { self: true }); clearTimeout(timer); }, { self: true } ); const timer = setTimeout( () => { off(); resolve(); }, toMs(css(transitionElement, "transitionDuration")) ); }) ).then(() => delete el._reject); } function toMs(time) { return time ? endsWith(time, "ms") ? toFloat(time) : toFloat(time) * 1e3 : 0; } function preventBackgroundFocus(modal) { return on(document, "focusin", (e) => { if (last(active$1) === modal && !modal.$el.contains(e.target)) { modal.$el.focus(); } }); } function listenForBackgroundClose$1(modal) { return on(document, pointerDown$1, ({ target }) => { if (last(active$1) !== modal || modal.overlay && !modal.$el.contains(target) || !modal.panel || modal.panel.contains(target)) { return; } once( document, `${pointerUp$1} ${pointerCancel} scroll`, ({ defaultPrevented, type, target: newTarget }) => { if (!defaultPrevented && type === pointerUp$1 && target === newTarget) { modal.hide(); } }, true ); }); } function listenForEscClose$1(modal) { return on(document, "keydown", (e) => { if (e.keyCode === 27 && last(active$1) === modal) { modal.hide(); } }); } function setAriaExpanded(el, toggled) { if (el == null ? void 0 : el.ariaExpanded) { el.ariaExpanded = toggled; } } var Animations$2 = { slide: { show(dir) { return [{ transform: translate(dir * -100) }, { transform: translate() }]; }, percent(current) { return translated(current); }, translate(percent, dir) { return [ { transform: translate(dir * -100 * percent) }, { transform: translate(dir * 100 * (1 - percent)) } ]; } } }; function translated(el) { return Math.abs(new DOMMatrix(css(el, "transform")).m41 / el.offsetWidth); } function translate(value = 0, unit = "%") { return value ? `translate3d(${value + unit}, 0, 0)` : ""; } function Transitioner$1(prev, next, dir, { animation, easing }) { const { percent, translate, show = noop } = animation; const props = show(dir); const { promise, resolve } = withResolvers(); return { dir, show(duration, percent2 = 0, linear) { const timing = linear ? "linear" : easing; duration -= Math.round(duration * clamp(percent2, -1, 1)); this.translate(percent2); triggerUpdate(next, "itemin", { percent: percent2, duration, timing, dir }); triggerUpdate(prev, "itemout", { percent: 1 - percent2, duration, timing, dir }); Promise.all([ Transition.start(next, props[1], duration, timing), Transition.start(prev, props[0], duration, timing) ]).then(() => { this.reset(); resolve(); }, noop); return promise; }, cancel() { return Transition.cancel([next, prev]); }, reset() { resetProps([next, prev], props[0]); }, async forward(duration, percent2 = this.percent()) { await this.cancel(); return this.show(duration, percent2, true); }, translate(percent2) { this.reset(); const props2 = translate(percent2, dir); css(next, props2[1]); css(prev, props2[0]); triggerUpdate(next, "itemtranslatein", { percent: percent2, dir }); triggerUpdate(prev, "itemtranslateout", { percent: 1 - percent2, dir }); }, percent() { return percent(prev || next, next, dir); }, getDistance() { return prev == null ? void 0 : prev.offsetWidth; } }; } function triggerUpdate(el, type, data) { trigger(el, createEvent(type, false, false, data)); } function withResolvers() { let resolve; return { promise: new Promise((res) => resolve = res), resolve }; } var I18n = { props: { i18n: Object }, data: { i18n: null }, methods: { t(key, ...params) { var _a, _b, _c; let i = 0; return ((_c = ((_a = this.i18n) == null ? void 0 : _a[key]) || ((_b = this.$options.i18n) == null ? void 0 : _b[key])) == null ? void 0 : _c.replace( /%s/g, () => params[i++] || "" )) || ""; } } }; var SliderAutoplay = { props: { autoplay: Boolean, autoplayInterval: Number, pauseOnHover: Boolean }, data: { autoplay: false, autoplayInterval: 7e3, pauseOnHover: true }, connected() { attr(this.list, "aria-live", this.autoplay ? "off" : "polite"); this.autoplay && this.startAutoplay(); }, disconnected() { this.stopAutoplay(); }, update() { attr(this.slides, "tabindex", "-1"); }, events: [ { name: "visibilitychange", el: () => document, filter: ({ autoplay }) => autoplay, handler() { if (document.hidden) { this.stopAutoplay(); } else { this.startAutoplay(); } } } ], methods: { startAutoplay() { this.stopAutoplay(); this.interval = setInterval(() => { if (!(this.stack.length || !isVisible(this.$el) || this.draggable && matches(this.$el, ":focus-within") && !matches(this.$el, ":focus") || this.pauseOnHover && matches(this.$el, ":hover"))) { this.show("next"); } }, this.autoplayInterval); }, stopAutoplay() { clearInterval(this.interval); } } }; const pointerOptions = { passive: false, capture: true }; const pointerUpOptions = { passive: true, capture: true }; const pointerDown = "touchstart mousedown"; const pointerMove = "touchmove mousemove"; const pointerUp = "touchend touchcancel mouseup click input scroll"; var SliderDrag = { props: { draggable: Boolean }, data: { draggable: true, threshold: 10 }, created() { for (const key of ["start", "move", "end"]) { const fn = this[key]; this[key] = (e) => { const pos = getEventPos(e).x * (isRtl ? -1 : 1); this.prevPos = pos === this.pos ? this.prevPos : this.pos; this.pos = pos; fn(e); }; } }, events: [ { name: pointerDown, passive: true, delegate: ({ selList }) => `${selList} > *`, handler(e) { if (!this.draggable || this.parallax || !isTouch(e) && hasSelectableText(e.target) || e.target.closest(selInput) || e.button > 0 || this.length < 2) { return; } this.start(e); } }, { name: "dragstart", handler(e) { e.preventDefault(); } }, { // iOS workaround for slider stopping if swiping fast name: pointerMove, el: ({ list }) => list, handler: noop, ...pointerOptions } ], methods: { start() { this.drag = this.pos; if (this._transitioner) { this.percent = this._transitioner.percent(); this.drag += this._transitioner.getDistance() * this.percent * this.dir; this._transitioner.cancel(); this._transitioner.translate(this.percent); this.dragging = true; this.stack = []; } else { this.prevIndex = this.index; } on(document, pointerMove, this.move, pointerOptions); on(document, pointerUp, this.end, pointerUpOptions); css(this.list, "userSelect", "none"); }, move(e) { const distance = this.pos - this.drag; if (distance === 0 || this.prevPos === this.pos || !this.dragging && Math.abs(distance) < this.threshold) { return; } e.cancelable && e.preventDefault(); this.dragging = true; this.dir = distance < 0 ? 1 : -1; let { slides, prevIndex } = this; let dis = Math.abs(distance); let nextIndex = this.getIndex(prevIndex + this.dir); let width = getDistance.call(this, prevIndex, nextIndex); while (nextIndex !== prevIndex && dis > width) { this.drag -= width * this.dir; prevIndex = nextIndex; dis -= width; nextIndex = this.getIndex(prevIndex + this.dir); width = getDistance.call(this, prevIndex, nextIndex); } this.percent = dis / width; const prev = slides[prevIndex]; const next = slides[nextIndex]; const changed = this.index !== nextIndex; const edge = prevIndex === nextIndex; let itemShown; for (const i of [this.index, this.prevIndex]) { if (!includes([nextIndex, prevIndex], i)) { trigger(slides[i], "itemhidden", [this]); if (edge) { itemShown = true; this.prevIndex = prevIndex; } } } if (this.index === prevIndex && this.prevIndex !== prevIndex || itemShown) { trigger(slides[this.index], "itemshown", [this]); } if (changed) { this.prevIndex = prevIndex; this.index = nextIndex; if (!edge) { trigger(prev, "beforeitemhide", [this]); trigger(prev, "itemhide", [this]); } trigger(next, "beforeitemshow", [this]); trigger(next, "itemshow", [this]); } this._transitioner = this._translate(Math.abs(this.percent), prev, !edge && next); }, end() { off(document, pointerMove, this.move, pointerOptions); off(document, pointerUp, this.end, pointerUpOptions); if (this.dragging) { setTimeout(on(this.list, "click", (e) => e.preventDefault(), pointerOptions)); this.dragging = null; if (this.index === this.prevIndex) { this.percent = 1 - this.percent; this.dir *= -1; this._show(false, this.index, true); this._transitioner = null; } else { const dirChange = (isRtl ? this.dir * (isRtl ? 1 : -1) : this.dir) < 0 === this.prevPos > this.pos; this.index = dirChange ? this.index : this.prevIndex; if (dirChange) { trigger(this.slides[this.prevIndex], "itemhidden", [this]); trigger(this.slides[this.index], "itemshown", [this]); this.percent = 1 - this.percent; } this.show( this.dir > 0 && !dirChange || this.dir < 0 && dirChange ? "next" : "previous", true ); } } css(this.list, { userSelect: "" }); this.drag = this.percent = null; } } }; function getDistance(prev, next) { return this._getTransitioner(prev, prev !== next && next).getDistance() || this.slides[prev].offsetWidth; } function hasSelectableText(el) { return css(el, "userSelect") !== "none" && toArray(el.childNodes).some((el2) => el2.nodeType === 3 && el2.textContent.trim()); } function initWatches(instance) { instance._watches = []; for (const watches of instance.$options.watch || []) { for (const [name, watch] of Object.entries(watches)) { registerWatch(instance, watch, name); } } instance._initial = true; } function registerWatch(instance, watch, name) { instance._watches.push({ name, ...isPlainObject(watch) ? watch : { handler: watch } }); } function runWatches(instance, values) { for (const { name, handler, immediate = true } of instance._watches) { if (instance._initial && immediate || hasOwn(values, name) && !isEqual(values[name], instance[name])) { handler.call(instance, instance[name], values[name]); } } instance._initial = false; } function initComputed(instance) { const { computed } = instance.$options; instance._computed = {}; if (computed) { for (const key in computed) { registerComputed(instance, key, computed[key]); } } } const mutationOptions = { subtree: true, childList: true }; function registerComputed(instance, key, cb) { instance._hasComputed = true; Object.defineProperty(instance, key, { enumerable: true, get() { const { _computed, $props, $el } = instance; if (!hasOwn(_computed, key)) { _computed[key] = (cb.get || cb).call(instance, $props, $el); if (cb.observe && instance._computedObserver) { const selector = cb.observe.call(instance, $props); instance._computedObserver.observe( ["~", "+", "-"].includes(selector[0]) ? $el.parentElement : $el.getRootNode(), mutationOptions ); } } return _computed[key]; }, set(value) { const { _computed } = instance; _computed[key] = cb.set ? cb.set.call(instance, value) : value; if (isUndefined(_computed[key])) { delete _computed[key]; } } }); } function initComputedUpdates(instance) { if (!instance._hasComputed) { return; } prependUpdate(instance, { read: () => runWatches(instance, resetComputed(instance)), events: ["resize", "computed"] }); instance._computedObserver = observeMutation( instance.$el, () => callUpdate(instance, "computed"), mutationOptions ); instance._disconnect.push(() => { instance._computedObserver.disconnect(); instance._computedObserver = null; resetComputed(instance); }); } function resetComputed(instance) { const values = { ...instance._computed }; instance._computed = {}; return values; } function initEvents(instance) { for (const event of instance.$options.events || []) { if (hasOwn(event, "handler")) { registerEvent(instance, event); } else { for (const key in event) { registerEvent(instance, { name: key, handler: event[key] }); } } } } function registerEvent(instance, { name, el, handler, capture, passive, delegate, filter, self }) { if (filter && !filter.call(instance, instance)) { return; } instance._disconnect.push( on( el ? el.call(instance, instance) : instance.$el, name, delegate == null ? void 0 : delegate.call(instance, instance), handler.bind(instance), { passive, capture, self } ) ); } function initObservers(instance) { for (const observer of instance.$options.observe || []) { registerObservable(instance, observer); } } function registerObservable(instance, observable) { let { observe, target = instance.$el, handler, options, filter, args } = observable; if (filter && !filter.call(instance, instance)) { return; } const key = `_observe${instance._disconnect.length}`; if (isFunction(target) && !hasOwn(instance, key)) { registerComputed(instance, key, () => { const targets2 = target.call(instance, instance); return isArray(targets2) ? toNodes(targets2) : targets2; }); } handler = isString(handler) ? instance[handler] : handler.bind(instance); if (isFunction(options)) { options = options.call(instance, instance); } const targets = hasOwn(instance, key) ? instance[key] : target; const observer = observe(targets, handler, options, args); if (isFunction(target) && isArray(instance[key])) { registerWatch( instance, { handler: updateTargets(observer, options), immediate: false }, key ); } instance._disconnect.push(() => observer.disconnect()); } function updateTargets(observer, options) { return (targets, prev) => { for (const target of prev) { if (!includes(targets, target)) { if (observer.unobserve) { observer.unobserve(target); } else if (observer.observe) { observer.disconnect(); } } } for (const target of targets) { if (!includes(prev, target) || !observer.unobserve) { observer.observe(target, options); } } }; } function initProps(instance) { const { $options, $props } = instance; const props = getProps($options); assign($props, props); const { computed, methods } = $options; for (let key in $props) { if (key in props && (!computed || !hasOwn(computed, key)) && (!methods || !hasOwn(methods, key))) { instance[key] = $props[key]; } } } function getProps(opts) { const data$1 = {}; const { args = [], props = {}, el, id } = opts; if (!props) { return data$1; } for (const key in props) { const prop = hyphenate(key); let value = data(el, prop); if (isUndefined(value)) { continue; } value = props[key] === Boolean && value === "" ? true : coerce$1(props[key], value); if (prop === "target" && startsWith(value, "_")) { continue; } data$1[key] = value; } const options = parseOptions(data(el, id), args); for (const key in options) { const prop = camelize(key); if (!isUndefined(props[prop])) { data$1[prop] = coerce$1(props[prop], options[key]); } } return data$1; } const getAttributes = memoize((id, props) => { const attributes = Object.keys(props); const filter = attributes.concat(id).map((key) => [hyphenate(key), `data-${hyphenate(key)}`]).flat(); return { attributes, filter }; }); function initPropsObserver(instance) { const { $options, $props } = instance; const { id, props, el } = $options; if (!props) { return; } const { attributes, filter } = getAttributes(id, props); const observer = new MutationObserver((records) => { const data = getProps($options); if (records.some(({ attributeName }) => { const prop = attributeName.replace("data-", ""); return (prop === id ? attributes : [camelize(prop), camelize(attributeName)]).some( (prop2) => !isUndefined(data[prop2]) && data[prop2] !== $props[prop2] ); })) { instance.$reset(); } }); observer.observe(el, { attributes: true, attributeFilter: filter }); instance._disconnect.push(() => observer.disconnect()); } function callHook(instance, hook) { var _a; (_a = instance.$options[hook]) == null ? void 0 : _a.forEach((handler) => handler.call(instance)); } function callConnected(instance) { if (instance._connected) { return; } initProps(instance); callHook(instance, "beforeConnect"); instance._connected = true; instance._disconnect = []; initEvents(instance); initUpdates(instance); initWatches(instance); initObservers(instance); initPropsObserver(instance); initComputedUpdates(instance); callHook(instance, "connected"); callUpdate(instance); } function callDisconnected(instance) { if (!instance._connected) { return; } callHook(instance, "beforeDisconnect"); instance._disconnect.forEach((off) => off()); instance._disconnect = null; callHook(instance, "disconnected"); instance._connected = false; } let uid = 0; function init$1(instance, options = {}) { options.data = normalizeData(options, instance.constructor.options); instance.$options = mergeOptions(instance.constructor.options, options, instance); instance.$props = {}; instance._uid = uid++; initData(instance); initMethods(instance); initComputed(instance); callHook(instance, "created"); if (options.el) { instance.$mount(options.el); } } function initData(instance) { const { data = {} } = instance.$options; for (const key in data) { instance.$props[key] = instance[key] = data[key]; } } function initMethods(instance) { const { methods } = instance.$options; if (methods) { for (const key in methods) { instance[key] = methods[key].bind(instance); } } } function normalizeData({ data = {} }, { args = [], props = {} }) { if (isArray(data)) { data = data.slice(0, args.length).reduce((data2, value, index) => { if (isPlainObject(value)) { assign(data2, value); } else { data2[args[index]] = value; } return data2; }, {}); } for (const key in data) { if (isUndefined(data[key])) { delete data[key]; } else if (props[key]) { data[key] = coerce$1(props[key], data[key]); } } return data; } const App = function(options) { init$1(this, options); }; App.util = util; App.options = {}; App.version = "3.23.13"; const PREFIX = "uk-"; const DATA = "__uikit__"; const components$2 = {}; function component(name, options) { var _a, _b; const id = PREFIX + hyphenate(name); if (!options) { if (!components$2[id].options) { components$2[id] = App.extend(components$2[id]); } return components$2[id]; } name = camelize(name); App[name] = (element, data) => createComponent(name, element, data); const opt = (_a = options.options) != null ? _a : { ...options }; opt.id = id; opt.name = name; (_b = opt.install) == null ? void 0 : _b.call(opt, App, opt, name); if (App._initialized && !opt.functional) { requestAnimationFrame(() => createComponent(name, `[${id}],[data-${id}]`)); } return components$2[id] = opt; } function createComponent(name, element, data, ...args) { const Component = component(name); return Component.options.functional ? new Component({ data: isPlainObject(element) ? element : [element, data, ...args] }) : element ? $$(element).map(init)[0] : init(); function init(element2) { const instance = getComponent(element2, name); if (instance) { if (data) { instance.$destroy(); } else { return instance; } } return new Component({ el: element2, data }); } } function getComponents(element) { return (element == null ? void 0 : element[DATA]) || {}; } function getComponent(element, name) { return getComponents(element)[name]; } function attachToElement(element, instance) { if (!element[DATA]) { element[DATA] = {}; } element[DATA][instance.$options.name] = instance; } function detachFromElement(element, instance) { var _a; (_a = element[DATA]) == null ? true : delete _a[instance.$options.name]; if (isEmpty(element[DATA])) { delete element[DATA]; } } function globalApi(App) { App.component = component; App.getComponents = getComponents; App.getComponent = getComponent; App.update = update; App.use = function(plugin) { if (plugin.installed) { return; } plugin.call(null, this); plugin.installed = true; return this; }; App.mixin = function(mixin, component2) { component2 = (isString(component2) ? this.component(component2) : component2) || this; component2.options = mergeOptions(component2.options, mixin); }; App.extend = function(options) { options || (options = {}); const Super = this; const Sub = function UIkitComponent(options2) { init$1(this, options2); }; Sub.prototype = Object.create(Super.prototype); Sub.prototype.constructor = Sub; Sub.options = mergeOptions(Super.options, options); Sub.super = Super; Sub.extend = Super.extend; return Sub; }; let container; Object.defineProperty(App, "container", { get() { return container || document.body; }, set(element) { container = $(element); } }); } function update(element, e) { element = element ? toNode(element) : document.body; for (const parentEl of parents(element).reverse()) { updateElement(parentEl, e); } apply(element, (element2) => updateElement(element2, e)); } function updateElement(element, e) { const components = getComponents(element); for (const name in components) { callUpdate(components[name], e); } } function instanceApi(App) { App.prototype.$mount = function(el) { const instance = this; attachToElement(el, instance); instance.$options.el = el; if (el.isConnected) { callConnected(instance); } }; App.prototype.$destroy = function(removeEl = false) { const instance = this; const { el } = instance.$options; if (el) { callDisconnected(instance); } callHook(instance, "destroy"); detachFromElement(el, instance); if (removeEl) { remove$1(instance.$el); } }; App.prototype.$create = createComponent; App.prototype.$emit = function(e) { callUpdate(this, e); }; App.prototype.$update = function(element = this.$el, e) { update(element, e); }; App.prototype.$reset = function() { callDisconnected(this); callConnected(this); }; App.prototype.$getComponent = getComponent; Object.defineProperties(App.prototype, { $el: { get() { return this.$options.el; } }, $container: Object.getOwnPropertyDescriptor(App, "container") }); } let id = 1; function generateId(instance, el = null) { return (el == null ? void 0 : el.id) || `${instance.$options.id}-${id++}`; } var SliderNav = { i18n: { next: "Next slide", previous: "Previous slide", slideX: "Slide %s", slideLabel: "%s of %s", role: "String" }, data: { selNav: false, role: "region" }, computed: { nav: ({ selNav }, $el) => $(selNav, $el), navChildren() { return children(this.nav); }, selNavItem: ({ attrItem }) => `[${attrItem}],[data-${attrItem}]`, navItems(_, $el) { return $$(this.selNavItem, $el); } }, watch: { nav(nav, prev) { attr(nav, "role", "tablist"); this.padNavitems(); if (prev) { this.$emit(); } }, list(list) { if (isTag(list, "ul")) { attr(list, "role", "presentation"); } }, navChildren(children2) { attr(children2, "role", "presentation"); this.padNavitems(); this.updateNav(); }, navItems(items) { for (const el of items) { const cmd = data(el, this.attrItem); const button = $("a,button", el) || el; let ariaLabel; let ariaControls = null; if (isNumeric(cmd)) { const item = toNumber(cmd); const slide = this.slides[item]; if (slide) { if (!slide.id) { slide.id = generateId(this, slide); } ariaControls = slide.id; } ariaLabel = this.t("slideX", toFloat(cmd) + 1); button.role = "tab"; } else { if (this.list) { if (!this.list.id) { this.list.id = generateId(this, this.list); } ariaControls = this.list.id; } ariaLabel = this.t(cmd); } button.ariaControls = ariaControls; button.ariaLabel = button.ariaLabel || ariaLabel; } }, slides(slides) { slides.forEach( (slide, i) => attr(slide, { role: this.nav ? "tabpanel" : "group", "aria-label": this.t("slideLabel", i + 1, this.length), "aria-roledescription": this.nav ? null : "slide" }) ); this.padNavitems(); } }, connected() { this.$el.role = this.role; this.$el.ariaRoleDescription = "carousel"; }, update: [ { write() { this.navItems.concat(this.nav).forEach((el) => el && (el.hidden = !this.maxIndex)); this.updateNav(); }, events: ["resize"] } ], events: [ { name: "click keydown", delegate: ({ selNavItem }) => selNavItem, filter: ({ parallax }) => !parallax, handler(e) { if (e.target.closest("a,button") && (e.type === "click" || e.keyCode === keyMap.SPACE)) { maybeDefaultPreventClick(e); this.show(data(e.current, this.attrItem)); } } }, { name: "itemshow", handler() { this.updateNav(); } }, { name: "keydown", delegate: ({ selNavItem }) => selNavItem, filter: ({ parallax }) => !parallax, handler(e) { const { current, keyCode } = e; const cmd = data(current, this.attrItem); if (!isNumeric(cmd)) { return; } let i = keyCode === keyMap.HOME ? 0 : keyCode === keyMap.END ? "last" : keyCode === keyMap.LEFT ? "previous" : keyCode === keyMap.RIGHT ? "next" : -1; if (~i) { e.preventDefault(); this.show(i); } } } ], methods: { updateNav() { const index = this.getValidIndex(); for (const el of this.navItems) { const cmd = data(el, this.attrItem); const button = $("a,button", el) || el; if (isNumeric(cmd)) { const item = toNumber(cmd); const active = item === index; toggleClass(el, this.clsActive, active); toggleClass(button, "uk-disabled", !!this.parallax); button.ariaSelected = active; button.tabIndex = active && !this.parallax ? null : -1; if (active && button && matches(parent(el), ":focus-within")) { button.focus(); } } else { toggleClass( el, "uk-invisible", this.finite && (cmd === "previous" && index === 0 || cmd === "next" && index >= this.maxIndex) ); } } }, padNavitems() { if (!this.nav) { return; } const children2 = []; for (let i = 0; i < this.length; i++) { const attr2 = `${this.attrItem}="${i}"`; children2[i] = this.navChildren.findLast((el) => el.matches(`[${attr2}]`)) || $(`<li ${attr2}><a href></a></li>`); } if (!isEqual(children2, this.navChildren)) { html(this.nav, children2); } } } }; const easeOutQuad = "cubic-bezier(0.25, 0.46, 0.45, 0.94)"; const easeOutQuart = "cubic-bezier(0.165, 0.84, 0.44, 1)"; var Slider = { mixins: [SliderAutoplay, SliderDrag, SliderNav, I18n], props: { clsActivated: String, easing: String, index: Number, finite: Boolean, velocity: Number }, data: () => ({ easing: "ease", finite: false, velocity: 1, index: 0, prevIndex: -1, stack: [], percent: 0, clsActive: "uk-active", clsActivated: "", clsEnter: "uk-slide-enter", clsLeave: "uk-slide-leave", clsSlideActive: "uk-slide-active", Transitioner: false, transitionOptions: {} }), connected() { this.prevIndex = -1; this.index = this.getValidIndex(this.$props.index); this.stack = []; }, disconnected() { removeClass(this.slides, this.clsActive); }, computed: { duration: ({ velocity }, $el) => speedUp($el.offsetWidth / velocity), list: ({ selList }, $el) => $(selList, $el), maxIndex() { return this.length - 1; }, slides() { return children(this.list); }, length() { return this.slides.length; } }, watch: { slides(slides, prev) { if (prev) { this.$emit(); } } }, events: { itemshow({ target }) { addClass(target, this.clsEnter, this.clsSlideActive); }, itemshown({ target }) { removeClass(target, this.clsEnter); }, itemhide({ target }) { addClass(target, this.clsLeave); }, itemhidden({ target }) { removeClass(target, this.clsLeave, this.clsSlideActive); } }, methods: { async show(index, force = false) { var _a; if (this.dragging || !this.length || this.parallax) { return; } const { stack } = this; const queueIndex = force ? 0 : stack.length; const reset = () => { stack.splice(queueIndex, 1); if (stack.length) { this.show(stack.shift(), true); } }; stack[force ? "unshift" : "push"](index); if (!force && stack.length > 1) { if (stack.length === 2) { (_a = this._transitioner) == null ? void 0 : _a.forward(Math.min(this.duration, 200)); } return; } const prevIndex = this.getIndex(this.index); const prev = hasClass(this.slides, this.clsActive) && this.slides[prevIndex]; const nextIndex = this.getIndex(index, this.index); const next = this.slides[nextIndex]; if (prev === next) { reset(); return; } this.dir = getDirection(index, prevIndex); this.prevIndex = prevIndex; this.index = nextIndex; if (prev && !trigger(prev, "beforeitemhide", [this]) || !trigger(next, "beforeitemshow", [this, prev])) { this.index = this.prevIndex; reset(); return; } prev && trigger(prev, "itemhide", [this]); trigger(next, "itemshow", [this]); await this._show(prev, next, force); prev && trigger(prev, "itemhidden", [this]); trigger(next, "itemshown", [this]); stack.shift(); this._transitioner = null; if (stack.length) { requestAnimationFrame(() => stack.length && this.show(stack.shift(), true)); } }, getIndex(index = this.index, prev = this.index) { return clamp( getIndex(index, this.slides, prev, this.finite), 0, Math.max(0, this.maxIndex) ); }, getValidIndex(index = this.index, prevIndex = this.prevIndex) { return this.getIndex(index, prevIndex); }, async _show(prev, next, force) { this._transitioner = this._getTransitioner(prev, next, this.dir, { easing: force ? next.offsetWidth < 600 ? easeOutQuad : easeOutQuart : this.easing, ...this.transitionOptions }); if (!force && !prev) { this._translate(1); return; } const { length } = this.stack; return this._transitioner[length > 1 ? "forward" : "show"]( length > 1 ? Math.min(this.duration, 75 + 75 / (length - 1)) : this.duration, this.percent ); }, _translate(percent, prev = this.prevIndex, next = this.index) { const transitioner = this._getTransitioner(prev === next ? false : prev, next); transitioner.translate(percent); return transitioner; }, _getTransitioner(prev = this.prevIndex, next = this.index, dir = this.dir || 1, options = this.transitionOptions) { return new this.Transitioner( isNumber(prev) ? this.slides[prev] : prev, isNumber(next) ? this.slides[next] : next, dir * (isRtl ? -1 : 1), options ); } } }; function getDirection(index, prevIndex) { return index === "next" ? 1 : index === "previous" ? -1 : index < prevIndex ? -1 : 1; } function speedUp(x) { return 0.5 * x + 300; } var Slideshow = { mixins: [Slider], props: { animation: String }, data: { animation: "slide", clsActivated: "uk-transition-active", Animations: Animations$2, Transitioner: Transitioner$1 }, computed: { animation({ animation, Animations: Animations2 }) { return { ...Animations2[animation] || Animations2.slide, name: animation }; }, transitionOptions() { return { animation: this.animation }; } }, observe: resize(), events: { itemshow({ target }) { addClass(target, this.clsActive); }, itemshown({ target }) { addClass(target, this.clsActivated); }, itemhidden({ target }) { removeClass(target, this.clsActive, this.clsActivated); } } }; var Animations$1 = { ...Animations$2, fade: { show() { return [{ opacity: 0, zIndex: 0 }, { zIndex: -1 }]; }, percent(current) { return 1 - css(current, "opacity"); }, translate(percent) { return [{ opacity: 1 - percent, zIndex: 0 }, { zIndex: -1 }]; } }, scale: { show() { return [{ opacity: 0, transform: scale3d(1 + 0.5), zIndex: 0 }, { zIndex: -1 }]; }, percent(current) { return 1 - css(current, "opacity"); }, translate(percent) { return [ { opacity: 1 - percent, transform: scale3d(1 + 0.5 * percent), zIndex: 0 }, { zIndex: -1 } ]; } }, pull: { show(dir) { return dir < 0 ? [ { transform: translate(30), zIndex: -1 }, { transform: translate(), zIndex: 0 } ] : [ { transform: translate(-100), zIndex: 0 }, { transform: translate(), zIndex: -1 } ]; }, percent(current, next, dir) { return dir < 0 ? 1 - translated(next) : translated(current); }, translate(percent, dir) { return dir < 0 ? [ { transform: translate(30 * percent), zIndex: -1 }, { transform: translate(-100 * (1 - percent)), zIndex: 0 } ] : [ { transform: translate(-percent * 100), zIndex: 0 }, { transform: translate(30 * (1 - percent)), zIndex: -1 } ]; } }, push: { show(dir) { return dir < 0 ? [ { transform: translate(100), zIndex: 0 }, { transform: translate(), zIndex: -1 } ] : [ { transform: translate(-30), zIndex: -1 }, { transform: translate(), zIndex: 0 } ]; }, percent(current, next, dir) { return dir > 0 ? 1 - translated(next) : translated(current); }, translate(percent, dir) { return dir < 0 ? [ { transform: translate(percent * 100), zIndex: 0 }, { transform: translate(-30 * (1 - percent)), zIndex: -1 } ] : [ { transform: translate(-30 * percent), zIndex: -1 }, { transform: translate(100 * (1 - percent)), zIndex: 0 } ]; } } }; function scale3d(value) { return `scale3d(${value}, ${value}, 1)`; } var Animations = { ...Animations$2, fade: { show() { return [{ opacity: 0 }, { opacity: 1 }]; }, percent(current) { return 1 - css(current, "opacity"); }, translate(percent) { return [{ opacity: 1 - percent }, { opacity: percent }]; } }, scale: { show() { return [ { opacity: 0, transform: scale3d(1 - 0.2) }, { opacity: 1, transform: scale3d(1) } ]; }, percent(current) { return 1 - css(current, "opacity"); }, translate(percent) { return [ { opacity: 1 - percent, transform: scale3d(1 - 0.2 * percent) }, { opacity: percent, transform: scale3d(1 - 0.2 + 0.2 * percent) } ]; } } }; var LightboxPanel = { i18n: { counter: "%s / %s" }, mixins: [Modal, Slideshow], functional: true, props: { counter: Boolean, preload: Number, nav: Boolean, slidenav: Boolean, delayControls: Number, videoAutoplay: Boolean, template: String }, data: () => ({ counter: false, preload: 1, nav: false, slidenav: true, delayControls: 3e3, videoAutoplay: false, items: [], cls: "uk-open", clsPage: "uk-lightbox-page", clsFit: "uk-lightbox-items-fit", clsZoom: "uk-lightbox-zoom", attrItem: "uk-lightbox-item", selList: ".uk-lightbox-items", selClose: ".uk-close-large", selNav: ".uk-lightbox-thumbnav, .uk-lightbox-dotnav", selCaption: ".uk-lightbox-caption", selCounter: ".uk-lightbox-counter", pauseOnHover: false, velocity: 2, Animations, template: `<div class="uk-lightbox uk-overflow-hidden"> <div class="uk-lightbox-items"></div> <div class="uk-position-top-right uk-position-small uk-transition-fade" uk-inverse> <button class="uk-lightbox-close uk-close-large" type="button" uk-close></button> </div> <div class="uk-lightbox-slidenav uk-position-center-left uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-previous uk-lightbox-item="previous"></a> </div> <div class="uk-lightbox-slidenav uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-next uk-lightbox-item="next"></a> </div> <div class="uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse style="max-height: 90vh; overflow: auto;"> <ul class="uk-lightbox-thumbnav uk-lightbox-thumbnav-vertical uk-thumbnav uk-thumbnav-vertical"></ul> <ul class="uk-lightbox-dotnav uk-dotnav uk-dotnav-vertical"></ul> </div> <div class="uk-lightbox-counter uk-text-large uk-position-top-left uk-position-small uk-transition-fade" uk-inverse></div> <div class="uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>` }), created() { let $el = $(this.template); if (isTag($el, "template")) { $el = fragment(html($el)); } const list = $(this.selList, $el); const navType = this.$props.nav; remove$1($$(this.selNav, $el).filter((el) => !matches(el, `.uk-${navType}`))); for (const [i, item] of this.items.entries()) { append(list, "<div>"); if (navType === "thumbnav") { wrapAll( toThumbnavItem(item, this.videoAutoplay), append($(this.selNav, $el), `<li uk-lightbox-item="${i}"><a href></a></li>`) ); } } if (!this.slidenav) { remove$1($$(".uk-lightbox-slidenav", $el)); } if (!this.counter) { remove$1($(this.selCounter, $el)); } addClass(list, this.clsFit); const close = $("[uk-close]", $el); const closeLabel = this.t("close"); if (close && closeLabel) { close.dataset.i18n = JSON.stringify({ label: closeLabel }); } this.$mount(append(this.container, $el)); }, events: [ { name: "click", self: true, filter: ({ bgClose }) => bgClose, delegate: ({ selList }) => `${selList} > *`, handler(e) { if (!e.defaultPrevented) { this.hide(); } } }, { name: "click", self: true, delegate: ({ clsZoom }) => `.${clsZoom}`, handler(e) { if (!e.defaultPrevented) { toggleClass(this.list, this.clsFit); } } }, { name: `${pointerMove$1} ${pointerDown$1} keydown`, filter: ({ delayControls }) => delayControls, handler() { this.showControls(); } }, { name: "shown", self: true, handler() { this.showControls(); } }, { name: "hide", self: true, handler() { this.hideControls(); removeClass(this.slides, this.clsActive); Transition.stop(this.slides); } }, { name: "hidden", self: true, handler() { this.$destroy(true); } }, { name: "keyup", el: () => document, handler({ keyCode }) { if (!this.isToggled() || !this.draggable) { return; } let i = -1; if (keyCode === keyMap.LEFT) { i = "previous"; } else if (keyCode === keyMap.RIGHT) { i = "next"; } else if (keyCode === keyMap.HOME) { i = 0; } else if (keyCode === keyMap.END) { i = "last"; } if (~i) { this.show(i); } } }, { name: "beforeitemshow", handler(e) { html($(this.selCaption, this.$el), this.getItem().caption || ""); html( $(this.selCounter, this.$el), this.t("counter", this.index + 1, this.slides.length) ); for (let j = -this.preload; j <= this.preload; j++) { this.loadItem(this.index + j); } if (this.isToggled()) { return; } this.draggable = false; e.preventDefault(); this.toggleElement(this.$el, true, false); this.animation = Animations.scale; removeClass(e.target, this.clsActive); this.stack.splice(1, 0, this.index); } }, { name: "itemshown", handler() { this.draggable = this.$props.draggable; } }, { name: "itemload", async handler(_, item) { const { source: src, type, attrs = {} } = item; this.setItem(item, "<span uk-spinner uk-inverse></span>"); if (!src) { return; } let matches2; const iframeAttrs = { allowfullscreen: "", style: "max-width: 100%; box-sizing: border-box;", "uk-responsive": "", "uk-video": `${Boolean(this.videoAutoplay)}` }; if (type === "image" || isImage(src)) { const img = createEl("img"); wrapInPicture(img, item.sources); attr(img, { src, ...pick(item, ["alt", "srcset", "sizes"]), ...attrs }); on(img, "load", () => this.setItem(item, parent(img) || img)); on(img, "error", () => this.setError(item)); } else if (type === "video" || isVideo(src)) { const inline = this.videoAutoplay === "inline"; const video = createEl("video", { src, playsinline: "", controls: inline ? null : "", loop: inline ? "" : null, poster: this.videoAutoplay ? null : item.poster, "uk-video": inline ? "automute: true" : Boolean(this.videoAutoplay), ...attrs }); on(video, "loadedmetadata", () => this.setItem(item, video)); on(video, "error", () => this.setError(item)); } else if (type === "iframe" || src.match(/\.(html|php)($|\?)/i)) { this.setItem( item, createEl("iframe", { src, allowfullscreen: "", class: "uk-lightbox-iframe", ...attrs }) ); } else if (matches2 = src.match( /\/\/(?:.*?youtube(-nocookie)?\..*?(?:[?&]v=|\/shorts\/)|youtu\.be\/)([\w-]{11})[&?]?(.*)?/ )) { this.setItem( item, createEl("iframe", { src: `https://www.youtube${matches2[1] || ""}.com/embed/${matches2[2]}${matches2[3] ? `?${matches2[3]}` : ""}`, width: 1920, height: 1080, ...iframeAttrs, ...attrs }) ); } else if (matches2 = src.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/)) { try { const { height, width } = await (await fetch( `https://vimeo.com/api/oembed.json?maxwidth=1920&url=${encodeURI( src )}`, { credentials: "omit" } )).json(); this.setItem( item, createEl("iframe", { src: `https://player.vimeo.com/video/${matches2[1]}${matches2[2] ? `?${matches2[2]}` : ""}`, width, height, ...iframeAttrs, ...attrs }) ); } catch (e) { this.setError(item); } } } }, { name: "itemloaded", handler() { this.$emit("resize"); } } ], update: { read() { for (const media of $$(`${this.selList} :not([controls]):is(img,video)`, this.$el)) { toggleClass( media, this.clsZoom, (media.naturalHeight || media.videoHeight) - this.$el.offsetHeight > Math.max( 0, (media.naturalWidth || media.videoWidth) - this.$el.offsetWidth ) ); } }, events: ["resize"] }, methods: { loadItem(index = this.index) { const item = this.getItem(index); if (!this.getSlide(item).childElementCount) { trigger(this.$el, "itemload", [item]); } }, getItem(index = this.index) { return this.items[getIndex(index, this.slides)]; }, setItem(item, content) { trigger(this.$el, "itemloaded", [this, html(this.getSlide(item), content)]); }, getSlide(item) { return this.slides[this.items.indexOf(item)]; }, setError(item) { this.setItem(item, '<span uk-icon="icon: bolt; ratio: 2" uk-inverse></span>'); }, showControls() { clearTimeout(this.controlsTimer); this.controlsTimer = this.delayControls && setTimeout(this.hideControls, this.delayControls); addClass(this.$el, "uk-active", "uk-transition-active"); }, hideControls() { removeClass(this.$el, "uk-active", "uk-transition-active"); } } }; function createEl(tag, attrs) { const el = fragment(`<${tag}>`); attr(el, attrs); return el; } function toThumbnavItem(item, videoAutoplay) { const el = item.poster || item.thumb && (item.type === "image" || isImage(item.thumb)) ? createEl("img", { src: item.poster || item.thumb, alt: "" }) : item.thumb && (item.type === "video" || isVideo(item.thumb)) ? createEl("video", { src: item.thumb, loop: "", playsinline: "", "uk-video": `autoplay: ${Boolean(videoAutoplay)}; automute: true` }) : createEl("canvas"); if (item.thumbRatio) { el.style.aspectRatio = item.thumbRatio; } return el; } function isImage(src) { return src == null ? void 0 : src.match(/\.(avif|jpe?g|jfif|a?png|gif|svg|webp)($|\?)/i); } function isVideo(src) { return src == null ? void 0 : src.match(/\.(mp4|webm|ogv)($|\?)/i); } const selDisabled$1 = ".uk-disabled *, .uk-disabled, [disabled]"; var lightbox = { install: install$3, props: { toggle: String }, data: { toggle: "a" }, computed: { toggles: ({ toggle }, $el) => $$(toggle, $el) }, watch: { toggles(toggles) { this.hide(); for (const toggle of toggles) { if (isTag(toggle, "a")) { toggle.role = "button"; } } } }, disconnected() { this.hide(); }, events: { name: "click", delegate: ({ toggle }) => toggle, handler(e) { if (!e.defaultPrevented) { e.preventDefault(); if (!matches(e.current, selDisabled$1)) { this.show(e.current); } } } }, methods: { show(index) { let items = this.toggles.map(toItem); if (this.nav === "thumbnav") { ensureThumb.call(this, this.toggles, items); } items = uniqueBy(items, "source"); if (isElement(index)) { const { source } = toItem(index); index = findIndex(items, ({ source: src }) => source === src); } this.panel = this.panel || this.$create("lightboxPanel", { ...this.$props, items }); on(this.panel.$el, "hidden", () => this.panel = null); return this.panel.show(index); }, hide() { var _a; return (_a = this.panel) == null ? void 0 : _a.hide(); } } }; function install$3(UIkit, Lightbox) { if (!UIkit.lightboxPanel) { UIkit.component("lightboxPanel", LightboxPanel); } assign(Lightbox.props, UIkit.component("lightboxPanel").options.props); } function ensureThumb(toggles, items) { for (const [i, toggle] of Object.entries(toggles)) { if (items[i].thumb) { continue; } const parent = parents(toggle).reverse().concat(toggle).find( (parent2) => this.$el.contains(parent2) && (parent2 === toggle || $$(this.toggle, parent2).length === 1) ); if (!parent) { continue; } const media = $("img,video", parent); if (media) { items[i].thumb = media.currentSrc || media.poster || media.src; items[i].thumbRatio = (media.naturalWidth || media.videoWidth) / (media.naturalHeight || media.videoHeight); } } } function toItem(el) { const item = {}; for (const attribute of el.getAttributeNames()) { const key = attribute.replace(/^data-/, ""); item[key === "href" ? "source" : key] = el.getAttribute(attribute); } item.attrs = parseOptions(item.attrs); return item; } var notification = { mixins: [Container], functional: true, args: ["message", "status"], data: { message: "", status: "", timeout: 5e3, group: "", pos: "top-center", clsContainer: "uk-notification", clsClose: "uk-notification-close", clsMsg: "uk-notification-message" }, install: install$2, computed: { marginProp: ({ pos }) => `margin-${pos.match(/[a-z]+(?=-)/)[0]}`, startProps() { return { opacity: 0, [this.marginProp]: -this.$el.offsetHeight }; } }, created() { const posClass = `${this.clsContainer}-${this.pos}`; const containerAttr = `data-${this.clsContainer}-container`; const container = $(`.${posClass}[${containerAttr}]`, this.container) || append( this.container, `<div class="${this.clsContainer} ${posClass}" ${containerAttr}></div>` ); this.$mount( append( container, `<div class="${this.clsMsg}${this.status ? ` ${this.clsMsg}-${this.status}` : ""}" role="alert"> <a href class="${this.clsClose}" data-uk-close></a> <div>${this.message}</div> </div>` ) ); }, async connected() { const margin = toFloat(css(this.$el, this.marginProp)); await Transition.start(css(this.$el, this.startProps), { opacity: 1, [this.marginProp]: margin }); if (this.timeout) { this.timer = setTimeout(this.close, this.timeout); } }, events: { click(e) { maybeDefaultPreventClick(e); this.close(); }, [pointerEnter]() { if (this.timer) { clearTimeout(this.timer); } }, [pointerLeave]() { if (this.timeout) { this.timer = setTimeout(this.close, this.timeout); } } }, methods: { async close(immediate) { const removeFn = (el) => { const container = parent(el); trigger(el, "close", [this]); remove$1(el); if (!(container == null ? void 0 : container.hasChildNodes())) { remove$1(container); } }; if (this.timer) { clearTimeout(this.timer); } if (!immediate) { await Transition.start(this.$el, this.startProps); } removeFn(this.$el); } } }; function install$2(UIkit) { UIkit.notification.closeAll = function(group, immediate) { apply(document.body, (el) => { const notification = UIkit.getComponent(el, "notification"); if (notification && (!group || group === notification.group)) { notification.close(immediate); } }); }; } var Media = { props: { media: Boolean }, data: { media: false }, connected() { const media = toMedia(this.media, this.$el); this.matchMedia = true; if (media) { this.mediaObj = window.matchMedia(media); const handler = () => { this.matchMedia = this.mediaObj.matches; trigger(this.$el, createEvent("mediachange", false, true, [this.mediaObj])); }; this.offMediaObj = on(this.mediaObj, "change", () => { handler(); this.$emit("resize"); }); handler(); } }, disconnected() { var _a; (_a = this.offMediaObj) == null ? void 0 : _a.call(this); } }; function toMedia(value, element) { if (isString(value)) { if (startsWith(value, "@")) { value = toFloat(css(element, `--uk-breakpoint-${value.slice(1)}`)); } else if (isNaN(value)) { return value; } } return value && isNumeric(value) ? `(min-width: ${value}px)` : ""; } function getMaxPathLength(el) { return isVisible(el) ? Math.ceil( Math.max(0, ...$$("[stroke]", el).map((stroke) => { var _a; return ((_a = stroke.getTotalLength) == null ? void 0 : _a.call(stroke)) || 0; })) ) : 0; } const props = { x: transformFn, y: transformFn, rotate: transformFn, scale: transformFn, color: colorFn, backgroundColor: colorFn, borderColor: colorFn, blur: filterFn, hue: filterFn, fopacity: filterFn, grayscale: filterFn, invert: filterFn, saturate: filterFn, sepia: filterFn, opacity: cssPropFn, stroke: strokeFn, bgx: backgroundFn, bgy: backgroundFn }; const { keys } = Object; var Parallax = { mixins: [Media], props: fillObject(keys(props), "list"), data: fillObject(keys(props), void 0), computed: { props(properties, $el) { const stops = {}; for (const prop in properties) { if (prop in props && !isUndefined(properties[prop])) { stops[prop] = properties[prop].slice(); } } const result = {}; for (const prop in stops) { result[prop] = props[prop](prop, $el, stops[prop], stops); } return result; } }, events: { load() { this.$emit(); } }, methods: { reset() { resetProps(this.$el, this.getCss(0)); }, getCss(percent) { const css2 = {}; for (const prop in this.props) { this.props[prop](css2, clamp(percent)); } css2.willChange = Object.keys(css2).map(propName).join(","); return css2; } } }; function transformFn(prop, el, stops) { let unit = getUnit(stops) || { x: "px", y: "px", rotate: "deg" }[prop] || ""; let transformFn2; if (prop === "x" || prop === "y") { prop = `translate${ucfirst(prop)}`; transformFn2 = (stop) => toFloat(toFloat(stop).toFixed(unit === "px" ? 0 : 6)); } else if (prop === "scale") { unit = ""; transformFn2 = (stop) => { var _a; return getUnit([stop]) ? toPx(stop, "width", el, true) / el[`offset${((_a = stop.endsWith) == null ? void 0 : _a.call(stop, "vh")) ? "Height" : "Width"}`] : toFloat(stop); }; } if (stops.length === 1) { stops.unshift(prop === "scale" ? 1 : 0); } stops = parseStops(stops, transformFn2); return (css2, percent) => { css2.transform = `${css2.transform || ""} ${prop}(${getValue(stops, percent)}${unit})`; }; } function colorFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops, (stop) => parseColor(el, stop)); return (css2, percent) => { const [start, end, p] = getStop(stops, percent); const value = start.map((value2, i) => { value2 += p * (end[i] - value2); return i === 3 ? toFloat(value2) : parseInt(value2, 10); }).join(","); css2[prop] = `rgba(${value})`; }; } function parseColor(el, color) { return getCssValue(el, "color", color).split(/[(),]/g).slice(1, -1).concat(1).slice(0, 4).map(toFloat); } function filterFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops) || { blur: "px", hue: "deg" }[prop] || "%"; prop = { fopacity: "opacity", hue: "hue-rotate" }[prop] || prop; stops = parseStops(stops); return (css2, percent) => { const value = getValue(stops, percent); css2.filter = `${css2.filter || ""} ${prop}(${value + unit})`; }; } function cssPropFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops); return (css2, percent) => { css2[prop] = getValue(stops, percent); }; } function strokeFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops); const length = getMaxPathLength(el); stops = parseStops(stops.reverse(), (stop) => { stop = toFloat(stop); return unit === "%" ? stop * length / 100 : stop; }); if (!stops.some(([value]) => value)) { return noop; } css(el, "strokeDasharray", length); return (css2, percent) => { css2.strokeDashoffset = getValue(stops, percent); }; } function backgroundFn(prop, el, stops, props2) { if (stops.length === 1) { stops.unshift(0); } const attr = prop === "bgy" ? "height" : "width"; props2[prop] = parseStops(stops, (stop) => toPx(stop, attr, el)); const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); if (bgProps.length === 2 && prop === "bgx") { return noop; } if (getCssValue(el, "backgroundSize", "") === "cover") { return backgroundCoverFn(prop, el, stops, props2); } const positions = {}; for (const prop2 of bgProps) { positions[prop2] = getBackgroundPos(el, prop2); } return setBackgroundPosFn(bgProps, positions, props2); } function backgroundCoverFn(prop, el, stops, props2) { const dimImage = getBackgroundImageDimensions(el); if (!dimImage.width) { return noop; } const dimEl = { width: el.offsetWidth, height: el.offsetHeight }; const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); const positions = {}; for (const prop2 of bgProps) { const values = props2[prop2].map(([value]) => value); const min = Math.min(...values); const max = Math.max(...values); const down = values.indexOf(min) < values.indexOf(max); const diff = max - min; positions[prop2] = `${(down ? -diff : 0) - (down ? min : max)}px`; dimEl[prop2 === "bgy" ? "height" : "width"] += diff; } const dim = Dimensions.cover(dimImage, dimEl); for (const prop2 of bgProps) { const attr = prop2 === "bgy" ? "height" : "width"; const overflow = dim[attr] - dimEl[attr]; positions[prop2] = `max(${getBackgroundPos(el, prop2)},-${overflow}px) + ${positions[prop2]}`; } const fn = setBackgroundPosFn(bgProps, positions, props2); return (css2, percent) => { fn(css2, percent); css2.backgroundSize = `${dim.width}px ${dim.height}px`; css2.backgroundRepeat = "no-repeat"; }; } function getBackgroundPos(el, prop) { return getCssValue(el, `background-position-${prop.slice(-1)}`, ""); } function setBackgroundPosFn(bgProps, positions, props2) { return function(css2, percent) { for (const prop of bgProps) { const value = getValue(props2[prop], percent); css2[`background-position-${prop.slice(-1)}`] = `calc(${positions[prop]} + ${value}px)`; } }; } const loading = {}; const dimensions = {}; function getBackgroundImageDimensions(el) { const src = css(el, "backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/, "$1"); if (dimensions[src]) { return dimensions[src]; } const image = new Image(); if (src) { image.src = src; if (!image.naturalWidth && !loading[src]) { once(image, "error load", () => { dimensions[src] = toDimensions(image); trigger(el, createEvent("load", false)); }); loading[src] = true; return toDimensions(image); } } return dimensions[src] = toDimensions(image); } function toDimensions(image) { return { width: image.naturalWidth, height: image.naturalHeight }; } function parseStops(stops, fn = toFloat) { const result = []; const { length } = stops; let nullIndex = 0; for (let i = 0; i < length; i++) { let [value, percent] = isString(stops[i]) ? stops[i].trim().split(/ (?![^(]*\))/) : [stops[i]]; value = fn(value); percent = percent ? toFloat(percent) / 100 : null; if (i === 0) { if (percent === null) { percent = 0; } else if (percent) { result.push([value, 0]); } } else if (i === length - 1) { if (percent === null) { percent = 1; } else if (percent !== 1) { result.push([value, percent]); percent = 1; } } result.push([value, percent]); if (percent === null) { nullIndex++; } else if (nullIndex) { const leftPercent = result[i - nullIndex - 1][1]; const p = (percent - leftPercent) / (nullIndex + 1); for (let j = nullIndex; j > 0; j--) { result[i - j][1] = leftPercent + p * (nullIndex - j + 1); } nullIndex = 0; } } return result; } function getStop(stops, percent) { const index = findIndex(stops.slice(1), ([, targetPercent]) => percent <= targetPercent) + 1; return [ stops[index - 1][0], stops[index][0], (percent - stops[index - 1][1]) / (stops[index][1] - stops[index - 1][1]) ]; } function getValue(stops, percent) { const [start, end, p] = getStop(stops, percent); return start + Math.abs(start - end) * p * (start < end ? 1 : -1); } const unitRe = /^-?\d+(?:\.\d+)?(\S+)?/; function getUnit(stops, defaultUnit) { var _a; for (const stop of stops) { const match = (_a = stop.match) == null ? void 0 : _a.call(stop, unitRe); if (match) { return match[1]; } } return defaultUnit; } function getCssValue(el, prop, value) { const prev = el.style[prop]; const val = css(css(el, prop, value), prop); el.style[prop] = prev; return val; } function fillObject(keys2, value) { return keys2.reduce((data, prop) => { data[prop] = value; return data; }, {}); } function ease(percent, easing) { return easing >= 0 ? Math.pow(percent, easing + 1) : 1 - Math.pow(1 - percent, 1 - easing); } var parallax = { mixins: [Parallax], props: { target: String, viewport: Number, // Deprecated easing: Number, start: String, end: String }, data: { target: false, viewport: 1, easing: 1, start: 0, end: 0 }, computed: { target: ({ target }, $el) => getOffsetElement(target && query(target, $el) || $el), start({ start }) { return toPx(start, "height", this.target, true); }, end({ end, viewport: viewport2 }) { return toPx( end || (viewport2 = (1 - viewport2) * 100) && `${viewport2}vh+${viewport2}%`, "height", this.target, true ); } }, observe: [ viewport(), scroll$1({ target: ({ target }) => target }), resize({ target: ({ $el, target }) => [$el, target, scrollParent(target, true)] }) ], update: { read({ percent }, types) { if (!types.has("scroll")) { percent = false; } if (!isVisible(this.$el)) { return false; } if (!this.matchMedia) { return; } const prev = percent; percent = ease(scrolledOver(this.target, this.start, this.end), this.easing); return { percent, style: prev === percent ? false : this.getCss(percent) }; }, write({ style }) { if (!this.matchMedia) { this.reset(); return; } style && css(this.$el, style); }, events: ["scroll", "resize"] } }; function getOffsetElement(el) { return el ? "offsetTop" in el ? el : getOffsetElement(parent(el)) : document.documentElement; } var SliderParallax = { props: { parallax: Boolean, parallaxTarget: Boolean, parallaxStart: String, parallaxEnd: String, parallaxEasing: Number }, data: { parallax: false, parallaxTarget: false, parallaxStart: 0, parallaxEnd: 0, parallaxEasing: 0 }, observe: [ resize({ target: ({ $el, parallaxTarget }) => [$el, parallaxTarget], filter: ({ parallax }) => parallax }), scroll$1({ filter: ({ parallax }) => parallax }) ], computed: { parallaxTarget({ parallaxTarget }, $el) { return parallaxTarget && query(parallaxTarget, $el) || this.list; } }, update: { read() { if (!this.parallax) { return false; } const target = this.parallaxTarget; if (!target) { return false; } const start = toPx(this.parallaxStart, "height", target, true); const end = toPx(this.parallaxEnd, "height", target, true); const percent = ease(scrolledOver(target, start, end), this.parallaxEasing); return { parallax: this.getIndexAt(percent) }; }, write({ parallax }) { const [prevIndex, slidePercent] = parallax; const nextIndex = this.getValidIndex(prevIndex + Math.ceil(slidePercent)); const prev = this.slides[prevIndex]; const next = this.slides[nextIndex]; const { triggerShow, triggerShown, triggerHide, triggerHidden } = useTriggers(this); if (~this.prevIndex) { for (const i of /* @__PURE__ */ new Set([this.index, this.prevIndex])) { if (!includes([nextIndex, prevIndex], i)) { triggerHide(this.slides[i]); triggerHidden(this.slides[i]); } } } const changed = this.prevIndex !== prevIndex || this.index !== nextIndex; this.dir = 1; this.prevIndex = prevIndex; this.index = nextIndex; if (prev !== next) { triggerHide(prev); } triggerShow(next); if (changed) { triggerShown(prev); } this._translate(prev === next ? 1 : slidePercent, prev, next); }, events: ["scroll", "resize"] }, methods: { getIndexAt(percent) { const index = percent * (this.length - 1); return [Math.floor(index), index % 1]; } } }; function useTriggers(cmp) { const { clsSlideActive, clsEnter, clsLeave } = cmp; return { triggerShow, triggerShown, triggerHide, triggerHidden }; function triggerShow(el) { if (hasClass(el, clsLeave)) { triggerHide(el); triggerHidden(el); } if (!hasClass(el, clsSlideActive)) { trigger(el, "beforeitemshow", [cmp]); trigger(el, "itemshow", [cmp]); } } function triggerShown(el) { if (hasClass(el, clsEnter)) { trigger(el, "itemshown", [cmp]); } } function triggerHide(el) { if (!hasClass(el, clsSlideActive)) { triggerShow(el); } if (hasClass(el, clsEnter)) { triggerShown(el); } if (!hasClass(el, clsLeave)) { trigger(el, "beforeitemhide", [cmp]); trigger(el, "itemhide", [cmp]); } } function triggerHidden(el) { if (hasClass(el, clsLeave)) { trigger(el, "itemhidden", [cmp]); } } } var SliderReactive = { update: { write() { if (this.stack.length || this.dragging || this.parallax) { return; } const index = this.getValidIndex(); if (!~this.prevIndex || this.index !== index) { this.show(index); } else { this._translate(1); } }, events: ["resize"] } }; var SliderPreload = { observe: lazyload({ target: ({ slides }) => slides, targets: (instance) => instance.getAdjacentSlides() }), methods: { getAdjacentSlides() { return [1, -1].map((i) => this.slides[this.getIndex(this.index + i)]); } } }; function Transitioner(prev, next, dir, { center, easing, list }) { const from = prev ? getLeft(prev, list, center) : getLeft(next, list, center) + dimensions$1(next).width * dir; const to = next ? getLeft(next, list, center) : from + dimensions$1(prev).width * dir * (isRtl ? -1 : 1); const { promise, resolve } = withResolvers(); return { dir, show(duration, percent = 0, linear) { const timing = linear ? "linear" : easing; duration -= Math.round(duration * clamp(percent, -1, 1)); css(list, "transitionProperty", "none"); this.translate(percent); css(list, "transitionProperty", ""); percent = prev ? percent : clamp(percent, 0, 1); triggerUpdate(this.getItemIn(), "itemin", { percent, duration, timing, dir }); prev && triggerUpdate(this.getItemIn(true), "itemout", { percent: 1 - percent, duration, timing, dir }); Transition.start( list, { transform: translate(-to * (isRtl ? -1 : 1), "px") }, duration, timing ).then(resolve, noop); return promise; }, cancel() { return Transition.cancel(list); }, reset() { css(list, "transform", ""); }, async forward(duration, percent = this.percent()) { await this.cancel(); return this.show(duration, percent, true); }, translate(percent) { if (percent === this.percent()) { return; } const distance = this.getDistance() * dir * (isRtl ? -1 : 1); css( list, "transform", translate( clamp( -to + (distance - distance * percent), -getWidth(list), dimensions$1(list).width ) * (isRtl ? -1 : 1), "px" ) ); const actives = this.getActives(); const itemIn = this.getItemIn(); const itemOut = this.getItemIn(true); percent = prev ? clamp(percent, -1, 1) : 0; for (const slide of children(list)) { const isActive = includes(actives, slide); const isIn = slide === itemIn; const isOut = slide === itemOut; const translateIn = isIn || !isOut && (isActive || dir * (isRtl ? -1 : 1) === -1 ^ getElLeft(slide, list) > getElLeft(prev || next)); triggerUpdate(slide, `itemtranslate${translateIn ? "in" : "out"}`, { dir, percent: isOut ? 1 - percent : isIn ? percent : isActive ? 1 : 0 }); } }, percent() { return Math.abs( (new DOMMatrix(css(list, "transform")).m41 * (isRtl ? -1 : 1) + from) / (to - from) ); }, getDistance() { return Math.abs(to - from); }, getItemIn(out = false) { let actives = this.getActives(); let nextActives = inView(list, getLeft(next || prev, list, center)); if (out) { const temp = actives; actives = nextActives; nextActives = temp; } return nextActives[findIndex(nextActives, (el) => !includes(actives, el))]; }, getActives() { return inView(list, getLeft(prev || next, list, center)); } }; } function getLeft(el, list, center) { const left = getElLeft(el, list); return center ? left - centerEl(el, list) : Math.min(left, getMax(list)); } function getMax(list) { return Math.max(0, getWidth(list) - dimensions$1(list).width); } function getWidth(list, index) { return sumBy(children(list).slice(0, index), (el) => dimensions$1(el).width); } function centerEl(el, list) { return dimensions$1(list).width / 2 - dimensions$1(el).width / 2; } function getElLeft(el, list) { return el && (position(el).left + (isRtl ? dimensions$1(el).width - dimensions$1(list).width : 0)) * (isRtl ? -1 : 1) || 0; } function inView(list, listLeft) { listLeft -= 1; const listWidth = dimensions$1(list).width; const listRight = listLeft + listWidth + 2; return children(list).filter((slide) => { const slideLeft = getElLeft(slide, list); const slideRight = slideLeft + Math.min(dimensions$1(slide).width, listWidth); return slideLeft >= listLeft && slideRight <= listRight; }); } var slider = { mixins: [Class, Slider, SliderReactive, SliderParallax, SliderPreload], props: { center: Boolean, sets: Boolean, active: String }, data: { center: false, sets: false, attrItem: "uk-slider-item", selList: ".uk-slider-items", selNav: ".uk-slider-nav", clsContainer: "uk-slider-container", active: "all", Transitioner }, computed: { finite({ finite }) { return finite || isFinite(this.list, this.center); }, maxIndex() { if (!this.finite || this.center && !this.sets) { return this.length - 1; } if (this.center) { return last(this.sets); } let lft = 0; const max = getMax(this.list); const index = findIndex(this.slides, (el) => { if (lft >= max - 5e-3) { return true; } lft += dimensions$1(el).width; }); return ~index ? index : this.length - 1; }, sets({ sets: enabled }) { if (!enabled || this.parallax) { return; } let left = 0; const sets = []; const width = dimensions$1(this.list).width; for (let i = 0; i < this.length; i++) { const slideWidth = dimensions$1(this.slides[i]).width; if (left + slideWidth > width) { left = 0; } if (this.center) { if (left < width / 2 && left + slideWidth + dimensions$1(this.slides[getIndex(i + 1, this.slides)]).width / 2 > width / 2) { sets.push(i); left = width / 2 - slideWidth / 2; } } else if (left === 0) { sets.push(Math.min(i, this.maxIndex)); } left += slideWidth; } if (sets.length) { return sets; } }, transitionOptions() { return { center: this.center, list: this.list }; }, slides() { return children(this.list).filter(isVisible); } }, connected() { toggleClass(this.$el, this.clsContainer, !$(`.${this.clsContainer}`, this.$el)); }, observe: resize({ target: ({ slides, $el }) => [$el, ...slides] }), update: { write() { for (const el of this.navItems) { const index = toNumber(data(el, this.attrItem)); if (index !== false) { el.hidden = !this.maxIndex || index > this.maxIndex || this.sets && !includes(this.sets, index); } } this.reorder(); if (!this.parallax) { this._translate(1); } this.updateActiveClasses(); }, events: ["resize"] }, events: { beforeitemshow(e) { if (!this.dragging && this.sets && this.stack.length < 2 && !includes(this.sets, this.index)) { this.index = this.getValidIndex(); } const diff = Math.abs( this.index - this.prevIndex + (this.dir > 0 && this.index < this.prevIndex || this.dir < 0 && this.index > this.prevIndex ? (this.maxIndex + 1) * this.dir : 0) ); if (!this.dragging && diff > 1) { for (let i = 0; i < diff; i++) { this.stack.splice(1, 0, this.dir > 0 ? "next" : "previous"); } e.preventDefault(); return; } const index = this.dir < 0 || !this.slides[this.prevIndex] ? this.index : this.prevIndex; const avgWidth = getWidth(this.list) / this.length; this.duration = speedUp(avgWidth / this.velocity) * (dimensions$1(this.slides[index]).width / avgWidth); this.reorder(); }, itemshow() { if (~this.prevIndex) { addClass(this._getTransitioner().getItemIn(), this.clsActive); } this.updateActiveClasses(this.prevIndex); }, itemshown() { this.updateActiveClasses(); } }, methods: { reorder() { if (this.finite) { css(this.slides, "order", ""); return; } const index = this.dir > 0 && this.slides[this.prevIndex] ? this.prevIndex : this.index; this.slides.forEach( (slide, i) => css( slide, "order", this.dir > 0 && i < index ? 1 : this.dir < 0 && i >= this.index ? -1 : "" ) ); if (!this.center || !this.length) { return; } const next = this.slides[index]; let width = dimensions$1(this.list).width / 2 - dimensions$1(next).width / 2; let j = 0; while (width > 0) { const slideIndex = this.getIndex(--j + index, index); const slide = this.slides[slideIndex]; css(slide, "order", slideIndex > index ? -2 : -1); width -= dimensions$1(slide).width; } }, updateActiveClasses(currentIndex = this.index) { let actives = this._getTransitioner(currentIndex).getActives(); if (this.active !== "all") { actives = [this.slides[this.getValidIndex(currentIndex)]]; } const activeClasses = [ this.clsActive, !this.sets || includes(this.sets, toFloat(this.index)) ? this.clsActivated : "" ]; for (const slide of this.slides) { const active = includes(actives, slide); toggleClass(slide, activeClasses, active); slide.ariaHidden = !active; for (const focusable of $$(selFocusable, slide)) { if (!hasOwn(focusable, "_tabindex")) { focusable._tabindex = focusable.tabIndex; } focusable.tabIndex = active ? focusable._tabindex : -1; } } }, getValidIndex(index = this.index, prevIndex = this.prevIndex) { index = this.getIndex(index, prevIndex); if (!this.sets) { return index; } let prev; do { if (includes(this.sets, index)) { return index; } prev = index; index = this.getIndex(index + this.dir, prevIndex); } while (index !== prev); return index; }, getAdjacentSlides() { const { width } = dimensions$1(this.list); const left = -width; const right = width * 2; const slideWidth = dimensions$1(this.slides[this.index]).width; const slideLeft = this.center ? width / 2 - slideWidth / 2 : 0; const slides = /* @__PURE__ */ new Set(); for (const i of [-1, 1]) { let currentLeft = slideLeft + (i > 0 ? slideWidth : 0); let j = 0; do { const slide = this.slides[this.getIndex(this.index + i + j++ * i)]; currentLeft += dimensions$1(slide).width * i; slides.add(slide); } while (this.length > j && currentLeft > left && currentLeft < right); } return Array.from(slides); }, getIndexAt(percent) { let index = -1; const scrollDist = this.center ? getWidth(this.list) - (dimensions$1(this.slides[0]).width / 2 + dimensions$1(last(this.slides)).width / 2) : getWidth(this.list, this.maxIndex); let dist = percent * scrollDist; let slidePercent = 0; do { const slideWidth = dimensions$1(this.slides[++index]).width; const slideDist = this.center ? slideWidth / 2 + dimensions$1(this.slides[index + 1]).width / 2 : slideWidth; slidePercent = dist / slideDist % 1; dist -= slideDist; } while (dist >= 0 && index < this.maxIndex); return [index, slidePercent]; } } }; function isFinite(list, center) { if (!list || list.length < 2) { return true; } const { width: listWidth } = dimensions$1(list); if (!center) { return Math.ceil(getWidth(list)) < Math.trunc(listWidth + getMaxElWidth(list)); } const slides = children(list); const listHalf = Math.trunc(listWidth / 2); for (const index in slides) { const slide = slides[index]; const slideWidth = dimensions$1(slide).width; const slidesInView = /* @__PURE__ */ new Set([slide]); let diff = 0; for (const i of [-1, 1]) { let left = slideWidth / 2; let j = 0; while (left < listHalf) { const nextSlide = slides[getIndex(+index + i + j++ * i, slides)]; if (slidesInView.has(nextSlide)) { return true; } left += dimensions$1(nextSlide).width; slidesInView.add(nextSlide); } diff = Math.max( diff, slideWidth / 2 + dimensions$1(slides[getIndex(+index + i, slides)]).width / 2 - (left - listHalf) ); } if (Math.trunc(diff) > sumBy( slides.filter((slide2) => !slidesInView.has(slide2)), (slide2) => dimensions$1(slide2).width )) { return true; } } return false; } function getMaxElWidth(list) { return Math.max(0, ...children(list).map((el) => dimensions$1(el).width)); } var sliderParallax = { mixins: [Parallax], beforeConnect() { this.item = this.$el.closest(`.${this.$options.id.replace("parallax", "items")} > *`); }, disconnected() { this.item = null; }, events: [ { name: "itemin itemout", self: true, el: ({ item }) => item, handler({ type, detail: { percent, duration, timing, dir } }) { fastdom.read(() => { if (!this.matchMedia) { return; } const propsFrom = this.getCss(getCurrentPercent(type, dir, percent)); const propsTo = this.getCss(isIn(type) ? 0.5 : dir > 0 ? 1 : 0); fastdom.write(() => { css(this.$el, propsFrom); Transition.start(this.$el, propsTo, duration, timing).catch(noop); }); }); } }, { name: "transitioncanceled transitionend", self: true, el: ({ item }) => item, handler() { Transition.cancel(this.$el); } }, { name: "itemtranslatein itemtranslateout", self: true, el: ({ item }) => item, handler({ type, detail: { percent, dir } }) { fastdom.read(() => { if (!this.matchMedia) { this.reset(); return; } const props = this.getCss(getCurrentPercent(type, dir, percent)); fastdom.write(() => css(this.$el, props)); }); } } ] }; function isIn(type) { return endsWith(type, "in"); } function getCurrentPercent(type, dir, percent) { percent /= 2; return isIn(type) ^ dir < 0 ? percent : 1 - percent; } var slideshow = { mixins: [Class, Slideshow, SliderReactive, SliderParallax, SliderPreload], props: { ratio: String, minHeight: String, maxHeight: String }, data: { ratio: "16:9", minHeight: void 0, maxHeight: void 0, selList: ".uk-slideshow-items", attrItem: "uk-slideshow-item", selNav: ".uk-slideshow-nav", Animations: Animations$1 }, watch: { list(list) { css(list, { aspectRatio: this.ratio ? this.ratio.replace(":", "/") : void 0, minHeight: this.minHeight, maxHeight: this.maxHeight, width: "100%" }); } }, methods: { getAdjacentSlides() { return [1, -1].map((i) => this.slides[this.getIndex(this.index + i)]); } } }; var sortable = { mixins: [Class, Animate], props: { group: String, threshold: Number, clsItem: String, clsPlaceholder: String, clsDrag: String, clsDragState: String, clsBase: String, clsNoDrag: String, clsEmpty: String, clsCustom: String, handle: String }, data: { group: false, threshold: 5, clsItem: "uk-sortable-item", clsPlaceholder: "uk-sortable-placeholder", clsDrag: "uk-sortable-drag", clsDragState: "uk-drag", clsBase: "uk-sortable", clsNoDrag: "uk-sortable-nodrag", clsEmpty: "uk-sortable-empty", clsCustom: "", handle: false, pos: {} }, events: { name: pointerDown$1, passive: false, handler(e) { this.init(e); } }, computed: { target: (_, $el) => ($el.tBodies || [$el])[0], items() { return children(this.target); }, isEmpty() { return !this.items.length; }, handles({ handle }, $el) { return handle ? $$(handle, $el) : this.items; } }, watch: { isEmpty(empty) { toggleClass(this.target, this.clsEmpty, empty); }, handles(handles, prev) { const props = { touchAction: "none", userSelect: "none" }; resetProps(prev, props); css(handles, props); } }, update: { write(data) { if (!this.drag || !parent(this.placeholder)) { return; } const { pos: { x, y }, origin: { offsetTop, offsetLeft }, placeholder } = this; css(this.drag, { top: y - offsetTop, left: x - offsetLeft }); const sortable = this.getSortable(document.elementFromPoint(x, y)); if (!sortable) { return; } const { items } = sortable; if (items.some(Transition.inProgress)) { return; } const target = findTarget(items, { x, y }); if (items.length && (!target || target === placeholder)) { return; } const previous = this.getSortable(placeholder); const insertTarget = findInsertTarget( sortable.target, target, placeholder, x, y, sortable === previous && data.moved !== target ); if (insertTarget === false) { return; } if (insertTarget && placeholder === insertTarget) { return; } if (sortable !== previous) { previous.remove(placeholder); data.moved = target; } else { delete data.moved; } sortable.insert(placeholder, insertTarget); this.touched.add(sortable); }, events: ["move"] }, methods: { init(e) { const { target, button, defaultPrevented } = e; const [placeholder] = this.items.filter((el) => el.contains(target)); if (!placeholder || defaultPrevented || button > 0 || isInput(target) || target.closest(`.${this.clsNoDrag}`) || this.handle && !target.closest(this.handle)) { return; } e.preventDefault(); this.pos = getEventPos(e); this.touched = /* @__PURE__ */ new Set([this]); this.placeholder = placeholder; this.origin = { target, index: index(placeholder), ...this.pos }; on(document, pointerMove$1, this.move); on(document, pointerUp$1, this.end); if (!this.threshold) { this.start(e); } }, start(e) { this.drag = appendDrag(this.$container, this.placeholder); const { left, top } = dimensions$1(this.placeholder); assign(this.origin, { offsetLeft: this.pos.x - left, offsetTop: this.pos.y - top }); addClass(this.drag, this.clsDrag, this.clsCustom); addClass(this.placeholder, this.clsPlaceholder); addClass(this.items, this.clsItem); addClass(document.documentElement, this.clsDragState); trigger(this.$el, "start", [this, this.placeholder]); trackScroll(this.pos); this.move(e); }, move: throttle(function(e) { assign(this.pos, getEventPos(e)); if (!this.drag && (Math.abs(this.pos.x - this.origin.x) > this.threshold || Math.abs(this.pos.y - this.origin.y) > this.threshold)) { this.start(e); } this.$emit("move"); }), end() { off(document, pointerMove$1, this.move); off(document, pointerUp$1, this.end); if (!this.drag) { return; } untrackScroll(); const sortable = this.getSortable(this.placeholder); if (this === sortable) { if (this.origin.index !== index(this.placeholder)) { trigger(this.$el, "moved", [this, this.placeholder]); } } else { trigger(sortable.$el, "added", [sortable, this.placeholder]); trigger(this.$el, "removed", [this, this.placeholder]); } trigger(this.$el, "stop", [this, this.placeholder]); remove$1(this.drag); this.drag = null; for (const { clsPlaceholder, clsItem } of this.touched) { for (const sortable2 of this.touched) { removeClass(sortable2.items, clsPlaceholder, clsItem); } } this.touched = null; removeClass(document.documentElement, this.clsDragState); }, insert(element, target) { addClass(this.items, this.clsItem); if (target && target.previousElementSibling !== element) { this.animate(() => before(target, element)); } else if (!target && this.target.lastElementChild !== element) { this.animate(() => append(this.target, element)); } }, remove(element) { if (this.target.contains(element)) { this.animate(() => remove$1(element)); } }, getSortable(element) { do { const sortable = this.$getComponent(element, "sortable"); if (sortable && (sortable === this || this.group !== false && sortable.group === this.group)) { return sortable; } } while (element = parent(element)); } } }; let trackTimer; function trackScroll(pos) { let last = Date.now(); trackTimer = setInterval(() => { let { x, y } = pos; y += document.scrollingElement.scrollTop; const dist = (Date.now() - last) * 0.3; last = Date.now(); scrollParents(document.elementFromPoint(x, pos.y)).reverse().some((scrollEl) => { let { scrollTop: scroll, scrollHeight } = scrollEl; const { top, bottom, height: height2 } = offsetViewport(scrollEl); if (top < y && top + 35 > y) { scroll -= dist; } else if (bottom > y && bottom - 35 < y) { scroll += dist; } else { return; } if (scroll > 0 && scroll < scrollHeight - height2) { scrollEl.scrollTop = scroll; return true; } }); }, 15); } function untrackScroll() { clearInterval(trackTimer); } function appendDrag(container, element) { let clone; if (isTag(element, "li", "tr")) { clone = $("<div>"); append(clone, element.cloneNode(true).children); for (const attribute of element.getAttributeNames()) { attr(clone, attribute, element.getAttribute(attribute)); } } else { clone = element.cloneNode(true); } append(container, clone); css(clone, "margin", "0", "important"); css(clone, { boxSizing: "border-box", width: element.offsetWidth, height: element.offsetHeight, padding: css(element, "padding") }); height(clone.firstElementChild, height(element.firstElementChild)); return clone; } function findTarget(items, point) { return items[findIndex(items, (item) => pointInRect(point, dimensions$1(item)))]; } function findInsertTarget(list, target, placeholder, x, y, sameList) { if (!children(list).length) { return; } const rect = dimensions$1(target); if (!sameList) { if (!isHorizontal(list, placeholder)) { return y < rect.top + rect.height / 2 ? target : target.nextElementSibling; } return target; } const placeholderRect = dimensions$1(placeholder); const sameRow = linesIntersect( [rect.top, rect.bottom], [placeholderRect.top, placeholderRect.bottom] ); const [pointerPos, lengthProp, startProp, endProp] = sameRow ? [x, "width", "left", "right"] : [y, "height", "top", "bottom"]; const diff = placeholderRect[lengthProp] < rect[lengthProp] ? rect[lengthProp] - placeholderRect[lengthProp] : 0; if (placeholderRect[startProp] < rect[startProp]) { if (diff && pointerPos < rect[startProp] + diff) { return false; } return target.nextElementSibling; } if (diff && pointerPos > rect[endProp] - diff) { return false; } return target; } function isHorizontal(list, placeholder) { const single = children(list).length === 1; if (single) { append(list, placeholder); } const items = children(list); const isHorizontal2 = items.some((el, i) => { const rectA = dimensions$1(el); return items.slice(i + 1).some((el2) => { const rectB = dimensions$1(el2); return !linesIntersect([rectA.left, rectA.right], [rectB.left, rectB.right]); }); }); if (single) { remove$1(placeholder); } return isHorizontal2; } function linesIntersect(lineA, lineB) { return lineA[1] > lineB[0] && lineB[1] > lineA[0]; } function throttle(fn) { let throttled; return function(...args) { if (!throttled) { throttled = true; fn.call(this, ...args); requestAnimationFrame(() => throttled = false); } }; } var tooltip = { mixins: [Container, Togglable, Position], data: { pos: "top", animation: ["uk-animation-scale-up"], duration: 100, cls: "uk-active" }, connected() { makeFocusable(this.$el); }, disconnected() { this.hide(); }, methods: { show() { if (this.isToggled(this.tooltip || null)) { return; } const { delay = 0, title } = parseProps(this.$options); if (!title) { return; } const titleAttr = attr(this.$el, "title"); const off = on(this.$el, ["blur", pointerLeave], (e) => !isTouch(e) && this.hide()); this.reset = () => { attr(this.$el, { title: titleAttr, "aria-describedby": null }); off(); }; const id = generateId(this); attr(this.$el, { title: null, "aria-describedby": id }); clearTimeout(this.showTimer); this.showTimer = setTimeout(() => this._show(title, id), delay); }, async hide() { var _a; if (matches(this.$el, "input:focus")) { return; } clearTimeout(this.showTimer); if (this.isToggled(this.tooltip || null)) { await this.toggleElement(this.tooltip, false, false); } (_a = this.reset) == null ? void 0 : _a.call(this); remove$1(this.tooltip); this.tooltip = null; }, async _show(title, id) { this.tooltip = append( this.container, `<div id="${id}" class="uk-${this.$options.name}" role="tooltip"> <div class="uk-${this.$options.name}-inner">${title}</div> </div>` ); on(this.tooltip, "toggled", (e, toggled) => { if (!toggled) { return; } const update = () => this.positionAt(this.tooltip, this.$el); update(); const [dir, align] = getAlignment(this.tooltip, this.$el, this.pos); this.origin = this.axis === "y" ? `${flipPosition(dir)}-${align}` : `${align}-${flipPosition(dir)}`; const handlers = [ once( document, `keydown ${pointerDown$1}`, this.hide, false, (e2) => e2.type === pointerDown$1 && !this.$el.contains(e2.target) || e2.type === "keydown" && e2.keyCode === keyMap.ESC ), on([document, ...overflowParents(this.$el)], "scroll", update, { passive: true }) ]; once(this.tooltip, "hide", () => handlers.forEach((handler) => handler()), { self: true }); }); if (!await this.toggleElement(this.tooltip, true)) { this.hide(); } } }, events: { // Clicking a button does not give it focus on all browsers and platforms // https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#clicking_and_focus [`focus ${pointerEnter} ${pointerDown$1}`](e) { if ((!isTouch(e) || e.type === pointerDown$1) && document.readyState !== "loading") { this.show(); } } } }; function makeFocusable(el) { if (!isFocusable(el)) { el.tabIndex = 0; } } function getAlignment(el, target, [dir, align]) { const elOffset = offset(el); const targetOffset = offset(target); const properties = [ ["left", "right"], ["top", "bottom"] ]; for (const props2 of properties) { if (elOffset[props2[0]] >= targetOffset[props2[1]]) { dir = props2[1]; break; } if (elOffset[props2[1]] <= targetOffset[props2[0]]) { dir = props2[0]; break; } } const props = includes(properties[0], dir) ? properties[1] : properties[0]; align = props.find((prop) => elOffset[prop] === targetOffset[prop]) || "center"; return [dir, align]; } function parseProps(options) { const { el, id, data: data$1 } = options; return ["delay", "title"].reduce((obj, key) => ({ [key]: data(el, key), ...obj }), { ...parseOptions(data(el, id), ["title"]), ...data$1 }); } var upload = { mixins: [I18n], i18n: { invalidMime: "Invalid File Type: %s", invalidName: "Invalid File Name: %s", invalidSize: "Invalid File Size: %s Kilobytes Max" }, props: { allow: String, clsDragover: String, concurrent: Number, maxSize: Number, method: String, mime: String, multiple: Boolean, name: String, params: Object, type: String, url: String }, data: { allow: false, clsDragover: "uk-dragover", concurrent: 1, maxSize: 0, method: "POST", mime: false, multiple: false, name: "files[]", params: {}, type: "", url: "", abort: noop, beforeAll: noop, beforeSend: noop, complete: noop, completeAll: noop, error: noop, fail: noop, load: noop, loadEnd: noop, loadStart: noop, progress: noop }, events: { change(e) { if (!matches(e.target, 'input[type="file"]')) { return; } e.preventDefault(); if (e.target.files) { this.upload(e.target.files); } e.target.value = ""; }, drop(e) { stop(e); const transfer = e.dataTransfer; if (!(transfer == null ? void 0 : transfer.files)) { return; } removeClass(this.$el, this.clsDragover); this.upload(transfer.files); }, dragenter(e) { stop(e); }, dragover(e) { stop(e); addClass(this.$el, this.clsDragover); }, dragleave(e) { stop(e); removeClass(this.$el, this.clsDragover); } }, methods: { async upload(files) { files = toArray(files); if (!files.length) { return; } trigger(this.$el, "upload", [files]); for (const file of files) { if (this.maxSize && this.maxSize * 1e3 < file.size) { this.fail(this.t("invalidSize", this.maxSize)); return; } if (this.allow && !match$1(this.allow, file.name)) { this.fail(this.t("invalidName", this.allow)); return; } if (this.mime && !match$1(this.mime, file.type)) { this.fail(this.t("invalidMime", this.mime)); return; } } if (!this.multiple) { files = files.slice(0, 1); } this.beforeAll(this, files); const chunks = chunk(files, this.concurrent); const upload = async (files2) => { const data = new FormData(); files2.forEach((file) => data.append(this.name, file)); for (const key in this.params) { data.append(key, this.params[key]); } try { const xhr = await ajax(this.url, { data, method: this.method, responseType: this.type, beforeSend: (env) => { const { xhr: xhr2 } = env; on(xhr2.upload, "progress", this.progress); for (const type of ["loadStart", "load", "loadEnd", "abort"]) { on(xhr2, type.toLowerCase(), this[type]); } return this.beforeSend(env); } }); this.complete(xhr); if (chunks.length) { await upload(chunks.shift()); } else { this.completeAll(xhr); } } catch (e) { this.error(e); } }; await upload(chunks.shift()); } } }; function match$1(pattern, path) { return path.match( new RegExp( `^${pattern.replace(/\//g, "\\/").replace(/\*\*/g, "(\\/[^\\/]+)*").replace(/\*/g, "[^\\/]+").replace(/((?!\\))\?/g, "$1.")}$`, "i" ) ); } function chunk(files, size) { const chunks = []; for (let i = 0; i < files.length; i += size) { chunks.push(files.slice(i, i + size)); } return chunks; } function stop(e) { e.preventDefault(); e.stopPropagation(); } async function ajax(url, options) { const env = { data: null, method: "GET", headers: {}, xhr: new XMLHttpRequest(), beforeSend: noop, responseType: "", ...options }; await env.beforeSend(env); return send(url, env); } function send(url, env) { return new Promise((resolve, reject) => { const { xhr } = env; for (const prop in env) { if (prop in xhr) { try { xhr[prop] = env[prop]; } catch (e) { } } } xhr.open(env.method.toUpperCase(), url); for (const header in env.headers) { xhr.setRequestHeader(header, env.headers[header]); } on(xhr, "load", () => { if (xhr.status === 0 || xhr.status >= 200 && xhr.status < 300 || xhr.status === 304) { resolve(xhr); } else { reject( assign(Error(xhr.statusText), { xhr, status: xhr.status }) ); } }); on(xhr, "error", () => reject(assign(Error("Network Error"), { xhr }))); on(xhr, "timeout", () => reject(assign(Error("Network Timeout"), { xhr }))); xhr.send(env.data); }); } var components$1 = /*#__PURE__*/Object.freeze({ __proto__: null, Countdown: countdown, Filter: filter, Lightbox: lightbox, LightboxPanel: LightboxPanel, Notification: notification, Parallax: parallax, Slider: slider, SliderParallax: sliderParallax, Slideshow: slideshow, SlideshowParallax: sliderParallax, Sortable: sortable, Tooltip: tooltip, Upload: upload }); function boot(App) { if (inBrowser && window.MutationObserver) { if (document.body) { requestAnimationFrame(() => init(App)); } else { new MutationObserver((records, observer) => { if (document.body) { init(App); observer.disconnect(); } }).observe(document.documentElement, { childList: true }); } } } function init(App) { trigger(document, "uikit:init", App); if (document.body) { apply(document.body, connect); } new MutationObserver(handleMutation).observe(document, { subtree: true, childList: true, attributes: true }); App._initialized = true; } function handleMutation(records) { var _a; for (const { addedNodes, removedNodes, target, attributeName } of records) { for (const node of addedNodes) { apply(node, connect); } for (const node of removedNodes) { apply(node, disconnect); } const name = attributeName && getComponentName(attributeName); if (name) { if (hasAttr(target, attributeName)) { createComponent(name, target); } else { (_a = getComponent(target, name)) == null ? void 0 : _a.$destroy(); } } } } function connect(node) { const components2 = getComponents(node); for (const name in components2) { callConnected(components2[name]); } for (const attributeName of node.getAttributeNames()) { const name = getComponentName(attributeName); name && createComponent(name, node); } } function disconnect(node) { const components2 = getComponents(node); for (const name in components2) { callDisconnected(components2[name]); } } function getComponentName(attribute) { if (startsWith(attribute, "data-")) { attribute = attribute.slice(5); } const cmp = components$2[attribute]; return cmp && (cmp.options || cmp).name; } globalApi(App); instanceApi(App); var Accordion = { mixins: [Class, Togglable], props: { animation: Boolean, targets: String, active: null, collapsible: Boolean, multiple: Boolean, toggle: String, content: String, offset: Number }, data: { targets: "> *", active: false, animation: true, collapsible: true, multiple: false, clsOpen: "uk-open", toggle: "> .uk-accordion-title", content: "> .uk-accordion-content", offset: 0 }, computed: { items: ({ targets }, $el) => $$(targets, $el), toggles({ toggle }) { return this.items.map((item) => $(toggle, item)); }, contents({ content }) { return this.items.map((item) => { var _a; return ((_a = item._wrapper) == null ? void 0 : _a.firstElementChild) || $(content, item); }); } }, watch: { items(items, prev) { if (prev || hasClass(items, this.clsOpen)) { return; } const active = this.active !== false && items[Number(this.active)] || !this.collapsible && items[0]; if (active) { this.toggle(active, false); } }, toggles() { this.$emit(); }, contents(items) { for (const el of items) { const isOpen = hasClass( this.items.find((item) => item.contains(el)), this.clsOpen ); hide(el, !isOpen); } this.$emit(); } }, observe: lazyload(), events: [ { name: "click keydown", delegate: ({ targets, $props }) => `${targets} ${$props.toggle}`, async handler(e) { var _a; if (e.type === "keydown" && e.keyCode !== keyMap.SPACE) { return; } maybeDefaultPreventClick(e); (_a = this._off) == null ? void 0 : _a.call(this); this._off = keepScrollPosition(e.target); await this.toggle(index(this.toggles, e.current)); this._off(); } }, { name: "shown hidden", self: true, delegate: ({ targets }) => targets, handler() { this.$emit(); } } ], update() { const activeItems = filter$1(this.items, `.${this.clsOpen}`); for (const index2 in this.items) { const toggle = this.toggles[index2]; const content = this.contents[index2]; if (!toggle || !content) { continue; } toggle.id = generateId(this, toggle); content.id = generateId(this, content); const active = includes(activeItems, this.items[index2]); attr(toggle, { role: isTag(toggle, "a") ? "button" : null, "aria-controls": content.id, "aria-expanded": active, "aria-disabled": !this.collapsible && activeItems.length < 2 && active }); attr(content, { role: "region", "aria-labelledby": toggle.id }); if (isTag(content, "ul")) { attr(children(content), "role", "presentation"); } } }, methods: { toggle(item, animate) { item = this.items[getIndex(item, this.items)]; let items = [item]; const activeItems = filter$1(this.items, `.${this.clsOpen}`); if (!this.multiple && !includes(activeItems, items[0])) { items = items.concat(activeItems); } if (!this.collapsible && activeItems.length < 2 && includes(activeItems, item)) { return; } return Promise.all( items.map( (el) => this.toggleElement(el, !includes(activeItems, el), (el2, show) => { toggleClass(el2, this.clsOpen, show); if (animate === false || !this.animation) { hide($(this.content, el2), !show); return; } return transition(el2, show, this); }) ) ); } } }; function hide(el, hide2) { el && (el.hidden = hide2); } async function transition(el, show, { content, duration, velocity, transition: transition2 }) { var _a; content = ((_a = el._wrapper) == null ? void 0 : _a.firstElementChild) || $(content, el); if (!el._wrapper) { el._wrapper = wrapAll(content, "<div>"); } const wrapper = el._wrapper; css(wrapper, "overflow", "hidden"); const currentHeight = toFloat(css(wrapper, "height")); await Transition.cancel(wrapper); hide(content, false); const endHeight = sumBy(["marginTop", "marginBottom"], (prop) => css(content, prop)) + dimensions$1(content).height; const percent = currentHeight / endHeight; duration = (velocity * endHeight + duration) * (show ? 1 - percent : percent); css(wrapper, "height", currentHeight); await Transition.start(wrapper, { height: show ? endHeight : 0 }, duration, transition2); unwrap(content); delete el._wrapper; if (!show) { hide(content, true); } } function keepScrollPosition(el) { const scrollElement = scrollParent(el, true); let frame; (function scroll() { frame = requestAnimationFrame(() => { const { top } = dimensions$1(el); if (top < 0) { scrollElement.scrollTop += top; } scroll(); }); })(); return () => requestAnimationFrame(() => cancelAnimationFrame(frame)); } var alert = { mixins: [Class, Togglable], args: "animation", props: { animation: Boolean, close: String }, data: { animation: true, selClose: ".uk-alert-close", duration: 150 }, events: { name: "click", delegate: ({ selClose }) => selClose, handler(e) { maybeDefaultPreventClick(e); this.close(); } }, methods: { async close() { await this.toggleElement(this.$el, false, animate); this.$destroy(true); } } }; function animate(el, show, { duration, transition, velocity }) { const height = toFloat(css(el, "height")); css(el, "height", height); return Transition.start( el, { height: 0, marginTop: 0, marginBottom: 0, paddingTop: 0, paddingBottom: 0, borderTop: 0, borderBottom: 0, opacity: 0 }, velocity * height + duration, transition ); } var Video = { args: "autoplay", props: { automute: Boolean, autoplay: Boolean }, data: { automute: false, autoplay: true }, beforeConnect() { if (this.autoplay === "inview" && !hasAttr(this.$el, "preload")) { this.$el.preload = "none"; } if (isTag(this.$el, "iframe") && !hasAttr(this.$el, "allow")) { this.$el.allow = "autoplay"; } if (this.autoplay === "hover") { if (isTag(this.$el, "video")) { this.$el.tabIndex = 0; } else { this.autoplay = true; } } if (this.automute) { mute(this.$el); } }, events: [ { name: `${pointerEnter} focusin`, filter: ({ autoplay }) => includes(autoplay, "hover"), handler(e) { if (!isTouch(e) || !isPlaying(this.$el)) { play(this.$el); } else { pause(this.$el); } } }, { name: `${pointerLeave} focusout`, filter: ({ autoplay }) => includes(autoplay, "hover"), handler(e) { if (!isTouch(e)) { pause(this.$el); } } } ], observe: [ intersection({ filter: ({ autoplay }) => autoplay !== "hover", handler([{ isIntersecting }]) { if (!document.fullscreenElement) { if (isIntersecting) { if (this.autoplay) { play(this.$el); } } else { pause(this.$el); } } }, args: { intersecting: false }, options: ({ $el, autoplay }) => ({ root: autoplay === "inview" ? null : parent($el).closest(":not(a)") }) }) ] }; function isPlaying(videoEl) { return !videoEl.paused && !videoEl.ended; } var cover = { mixins: [Video], props: { width: Number, height: Number }, data: { automute: true }, created() { this.useObjectFit = isTag(this.$el, "img", "video"); }, observe: resize({ target: ({ $el }) => getPositionedParent($el) || parent($el), filter: ({ useObjectFit }) => !useObjectFit }), update: { read() { if (this.useObjectFit) { return false; } const { $el, width = $el.clientWidth, height = $el.clientHeight } = this; const el = getPositionedParent($el) || parent($el); const dim = Dimensions.cover( { width, height }, { width: el.offsetWidth, height: el.offsetHeight } ); return dim.width && dim.height ? dim : false; }, write({ height, width }) { css(this.$el, { height, width }); }, events: ["resize"] } }; function getPositionedParent(el) { while (el = parent(el)) { if (css(el, "position") !== "static") { return el; } } } let active; var drop = { mixins: [Container, Position, Togglable], args: "pos", props: { mode: "list", toggle: Boolean, boundary: Boolean, boundaryX: Boolean, boundaryY: Boolean, target: Boolean, targetX: Boolean, targetY: Boolean, stretch: Boolean, delayShow: Number, delayHide: Number, autoUpdate: Boolean, clsDrop: String, animateOut: Boolean, bgScroll: Boolean, closeOnScroll: Boolean }, data: { mode: ["click", "hover"], toggle: "- *", boundary: false, boundaryX: false, boundaryY: false, target: false, targetX: false, targetY: false, stretch: false, delayShow: 0, delayHide: 800, autoUpdate: true, clsDrop: false, animateOut: false, bgScroll: true, animation: ["uk-animation-fade"], cls: "uk-open", container: false, closeOnScroll: false, selClose: ".uk-drop-close" }, computed: { boundary({ boundary, boundaryX, boundaryY }, $el) { return [ query(boundaryX || boundary, $el) || window, query(boundaryY || boundary, $el) || window ]; }, target({ target, targetX, targetY }, $el) { targetX || (targetX = target || this.targetEl); targetY || (targetY = target || this.targetEl); return [ targetX === true ? window : query(targetX, $el), targetY === true ? window : query(targetY, $el) ]; } }, created() { this.tracker = new MouseTracker(); }, beforeConnect() { this.clsDrop = this.$props.clsDrop || this.$options.id; }, connected() { addClass(this.$el, "uk-drop", this.clsDrop); if (this.toggle && !this.targetEl) { this.targetEl = createToggleComponent(this); } attr(this.targetEl, "aria-expanded", false); this._style = pick(this.$el.style, ["width", "height"]); }, disconnected() { if (this.isActive()) { this.hide(false); active = null; } css(this.$el, this._style); }, events: [ { name: "click", delegate: ({ selClose }) => selClose, handler(e) { maybeDefaultPreventClick(e); this.hide(false); } }, { name: "click", delegate: () => 'a[href*="#"]', handler({ defaultPrevented, current }) { const { hash } = current; if (!defaultPrevented && hash && isSameSiteAnchor(current) && !this.$el.contains($(hash))) { this.hide(false); } } }, { name: "beforescroll", handler() { this.hide(false); } }, { name: "toggle", self: true, handler(e, toggle) { e.preventDefault(); if (this.isToggled()) { this.hide(false); } else { this.show(toggle == null ? void 0 : toggle.$el, false); } } }, { name: "toggleshow", self: true, handler(e, toggle) { e.preventDefault(); this.show(toggle == null ? void 0 : toggle.$el); } }, { name: "togglehide", self: true, handler(e) { e.preventDefault(); if (!matches(this.$el, ":focus,:hover")) { this.hide(); } } }, { name: `${pointerEnter} focusin`, filter: ({ mode }) => includes(mode, "hover"), handler(e) { if (!isTouch(e)) { this.clearTimers(); } } }, { name: `${pointerLeave} focusout`, filter: ({ mode }) => includes(mode, "hover"), handler(e) { if (!isTouch(e) && e.relatedTarget) { this.hide(); } } }, { name: "toggled", self: true, handler(e, toggled) { if (toggled) { this.clearTimers(); this.position(); } } }, { name: "show", self: true, handler() { active = this; this.tracker.init(); attr(this.targetEl, "aria-expanded", true); const handlers = [ listenForResize(this), listenForEscClose(this), listenForBackgroundClose(this), this.autoUpdate && listenForScroll(this), this.closeOnScroll && listenForScrollClose(this) ]; once(this.$el, "hide", () => handlers.forEach((handler) => handler && handler()), { self: true }); if (!this.bgScroll) { once(this.$el, "hidden", preventBackgroundScroll(this.$el), { self: true }); } } }, { name: "beforehide", self: true, handler() { this.clearTimers(); } }, { name: "hide", handler({ target }) { if (this.$el !== target) { active = active === null && this.$el.contains(target) && this.isToggled() ? this : active; return; } active = this.isActive() ? null : active; this.tracker.cancel(); attr(this.targetEl, "aria-expanded", false); } } ], update: { write() { if (this.isToggled() && !hasClass(this.$el, this.clsEnter)) { this.position(); } } }, methods: { show(target = this.targetEl, delay = true) { if (this.isToggled() && target && this.targetEl && target !== this.targetEl) { this.hide(false, false); } this.targetEl = target; this.clearTimers(); if (this.isActive()) { return; } if (active) { if (delay && active.isDelaying()) { this.showTimer = setTimeout(() => matches(target, ":hover") && this.show(), 10); return; } let prev; while (active && prev !== active && !active.$el.contains(this.$el)) { prev = active; active.hide(false, false); } delay = false; } if (this.container && parent(this.$el) !== this.container) { append(this.container, this.$el); } this.showTimer = setTimeout( () => this.toggleElement(this.$el, true), delay && this.delayShow || 0 ); }, hide(delay = true, animate = true) { const hide = () => this.toggleElement(this.$el, false, this.animateOut && animate); this.clearTimers(); this.isDelayedHide = delay; if (delay && this.isDelaying()) { this.hideTimer = setTimeout(this.hide, 50); } else if (delay && this.delayHide) { this.hideTimer = setTimeout(hide, this.delayHide); } else { hide(); } }, clearTimers() { clearTimeout(this.showTimer); clearTimeout(this.hideTimer); this.showTimer = null; this.hideTimer = null; }, isActive() { return active === this; }, isDelaying() { return [this.$el, ...$$(".uk-drop", this.$el)].some((el) => this.tracker.movesTo(el)); }, position() { const restoreScrollPosition = storeScrollPosition(this.$el); removeClass(this.$el, "uk-drop-stack"); css(this.$el, this._style); this.$el.hidden = true; const viewports = this.target.map((target) => getViewport$1(this.$el, target)); const viewportOffset = this.getViewportOffset(this.$el); const dirs = [ [0, ["x", "width", "left", "right"]], [1, ["y", "height", "top", "bottom"]] ]; for (const [i, [axis, prop]] of dirs) { if (this.axis !== axis && includes([axis, true], this.stretch)) { css(this.$el, { [prop]: Math.min( offset(this.boundary[i])[prop], viewports[i][prop] - 2 * viewportOffset ), [`overflow-${axis}`]: "auto" }); } } const maxWidth = viewports[0].width - 2 * viewportOffset; this.$el.hidden = false; css(this.$el, "maxWidth", ""); if (this.$el.offsetWidth > maxWidth) { addClass(this.$el, "uk-drop-stack"); } css(this.$el, "maxWidth", maxWidth); this.positionAt(this.$el, this.target, this.boundary); for (const [i, [axis, prop, start, end]] of dirs) { if (this.axis === axis && includes([axis, true], this.stretch)) { const positionOffset = Math.abs(this.getPositionOffset()); const targetOffset = offset(this.target[i]); const elOffset = offset(this.$el); css(this.$el, { [prop]: (targetOffset[start] > elOffset[start] ? targetOffset[this.inset ? end : start] - Math.max( offset(this.boundary[i])[start], viewports[i][start] + viewportOffset ) : Math.min( offset(this.boundary[i])[end], viewports[i][end] - viewportOffset ) - targetOffset[this.inset ? start : end]) - positionOffset, [`overflow-${axis}`]: "auto" }); this.positionAt(this.$el, this.target, this.boundary); } } restoreScrollPosition(); } } }; function getViewport$1(el, target) { return offsetViewport(overflowParents(target).find((parent2) => parent2.contains(el))); } function createToggleComponent(drop) { const { $el } = drop.$create("toggle", query(drop.toggle, drop.$el), { target: drop.$el, mode: drop.mode }); $el.ariaHasPopup = true; return $el; } function listenForResize(drop) { const update = () => drop.$emit(); const off = [ observeViewportResize(update), observeResize(overflowParents(drop.$el).concat(drop.target), update) ]; return () => off.map((observer) => observer.disconnect()); } function listenForScroll(drop, fn = () => drop.$emit()) { return on([document, ...overflowParents(drop.$el)], "scroll", fn, { passive: true }); } function listenForEscClose(drop) { return on(document, "keydown", (e) => { if (e.keyCode === keyMap.ESC) { drop.hide(false); } }); } function listenForScrollClose(drop) { return listenForScroll(drop, () => drop.hide(false)); } function listenForBackgroundClose(drop) { return on(document, pointerDown$1, ({ target }) => { if (drop.$el.contains(target)) { return; } once( document, `${pointerUp$1} ${pointerCancel} scroll`, ({ defaultPrevented, type, target: newTarget }) => { var _a; if (!defaultPrevented && type === pointerUp$1 && target === newTarget && !((_a = drop.targetEl) == null ? void 0 : _a.contains(target))) { drop.hide(false); } }, true ); }); } var Dropnav = { mixins: [Class, Container], props: { align: String, clsDrop: String, boundary: Boolean, dropbar: Boolean, dropbarAnchor: Boolean, duration: Number, mode: Boolean, offset: Boolean, stretch: Boolean, delayShow: Boolean, delayHide: Boolean, target: Boolean, targetX: Boolean, targetY: Boolean, animation: Boolean, animateOut: Boolean, closeOnScroll: Boolean }, data: { align: isRtl ? "right" : "left", clsDrop: "uk-dropdown", clsDropbar: "uk-dropnav-dropbar", boundary: true, dropbar: false, dropbarAnchor: false, delayShow: 160, duration: 200, container: false, selNavItem: "> li > a, > ul > li > a" }, computed: { dropbarAnchor: ({ dropbarAnchor }, $el) => query(dropbarAnchor, $el) || $el, dropbar({ dropbar }) { if (!dropbar) { return null; } dropbar = this._dropbar || query(dropbar, this.$el) || $(`+ .${this.clsDropbar}`, this.$el); return dropbar ? dropbar : this._dropbar = $("<div></div>"); }, dropContainer(_, $el) { return this.container || $el; }, dropdowns({ clsDrop }, $el) { var _a; const dropdowns = $$(`.${clsDrop}`, $el); if (this.dropContainer !== $el) { for (const el of $$(`.${clsDrop}`, this.dropContainer)) { const target = (_a = this.getDropdown(el)) == null ? void 0 : _a.targetEl; if (!includes(dropdowns, el) && target && this.$el.contains(target)) { dropdowns.push(el); } } } return dropdowns; }, items({ selNavItem }, $el) { return $$(selNavItem, $el); } }, watch: { dropbar(dropbar) { addClass( dropbar, "uk-dropbar", "uk-dropbar-top", this.clsDropbar, `uk-${this.$options.name}-dropbar` ); }, dropdowns() { this.initializeDropdowns(); } }, connected() { this.initializeDropdowns(); preventInitialPointerEnter(this.$el); }, disconnected() { remove$1(this._dropbar); delete this._dropbar; }, events: [ { name: "mouseover focusin", delegate: ({ selNavItem }) => selNavItem, handler({ current }) { const active2 = this.getActive(); if (active2 && includes(active2.mode, "hover") && active2.targetEl && !current.contains(active2.targetEl) && !active2.isDelaying()) { active2.hide(false); } } }, { name: "keydown", self: true, delegate: ({ selNavItem }) => selNavItem, handler(e) { var _a; const { current, keyCode } = e; const active2 = this.getActive(); if (keyCode === keyMap.DOWN) { if ((active2 == null ? void 0 : active2.targetEl) === current) { e.preventDefault(); (_a = $(selFocusable, active2.$el)) == null ? void 0 : _a.focus(); } else { const dropdown = this.dropdowns.find( (el) => { var _a2; return ((_a2 = this.getDropdown(el)) == null ? void 0 : _a2.targetEl) === current; } ); if (dropdown) { e.preventDefault(); current.click(); once(dropdown, "show", (e2) => { var _a2; return (_a2 = $(selFocusable, e2.target)) == null ? void 0 : _a2.focus(); }); } } } handleNavItemNavigation(e, this.items, active2); } }, { name: "keydown", el: ({ dropContainer }) => dropContainer, delegate: ({ clsDrop }) => `.${clsDrop}`, handler(e) { var _a; const { current, keyCode, target } = e; if (isInput(target) || !includes(this.dropdowns, current)) { return; } const active2 = this.getActive(); let next = -1; if (keyCode === keyMap.HOME) { next = 0; } else if (keyCode === keyMap.END) { next = "last"; } else if (keyCode === keyMap.UP) { next = "previous"; } else if (keyCode === keyMap.DOWN) { next = "next"; } else if (keyCode === keyMap.ESC) { (_a = active2.targetEl) == null ? void 0 : _a.focus(); } if (~next) { e.preventDefault(); const elements = $$(selFocusable, current); elements[getIndex( next, elements, findIndex(elements, (el) => matches(el, ":focus")) )].focus(); return; } handleNavItemNavigation(e, this.items, active2); } }, { name: "mouseleave", el: ({ dropbar }) => dropbar, filter: ({ dropbar }) => dropbar, handler() { const active2 = this.getActive(); if (active2 && includes(active2.mode, "hover") && !this.dropdowns.some((el) => matches(el, ":hover"))) { active2.hide(); } } }, { name: "beforeshow", el: ({ dropContainer }) => dropContainer, filter: ({ dropbar }) => dropbar, handler({ target }) { if (!this.isDropbarDrop(target)) { return; } if (this.dropbar.previousElementSibling !== this.dropbarAnchor) { after(this.dropbarAnchor, this.dropbar); } addClass(target, `${this.clsDrop}-dropbar`); } }, { name: "show", el: ({ dropContainer }) => dropContainer, filter: ({ dropbar }) => dropbar, handler({ target }) { if (!this.isDropbarDrop(target)) { return; } const drop = this.getDropdown(target); const adjustHeight = () => { const maxBottom = Math.max( ...parents(target, `.${this.clsDrop}`).concat(target).map((el) => offset(el).bottom) ); offset(this.dropbar, { left: offset(this.dropbar).left, top: this.getDropbarOffset(drop.getPositionOffset()) }); this.transitionTo( maxBottom - offset(this.dropbar).top + toFloat(css(target, "marginBottom")), target ); }; this._observer = observeResize([drop.$el, ...drop.target], adjustHeight); adjustHeight(); } }, { name: "beforehide", el: ({ dropContainer }) => dropContainer, filter: ({ dropbar }) => dropbar, handler(e) { const active2 = this.getActive(); if (matches(this.dropbar, ":hover") && active2.$el === e.target && this.isDropbarDrop(active2.$el) && includes(active2.mode, "hover") && active2.isDelayedHide && !this.items.some((el) => active2.targetEl !== el && matches(el, ":focus"))) { e.preventDefault(); } } }, { name: "hide", el: ({ dropContainer }) => dropContainer, filter: ({ dropbar }) => dropbar, handler({ target }) { var _a; if (!this.isDropbarDrop(target)) { return; } (_a = this._observer) == null ? void 0 : _a.disconnect(); const active2 = this.getActive(); if (!active2 || active2.$el === target) { this.transitionTo(0); } } } ], methods: { getActive() { var _a; return includes(this.dropdowns, (_a = active) == null ? void 0 : _a.$el) && active; }, async transitionTo(newHeight, el) { const { dropbar } = this; const oldHeight = height(dropbar); el = oldHeight < newHeight && el; await Transition.cancel([el, dropbar]); if (el) { const diff = offset(el).top - offset(dropbar).top - oldHeight; if (diff > 0) { css(el, "transitionDelay", `${diff / newHeight * this.duration}ms`); } } css(el, "clipPath", `polygon(0 0,100% 0,100% ${oldHeight}px,0 ${oldHeight}px)`); height(dropbar, oldHeight); await Promise.all([ Transition.start(dropbar, { height: newHeight }, this.duration), Transition.start( el, { clipPath: `polygon(0 0,100% 0,100% ${newHeight}px,0 ${newHeight}px)` }, this.duration ).finally(() => css(el, { clipPath: "", transitionDelay: "" })) ]).catch(noop); }, getDropdown(el) { return this.$getComponent(el, "drop") || this.$getComponent(el, "dropdown"); }, isDropbarDrop(el) { return includes(this.dropdowns, el) && hasClass(el, this.clsDrop); }, getDropbarOffset(offsetTop) { const { $el, target, targetY } = this; const { top, height: height2 } = offset(query(targetY || target || $el, $el)); return top + height2 + offsetTop; }, initializeDropdowns() { this.$create( "drop", this.dropdowns.filter((el) => !this.getDropdown(el)), { ...this.$props, flip: false, shift: true, pos: `bottom-${this.align}`, boundary: this.boundary === true ? this.$el : this.boundary } ); } } }; function handleNavItemNavigation(e, toggles, active2) { var _a, _b, _c; const { current, keyCode } = e; let next = -1; if (keyCode === keyMap.HOME) { next = 0; } else if (keyCode === keyMap.END) { next = "last"; } else if (keyCode === keyMap.LEFT) { next = "previous"; } else if (keyCode === keyMap.RIGHT) { next = "next"; } else if (keyCode === keyMap.TAB) { (_a = active2.targetEl) == null ? void 0 : _a.focus(); (_b = active2.hide) == null ? void 0 : _b.call(active2, false); } if (~next) { e.preventDefault(); (_c = active2.hide) == null ? void 0 : _c.call(active2, false); toggles[getIndex(next, toggles, toggles.indexOf(active2.targetEl || current))].focus(); } } function preventInitialPointerEnter(el) { const off = () => handlers.forEach((handler) => handler()); const handlers = [ once(el.ownerDocument, pointerMove$1, (e) => el.contains(e.target) || off()), on(el, `mouseenter ${pointerEnter}`, (e) => e.stopPropagation(), { capture: true }), on(el, `mouseleave ${pointerLeave}`, off, { capture: true }) ]; } var formCustom = { mixins: [Class], args: "target", props: { target: Boolean }, data: { target: false }, computed: { input: (_, $el) => $(selInput, $el), state() { return this.input.nextElementSibling; }, target({ target }, $el) { return target && (target === true && parent(this.input) === $el && this.input.nextElementSibling || $(target, $el)); } }, update() { var _a; const { target, input } = this; if (!target) { return; } let option; const prop = isInput(target) ? "value" : "textContent"; const prev = target[prop]; const value = ((_a = input.files) == null ? void 0 : _a[0]) ? input.files[0].name : matches(input, "select") && (option = $$("option", input).filter((el) => el.selected)[0]) ? option.textContent : input.value; if (prev !== value) { target[prop] = value; } }, events: [ { name: "change", handler() { this.$emit(); } }, { name: "reset", el: ({ $el }) => $el.closest("form"), handler() { this.$emit(); } } ] }; var grid = { extends: Margin, mixins: [Class], name: "grid", props: { masonry: Boolean, parallax: String, parallaxStart: String, parallaxEnd: String, parallaxJustify: Boolean }, data: { margin: "uk-grid-margin", clsStack: "uk-grid-stack", masonry: false, parallax: 0, parallaxStart: 0, parallaxEnd: 0, parallaxJustify: false }, connected() { this.masonry && addClass(this.$el, "uk-flex-top", "uk-flex-wrap-top"); }, observe: scroll$1({ filter: ({ parallax, parallaxJustify }) => parallax || parallaxJustify }), update: [ { write({ rows }) { toggleClass(this.$el, this.clsStack, !rows.some((row) => row.length > 1)); }, events: ["resize"] }, { read(data) { const { rows } = data; let { masonry, parallax, parallaxJustify, margin } = this; parallax = Math.max(0, toPx(parallax)); if (!(masonry || parallax || parallaxJustify) || positionedAbsolute(rows) || rows[0].some( (el, i) => rows.some((row) => row[i] && row[i].offsetWidth !== el.offsetWidth) )) { return data.translates = data.scrollColumns = false; } let gutter = getGutter(rows, margin); let columns; let translates; if (masonry) { [columns, translates] = applyMasonry(rows, gutter, masonry === "next"); } else { columns = transpose(rows); } const columnHeights = columns.map( (column) => sumBy(column, "offsetHeight") + gutter * (column.length - 1) ); const height = Math.max(0, ...columnHeights); let scrollColumns; let parallaxStart; let parallaxEnd; if (parallax || parallaxJustify) { scrollColumns = columnHeights.map( (hgt, i) => parallaxJustify ? height - hgt + parallax : parallax / (i % 2 || 8) ); if (!parallaxJustify) { parallax = Math.max( ...columnHeights.map((hgt, i) => hgt + scrollColumns[i] - height) ); } parallaxStart = toPx(this.parallaxStart, "height", this.$el, true); parallaxEnd = toPx(this.parallaxEnd, "height", this.$el, true); } return { columns, translates, scrollColumns, parallaxStart, parallaxEnd, padding: parallax, height: translates ? height : "" }; }, write({ height, padding }) { css(this.$el, "paddingBottom", padding || ""); height !== false && css(this.$el, "height", height); }, events: ["resize"] }, { read({ rows, scrollColumns, parallaxStart, parallaxEnd }) { return { scrolled: scrollColumns && !positionedAbsolute(rows) ? scrolledOver(this.$el, parallaxStart, parallaxEnd) : false }; }, write({ columns, scrolled, scrollColumns, translates }) { if (!scrolled && !translates) { return; } columns.forEach( (column, i) => column.forEach((el, j) => { let [x, y] = translates && translates[i][j] || [0, 0]; if (scrolled) { y += scrolled * scrollColumns[i]; } css(el, "transform", `translate(${x}px, ${y}px)`); }) ); }, events: ["scroll", "resize"] } ] }; function positionedAbsolute(rows) { return rows.flat().some((el) => css(el, "position") === "absolute"); } function applyMasonry(rows, gutter, next) { const columns = []; const translates = []; const columnHeights = Array(rows[0].length).fill(0); let rowHeights = 0; for (let row of rows) { if (isRtl) { row.reverse(); } let height = 0; for (const j in row) { const { offsetWidth, offsetHeight } = row[j]; const index = next ? j : columnHeights.indexOf(Math.min(...columnHeights)); push(columns, index, row[j]); push(translates, index, [ (index - j) * offsetWidth * (isRtl ? -1 : 1), columnHeights[index] - rowHeights ]); columnHeights[index] += offsetHeight + gutter; height = Math.max(height, offsetHeight); } rowHeights += height + gutter; } return [columns, translates]; } function getGutter(rows, cls) { const node = rows.flat().find((el) => hasClass(el, cls)); return toFloat(node ? css(node, "marginTop") : css(rows[0][0], "paddingLeft")); } function transpose(rows) { const columns = []; for (const row of rows) { for (const i in row) { push(columns, i, row[i]); } } return columns; } function push(array, index, value) { if (!array[index]) { array[index] = []; } array[index].push(value); } var heightMatch = { args: "target", props: { target: String, row: Boolean }, data: { target: "> *", row: true }, computed: { elements: ({ target }, $el) => $$(target, $el) }, observe: resize({ target: ({ $el, elements }) => elements.reduce((elements2, el) => elements2.concat(el, ...el.children), [$el]) }), events: { // Hidden elements may change height when fonts load name: "loadingdone", el: () => document.fonts, handler() { this.$emit("resize"); } }, update: { read() { return { rows: (this.row ? getRows(this.elements) : [this.elements]).map(match) }; }, write({ rows }) { for (const { heights, elements } of rows) { elements.forEach((el, i) => css(el, "minHeight", heights[i])); } }, events: ["resize"] } }; function match(elements) { if (elements.length < 2) { return { heights: [""], elements }; } let heights = elements.map(getHeight); const max = Math.max(...heights); return { heights: elements.map((el, i) => heights[i].toFixed(2) === max.toFixed(2) ? "" : max), elements }; } function getHeight(element) { const style = pick(element.style, ["display", "minHeight"]); if (!isVisible(element)) { css(element, "display", "block", "important"); } css(element, "minHeight", ""); const height = dimensions$1(element).height - boxModelAdjust(element, "height", "content-box"); css(element, style); return height; } var heightPlaceholder = { args: "target", props: { target: String }, data: { target: "" }, computed: { target: { get: ({ target }, $el) => query(target, $el), observe: ({ target }) => target } }, observe: resize({ target: ({ target }) => target }), update: { read() { return this.target ? { height: this.target.offsetHeight } : false; }, write({ height }) { css(this.$el, "minHeight", height); }, events: ["resize"] } }; var heightViewport = { props: { expand: Boolean, offsetTop: Boolean, offsetBottom: Boolean, min: Number, property: String }, data: { expand: false, offsetTop: false, offsetBottom: false, min: 0, property: "min-height" }, // check for offsetTop change observe: [ viewport({ filter: ({ expand }) => expand }), resize({ target: ({ $el }) => scrollParents($el) }) ], update: { read() { if (!isVisible(this.$el)) { return false; } let minHeight = ""; const box = boxModelAdjust(this.$el, "height", "content-box"); const { body, scrollingElement } = document; const scrollElement = scrollParent(this.$el); const { height: viewportHeight } = offsetViewport( scrollElement === body ? scrollingElement : scrollElement ); const isScrollingElement = scrollingElement === scrollElement || body === scrollElement; minHeight = `calc(${isScrollingElement ? "100vh" : `${viewportHeight}px`}`; if (this.expand) { const diff = dimensions$1(scrollElement).height - dimensions$1(this.$el).height; minHeight += ` - ${diff}px`; } else { if (this.offsetTop) { if (isScrollingElement) { const offsetTopEl = this.offsetTop === true ? this.$el : query(this.offsetTop, this.$el); const { top } = offset(offsetTopEl); minHeight += top > 0 && top < viewportHeight / 2 ? ` - ${top}px` : ""; } else { minHeight += ` - ${boxModelAdjust(scrollElement, "height", css(scrollElement, "boxSizing"))}px`; } } if (this.offsetBottom === true) { minHeight += ` - ${dimensions$1(this.$el.nextElementSibling).height}px`; } else if (isNumeric(this.offsetBottom)) { minHeight += ` - ${this.offsetBottom}vh`; } else if (this.offsetBottom && endsWith(this.offsetBottom, "px")) { minHeight += ` - ${toFloat(this.offsetBottom)}px`; } else if (isString(this.offsetBottom)) { minHeight += ` - ${dimensions$1(query(this.offsetBottom, this.$el)).height}px`; } } minHeight += `${box ? ` - ${box}px` : ""})`; return { minHeight }; }, write({ minHeight }) { css(this.$el, this.property, `max(${this.min || 0}px, ${minHeight})`); }, events: ["resize"] } }; var closeIcon = "<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\"><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"1\" y1=\"1\" x2=\"13\" y2=\"13\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"13\" y1=\"1\" x2=\"1\" y2=\"13\"/></svg>"; var closeLarge = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" x1=\"1\" y1=\"1\" x2=\"19\" y2=\"19\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" x1=\"19\" y1=\"1\" x2=\"1\" y2=\"19\"/></svg>"; var dropParentIcon = "<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 3.5 6 8.5 11 3.5\"/></svg>"; var marker = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"><rect width=\"1\" height=\"11\" x=\"9\" y=\"4\"/><rect width=\"11\" height=\"1\" x=\"4\" y=\"9\"/></svg>"; var navParentIconLarge = "<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 4 7 10 13 4\"/></svg>"; var navParentIcon = "<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 3.5 6 8.5 11 3.5\"/></svg>"; var navbarParentIcon = "<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 3.5 6 8.5 11 3.5\"/></svg>"; var navbarToggleIcon = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"><style>.uk-navbar-toggle-icon svg>[class*="line-"]{transition:0.2s ease-in-out;transition-property:transform, opacity;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg>.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{transform:translateY(-6px) scaleX(0)}</style><rect width=\"20\" height=\"2\" y=\"3\" class=\"line-1\"/><rect width=\"20\" height=\"2\" y=\"9\" class=\"line-2\"/><rect width=\"20\" height=\"2\" y=\"9\" class=\"line-3\"/><rect width=\"20\" height=\"2\" y=\"15\" class=\"line-4\"/></svg>"; var overlayIcon = "<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\"><rect width=\"1\" height=\"40\" x=\"19\" y=\"0\"/><rect width=\"40\" height=\"1\" x=\"0\" y=\"19\"/></svg>"; var paginationNext = "<svg width=\"7\" height=\"12\" viewBox=\"0 0 7 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" points=\"1 1 6 6 1 11\"/></svg>"; var paginationPrevious = "<svg width=\"7\" height=\"12\" viewBox=\"0 0 7 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" points=\"6 1 1 6 6 11\"/></svg>"; var searchIcon = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"9\" cy=\"9\" r=\"7\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M14,14 L18,18 L14,14 Z\"/></svg>"; var searchLarge = "<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.8\" cx=\"17.5\" cy=\"17.5\" r=\"16.5\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.8\" x1=\"38\" y1=\"39\" x2=\"29\" y2=\"30\"/></svg>"; var searchMedium = "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"10.5\" cy=\"10.5\" r=\"9.5\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"23\" y1=\"23\" x2=\"17\" y2=\"17\"/></svg>"; var slidenavNextLarge = "<svg width=\"25\" height=\"40\" viewBox=\"0 0 25 40\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"2\" points=\"4.002,38.547 22.527,20.024 4,1.5\"/></svg>"; var slidenavNext = "<svg width=\"14\" height=\"24\" viewBox=\"0 0 14 24\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" points=\"1.225,23 12.775,12 1.225,1\"/></svg>"; var slidenavPreviousLarge = "<svg width=\"25\" height=\"40\" viewBox=\"0 0 25 40\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"2\" points=\"20.527,1.5 2,20.024 20.525,38.547\"/></svg>"; var slidenavPrevious = "<svg width=\"14\" height=\"24\" viewBox=\"0 0 14 24\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" points=\"12.775,1 1.225,12 12.775,23\"/></svg>"; var spinner = "<svg width=\"30\" height=\"30\" viewBox=\"0 0 30 30\"><circle fill=\"none\" stroke=\"#000\" cx=\"15\" cy=\"15\" r=\"14\"/></svg>"; var totop = "<svg width=\"18\" height=\"10\" viewBox=\"0 0 18 10\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" points=\"1 9 9 1 17 9\"/></svg>"; var Svg = { args: "src", props: { width: Number, height: Number, ratio: Number }, data: { ratio: 1 }, connected() { this.svg = this.getSvg().then((el) => { if (!this._connected) { return; } const svg = insertSVG(el, this.$el); if (this.svgEl && svg !== this.svgEl) { remove$1(this.svgEl); } applyWidthAndHeight.call(this, svg, el); return this.svgEl = svg; }, noop); }, disconnected() { this.svg.then((svg) => { if (this._connected) { return; } if (isVoidElement(this.$el)) { this.$el.hidden = false; } remove$1(svg); this.svgEl = null; }); this.svg = null; }, methods: { async getSvg() { } } }; function insertSVG(el, root) { if (isVoidElement(root) || isTag(root, "canvas")) { root.hidden = true; const next = root.nextElementSibling; return equals(el, next) ? next : after(root, el); } const last = root.lastElementChild; return equals(el, last) ? last : append(root, el); } function equals(el, other) { return isTag(el, "svg") && isTag(other, "svg") && el.innerHTML === other.innerHTML; } function applyWidthAndHeight(el, ref) { const props = ["width", "height"]; let dimensions = props.map((prop) => this[prop]); if (!dimensions.some((val) => val)) { dimensions = props.map((prop) => attr(ref, prop)); } const viewBox = attr(ref, "viewBox"); if (viewBox && !dimensions.some((val) => val)) { dimensions = viewBox.split(" ").slice(2); } dimensions.forEach((val, i) => attr(el, props[i], toFloat(val) * this.ratio || null)); } function parseSVG(svg, icon) { if (icon && includes(svg, "<symbol")) { svg = parseSymbols(svg)[icon] || svg; } return toNodes(fragment(svg)).filter(isElement)[0]; } const symbolRe = /<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g; const parseSymbols = memoize(function(svg) { const symbols = {}; let match; while (match = symbolRe.exec(svg)) { symbols[match[3]] = `<svg ${match[1]}svg>`; } return symbols; }); const icons = { spinner, totop, marker, "close-icon": closeIcon, "close-large": closeLarge, "drop-parent-icon": dropParentIcon, "nav-parent-icon": navParentIcon, "nav-parent-icon-large": navParentIconLarge, "navbar-parent-icon": navbarParentIcon, "navbar-toggle-icon": navbarToggleIcon, "overlay-icon": overlayIcon, "pagination-next": paginationNext, "pagination-previous": paginationPrevious, "search-icon": searchIcon, "search-medium": searchMedium, "search-large": searchLarge, "search-toggle-icon": searchIcon, "slidenav-next": slidenavNext, "slidenav-next-large": slidenavNextLarge, "slidenav-previous": slidenavPrevious, "slidenav-previous-large": slidenavPreviousLarge }; const Icon = { install: install$1, mixins: [Svg], args: "icon", props: { icon: String }, isIcon: true, beforeConnect() { addClass(this.$el, "uk-icon"); }, async connected() { const svg = await this.svg; if (svg) { svg.ariaHidden = true; } }, methods: { async getSvg() { const icon = getIcon(this.icon); if (!icon) { throw "Icon not found."; } return icon; } } }; const IconComponent = { args: false, extends: Icon, data: (vm) => ({ icon: hyphenate(vm.constructor.options.name) }), beforeConnect() { addClass(this.$el, this.$options.id); } }; const NavParentIcon = { extends: IconComponent, beforeConnect() { const icon = this.$props.icon; this.icon = this.$el.closest(".uk-nav-primary") ? `${icon}-large` : icon; } }; const Search = { extends: IconComponent, mixins: [I18n], i18n: { toggle: "Open Search", submit: "Submit Search" }, beforeConnect() { const isToggle = hasClass(this.$el, "uk-search-toggle") || hasClass(this.$el, "uk-navbar-toggle"); this.icon = isToggle ? "search-toggle-icon" : hasClass(this.$el, "uk-search-icon") && this.$el.closest(".uk-search-large") ? "search-large" : this.$el.closest(".uk-search-medium") ? "search-medium" : this.$props.icon; if (hasAttr(this.$el, "aria-label")) { return; } if (isToggle) { this.$el.ariaLabel = this.t("toggle"); } else { const button = this.$el.closest("a,button"); if (button) { button.ariaLabel = this.t("submit"); } } } }; const Spinner = { extends: IconComponent, beforeConnect() { this.$el.role = "status"; }, methods: { async getSvg() { const icon = await Icon.methods.getSvg.call(this); if (this.ratio !== 1) { css($("circle", icon), "strokeWidth", 1 / this.ratio); } return icon; } } }; const ButtonComponent = { extends: IconComponent, mixins: [I18n], beforeConnect() { const button = this.$el.closest("a,button"); attr(button, "role", this.role !== null && isTag(button, "a") ? "button" : this.role); const label = this.t("label"); if (label && !hasAttr(button, "aria-label")) { attr(button, "aria-label", label); } } }; const Slidenav = { extends: ButtonComponent, beforeConnect() { addClass(this.$el, "uk-slidenav"); const icon = this.$props.icon; this.icon = hasClass(this.$el, "uk-slidenav-large") ? `${icon}-large` : icon; } }; const NavbarToggleIcon = { extends: ButtonComponent, i18n: { label: "Open menu" }, beforeConnect() { const button = this.$el.closest("a,button"); if (button) { button.ariaExpanded = false; } } }; const Close = { extends: ButtonComponent, i18n: { label: "Close" }, beforeConnect() { this.icon = `close-${hasClass(this.$el, "uk-close-large") ? "large" : "icon"}`; } }; const Marker = { extends: ButtonComponent, i18n: { label: "Open" } }; const Totop = { extends: ButtonComponent, i18n: { label: "Back to top" } }; const PaginationNext = { extends: ButtonComponent, i18n: { label: "Next page" }, data: { role: null } }; const PaginationPrevious = { extends: ButtonComponent, i18n: { label: "Previous page" }, data: { role: null } }; const parsed = {}; function install$1(UIkit) { UIkit.icon.add = (name, svg) => { const added = isString(name) ? { [name]: svg } : name; each(added, (svg2, name2) => { icons[name2] = svg2; delete parsed[name2]; }); if (UIkit._initialized) { apply( document.body, (el) => each(UIkit.getComponents(el), (cmp) => { cmp.$options.isIcon && cmp.icon in added && cmp.$reset(); }) ); } }; } const aliases = { twitter: "x" }; function getIcon(icon) { icon = aliases[icon] || icon; if (!icons[icon]) { return null; } if (!parsed[icon]) { parsed[icon] = parseSVG(icons[applyRtl(icon)] || icons[icon]); } return parsed[icon].cloneNode(true); } function applyRtl(icon) { return isRtl ? swap(swap(icon, "left", "right"), "previous", "next") : icon; } var inverse = { props: { target: String, selActive: String }, data: { target: false, selActive: false }, connected() { this.isIntersecting = 0; }, computed: { target: ({ target }, $el) => target ? $$(target, $el) : $el }, watch: { target: { handler() { queueMicrotask(() => this.$reset()); }, immediate: false } }, observe: [ intersection({ handler(entries) { this.isIntersecting = entries.reduce( (sum, { isIntersecting }) => sum + (isIntersecting ? 1 : this.isIntersecting ? -1 : 0), this.isIntersecting ); this.$emit(); }, target: ({ target }) => target, args: { intersecting: false } }), mutation({ target: ({ target }) => target, options: { attributes: true, attributeFilter: ["class"] } }), { target: ({ target }) => target, observe: (target, handler) => { const observer = observeResize( [...toNodes(target), document.documentElement], handler ); const listener = [ on(document, "scroll itemshown itemhidden", handler, { passive: true, capture: true }), on(document, "show hide transitionstart", (e) => { handler(); return observer.observe(e.target); }), on(document, "shown hidden transitionend transitioncancel", (e) => { handler(); return observer.unobserve(e.target); }) ]; return { observe: observer.observe.bind(observer), unobserve: observer.unobserve.bind(observer), disconnect() { observer.disconnect(); listener.map((off) => off()); } }; }, handler() { this.$emit(); } } ], update: { read() { if (!this.isIntersecting) { return false; } for (const target of toNodes(this.target)) { let color = !this.selActive || matches(target, this.selActive) ? findTargetColor(target) : ""; if (color !== false) { replaceClass(target, "uk-light uk-dark", color); } } } } }; function findTargetColor(target) { const dim = dimensions$1(target); const viewport = dimensions$1(window); if (!intersectRect(dim, viewport)) { return false; } const { left, top, height, width } = dim; let last; for (const percent of [0.25, 0.5, 0.75]) { const elements = target.ownerDocument.elementsFromPoint( Math.max(0, Math.min(left + width * percent, viewport.width - 1)), Math.max(0, Math.min(top + height / 2, viewport.height - 1)) ); for (const element of elements) { if (target.contains(element) || !checkVisibility(element) || element.closest('[class*="-leave"]') && elements.some((el) => element !== el && matches(el, '[class*="-enter"]'))) { continue; } const color = css(element, "--uk-inverse"); if (color) { if (color === last) { return `uk-${color}`; } last = color; break; } } } return last ? `uk-${last}` : ""; } function checkVisibility(element) { if (css(element, "visibility") !== "visible") { return false; } while (element) { if (css(element, "opacity") === "0") { return false; } element = parent(element); } return true; } var leader = { mixins: [Class, Media], props: { fill: String }, data: { fill: "", clsWrapper: "uk-leader-fill", clsHide: "uk-leader-hide", attrFill: "data-fill" }, computed: { fill: ({ fill }, $el) => fill || css($el, "--uk-leader-fill-content") }, connected() { [this.wrapper] = wrapInner(this.$el, `<span class="${this.clsWrapper}">`); }, disconnected() { unwrap(this.wrapper.childNodes); }, observe: resize(), update: { read() { const width = Math.trunc(this.$el.offsetWidth / 2); return { width, fill: this.fill, hide: !this.matchMedia }; }, write({ width, fill, hide }) { toggleClass(this.wrapper, this.clsHide, hide); attr(this.wrapper, this.attrFill, new Array(width).join(fill)); }, events: ["resize"] } }; var modal = { install, mixins: [Modal], data: { clsPage: "uk-modal-page", selPanel: ".uk-modal-dialog", selClose: '[class*="uk-modal-close"]' }, events: [ { name: "fullscreenchange webkitendfullscreen", capture: true, handler(e) { if (isTag(e.target, "video") && this.isToggled() && !document.fullscreenElement) { this.hide(); } } }, { name: "show", self: true, handler() { if (hasClass(this.panel, "uk-margin-auto-vertical")) { addClass(this.$el, "uk-flex"); } else { css(this.$el, "display", "block"); } height(this.$el); } }, { name: "hidden", self: true, handler() { css(this.$el, "display", ""); removeClass(this.$el, "uk-flex"); } } ] }; function install({ modal }) { modal.dialog = function(content, options) { const dialog = modal($(`<div><div class="uk-modal-dialog">${content}</div></div>`), { stack: true, role: "alertdialog", ...options }); dialog.show(); on( dialog.$el, "hidden", async () => { await Promise.resolve(); dialog.$destroy(true); }, { self: true } ); return dialog; }; modal.alert = function(message, options) { return openDialog( ({ i18n }) => `<div class="uk-modal-body">${isString(message) ? message : html(message)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" type="button" autofocus>${i18n.ok}</button> </div>`, options ); }; modal.confirm = function(message, options) { return openDialog( ({ i18n }) => `<form> <div class="uk-modal-body">${isString(message) ? message : html(message)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${i18n.cancel}</button> <button class="uk-button uk-button-primary" autofocus>${i18n.ok}</button> </div> </form>`, options, () => Promise.reject() ); }; modal.prompt = function(message, value, options) { const promise = openDialog( ({ i18n }) => `<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>${isString(message) ? message : html(message)}</label> <input class="uk-input" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${i18n.cancel}</button> <button class="uk-button uk-button-primary">${i18n.ok}</button> </div> </form>`, options, () => null, () => input.value ); const { $el } = promise.dialog; const input = $("input", $el); input.value = value || ""; on($el, "show", () => input.select()); return promise; }; modal.i18n = { ok: "Ok", cancel: "Cancel" }; function openDialog(tmpl, options, hideFn = noop, submitFn = noop) { options = { bgClose: false, escClose: true, ...options, i18n: { ...modal.i18n, ...options == null ? void 0 : options.i18n } }; const dialog = modal.dialog(tmpl(options), options); return assign( new Promise((resolve) => { const off = on(dialog.$el, "hide", () => resolve(hideFn())); on(dialog.$el, "submit", "form", (e) => { e.preventDefault(); resolve(submitFn(dialog)); off(); dialog.hide(); }); }), { dialog } ); } } var nav = { extends: Accordion, data: { targets: "> .uk-parent", toggle: "> a", content: "> ul" } }; const clsNavbarTransparent = "uk-navbar-transparent"; var navbar = { extends: Dropnav, props: { dropbarTransparentMode: Boolean }, data: { delayShow: 200, clsDrop: "uk-navbar-dropdown", selNavItem: ".uk-navbar-nav > li > a,a.uk-navbar-item,button.uk-navbar-item,.uk-navbar-item a,.uk-navbar-item button,.uk-navbar-toggle", // Simplify with :where() selector once browser target is Safari 14+ dropbarTransparentMode: false }, computed: { navbarContainer: (_, $el) => $el.closest(".uk-navbar-container") }, watch: { items() { const justify = hasClass(this.$el, "uk-navbar-justify"); const containers = $$(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right", this.$el); for (const container of containers) { const items = justify ? $$(".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle", container).length : ""; css(container, "flexGrow", items); } } }, events: [ { name: "show", el: ({ dropContainer }) => dropContainer, handler({ target }) { if (this.getTransparentMode(target) === "remove" && hasClass(this.navbarContainer, clsNavbarTransparent)) { removeClass(this.navbarContainer, clsNavbarTransparent); this._transparent = true; } } }, { name: "hide", el: ({ dropContainer }) => dropContainer, async handler() { await awaitMacroTask(); if (this._transparent && (!active || !this.dropContainer.contains(active.$el))) { addClass(this.navbarContainer, clsNavbarTransparent); this._transparent = null; } } } ], methods: { getTransparentMode(el) { if (!this.navbarContainer) { return; } if (this.dropbar && this.isDropbarDrop(el)) { return this.dropbarTransparentMode; } const drop = this.getDropdown(el); if (drop && hasClass(el, "uk-dropbar")) { return drop.inset ? "behind" : "remove"; } }, getDropbarOffset(offsetTop) { const { top, height } = offset(this.navbarContainer); return top + (this.dropbarTransparentMode === "behind" ? 0 : height + offsetTop); } } }; function awaitMacroTask() { return new Promise((resolve) => setTimeout(resolve)); } var offcanvas = { mixins: [Modal], args: "mode", props: { mode: String, flip: Boolean, overlay: Boolean, swiping: Boolean }, data: { mode: "slide", flip: false, overlay: false, clsPage: "uk-offcanvas-page", clsContainer: "uk-offcanvas-container", selPanel: ".uk-offcanvas-bar", clsFlip: "uk-offcanvas-flip", clsContainerAnimation: "uk-offcanvas-container-animation", clsSidebarAnimation: "uk-offcanvas-bar-animation", clsMode: "uk-offcanvas", clsOverlay: "uk-offcanvas-overlay", selClose: ".uk-offcanvas-close", container: false, swiping: true }, computed: { clsFlip: ({ flip, clsFlip }) => flip ? clsFlip : "", clsOverlay: ({ overlay, clsOverlay }) => overlay ? clsOverlay : "", clsMode: ({ mode, clsMode }) => `${clsMode}-${mode}`, clsSidebarAnimation: ({ mode, clsSidebarAnimation }) => mode === "none" || mode === "reveal" ? "" : clsSidebarAnimation, clsContainerAnimation: ({ mode, clsContainerAnimation }) => mode !== "push" && mode !== "reveal" ? "" : clsContainerAnimation, transitionElement({ mode }) { return mode === "reveal" ? parent(this.panel) : this.panel; } }, observe: swipe({ filter: ({ swiping }) => swiping }), update: { read() { if (this.isToggled() && !isVisible(this.$el)) { this.hide(); } }, events: ["resize"] }, events: [ { name: "touchmove", self: true, passive: false, filter: ({ overlay }) => overlay, handler(e) { e.cancelable && e.preventDefault(); } }, { name: "show", self: true, handler() { if (this.mode === "reveal" && !hasClass(parent(this.panel), this.clsMode)) { addClass(wrapAll(this.panel, "<div>"), this.clsMode); } const { body, scrollingElement } = document; addClass(body, this.clsContainer, this.clsFlip); css(body, "touchAction", "pan-y pinch-zoom"); css(this.$el, "display", "block"); css(this.panel, "maxWidth", scrollingElement.clientWidth); addClass(this.$el, this.clsOverlay); addClass( this.panel, this.clsSidebarAnimation, this.mode === "reveal" ? "" : this.clsMode ); height(body); addClass(body, this.clsContainerAnimation); this.clsContainerAnimation && suppressUserScale(); } }, { name: "hide", self: true, handler() { removeClass(document.body, this.clsContainerAnimation); css(document.body, "touchAction", ""); } }, { name: "hidden", self: true, handler() { this.clsContainerAnimation && resumeUserScale(); if (this.mode === "reveal" && hasClass(parent(this.panel), this.clsMode)) { unwrap(this.panel); } removeClass(this.panel, this.clsSidebarAnimation, this.clsMode); removeClass(this.$el, this.clsOverlay); css(this.$el, "display", ""); css(this.panel, "maxWidth", ""); removeClass(document.body, this.clsContainer, this.clsFlip); } }, { name: "swipeLeft swipeRight", handler(e) { if (this.isToggled() && endsWith(e.type, "Left") ^ this.flip) { this.hide(); } } } ] }; function suppressUserScale() { getViewport().content += ",user-scalable=0"; } function resumeUserScale() { const viewport = getViewport(); viewport.content = viewport.content.replace(/,user-scalable=0$/, ""); } function getViewport() { return $('meta[name="viewport"]', document.head) || append(document.head, '<meta name="viewport">'); } var overflowAuto = { mixins: [Class], props: { selContainer: String, selContent: String, minHeight: Number }, data: { selContainer: ".uk-modal", selContent: ".uk-modal-dialog", minHeight: 150 }, computed: { container: ({ selContainer }, $el) => $el.closest(selContainer), content: ({ selContent }, $el) => $el.closest(selContent) }, observe: resize({ target: ({ container, content }) => [container, content] }), update: { read() { if (!this.content || !this.container || !isVisible(this.$el)) { return false; } return { max: Math.max( this.minHeight, height(this.container) - (dimensions$1(this.content).height - height(this.$el)) ) }; }, write({ max }) { css(this.$el, { minHeight: this.minHeight, maxHeight: max }); }, events: ["resize"] } }; var responsive = { props: ["width", "height"], connected() { addClass(this.$el, "uk-responsive-width"); css(this.$el, "aspectRatio", `${this.width}/${this.height}`); } }; var scroll = { props: { offset: Number }, data: { offset: 0 }, connected() { registerClick(this); }, disconnected() { unregisterClick(this); }, methods: { async scrollTo(el) { el = el && $(el) || document.body; if (trigger(this.$el, "beforescroll", [this, el])) { await scrollIntoView(el, { offset: this.offset }); trigger(this.$el, "scrolled", [this, el]); } } } }; const instances = /* @__PURE__ */ new Set(); function registerClick(cmp) { if (!instances.size) { on(document, "click", clickHandler); } instances.add(cmp); } function unregisterClick(cmp) { instances.delete(cmp); if (!instances.size) { off(document, "click", clickHandler); } } function clickHandler(e) { if (e.defaultPrevented) { return; } for (const instance of instances) { if (instance.$el.contains(e.target) && isSameSiteAnchor(instance.$el)) { e.preventDefault(); if (window.location.href !== instance.$el.href) { window.history.pushState({}, "", instance.$el.href); } instance.scrollTo(getTargetedElement(instance.$el)); } } } const clsInView = "uk-scrollspy-inview"; var scrollspy = { args: "cls", props: { cls: String, target: String, hidden: Boolean, margin: String, repeat: Boolean, delay: Number }, data: () => ({ cls: "", target: false, hidden: true, margin: "-1px", repeat: false, delay: 0 }), computed: { elements: ({ target }, $el) => target ? $$(target, $el) : [$el] }, watch: { elements(elements) { if (this.hidden) { css(filter$1(elements, `:not(.${clsInView})`), "opacity", 0); } } }, connected() { this.elementData = /* @__PURE__ */ new Map(); }, disconnected() { for (const [el, state] of this.elementData.entries()) { removeClass(el, clsInView, (state == null ? void 0 : state.cls) || ""); } delete this.elementData; }, observe: intersection({ target: ({ elements }) => elements, handler(records) { const elements = this.elementData; for (const { target: el, isIntersecting } of records) { if (!elements.has(el)) { elements.set(el, { cls: data(el, "uk-scrollspy-class") || this.cls }); } const state = elements.get(el); if (!this.repeat && state.show) { continue; } state.show = isIntersecting; } this.$emit(); }, options: ({ margin }) => ({ rootMargin: margin }), args: { intersecting: false } }), update: [ { write(data) { for (const [el, state] of this.elementData.entries()) { if (state.show && !state.inview && !state.queued) { state.queued = true; data.promise = (data.promise || Promise.resolve()).then(() => new Promise((resolve) => setTimeout(resolve, this.delay))).then(() => { this.toggle(el, true); setTimeout(() => { state.queued = false; this.$emit(); }, 300); }); } else if (!state.show && state.inview && !state.queued && this.repeat) { this.toggle(el, false); } } } } ], methods: { toggle(el, inview) { var _a, _b; const state = (_a = this.elementData) == null ? void 0 : _a.get(el); if (!state) { return; } (_b = state.off) == null ? void 0 : _b.call(state); css(el, "opacity", !inview && this.hidden ? 0 : ""); toggleClass(el, clsInView, inview); toggleClass(el, state.cls); let match; if (match = state.cls.match(/\buk-animation-[\w-]+/g)) { const removeAnimationClasses = () => removeClass(el, match); if (inview) { state.off = once(el, "animationcancel animationend", removeAnimationClasses, { self: true }); } else { removeAnimationClasses(); } } trigger(el, inview ? "inview" : "outview"); state.inview = inview; } } }; var scrollspyNav = { props: { cls: String, closest: Boolean, scroll: Boolean, target: String, offset: Number }, data: { cls: "uk-active", closest: false, scroll: false, target: 'a[href]:not([role="button"])', offset: 0 }, computed: { links: { get({ target }, $el) { return $$(target, $el).filter(getTargetedElement); }, observe: () => "*" }, targets() { return this.links.map((el) => getTargetedElement(el)); }, elements({ closest }) { return this.links.map((el) => el.closest(closest || "*")); } }, watch: { links(links) { if (this.scroll) { this.$create("scroll", links, { offset: this.offset }); } } }, observe: [intersection(), scroll$1()], update: [ { read() { const { targets } = this; const { length } = targets; if (!length || !isVisible(this.$el)) { return false; } const scrollElement = scrollParent(targets, true); const { scrollTop, scrollHeight } = scrollElement; const viewport = offsetViewport(scrollElement); const max = scrollHeight - viewport.height; let active = false; if (scrollTop >= max) { active = length - 1; } else { const offsetBy = this.offset + dimensions$1(getCoveringElement()).height + viewport.height * 0.1; for (let i = 0; i < targets.length; i++) { if (offset(targets[i]).top - viewport.top - offsetBy > 0) { break; } active = +i; } } return { active }; }, write({ active }) { const { elements } = this; const changed = active !== false && !hasClass(elements[active], this.cls); this.links.forEach((el) => el.blur()); for (let i = 0; i < elements.length; i++) { toggleClass(elements[i], this.cls, +i === active); } if (changed) { trigger(this.$el, "active", [active, elements[active]]); } }, events: ["scroll", "resize"] } ] }; var sticky = { mixins: [Class, Media], props: { position: String, top: null, bottom: null, start: null, end: null, offset: String, offsetEnd: String, overflowFlip: Boolean, animation: String, clsActive: String, clsInactive: String, clsFixed: String, clsBelow: String, selTarget: String, showOnUp: Boolean, targetOffset: Number }, data: { position: "top", top: false, bottom: false, start: false, end: false, offset: 0, offsetEnd: 0, overflowFlip: false, animation: "", clsActive: "uk-active", clsInactive: "", clsFixed: "uk-sticky-fixed", clsBelow: "uk-sticky-below", selTarget: "", showOnUp: false, targetOffset: false }, computed: { target: ({ selTarget }, $el) => selTarget && $(selTarget, $el) || $el }, connected() { this.start = coerce(this.start || this.top); this.end = coerce(this.end || this.bottom); this.placeholder = $("+ .uk-sticky-placeholder", this.$el) || $('<div class="uk-sticky-placeholder"></div>'); this.isFixed = false; this.setActive(false); }, beforeDisconnect() { if (this.isFixed) { this.hide(); removeClass(this.target, this.clsInactive); } reset(this.$el); remove$1(this.placeholder); this.placeholder = null; }, observe: [ viewport(), scroll$1({ target: () => document.scrollingElement }), resize({ target: ({ $el }) => [$el, getVisibleParent($el), document.scrollingElement], handler(entries) { this.$emit( this._data.resized && entries.some(({ target }) => target === getVisibleParent(this.$el)) ? "update" : "resize" ); this._data.resized = true; } }) ], events: [ { name: "load hashchange popstate", el: () => window, filter: ({ targetOffset }) => targetOffset !== false, handler() { const { scrollingElement } = document; if (!location.hash || scrollingElement.scrollTop === 0) { return; } setTimeout(() => { const targetOffset = offset($(location.hash)); const elOffset = offset(this.$el); if (this.isFixed && intersectRect(targetOffset, elOffset)) { scrollingElement.scrollTop = Math.ceil( targetOffset.top - elOffset.height - toPx(this.targetOffset, "height", this.placeholder) - toPx(this.offset, "height", this.placeholder) ); } }); } } ], update: [ { read({ height: height$1, width, margin, sticky }, types) { this.inactive = !this.matchMedia || !isVisible(this.$el) || !this.$el.offsetHeight; if (this.inactive) { return; } const dynamicViewport = height(window); const maxScrollHeight = Math.max( 0, document.scrollingElement.scrollHeight - dynamicViewport ); if (!maxScrollHeight) { this.inactive = true; return; } const hide = this.isFixed && types.has("update"); if (hide) { preventTransition(this.target); this.hide(); } if (!this.active) { ({ height: height$1, width } = dimensions$1(this.$el)); margin = css(this.$el, "margin"); } if (hide) { this.show(); } const viewport2 = toPx("100vh", "height"); let position = this.position; if (this.overflowFlip && height$1 > viewport2) { position = position === "top" ? "bottom" : "top"; } const referenceElement = this.isFixed ? this.placeholder : this.$el; let [offset$1, offsetEnd] = [this.offset, this.offsetEnd].map( (value) => toPx(value, "height", sticky ? this.$el : referenceElement) ); if (position === "bottom" && (height$1 < dynamicViewport || this.overflowFlip)) { offset$1 += dynamicViewport - height$1; } const elementBox = height$1 + offset$1 + offsetEnd; const overflow = this.overflowFlip ? 0 : Math.max(0, elementBox - viewport2); const topOffset = offset(referenceElement).top - // offset possible `transform: translateY` animation 'uk-animation-slide-top' while hiding new DOMMatrix(css(referenceElement, "transform")).m42; const elHeight = dimensions$1(this.$el).height; const start = (this.start === false ? topOffset : parseProp(this.start, this.$el, topOffset)) - offset$1; const end = this.end === false ? maxScrollHeight : Math.min( maxScrollHeight, parseProp(this.end, this.$el, topOffset + height$1, true) - elHeight - offset$1 + overflow ); sticky = !this.showOnUp && start + offset$1 === topOffset && end === Math.min( maxScrollHeight, parseProp(true, this.$el, 0, true) - elHeight - offset$1 + overflow ) && css(getVisibleParent(this.$el), "overflowY") !== "hidden"; return { start, end, offset: offset$1, overflow, height: height$1, elHeight, width, margin, top: offsetPosition(referenceElement)[0], sticky, viewport: viewport2, maxScrollHeight }; }, write({ height, width, margin, offset, sticky }) { if (this.inactive || sticky || !this.isFixed) { reset(this.$el); } if (this.inactive) { return; } if (sticky) { height = width = margin = 0; css(this.$el, { position: "sticky", top: offset }); } const { placeholder } = this; css(placeholder, { height, width, margin }); if (parent(placeholder) !== parent(this.$el) || sticky ^ index(placeholder) < index(this.$el)) { (sticky ? before : after)(this.$el, placeholder); placeholder.hidden = true; } }, events: ["resize"] }, { read({ scroll: prevScroll = 0, dir: prevDir = "down", overflow, overflowScroll = 0, start, end, elHeight, height, sticky, maxScrollHeight }) { const scroll2 = Math.min(document.scrollingElement.scrollTop, maxScrollHeight); const dir = prevScroll <= scroll2 ? "down" : "up"; const referenceElement = this.isFixed ? this.placeholder : this.$el; return { dir, prevDir, scroll: scroll2, prevScroll, below: scroll2 > offset(referenceElement).top + (sticky ? Math.min(height, elHeight) : height), offsetParentTop: offset(referenceElement.offsetParent).top, overflowScroll: clamp( overflowScroll + clamp(scroll2, start, end) - clamp(prevScroll, start, end), 0, overflow ) }; }, write(data, types) { const isScrollUpdate = types.has("scroll"); const { initTimestamp = 0, dir, prevDir, scroll: scroll2, prevScroll = 0, top, start, below } = data; if (scroll2 < 0 || scroll2 === prevScroll && isScrollUpdate || this.showOnUp && !isScrollUpdate && !this.isFixed) { return; } const now = Date.now(); if (now - initTimestamp > 300 || dir !== prevDir) { data.initScroll = scroll2; data.initTimestamp = now; } if (this.showOnUp && !this.isFixed && Math.abs(data.initScroll - scroll2) <= 30 && Math.abs(prevScroll - scroll2) <= 10) { return; } if (this.inactive || scroll2 < start || this.showOnUp && (scroll2 <= start || dir === "down" && isScrollUpdate || dir === "up" && !this.isFixed && !below)) { if (!this.isFixed) { if (Animation.inProgress(this.$el) && top > scroll2) { Animation.cancel(this.$el); this.hide(); } return; } if (this.animation && below) { if (hasClass(this.$el, "uk-animation-leave")) { return; } Animation.out(this.$el, this.animation).then(() => this.hide(), noop); } else { this.hide(); } } else if (this.isFixed) { this.update(); } else if (this.animation && below) { this.show(); Animation.in(this.$el, this.animation).catch(noop); } else { preventTransition(this.target); this.show(); } }, events: ["resize", "resizeViewport", "scroll"] } ], methods: { show() { this.isFixed = true; this.update(); this.placeholder.hidden = false; }, hide() { const { offset, sticky } = this._data; this.setActive(false); removeClass(this.$el, this.clsFixed, this.clsBelow); if (sticky) { css(this.$el, "top", offset); } else { reset(this.$el); } this.placeholder.hidden = true; this.isFixed = false; }, update() { let { width, scroll: scroll2 = 0, overflow, overflowScroll = 0, start, end, offset, offsetParentTop, sticky, below } = this._data; const active = start !== 0 || scroll2 > start; if (!sticky) { let position = "fixed"; if (scroll2 > end) { offset += end - offsetParentTop + overflowScroll - overflow; position = "absolute"; } css(this.$el, { position, width, marginTop: 0 }, "important"); } css(this.$el, "top", offset - overflowScroll); this.setActive(active); toggleClass(this.$el, this.clsBelow, below); addClass(this.$el, this.clsFixed); }, setActive(active) { const prev = this.active; this.active = active; if (active) { replaceClass(this.target, this.clsInactive, this.clsActive); prev !== active && trigger(this.$el, "active"); } else { replaceClass(this.target, this.clsActive, this.clsInactive); if (prev !== active) { preventTransition(this.target); trigger(this.$el, "inactive"); } } } } }; function parseProp(value, el, propOffset, padding) { if (!value) { return 0; } if (isNumeric(value) || isString(value) && value.match(/^-?\d/)) { return propOffset + toPx(value, "height", el, true); } else { const refElement = value === true ? getVisibleParent(el) : query(value, el); return offset(refElement).bottom - (padding && (refElement == null ? void 0 : refElement.contains(el)) ? toFloat(css(refElement, "paddingBottom")) + toFloat(css(refElement, "borderBottomWidth")) : 0); } } function coerce(value) { if (value === "true") { return true; } else if (value === "false") { return false; } return value; } function reset(el) { css(el, { position: "", top: "", marginTop: "", width: "" }); } const clsTransitionDisable = "uk-transition-disable"; function preventTransition(element) { if (!hasClass(element, clsTransitionDisable)) { addClass(element, clsTransitionDisable); requestAnimationFrame(() => removeClass(element, clsTransitionDisable)); } } function getVisibleParent(element) { while (element = parent(element)) { if (isVisible(element)) { return element; } } } var svg = { mixins: [Svg], args: "src", props: { src: String, icon: String, attributes: "list", strokeAnimation: Boolean }, data: { strokeAnimation: false }, observe: [ mutation({ async handler() { const svg = await this.svg; if (svg) { applyAttributes.call(this, svg); } }, options: { attributes: true, attributeFilter: ["id", "class", "style"] } }) ], async connected() { if (includes(this.src, "#")) { [this.src, this.icon] = this.src.split("#", 2); } const svg = await this.svg; if (svg) { applyAttributes.call(this, svg); if (this.strokeAnimation) { applyAnimation(svg); } } }, methods: { async getSvg() { if (isTag(this.$el, "img") && !this.$el.complete && this.$el.loading === "lazy") { await new Promise((resolve) => once(this.$el, "load", resolve)); } return parseSVG(await loadSVG(this.src), this.icon) || Promise.reject("SVG not found."); } } }; function applyAttributes(el) { const { $el } = this; addClass(el, attr($el, "class"), "uk-svg"); for (let i = 0; i < $el.style.length; i++) { const prop = $el.style[i]; css(el, prop, css($el, prop)); } for (const attribute in this.attributes) { const [prop, value] = this.attributes[attribute].split(":", 2); attr(el, prop, value); } el.ariaHidden = this.$el.ariaHidden; if (!this.$el.id) { removeAttr(el, "id"); } } const loadSVG = memoize(async (src) => { if (src) { const response = await fetch(src); if (response.headers.get("Content-Type") === "image/svg+xml") { return response.text(); } } return Promise.reject(); }); function applyAnimation(el) { const length = getMaxPathLength(el); if (length) { css(el, "--uk-animation-stroke", length); } } const selDisabled = ".uk-disabled *, .uk-disabled, [disabled]"; var Switcher = { mixins: [Togglable], args: "connect", props: { connect: String, toggle: String, itemNav: String, active: Number, followFocus: Boolean, swiping: Boolean }, data: { connect: "~.uk-switcher", toggle: "> * > :first-child", itemNav: false, active: 0, cls: "uk-active", attrItem: "uk-switcher-item", selVertical: ".uk-nav", followFocus: false, swiping: true }, computed: { connects: { get: ({ connect }, $el) => queryAll(connect, $el), observe: ({ connect }) => connect }, connectChildren() { return this.connects.map((el) => children(el)).flat(); }, toggles: ({ toggle }, $el) => $$(toggle, $el), children(_, $el) { return children($el).filter( (child) => this.toggles.some((toggle) => child.contains(toggle)) ); } }, watch: { connects(connects) { if (this.swiping) { css(connects, "touchAction", "pan-y pinch-zoom"); } this.$emit(); }, connectChildren() { let index = Math.max(0, this.index()); for (const el of this.connects) { children(el).forEach((child, i) => toggleClass(child, this.cls, i === index)); } this.$emit(); }, toggles(toggles) { this.$emit(); const active = this.index(); this.show(~active ? active : toggles[this.active] || toggles[0]); } }, connected() { this.$el.role = "tablist"; }, observe: [ lazyload({ targets: ({ connectChildren }) => connectChildren }), swipe({ target: ({ connects }) => connects, filter: ({ swiping }) => swiping }) ], events: [ { name: "click keydown", delegate: ({ toggle }) => toggle, handler(e) { if (!matches(e.current, selDisabled) && (e.type === "click" || e.keyCode === keyMap.SPACE)) { maybeDefaultPreventClick(e); this.show(e.current); } } }, { name: "keydown", delegate: ({ toggle }) => toggle, handler(e) { const { current, keyCode } = e; const isVertical = matches(this.$el, this.selVertical); let i = keyCode === keyMap.HOME ? 0 : keyCode === keyMap.END ? "last" : keyCode === keyMap.LEFT && !isVertical || keyCode === keyMap.UP && isVertical ? "previous" : keyCode === keyMap.RIGHT && !isVertical || keyCode === keyMap.DOWN && isVertical ? "next" : -1; if (~i) { e.preventDefault(); const toggles = this.toggles.filter((el) => !matches(el, selDisabled)); const next = toggles[getIndex(i, toggles, toggles.indexOf(current))]; next.focus(); if (this.followFocus) { this.show(next); } } } }, { name: "click", el: ({ $el, connects, itemNav }) => connects.concat(itemNav ? queryAll(itemNav, $el) : []), delegate: ({ attrItem }) => `[${attrItem}],[data-${attrItem}]`, handler(e) { if (e.target.closest("a,button")) { maybeDefaultPreventClick(e); this.show(data(e.current, this.attrItem)); } } }, { name: "swipeRight swipeLeft", filter: ({ swiping }) => swiping, el: ({ connects }) => connects, handler({ type }) { this.show(endsWith(type, "Left") ? "next" : "previous"); } } ], update() { var _a; for (const el of this.connects) { if (isTag(el, "ul")) { el.role = "presentation"; } } attr(children(this.$el), "role", "presentation"); for (const index in this.toggles) { const toggle = this.toggles[index]; const item = (_a = this.connects[0]) == null ? void 0 : _a.children[index]; toggle.role = "tab"; if (!item) { continue; } toggle.id = generateId(this, toggle); item.id = generateId(this, item); toggle.ariaControls = item.id; attr(item, { role: "tabpanel", "aria-labelledby": toggle.id }); } attr(this.$el, "aria-orientation", matches(this.$el, this.selVertical) ? "vertical" : null); }, methods: { index() { return findIndex(this.children, (el) => hasClass(el, this.cls)); }, show(item) { const toggles = this.toggles.filter((el) => !matches(el, selDisabled)); const prev = this.index(); const next = getIndex( !isNode(item) || includes(toggles, item) ? item : 0, toggles, getIndex(this.toggles[prev], toggles) ); const active = getIndex(toggles[next], this.toggles); this.children.forEach((child, i) => { toggleClass(child, this.cls, active === i); attr(this.toggles[i], { "aria-selected": active === i, tabindex: active === i ? null : -1 }); }); const animate = prev >= 0 && prev !== next; this.connects.forEach(async ({ children: children2 }) => { const actives = toArray(children2).filter( (child, i) => i !== active && hasClass(child, this.cls) ); if (await this.toggleElement(actives, false, animate)) { await this.toggleElement(children2[active], true, animate); } }); } } }; var tab = { mixins: [Class], extends: Switcher, props: { media: Boolean }, data: { media: 960, attrItem: "uk-tab-item", selVertical: ".uk-tab-left,.uk-tab-right" }, connected() { const cls = hasClass(this.$el, "uk-tab-left") ? "uk-tab-left" : hasClass(this.$el, "uk-tab-right") ? "uk-tab-right" : false; if (cls) { this.$create("toggle", this.$el, { cls, mode: "media", media: this.media }); } } }; const KEY_ENTER = 13; const KEY_SPACE = 32; var toggle = { mixins: [Media, Togglable], args: "target", props: { href: String, target: null, mode: "list", queued: Boolean }, data: { href: false, target: false, mode: "click", queued: true }, computed: { target: { get: ({ target }, $el) => { target = queryAll(target || $el.hash, $el); return target.length ? target : [$el]; }, observe: ({ target }) => target } }, connected() { if (!includes(this.mode, "media")) { if (!isFocusable(this.$el)) { this.$el.tabIndex = 0; } if (!this.cls && isTag(this.$el, "a")) { this.$el.role = "button"; } } }, observe: lazyload({ targets: ({ target }) => target }), events: [ { name: pointerDown$1, filter: ({ mode }) => includes(mode, "hover"), handler(e) { this._preventClick = null; if (!isTouch(e) || isBoolean(this._showState) || this.$el.disabled) { return; } trigger(this.$el, "focus"); once( document, pointerDown$1, () => trigger(this.$el, "blur"), true, (e2) => !this.$el.contains(e2.target) ); if (includes(this.mode, "click")) { this._preventClick = true; } } }, { // mouseenter mouseleave are added because of Firefox bug, // where pointerleave is triggered immediately after pointerenter on scroll name: `mouseenter mouseleave ${pointerEnter} ${pointerLeave} focus blur`, filter: ({ mode }) => includes(mode, "hover"), handler(e) { if (isTouch(e) || this.$el.disabled || document.readyState === "loading") { return; } const show = includes(["mouseenter", pointerEnter, "focus"], e.type); const expanded = this.isToggled(this.target); if (!show && (!isBoolean(this._showState) || e.type !== "blur" && matches(this.$el, ":focus") || e.type === "blur" && matches(this.$el, ":hover"))) { if (expanded === this._showState) { this._showState = null; } return; } if (show && isBoolean(this._showState) && expanded !== this._showState) { return; } this._showState = show ? expanded : null; this.toggle(`toggle${show ? "show" : "hide"}`); } }, { name: "keydown", filter: ({ $el, mode }) => includes(mode, "click") && !isTag($el, "input"), handler(e) { if (e.keyCode === KEY_SPACE || e.keyCode === KEY_ENTER) { e.preventDefault(); this.$el.click(); } } }, { name: "click", filter: ({ mode }) => ["click", "hover"].some((m) => includes(mode, m)), handler(e) { if (e.defaultPrevented) { return; } const link = e.target.closest("a[href]"); const isButtonLike = isSameSiteAnchor(link) && (!link.hash || matches(this.target, link.hash)); if (this._preventClick || isButtonLike || link && !this.isToggled(this.target)) { e.preventDefault(); } if (!this._preventClick && includes(this.mode, "click") && (!link || isButtonLike || e.defaultPrevented)) { this.toggle(); } } }, { name: "mediachange", filter: ({ mode }) => includes(mode, "media"), el: ({ target }) => target, handler(e, mediaObj) { if (mediaObj.matches ^ this.isToggled(this.target)) { this.toggle(); } } } ], methods: { async toggle(type) { if (!trigger(this.target, type || "toggle", [this])) { return; } if (hasAttr(this.$el, "aria-expanded")) { this.$el.ariaExpanded = !this.isToggled(this.target); } if (!this.queued) { return this.toggleElement(this.target); } const leaving = this.target.filter((el) => hasClass(el, this.clsLeave)); if (leaving.length) { for (const el of this.target) { const isLeaving = includes(leaving, el); this.toggleElement(el, isLeaving, isLeaving); } return; } const toggled = this.target.filter(this.isToggled); if (await this.toggleElement(toggled, false)) { await this.toggleElement( this.target.filter((el) => !includes(toggled, el)), true ); } } } }; var components = /*#__PURE__*/Object.freeze({ __proto__: null, Accordion: Accordion, Alert: alert, Close: Close, Cover: cover, Drop: drop, DropParentIcon: IconComponent, Dropdown: drop, Dropnav: Dropnav, FormCustom: formCustom, Grid: grid, HeightMatch: heightMatch, HeightPlaceholder: heightPlaceholder, HeightViewport: heightViewport, Icon: Icon, Img: img, Inverse: inverse, Leader: leader, Margin: Margin, Marker: Marker, Modal: modal, Nav: nav, NavParentIcon: NavParentIcon, Navbar: navbar, NavbarParentIcon: IconComponent, NavbarToggleIcon: NavbarToggleIcon, Offcanvas: offcanvas, OverflowAuto: overflowAuto, OverlayIcon: IconComponent, PaginationNext: PaginationNext, PaginationPrevious: PaginationPrevious, Responsive: responsive, Scroll: scroll, Scrollspy: scrollspy, ScrollspyNav: scrollspyNav, SearchIcon: Search, SlidenavNext: Slidenav, SlidenavPrevious: Slidenav, Spinner: Spinner, Sticky: sticky, Svg: svg, Switcher: Switcher, Tab: tab, Toggle: toggle, Totop: Totop, Video: Video }); each(components, (component, name) => App.component(name, component)); boot(App); each(components$1, (component, name) => App.component(name, component)); return App; })); assets/uikit/dist/js/uikit-icons-fjord.min.js000064400000211765151666572350015266 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitfjord",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitFjord=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="16" height="16" viewBox="0 0 16 16"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1.089 4.544 8 11.456 14.911 4.544"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next-large":'<svg width="20" height="32" viewBox="0 0 20 32"><polyline fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" points="2.611,1.792 17.389,16 2.611,30.208"/></svg>',"slidenav-previous-large":'<svg width="20" height="32" viewBox="0 0 20 32"><polyline fill="none" stroke="#000" stroke-width="2" points="17.389,0.792 2.612,16 17.389,31.208"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-line-gallery.min.js000064400000214421151666572350016536 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitline_gallery",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitLine_gallery=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="2" x1="7" y1="1" x2="7" y2="13"/><line fill="none" stroke="#000" stroke-width="2" x1="1" y1="7" x2="13" y2="7"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="18" height="14" viewBox="0 0 18 14"><line fill="none" stroke="#000" stroke-width="2" y1="7" x2="16" y2="7"/><path fill="none" stroke="#000" stroke-width="2" d="M10,1l6,6-6,6"/></svg>',"pagination-previous":'<svg width="18" height="14" viewBox="0 0 18 14"><line fill="none" stroke="#000" stroke-width="2" x1="18" y1="7" x2="2" y2="7"/><path fill="none" stroke="#000" stroke-width="2" d="M8,1,2,7l6,6"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="18" height="14" viewBox="0 0 18 14"><line fill="none" stroke="#000" stroke-width="2" y1="7" x2="16" y2="7"/><path fill="none" stroke="#000" stroke-width="2" d="M10,1l6,6-6,6"/></svg>',"slidenav-next-large":'<svg width="23" height="18" viewBox="0 0 23 18"><line fill="none" stroke="#000" stroke-width="2" y1="9" x2="21" y2="9"/><path fill="none" stroke="#000" stroke-width="2" d="M13.07,1l8,8-8,8"/></svg>',"slidenav-previous":'<svg width="18" height="14" viewBox="0 0 18 14"><line fill="none" stroke="#000" stroke-width="2" x1="18" y1="7" x2="2" y2="7"/><path fill="none" stroke="#000" stroke-width="2" d="M8,1,2,7l6,6"/></svg>',"slidenav-previous-large":'<svg width="23" height="18" viewBox="0 0 23 18"><line fill="none" stroke="#000" stroke-width="2" x1="2" y1="9" x2="23" y2="9"/><path fill="none" stroke="#000" stroke-width="2" d="M10.07,1l-8,8,8,8"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="16" height="18" viewBox="0 0 16 18"><polygon points="15.7,7.9 14.3,9.3 9,4 9,17.5 7,17.5 7,4 1.7,9.3 0.3,7.9 8,0"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-kitchen-daily.min.js000064400000214445151666572350016705 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define("uikitkitchen_daily",i):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitKitchen_daily=i())})(this,(function(){"use strict";function e(i){e.installed||i.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.8" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.8" x1="13" y1="1" x2="1" y2="13"/></svg>',"close-large":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.8" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.8" x1="19" y1="1" x2="1" y2="19"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',"divider-icon":'<svg width="10" height="10" viewBox="0 0 10 10"><line fill="none" stroke="#000" stroke-width="1.1" x1="0" y1="0" x2="10" y2="10"/><line fill="none" stroke="#000" stroke-width="1.1" x1="10" y1="0" x2="0" y2="10"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="16" height="16" viewBox="0 0 16 16"><polygon fill="#000" points="15,7.3 8.7,7.3 8.7,1 7.3,1 7.3,7.3 1,7.3 1,8.7 7.3,8.7 7.3,15 8.7,15 8.7,8.7 15,8.7"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="13" height="13" viewBox="0 0 13 13"><polyline fill="none" stroke="#000" stroke-width="1.4" points=".972 3.736 6.5 9.264 12.028 3.736"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="10" height="14" viewBox="0 0 10 14"><polyline fill="none" stroke="#000" stroke-width="1.6" points="1 0.6 8 7.08 1.13 13.44"/></svg>',"slidenav-next-large":'<svg width="10" height="14" viewBox="0 0 10 14"><polyline fill="none" stroke="#000" stroke-width="1.6" points="1 0.6 8 7.08 1.13 13.44"/></svg>',"slidenav-previous":'<svg width="10" height="14" viewBox="0 0 10 14"><polyline fill="none" stroke="#000" stroke-width="1.6" points="9 0.6 2 7.08 8.87 13.44"/></svg>',"slidenav-previous-large":'<svg width="10" height="14" viewBox="0 0 10 14"><polyline fill="none" stroke="#000" stroke-width="1.6" points="9 0.6 2 7.08 8.87 13.44"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="16" height="18" viewBox="0 0 16 18"><polygon points="15.7,7.9 14.3,9.3 9,4 9,17.5 7,17.5 7,4 1.7,9.3 0.3,7.9 8,0"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-union-dental.min.js000064400000214342151666572350016551 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitunion_dental",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitUnion_dental=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="11" height="8" viewBox="0 0 11 8"><polyline fill="none" stroke="#000" stroke-width="1.3" points=".5 1.5 5.5 6.5 10.5 1.5"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="17" height="12" viewBox="0 0 17 9"><polyline fill="none" stroke="#000" stroke-width="1.5" points="10 0 15 4.5 10 9"/><line fill="none" stroke="#000" stroke-width="1.5" x1="0" y1="4.5" x2="14" y2="4.5"/></svg>',"pagination-previous":'<svg width="17" height="12" viewBox="0 0 17 9"><polyline fill="none" stroke="#000" stroke-width="1.5" points="6 0 1 4.5 6 9"/><line fill="none" stroke="#000" stroke-width="1.5" x1="1" y1="4.5" x2="15" y2="4.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="20" height="14" viewBox="0 0 20 14"><polyline fill="none" stroke="#000" stroke-width="2" points="11 1 18 7 11 13"/><line fill="none" stroke="#000" stroke-width="2" x1="0" y1="7" x2="18" y2="7"/></svg>',"slidenav-next-large":'<svg width="28" height="22" viewBox="0 0 28 18"><polyline fill="none" stroke="#000" stroke-width="2" points="17 1 26 9 17 17"/><line fill="none" stroke="#000" stroke-width="2" x1="1" y1="9" x2="27" y2="9"/></svg>',"slidenav-previous":'<svg width="20" height="14" viewBox="0 0 20 14"><polyline fill="none" stroke="#000" stroke-width="2" points="8 1 1 7 8 13"/><line fill="none" stroke="#000" stroke-width="2" x1="1" y1="7" x2="19" y2="7"/></svg>',"slidenav-previous-large":'<svg width="28" height="22" viewBox="0 0 28 18"><polyline fill="none" stroke="#000" stroke-width="2" points="10 1 1 9 10 17"/><line fill="none" stroke="#000" stroke-width="2" x1="1" y1="9" x2="27" y2="9"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="18" height="20" viewBox="0 0 12 20"><line fill="none" stroke="#000" stroke-width="2" x1="6" y1="18" x2="6" y2="1"/><polyline fill="none" stroke="#000" stroke-width="2" points="0 8 6 1 13 8"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-soda.min.js000064400000211137151666572350015101 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitsoda",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitSoda=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="2" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-yoko.min.js000064400000214523151666572350015136 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikityoko",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitYoko=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5"/><line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5"/></svg>',"pagination-previous":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5"/><line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="25" height="20" viewBox="0 0 25 20"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15,1l8,9-8,9"/><path fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" d="M22,10H2"/></svg>',"slidenav-next-large":'<svg width="25" height="20" viewBox="0 0 25 20"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15,1l8,9-8,9"/><path fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" d="M22,10H2"/></svg>',"slidenav-previous":'<svg width="25" height="20" viewBox="0 0 25 20"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10,19,2,10l8-9"/><path fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" d="M3,10H23"/></svg>',"slidenav-previous-large":'<svg width="25" height="20" viewBox="0 0 25 20"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10,19,2,10l8-9"/><path fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" d="M3,10H23"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="10.5,4 15.37,9.4 14.63,10.08 10.5,5.49 6.37,10.08 5.63,9.4"/><line fill="none" stroke="#000" x1="10.5" y1="16" x2="10.5" y2="5"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-core.js000064400000657230151666572350013220 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define('uikit', factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkit = factory()); })(this, (function () { 'use strict'; const { hasOwnProperty, toString } = Object.prototype; function hasOwn(obj, key) { return hasOwnProperty.call(obj, key); } const hyphenateRe = /\B([A-Z])/g; const hyphenate = memoize((str) => str.replace(hyphenateRe, "-$1").toLowerCase()); const camelizeRe = /-(\w)/g; const camelize = memoize( (str) => (str.charAt(0).toLowerCase() + str.slice(1)).replace(camelizeRe, (_, c) => c.toUpperCase()) ); const ucfirst = memoize((str) => str.charAt(0).toUpperCase() + str.slice(1)); function startsWith(str, search) { var _a; return (_a = str == null ? void 0 : str.startsWith) == null ? void 0 : _a.call(str, search); } function endsWith(str, search) { var _a; return (_a = str == null ? void 0 : str.endsWith) == null ? void 0 : _a.call(str, search); } function includes(obj, search) { var _a; return (_a = obj == null ? void 0 : obj.includes) == null ? void 0 : _a.call(obj, search); } function findIndex(array, predicate) { var _a; return (_a = array == null ? void 0 : array.findIndex) == null ? void 0 : _a.call(array, predicate); } const { isArray, from: toArray } = Array; const { assign } = Object; function isFunction(obj) { return typeof obj === "function"; } function isObject(obj) { return obj !== null && typeof obj === "object"; } function isPlainObject(obj) { return toString.call(obj) === "[object Object]"; } function isWindow(obj) { return isObject(obj) && obj === obj.window; } function isDocument(obj) { return nodeType(obj) === 9; } function isNode(obj) { return nodeType(obj) >= 1; } function isElement(obj) { return nodeType(obj) === 1; } function nodeType(obj) { return !isWindow(obj) && isObject(obj) && obj.nodeType; } function isBoolean(value) { return typeof value === "boolean"; } function isString(value) { return typeof value === "string"; } function isNumber(value) { return typeof value === "number"; } function isNumeric(value) { return isNumber(value) || isString(value) && !isNaN(value - parseFloat(value)); } function isEmpty(obj) { return !(isArray(obj) ? obj.length : isObject(obj) ? Object.keys(obj).length : false); } function isUndefined(value) { return value === void 0; } function toBoolean(value) { return isBoolean(value) ? value : value === "true" || value === "1" || value === "" ? true : value === "false" || value === "0" ? false : value; } function toNumber(value) { const number = Number(value); return isNaN(number) ? false : number; } function toFloat(value) { return parseFloat(value) || 0; } function toNode(element) { return element && toNodes(element)[0]; } function toNodes(element) { return isNode(element) ? [element] : Array.from(element || []).filter(isNode); } function toWindow(element) { if (isWindow(element)) { return element; } element = toNode(element); const document = isDocument(element) ? element : element == null ? void 0 : element.ownerDocument; return (document == null ? void 0 : document.defaultView) || window; } function isEqual(value, other) { return value === other || isObject(value) && isObject(other) && Object.keys(value).length === Object.keys(other).length && each(value, (val, key) => val === other[key]); } function swap(value, a, b) { return value.replace(new RegExp(`${a}|${b}`, "g"), (match) => match === a ? b : a); } function last(array) { return array[array.length - 1]; } function each(obj, cb) { for (const key in obj) { if (false === cb(obj[key], key)) { return false; } } return true; } function sortBy(array, prop) { return array.slice().sort( ({ [prop]: propA = 0 }, { [prop]: propB = 0 }) => propA > propB ? 1 : propB > propA ? -1 : 0 ); } function sumBy(array, iteratee) { return array.reduce( (sum, item) => sum + toFloat(isFunction(iteratee) ? iteratee(item) : item[iteratee]), 0 ); } function uniqueBy(array, prop) { const seen = /* @__PURE__ */ new Set(); return array.filter(({ [prop]: check }) => seen.has(check) ? false : seen.add(check)); } function pick(obj, props) { return props.reduce((res, prop) => ({ ...res, [prop]: obj[prop] }), {}); } function clamp(number, min = 0, max = 1) { return Math.min(Math.max(toNumber(number) || 0, min), max); } function noop() { } function intersectRect(...rects) { return [ ["bottom", "top"], ["right", "left"] ].every( ([minProp, maxProp]) => Math.min(...rects.map(({ [minProp]: min }) => min)) - Math.max(...rects.map(({ [maxProp]: max }) => max)) > 0 ); } function pointInRect(point, rect) { return point.x <= rect.right && point.x >= rect.left && point.y <= rect.bottom && point.y >= rect.top; } function ratio(dimensions, prop, value) { const aProp = prop === "width" ? "height" : "width"; return { [aProp]: dimensions[prop] ? Math.round(value * dimensions[aProp] / dimensions[prop]) : dimensions[aProp], [prop]: value }; } function contain(dimensions, maxDimensions) { dimensions = { ...dimensions }; for (const prop in dimensions) { dimensions = dimensions[prop] > maxDimensions[prop] ? ratio(dimensions, prop, maxDimensions[prop]) : dimensions; } return dimensions; } function cover$1(dimensions, maxDimensions) { dimensions = contain(dimensions, maxDimensions); for (const prop in dimensions) { dimensions = dimensions[prop] < maxDimensions[prop] ? ratio(dimensions, prop, maxDimensions[prop]) : dimensions; } return dimensions; } const Dimensions = { ratio, contain, cover: cover$1 }; function getIndex(i, elements, current = 0, finite = false) { elements = toNodes(elements); const { length } = elements; if (!length) { return -1; } i = isNumeric(i) ? toNumber(i) : i === "next" ? current + 1 : i === "previous" ? current - 1 : i === "last" ? length - 1 : elements.indexOf(toNode(i)); if (finite) { return clamp(i, 0, length - 1); } i %= length; return i < 0 ? i + length : i; } function memoize(fn) { const cache = /* @__PURE__ */ Object.create(null); return (key, ...args) => cache[key] || (cache[key] = fn(key, ...args)); } function addClass(element, ...classes) { for (const node of toNodes(element)) { const add = toClasses(classes).filter((cls) => !hasClass(node, cls)); if (add.length) { node.classList.add(...add); } } } function removeClass(element, ...classes) { for (const node of toNodes(element)) { const remove = toClasses(classes).filter((cls) => hasClass(node, cls)); if (remove.length) { node.classList.remove(...remove); } } } function replaceClass(element, oldClass, newClass) { newClass = toClasses(newClass); oldClass = toClasses(oldClass).filter((cls) => !includes(newClass, cls)); removeClass(element, oldClass); addClass(element, newClass); } function hasClass(element, cls) { [cls] = toClasses(cls); return toNodes(element).some((node) => node.classList.contains(cls)); } function toggleClass(element, cls, force) { const classes = toClasses(cls); if (!isUndefined(force)) { force = !!force; } for (const node of toNodes(element)) { for (const cls2 of classes) { node.classList.toggle(cls2, force); } } } function toClasses(str) { return str ? isArray(str) ? str.map(toClasses).flat() : String(str).split(" ").filter(Boolean) : []; } function attr(element, name, value) { var _a; if (isObject(name)) { for (const key in name) { attr(element, key, name[key]); } return; } if (isUndefined(value)) { return (_a = toNode(element)) == null ? void 0 : _a.getAttribute(name); } else { for (const el of toNodes(element)) { if (isFunction(value)) { value = value.call(el, attr(el, name)); } if (value === null) { removeAttr(el, name); } else { el.setAttribute(name, value); } } } } function hasAttr(element, name) { return toNodes(element).some((element2) => element2.hasAttribute(name)); } function removeAttr(element, name) { toNodes(element).forEach((element2) => element2.removeAttribute(name)); } function data(element, attribute) { for (const name of [attribute, `data-${attribute}`]) { if (hasAttr(element, name)) { return attr(element, name); } } } const inBrowser = typeof window !== "undefined"; const isRtl = inBrowser && document.dir === "rtl"; const hasTouch = inBrowser && "ontouchstart" in window; const hasPointerEvents = inBrowser && window.PointerEvent; const pointerDown = hasPointerEvents ? "pointerdown" : hasTouch ? "touchstart" : "mousedown"; const pointerMove = hasPointerEvents ? "pointermove" : hasTouch ? "touchmove" : "mousemove"; const pointerUp = hasPointerEvents ? "pointerup" : hasTouch ? "touchend" : "mouseup"; const pointerEnter = hasPointerEvents ? "pointerenter" : hasTouch ? "" : "mouseenter"; const pointerLeave = hasPointerEvents ? "pointerleave" : hasTouch ? "" : "mouseleave"; const pointerCancel = hasPointerEvents ? "pointercancel" : "touchcancel"; const voidElements = { area: true, base: true, br: true, col: true, embed: true, hr: true, img: true, input: true, keygen: true, link: true, meta: true, param: true, source: true, track: true, wbr: true }; function isVoidElement(element) { return toNodes(element).some((element2) => voidElements[element2.tagName.toLowerCase()]); } const isVisibleFn = inBrowser && Element.prototype.checkVisibility || function() { return this.offsetWidth || this.offsetHeight || this.getClientRects().length; }; function isVisible(element) { return toNodes(element).some((element2) => isVisibleFn.call(element2)); } const selInput = "input,select,textarea,button"; function isInput(element) { return toNodes(element).some((element2) => matches(element2, selInput)); } const selFocusable = `${selInput},a[href],[tabindex]`; function isFocusable(element) { return matches(element, selFocusable); } function parent(element) { var _a; return (_a = toNode(element)) == null ? void 0 : _a.parentElement; } function filter(element, selector) { return toNodes(element).filter((element2) => matches(element2, selector)); } function matches(element, selector) { return toNodes(element).some((element2) => element2.matches(selector)); } function parents(element, selector) { const elements = []; while (element = parent(element)) { if (!selector || matches(element, selector)) { elements.push(element); } } return elements; } function children(element, selector) { element = toNode(element); const children2 = element ? toArray(element.children) : []; return selector ? filter(children2, selector) : children2; } function index(element, ref) { return ref ? toNodes(element).indexOf(toNode(ref)) : children(parent(element)).indexOf(element); } function isSameSiteAnchor(el) { el = toNode(el); return el && ["origin", "pathname", "search"].every((part) => el[part] === location[part]); } function getTargetedElement(el) { if (isSameSiteAnchor(el)) { const { hash, ownerDocument } = toNode(el); const id = decodeURIComponent(hash).slice(1); return id ? ownerDocument.getElementById(id) || ownerDocument.getElementsByName(id)[0] : ownerDocument.documentElement; } } function query(selector, context) { return find(selector, getContext(selector, context)); } function queryAll(selector, context) { return findAll(selector, getContext(selector, context)); } function find(selector, context) { return toNode(_query(selector, toNode(context), "querySelector")); } function findAll(selector, context) { return toNodes(_query(selector, toNode(context), "querySelectorAll")); } function getContext(selector, context = document) { return isDocument(context) || parseSelector(selector).isContextSelector ? context : context.ownerDocument; } const addStarRe = /([!>+~-])(?=\s+[!>+~-]|\s*$)/g; const splitSelectorRe = /(\([^)]*\)|[^,])+/g; const parseSelector = memoize((selector) => { let isContextSelector = false; if (!selector || !isString(selector)) { return {}; } const selectors = []; for (let sel of selector.match(splitSelectorRe)) { sel = sel.trim().replace(addStarRe, "$1 *"); isContextSelector || (isContextSelector = ["!", "+", "~", "-", ">"].includes(sel[0])); selectors.push(sel); } return { selector: selectors.join(","), selectors, isContextSelector }; }); const positionRe = /(\([^)]*\)|\S)*/; const parsePositionSelector = memoize((selector) => { selector = selector.slice(1).trim(); const [position] = selector.match(positionRe); return [position, selector.slice(position.length + 1)]; }); function _query(selector, context = document, queryFn) { var _a; const parsed = parseSelector(selector); if (!parsed.isContextSelector) { return parsed.selector ? _doQuery(context, queryFn, parsed.selector) : selector; } selector = ""; const isSingle = parsed.selectors.length === 1; for (let sel of parsed.selectors) { let positionSel; let ctx = context; if (sel[0] === "!") { [positionSel, sel] = parsePositionSelector(sel); ctx = (_a = context.parentElement) == null ? void 0 : _a.closest(positionSel); if (!sel && isSingle) { return ctx; } } if (ctx && sel[0] === "-") { [positionSel, sel] = parsePositionSelector(sel); ctx = ctx.previousElementSibling; ctx = matches(ctx, positionSel) ? ctx : null; if (!sel && isSingle) { return ctx; } } if (!ctx) { continue; } if (isSingle) { if (sel[0] === "~" || sel[0] === "+") { sel = `:scope > :nth-child(${index(ctx) + 1}) ${sel}`; ctx = ctx.parentElement; } else if (sel[0] === ">") { sel = `:scope ${sel}`; } return _doQuery(ctx, queryFn, sel); } selector += `${selector ? "," : ""}${domPath(ctx)} ${sel}`; } if (!isDocument(context)) { context = context.ownerDocument; } return _doQuery(context, queryFn, selector); } function _doQuery(context, queryFn, selector) { try { return context[queryFn](selector); } catch (e) { return null; } } function domPath(element) { const names = []; while (element.parentNode) { const id = attr(element, "id"); if (id) { names.unshift(`#${escape(id)}`); break; } else { let { tagName } = element; if (tagName !== "HTML") { tagName += `:nth-child(${index(element) + 1})`; } names.unshift(tagName); element = element.parentNode; } } return names.join(" > "); } function escape(css) { return isString(css) ? CSS.escape(css) : ""; } function on(...args) { let [targets, types, selector, listener, useCapture = false] = getArgs(args); if (listener.length > 1) { listener = detail(listener); } if (useCapture == null ? void 0 : useCapture.self) { listener = selfFilter(listener); } if (selector) { listener = delegate(selector, listener); } for (const type of types) { for (const target of targets) { target.addEventListener(type, listener, useCapture); } } return () => off(targets, types, listener, useCapture); } function off(...args) { let [targets, types, , listener, useCapture = false] = getArgs(args); for (const type of types) { for (const target of targets) { target.removeEventListener(type, listener, useCapture); } } } function once(...args) { const [element, types, selector, listener, useCapture = false, condition] = getArgs(args); const off2 = on( element, types, selector, (e) => { const result = !condition || condition(e); if (result) { off2(); listener(e, result); } }, useCapture ); return off2; } function trigger(targets, event, detail2) { return toEventTargets(targets).every( (target) => target.dispatchEvent(createEvent(event, true, true, detail2)) ); } function createEvent(e, bubbles = true, cancelable = false, detail2) { if (isString(e)) { e = new CustomEvent(e, { bubbles, cancelable, detail: detail2 }); } return e; } function getArgs(args) { args[0] = toEventTargets(args[0]); if (isString(args[1])) { args[1] = args[1].split(" "); } if (isFunction(args[2])) { args.splice(2, 0, false); } return args; } function delegate(selector, listener) { return (e) => { const current = selector[0] === ">" ? findAll(selector, e.currentTarget).reverse().find((element) => element.contains(e.target)) : e.target.closest(selector); if (current) { e.current = current; listener.call(this, e); delete e.current; } }; } function detail(listener) { return (e) => isArray(e.detail) ? listener(e, ...e.detail) : listener(e); } function selfFilter(listener) { return function(e) { if (e.target === e.currentTarget || e.target === e.current) { return listener.call(null, e); } }; } function isEventTarget(target) { return target && "addEventListener" in target; } function toEventTarget(target) { return isEventTarget(target) ? target : toNode(target); } function toEventTargets(target) { return isArray(target) ? target.map(toEventTarget).filter(Boolean) : isString(target) ? findAll(target) : isEventTarget(target) ? [target] : toNodes(target); } function isTouch(e) { return e.pointerType === "touch" || !!e.touches; } function getEventPos(e) { var _a, _b; const { clientX: x, clientY: y } = ((_a = e.touches) == null ? void 0 : _a[0]) || ((_b = e.changedTouches) == null ? void 0 : _b[0]) || e; return { x, y }; } const cssNumber = { "animation-iteration-count": true, "column-count": true, "fill-opacity": true, "flex-grow": true, "flex-shrink": true, "font-weight": true, "line-height": true, opacity: true, order: true, orphans: true, "stroke-dasharray": true, "stroke-dashoffset": true, widows: true, "z-index": true, zoom: true }; function css(element, property, value, priority) { const elements = toNodes(element); for (const element2 of elements) { if (isString(property)) { property = propName(property); if (isUndefined(value)) { return getComputedStyle(element2).getPropertyValue(property); } else { element2.style.setProperty( property, isNumeric(value) && !cssNumber[property] && !isCustomProperty(property) ? `${value}px` : value || isNumber(value) ? value : "", priority ); } } else if (isArray(property)) { const props = {}; for (const prop of property) { props[prop] = css(element2, prop); } return props; } else if (isObject(property)) { for (const prop in property) { css(element2, prop, property[prop], value); } } } return elements[0]; } function resetProps(element, props) { for (const prop in props) { css(element, prop, ""); } } const propName = memoize((name) => { if (isCustomProperty(name)) { return name; } name = hyphenate(name); const { style } = document.documentElement; if (name in style) { return name; } for (const prefix of ["webkit", "moz"]) { const prefixedName = `-${prefix}-${name}`; if (prefixedName in style) { return prefixedName; } } }); function isCustomProperty(name) { return startsWith(name, "--"); } const clsTransition = "uk-transition"; const transitionEnd = "transitionend"; const transitionCanceled = "transitioncanceled"; function transition$1(element, props, duration = 400, timing = "linear") { duration = Math.round(duration); return Promise.all( toNodes(element).map( (element2) => new Promise((resolve, reject) => { for (const name in props) { css(element2, name); } const timer = setTimeout(() => trigger(element2, transitionEnd), duration); once( element2, [transitionEnd, transitionCanceled], ({ type }) => { clearTimeout(timer); removeClass(element2, clsTransition); resetProps(element2, transitionProps); type === transitionCanceled ? reject() : resolve(element2); }, { self: true } ); addClass(element2, clsTransition); const transitionProps = { transitionProperty: Object.keys(props).map(propName).join(","), transitionDuration: `${duration}ms`, transitionTimingFunction: timing }; css(element2, { ...transitionProps, ...props }); }) ) ); } const Transition = { start: transition$1, async stop(element) { trigger(element, transitionEnd); await Promise.resolve(); }, async cancel(element) { trigger(element, transitionCanceled); await Promise.resolve(); }, inProgress(element) { return hasClass(element, clsTransition); } }; const clsAnimation = "uk-animation"; const animationEnd = "animationend"; const animationCanceled = "animationcanceled"; function animate$2(element, animation, duration = 200, origin, out) { return Promise.all( toNodes(element).map( (element2) => new Promise((resolve, reject) => { if (hasClass(element2, clsAnimation)) { trigger(element2, animationCanceled); } const classes = [ animation, clsAnimation, `${clsAnimation}-${out ? "leave" : "enter"}`, origin && `uk-transform-origin-${origin}`, out && `${clsAnimation}-reverse` ]; const timer = setTimeout(() => trigger(element2, animationEnd), duration); once( element2, [animationEnd, animationCanceled], ({ type }) => { clearTimeout(timer); type === animationCanceled ? reject() : resolve(element2); css(element2, "animationDuration", ""); removeClass(element2, classes); }, { self: true } ); css(element2, "animationDuration", `${duration}ms`); addClass(element2, classes); }) ) ); } const Animation = { in: animate$2, out(element, animation, duration, origin) { return animate$2(element, animation, duration, origin, true); }, inProgress(element) { return hasClass(element, clsAnimation); }, cancel(element) { trigger(element, animationCanceled); } }; function ready(fn) { if (document.readyState !== "loading") { fn(); return; } once(document, "DOMContentLoaded", fn); } function isTag(element, ...tagNames) { return tagNames.some((tagName) => { var _a; return ((_a = element == null ? void 0 : element.tagName) == null ? void 0 : _a.toLowerCase()) === tagName.toLowerCase(); }); } function empty(element) { element = $(element); if (element) { element.innerHTML = ""; } return element; } function html(parent2, html2) { return isUndefined(html2) ? $(parent2).innerHTML : append(empty(parent2), html2); } const prepend = applyFn("prepend"); const append = applyFn("append"); const before = applyFn("before"); const after = applyFn("after"); function applyFn(fn) { return function(ref, element) { var _a; const nodes = toNodes(isString(element) ? fragment(element) : element); (_a = $(ref)) == null ? void 0 : _a[fn](...nodes); return unwrapSingle(nodes); }; } function remove$1(element) { toNodes(element).forEach((element2) => element2.remove()); } function wrapAll(element, structure) { structure = toNode(before(element, structure)); while (structure.firstElementChild) { structure = structure.firstElementChild; } append(structure, element); return structure; } function wrapInner(element, structure) { return toNodes( toNodes(element).map( (element2) => element2.hasChildNodes() ? wrapAll(toArray(element2.childNodes), structure) : append(element2, structure) ) ); } function unwrap(element) { toNodes(element).map(parent).filter((value, index, self) => self.indexOf(value) === index).forEach((parent2) => parent2.replaceWith(...parent2.childNodes)); } const singleTagRe = /^<(\w+)\s*\/?>(?:<\/\1>)?$/; function fragment(html2) { const matches = singleTagRe.exec(html2); if (matches) { return document.createElement(matches[1]); } const container = document.createElement("template"); container.innerHTML = html2.trim(); return unwrapSingle(container.content.childNodes); } function unwrapSingle(nodes) { return nodes.length > 1 ? nodes : nodes[0]; } function apply(node, fn) { if (!isElement(node)) { return; } fn(node); node = node.firstElementChild; while (node) { apply(node, fn); node = node.nextElementSibling; } } function $(selector, context) { return isHtml(selector) ? toNode(fragment(selector)) : find(selector, context); } function $$(selector, context) { return isHtml(selector) ? toNodes(fragment(selector)) : findAll(selector, context); } function isHtml(str) { return isString(str) && startsWith(str.trim(), "<"); } const dirs$1 = { width: ["left", "right"], height: ["top", "bottom"] }; function dimensions(element) { const rect = isElement(element) ? toNode(element).getBoundingClientRect() : { height: height(element), width: width(element), top: 0, left: 0 }; return { height: rect.height, width: rect.width, top: rect.top, left: rect.left, bottom: rect.top + rect.height, right: rect.left + rect.width }; } function offset(element, coordinates) { if (coordinates) { css(element, { left: 0, top: 0 }); } const currentOffset = dimensions(element); if (element) { const { scrollY, scrollX } = toWindow(element); const offsetBy = { height: scrollY, width: scrollX }; for (const dir in dirs$1) { for (const prop of dirs$1[dir]) { currentOffset[prop] += offsetBy[dir]; } } } if (!coordinates) { return currentOffset; } for (const prop of ["left", "top"]) { css(element, prop, coordinates[prop] - currentOffset[prop]); } } function position(element) { let { top, left } = offset(element); const { ownerDocument: { body, documentElement }, offsetParent } = toNode(element); let parent = offsetParent || documentElement; while (parent && (parent === body || parent === documentElement) && css(parent, "position") === "static") { parent = parent.parentNode; } if (isElement(parent)) { const parentOffset = offset(parent); top -= parentOffset.top + toFloat(css(parent, "borderTopWidth")); left -= parentOffset.left + toFloat(css(parent, "borderLeftWidth")); } return { top: top - toFloat(css(element, "marginTop")), left: left - toFloat(css(element, "marginLeft")) }; } function offsetPosition(element) { element = toNode(element); const offset2 = [element.offsetTop, element.offsetLeft]; while (element = element.offsetParent) { offset2[0] += element.offsetTop + toFloat(css(element, "borderTopWidth")); offset2[1] += element.offsetLeft + toFloat(css(element, "borderLeftWidth")); if (css(element, "position") === "fixed") { const win = toWindow(element); offset2[0] += win.scrollY; offset2[1] += win.scrollX; return offset2; } } return offset2; } const height = dimension("height"); const width = dimension("width"); function dimension(prop) { const propName = ucfirst(prop); return (element, value) => { if (isUndefined(value)) { if (isWindow(element)) { return element[`inner${propName}`]; } if (isDocument(element)) { const doc = element.documentElement; return Math.max(doc[`offset${propName}`], doc[`scroll${propName}`]); } element = toNode(element); value = css(element, prop); value = value === "auto" ? element[`offset${propName}`] : toFloat(value) || 0; return value - boxModelAdjust(element, prop); } else { return css( element, prop, !value && value !== 0 ? "" : +value + boxModelAdjust(element, prop) + "px" ); } }; } function boxModelAdjust(element, prop, sizing = "border-box") { return css(element, "boxSizing") === sizing ? sumBy( dirs$1[prop], (prop2) => toFloat(css(element, `padding-${prop2}`)) + toFloat(css(element, `border-${prop2}-width`)) ) : 0; } function flipPosition(pos) { for (const dir in dirs$1) { for (const i in dirs$1[dir]) { if (dirs$1[dir][i] === pos) { return dirs$1[dir][1 - i]; } } } return pos; } function toPx(value, property = "width", element = window, offsetDim = false) { if (!isString(value)) { return toFloat(value); } return sumBy(parseCalc(value), (value2) => { const unit = parseUnit(value2); return unit ? percent( unit === "vh" ? getViewportHeight() : unit === "vw" ? width(toWindow(element)) : offsetDim ? element[`offset${ucfirst(property)}`] : dimensions(element)[property], value2 ) : value2; }); } const calcRe = /-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g; const parseCalc = memoize((calc) => calc.toString().replace(/\s/g, "").match(calcRe) || []); const unitRe = /(?:v[hw]|%)$/; const parseUnit = memoize((str) => (str.match(unitRe) || [])[0]); function percent(base, value) { return base * toFloat(value) / 100; } let vh; let vhEl; function getViewportHeight() { if (vh) { return vh; } if (!vhEl) { vhEl = $("<div>"); css(vhEl, { height: "100vh", position: "fixed" }); on(window, "resize", () => vh = null); } append(document.body, vhEl); vh = vhEl.clientHeight; remove$1(vhEl); return vh; } const fastdom = { read, write, clear, flush }; const reads = []; const writes = []; function read(task) { reads.push(task); scheduleFlush(); return task; } function write(task) { writes.push(task); scheduleFlush(); return task; } function clear(task) { remove(reads, task); remove(writes, task); } let scheduled = false; function flush() { runTasks(reads); runTasks(writes.splice(0)); scheduled = false; if (reads.length || writes.length) { scheduleFlush(); } } function scheduleFlush() { if (!scheduled) { scheduled = true; queueMicrotask(flush); } } function runTasks(tasks) { let task; while (task = tasks.shift()) { try { task(); } catch (e) { console.error(e); } } } function remove(array, item) { const index = array.indexOf(item); return ~index && array.splice(index, 1); } class MouseTracker { init() { this.positions = []; let position; this.unbind = on(document, "mousemove", (e) => position = getEventPos(e)); this.interval = setInterval(() => { if (!position) { return; } this.positions.push(position); if (this.positions.length > 5) { this.positions.shift(); } }, 50); } cancel() { var _a; (_a = this.unbind) == null ? void 0 : _a.call(this); clearInterval(this.interval); } movesTo(target) { if (!this.positions || this.positions.length < 2) { return false; } const p = dimensions(target); const { left, right, top, bottom } = p; const [prevPosition] = this.positions; const position = last(this.positions); const path = [prevPosition, position]; if (pointInRect(position, p)) { return false; } const diagonals = [ [ { x: left, y: top }, { x: right, y: bottom } ], [ { x: left, y: bottom }, { x: right, y: top } ] ]; return diagonals.some((diagonal) => { const intersection = intersect(path, diagonal); return intersection && pointInRect(intersection, p); }); } } function intersect([{ x: x1, y: y1 }, { x: x2, y: y2 }], [{ x: x3, y: y3 }, { x: x4, y: y4 }]) { const denominator = (y4 - y3) * (x2 - x1) - (x4 - x3) * (y2 - y1); if (denominator === 0) { return false; } const ua = ((x4 - x3) * (y1 - y3) - (y4 - y3) * (x1 - x3)) / denominator; if (ua < 0) { return false; } return { x: x1 + ua * (x2 - x1), y: y1 + ua * (y2 - y1) }; } function observeIntersection(targets, cb, options = {}, { intersecting = true } = {}) { const observer = new IntersectionObserver( intersecting ? (entries, observer2) => { if (entries.some((entry) => entry.isIntersecting)) { cb(entries, observer2); } } : cb, options ); for (const el of toNodes(targets)) { observer.observe(el); } return observer; } const hasResizeObserver = inBrowser && window.ResizeObserver; function observeResize(targets, cb, options = { box: "border-box" }) { if (hasResizeObserver) { return observe$1(ResizeObserver, targets, cb, options); } const off = [on(window, "load resize", cb), on(document, "loadedmetadata load", cb, true)]; return { disconnect: () => off.map((cb2) => cb2()) }; } function observeViewportResize(cb) { return { disconnect: on([window, window.visualViewport], "resize", cb) }; } function observeMutation(targets, cb, options) { return observe$1(MutationObserver, targets, cb, options); } function observe$1(Observer, targets, cb, options) { const observer = new Observer(cb); for (const el of toNodes(targets)) { observer.observe(el, options); } return observer; } function play(el) { if (isIFrame(el)) { call(el, { func: "playVideo", method: "play" }); } if (isHTML5(el)) { el.play().catch(noop); } } function pause(el) { if (isIFrame(el)) { call(el, { func: "pauseVideo", method: "pause" }); } if (isHTML5(el)) { el.pause(); } } function mute(el) { if (isIFrame(el)) { call(el, { func: "mute", method: "setVolume", value: 0 }); } if (isHTML5(el)) { el.muted = true; } } function isHTML5(el) { return isTag(el, "video"); } function isIFrame(el) { return isTag(el, "iframe") && (isYoutube(el) || isVimeo(el)); } function isYoutube(el) { return !!el.src.match( /\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/ ); } function isVimeo(el) { return !!el.src.match(/vimeo\.com\/video\/.*/); } async function call(el, cmd) { await enableApi(el); post(el, cmd); } function post(el, cmd) { el.contentWindow.postMessage(JSON.stringify({ event: "command", ...cmd }), "*"); } const stateKey = "_ukPlayer"; let counter = 0; function enableApi(el) { if (el[stateKey]) { return el[stateKey]; } const youtube = isYoutube(el); const vimeo = isVimeo(el); const id = ++counter; let poller; return el[stateKey] = new Promise((resolve) => { youtube && once(el, "load", () => { const listener = () => post(el, { event: "listening", id }); poller = setInterval(listener, 100); listener(); }); once(window, "message", resolve, false, ({ data }) => { try { data = JSON.parse(data); return youtube && (data == null ? void 0 : data.id) === id && data.event === "onReady" || vimeo && Number(data == null ? void 0 : data.player_id) === id; } catch (e) { } }); el.src = `${el.src}${includes(el.src, "?") ? "&" : "?"}${youtube ? "enablejsapi=1" : `api=1&player_id=${id}`}`; }).then(() => clearInterval(poller)); } function isInView(element, offsetTop = 0, offsetLeft = 0) { if (!isVisible(element)) { return false; } return intersectRect( ...overflowParents(element).map((parent2) => { const { top, left, bottom, right } = offsetViewport(parent2); return { top: top - offsetTop, left: left - offsetLeft, bottom: bottom + offsetTop, right: right + offsetLeft }; }).concat(offset(element)) ); } function scrollIntoView(element, { offset: offsetBy = 0 } = {}) { const parents2 = isVisible(element) ? scrollParents(element, false, ["hidden"]) : []; return parents2.reduce( (fn, scrollElement, i) => { const { scrollTop, scrollHeight, offsetHeight } = scrollElement; const viewport = offsetViewport(scrollElement); const maxScroll = scrollHeight - viewport.height; const { height: elHeight, top: elTop } = parents2[i - 1] ? offsetViewport(parents2[i - 1]) : offset(element); let top = Math.ceil(elTop - viewport.top - offsetBy + scrollTop); if (offsetBy > 0 && offsetHeight < elHeight + offsetBy) { top += offsetBy; } else { offsetBy = 0; } if (top > maxScroll) { offsetBy -= top - maxScroll; top = maxScroll; } else if (top < 0) { offsetBy -= top; top = 0; } return () => scrollTo(scrollElement, top - scrollTop, element, maxScroll).then(fn); }, () => Promise.resolve() )(); function scrollTo(element2, top, targetEl, maxScroll) { return new Promise((resolve) => { const scroll = element2.scrollTop; const duration = getDuration(Math.abs(top)); const start = Date.now(); const isScrollingElement = scrollingElement(element2) === element2; const targetTop = offset(targetEl).top + (isScrollingElement ? 0 : scroll); let prev = 0; let frames = 15; (function step() { const percent = ease(clamp((Date.now() - start) / duration)); let diff = 0; if (parents2[0] === element2 && scroll + top < maxScroll) { diff = offset(targetEl).top + (isScrollingElement ? 0 : element2.scrollTop) - targetTop - dimensions(getCoveringElement(targetEl)).height; } if (css(element2, "scrollBehavior") !== "auto") { css(element2, "scrollBehavior", "auto"); } element2.scrollTop = scroll + (top + diff) * percent; css(element2, "scrollBehavior", ""); if (percent === 1 && (prev === diff || !frames--)) { resolve(); } else { prev = diff; requestAnimationFrame(step); } })(); }); } function getDuration(dist) { return 40 * Math.pow(dist, 0.375); } function ease(k) { return 0.5 * (1 - Math.cos(Math.PI * k)); } } function scrolledOver(element, startOffset = 0, endOffset = 0) { if (!isVisible(element)) { return 0; } const scrollElement = scrollParent(element, true); const { scrollHeight, scrollTop } = scrollElement; const { height: viewportHeight } = offsetViewport(scrollElement); const maxScroll = scrollHeight - viewportHeight; const elementOffsetTop = offsetPosition(element)[0] - offsetPosition(scrollElement)[0]; const start = Math.max(0, elementOffsetTop - viewportHeight + startOffset); const end = Math.min(maxScroll, elementOffsetTop + element.offsetHeight - endOffset); return start < end ? clamp((scrollTop - start) / (end - start)) : 1; } function scrollParents(element, scrollable = false, props = []) { const scrollEl = scrollingElement(element); let ancestors = parents(element).reverse(); ancestors = ancestors.slice(ancestors.indexOf(scrollEl) + 1); const fixedIndex = findIndex(ancestors, (el) => css(el, "position") === "fixed"); if (~fixedIndex) { ancestors = ancestors.slice(fixedIndex); } return [scrollEl].concat( ancestors.filter( (parent2) => css(parent2, "overflow").split(" ").some((prop) => includes(["auto", "scroll", ...props], prop)) && (!scrollable || parent2.scrollHeight > offsetViewport(parent2).height) ) ).reverse(); } function scrollParent(...args) { return scrollParents(...args)[0]; } function overflowParents(element) { return scrollParents(element, false, ["hidden", "clip"]); } function offsetViewport(scrollElement) { const window = toWindow(scrollElement); const documentScrollingElement = scrollingElement(scrollElement); const useWindow = !isNode(scrollElement) || scrollElement.contains(documentScrollingElement); if (useWindow && window.visualViewport) { let { height, width, scale, pageTop: top, pageLeft: left } = window.visualViewport; height = Math.round(height * scale); width = Math.round(width * scale); return { height, width, top, left, bottom: top + height, right: left + width }; } let rect = offset(useWindow ? window : scrollElement); if (css(scrollElement, "display") === "inline") { return rect; } const { body, documentElement } = window.document; const viewportElement = useWindow ? documentScrollingElement === documentElement || // In quirks mode the scrolling element is body, even though the viewport is html documentScrollingElement.clientHeight < body.clientHeight ? documentScrollingElement : body : scrollElement; for (let [prop, dir, start, end] of [ ["width", "x", "left", "right"], ["height", "y", "top", "bottom"] ]) { const subpixel = rect[prop] % 1; rect[start] += toFloat(css(viewportElement, `border-${start}-width`)); rect[prop] = rect[dir] = viewportElement[`client${ucfirst(prop)}`] - (subpixel ? subpixel < 0.5 ? -subpixel : 1 - subpixel : 0); rect[end] = rect[prop] + rect[start]; } return rect; } function getCoveringElement(target) { const { left, width, top } = dimensions(target); for (const position of top ? [0, top] : [0]) { let coverEl; for (const el of toWindow(target).document.elementsFromPoint(left + width / 2, position)) { if (!el.contains(target) && // If e.g. Offcanvas is not yet closed !hasClass(el, "uk-togglable-leave") && (hasPosition(el, "fixed") && zIndex( parents(target).reverse().find( (parent2) => !parent2.contains(el) && !hasPosition(parent2, "static") ) ) < zIndex(el) || hasPosition(el, "sticky") && (!target || parent(el).contains(target))) && (!coverEl || dimensions(coverEl).height < dimensions(el).height)) { coverEl = el; } } if (coverEl) { return coverEl; } } } function zIndex(element) { return toFloat(css(element, "zIndex")); } function hasPosition(element, position) { return css(element, "position") === position; } function scrollingElement(element) { return toWindow(element).document.scrollingElement; } const dirs = [ ["width", "x", "left", "right"], ["height", "y", "top", "bottom"] ]; function positionAt(element, target, options) { options = { attach: { element: ["left", "top"], target: ["left", "top"], ...options.attach }, offset: [0, 0], placement: [], ...options }; if (!isArray(target)) { target = [target, target]; } offset(element, getPosition(element, target, options)); } function getPosition(element, target, options) { const position = attachTo(element, target, options); const { boundary, viewportOffset = 0, placement } = options; let offsetPosition = position; for (const [i, [prop, , start, end]] of Object.entries(dirs)) { const viewport = getViewport$2(element, target[i], viewportOffset, boundary, i); if (isWithin(position, viewport, i)) { continue; } let offsetBy = 0; if (placement[i] === "flip") { const attach = options.attach.target[i]; if (attach === end && position[end] <= viewport[end] || attach === start && position[start] >= viewport[start]) { continue; } offsetBy = flip(element, target, options, i)[start] - position[start]; const scrollArea = getScrollArea(element, target[i], viewportOffset, i); if (!isWithin(applyOffset(position, offsetBy, i), scrollArea, i)) { if (isWithin(position, scrollArea, i)) { continue; } if (options.recursion) { return false; } const newPos = flipAxis(element, target, options); if (newPos && isWithin(newPos, scrollArea, 1 - i)) { return newPos; } continue; } } else if (placement[i] === "shift") { const targetDim = offset(target[i]); const { offset: elOffset } = options; offsetBy = clamp( clamp(position[start], viewport[start], viewport[end] - position[prop]), targetDim[start] - position[prop] + elOffset[i], targetDim[end] - elOffset[i] ) - position[start]; } offsetPosition = applyOffset(offsetPosition, offsetBy, i); } return offsetPosition; } function attachTo(element, target, options) { let { attach, offset: offsetBy } = { attach: { element: ["left", "top"], target: ["left", "top"], ...options.attach }, offset: [0, 0], ...options }; let elOffset = offset(element); for (const [i, [prop, , start, end]] of Object.entries(dirs)) { const targetOffset = attach.target[i] === attach.element[i] ? offsetViewport(target[i]) : offset(target[i]); elOffset = applyOffset( elOffset, targetOffset[start] - elOffset[start] + moveBy(attach.target[i], end, targetOffset[prop]) - moveBy(attach.element[i], end, elOffset[prop]) + +offsetBy[i], i ); } return elOffset; } function applyOffset(position, offset2, i) { const [, dir, start, end] = dirs[i]; const newPos = { ...position }; newPos[start] = position[dir] = position[start] + offset2; newPos[end] += offset2; return newPos; } function moveBy(attach, end, dim) { return attach === "center" ? dim / 2 : attach === end ? dim : 0; } function getViewport$2(element, target, viewportOffset, boundary, i) { let viewport = getIntersectionArea(...commonScrollParents(element, target).map(offsetViewport)); if (viewportOffset) { viewport[dirs[i][2]] += viewportOffset; viewport[dirs[i][3]] -= viewportOffset; } if (boundary) { viewport = getIntersectionArea( viewport, offset(isArray(boundary) ? boundary[i] : boundary) ); } return viewport; } function getScrollArea(element, target, viewportOffset, i) { const [prop, axis, start, end] = dirs[i]; const [scrollElement] = commonScrollParents(element, target); const viewport = offsetViewport(scrollElement); if (["auto", "scroll"].includes(css(scrollElement, `overflow-${axis}`))) { viewport[start] -= scrollElement[`scroll${ucfirst(start)}`]; viewport[end] = viewport[start] + scrollElement[`scroll${ucfirst(prop)}`]; } viewport[start] += viewportOffset; viewport[end] -= viewportOffset; return viewport; } function commonScrollParents(element, target) { return overflowParents(target).filter((parent) => parent.contains(element)); } function getIntersectionArea(...rects) { let area = {}; for (const rect of rects) { for (const [, , start, end] of dirs) { area[start] = Math.max(area[start] || 0, rect[start]); area[end] = Math.min(...[area[end], rect[end]].filter(Boolean)); } } return area; } function isWithin(positionA, positionB, i) { const [, , start, end] = dirs[i]; return positionA[start] >= positionB[start] && positionA[end] <= positionB[end]; } function flip(element, target, { offset: offset2, attach }, i) { return attachTo(element, target, { attach: { element: flipAttach(attach.element, i), target: flipAttach(attach.target, i) }, offset: flipOffset(offset2, i) }); } function flipAxis(element, target, options) { return getPosition(element, target, { ...options, attach: { element: options.attach.element.map(flipAttachAxis).reverse(), target: options.attach.target.map(flipAttachAxis).reverse() }, offset: options.offset.reverse(), placement: options.placement.reverse(), recursion: true }); } function flipAttach(attach, i) { const newAttach = [...attach]; const index = dirs[i].indexOf(attach[i]); if (~index) { newAttach[i] = dirs[i][1 - index % 2 + 2]; } return newAttach; } function flipAttachAxis(prop) { for (let i = 0; i < dirs.length; i++) { const index = dirs[i].indexOf(prop); if (~index) { return dirs[1 - i][index % 2 + 2]; } } } function flipOffset(offset2, i) { offset2 = [...offset2]; offset2[i] *= -1; return offset2; } var util = /*#__PURE__*/Object.freeze({ __proto__: null, $: $, $$: $$, Animation: Animation, Dimensions: Dimensions, MouseTracker: MouseTracker, Transition: Transition, addClass: addClass, after: after, append: append, apply: apply, assign: assign, attr: attr, before: before, boxModelAdjust: boxModelAdjust, camelize: camelize, children: children, clamp: clamp, createEvent: createEvent, css: css, data: data, dimensions: dimensions, each: each, empty: empty, endsWith: endsWith, escape: escape, fastdom: fastdom, filter: filter, find: find, findAll: findAll, findIndex: findIndex, flipPosition: flipPosition, fragment: fragment, getCoveringElement: getCoveringElement, getEventPos: getEventPos, getIndex: getIndex, getTargetedElement: getTargetedElement, hasAttr: hasAttr, hasClass: hasClass, hasOwn: hasOwn, hasTouch: hasTouch, height: height, html: html, hyphenate: hyphenate, inBrowser: inBrowser, includes: includes, index: index, intersectRect: intersectRect, isArray: isArray, isBoolean: isBoolean, isDocument: isDocument, isElement: isElement, isEmpty: isEmpty, isEqual: isEqual, isFocusable: isFocusable, isFunction: isFunction, isInView: isInView, isInput: isInput, isNode: isNode, isNumber: isNumber, isNumeric: isNumeric, isObject: isObject, isPlainObject: isPlainObject, isRtl: isRtl, isSameSiteAnchor: isSameSiteAnchor, isString: isString, isTag: isTag, isTouch: isTouch, isUndefined: isUndefined, isVisible: isVisible, isVoidElement: isVoidElement, isWindow: isWindow, last: last, matches: matches, memoize: memoize, mute: mute, noop: noop, observeIntersection: observeIntersection, observeMutation: observeMutation, observeResize: observeResize, observeViewportResize: observeViewportResize, off: off, offset: offset, offsetPosition: offsetPosition, offsetViewport: offsetViewport, on: on, once: once, overflowParents: overflowParents, parent: parent, parents: parents, pause: pause, pick: pick, play: play, pointInRect: pointInRect, pointerCancel: pointerCancel, pointerDown: pointerDown, pointerEnter: pointerEnter, pointerLeave: pointerLeave, pointerMove: pointerMove, pointerUp: pointerUp, position: position, positionAt: positionAt, prepend: prepend, propName: propName, query: query, queryAll: queryAll, ready: ready, remove: remove$1, removeAttr: removeAttr, removeClass: removeClass, replaceClass: replaceClass, resetProps: resetProps, scrollIntoView: scrollIntoView, scrollParent: scrollParent, scrollParents: scrollParents, scrolledOver: scrolledOver, selFocusable: selFocusable, selInput: selInput, sortBy: sortBy, startsWith: startsWith, sumBy: sumBy, swap: swap, toArray: toArray, toBoolean: toBoolean, toEventTargets: toEventTargets, toFloat: toFloat, toNode: toNode, toNodes: toNodes, toNumber: toNumber, toPx: toPx, toWindow: toWindow, toggleClass: toggleClass, trigger: trigger, ucfirst: ucfirst, uniqueBy: uniqueBy, unwrap: unwrap, width: width, wrapAll: wrapAll, wrapInner: wrapInner }); function initUpdates(instance) { instance._data = {}; instance._updates = [...instance.$options.update || []]; instance._disconnect.push(() => instance._updates = instance._data = null); } function prependUpdate(instance, update) { instance._updates.unshift(update); } function callUpdate(instance, e = "update") { if (!instance._connected) { return; } if (!instance._updates.length) { return; } if (!instance._updateCount) { instance._updateCount = 0; requestAnimationFrame(() => instance._updateCount = 0); } if (!instance._queued) { instance._queued = /* @__PURE__ */ new Set(); fastdom.read(() => { if (instance._connected) { runUpdates(instance, instance._queued); } instance._queued = null; }); } if (instance._updateCount++ < 20) { instance._queued.add(e.type || e); } } function runUpdates(instance, types) { for (const { read, write, events = [] } of instance._updates) { if (!types.has("update") && !events.some((type) => types.has(type))) { continue; } let result; if (read) { result = read.call(instance, instance._data, types); if (result && isPlainObject(result)) { assign(instance._data, result); } } if (write && result !== false) { fastdom.write(() => { if (instance._connected) { write.call(instance, instance._data, types); } }); } } } function initWatches(instance) { instance._watches = []; for (const watches of instance.$options.watch || []) { for (const [name, watch] of Object.entries(watches)) { registerWatch(instance, watch, name); } } instance._initial = true; } function registerWatch(instance, watch, name) { instance._watches.push({ name, ...isPlainObject(watch) ? watch : { handler: watch } }); } function runWatches(instance, values) { for (const { name, handler, immediate = true } of instance._watches) { if (instance._initial && immediate || hasOwn(values, name) && !isEqual(values[name], instance[name])) { handler.call(instance, instance[name], values[name]); } } instance._initial = false; } function initComputed(instance) { const { computed } = instance.$options; instance._computed = {}; if (computed) { for (const key in computed) { registerComputed(instance, key, computed[key]); } } } const mutationOptions = { subtree: true, childList: true }; function registerComputed(instance, key, cb) { instance._hasComputed = true; Object.defineProperty(instance, key, { enumerable: true, get() { const { _computed, $props, $el } = instance; if (!hasOwn(_computed, key)) { _computed[key] = (cb.get || cb).call(instance, $props, $el); if (cb.observe && instance._computedObserver) { const selector = cb.observe.call(instance, $props); instance._computedObserver.observe( ["~", "+", "-"].includes(selector[0]) ? $el.parentElement : $el.getRootNode(), mutationOptions ); } } return _computed[key]; }, set(value) { const { _computed } = instance; _computed[key] = cb.set ? cb.set.call(instance, value) : value; if (isUndefined(_computed[key])) { delete _computed[key]; } } }); } function initComputedUpdates(instance) { if (!instance._hasComputed) { return; } prependUpdate(instance, { read: () => runWatches(instance, resetComputed(instance)), events: ["resize", "computed"] }); instance._computedObserver = observeMutation( instance.$el, () => callUpdate(instance, "computed"), mutationOptions ); instance._disconnect.push(() => { instance._computedObserver.disconnect(); instance._computedObserver = null; resetComputed(instance); }); } function resetComputed(instance) { const values = { ...instance._computed }; instance._computed = {}; return values; } function initEvents(instance) { for (const event of instance.$options.events || []) { if (hasOwn(event, "handler")) { registerEvent(instance, event); } else { for (const key in event) { registerEvent(instance, { name: key, handler: event[key] }); } } } } function registerEvent(instance, { name, el, handler, capture, passive, delegate, filter, self }) { if (filter && !filter.call(instance, instance)) { return; } instance._disconnect.push( on( el ? el.call(instance, instance) : instance.$el, name, delegate == null ? void 0 : delegate.call(instance, instance), handler.bind(instance), { passive, capture, self } ) ); } function initObservers(instance) { for (const observer of instance.$options.observe || []) { registerObservable(instance, observer); } } function registerObservable(instance, observable) { let { observe, target = instance.$el, handler, options, filter, args } = observable; if (filter && !filter.call(instance, instance)) { return; } const key = `_observe${instance._disconnect.length}`; if (isFunction(target) && !hasOwn(instance, key)) { registerComputed(instance, key, () => { const targets2 = target.call(instance, instance); return isArray(targets2) ? toNodes(targets2) : targets2; }); } handler = isString(handler) ? instance[handler] : handler.bind(instance); if (isFunction(options)) { options = options.call(instance, instance); } const targets = hasOwn(instance, key) ? instance[key] : target; const observer = observe(targets, handler, options, args); if (isFunction(target) && isArray(instance[key])) { registerWatch( instance, { handler: updateTargets(observer, options), immediate: false }, key ); } instance._disconnect.push(() => observer.disconnect()); } function updateTargets(observer, options) { return (targets, prev) => { for (const target of prev) { if (!includes(targets, target)) { if (observer.unobserve) { observer.unobserve(target); } else if (observer.observe) { observer.disconnect(); } } } for (const target of targets) { if (!includes(prev, target) || !observer.unobserve) { observer.observe(target, options); } } }; } const strats = {}; strats.events = strats.watch = strats.observe = strats.created = strats.beforeConnect = strats.connected = strats.beforeDisconnect = strats.disconnected = strats.destroy = concatStrat; strats.args = function(parentVal, childVal) { return childVal !== false && concatStrat(childVal || parentVal); }; strats.update = function(parentVal, childVal) { return sortBy( concatStrat(parentVal, isFunction(childVal) ? { read: childVal } : childVal), "order" ); }; strats.props = function(parentVal, childVal) { if (isArray(childVal)) { const value = {}; for (const key of childVal) { value[key] = String; } childVal = value; } return strats.methods(parentVal, childVal); }; strats.computed = strats.methods = function(parentVal, childVal) { return childVal ? parentVal ? { ...parentVal, ...childVal } : childVal : parentVal; }; strats.i18n = strats.data = function(parentVal, childVal, vm) { if (!vm) { if (!childVal) { return parentVal; } if (!parentVal) { return childVal; } return function(vm2) { return mergeFnData(parentVal, childVal, vm2); }; } return mergeFnData(parentVal, childVal, vm); }; function mergeFnData(parentVal, childVal, vm) { return strats.computed( isFunction(parentVal) ? parentVal.call(vm, vm) : parentVal, isFunction(childVal) ? childVal.call(vm, vm) : childVal ); } function concatStrat(parentVal, childVal) { parentVal = parentVal && !isArray(parentVal) ? [parentVal] : parentVal; return childVal ? parentVal ? parentVal.concat(childVal) : isArray(childVal) ? childVal : [childVal] : parentVal; } function defaultStrat(parentVal, childVal) { return isUndefined(childVal) ? parentVal : childVal; } function mergeOptions(parent, child, vm) { const options = {}; if (isFunction(child)) { child = child.options; } if (child.extends) { parent = mergeOptions(parent, child.extends, vm); } if (child.mixins) { for (const mixin of child.mixins) { parent = mergeOptions(parent, mixin, vm); } } for (const key in parent) { mergeKey(key); } for (const key in child) { if (!hasOwn(parent, key)) { mergeKey(key); } } function mergeKey(key) { options[key] = (strats[key] || defaultStrat)(parent[key], child[key], vm); } return options; } function parseOptions(options, args = []) { try { return options ? startsWith(options, "{") ? JSON.parse(options) : args.length && !includes(options, ":") ? { [args[0]]: options } : options.split(";").reduce((options2, option) => { const [key, value] = option.split(/:(.*)/); if (key && !isUndefined(value)) { options2[key.trim()] = value.trim(); } return options2; }, {}) : {}; } catch (e) { return {}; } } function coerce$1(type, value) { if (type === Boolean) { return toBoolean(value); } else if (type === Number) { return toNumber(value); } else if (type === "list") { return toList(value); } else if (type === Object && isString(value)) { return parseOptions(value); } return type ? type(value) : value; } const listRe = /,(?![^(]*\))/; function toList(value) { return isArray(value) ? value : isString(value) ? value.split(listRe).map((value2) => isNumeric(value2) ? toNumber(value2) : toBoolean(value2.trim())) : [value]; } function initProps(instance) { const { $options, $props } = instance; const props = getProps($options); assign($props, props); const { computed, methods } = $options; for (let key in $props) { if (key in props && (!computed || !hasOwn(computed, key)) && (!methods || !hasOwn(methods, key))) { instance[key] = $props[key]; } } } function getProps(opts) { const data$1 = {}; const { args = [], props = {}, el, id } = opts; if (!props) { return data$1; } for (const key in props) { const prop = hyphenate(key); let value = data(el, prop); if (isUndefined(value)) { continue; } value = props[key] === Boolean && value === "" ? true : coerce$1(props[key], value); if (prop === "target" && startsWith(value, "_")) { continue; } data$1[key] = value; } const options = parseOptions(data(el, id), args); for (const key in options) { const prop = camelize(key); if (!isUndefined(props[prop])) { data$1[prop] = coerce$1(props[prop], options[key]); } } return data$1; } const getAttributes = memoize((id, props) => { const attributes = Object.keys(props); const filter = attributes.concat(id).map((key) => [hyphenate(key), `data-${hyphenate(key)}`]).flat(); return { attributes, filter }; }); function initPropsObserver(instance) { const { $options, $props } = instance; const { id, props, el } = $options; if (!props) { return; } const { attributes, filter } = getAttributes(id, props); const observer = new MutationObserver((records) => { const data = getProps($options); if (records.some(({ attributeName }) => { const prop = attributeName.replace("data-", ""); return (prop === id ? attributes : [camelize(prop), camelize(attributeName)]).some( (prop2) => !isUndefined(data[prop2]) && data[prop2] !== $props[prop2] ); })) { instance.$reset(); } }); observer.observe(el, { attributes: true, attributeFilter: filter }); instance._disconnect.push(() => observer.disconnect()); } function callHook(instance, hook) { var _a; (_a = instance.$options[hook]) == null ? void 0 : _a.forEach((handler) => handler.call(instance)); } function callConnected(instance) { if (instance._connected) { return; } initProps(instance); callHook(instance, "beforeConnect"); instance._connected = true; instance._disconnect = []; initEvents(instance); initUpdates(instance); initWatches(instance); initObservers(instance); initPropsObserver(instance); initComputedUpdates(instance); callHook(instance, "connected"); callUpdate(instance); } function callDisconnected(instance) { if (!instance._connected) { return; } callHook(instance, "beforeDisconnect"); instance._disconnect.forEach((off) => off()); instance._disconnect = null; callHook(instance, "disconnected"); instance._connected = false; } let uid = 0; function init$1(instance, options = {}) { options.data = normalizeData(options, instance.constructor.options); instance.$options = mergeOptions(instance.constructor.options, options, instance); instance.$props = {}; instance._uid = uid++; initData(instance); initMethods(instance); initComputed(instance); callHook(instance, "created"); if (options.el) { instance.$mount(options.el); } } function initData(instance) { const { data = {} } = instance.$options; for (const key in data) { instance.$props[key] = instance[key] = data[key]; } } function initMethods(instance) { const { methods } = instance.$options; if (methods) { for (const key in methods) { instance[key] = methods[key].bind(instance); } } } function normalizeData({ data = {} }, { args = [], props = {} }) { if (isArray(data)) { data = data.slice(0, args.length).reduce((data2, value, index) => { if (isPlainObject(value)) { assign(data2, value); } else { data2[args[index]] = value; } return data2; }, {}); } for (const key in data) { if (isUndefined(data[key])) { delete data[key]; } else if (props[key]) { data[key] = coerce$1(props[key], data[key]); } } return data; } const App = function(options) { init$1(this, options); }; App.util = util; App.options = {}; App.version = "3.23.13"; const PREFIX = "uk-"; const DATA = "__uikit__"; const components$1 = {}; function component(name, options) { var _a, _b; const id = PREFIX + hyphenate(name); if (!options) { if (!components$1[id].options) { components$1[id] = App.extend(components$1[id]); } return components$1[id]; } name = camelize(name); App[name] = (element, data) => createComponent(name, element, data); const opt = (_a = options.options) != null ? _a : { ...options }; opt.id = id; opt.name = name; (_b = opt.install) == null ? void 0 : _b.call(opt, App, opt, name); if (App._initialized && !opt.functional) { requestAnimationFrame(() => createComponent(name, `[${id}],[data-${id}]`)); } return components$1[id] = opt; } function createComponent(name, element, data, ...args) { const Component = component(name); return Component.options.functional ? new Component({ data: isPlainObject(element) ? element : [element, data, ...args] }) : element ? $$(element).map(init)[0] : init(); function init(element2) { const instance = getComponent(element2, name); if (instance) { if (data) { instance.$destroy(); } else { return instance; } } return new Component({ el: element2, data }); } } function getComponents(element) { return (element == null ? void 0 : element[DATA]) || {}; } function getComponent(element, name) { return getComponents(element)[name]; } function attachToElement(element, instance) { if (!element[DATA]) { element[DATA] = {}; } element[DATA][instance.$options.name] = instance; } function detachFromElement(element, instance) { var _a; (_a = element[DATA]) == null ? true : delete _a[instance.$options.name]; if (isEmpty(element[DATA])) { delete element[DATA]; } } function boot(App) { if (inBrowser && window.MutationObserver) { if (document.body) { requestAnimationFrame(() => init(App)); } else { new MutationObserver((records, observer) => { if (document.body) { init(App); observer.disconnect(); } }).observe(document.documentElement, { childList: true }); } } } function init(App) { trigger(document, "uikit:init", App); if (document.body) { apply(document.body, connect); } new MutationObserver(handleMutation).observe(document, { subtree: true, childList: true, attributes: true }); App._initialized = true; } function handleMutation(records) { var _a; for (const { addedNodes, removedNodes, target, attributeName } of records) { for (const node of addedNodes) { apply(node, connect); } for (const node of removedNodes) { apply(node, disconnect); } const name = attributeName && getComponentName(attributeName); if (name) { if (hasAttr(target, attributeName)) { createComponent(name, target); } else { (_a = getComponent(target, name)) == null ? void 0 : _a.$destroy(); } } } } function connect(node) { const components2 = getComponents(node); for (const name in components2) { callConnected(components2[name]); } for (const attributeName of node.getAttributeNames()) { const name = getComponentName(attributeName); name && createComponent(name, node); } } function disconnect(node) { const components2 = getComponents(node); for (const name in components2) { callDisconnected(components2[name]); } } function getComponentName(attribute) { if (startsWith(attribute, "data-")) { attribute = attribute.slice(5); } const cmp = components$1[attribute]; return cmp && (cmp.options || cmp).name; } function globalApi(App) { App.component = component; App.getComponents = getComponents; App.getComponent = getComponent; App.update = update; App.use = function(plugin) { if (plugin.installed) { return; } plugin.call(null, this); plugin.installed = true; return this; }; App.mixin = function(mixin, component2) { component2 = (isString(component2) ? this.component(component2) : component2) || this; component2.options = mergeOptions(component2.options, mixin); }; App.extend = function(options) { options || (options = {}); const Super = this; const Sub = function UIkitComponent(options2) { init$1(this, options2); }; Sub.prototype = Object.create(Super.prototype); Sub.prototype.constructor = Sub; Sub.options = mergeOptions(Super.options, options); Sub.super = Super; Sub.extend = Super.extend; return Sub; }; let container; Object.defineProperty(App, "container", { get() { return container || document.body; }, set(element) { container = $(element); } }); } function update(element, e) { element = element ? toNode(element) : document.body; for (const parentEl of parents(element).reverse()) { updateElement(parentEl, e); } apply(element, (element2) => updateElement(element2, e)); } function updateElement(element, e) { const components = getComponents(element); for (const name in components) { callUpdate(components[name], e); } } function instanceApi(App) { App.prototype.$mount = function(el) { const instance = this; attachToElement(el, instance); instance.$options.el = el; if (el.isConnected) { callConnected(instance); } }; App.prototype.$destroy = function(removeEl = false) { const instance = this; const { el } = instance.$options; if (el) { callDisconnected(instance); } callHook(instance, "destroy"); detachFromElement(el, instance); if (removeEl) { remove$1(instance.$el); } }; App.prototype.$create = createComponent; App.prototype.$emit = function(e) { callUpdate(this, e); }; App.prototype.$update = function(element = this.$el, e) { update(element, e); }; App.prototype.$reset = function() { callDisconnected(this); callConnected(this); }; App.prototype.$getComponent = getComponent; Object.defineProperties(App.prototype, { $el: { get() { return this.$options.el; } }, $container: Object.getOwnPropertyDescriptor(App, "container") }); } let id = 1; function generateId(instance, el = null) { return (el == null ? void 0 : el.id) || `${instance.$options.id}-${id++}`; } globalApi(App); instanceApi(App); function resize(options) { return observe(observeResize, options, "resize"); } function intersection(options) { return observe(observeIntersection, options); } function mutation(options) { return observe(observeMutation, options); } function lazyload(options = {}) { return intersection({ handler: function(entries, observer) { const { targets = this.$el, preload = 5 } = options; for (const el of toNodes(isFunction(targets) ? targets(this) : targets)) { $$('[loading="lazy"]', el).slice(0, preload - 1).forEach((el2) => removeAttr(el2, "loading")); } for (const el of entries.filter(({ isIntersecting }) => isIntersecting).map(({ target }) => target)) { observer.unobserve(el); } }, ...options }); } function viewport(options) { return observe((target, handler) => observeViewportResize(handler), options, "resize"); } function scroll$1(options) { return observe( (target, handler) => ({ disconnect: on(toScrollTargets(target), "scroll", handler, { passive: true }) }), options, "scroll" ); } function swipe(options) { return { observe(target, handler) { return { observe: noop, unobserve: noop, disconnect: on(target, pointerDown, handler, { passive: true }) }; }, handler(e) { if (!isTouch(e)) { return; } const pos = getEventPos(e); const target = "tagName" in e.target ? e.target : parent(e.target); once(document, `${pointerUp} ${pointerCancel} scroll`, (e2) => { const { x, y } = getEventPos(e2); if (e2.type !== "scroll" && target && x && Math.abs(pos.x - x) > 100 || y && Math.abs(pos.y - y) > 100) { setTimeout(() => { trigger(target, "swipe"); trigger(target, `swipe${swipeDirection(pos.x, pos.y, x, y)}`); }); } }); }, ...options }; } function observe(observe2, options, emit) { return { observe: observe2, handler() { callUpdate(this, emit); }, ...options }; } function swipeDirection(x1, y1, x2, y2) { return Math.abs(x1 - x2) >= Math.abs(y1 - y2) ? x1 - x2 > 0 ? "Left" : "Right" : y1 - y2 > 0 ? "Up" : "Down"; } function toScrollTargets(elements) { return toNodes(elements).map((node) => { const { ownerDocument } = node; const parent2 = scrollParent(node, true); return parent2 === ownerDocument.scrollingElement ? ownerDocument : parent2; }); } var Class = { connected() { addClass(this.$el, this.$options.id); } }; function maybeDefaultPreventClick(e) { if (e.target.closest('a[href="#"],a[href=""]')) { e.preventDefault(); } } var Position = { props: { pos: String, offset: Boolean, flip: Boolean, shift: Boolean, inset: Boolean }, data: { pos: `bottom-${isRtl ? "right" : "left"}`, offset: false, flip: true, shift: true, inset: false }, connected() { this.pos = this.$props.pos.split("-").concat("center").slice(0, 2); [this.dir, this.align] = this.pos; this.axis = includes(["top", "bottom"], this.dir) ? "y" : "x"; }, methods: { positionAt(element, target, boundary) { let offset = [this.getPositionOffset(element), this.getShiftOffset(element)]; const placement = [this.flip && "flip", this.shift && "shift"]; const attach = { element: [this.inset ? this.dir : flipPosition(this.dir), this.align], target: [this.dir, this.align] }; if (this.axis === "y") { for (const prop in attach) { attach[prop].reverse(); } offset.reverse(); placement.reverse(); } const restoreScrollPosition = storeScrollPosition(element); const elDim = dimensions(element); css(element, { top: -elDim.height, left: -elDim.width }); positionAt(element, target, { attach, offset, boundary, placement, viewportOffset: this.getViewportOffset(element) }); restoreScrollPosition(); }, getPositionOffset(element = this.$el) { return toPx( this.offset === false ? css(element, "--uk-position-offset") : this.offset, this.axis === "x" ? "width" : "height", element ) * (includes(["left", "top"], this.dir) ? -1 : 1) * (this.inset ? -1 : 1); }, getShiftOffset(element = this.$el) { return this.align === "center" ? 0 : toPx( css(element, "--uk-position-shift-offset"), this.axis === "y" ? "width" : "height", element ) * (includes(["left", "top"], this.align) ? 1 : -1); }, getViewportOffset(element) { return toPx(css(element, "--uk-position-viewport-offset")); } } }; function storeScrollPosition(element) { const scrollElement = scrollParent(element); const { scrollTop } = scrollElement; return () => { if (scrollTop !== scrollElement.scrollTop) { scrollElement.scrollTop = scrollTop; } }; } var Togglable = { props: { cls: Boolean, animation: "list", duration: Number, velocity: Number, origin: String, transition: String }, data: { cls: false, animation: [false], duration: 200, velocity: 0.2, origin: false, transition: "ease", clsEnter: "uk-togglable-enter", clsLeave: "uk-togglable-leave" }, computed: { hasAnimation: ({ animation }) => !!animation[0], hasTransition: ({ animation }) => ["slide", "reveal"].some((transition) => startsWith(animation[0], transition)) }, methods: { async toggleElement(targets, toggle, animate) { try { await Promise.all( toNodes(targets).map((el) => { const show = isBoolean(toggle) ? toggle : !this.isToggled(el); if (!trigger(el, `before${show ? "show" : "hide"}`, [this])) { return Promise.reject(); } const promise = (isFunction(animate) ? animate : animate === false || !this.hasAnimation ? toggleInstant : this.hasTransition ? toggleTransition : toggleAnimation)(el, show, this); const cls = show ? this.clsEnter : this.clsLeave; addClass(el, cls); trigger(el, show ? "show" : "hide", [this]); const done = () => { var _a; removeClass(el, cls); trigger(el, show ? "shown" : "hidden", [this]); if (show) { const restoreScrollPosition = storeScrollPosition(el); (_a = $$("[autofocus]", el).find(isVisible)) == null ? void 0 : _a.focus(); restoreScrollPosition(); } }; return promise ? promise.then(done, () => { removeClass(el, cls); return Promise.reject(); }) : done(); }) ); return true; } catch (e) { return false; } }, isToggled(el = this.$el) { el = toNode(el); return hasClass(el, this.clsEnter) ? true : hasClass(el, this.clsLeave) ? false : this.cls ? hasClass(el, this.cls.split(" ")[0]) : isVisible(el); }, _toggle(el, toggled) { if (!el) { return; } toggled = Boolean(toggled); let changed; if (this.cls) { changed = includes(this.cls, " ") || toggled !== hasClass(el, this.cls); changed && toggleClass(el, this.cls, includes(this.cls, " ") ? void 0 : toggled); } else { changed = toggled === el.hidden; changed && (el.hidden = !toggled); } if (changed) { trigger(el, "toggled", [toggled, this]); } } } }; function toggleInstant(el, show, { _toggle }) { Animation.cancel(el); Transition.cancel(el); return _toggle(el, show); } async function toggleTransition(el, show, { animation, duration, velocity, transition, _toggle }) { var _a; const [mode = "reveal", startProp = "top"] = ((_a = animation[0]) == null ? void 0 : _a.split("-")) || []; const dirs = [ ["left", "right"], ["top", "bottom"] ]; const dir = dirs[includes(dirs[0], startProp) ? 0 : 1]; const end = dir[1] === startProp; const props = ["width", "height"]; const dimProp = props[dirs.indexOf(dir)]; const marginProp = `margin-${dir[0]}`; const marginStartProp = `margin-${startProp}`; let currentDim = dimensions(el)[dimProp]; const inProgress = Transition.inProgress(el); await Transition.cancel(el); if (show) { _toggle(el, true); } const prevProps = Object.fromEntries( [ "padding", "border", "width", "height", "minWidth", "minHeight", "overflowY", "overflowX", marginProp, marginStartProp ].map((key) => [key, el.style[key]]) ); const dim = dimensions(el); const currentMargin = toFloat(css(el, marginProp)); const marginStart = toFloat(css(el, marginStartProp)); const endDim = dim[dimProp] + marginStart; if (!inProgress && !show) { currentDim += marginStart; } const [wrapper] = wrapInner(el, "<div>"); css(wrapper, { boxSizing: "border-box", height: dim.height, width: dim.width, ...css(el, [ "overflow", "padding", "borderTop", "borderRight", "borderBottom", "borderLeft", "borderImage", marginStartProp ]) }); css(el, { padding: 0, border: 0, minWidth: 0, minHeight: 0, [marginStartProp]: 0, width: dim.width, height: dim.height, overflow: "hidden", [dimProp]: currentDim }); const percent = currentDim / endDim; duration = (velocity * endDim + duration) * (show ? 1 - percent : percent); const endProps = { [dimProp]: show ? endDim : 0 }; if (end) { css(el, marginProp, endDim - currentDim + currentMargin); endProps[marginProp] = show ? currentMargin : endDim + currentMargin; } if (!end ^ mode === "reveal") { css(wrapper, marginProp, -endDim + currentDim); Transition.start(wrapper, { [marginProp]: show ? 0 : -endDim }, duration, transition); } try { await Transition.start(el, endProps, duration, transition); } finally { css(el, prevProps); unwrap(wrapper.firstChild); if (!show) { _toggle(el, false); } } } function toggleAnimation(el, show, cmp) { const { animation, duration, _toggle } = cmp; if (show) { _toggle(el, true); return Animation.in(el, animation[0], duration, cmp.origin); } return Animation.out(el, animation[1] || animation[0], duration, cmp.origin).then( () => _toggle(el, false) ); } const keyMap = { TAB: 9, ESC: 27, SPACE: 32, END: 35, HOME: 36, LEFT: 37, UP: 38, RIGHT: 39, DOWN: 40 }; var Accordion = { mixins: [Class, Togglable], props: { animation: Boolean, targets: String, active: null, collapsible: Boolean, multiple: Boolean, toggle: String, content: String, offset: Number }, data: { targets: "> *", active: false, animation: true, collapsible: true, multiple: false, clsOpen: "uk-open", toggle: "> .uk-accordion-title", content: "> .uk-accordion-content", offset: 0 }, computed: { items: ({ targets }, $el) => $$(targets, $el), toggles({ toggle }) { return this.items.map((item) => $(toggle, item)); }, contents({ content }) { return this.items.map((item) => { var _a; return ((_a = item._wrapper) == null ? void 0 : _a.firstElementChild) || $(content, item); }); } }, watch: { items(items, prev) { if (prev || hasClass(items, this.clsOpen)) { return; } const active = this.active !== false && items[Number(this.active)] || !this.collapsible && items[0]; if (active) { this.toggle(active, false); } }, toggles() { this.$emit(); }, contents(items) { for (const el of items) { const isOpen = hasClass( this.items.find((item) => item.contains(el)), this.clsOpen ); hide(el, !isOpen); } this.$emit(); } }, observe: lazyload(), events: [ { name: "click keydown", delegate: ({ targets, $props }) => `${targets} ${$props.toggle}`, async handler(e) { var _a; if (e.type === "keydown" && e.keyCode !== keyMap.SPACE) { return; } maybeDefaultPreventClick(e); (_a = this._off) == null ? void 0 : _a.call(this); this._off = keepScrollPosition(e.target); await this.toggle(index(this.toggles, e.current)); this._off(); } }, { name: "shown hidden", self: true, delegate: ({ targets }) => targets, handler() { this.$emit(); } } ], update() { const activeItems = filter(this.items, `.${this.clsOpen}`); for (const index2 in this.items) { const toggle = this.toggles[index2]; const content = this.contents[index2]; if (!toggle || !content) { continue; } toggle.id = generateId(this, toggle); content.id = generateId(this, content); const active = includes(activeItems, this.items[index2]); attr(toggle, { role: isTag(toggle, "a") ? "button" : null, "aria-controls": content.id, "aria-expanded": active, "aria-disabled": !this.collapsible && activeItems.length < 2 && active }); attr(content, { role: "region", "aria-labelledby": toggle.id }); if (isTag(content, "ul")) { attr(children(content), "role", "presentation"); } } }, methods: { toggle(item, animate) { item = this.items[getIndex(item, this.items)]; let items = [item]; const activeItems = filter(this.items, `.${this.clsOpen}`); if (!this.multiple && !includes(activeItems, items[0])) { items = items.concat(activeItems); } if (!this.collapsible && activeItems.length < 2 && includes(activeItems, item)) { return; } return Promise.all( items.map( (el) => this.toggleElement(el, !includes(activeItems, el), (el2, show) => { toggleClass(el2, this.clsOpen, show); if (animate === false || !this.animation) { hide($(this.content, el2), !show); return; } return transition(el2, show, this); }) ) ); } } }; function hide(el, hide2) { el && (el.hidden = hide2); } async function transition(el, show, { content, duration, velocity, transition: transition2 }) { var _a; content = ((_a = el._wrapper) == null ? void 0 : _a.firstElementChild) || $(content, el); if (!el._wrapper) { el._wrapper = wrapAll(content, "<div>"); } const wrapper = el._wrapper; css(wrapper, "overflow", "hidden"); const currentHeight = toFloat(css(wrapper, "height")); await Transition.cancel(wrapper); hide(content, false); const endHeight = sumBy(["marginTop", "marginBottom"], (prop) => css(content, prop)) + dimensions(content).height; const percent = currentHeight / endHeight; duration = (velocity * endHeight + duration) * (show ? 1 - percent : percent); css(wrapper, "height", currentHeight); await Transition.start(wrapper, { height: show ? endHeight : 0 }, duration, transition2); unwrap(content); delete el._wrapper; if (!show) { hide(content, true); } } function keepScrollPosition(el) { const scrollElement = scrollParent(el, true); let frame; (function scroll() { frame = requestAnimationFrame(() => { const { top } = dimensions(el); if (top < 0) { scrollElement.scrollTop += top; } scroll(); }); })(); return () => requestAnimationFrame(() => cancelAnimationFrame(frame)); } var alert = { mixins: [Class, Togglable], args: "animation", props: { animation: Boolean, close: String }, data: { animation: true, selClose: ".uk-alert-close", duration: 150 }, events: { name: "click", delegate: ({ selClose }) => selClose, handler(e) { maybeDefaultPreventClick(e); this.close(); } }, methods: { async close() { await this.toggleElement(this.$el, false, animate$1); this.$destroy(true); } } }; function animate$1(el, show, { duration, transition, velocity }) { const height = toFloat(css(el, "height")); css(el, "height", height); return Transition.start( el, { height: 0, marginTop: 0, marginBottom: 0, paddingTop: 0, paddingBottom: 0, borderTop: 0, borderBottom: 0, opacity: 0 }, velocity * height + duration, transition ); } var Video = { args: "autoplay", props: { automute: Boolean, autoplay: Boolean }, data: { automute: false, autoplay: true }, beforeConnect() { if (this.autoplay === "inview" && !hasAttr(this.$el, "preload")) { this.$el.preload = "none"; } if (isTag(this.$el, "iframe") && !hasAttr(this.$el, "allow")) { this.$el.allow = "autoplay"; } if (this.autoplay === "hover") { if (isTag(this.$el, "video")) { this.$el.tabIndex = 0; } else { this.autoplay = true; } } if (this.automute) { mute(this.$el); } }, events: [ { name: `${pointerEnter} focusin`, filter: ({ autoplay }) => includes(autoplay, "hover"), handler(e) { if (!isTouch(e) || !isPlaying(this.$el)) { play(this.$el); } else { pause(this.$el); } } }, { name: `${pointerLeave} focusout`, filter: ({ autoplay }) => includes(autoplay, "hover"), handler(e) { if (!isTouch(e)) { pause(this.$el); } } } ], observe: [ intersection({ filter: ({ autoplay }) => autoplay !== "hover", handler([{ isIntersecting }]) { if (!document.fullscreenElement) { if (isIntersecting) { if (this.autoplay) { play(this.$el); } } else { pause(this.$el); } } }, args: { intersecting: false }, options: ({ $el, autoplay }) => ({ root: autoplay === "inview" ? null : parent($el).closest(":not(a)") }) }) ] }; function isPlaying(videoEl) { return !videoEl.paused && !videoEl.ended; } var cover = { mixins: [Video], props: { width: Number, height: Number }, data: { automute: true }, created() { this.useObjectFit = isTag(this.$el, "img", "video"); }, observe: resize({ target: ({ $el }) => getPositionedParent($el) || parent($el), filter: ({ useObjectFit }) => !useObjectFit }), update: { read() { if (this.useObjectFit) { return false; } const { $el, width = $el.clientWidth, height = $el.clientHeight } = this; const el = getPositionedParent($el) || parent($el); const dim = Dimensions.cover( { width, height }, { width: el.offsetWidth, height: el.offsetHeight } ); return dim.width && dim.height ? dim : false; }, write({ height, width }) { css(this.$el, { height, width }); }, events: ["resize"] } }; function getPositionedParent(el) { while (el = parent(el)) { if (css(el, "position") !== "static") { return el; } } } var Container = { props: { container: Boolean }, data: { container: true }, computed: { container({ container }) { return container === true && this.$container || container && $(container); } } }; let prevented; function preventBackgroundScroll(el) { const off = on( el, "touchstart", (e) => { if (e.targetTouches.length !== 1 || matches(e.target, 'input[type="range"')) { return; } let prev = getEventPos(e).y; const offMove = on( el, "touchmove", (e2) => { const pos = getEventPos(e2).y; if (pos === prev) { return; } prev = pos; if (!scrollParents(e2.target).some((scrollParent) => { if (!el.contains(scrollParent)) { return false; } let { scrollHeight, clientHeight } = scrollParent; return clientHeight < scrollHeight; })) { e2.preventDefault(); } }, { passive: false } ); once(el, "scroll touchend touchcanel", offMove, { capture: true }); }, { passive: true } ); if (prevented) { return off; } prevented = true; const { scrollingElement } = document; const props = { overflowY: CSS.supports("overflow", "clip") ? "clip" : "hidden", touchAction: "none", paddingRight: width(window) - scrollingElement.clientWidth || "" }; css(scrollingElement, props); return () => { prevented = false; off(); resetProps(scrollingElement, props); }; } let active$1; var drop = { mixins: [Container, Position, Togglable], args: "pos", props: { mode: "list", toggle: Boolean, boundary: Boolean, boundaryX: Boolean, boundaryY: Boolean, target: Boolean, targetX: Boolean, targetY: Boolean, stretch: Boolean, delayShow: Number, delayHide: Number, autoUpdate: Boolean, clsDrop: String, animateOut: Boolean, bgScroll: Boolean, closeOnScroll: Boolean }, data: { mode: ["click", "hover"], toggle: "- *", boundary: false, boundaryX: false, boundaryY: false, target: false, targetX: false, targetY: false, stretch: false, delayShow: 0, delayHide: 800, autoUpdate: true, clsDrop: false, animateOut: false, bgScroll: true, animation: ["uk-animation-fade"], cls: "uk-open", container: false, closeOnScroll: false, selClose: ".uk-drop-close" }, computed: { boundary({ boundary, boundaryX, boundaryY }, $el) { return [ query(boundaryX || boundary, $el) || window, query(boundaryY || boundary, $el) || window ]; }, target({ target, targetX, targetY }, $el) { targetX || (targetX = target || this.targetEl); targetY || (targetY = target || this.targetEl); return [ targetX === true ? window : query(targetX, $el), targetY === true ? window : query(targetY, $el) ]; } }, created() { this.tracker = new MouseTracker(); }, beforeConnect() { this.clsDrop = this.$props.clsDrop || this.$options.id; }, connected() { addClass(this.$el, "uk-drop", this.clsDrop); if (this.toggle && !this.targetEl) { this.targetEl = createToggleComponent(this); } attr(this.targetEl, "aria-expanded", false); this._style = pick(this.$el.style, ["width", "height"]); }, disconnected() { if (this.isActive()) { this.hide(false); active$1 = null; } css(this.$el, this._style); }, events: [ { name: "click", delegate: ({ selClose }) => selClose, handler(e) { maybeDefaultPreventClick(e); this.hide(false); } }, { name: "click", delegate: () => 'a[href*="#"]', handler({ defaultPrevented, current }) { const { hash } = current; if (!defaultPrevented && hash && isSameSiteAnchor(current) && !this.$el.contains($(hash))) { this.hide(false); } } }, { name: "beforescroll", handler() { this.hide(false); } }, { name: "toggle", self: true, handler(e, toggle) { e.preventDefault(); if (this.isToggled()) { this.hide(false); } else { this.show(toggle == null ? void 0 : toggle.$el, false); } } }, { name: "toggleshow", self: true, handler(e, toggle) { e.preventDefault(); this.show(toggle == null ? void 0 : toggle.$el); } }, { name: "togglehide", self: true, handler(e) { e.preventDefault(); if (!matches(this.$el, ":focus,:hover")) { this.hide(); } } }, { name: `${pointerEnter} focusin`, filter: ({ mode }) => includes(mode, "hover"), handler(e) { if (!isTouch(e)) { this.clearTimers(); } } }, { name: `${pointerLeave} focusout`, filter: ({ mode }) => includes(mode, "hover"), handler(e) { if (!isTouch(e) && e.relatedTarget) { this.hide(); } } }, { name: "toggled", self: true, handler(e, toggled) { if (toggled) { this.clearTimers(); this.position(); } } }, { name: "show", self: true, handler() { active$1 = this; this.tracker.init(); attr(this.targetEl, "aria-expanded", true); const handlers = [ listenForResize(this), listenForEscClose$1(this), listenForBackgroundClose$1(this), this.autoUpdate && listenForScroll(this), this.closeOnScroll && listenForScrollClose(this) ]; once(this.$el, "hide", () => handlers.forEach((handler) => handler && handler()), { self: true }); if (!this.bgScroll) { once(this.$el, "hidden", preventBackgroundScroll(this.$el), { self: true }); } } }, { name: "beforehide", self: true, handler() { this.clearTimers(); } }, { name: "hide", handler({ target }) { if (this.$el !== target) { active$1 = active$1 === null && this.$el.contains(target) && this.isToggled() ? this : active$1; return; } active$1 = this.isActive() ? null : active$1; this.tracker.cancel(); attr(this.targetEl, "aria-expanded", false); } } ], update: { write() { if (this.isToggled() && !hasClass(this.$el, this.clsEnter)) { this.position(); } } }, methods: { show(target = this.targetEl, delay = true) { if (this.isToggled() && target && this.targetEl && target !== this.targetEl) { this.hide(false, false); } this.targetEl = target; this.clearTimers(); if (this.isActive()) { return; } if (active$1) { if (delay && active$1.isDelaying()) { this.showTimer = setTimeout(() => matches(target, ":hover") && this.show(), 10); return; } let prev; while (active$1 && prev !== active$1 && !active$1.$el.contains(this.$el)) { prev = active$1; active$1.hide(false, false); } delay = false; } if (this.container && parent(this.$el) !== this.container) { append(this.container, this.$el); } this.showTimer = setTimeout( () => this.toggleElement(this.$el, true), delay && this.delayShow || 0 ); }, hide(delay = true, animate = true) { const hide = () => this.toggleElement(this.$el, false, this.animateOut && animate); this.clearTimers(); this.isDelayedHide = delay; if (delay && this.isDelaying()) { this.hideTimer = setTimeout(this.hide, 50); } else if (delay && this.delayHide) { this.hideTimer = setTimeout(hide, this.delayHide); } else { hide(); } }, clearTimers() { clearTimeout(this.showTimer); clearTimeout(this.hideTimer); this.showTimer = null; this.hideTimer = null; }, isActive() { return active$1 === this; }, isDelaying() { return [this.$el, ...$$(".uk-drop", this.$el)].some((el) => this.tracker.movesTo(el)); }, position() { const restoreScrollPosition = storeScrollPosition(this.$el); removeClass(this.$el, "uk-drop-stack"); css(this.$el, this._style); this.$el.hidden = true; const viewports = this.target.map((target) => getViewport$1(this.$el, target)); const viewportOffset = this.getViewportOffset(this.$el); const dirs = [ [0, ["x", "width", "left", "right"]], [1, ["y", "height", "top", "bottom"]] ]; for (const [i, [axis, prop]] of dirs) { if (this.axis !== axis && includes([axis, true], this.stretch)) { css(this.$el, { [prop]: Math.min( offset(this.boundary[i])[prop], viewports[i][prop] - 2 * viewportOffset ), [`overflow-${axis}`]: "auto" }); } } const maxWidth = viewports[0].width - 2 * viewportOffset; this.$el.hidden = false; css(this.$el, "maxWidth", ""); if (this.$el.offsetWidth > maxWidth) { addClass(this.$el, "uk-drop-stack"); } css(this.$el, "maxWidth", maxWidth); this.positionAt(this.$el, this.target, this.boundary); for (const [i, [axis, prop, start, end]] of dirs) { if (this.axis === axis && includes([axis, true], this.stretch)) { const positionOffset = Math.abs(this.getPositionOffset()); const targetOffset = offset(this.target[i]); const elOffset = offset(this.$el); css(this.$el, { [prop]: (targetOffset[start] > elOffset[start] ? targetOffset[this.inset ? end : start] - Math.max( offset(this.boundary[i])[start], viewports[i][start] + viewportOffset ) : Math.min( offset(this.boundary[i])[end], viewports[i][end] - viewportOffset ) - targetOffset[this.inset ? start : end]) - positionOffset, [`overflow-${axis}`]: "auto" }); this.positionAt(this.$el, this.target, this.boundary); } } restoreScrollPosition(); } } }; function getViewport$1(el, target) { return offsetViewport(overflowParents(target).find((parent2) => parent2.contains(el))); } function createToggleComponent(drop) { const { $el } = drop.$create("toggle", query(drop.toggle, drop.$el), { target: drop.$el, mode: drop.mode }); $el.ariaHasPopup = true; return $el; } function listenForResize(drop) { const update = () => drop.$emit(); const off = [ observeViewportResize(update), observeResize(overflowParents(drop.$el).concat(drop.target), update) ]; return () => off.map((observer) => observer.disconnect()); } function listenForScroll(drop, fn = () => drop.$emit()) { return on([document, ...overflowParents(drop.$el)], "scroll", fn, { passive: true }); } function listenForEscClose$1(drop) { return on(document, "keydown", (e) => { if (e.keyCode === keyMap.ESC) { drop.hide(false); } }); } function listenForScrollClose(drop) { return listenForScroll(drop, () => drop.hide(false)); } function listenForBackgroundClose$1(drop) { return on(document, pointerDown, ({ target }) => { if (drop.$el.contains(target)) { return; } once( document, `${pointerUp} ${pointerCancel} scroll`, ({ defaultPrevented, type, target: newTarget }) => { var _a; if (!defaultPrevented && type === pointerUp && target === newTarget && !((_a = drop.targetEl) == null ? void 0 : _a.contains(target))) { drop.hide(false); } }, true ); }); } var Dropnav = { mixins: [Class, Container], props: { align: String, clsDrop: String, boundary: Boolean, dropbar: Boolean, dropbarAnchor: Boolean, duration: Number, mode: Boolean, offset: Boolean, stretch: Boolean, delayShow: Boolean, delayHide: Boolean, target: Boolean, targetX: Boolean, targetY: Boolean, animation: Boolean, animateOut: Boolean, closeOnScroll: Boolean }, data: { align: isRtl ? "right" : "left", clsDrop: "uk-dropdown", clsDropbar: "uk-dropnav-dropbar", boundary: true, dropbar: false, dropbarAnchor: false, delayShow: 160, duration: 200, container: false, selNavItem: "> li > a, > ul > li > a" }, computed: { dropbarAnchor: ({ dropbarAnchor }, $el) => query(dropbarAnchor, $el) || $el, dropbar({ dropbar }) { if (!dropbar) { return null; } dropbar = this._dropbar || query(dropbar, this.$el) || $(`+ .${this.clsDropbar}`, this.$el); return dropbar ? dropbar : this._dropbar = $("<div></div>"); }, dropContainer(_, $el) { return this.container || $el; }, dropdowns({ clsDrop }, $el) { var _a; const dropdowns = $$(`.${clsDrop}`, $el); if (this.dropContainer !== $el) { for (const el of $$(`.${clsDrop}`, this.dropContainer)) { const target = (_a = this.getDropdown(el)) == null ? void 0 : _a.targetEl; if (!includes(dropdowns, el) && target && this.$el.contains(target)) { dropdowns.push(el); } } } return dropdowns; }, items({ selNavItem }, $el) { return $$(selNavItem, $el); } }, watch: { dropbar(dropbar) { addClass( dropbar, "uk-dropbar", "uk-dropbar-top", this.clsDropbar, `uk-${this.$options.name}-dropbar` ); }, dropdowns() { this.initializeDropdowns(); } }, connected() { this.initializeDropdowns(); preventInitialPointerEnter(this.$el); }, disconnected() { remove$1(this._dropbar); delete this._dropbar; }, events: [ { name: "mouseover focusin", delegate: ({ selNavItem }) => selNavItem, handler({ current }) { const active2 = this.getActive(); if (active2 && includes(active2.mode, "hover") && active2.targetEl && !current.contains(active2.targetEl) && !active2.isDelaying()) { active2.hide(false); } } }, { name: "keydown", self: true, delegate: ({ selNavItem }) => selNavItem, handler(e) { var _a; const { current, keyCode } = e; const active2 = this.getActive(); if (keyCode === keyMap.DOWN) { if ((active2 == null ? void 0 : active2.targetEl) === current) { e.preventDefault(); (_a = $(selFocusable, active2.$el)) == null ? void 0 : _a.focus(); } else { const dropdown = this.dropdowns.find( (el) => { var _a2; return ((_a2 = this.getDropdown(el)) == null ? void 0 : _a2.targetEl) === current; } ); if (dropdown) { e.preventDefault(); current.click(); once(dropdown, "show", (e2) => { var _a2; return (_a2 = $(selFocusable, e2.target)) == null ? void 0 : _a2.focus(); }); } } } handleNavItemNavigation(e, this.items, active2); } }, { name: "keydown", el: ({ dropContainer }) => dropContainer, delegate: ({ clsDrop }) => `.${clsDrop}`, handler(e) { var _a; const { current, keyCode, target } = e; if (isInput(target) || !includes(this.dropdowns, current)) { return; } const active2 = this.getActive(); let next = -1; if (keyCode === keyMap.HOME) { next = 0; } else if (keyCode === keyMap.END) { next = "last"; } else if (keyCode === keyMap.UP) { next = "previous"; } else if (keyCode === keyMap.DOWN) { next = "next"; } else if (keyCode === keyMap.ESC) { (_a = active2.targetEl) == null ? void 0 : _a.focus(); } if (~next) { e.preventDefault(); const elements = $$(selFocusable, current); elements[getIndex( next, elements, findIndex(elements, (el) => matches(el, ":focus")) )].focus(); return; } handleNavItemNavigation(e, this.items, active2); } }, { name: "mouseleave", el: ({ dropbar }) => dropbar, filter: ({ dropbar }) => dropbar, handler() { const active2 = this.getActive(); if (active2 && includes(active2.mode, "hover") && !this.dropdowns.some((el) => matches(el, ":hover"))) { active2.hide(); } } }, { name: "beforeshow", el: ({ dropContainer }) => dropContainer, filter: ({ dropbar }) => dropbar, handler({ target }) { if (!this.isDropbarDrop(target)) { return; } if (this.dropbar.previousElementSibling !== this.dropbarAnchor) { after(this.dropbarAnchor, this.dropbar); } addClass(target, `${this.clsDrop}-dropbar`); } }, { name: "show", el: ({ dropContainer }) => dropContainer, filter: ({ dropbar }) => dropbar, handler({ target }) { if (!this.isDropbarDrop(target)) { return; } const drop = this.getDropdown(target); const adjustHeight = () => { const maxBottom = Math.max( ...parents(target, `.${this.clsDrop}`).concat(target).map((el) => offset(el).bottom) ); offset(this.dropbar, { left: offset(this.dropbar).left, top: this.getDropbarOffset(drop.getPositionOffset()) }); this.transitionTo( maxBottom - offset(this.dropbar).top + toFloat(css(target, "marginBottom")), target ); }; this._observer = observeResize([drop.$el, ...drop.target], adjustHeight); adjustHeight(); } }, { name: "beforehide", el: ({ dropContainer }) => dropContainer, filter: ({ dropbar }) => dropbar, handler(e) { const active2 = this.getActive(); if (matches(this.dropbar, ":hover") && active2.$el === e.target && this.isDropbarDrop(active2.$el) && includes(active2.mode, "hover") && active2.isDelayedHide && !this.items.some((el) => active2.targetEl !== el && matches(el, ":focus"))) { e.preventDefault(); } } }, { name: "hide", el: ({ dropContainer }) => dropContainer, filter: ({ dropbar }) => dropbar, handler({ target }) { var _a; if (!this.isDropbarDrop(target)) { return; } (_a = this._observer) == null ? void 0 : _a.disconnect(); const active2 = this.getActive(); if (!active2 || active2.$el === target) { this.transitionTo(0); } } } ], methods: { getActive() { var _a; return includes(this.dropdowns, (_a = active$1) == null ? void 0 : _a.$el) && active$1; }, async transitionTo(newHeight, el) { const { dropbar } = this; const oldHeight = height(dropbar); el = oldHeight < newHeight && el; await Transition.cancel([el, dropbar]); if (el) { const diff = offset(el).top - offset(dropbar).top - oldHeight; if (diff > 0) { css(el, "transitionDelay", `${diff / newHeight * this.duration}ms`); } } css(el, "clipPath", `polygon(0 0,100% 0,100% ${oldHeight}px,0 ${oldHeight}px)`); height(dropbar, oldHeight); await Promise.all([ Transition.start(dropbar, { height: newHeight }, this.duration), Transition.start( el, { clipPath: `polygon(0 0,100% 0,100% ${newHeight}px,0 ${newHeight}px)` }, this.duration ).finally(() => css(el, { clipPath: "", transitionDelay: "" })) ]).catch(noop); }, getDropdown(el) { return this.$getComponent(el, "drop") || this.$getComponent(el, "dropdown"); }, isDropbarDrop(el) { return includes(this.dropdowns, el) && hasClass(el, this.clsDrop); }, getDropbarOffset(offsetTop) { const { $el, target, targetY } = this; const { top, height: height2 } = offset(query(targetY || target || $el, $el)); return top + height2 + offsetTop; }, initializeDropdowns() { this.$create( "drop", this.dropdowns.filter((el) => !this.getDropdown(el)), { ...this.$props, flip: false, shift: true, pos: `bottom-${this.align}`, boundary: this.boundary === true ? this.$el : this.boundary } ); } } }; function handleNavItemNavigation(e, toggles, active2) { var _a, _b, _c; const { current, keyCode } = e; let next = -1; if (keyCode === keyMap.HOME) { next = 0; } else if (keyCode === keyMap.END) { next = "last"; } else if (keyCode === keyMap.LEFT) { next = "previous"; } else if (keyCode === keyMap.RIGHT) { next = "next"; } else if (keyCode === keyMap.TAB) { (_a = active2.targetEl) == null ? void 0 : _a.focus(); (_b = active2.hide) == null ? void 0 : _b.call(active2, false); } if (~next) { e.preventDefault(); (_c = active2.hide) == null ? void 0 : _c.call(active2, false); toggles[getIndex(next, toggles, toggles.indexOf(active2.targetEl || current))].focus(); } } function preventInitialPointerEnter(el) { const off = () => handlers.forEach((handler) => handler()); const handlers = [ once(el.ownerDocument, pointerMove, (e) => el.contains(e.target) || off()), on(el, `mouseenter ${pointerEnter}`, (e) => e.stopPropagation(), { capture: true }), on(el, `mouseleave ${pointerLeave}`, off, { capture: true }) ]; } var formCustom = { mixins: [Class], args: "target", props: { target: Boolean }, data: { target: false }, computed: { input: (_, $el) => $(selInput, $el), state() { return this.input.nextElementSibling; }, target({ target }, $el) { return target && (target === true && parent(this.input) === $el && this.input.nextElementSibling || $(target, $el)); } }, update() { var _a; const { target, input } = this; if (!target) { return; } let option; const prop = isInput(target) ? "value" : "textContent"; const prev = target[prop]; const value = ((_a = input.files) == null ? void 0 : _a[0]) ? input.files[0].name : matches(input, "select") && (option = $$("option", input).filter((el) => el.selected)[0]) ? option.textContent : input.value; if (prev !== value) { target[prop] = value; } }, events: [ { name: "change", handler() { this.$emit(); } }, { name: "reset", el: ({ $el }) => $el.closest("form"), handler() { this.$emit(); } } ] }; var Margin = { props: { margin: String, firstColumn: Boolean }, data: { margin: "uk-margin-small-top", firstColumn: "uk-first-column" }, observe: [ mutation({ options: { childList: true } }), mutation({ options: { attributes: true, attributeFilter: ["style"] } }), resize({ handler(mutations) { for (const { borderBoxSize: [{ inlineSize, blockSize }] } of mutations) { if (inlineSize || blockSize) { this.$emit("resize"); return; } } }, target: ({ $el }) => [$el, ...children($el)] }) ], update: { read() { return { rows: getRows(children(this.$el)) }; }, write({ rows }) { for (const row of rows) { for (const el of row) { toggleClass(el, this.margin, rows[0] !== row); toggleClass(el, this.firstColumn, row[isRtl ? row.length - 1 : 0] === el); } } }, events: ["resize"] } }; function getRows(elements) { const sorted = [[]]; const withOffset = elements.some( (el, i) => i && elements[i - 1].offsetParent !== el.offsetParent ); for (const el of elements) { if (!isVisible(el)) { continue; } const offset = getOffset(el, withOffset); for (let i = sorted.length - 1; i >= 0; i--) { const current = sorted[i]; if (!current[0]) { current.push(el); break; } const offsetCurrent = getOffset(current[0], withOffset); if (offset.top >= offsetCurrent.bottom - 1 && offset.top !== offsetCurrent.top) { sorted.push([el]); break; } if (offset.bottom - 1 > offsetCurrent.top || offset.top === offsetCurrent.top) { let j = current.length - 1; for (; j >= 0; j--) { const offsetCurrent2 = getOffset(current[j], withOffset); if (offset.left >= offsetCurrent2.left) { break; } } current.splice(j + 1, 0, el); break; } if (i === 0) { sorted.unshift([el]); break; } } } return sorted; } function getOffset(element, offset = false) { let { offsetTop, offsetLeft, offsetHeight, offsetWidth } = element; if (offset) { [offsetTop, offsetLeft] = offsetPosition(element); } return { top: offsetTop, left: offsetLeft, bottom: offsetTop + offsetHeight, right: offsetLeft + offsetWidth }; } var grid = { extends: Margin, mixins: [Class], name: "grid", props: { masonry: Boolean, parallax: String, parallaxStart: String, parallaxEnd: String, parallaxJustify: Boolean }, data: { margin: "uk-grid-margin", clsStack: "uk-grid-stack", masonry: false, parallax: 0, parallaxStart: 0, parallaxEnd: 0, parallaxJustify: false }, connected() { this.masonry && addClass(this.$el, "uk-flex-top", "uk-flex-wrap-top"); }, observe: scroll$1({ filter: ({ parallax, parallaxJustify }) => parallax || parallaxJustify }), update: [ { write({ rows }) { toggleClass(this.$el, this.clsStack, !rows.some((row) => row.length > 1)); }, events: ["resize"] }, { read(data) { const { rows } = data; let { masonry, parallax, parallaxJustify, margin } = this; parallax = Math.max(0, toPx(parallax)); if (!(masonry || parallax || parallaxJustify) || positionedAbsolute(rows) || rows[0].some( (el, i) => rows.some((row) => row[i] && row[i].offsetWidth !== el.offsetWidth) )) { return data.translates = data.scrollColumns = false; } let gutter = getGutter(rows, margin); let columns; let translates; if (masonry) { [columns, translates] = applyMasonry(rows, gutter, masonry === "next"); } else { columns = transpose(rows); } const columnHeights = columns.map( (column) => sumBy(column, "offsetHeight") + gutter * (column.length - 1) ); const height = Math.max(0, ...columnHeights); let scrollColumns; let parallaxStart; let parallaxEnd; if (parallax || parallaxJustify) { scrollColumns = columnHeights.map( (hgt, i) => parallaxJustify ? height - hgt + parallax : parallax / (i % 2 || 8) ); if (!parallaxJustify) { parallax = Math.max( ...columnHeights.map((hgt, i) => hgt + scrollColumns[i] - height) ); } parallaxStart = toPx(this.parallaxStart, "height", this.$el, true); parallaxEnd = toPx(this.parallaxEnd, "height", this.$el, true); } return { columns, translates, scrollColumns, parallaxStart, parallaxEnd, padding: parallax, height: translates ? height : "" }; }, write({ height, padding }) { css(this.$el, "paddingBottom", padding || ""); height !== false && css(this.$el, "height", height); }, events: ["resize"] }, { read({ rows, scrollColumns, parallaxStart, parallaxEnd }) { return { scrolled: scrollColumns && !positionedAbsolute(rows) ? scrolledOver(this.$el, parallaxStart, parallaxEnd) : false }; }, write({ columns, scrolled, scrollColumns, translates }) { if (!scrolled && !translates) { return; } columns.forEach( (column, i) => column.forEach((el, j) => { let [x, y] = translates && translates[i][j] || [0, 0]; if (scrolled) { y += scrolled * scrollColumns[i]; } css(el, "transform", `translate(${x}px, ${y}px)`); }) ); }, events: ["scroll", "resize"] } ] }; function positionedAbsolute(rows) { return rows.flat().some((el) => css(el, "position") === "absolute"); } function applyMasonry(rows, gutter, next) { const columns = []; const translates = []; const columnHeights = Array(rows[0].length).fill(0); let rowHeights = 0; for (let row of rows) { if (isRtl) { row.reverse(); } let height = 0; for (const j in row) { const { offsetWidth, offsetHeight } = row[j]; const index = next ? j : columnHeights.indexOf(Math.min(...columnHeights)); push(columns, index, row[j]); push(translates, index, [ (index - j) * offsetWidth * (isRtl ? -1 : 1), columnHeights[index] - rowHeights ]); columnHeights[index] += offsetHeight + gutter; height = Math.max(height, offsetHeight); } rowHeights += height + gutter; } return [columns, translates]; } function getGutter(rows, cls) { const node = rows.flat().find((el) => hasClass(el, cls)); return toFloat(node ? css(node, "marginTop") : css(rows[0][0], "paddingLeft")); } function transpose(rows) { const columns = []; for (const row of rows) { for (const i in row) { push(columns, i, row[i]); } } return columns; } function push(array, index, value) { if (!array[index]) { array[index] = []; } array[index].push(value); } var heightMatch = { args: "target", props: { target: String, row: Boolean }, data: { target: "> *", row: true }, computed: { elements: ({ target }, $el) => $$(target, $el) }, observe: resize({ target: ({ $el, elements }) => elements.reduce((elements2, el) => elements2.concat(el, ...el.children), [$el]) }), events: { // Hidden elements may change height when fonts load name: "loadingdone", el: () => document.fonts, handler() { this.$emit("resize"); } }, update: { read() { return { rows: (this.row ? getRows(this.elements) : [this.elements]).map(match) }; }, write({ rows }) { for (const { heights, elements } of rows) { elements.forEach((el, i) => css(el, "minHeight", heights[i])); } }, events: ["resize"] } }; function match(elements) { if (elements.length < 2) { return { heights: [""], elements }; } let heights = elements.map(getHeight); const max = Math.max(...heights); return { heights: elements.map((el, i) => heights[i].toFixed(2) === max.toFixed(2) ? "" : max), elements }; } function getHeight(element) { const style = pick(element.style, ["display", "minHeight"]); if (!isVisible(element)) { css(element, "display", "block", "important"); } css(element, "minHeight", ""); const height = dimensions(element).height - boxModelAdjust(element, "height", "content-box"); css(element, style); return height; } var heightPlaceholder = { args: "target", props: { target: String }, data: { target: "" }, computed: { target: { get: ({ target }, $el) => query(target, $el), observe: ({ target }) => target } }, observe: resize({ target: ({ target }) => target }), update: { read() { return this.target ? { height: this.target.offsetHeight } : false; }, write({ height }) { css(this.$el, "minHeight", height); }, events: ["resize"] } }; var heightViewport = { props: { expand: Boolean, offsetTop: Boolean, offsetBottom: Boolean, min: Number, property: String }, data: { expand: false, offsetTop: false, offsetBottom: false, min: 0, property: "min-height" }, // check for offsetTop change observe: [ viewport({ filter: ({ expand }) => expand }), resize({ target: ({ $el }) => scrollParents($el) }) ], update: { read() { if (!isVisible(this.$el)) { return false; } let minHeight = ""; const box = boxModelAdjust(this.$el, "height", "content-box"); const { body, scrollingElement } = document; const scrollElement = scrollParent(this.$el); const { height: viewportHeight } = offsetViewport( scrollElement === body ? scrollingElement : scrollElement ); const isScrollingElement = scrollingElement === scrollElement || body === scrollElement; minHeight = `calc(${isScrollingElement ? "100vh" : `${viewportHeight}px`}`; if (this.expand) { const diff = dimensions(scrollElement).height - dimensions(this.$el).height; minHeight += ` - ${diff}px`; } else { if (this.offsetTop) { if (isScrollingElement) { const offsetTopEl = this.offsetTop === true ? this.$el : query(this.offsetTop, this.$el); const { top } = offset(offsetTopEl); minHeight += top > 0 && top < viewportHeight / 2 ? ` - ${top}px` : ""; } else { minHeight += ` - ${boxModelAdjust(scrollElement, "height", css(scrollElement, "boxSizing"))}px`; } } if (this.offsetBottom === true) { minHeight += ` - ${dimensions(this.$el.nextElementSibling).height}px`; } else if (isNumeric(this.offsetBottom)) { minHeight += ` - ${this.offsetBottom}vh`; } else if (this.offsetBottom && endsWith(this.offsetBottom, "px")) { minHeight += ` - ${toFloat(this.offsetBottom)}px`; } else if (isString(this.offsetBottom)) { minHeight += ` - ${dimensions(query(this.offsetBottom, this.$el)).height}px`; } } minHeight += `${box ? ` - ${box}px` : ""})`; return { minHeight }; }, write({ minHeight }) { css(this.$el, this.property, `max(${this.min || 0}px, ${minHeight})`); }, events: ["resize"] } }; var closeIcon = "<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\"><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"1\" y1=\"1\" x2=\"13\" y2=\"13\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"13\" y1=\"1\" x2=\"1\" y2=\"13\"/></svg>"; var closeLarge = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" x1=\"1\" y1=\"1\" x2=\"19\" y2=\"19\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" x1=\"19\" y1=\"1\" x2=\"1\" y2=\"19\"/></svg>"; var dropParentIcon = "<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 3.5 6 8.5 11 3.5\"/></svg>"; var marker = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"><rect width=\"1\" height=\"11\" x=\"9\" y=\"4\"/><rect width=\"11\" height=\"1\" x=\"4\" y=\"9\"/></svg>"; var navParentIconLarge = "<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 4 7 10 13 4\"/></svg>"; var navParentIcon = "<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 3.5 6 8.5 11 3.5\"/></svg>"; var navbarParentIcon = "<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 3.5 6 8.5 11 3.5\"/></svg>"; var navbarToggleIcon = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"><style>.uk-navbar-toggle-icon svg>[class*="line-"]{transition:0.2s ease-in-out;transition-property:transform, opacity;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg>.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{transform:translateY(-6px) scaleX(0)}</style><rect width=\"20\" height=\"2\" y=\"3\" class=\"line-1\"/><rect width=\"20\" height=\"2\" y=\"9\" class=\"line-2\"/><rect width=\"20\" height=\"2\" y=\"9\" class=\"line-3\"/><rect width=\"20\" height=\"2\" y=\"15\" class=\"line-4\"/></svg>"; var overlayIcon = "<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\"><rect width=\"1\" height=\"40\" x=\"19\" y=\"0\"/><rect width=\"40\" height=\"1\" x=\"0\" y=\"19\"/></svg>"; var paginationNext = "<svg width=\"7\" height=\"12\" viewBox=\"0 0 7 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" points=\"1 1 6 6 1 11\"/></svg>"; var paginationPrevious = "<svg width=\"7\" height=\"12\" viewBox=\"0 0 7 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" points=\"6 1 1 6 6 11\"/></svg>"; var searchIcon = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"9\" cy=\"9\" r=\"7\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M14,14 L18,18 L14,14 Z\"/></svg>"; var searchLarge = "<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.8\" cx=\"17.5\" cy=\"17.5\" r=\"16.5\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.8\" x1=\"38\" y1=\"39\" x2=\"29\" y2=\"30\"/></svg>"; var searchMedium = "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"10.5\" cy=\"10.5\" r=\"9.5\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"23\" y1=\"23\" x2=\"17\" y2=\"17\"/></svg>"; var slidenavNextLarge = "<svg width=\"25\" height=\"40\" viewBox=\"0 0 25 40\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"2\" points=\"4.002,38.547 22.527,20.024 4,1.5\"/></svg>"; var slidenavNext = "<svg width=\"14\" height=\"24\" viewBox=\"0 0 14 24\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" points=\"1.225,23 12.775,12 1.225,1\"/></svg>"; var slidenavPreviousLarge = "<svg width=\"25\" height=\"40\" viewBox=\"0 0 25 40\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"2\" points=\"20.527,1.5 2,20.024 20.525,38.547\"/></svg>"; var slidenavPrevious = "<svg width=\"14\" height=\"24\" viewBox=\"0 0 14 24\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" points=\"12.775,1 1.225,12 12.775,23\"/></svg>"; var spinner = "<svg width=\"30\" height=\"30\" viewBox=\"0 0 30 30\"><circle fill=\"none\" stroke=\"#000\" cx=\"15\" cy=\"15\" r=\"14\"/></svg>"; var totop = "<svg width=\"18\" height=\"10\" viewBox=\"0 0 18 10\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" points=\"1 9 9 1 17 9\"/></svg>"; var I18n = { props: { i18n: Object }, data: { i18n: null }, methods: { t(key, ...params) { var _a, _b, _c; let i = 0; return ((_c = ((_a = this.i18n) == null ? void 0 : _a[key]) || ((_b = this.$options.i18n) == null ? void 0 : _b[key])) == null ? void 0 : _c.replace( /%s/g, () => params[i++] || "" )) || ""; } } }; var Svg = { args: "src", props: { width: Number, height: Number, ratio: Number }, data: { ratio: 1 }, connected() { this.svg = this.getSvg().then((el) => { if (!this._connected) { return; } const svg = insertSVG(el, this.$el); if (this.svgEl && svg !== this.svgEl) { remove$1(this.svgEl); } applyWidthAndHeight.call(this, svg, el); return this.svgEl = svg; }, noop); }, disconnected() { this.svg.then((svg) => { if (this._connected) { return; } if (isVoidElement(this.$el)) { this.$el.hidden = false; } remove$1(svg); this.svgEl = null; }); this.svg = null; }, methods: { async getSvg() { } } }; function insertSVG(el, root) { if (isVoidElement(root) || isTag(root, "canvas")) { root.hidden = true; const next = root.nextElementSibling; return equals(el, next) ? next : after(root, el); } const last = root.lastElementChild; return equals(el, last) ? last : append(root, el); } function equals(el, other) { return isTag(el, "svg") && isTag(other, "svg") && el.innerHTML === other.innerHTML; } function applyWidthAndHeight(el, ref) { const props = ["width", "height"]; let dimensions = props.map((prop) => this[prop]); if (!dimensions.some((val) => val)) { dimensions = props.map((prop) => attr(ref, prop)); } const viewBox = attr(ref, "viewBox"); if (viewBox && !dimensions.some((val) => val)) { dimensions = viewBox.split(" ").slice(2); } dimensions.forEach((val, i) => attr(el, props[i], toFloat(val) * this.ratio || null)); } function parseSVG(svg, icon) { if (icon && includes(svg, "<symbol")) { svg = parseSymbols(svg)[icon] || svg; } return toNodes(fragment(svg)).filter(isElement)[0]; } const symbolRe = /<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g; const parseSymbols = memoize(function(svg) { const symbols = {}; let match; while (match = symbolRe.exec(svg)) { symbols[match[3]] = `<svg ${match[1]}svg>`; } return symbols; }); const icons = { spinner, totop, marker, "close-icon": closeIcon, "close-large": closeLarge, "drop-parent-icon": dropParentIcon, "nav-parent-icon": navParentIcon, "nav-parent-icon-large": navParentIconLarge, "navbar-parent-icon": navbarParentIcon, "navbar-toggle-icon": navbarToggleIcon, "overlay-icon": overlayIcon, "pagination-next": paginationNext, "pagination-previous": paginationPrevious, "search-icon": searchIcon, "search-medium": searchMedium, "search-large": searchLarge, "search-toggle-icon": searchIcon, "slidenav-next": slidenavNext, "slidenav-next-large": slidenavNextLarge, "slidenav-previous": slidenavPrevious, "slidenav-previous-large": slidenavPreviousLarge }; const Icon = { install: install$1, mixins: [Svg], args: "icon", props: { icon: String }, isIcon: true, beforeConnect() { addClass(this.$el, "uk-icon"); }, async connected() { const svg = await this.svg; if (svg) { svg.ariaHidden = true; } }, methods: { async getSvg() { const icon = getIcon(this.icon); if (!icon) { throw "Icon not found."; } return icon; } } }; const IconComponent = { args: false, extends: Icon, data: (vm) => ({ icon: hyphenate(vm.constructor.options.name) }), beforeConnect() { addClass(this.$el, this.$options.id); } }; const NavParentIcon = { extends: IconComponent, beforeConnect() { const icon = this.$props.icon; this.icon = this.$el.closest(".uk-nav-primary") ? `${icon}-large` : icon; } }; const Search = { extends: IconComponent, mixins: [I18n], i18n: { toggle: "Open Search", submit: "Submit Search" }, beforeConnect() { const isToggle = hasClass(this.$el, "uk-search-toggle") || hasClass(this.$el, "uk-navbar-toggle"); this.icon = isToggle ? "search-toggle-icon" : hasClass(this.$el, "uk-search-icon") && this.$el.closest(".uk-search-large") ? "search-large" : this.$el.closest(".uk-search-medium") ? "search-medium" : this.$props.icon; if (hasAttr(this.$el, "aria-label")) { return; } if (isToggle) { this.$el.ariaLabel = this.t("toggle"); } else { const button = this.$el.closest("a,button"); if (button) { button.ariaLabel = this.t("submit"); } } } }; const Spinner = { extends: IconComponent, beforeConnect() { this.$el.role = "status"; }, methods: { async getSvg() { const icon = await Icon.methods.getSvg.call(this); if (this.ratio !== 1) { css($("circle", icon), "strokeWidth", 1 / this.ratio); } return icon; } } }; const ButtonComponent = { extends: IconComponent, mixins: [I18n], beforeConnect() { const button = this.$el.closest("a,button"); attr(button, "role", this.role !== null && isTag(button, "a") ? "button" : this.role); const label = this.t("label"); if (label && !hasAttr(button, "aria-label")) { attr(button, "aria-label", label); } } }; const Slidenav = { extends: ButtonComponent, beforeConnect() { addClass(this.$el, "uk-slidenav"); const icon = this.$props.icon; this.icon = hasClass(this.$el, "uk-slidenav-large") ? `${icon}-large` : icon; } }; const NavbarToggleIcon = { extends: ButtonComponent, i18n: { label: "Open menu" }, beforeConnect() { const button = this.$el.closest("a,button"); if (button) { button.ariaExpanded = false; } } }; const Close = { extends: ButtonComponent, i18n: { label: "Close" }, beforeConnect() { this.icon = `close-${hasClass(this.$el, "uk-close-large") ? "large" : "icon"}`; } }; const Marker = { extends: ButtonComponent, i18n: { label: "Open" } }; const Totop = { extends: ButtonComponent, i18n: { label: "Back to top" } }; const PaginationNext = { extends: ButtonComponent, i18n: { label: "Next page" }, data: { role: null } }; const PaginationPrevious = { extends: ButtonComponent, i18n: { label: "Previous page" }, data: { role: null } }; const parsed = {}; function install$1(UIkit) { UIkit.icon.add = (name, svg) => { const added = isString(name) ? { [name]: svg } : name; each(added, (svg2, name2) => { icons[name2] = svg2; delete parsed[name2]; }); if (UIkit._initialized) { apply( document.body, (el) => each(UIkit.getComponents(el), (cmp) => { cmp.$options.isIcon && cmp.icon in added && cmp.$reset(); }) ); } }; } const aliases = { twitter: "x" }; function getIcon(icon) { icon = aliases[icon] || icon; if (!icons[icon]) { return null; } if (!parsed[icon]) { parsed[icon] = parseSVG(icons[applyRtl(icon)] || icons[icon]); } return parsed[icon].cloneNode(true); } function applyRtl(icon) { return isRtl ? swap(swap(icon, "left", "right"), "previous", "next") : icon; } var img = { args: "dataSrc", props: { dataSrc: String, sources: String, margin: String, target: String, loading: String }, data: { dataSrc: "", sources: false, margin: "50%", target: false, loading: "lazy" }, connected() { if (this.loading !== "lazy") { this.load(); } else if (isImg(this.$el)) { this.$el.loading = "lazy"; setSrcAttrs(this.$el); } }, disconnected() { if (this.img) { this.img.onload = ""; } delete this.img; }, observe: intersection({ handler(entries, observer) { this.load(); observer.disconnect(); }, options: ({ margin }) => ({ rootMargin: margin }), filter: ({ loading }) => loading === "lazy", target: ({ $el, $props }) => $props.target ? [$el, ...queryAll($props.target, $el)] : $el }), methods: { load() { if (this.img) { return this.img; } const image = isImg(this.$el) ? this.$el : getImageFromElement(this.$el, this.dataSrc, this.sources); removeAttr(image, "loading"); setSrcAttrs(this.$el, image.currentSrc); return this.img = image; } } }; function setSrcAttrs(el, src) { if (isImg(el)) { const parentNode = parent(el); const elements = isTag(parentNode, "picture") ? children(parentNode) : [el]; elements.forEach((el2) => setSourceProps(el2, el2)); } else if (src) { const change = !includes(el.style.backgroundImage, src); if (change) { css(el, "backgroundImage", `url(${escape(src)})`); trigger(el, createEvent("load", false)); } } } const srcProps = ["data-src", "data-srcset", "sizes"]; function setSourceProps(sourceEl, targetEl) { for (const prop of srcProps) { const value = data(sourceEl, prop); if (value) { attr(targetEl, prop.replace(/data-/g, ""), value); } } } function getImageFromElement(el, src, sources) { const img = new Image(); wrapInPicture(img, sources); setSourceProps(el, img); img.onload = () => setSrcAttrs(el, img.currentSrc); img.src = src; return img; } function wrapInPicture(img, sources) { sources = parseSources(sources); if (sources.length) { const picture = fragment("<picture>"); for (const attrs of sources) { const source = fragment("<source>"); attr(source, attrs); append(picture, source); } append(picture, img); } } function parseSources(sources) { if (!sources) { return []; } if (startsWith(sources, "[")) { try { sources = JSON.parse(sources); } catch (e) { sources = []; } } else { sources = parseOptions(sources); } if (!isArray(sources)) { sources = [sources]; } return sources.filter((source) => !isEmpty(source)); } function isImg(el) { return isTag(el, "img"); } var inverse = { props: { target: String, selActive: String }, data: { target: false, selActive: false }, connected() { this.isIntersecting = 0; }, computed: { target: ({ target }, $el) => target ? $$(target, $el) : $el }, watch: { target: { handler() { queueMicrotask(() => this.$reset()); }, immediate: false } }, observe: [ intersection({ handler(entries) { this.isIntersecting = entries.reduce( (sum, { isIntersecting }) => sum + (isIntersecting ? 1 : this.isIntersecting ? -1 : 0), this.isIntersecting ); this.$emit(); }, target: ({ target }) => target, args: { intersecting: false } }), mutation({ target: ({ target }) => target, options: { attributes: true, attributeFilter: ["class"] } }), { target: ({ target }) => target, observe: (target, handler) => { const observer = observeResize( [...toNodes(target), document.documentElement], handler ); const listener = [ on(document, "scroll itemshown itemhidden", handler, { passive: true, capture: true }), on(document, "show hide transitionstart", (e) => { handler(); return observer.observe(e.target); }), on(document, "shown hidden transitionend transitioncancel", (e) => { handler(); return observer.unobserve(e.target); }) ]; return { observe: observer.observe.bind(observer), unobserve: observer.unobserve.bind(observer), disconnect() { observer.disconnect(); listener.map((off) => off()); } }; }, handler() { this.$emit(); } } ], update: { read() { if (!this.isIntersecting) { return false; } for (const target of toNodes(this.target)) { let color = !this.selActive || matches(target, this.selActive) ? findTargetColor(target) : ""; if (color !== false) { replaceClass(target, "uk-light uk-dark", color); } } } } }; function findTargetColor(target) { const dim = dimensions(target); const viewport = dimensions(window); if (!intersectRect(dim, viewport)) { return false; } const { left, top, height, width } = dim; let last; for (const percent of [0.25, 0.5, 0.75]) { const elements = target.ownerDocument.elementsFromPoint( Math.max(0, Math.min(left + width * percent, viewport.width - 1)), Math.max(0, Math.min(top + height / 2, viewport.height - 1)) ); for (const element of elements) { if (target.contains(element) || !checkVisibility(element) || element.closest('[class*="-leave"]') && elements.some((el) => element !== el && matches(el, '[class*="-enter"]'))) { continue; } const color = css(element, "--uk-inverse"); if (color) { if (color === last) { return `uk-${color}`; } last = color; break; } } } return last ? `uk-${last}` : ""; } function checkVisibility(element) { if (css(element, "visibility") !== "visible") { return false; } while (element) { if (css(element, "opacity") === "0") { return false; } element = parent(element); } return true; } var Media = { props: { media: Boolean }, data: { media: false }, connected() { const media = toMedia(this.media, this.$el); this.matchMedia = true; if (media) { this.mediaObj = window.matchMedia(media); const handler = () => { this.matchMedia = this.mediaObj.matches; trigger(this.$el, createEvent("mediachange", false, true, [this.mediaObj])); }; this.offMediaObj = on(this.mediaObj, "change", () => { handler(); this.$emit("resize"); }); handler(); } }, disconnected() { var _a; (_a = this.offMediaObj) == null ? void 0 : _a.call(this); } }; function toMedia(value, element) { if (isString(value)) { if (startsWith(value, "@")) { value = toFloat(css(element, `--uk-breakpoint-${value.slice(1)}`)); } else if (isNaN(value)) { return value; } } return value && isNumeric(value) ? `(min-width: ${value}px)` : ""; } var leader = { mixins: [Class, Media], props: { fill: String }, data: { fill: "", clsWrapper: "uk-leader-fill", clsHide: "uk-leader-hide", attrFill: "data-fill" }, computed: { fill: ({ fill }, $el) => fill || css($el, "--uk-leader-fill-content") }, connected() { [this.wrapper] = wrapInner(this.$el, `<span class="${this.clsWrapper}">`); }, disconnected() { unwrap(this.wrapper.childNodes); }, observe: resize(), update: { read() { const width = Math.trunc(this.$el.offsetWidth / 2); return { width, fill: this.fill, hide: !this.matchMedia }; }, write({ width, fill, hide }) { toggleClass(this.wrapper, this.clsHide, hide); attr(this.wrapper, this.attrFill, new Array(width).join(fill)); }, events: ["resize"] } }; const active = []; var Modal = { mixins: [Class, Container, Togglable], props: { selPanel: String, selClose: String, escClose: Boolean, bgClose: Boolean, stack: Boolean, role: String }, data: { cls: "uk-open", escClose: true, bgClose: true, overlay: true, stack: false, role: "dialog" }, computed: { panel: ({ selPanel }, $el) => $(selPanel, $el), transitionElement() { return this.panel; } }, connected() { const el = this.panel || this.$el; el.role = this.role; if (this.overlay) { el.ariaModal = true; } }, beforeDisconnect() { if (includes(active, this)) { this.toggleElement(this.$el, false, false); } }, events: [ { name: "click", delegate: ({ selClose }) => `${selClose},a[href*="#"]`, handler(e) { const { current, defaultPrevented } = e; const { hash } = current; if (!defaultPrevented && hash && isSameSiteAnchor(current) && !this.$el.contains($(hash))) { this.hide(); } else if (matches(current, this.selClose)) { maybeDefaultPreventClick(e); this.hide(); } } }, { name: "toggle", self: true, handler(e, toggle) { if (e.defaultPrevented) { return; } e.preventDefault(); this.target = toggle == null ? void 0 : toggle.$el; if (this.isToggled() === includes(active, this)) { this.toggle(); } } }, { name: "beforeshow", self: true, handler(e) { if (includes(active, this)) { return false; } if (!this.stack && active.length) { Promise.all(active.map((modal) => modal.hide())).then(this.show); e.preventDefault(); } else { active.push(this); } } }, { name: "show", self: true, handler() { if (this.stack) { css(this.$el, "zIndex", toFloat(css(this.$el, "zIndex")) + active.length); } const handlers = [ this.overlay && preventBackgroundFocus(this), this.overlay && preventBackgroundScroll(this.$el), this.bgClose && listenForBackgroundClose(this), this.escClose && listenForEscClose(this) ]; once( this.$el, "hidden", () => handlers.forEach((handler) => handler && handler()), { self: true } ); addClass(document.documentElement, this.clsPage); setAriaExpanded(this.target, true); } }, { name: "shown", self: true, handler() { if (!isFocusable(this.$el)) { this.$el.tabIndex = -1; } if (!matches(this.$el, ":focus-within")) { this.$el.focus(); } } }, { name: "hidden", self: true, handler() { if (includes(active, this)) { active.splice(active.indexOf(this), 1); } css(this.$el, "zIndex", ""); const { target } = this; if (!active.some((modal) => modal.clsPage === this.clsPage)) { removeClass(document.documentElement, this.clsPage); queueMicrotask(() => { if (isFocusable(target)) { const restoreScrollPosition = storeScrollPosition(target); target.focus(); restoreScrollPosition(); } }); } setAriaExpanded(target, false); this.target = null; } } ], methods: { toggle() { return this.isToggled() ? this.hide() : this.show(); }, show() { if (this.container && parent(this.$el) !== this.container) { append(this.container, this.$el); return new Promise( (resolve) => requestAnimationFrame(() => this.show().then(resolve)) ); } return this.toggleElement(this.$el, true, animate); }, hide() { return this.toggleElement(this.$el, false, animate); } } }; function animate(el, show, { transitionElement, _toggle }) { return new Promise( (resolve, reject) => once(el, "show hide", () => { var _a; (_a = el._reject) == null ? void 0 : _a.call(el); el._reject = reject; _toggle(el, show); const off = once( transitionElement, "transitionstart", () => { once(transitionElement, "transitionend transitioncancel", resolve, { self: true }); clearTimeout(timer); }, { self: true } ); const timer = setTimeout( () => { off(); resolve(); }, toMs(css(transitionElement, "transitionDuration")) ); }) ).then(() => delete el._reject); } function toMs(time) { return time ? endsWith(time, "ms") ? toFloat(time) : toFloat(time) * 1e3 : 0; } function preventBackgroundFocus(modal) { return on(document, "focusin", (e) => { if (last(active) === modal && !modal.$el.contains(e.target)) { modal.$el.focus(); } }); } function listenForBackgroundClose(modal) { return on(document, pointerDown, ({ target }) => { if (last(active) !== modal || modal.overlay && !modal.$el.contains(target) || !modal.panel || modal.panel.contains(target)) { return; } once( document, `${pointerUp} ${pointerCancel} scroll`, ({ defaultPrevented, type, target: newTarget }) => { if (!defaultPrevented && type === pointerUp && target === newTarget) { modal.hide(); } }, true ); }); } function listenForEscClose(modal) { return on(document, "keydown", (e) => { if (e.keyCode === 27 && last(active) === modal) { modal.hide(); } }); } function setAriaExpanded(el, toggled) { if (el == null ? void 0 : el.ariaExpanded) { el.ariaExpanded = toggled; } } var modal = { install, mixins: [Modal], data: { clsPage: "uk-modal-page", selPanel: ".uk-modal-dialog", selClose: '[class*="uk-modal-close"]' }, events: [ { name: "fullscreenchange webkitendfullscreen", capture: true, handler(e) { if (isTag(e.target, "video") && this.isToggled() && !document.fullscreenElement) { this.hide(); } } }, { name: "show", self: true, handler() { if (hasClass(this.panel, "uk-margin-auto-vertical")) { addClass(this.$el, "uk-flex"); } else { css(this.$el, "display", "block"); } height(this.$el); } }, { name: "hidden", self: true, handler() { css(this.$el, "display", ""); removeClass(this.$el, "uk-flex"); } } ] }; function install({ modal }) { modal.dialog = function(content, options) { const dialog = modal($(`<div><div class="uk-modal-dialog">${content}</div></div>`), { stack: true, role: "alertdialog", ...options }); dialog.show(); on( dialog.$el, "hidden", async () => { await Promise.resolve(); dialog.$destroy(true); }, { self: true } ); return dialog; }; modal.alert = function(message, options) { return openDialog( ({ i18n }) => `<div class="uk-modal-body">${isString(message) ? message : html(message)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" type="button" autofocus>${i18n.ok}</button> </div>`, options ); }; modal.confirm = function(message, options) { return openDialog( ({ i18n }) => `<form> <div class="uk-modal-body">${isString(message) ? message : html(message)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${i18n.cancel}</button> <button class="uk-button uk-button-primary" autofocus>${i18n.ok}</button> </div> </form>`, options, () => Promise.reject() ); }; modal.prompt = function(message, value, options) { const promise = openDialog( ({ i18n }) => `<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>${isString(message) ? message : html(message)}</label> <input class="uk-input" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${i18n.cancel}</button> <button class="uk-button uk-button-primary">${i18n.ok}</button> </div> </form>`, options, () => null, () => input.value ); const { $el } = promise.dialog; const input = $("input", $el); input.value = value || ""; on($el, "show", () => input.select()); return promise; }; modal.i18n = { ok: "Ok", cancel: "Cancel" }; function openDialog(tmpl, options, hideFn = noop, submitFn = noop) { options = { bgClose: false, escClose: true, ...options, i18n: { ...modal.i18n, ...options == null ? void 0 : options.i18n } }; const dialog = modal.dialog(tmpl(options), options); return assign( new Promise((resolve) => { const off = on(dialog.$el, "hide", () => resolve(hideFn())); on(dialog.$el, "submit", "form", (e) => { e.preventDefault(); resolve(submitFn(dialog)); off(); dialog.hide(); }); }), { dialog } ); } } var nav = { extends: Accordion, data: { targets: "> .uk-parent", toggle: "> a", content: "> ul" } }; const clsNavbarTransparent = "uk-navbar-transparent"; var navbar = { extends: Dropnav, props: { dropbarTransparentMode: Boolean }, data: { delayShow: 200, clsDrop: "uk-navbar-dropdown", selNavItem: ".uk-navbar-nav > li > a,a.uk-navbar-item,button.uk-navbar-item,.uk-navbar-item a,.uk-navbar-item button,.uk-navbar-toggle", // Simplify with :where() selector once browser target is Safari 14+ dropbarTransparentMode: false }, computed: { navbarContainer: (_, $el) => $el.closest(".uk-navbar-container") }, watch: { items() { const justify = hasClass(this.$el, "uk-navbar-justify"); const containers = $$(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right", this.$el); for (const container of containers) { const items = justify ? $$(".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle", container).length : ""; css(container, "flexGrow", items); } } }, events: [ { name: "show", el: ({ dropContainer }) => dropContainer, handler({ target }) { if (this.getTransparentMode(target) === "remove" && hasClass(this.navbarContainer, clsNavbarTransparent)) { removeClass(this.navbarContainer, clsNavbarTransparent); this._transparent = true; } } }, { name: "hide", el: ({ dropContainer }) => dropContainer, async handler() { await awaitMacroTask(); if (this._transparent && (!active$1 || !this.dropContainer.contains(active$1.$el))) { addClass(this.navbarContainer, clsNavbarTransparent); this._transparent = null; } } } ], methods: { getTransparentMode(el) { if (!this.navbarContainer) { return; } if (this.dropbar && this.isDropbarDrop(el)) { return this.dropbarTransparentMode; } const drop = this.getDropdown(el); if (drop && hasClass(el, "uk-dropbar")) { return drop.inset ? "behind" : "remove"; } }, getDropbarOffset(offsetTop) { const { top, height } = offset(this.navbarContainer); return top + (this.dropbarTransparentMode === "behind" ? 0 : height + offsetTop); } } }; function awaitMacroTask() { return new Promise((resolve) => setTimeout(resolve)); } var offcanvas = { mixins: [Modal], args: "mode", props: { mode: String, flip: Boolean, overlay: Boolean, swiping: Boolean }, data: { mode: "slide", flip: false, overlay: false, clsPage: "uk-offcanvas-page", clsContainer: "uk-offcanvas-container", selPanel: ".uk-offcanvas-bar", clsFlip: "uk-offcanvas-flip", clsContainerAnimation: "uk-offcanvas-container-animation", clsSidebarAnimation: "uk-offcanvas-bar-animation", clsMode: "uk-offcanvas", clsOverlay: "uk-offcanvas-overlay", selClose: ".uk-offcanvas-close", container: false, swiping: true }, computed: { clsFlip: ({ flip, clsFlip }) => flip ? clsFlip : "", clsOverlay: ({ overlay, clsOverlay }) => overlay ? clsOverlay : "", clsMode: ({ mode, clsMode }) => `${clsMode}-${mode}`, clsSidebarAnimation: ({ mode, clsSidebarAnimation }) => mode === "none" || mode === "reveal" ? "" : clsSidebarAnimation, clsContainerAnimation: ({ mode, clsContainerAnimation }) => mode !== "push" && mode !== "reveal" ? "" : clsContainerAnimation, transitionElement({ mode }) { return mode === "reveal" ? parent(this.panel) : this.panel; } }, observe: swipe({ filter: ({ swiping }) => swiping }), update: { read() { if (this.isToggled() && !isVisible(this.$el)) { this.hide(); } }, events: ["resize"] }, events: [ { name: "touchmove", self: true, passive: false, filter: ({ overlay }) => overlay, handler(e) { e.cancelable && e.preventDefault(); } }, { name: "show", self: true, handler() { if (this.mode === "reveal" && !hasClass(parent(this.panel), this.clsMode)) { addClass(wrapAll(this.panel, "<div>"), this.clsMode); } const { body, scrollingElement } = document; addClass(body, this.clsContainer, this.clsFlip); css(body, "touchAction", "pan-y pinch-zoom"); css(this.$el, "display", "block"); css(this.panel, "maxWidth", scrollingElement.clientWidth); addClass(this.$el, this.clsOverlay); addClass( this.panel, this.clsSidebarAnimation, this.mode === "reveal" ? "" : this.clsMode ); height(body); addClass(body, this.clsContainerAnimation); this.clsContainerAnimation && suppressUserScale(); } }, { name: "hide", self: true, handler() { removeClass(document.body, this.clsContainerAnimation); css(document.body, "touchAction", ""); } }, { name: "hidden", self: true, handler() { this.clsContainerAnimation && resumeUserScale(); if (this.mode === "reveal" && hasClass(parent(this.panel), this.clsMode)) { unwrap(this.panel); } removeClass(this.panel, this.clsSidebarAnimation, this.clsMode); removeClass(this.$el, this.clsOverlay); css(this.$el, "display", ""); css(this.panel, "maxWidth", ""); removeClass(document.body, this.clsContainer, this.clsFlip); } }, { name: "swipeLeft swipeRight", handler(e) { if (this.isToggled() && endsWith(e.type, "Left") ^ this.flip) { this.hide(); } } } ] }; function suppressUserScale() { getViewport().content += ",user-scalable=0"; } function resumeUserScale() { const viewport = getViewport(); viewport.content = viewport.content.replace(/,user-scalable=0$/, ""); } function getViewport() { return $('meta[name="viewport"]', document.head) || append(document.head, '<meta name="viewport">'); } var overflowAuto = { mixins: [Class], props: { selContainer: String, selContent: String, minHeight: Number }, data: { selContainer: ".uk-modal", selContent: ".uk-modal-dialog", minHeight: 150 }, computed: { container: ({ selContainer }, $el) => $el.closest(selContainer), content: ({ selContent }, $el) => $el.closest(selContent) }, observe: resize({ target: ({ container, content }) => [container, content] }), update: { read() { if (!this.content || !this.container || !isVisible(this.$el)) { return false; } return { max: Math.max( this.minHeight, height(this.container) - (dimensions(this.content).height - height(this.$el)) ) }; }, write({ max }) { css(this.$el, { minHeight: this.minHeight, maxHeight: max }); }, events: ["resize"] } }; var responsive = { props: ["width", "height"], connected() { addClass(this.$el, "uk-responsive-width"); css(this.$el, "aspectRatio", `${this.width}/${this.height}`); } }; var scroll = { props: { offset: Number }, data: { offset: 0 }, connected() { registerClick(this); }, disconnected() { unregisterClick(this); }, methods: { async scrollTo(el) { el = el && $(el) || document.body; if (trigger(this.$el, "beforescroll", [this, el])) { await scrollIntoView(el, { offset: this.offset }); trigger(this.$el, "scrolled", [this, el]); } } } }; const instances = /* @__PURE__ */ new Set(); function registerClick(cmp) { if (!instances.size) { on(document, "click", clickHandler); } instances.add(cmp); } function unregisterClick(cmp) { instances.delete(cmp); if (!instances.size) { off(document, "click", clickHandler); } } function clickHandler(e) { if (e.defaultPrevented) { return; } for (const instance of instances) { if (instance.$el.contains(e.target) && isSameSiteAnchor(instance.$el)) { e.preventDefault(); if (window.location.href !== instance.$el.href) { window.history.pushState({}, "", instance.$el.href); } instance.scrollTo(getTargetedElement(instance.$el)); } } } const clsInView = "uk-scrollspy-inview"; var scrollspy = { args: "cls", props: { cls: String, target: String, hidden: Boolean, margin: String, repeat: Boolean, delay: Number }, data: () => ({ cls: "", target: false, hidden: true, margin: "-1px", repeat: false, delay: 0 }), computed: { elements: ({ target }, $el) => target ? $$(target, $el) : [$el] }, watch: { elements(elements) { if (this.hidden) { css(filter(elements, `:not(.${clsInView})`), "opacity", 0); } } }, connected() { this.elementData = /* @__PURE__ */ new Map(); }, disconnected() { for (const [el, state] of this.elementData.entries()) { removeClass(el, clsInView, (state == null ? void 0 : state.cls) || ""); } delete this.elementData; }, observe: intersection({ target: ({ elements }) => elements, handler(records) { const elements = this.elementData; for (const { target: el, isIntersecting } of records) { if (!elements.has(el)) { elements.set(el, { cls: data(el, "uk-scrollspy-class") || this.cls }); } const state = elements.get(el); if (!this.repeat && state.show) { continue; } state.show = isIntersecting; } this.$emit(); }, options: ({ margin }) => ({ rootMargin: margin }), args: { intersecting: false } }), update: [ { write(data) { for (const [el, state] of this.elementData.entries()) { if (state.show && !state.inview && !state.queued) { state.queued = true; data.promise = (data.promise || Promise.resolve()).then(() => new Promise((resolve) => setTimeout(resolve, this.delay))).then(() => { this.toggle(el, true); setTimeout(() => { state.queued = false; this.$emit(); }, 300); }); } else if (!state.show && state.inview && !state.queued && this.repeat) { this.toggle(el, false); } } } } ], methods: { toggle(el, inview) { var _a, _b; const state = (_a = this.elementData) == null ? void 0 : _a.get(el); if (!state) { return; } (_b = state.off) == null ? void 0 : _b.call(state); css(el, "opacity", !inview && this.hidden ? 0 : ""); toggleClass(el, clsInView, inview); toggleClass(el, state.cls); let match; if (match = state.cls.match(/\buk-animation-[\w-]+/g)) { const removeAnimationClasses = () => removeClass(el, match); if (inview) { state.off = once(el, "animationcancel animationend", removeAnimationClasses, { self: true }); } else { removeAnimationClasses(); } } trigger(el, inview ? "inview" : "outview"); state.inview = inview; } } }; var scrollspyNav = { props: { cls: String, closest: Boolean, scroll: Boolean, target: String, offset: Number }, data: { cls: "uk-active", closest: false, scroll: false, target: 'a[href]:not([role="button"])', offset: 0 }, computed: { links: { get({ target }, $el) { return $$(target, $el).filter(getTargetedElement); }, observe: () => "*" }, targets() { return this.links.map((el) => getTargetedElement(el)); }, elements({ closest }) { return this.links.map((el) => el.closest(closest || "*")); } }, watch: { links(links) { if (this.scroll) { this.$create("scroll", links, { offset: this.offset }); } } }, observe: [intersection(), scroll$1()], update: [ { read() { const { targets } = this; const { length } = targets; if (!length || !isVisible(this.$el)) { return false; } const scrollElement = scrollParent(targets, true); const { scrollTop, scrollHeight } = scrollElement; const viewport = offsetViewport(scrollElement); const max = scrollHeight - viewport.height; let active = false; if (scrollTop >= max) { active = length - 1; } else { const offsetBy = this.offset + dimensions(getCoveringElement()).height + viewport.height * 0.1; for (let i = 0; i < targets.length; i++) { if (offset(targets[i]).top - viewport.top - offsetBy > 0) { break; } active = +i; } } return { active }; }, write({ active }) { const { elements } = this; const changed = active !== false && !hasClass(elements[active], this.cls); this.links.forEach((el) => el.blur()); for (let i = 0; i < elements.length; i++) { toggleClass(elements[i], this.cls, +i === active); } if (changed) { trigger(this.$el, "active", [active, elements[active]]); } }, events: ["scroll", "resize"] } ] }; var sticky = { mixins: [Class, Media], props: { position: String, top: null, bottom: null, start: null, end: null, offset: String, offsetEnd: String, overflowFlip: Boolean, animation: String, clsActive: String, clsInactive: String, clsFixed: String, clsBelow: String, selTarget: String, showOnUp: Boolean, targetOffset: Number }, data: { position: "top", top: false, bottom: false, start: false, end: false, offset: 0, offsetEnd: 0, overflowFlip: false, animation: "", clsActive: "uk-active", clsInactive: "", clsFixed: "uk-sticky-fixed", clsBelow: "uk-sticky-below", selTarget: "", showOnUp: false, targetOffset: false }, computed: { target: ({ selTarget }, $el) => selTarget && $(selTarget, $el) || $el }, connected() { this.start = coerce(this.start || this.top); this.end = coerce(this.end || this.bottom); this.placeholder = $("+ .uk-sticky-placeholder", this.$el) || $('<div class="uk-sticky-placeholder"></div>'); this.isFixed = false; this.setActive(false); }, beforeDisconnect() { if (this.isFixed) { this.hide(); removeClass(this.target, this.clsInactive); } reset(this.$el); remove$1(this.placeholder); this.placeholder = null; }, observe: [ viewport(), scroll$1({ target: () => document.scrollingElement }), resize({ target: ({ $el }) => [$el, getVisibleParent($el), document.scrollingElement], handler(entries) { this.$emit( this._data.resized && entries.some(({ target }) => target === getVisibleParent(this.$el)) ? "update" : "resize" ); this._data.resized = true; } }) ], events: [ { name: "load hashchange popstate", el: () => window, filter: ({ targetOffset }) => targetOffset !== false, handler() { const { scrollingElement } = document; if (!location.hash || scrollingElement.scrollTop === 0) { return; } setTimeout(() => { const targetOffset = offset($(location.hash)); const elOffset = offset(this.$el); if (this.isFixed && intersectRect(targetOffset, elOffset)) { scrollingElement.scrollTop = Math.ceil( targetOffset.top - elOffset.height - toPx(this.targetOffset, "height", this.placeholder) - toPx(this.offset, "height", this.placeholder) ); } }); } } ], update: [ { read({ height: height$1, width, margin, sticky }, types) { this.inactive = !this.matchMedia || !isVisible(this.$el) || !this.$el.offsetHeight; if (this.inactive) { return; } const dynamicViewport = height(window); const maxScrollHeight = Math.max( 0, document.scrollingElement.scrollHeight - dynamicViewport ); if (!maxScrollHeight) { this.inactive = true; return; } const hide = this.isFixed && types.has("update"); if (hide) { preventTransition(this.target); this.hide(); } if (!this.active) { ({ height: height$1, width } = dimensions(this.$el)); margin = css(this.$el, "margin"); } if (hide) { this.show(); } const viewport2 = toPx("100vh", "height"); let position = this.position; if (this.overflowFlip && height$1 > viewport2) { position = position === "top" ? "bottom" : "top"; } const referenceElement = this.isFixed ? this.placeholder : this.$el; let [offset$1, offsetEnd] = [this.offset, this.offsetEnd].map( (value) => toPx(value, "height", sticky ? this.$el : referenceElement) ); if (position === "bottom" && (height$1 < dynamicViewport || this.overflowFlip)) { offset$1 += dynamicViewport - height$1; } const elementBox = height$1 + offset$1 + offsetEnd; const overflow = this.overflowFlip ? 0 : Math.max(0, elementBox - viewport2); const topOffset = offset(referenceElement).top - // offset possible `transform: translateY` animation 'uk-animation-slide-top' while hiding new DOMMatrix(css(referenceElement, "transform")).m42; const elHeight = dimensions(this.$el).height; const start = (this.start === false ? topOffset : parseProp(this.start, this.$el, topOffset)) - offset$1; const end = this.end === false ? maxScrollHeight : Math.min( maxScrollHeight, parseProp(this.end, this.$el, topOffset + height$1, true) - elHeight - offset$1 + overflow ); sticky = !this.showOnUp && start + offset$1 === topOffset && end === Math.min( maxScrollHeight, parseProp(true, this.$el, 0, true) - elHeight - offset$1 + overflow ) && css(getVisibleParent(this.$el), "overflowY") !== "hidden"; return { start, end, offset: offset$1, overflow, height: height$1, elHeight, width, margin, top: offsetPosition(referenceElement)[0], sticky, viewport: viewport2, maxScrollHeight }; }, write({ height, width, margin, offset, sticky }) { if (this.inactive || sticky || !this.isFixed) { reset(this.$el); } if (this.inactive) { return; } if (sticky) { height = width = margin = 0; css(this.$el, { position: "sticky", top: offset }); } const { placeholder } = this; css(placeholder, { height, width, margin }); if (parent(placeholder) !== parent(this.$el) || sticky ^ index(placeholder) < index(this.$el)) { (sticky ? before : after)(this.$el, placeholder); placeholder.hidden = true; } }, events: ["resize"] }, { read({ scroll: prevScroll = 0, dir: prevDir = "down", overflow, overflowScroll = 0, start, end, elHeight, height, sticky, maxScrollHeight }) { const scroll2 = Math.min(document.scrollingElement.scrollTop, maxScrollHeight); const dir = prevScroll <= scroll2 ? "down" : "up"; const referenceElement = this.isFixed ? this.placeholder : this.$el; return { dir, prevDir, scroll: scroll2, prevScroll, below: scroll2 > offset(referenceElement).top + (sticky ? Math.min(height, elHeight) : height), offsetParentTop: offset(referenceElement.offsetParent).top, overflowScroll: clamp( overflowScroll + clamp(scroll2, start, end) - clamp(prevScroll, start, end), 0, overflow ) }; }, write(data, types) { const isScrollUpdate = types.has("scroll"); const { initTimestamp = 0, dir, prevDir, scroll: scroll2, prevScroll = 0, top, start, below } = data; if (scroll2 < 0 || scroll2 === prevScroll && isScrollUpdate || this.showOnUp && !isScrollUpdate && !this.isFixed) { return; } const now = Date.now(); if (now - initTimestamp > 300 || dir !== prevDir) { data.initScroll = scroll2; data.initTimestamp = now; } if (this.showOnUp && !this.isFixed && Math.abs(data.initScroll - scroll2) <= 30 && Math.abs(prevScroll - scroll2) <= 10) { return; } if (this.inactive || scroll2 < start || this.showOnUp && (scroll2 <= start || dir === "down" && isScrollUpdate || dir === "up" && !this.isFixed && !below)) { if (!this.isFixed) { if (Animation.inProgress(this.$el) && top > scroll2) { Animation.cancel(this.$el); this.hide(); } return; } if (this.animation && below) { if (hasClass(this.$el, "uk-animation-leave")) { return; } Animation.out(this.$el, this.animation).then(() => this.hide(), noop); } else { this.hide(); } } else if (this.isFixed) { this.update(); } else if (this.animation && below) { this.show(); Animation.in(this.$el, this.animation).catch(noop); } else { preventTransition(this.target); this.show(); } }, events: ["resize", "resizeViewport", "scroll"] } ], methods: { show() { this.isFixed = true; this.update(); this.placeholder.hidden = false; }, hide() { const { offset, sticky } = this._data; this.setActive(false); removeClass(this.$el, this.clsFixed, this.clsBelow); if (sticky) { css(this.$el, "top", offset); } else { reset(this.$el); } this.placeholder.hidden = true; this.isFixed = false; }, update() { let { width, scroll: scroll2 = 0, overflow, overflowScroll = 0, start, end, offset, offsetParentTop, sticky, below } = this._data; const active = start !== 0 || scroll2 > start; if (!sticky) { let position = "fixed"; if (scroll2 > end) { offset += end - offsetParentTop + overflowScroll - overflow; position = "absolute"; } css(this.$el, { position, width, marginTop: 0 }, "important"); } css(this.$el, "top", offset - overflowScroll); this.setActive(active); toggleClass(this.$el, this.clsBelow, below); addClass(this.$el, this.clsFixed); }, setActive(active) { const prev = this.active; this.active = active; if (active) { replaceClass(this.target, this.clsInactive, this.clsActive); prev !== active && trigger(this.$el, "active"); } else { replaceClass(this.target, this.clsActive, this.clsInactive); if (prev !== active) { preventTransition(this.target); trigger(this.$el, "inactive"); } } } } }; function parseProp(value, el, propOffset, padding) { if (!value) { return 0; } if (isNumeric(value) || isString(value) && value.match(/^-?\d/)) { return propOffset + toPx(value, "height", el, true); } else { const refElement = value === true ? getVisibleParent(el) : query(value, el); return offset(refElement).bottom - (padding && (refElement == null ? void 0 : refElement.contains(el)) ? toFloat(css(refElement, "paddingBottom")) + toFloat(css(refElement, "borderBottomWidth")) : 0); } } function coerce(value) { if (value === "true") { return true; } else if (value === "false") { return false; } return value; } function reset(el) { css(el, { position: "", top: "", marginTop: "", width: "" }); } const clsTransitionDisable = "uk-transition-disable"; function preventTransition(element) { if (!hasClass(element, clsTransitionDisable)) { addClass(element, clsTransitionDisable); requestAnimationFrame(() => removeClass(element, clsTransitionDisable)); } } function getVisibleParent(element) { while (element = parent(element)) { if (isVisible(element)) { return element; } } } function getMaxPathLength(el) { return isVisible(el) ? Math.ceil( Math.max(0, ...$$("[stroke]", el).map((stroke) => { var _a; return ((_a = stroke.getTotalLength) == null ? void 0 : _a.call(stroke)) || 0; })) ) : 0; } var svg = { mixins: [Svg], args: "src", props: { src: String, icon: String, attributes: "list", strokeAnimation: Boolean }, data: { strokeAnimation: false }, observe: [ mutation({ async handler() { const svg = await this.svg; if (svg) { applyAttributes.call(this, svg); } }, options: { attributes: true, attributeFilter: ["id", "class", "style"] } }) ], async connected() { if (includes(this.src, "#")) { [this.src, this.icon] = this.src.split("#", 2); } const svg = await this.svg; if (svg) { applyAttributes.call(this, svg); if (this.strokeAnimation) { applyAnimation(svg); } } }, methods: { async getSvg() { if (isTag(this.$el, "img") && !this.$el.complete && this.$el.loading === "lazy") { await new Promise((resolve) => once(this.$el, "load", resolve)); } return parseSVG(await loadSVG(this.src), this.icon) || Promise.reject("SVG not found."); } } }; function applyAttributes(el) { const { $el } = this; addClass(el, attr($el, "class"), "uk-svg"); for (let i = 0; i < $el.style.length; i++) { const prop = $el.style[i]; css(el, prop, css($el, prop)); } for (const attribute in this.attributes) { const [prop, value] = this.attributes[attribute].split(":", 2); attr(el, prop, value); } el.ariaHidden = this.$el.ariaHidden; if (!this.$el.id) { removeAttr(el, "id"); } } const loadSVG = memoize(async (src) => { if (src) { const response = await fetch(src); if (response.headers.get("Content-Type") === "image/svg+xml") { return response.text(); } } return Promise.reject(); }); function applyAnimation(el) { const length = getMaxPathLength(el); if (length) { css(el, "--uk-animation-stroke", length); } } const selDisabled = ".uk-disabled *, .uk-disabled, [disabled]"; var Switcher = { mixins: [Togglable], args: "connect", props: { connect: String, toggle: String, itemNav: String, active: Number, followFocus: Boolean, swiping: Boolean }, data: { connect: "~.uk-switcher", toggle: "> * > :first-child", itemNav: false, active: 0, cls: "uk-active", attrItem: "uk-switcher-item", selVertical: ".uk-nav", followFocus: false, swiping: true }, computed: { connects: { get: ({ connect }, $el) => queryAll(connect, $el), observe: ({ connect }) => connect }, connectChildren() { return this.connects.map((el) => children(el)).flat(); }, toggles: ({ toggle }, $el) => $$(toggle, $el), children(_, $el) { return children($el).filter( (child) => this.toggles.some((toggle) => child.contains(toggle)) ); } }, watch: { connects(connects) { if (this.swiping) { css(connects, "touchAction", "pan-y pinch-zoom"); } this.$emit(); }, connectChildren() { let index = Math.max(0, this.index()); for (const el of this.connects) { children(el).forEach((child, i) => toggleClass(child, this.cls, i === index)); } this.$emit(); }, toggles(toggles) { this.$emit(); const active = this.index(); this.show(~active ? active : toggles[this.active] || toggles[0]); } }, connected() { this.$el.role = "tablist"; }, observe: [ lazyload({ targets: ({ connectChildren }) => connectChildren }), swipe({ target: ({ connects }) => connects, filter: ({ swiping }) => swiping }) ], events: [ { name: "click keydown", delegate: ({ toggle }) => toggle, handler(e) { if (!matches(e.current, selDisabled) && (e.type === "click" || e.keyCode === keyMap.SPACE)) { maybeDefaultPreventClick(e); this.show(e.current); } } }, { name: "keydown", delegate: ({ toggle }) => toggle, handler(e) { const { current, keyCode } = e; const isVertical = matches(this.$el, this.selVertical); let i = keyCode === keyMap.HOME ? 0 : keyCode === keyMap.END ? "last" : keyCode === keyMap.LEFT && !isVertical || keyCode === keyMap.UP && isVertical ? "previous" : keyCode === keyMap.RIGHT && !isVertical || keyCode === keyMap.DOWN && isVertical ? "next" : -1; if (~i) { e.preventDefault(); const toggles = this.toggles.filter((el) => !matches(el, selDisabled)); const next = toggles[getIndex(i, toggles, toggles.indexOf(current))]; next.focus(); if (this.followFocus) { this.show(next); } } } }, { name: "click", el: ({ $el, connects, itemNav }) => connects.concat(itemNav ? queryAll(itemNav, $el) : []), delegate: ({ attrItem }) => `[${attrItem}],[data-${attrItem}]`, handler(e) { if (e.target.closest("a,button")) { maybeDefaultPreventClick(e); this.show(data(e.current, this.attrItem)); } } }, { name: "swipeRight swipeLeft", filter: ({ swiping }) => swiping, el: ({ connects }) => connects, handler({ type }) { this.show(endsWith(type, "Left") ? "next" : "previous"); } } ], update() { var _a; for (const el of this.connects) { if (isTag(el, "ul")) { el.role = "presentation"; } } attr(children(this.$el), "role", "presentation"); for (const index in this.toggles) { const toggle = this.toggles[index]; const item = (_a = this.connects[0]) == null ? void 0 : _a.children[index]; toggle.role = "tab"; if (!item) { continue; } toggle.id = generateId(this, toggle); item.id = generateId(this, item); toggle.ariaControls = item.id; attr(item, { role: "tabpanel", "aria-labelledby": toggle.id }); } attr(this.$el, "aria-orientation", matches(this.$el, this.selVertical) ? "vertical" : null); }, methods: { index() { return findIndex(this.children, (el) => hasClass(el, this.cls)); }, show(item) { const toggles = this.toggles.filter((el) => !matches(el, selDisabled)); const prev = this.index(); const next = getIndex( !isNode(item) || includes(toggles, item) ? item : 0, toggles, getIndex(this.toggles[prev], toggles) ); const active = getIndex(toggles[next], this.toggles); this.children.forEach((child, i) => { toggleClass(child, this.cls, active === i); attr(this.toggles[i], { "aria-selected": active === i, tabindex: active === i ? null : -1 }); }); const animate = prev >= 0 && prev !== next; this.connects.forEach(async ({ children: children2 }) => { const actives = toArray(children2).filter( (child, i) => i !== active && hasClass(child, this.cls) ); if (await this.toggleElement(actives, false, animate)) { await this.toggleElement(children2[active], true, animate); } }); } } }; var tab = { mixins: [Class], extends: Switcher, props: { media: Boolean }, data: { media: 960, attrItem: "uk-tab-item", selVertical: ".uk-tab-left,.uk-tab-right" }, connected() { const cls = hasClass(this.$el, "uk-tab-left") ? "uk-tab-left" : hasClass(this.$el, "uk-tab-right") ? "uk-tab-right" : false; if (cls) { this.$create("toggle", this.$el, { cls, mode: "media", media: this.media }); } } }; const KEY_ENTER = 13; const KEY_SPACE = 32; var toggle = { mixins: [Media, Togglable], args: "target", props: { href: String, target: null, mode: "list", queued: Boolean }, data: { href: false, target: false, mode: "click", queued: true }, computed: { target: { get: ({ target }, $el) => { target = queryAll(target || $el.hash, $el); return target.length ? target : [$el]; }, observe: ({ target }) => target } }, connected() { if (!includes(this.mode, "media")) { if (!isFocusable(this.$el)) { this.$el.tabIndex = 0; } if (!this.cls && isTag(this.$el, "a")) { this.$el.role = "button"; } } }, observe: lazyload({ targets: ({ target }) => target }), events: [ { name: pointerDown, filter: ({ mode }) => includes(mode, "hover"), handler(e) { this._preventClick = null; if (!isTouch(e) || isBoolean(this._showState) || this.$el.disabled) { return; } trigger(this.$el, "focus"); once( document, pointerDown, () => trigger(this.$el, "blur"), true, (e2) => !this.$el.contains(e2.target) ); if (includes(this.mode, "click")) { this._preventClick = true; } } }, { // mouseenter mouseleave are added because of Firefox bug, // where pointerleave is triggered immediately after pointerenter on scroll name: `mouseenter mouseleave ${pointerEnter} ${pointerLeave} focus blur`, filter: ({ mode }) => includes(mode, "hover"), handler(e) { if (isTouch(e) || this.$el.disabled || document.readyState === "loading") { return; } const show = includes(["mouseenter", pointerEnter, "focus"], e.type); const expanded = this.isToggled(this.target); if (!show && (!isBoolean(this._showState) || e.type !== "blur" && matches(this.$el, ":focus") || e.type === "blur" && matches(this.$el, ":hover"))) { if (expanded === this._showState) { this._showState = null; } return; } if (show && isBoolean(this._showState) && expanded !== this._showState) { return; } this._showState = show ? expanded : null; this.toggle(`toggle${show ? "show" : "hide"}`); } }, { name: "keydown", filter: ({ $el, mode }) => includes(mode, "click") && !isTag($el, "input"), handler(e) { if (e.keyCode === KEY_SPACE || e.keyCode === KEY_ENTER) { e.preventDefault(); this.$el.click(); } } }, { name: "click", filter: ({ mode }) => ["click", "hover"].some((m) => includes(mode, m)), handler(e) { if (e.defaultPrevented) { return; } const link = e.target.closest("a[href]"); const isButtonLike = isSameSiteAnchor(link) && (!link.hash || matches(this.target, link.hash)); if (this._preventClick || isButtonLike || link && !this.isToggled(this.target)) { e.preventDefault(); } if (!this._preventClick && includes(this.mode, "click") && (!link || isButtonLike || e.defaultPrevented)) { this.toggle(); } } }, { name: "mediachange", filter: ({ mode }) => includes(mode, "media"), el: ({ target }) => target, handler(e, mediaObj) { if (mediaObj.matches ^ this.isToggled(this.target)) { this.toggle(); } } } ], methods: { async toggle(type) { if (!trigger(this.target, type || "toggle", [this])) { return; } if (hasAttr(this.$el, "aria-expanded")) { this.$el.ariaExpanded = !this.isToggled(this.target); } if (!this.queued) { return this.toggleElement(this.target); } const leaving = this.target.filter((el) => hasClass(el, this.clsLeave)); if (leaving.length) { for (const el of this.target) { const isLeaving = includes(leaving, el); this.toggleElement(el, isLeaving, isLeaving); } return; } const toggled = this.target.filter(this.isToggled); if (await this.toggleElement(toggled, false)) { await this.toggleElement( this.target.filter((el) => !includes(toggled, el)), true ); } } } }; var components = /*#__PURE__*/Object.freeze({ __proto__: null, Accordion: Accordion, Alert: alert, Close: Close, Cover: cover, Drop: drop, DropParentIcon: IconComponent, Dropdown: drop, Dropnav: Dropnav, FormCustom: formCustom, Grid: grid, HeightMatch: heightMatch, HeightPlaceholder: heightPlaceholder, HeightViewport: heightViewport, Icon: Icon, Img: img, Inverse: inverse, Leader: leader, Margin: Margin, Marker: Marker, Modal: modal, Nav: nav, NavParentIcon: NavParentIcon, Navbar: navbar, NavbarParentIcon: IconComponent, NavbarToggleIcon: NavbarToggleIcon, Offcanvas: offcanvas, OverflowAuto: overflowAuto, OverlayIcon: IconComponent, PaginationNext: PaginationNext, PaginationPrevious: PaginationPrevious, Responsive: responsive, Scroll: scroll, Scrollspy: scrollspy, ScrollspyNav: scrollspyNav, SearchIcon: Search, SlidenavNext: Slidenav, SlidenavPrevious: Slidenav, Spinner: Spinner, Sticky: sticky, Svg: svg, Switcher: Switcher, Tab: tab, Toggle: toggle, Totop: Totop, Video: Video }); each(components, (component, name) => App.component(name, component)); boot(App); return App; })); assets/uikit/dist/js/uikit-icons-copper-hill.min.js000064400000215013151666572350016366 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitcopper_hill",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitCopper_hill=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.696,2C16.069,2,18,3.931,18,6.303v7.393C18,16.069,16.069,18,13.696,18H6.303C3.931,18,2,16.069,2,13.696V6.303 C2,3.931,3.931,2,6.303,2H13.696 M13.696,1H6.303C3.372,1,1,3.374,1,6.303v7.393C1,16.628,3.375,19,6.303,19h7.393 C16.628,19,19,16.626,19,13.696V6.303C19,3.372,16.626,1,13.696,1L13.696,1z"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/><circle fill="#000" cx="13.9" cy="5.4" r=".9"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1" points="1 3.5 6 8.5 11 3.5"/></svg>',"nav-parent-icon-large":'<svg width="18" height="18" viewBox="0 0 18 18"><polyline fill="none" stroke="#000" stroke-width="2" points=".987 4.993 9 13.007 17.013 4.993"/></svg>',"navbar-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1" points="1 3.5 6 8.5 11 3.5"/></svg>',"navbar-toggle-icon":'<svg width="20" height="20" viewBox="0 0 20 20"><style>.uk-navbar-toggle-icon svg>[class*="line-"]{transition:0.2s ease-in-out;transition-property:transform, opacity,;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg>.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{transform:translateY(-6px) scaleX(0)}</style><rect class="line-1" width="20" height="1" y="2"/><rect class="line-2" width="20" height="1" y="9"/><rect class="line-3" width="20" height="1" y="9"/><rect class="line-4" width="20" height="1" y="16"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1,11 6,6 1,1"/></svg>',"slidenav-next-large":'<svg width="12" height="20" viewBox="0 0 12 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1,19 10,10 1,1"/></svg>',"slidenav-previous":'<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="6,1 1,6 6,11"/></svg>',"slidenav-previous-large":'<svg width="12" height="20" viewBox="0 0 12 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="11,1 2,10 11,19"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-yard.min.js000064400000214747151666572350015124 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define("uikityard",i):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitYard=i())})(this,(function(){"use strict";function e(i){e.installed||i.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.8" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.8" x1="13" y1="1" x2="1" y2="13"/></svg>',"close-large":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.8" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.8" x1="19" y1="1" x2="1" y2="19"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',"divider-icon":'<svg width="10" height="10" viewBox="0 0 10 10"><line fill="none" stroke="#000" stroke-width="1.1" x1="0" y1="0" x2="10" y2="10"/><line fill="none" stroke="#000" stroke-width="1.1" x1="10" y1="0" x2="0" y2="10"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="16" height="16" viewBox="0 0 16 16"><polygon fill="#000" points="15,7.3 8.7,7.3 8.7,1 7.3,1 7.3,7.3 1,7.3 1,8.7 7.3,8.7 7.3,15 8.7,15 8.7,8.7 15,8.7"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="20" height="14" viewBox="0 0 20 14"><path fill="none" stroke="#000" stroke-width="2" d="M12.4 1l5.8 5.9-5.8 6"/><path fill="#000" fill-rule="evenodd" d="M.8 6h16v2H.8z" clip-rule="evenodd"/></svg>',"slidenav-next-large":'<svg width="19" height="16" viewBox="0 0 19 16"><path fill="none" stroke="#000" stroke-width="2" d="M10.2 1.5l7 6.5-7 6.5"/><path fill-rule="evenodd" d="M0 7h16v2H0z" clip-rule="evenodd"/></svg>',"slidenav-previous":'<svg width="20" height="14" viewBox="0 0 20 14"><path fill="none" stroke="#000" stroke-width="2" d="M7.6 1L1.8 6.9l5.8 6"/><path fill="#000" fill-rule="evenodd" d="M3.2 6h16v2h-16z" clip-rule="evenodd"/></svg>',"slidenav-previous-large":'<svg width="19" height="16" viewBox="0 0 19 16"><path fill="none" stroke="#000" stroke-width="2" d="M8.8 1.5L1.8 8l7 6.5"/><path fill-rule="evenodd" d="M3 7h16v2H3z" clip-rule="evenodd"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="16" height="18" viewBox="0 0 16 18"><polygon points="15.7,7.9 14.3,9.3 9,4 9,17.5 7,17.5 7,4 1.7,9.3 0.3,7.9 8,0"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-nioh-studio.min.js000064400000213721151666572350016416 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define("uikitnioh_studio",i):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitNioh_studio=i())})(this,(function(){"use strict";function e(i){e.installed||i.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="10" height="10" viewBox="0 0 10 10"><circle fill="#000" cx="5" cy="5" r="3"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5"/><line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5"/></svg>',"pagination-previous":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5"/><line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="18" height="16" viewBox="0 0 18 16"><polygon points="17.41,8 9.71,15.71 8.29,14.29 13.59,9 0,9 0,7 13.59,7 8.29,1.71 9.71,0.29"/></svg>',"slidenav-next-large":'<svg width="18" height="16" viewBox="0 0 18 16"><polygon points="17.41,8 9.71,15.71 8.29,14.29 13.59,9 0,9 0,7 13.59,7 8.29,1.71 9.71,0.29"/></svg>',"slidenav-previous":'<svg width="18" height="16" viewBox="0 0 18 16"><polygon points="18,9 4.41,9 9.71,14.29 8.29,15.71 0.59,8 8.29,0.29 9.71,1.71 4.41,7 18,7"/></svg>',"slidenav-previous-large":'<svg width="18" height="16" viewBox="0 0 18 16"><polygon points="18,9 4.41,9 9.71,14.29 8.29,15.71 0.59,8 8.29,0.29 9.71,1.71 4.41,7 18,7"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="16" height="18" viewBox="0 0 16 18"><polygon points="15.7,7.9 14.3,9.3 9,4 9,17.5 7,17.5 7,4 1.7,9.3 0.3,7.9 8,0"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-vision.min.js000064400000214571151666572350015467 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(t,e){typeof exports=="object"&&typeof module<"u"?module.exports=e():typeof define=="function"&&define.amd?define("uikitvision",e):(t=typeof globalThis<"u"?globalThis:t||self,t.UIkitVision=e())})(this,(function(){"use strict";function t(e){t.installed||e.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4"/></svg>',"navbar-toggle-icon":'<svg width="20" height="20" viewBox="0 0 20 20"><style>.uk-navbar-toggle-icon svg>[class*="line-"]{transition:0.2s ease-in-out;transition-property:transform, opacity,;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg>.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded="true"] svg>.line-4{transform:translateY(-6px) scaleX(0)}</style><rect class="line-1" width="20" height="1" y="3"/><rect class="line-2" width="20" height="1" y="9"/><rect class="line-3" width="20" height="1" y="9"/><rect class="line-4" width="20" height="1" y="15"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5"/><line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5"/></svg>',"pagination-previous":'<svg width="14" height="9" viewBox="0 0 14 9"><polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5"/><line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="10.5,4 15.37,9.4 14.63,10.08 10.5,5.49 6.37,10.08 5.63,9.4"/><line fill="none" stroke="#000" x1="10.5" y1="16" x2="10.5" y2="5"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(t),t})); assets/uikit/dist/js/components/sortable.js000064400000056140151666572350015136 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitsortable', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitSortable = factory(global.UIkit.util)); })(this, (function (uikitUtil) { 'use strict'; function callUpdate(instance, e = "update") { if (!instance._connected) { return; } if (!instance._updates.length) { return; } if (!instance._updateCount) { instance._updateCount = 0; requestAnimationFrame(() => instance._updateCount = 0); } if (!instance._queued) { instance._queued = /* @__PURE__ */ new Set(); uikitUtil.fastdom.read(() => { if (instance._connected) { runUpdates(instance, instance._queued); } instance._queued = null; }); } if (instance._updateCount++ < 20) { instance._queued.add(e.type || e); } } function runUpdates(instance, types) { for (const { read, write, events = [] } of instance._updates) { if (!types.has("update") && !events.some((type) => types.has(type))) { continue; } let result; if (read) { result = read.call(instance, instance._data, types); if (result && uikitUtil.isPlainObject(result)) { uikitUtil.assign(instance._data, result); } } if (write && result !== false) { uikitUtil.fastdom.write(() => { if (instance._connected) { write.call(instance, instance._data, types); } }); } } } function resize(options) { return observe(uikitUtil.observeResize, options, "resize"); } function mutation(options) { return observe(uikitUtil.observeMutation, options); } function observe(observe2, options, emit) { return { observe: observe2, handler() { callUpdate(this, emit); }, ...options }; } ({ observe: [ mutation({ options: { childList: true } }), mutation({ options: { attributes: true, attributeFilter: ["style"] } }), resize({ handler(mutations) { for (const { borderBoxSize: [{ inlineSize, blockSize }] } of mutations) { if (inlineSize || blockSize) { this.$emit("resize"); return; } } }, target: ({ $el }) => [$el, ...uikitUtil.children($el)] }) ]}); function getRows(elements) { const sorted = [[]]; const withOffset = elements.some( (el, i) => i && elements[i - 1].offsetParent !== el.offsetParent ); for (const el of elements) { if (!uikitUtil.isVisible(el)) { continue; } const offset = getOffset(el, withOffset); for (let i = sorted.length - 1; i >= 0; i--) { const current = sorted[i]; if (!current[0]) { current.push(el); break; } const offsetCurrent = getOffset(current[0], withOffset); if (offset.top >= offsetCurrent.bottom - 1 && offset.top !== offsetCurrent.top) { sorted.push([el]); break; } if (offset.bottom - 1 > offsetCurrent.top || offset.top === offsetCurrent.top) { let j = current.length - 1; for (; j >= 0; j--) { const offsetCurrent2 = getOffset(current[j], withOffset); if (offset.left >= offsetCurrent2.left) { break; } } current.splice(j + 1, 0, el); break; } if (i === 0) { sorted.unshift([el]); break; } } } return sorted; } function getOffset(element, offset = false) { let { offsetTop, offsetLeft, offsetHeight, offsetWidth } = element; if (offset) { [offsetTop, offsetLeft] = uikitUtil.offsetPosition(element); } return { top: offsetTop, left: offsetLeft, bottom: offsetTop + offsetHeight, right: offsetLeft + offsetWidth }; } const clsLeave = "uk-transition-leave"; const clsEnter = "uk-transition-enter"; function fade(action, target, duration, stagger = 0) { const index = transitionIndex(target, true); const propsIn = { opacity: 1 }; const propsOut = { opacity: 0 }; const isCurrentIndex = () => index === transitionIndex(target); const wrapIndexFn = (fn) => () => isCurrentIndex() ? fn() : Promise.reject(); const leaveFn = wrapIndexFn(async () => { uikitUtil.addClass(target, clsLeave); await (stagger ? Promise.all( getTransitionNodes(target).map(async (child, i) => { await awaitTimeout(i * stagger); return uikitUtil.Transition.start(child, propsOut, duration / 2, "ease"); }) ) : uikitUtil.Transition.start(target, propsOut, duration / 2, "ease")); uikitUtil.removeClass(target, clsLeave); }); const enterFn = wrapIndexFn(async () => { const oldHeight = uikitUtil.height(target); uikitUtil.addClass(target, clsEnter); action(); uikitUtil.css(stagger ? uikitUtil.children(target) : target, propsOut); uikitUtil.height(target, oldHeight); await awaitTimeout(); uikitUtil.height(target, ""); const newHeight = uikitUtil.height(target); uikitUtil.css(target, "alignContent", "flex-start"); uikitUtil.height(target, oldHeight); let transitions = []; let targetDuration = duration / 2; if (stagger) { const nodes = getTransitionNodes(target); uikitUtil.css(uikitUtil.children(target), propsOut); transitions = nodes.map(async (child, i) => { await awaitTimeout(i * stagger); await uikitUtil.Transition.start(child, propsIn, duration / 2, "ease"); if (isCurrentIndex()) { uikitUtil.resetProps(child, propsIn); } }); targetDuration += nodes.length * stagger; } if (!stagger || oldHeight !== newHeight) { const targetProps = { height: newHeight, ...stagger ? {} : propsIn }; transitions.push(uikitUtil.Transition.start(target, targetProps, targetDuration, "ease")); } await Promise.all(transitions); uikitUtil.removeClass(target, clsEnter); if (isCurrentIndex()) { uikitUtil.resetProps(target, { height: "", alignContent: "", ...propsIn }); delete target.dataset.transition; } }); return uikitUtil.hasClass(target, clsLeave) ? waitTransitionend(target).then(enterFn) : uikitUtil.hasClass(target, clsEnter) ? waitTransitionend(target).then(leaveFn).then(enterFn) : leaveFn().then(enterFn); } function transitionIndex(target, next) { if (next) { target.dataset.transition = 1 + transitionIndex(target); } return uikitUtil.toNumber(target.dataset.transition) || 0; } function waitTransitionend(target) { return Promise.all( uikitUtil.children(target).filter(uikitUtil.Transition.inProgress).map( (el) => new Promise((resolve) => uikitUtil.once(el, "transitionend transitioncanceled", resolve)) ) ); } function getTransitionNodes(target) { return getRows(uikitUtil.children(target)).flat().filter(uikitUtil.isVisible); } function awaitTimeout(timeout) { return new Promise((resolve) => setTimeout(resolve, timeout)); } async function slide(action, target, duration) { await awaitFrame(); let nodes = uikitUtil.children(target); const currentProps = nodes.map((el) => getProps(el, true)); const targetProps = { ...uikitUtil.css(target, ["height", "padding"]), display: "block" }; const targets = nodes.concat(target); await Promise.all(targets.map(uikitUtil.Transition.cancel)); uikitUtil.css(targets, "transitionProperty", "none"); await action(); nodes = nodes.concat(uikitUtil.children(target).filter((el) => !uikitUtil.includes(nodes, el))); await Promise.resolve(); uikitUtil.css(targets, "transitionProperty", ""); const targetStyle = uikitUtil.attr(target, "style"); const targetPropsTo = uikitUtil.css(target, ["height", "padding"]); const [propsTo, propsFrom] = getTransitionProps(target, nodes, currentProps); const attrsTo = nodes.map((el) => ({ style: uikitUtil.attr(el, "style") })); nodes.forEach((el, i) => propsFrom[i] && uikitUtil.css(el, propsFrom[i])); uikitUtil.css(target, targetProps); uikitUtil.trigger(target, "scroll"); await awaitFrame(); const transitions = nodes.map((el, i) => uikitUtil.parent(el) === target && uikitUtil.Transition.start(el, propsTo[i], duration, "ease")).concat(uikitUtil.Transition.start(target, targetPropsTo, duration, "ease")); try { await Promise.all(transitions); nodes.forEach((el, i) => { uikitUtil.attr(el, attrsTo[i]); if (uikitUtil.parent(el) === target) { uikitUtil.css(el, "display", propsTo[i].opacity === 0 ? "none" : ""); } }); uikitUtil.attr(target, "style", targetStyle); } catch (e) { uikitUtil.attr(nodes, "style", ""); uikitUtil.resetProps(target, targetProps); } } function getProps(el, opacity) { const zIndex = uikitUtil.css(el, "zIndex"); return uikitUtil.isVisible(el) ? { display: "", opacity: opacity ? uikitUtil.css(el, "opacity") : "0", pointerEvents: "none", position: "absolute", zIndex: zIndex === "auto" ? uikitUtil.index(el) : zIndex, ...getPositionWithMargin(el) } : false; } function getTransitionProps(target, nodes, currentProps) { const propsTo = nodes.map( (el, i) => uikitUtil.parent(el) && i in currentProps ? currentProps[i] ? uikitUtil.isVisible(el) ? getPositionWithMargin(el) : { opacity: 0 } : { opacity: uikitUtil.isVisible(el) ? 1 : 0 } : false ); const propsFrom = propsTo.map((props, i) => { const from = uikitUtil.parent(nodes[i]) === target && (currentProps[i] || getProps(nodes[i])); if (!from) { return false; } if (!props) { delete from.opacity; } else if (!("opacity" in props)) { const { opacity } = from; if (opacity % 1) { props.opacity = 1; } else { delete from.opacity; } } return from; }); return [propsTo, propsFrom]; } function getPositionWithMargin(el) { const { height, width } = uikitUtil.dimensions(el); return { height, width, transform: "", ...uikitUtil.position(el), ...uikitUtil.css(el, ["marginTop", "marginLeft"]) }; } function awaitFrame() { return new Promise((resolve) => requestAnimationFrame(resolve)); } var Animate = { props: { duration: Number, animation: Boolean }, data: { duration: 150, animation: "slide" }, methods: { animate(action, target = this.$el) { const name = this.animation; const animationFn = name === "fade" ? fade : name === "delayed-fade" ? (...args) => fade(...args, 40) : name ? slide : () => { action(); return Promise.resolve(); }; return animationFn(action, target, this.duration).catch(uikitUtil.noop); } } }; var Class = { connected() { uikitUtil.addClass(this.$el, this.$options.id); } }; var Component = { mixins: [Class, Animate], props: { group: String, threshold: Number, clsItem: String, clsPlaceholder: String, clsDrag: String, clsDragState: String, clsBase: String, clsNoDrag: String, clsEmpty: String, clsCustom: String, handle: String }, data: { group: false, threshold: 5, clsItem: "uk-sortable-item", clsPlaceholder: "uk-sortable-placeholder", clsDrag: "uk-sortable-drag", clsDragState: "uk-drag", clsBase: "uk-sortable", clsNoDrag: "uk-sortable-nodrag", clsEmpty: "uk-sortable-empty", clsCustom: "", handle: false, pos: {} }, events: { name: uikitUtil.pointerDown, passive: false, handler(e) { this.init(e); } }, computed: { target: (_, $el) => ($el.tBodies || [$el])[0], items() { return uikitUtil.children(this.target); }, isEmpty() { return !this.items.length; }, handles({ handle }, $el) { return handle ? uikitUtil.$$(handle, $el) : this.items; } }, watch: { isEmpty(empty) { uikitUtil.toggleClass(this.target, this.clsEmpty, empty); }, handles(handles, prev) { const props = { touchAction: "none", userSelect: "none" }; uikitUtil.resetProps(prev, props); uikitUtil.css(handles, props); } }, update: { write(data) { if (!this.drag || !uikitUtil.parent(this.placeholder)) { return; } const { pos: { x, y }, origin: { offsetTop, offsetLeft }, placeholder } = this; uikitUtil.css(this.drag, { top: y - offsetTop, left: x - offsetLeft }); const sortable = this.getSortable(document.elementFromPoint(x, y)); if (!sortable) { return; } const { items } = sortable; if (items.some(uikitUtil.Transition.inProgress)) { return; } const target = findTarget(items, { x, y }); if (items.length && (!target || target === placeholder)) { return; } const previous = this.getSortable(placeholder); const insertTarget = findInsertTarget( sortable.target, target, placeholder, x, y, sortable === previous && data.moved !== target ); if (insertTarget === false) { return; } if (insertTarget && placeholder === insertTarget) { return; } if (sortable !== previous) { previous.remove(placeholder); data.moved = target; } else { delete data.moved; } sortable.insert(placeholder, insertTarget); this.touched.add(sortable); }, events: ["move"] }, methods: { init(e) { const { target, button, defaultPrevented } = e; const [placeholder] = this.items.filter((el) => el.contains(target)); if (!placeholder || defaultPrevented || button > 0 || uikitUtil.isInput(target) || target.closest(`.${this.clsNoDrag}`) || this.handle && !target.closest(this.handle)) { return; } e.preventDefault(); this.pos = uikitUtil.getEventPos(e); this.touched = /* @__PURE__ */ new Set([this]); this.placeholder = placeholder; this.origin = { target, index: uikitUtil.index(placeholder), ...this.pos }; uikitUtil.on(document, uikitUtil.pointerMove, this.move); uikitUtil.on(document, uikitUtil.pointerUp, this.end); if (!this.threshold) { this.start(e); } }, start(e) { this.drag = appendDrag(this.$container, this.placeholder); const { left, top } = uikitUtil.dimensions(this.placeholder); uikitUtil.assign(this.origin, { offsetLeft: this.pos.x - left, offsetTop: this.pos.y - top }); uikitUtil.addClass(this.drag, this.clsDrag, this.clsCustom); uikitUtil.addClass(this.placeholder, this.clsPlaceholder); uikitUtil.addClass(this.items, this.clsItem); uikitUtil.addClass(document.documentElement, this.clsDragState); uikitUtil.trigger(this.$el, "start", [this, this.placeholder]); trackScroll(this.pos); this.move(e); }, move: throttle(function(e) { uikitUtil.assign(this.pos, uikitUtil.getEventPos(e)); if (!this.drag && (Math.abs(this.pos.x - this.origin.x) > this.threshold || Math.abs(this.pos.y - this.origin.y) > this.threshold)) { this.start(e); } this.$emit("move"); }), end() { uikitUtil.off(document, uikitUtil.pointerMove, this.move); uikitUtil.off(document, uikitUtil.pointerUp, this.end); if (!this.drag) { return; } untrackScroll(); const sortable = this.getSortable(this.placeholder); if (this === sortable) { if (this.origin.index !== uikitUtil.index(this.placeholder)) { uikitUtil.trigger(this.$el, "moved", [this, this.placeholder]); } } else { uikitUtil.trigger(sortable.$el, "added", [sortable, this.placeholder]); uikitUtil.trigger(this.$el, "removed", [this, this.placeholder]); } uikitUtil.trigger(this.$el, "stop", [this, this.placeholder]); uikitUtil.remove(this.drag); this.drag = null; for (const { clsPlaceholder, clsItem } of this.touched) { for (const sortable2 of this.touched) { uikitUtil.removeClass(sortable2.items, clsPlaceholder, clsItem); } } this.touched = null; uikitUtil.removeClass(document.documentElement, this.clsDragState); }, insert(element, target) { uikitUtil.addClass(this.items, this.clsItem); if (target && target.previousElementSibling !== element) { this.animate(() => uikitUtil.before(target, element)); } else if (!target && this.target.lastElementChild !== element) { this.animate(() => uikitUtil.append(this.target, element)); } }, remove(element) { if (this.target.contains(element)) { this.animate(() => uikitUtil.remove(element)); } }, getSortable(element) { do { const sortable = this.$getComponent(element, "sortable"); if (sortable && (sortable === this || this.group !== false && sortable.group === this.group)) { return sortable; } } while (element = uikitUtil.parent(element)); } } }; let trackTimer; function trackScroll(pos) { let last = Date.now(); trackTimer = setInterval(() => { let { x, y } = pos; y += document.scrollingElement.scrollTop; const dist = (Date.now() - last) * 0.3; last = Date.now(); uikitUtil.scrollParents(document.elementFromPoint(x, pos.y)).reverse().some((scrollEl) => { let { scrollTop: scroll, scrollHeight } = scrollEl; const { top, bottom, height: height2 } = uikitUtil.offsetViewport(scrollEl); if (top < y && top + 35 > y) { scroll -= dist; } else if (bottom > y && bottom - 35 < y) { scroll += dist; } else { return; } if (scroll > 0 && scroll < scrollHeight - height2) { scrollEl.scrollTop = scroll; return true; } }); }, 15); } function untrackScroll() { clearInterval(trackTimer); } function appendDrag(container, element) { let clone; if (uikitUtil.isTag(element, "li", "tr")) { clone = uikitUtil.$("<div>"); uikitUtil.append(clone, element.cloneNode(true).children); for (const attribute of element.getAttributeNames()) { uikitUtil.attr(clone, attribute, element.getAttribute(attribute)); } } else { clone = element.cloneNode(true); } uikitUtil.append(container, clone); uikitUtil.css(clone, "margin", "0", "important"); uikitUtil.css(clone, { boxSizing: "border-box", width: element.offsetWidth, height: element.offsetHeight, padding: uikitUtil.css(element, "padding") }); uikitUtil.height(clone.firstElementChild, uikitUtil.height(element.firstElementChild)); return clone; } function findTarget(items, point) { return items[uikitUtil.findIndex(items, (item) => uikitUtil.pointInRect(point, uikitUtil.dimensions(item)))]; } function findInsertTarget(list, target, placeholder, x, y, sameList) { if (!uikitUtil.children(list).length) { return; } const rect = uikitUtil.dimensions(target); if (!sameList) { if (!isHorizontal(list, placeholder)) { return y < rect.top + rect.height / 2 ? target : target.nextElementSibling; } return target; } const placeholderRect = uikitUtil.dimensions(placeholder); const sameRow = linesIntersect( [rect.top, rect.bottom], [placeholderRect.top, placeholderRect.bottom] ); const [pointerPos, lengthProp, startProp, endProp] = sameRow ? [x, "width", "left", "right"] : [y, "height", "top", "bottom"]; const diff = placeholderRect[lengthProp] < rect[lengthProp] ? rect[lengthProp] - placeholderRect[lengthProp] : 0; if (placeholderRect[startProp] < rect[startProp]) { if (diff && pointerPos < rect[startProp] + diff) { return false; } return target.nextElementSibling; } if (diff && pointerPos > rect[endProp] - diff) { return false; } return target; } function isHorizontal(list, placeholder) { const single = uikitUtil.children(list).length === 1; if (single) { uikitUtil.append(list, placeholder); } const items = uikitUtil.children(list); const isHorizontal2 = items.some((el, i) => { const rectA = uikitUtil.dimensions(el); return items.slice(i + 1).some((el2) => { const rectB = uikitUtil.dimensions(el2); return !linesIntersect([rectA.left, rectA.right], [rectB.left, rectB.right]); }); }); if (single) { uikitUtil.remove(placeholder); } return isHorizontal2; } function linesIntersect(lineA, lineB) { return lineA[1] > lineB[0] && lineB[1] > lineA[0]; } function throttle(fn) { let throttled; return function(...args) { if (!throttled) { throttled = true; fn.call(this, ...args); requestAnimationFrame(() => throttled = false); } }; } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("sortable", Component); } return Component; })); assets/uikit/dist/js/components/countdown.min.js000064400000003434151666572350016123 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(t,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitcountdown",["uikit-util"],i):(t=typeof globalThis<"u"?globalThis:t||self,t.UIkitCountdown=i(t.UIkit.util))})(this,(function(t){"use strict";var i={connected(){t.addClass(this.$el,this.$options.id)}};const r=["days","hours","minutes","seconds"];var d={mixins:[i],props:{date:String,clsWrapper:String,role:String,reload:Boolean},data:{date:"",clsWrapper:".uk-countdown-%unit%",role:"timer",reload:!1},connected(){this.$el.role=this.role,this.date=t.toFloat(Date.parse(this.$props.date)),this.started=this.end=!1,this.start()},disconnected(){this.stop()},events:{name:"visibilitychange",el:()=>document,handler(){document.hidden?this.stop():this.start()}},methods:{start(){this.stop(),this.update()},stop(){this.timer&&(clearInterval(this.timer),t.trigger(this.$el,"countdownstop"),this.timer=null)},update(){const o=a(this.date);o.total?this.timer||(this.started=!0,this.timer=setInterval(this.update,1e3),t.trigger(this.$el,"countdownstart")):(this.stop(),this.end||(t.trigger(this.$el,"countdownend"),this.end=!0,this.reload&&this.started&&window.location.reload()));for(const e of r){const s=t.$(this.clsWrapper.replace("%unit%",e),this.$el);if(!s)continue;let n=Math.trunc(o[e]).toString().padStart(2,"0");s.textContent!==n&&(n=n.split(""),n.length!==s.children.length&&t.html(s,n.map(()=>"<span></span>").join("")),n.forEach((h,l)=>s.children[l].textContent=h))}}}};function a(o){const e=Math.max(0,o-Date.now())/1e3;return{total:e,seconds:e%60,minutes:e/60%60,hours:e/60/60%24,days:e/60/60/24}}return typeof window<"u"&&window.UIkit&&window.UIkit.component("countdown",d),d})); assets/uikit/dist/js/components/upload.min.js000064400000007034151666572350015367 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(o,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitupload",["uikit-util"],i):(o=typeof globalThis<"u"?globalThis:o||self,o.UIkitUpload=i(o.UIkit.util))})(this,(function(o){"use strict";var i={props:{i18n:Object},data:{i18n:null},methods:{t(e,...r){var s,a,t;let n=0;return((t=((s=this.i18n)==null?void 0:s[e])||((a=this.$options.i18n)==null?void 0:a[e]))==null?void 0:t.replace(/%s/g,()=>r[n++]||""))||""}}},d={mixins:[i],i18n:{invalidMime:"Invalid File Type: %s",invalidName:"Invalid File Name: %s",invalidSize:"Invalid File Size: %s Kilobytes Max"},props:{allow:String,clsDragover:String,concurrent:Number,maxSize:Number,method:String,mime:String,multiple:Boolean,name:String,params:Object,type:String,url:String},data:{allow:!1,clsDragover:"uk-dragover",concurrent:1,maxSize:0,method:"POST",mime:!1,multiple:!1,name:"files[]",params:{},type:"",url:"",abort:o.noop,beforeAll:o.noop,beforeSend:o.noop,complete:o.noop,completeAll:o.noop,error:o.noop,fail:o.noop,load:o.noop,loadEnd:o.noop,loadStart:o.noop,progress:o.noop},events:{change(e){o.matches(e.target,'input[type="file"]')&&(e.preventDefault(),e.target.files&&this.upload(e.target.files),e.target.value="")},drop(e){l(e);const r=e.dataTransfer;r!=null&&r.files&&(o.removeClass(this.$el,this.clsDragover),this.upload(r.files))},dragenter(e){l(e)},dragover(e){l(e),o.addClass(this.$el,this.clsDragover)},dragleave(e){l(e),o.removeClass(this.$el,this.clsDragover)}},methods:{async upload(e){if(e=o.toArray(e),!e.length)return;o.trigger(this.$el,"upload",[e]);for(const a of e){if(this.maxSize&&this.maxSize*1e3<a.size){this.fail(this.t("invalidSize",this.maxSize));return}if(this.allow&&!h(this.allow,a.name)){this.fail(this.t("invalidName",this.allow));return}if(this.mime&&!h(this.mime,a.type)){this.fail(this.t("invalidMime",this.mime));return}}this.multiple||(e=e.slice(0,1)),this.beforeAll(this,e);const r=f(e,this.concurrent),s=async a=>{const t=new FormData;a.forEach(n=>t.append(this.name,n));for(const n in this.params)t.append(n,this.params[n]);try{const n=await u(this.url,{data:t,method:this.method,responseType:this.type,beforeSend:p=>{const{xhr:c}=p;o.on(c.upload,"progress",this.progress);for(const m of["loadStart","load","loadEnd","abort"])o.on(c,m.toLowerCase(),this[m]);return this.beforeSend(p)}});this.complete(n),r.length?await s(r.shift()):this.completeAll(n)}catch(n){this.error(n)}};await s(r.shift())}}};function h(e,r){return r.match(new RegExp(`^${e.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")}$`,"i"))}function f(e,r){const s=[];for(let a=0;a<e.length;a+=r)s.push(e.slice(a,a+r));return s}function l(e){e.preventDefault(),e.stopPropagation()}async function u(e,r){const s={data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:o.noop,responseType:"",...r};return await s.beforeSend(s),g(e,s)}function g(e,r){return new Promise((s,a)=>{const{xhr:t}=r;for(const n in r)if(n in t)try{t[n]=r[n]}catch{}t.open(r.method.toUpperCase(),e);for(const n in r.headers)t.setRequestHeader(n,r.headers[n]);o.on(t,"load",()=>{t.status===0||t.status>=200&&t.status<300||t.status===304?s(t):a(o.assign(Error(t.statusText),{xhr:t,status:t.status}))}),o.on(t,"error",()=>a(o.assign(Error("Network Error"),{xhr:t}))),o.on(t,"timeout",()=>a(o.assign(Error("Network Timeout"),{xhr:t}))),t.send(r.data)})}return typeof window<"u"&&window.UIkit&&window.UIkit.component("upload",d),d})); assets/uikit/dist/js/components/parallax.min.js000064400000024133151666572350015706 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(i,b){typeof exports=="object"&&typeof module<"u"?module.exports=b(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitparallax",["uikit-util"],b):(i=typeof globalThis<"u"?globalThis:i||self,i.UIkitParallax=b(i.UIkit.util))})(this,(function(i){"use strict";function b(n,e="update"){n._connected&&n._updates.length&&(n._updateCount||(n._updateCount=0,requestAnimationFrame(()=>n._updateCount=0)),n._queued||(n._queued=new Set,i.fastdom.read(()=>{n._connected&&Y(n,n._queued),n._queued=null})),n._updateCount++<20&&n._queued.add(e.type||e))}function Y(n,e){for(const{read:t,write:r,events:o=[]}of n._updates){if(!e.has("update")&&!o.some(c=>e.has(c)))continue;let s;t&&(s=t.call(n,n._data,e),s&&i.isPlainObject(s)&&i.assign(n._data,s)),r&&s!==!1&&i.fastdom.write(()=>{n._connected&&r.call(n,n._data,e)})}}function Z(n){return F(i.observeResize,n,"resize")}function k(n){return F((e,t)=>i.observeViewportResize(t),n,"resize")}function U(n){return F((e,t)=>({disconnect:i.on(nn(e),"scroll",t,{passive:!0})}),n,"scroll")}function F(n,e,t){return{observe:n,handler(){b(this,t)},...e}}function nn(n){return i.toNodes(n).map(e=>{const{ownerDocument:t}=e,r=i.scrollParent(e,!0);return r===t.scrollingElement?t:r})}var en={props:{media:Boolean},data:{media:!1},connected(){const n=tn(this.media,this.$el);if(this.matchMedia=!0,n){this.mediaObj=window.matchMedia(n);const e=()=>{this.matchMedia=this.mediaObj.matches,i.trigger(this.$el,i.createEvent("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=i.on(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var n;(n=this.offMediaObj)==null||n.call(this)}};function tn(n,e){if(i.isString(n)){if(i.startsWith(n,"@"))n=i.toFloat(i.css(e,`--uk-breakpoint-${n.slice(1)}`));else if(isNaN(n))return n}return n&&i.isNumeric(n)?`(min-width: ${n}px)`:""}function rn(n,e){var t;return(t=n==null?void 0:n.startsWith)==null?void 0:t.call(n,e)}const{from:on}=Array;function sn(n){return typeof n=="function"}function M(n){return n!==null&&typeof n=="object"}function cn(n){return M(n)&&n===n.window}function an(n){return z(n)===9}function I(n){return z(n)>=1}function z(n){return!cn(n)&&M(n)&&n.nodeType}function P(n){return typeof n=="string"}function fn(n){return n===void 0}function x(n){return n&&l(n)[0]}function l(n){return I(n)?[n]:Array.from(n||[]).filter(I)}function A(n){const e=Object.create(null);return(t,...r)=>e[t]||(e[t]=n(t,...r))}function C(n,e,t){var r;if(M(e)){for(const o in e)C(n,o,e[o]);return}if(fn(t))return(r=x(n))==null?void 0:r.getAttribute(e);for(const o of l(n))sn(t)&&(t=t.call(o,C(o,e))),t===null?un(o,e):o.setAttribute(e,t)}function un(n,e){l(n).forEach(t=>t.removeAttribute(e))}const dn=typeof window<"u"&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function ln(n){return l(n).some(e=>dn.call(e))}function hn(n){var e;return(e=x(n))==null?void 0:e.parentElement}function gn(n,e){return l(n).filter(t=>T(t,e))}function T(n,e){return l(n).some(t=>t.matches(e))}function mn(n,e){n=x(n);const t=n?on(n.children):[];return e?gn(t,e):t}function W(n,e){return mn(hn(n)).indexOf(n)}function bn(n,e){return l(vn(n,x(e),"querySelectorAll"))}const pn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,$n=/(\([^)]*\)|[^,])+/g,wn=A(n=>{let e=!1;if(!n||!P(n))return{};const t=[];for(let r of n.match($n))r=r.trim().replace(pn,"$1 *"),e||(e=["!","+","~","-",">"].includes(r[0])),t.push(r);return{selector:t.join(","),selectors:t,isContextSelector:e}}),xn=/(\([^)]*\)|\S)*/,R=A(n=>{n=n.slice(1).trim();const[e]=n.match(xn);return[e,n.slice(e.length+1)]});function vn(n,e=document,t){var r;const o=wn(n);if(!o.isContextSelector)return o.selector?O(e,t,o.selector):n;n="";const s=o.selectors.length===1;for(let c of o.selectors){let a,f=e;if(c[0]==="!"&&([a,c]=R(c),f=(r=e.parentElement)==null?void 0:r.closest(a),!c&&s)||f&&c[0]==="-"&&([a,c]=R(c),f=f.previousElementSibling,f=T(f,a)?f:null,!c&&s))return f;if(f){if(s)return c[0]==="~"||c[0]==="+"?(c=`:scope > :nth-child(${W(f)+1}) ${c}`,f=f.parentElement):c[0]===">"&&(c=`:scope ${c}`),O(f,t,c);n+=`${n?",":""}${yn(f)} ${c}`}}return an(e)||(e=e.ownerDocument),O(e,t,n)}function O(n,e,t){try{return n[e](t)}catch{return null}}function yn(n){const e=[];for(;n.parentNode;){const t=C(n,"id");if(t){e.unshift(`#${Sn(t)}`);break}else{let{tagName:r}=n;r!=="HTML"&&(r+=`:nth-child(${W(n)+1})`),e.unshift(r),n=n.parentNode}}return e.join(" > ")}function Sn(n){return P(n)?CSS.escape(n):""}const _n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Fn(n){const e=_n.exec(n);if(e)return document.createElement(e[1]);const t=document.createElement("template");return t.innerHTML=n.trim(),Mn(t.content.childNodes)}function Mn(n){return n.length>1?n:n[0]}function Pn(n,e){return Cn(n)?l(Fn(n)):bn(n,e)}function Cn(n){return P(n)&&rn(n.trim(),"<")}function On(n){return ln(n)?Math.ceil(Math.max(0,...Pn("[stroke]",n).map(e=>{var t;return((t=e.getTotalLength)==null?void 0:t.call(e))||0}))):0}const v={x:y,y,rotate:y,scale:y,color:j,backgroundColor:j,borderColor:j,blur:g,hue:g,fopacity:g,grayscale:g,invert:g,saturate:g,sepia:g,opacity:Nn,stroke:In,bgx:D,bgy:D},{keys:q}=Object;var jn={mixins:[en],props:Q(q(v),"list"),data:Q(q(v),void 0),computed:{props(n,e){const t={};for(const o in n)o in v&&!i.isUndefined(n[o])&&(t[o]=n[o].slice());const r={};for(const o in t)r[o]=v[o](o,e,t[o],t);return r}},events:{load(){this.$emit()}},methods:{reset(){i.resetProps(this.$el,this.getCss(0))},getCss(n){const e={};for(const t in this.props)this.props[t](e,i.clamp(n));return e.willChange=Object.keys(e).map(i.propName).join(","),e}}};function y(n,e,t){let r=_(t)||{x:"px",y:"px",rotate:"deg"}[n]||"",o;return n==="x"||n==="y"?(n=`translate${i.ucfirst(n)}`,o=s=>i.toFloat(i.toFloat(s).toFixed(r==="px"?0:6))):n==="scale"&&(r="",o=s=>{var c;return _([s])?i.toPx(s,"width",e,!0)/e[`offset${(c=s.endsWith)!=null&&c.call(s,"vh")?"Height":"Width"}`]:i.toFloat(s)}),t.length===1&&t.unshift(n==="scale"?1:0),t=m(t,o),(s,c)=>{s.transform=`${s.transform||""} ${n}(${p(t,c)}${r})`}}function j(n,e,t){return t.length===1&&t.unshift($(e,n,"")),t=m(t,r=>En(e,r)),(r,o)=>{const[s,c,a]=L(t,o),f=s.map((h,u)=>(h+=a*(c[u]-h),u===3?i.toFloat(h):parseInt(h,10))).join(",");r[n]=`rgba(${f})`}}function En(n,e){return $(n,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(i.toFloat)}function g(n,e,t){t.length===1&&t.unshift(0);const r=_(t)||{blur:"px",hue:"deg"}[n]||"%";return n={fopacity:"opacity",hue:"hue-rotate"}[n]||n,t=m(t),(o,s)=>{const c=p(t,s);o.filter=`${o.filter||""} ${n}(${c+r})`}}function Nn(n,e,t){return t.length===1&&t.unshift($(e,n,"")),t=m(t),(r,o)=>{r[n]=p(t,o)}}function In(n,e,t){t.length===1&&t.unshift(0);const r=_(t),o=On(e);return t=m(t.reverse(),s=>(s=i.toFloat(s),r==="%"?s*o/100:s)),t.some(([s])=>s)?(i.css(e,"strokeDasharray",o),(s,c)=>{s.strokeDashoffset=p(t,c)}):i.noop}function D(n,e,t,r){t.length===1&&t.unshift(0);const o=n==="bgy"?"height":"width";r[n]=m(t,a=>i.toPx(a,o,e));const s=["bgx","bgy"].filter(a=>a in r);if(s.length===2&&n==="bgx")return i.noop;if($(e,"backgroundSize","")==="cover")return zn(n,e,t,r);const c={};for(const a of s)c[a]=H(e,a);return V(s,c,r)}function zn(n,e,t,r){const o=An(e);if(!o.width)return i.noop;const s={width:e.offsetWidth,height:e.offsetHeight},c=["bgx","bgy"].filter(u=>u in r),a={};for(const u of c){const d=r[u].map(([Rn])=>Rn),w=Math.min(...d),N=Math.max(...d),K=d.indexOf(w)<d.indexOf(N),X=N-w;a[u]=`${(K?-X:0)-(K?w:N)}px`,s[u==="bgy"?"height":"width"]+=X}const f=i.Dimensions.cover(o,s);for(const u of c){const d=u==="bgy"?"height":"width",w=f[d]-s[d];a[u]=`max(${H(e,u)},-${w}px) + ${a[u]}`}const h=V(c,a,r);return(u,d)=>{h(u,d),u.backgroundSize=`${f.width}px ${f.height}px`,u.backgroundRepeat="no-repeat"}}function H(n,e){return $(n,`background-position-${e.slice(-1)}`,"")}function V(n,e,t){return function(r,o){for(const s of n){const c=p(t[s],o);r[`background-position-${s.slice(-1)}`]=`calc(${e[s]} + ${c}px)`}}}const B={},S={};function An(n){const e=i.css(n,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(S[e])return S[e];const t=new Image;return e&&(t.src=e,!t.naturalWidth&&!B[e])?(i.once(t,"error load",()=>{S[e]=E(t),i.trigger(n,i.createEvent("load",!1))}),B[e]=!0,E(t)):S[e]=E(t)}function E(n){return{width:n.naturalWidth,height:n.naturalHeight}}function m(n,e=i.toFloat){const t=[],{length:r}=n;let o=0;for(let s=0;s<r;s++){let[c,a]=i.isString(n[s])?n[s].trim().split(/ (?![^(]*\))/):[n[s]];if(c=e(c),a=a?i.toFloat(a)/100:null,s===0?a===null?a=0:a&&t.push([c,0]):s===r-1&&(a===null?a=1:a!==1&&(t.push([c,a]),a=1)),t.push([c,a]),a===null)o++;else if(o){const f=t[s-o-1][1],h=(a-f)/(o+1);for(let u=o;u>0;u--)t[s-u][1]=f+h*(o-u+1);o=0}}return t}function L(n,e){const t=i.findIndex(n.slice(1),([,r])=>e<=r)+1;return[n[t-1][0],n[t][0],(e-n[t-1][1])/(n[t][1]-n[t-1][1])]}function p(n,e){const[t,r,o]=L(n,e);return t+Math.abs(t-r)*o*(t<r?1:-1)}const Tn=/^-?\d+(?:\.\d+)?(\S+)?/;function _(n,e){var t;for(const r of n){const o=(t=r.match)==null?void 0:t.call(r,Tn);if(o)return o[1]}return e}function $(n,e,t){const r=n.style[e],o=i.css(i.css(n,e,t),e);return n.style[e]=r,o}function Q(n,e){return n.reduce((t,r)=>(t[r]=e,t),{})}function Wn(n,e){return e>=0?Math.pow(n,e+1):1-Math.pow(1-n,1-e)}var G={mixins:[jn],props:{target:String,viewport:Number,easing:Number,start:String,end:String},data:{target:!1,viewport:1,easing:1,start:0,end:0},computed:{target:({target:n},e)=>J(n&&i.query(n,e)||e),start({start:n}){return i.toPx(n,"height",this.target,!0)},end({end:n,viewport:e}){return i.toPx(n||(e=(1-e)*100)&&`${e}vh+${e}%`,"height",this.target,!0)}},observe:[k(),U({target:({target:n})=>n}),Z({target:({$el:n,target:e})=>[n,e,i.scrollParent(e,!0)]})],update:{read({percent:n},e){if(e.has("scroll")||(n=!1),!i.isVisible(this.$el))return!1;if(!this.matchMedia)return;const t=n;return n=Wn(i.scrolledOver(this.target,this.start,this.end),this.easing),{percent:n,style:t===n?!1:this.getCss(n)}},write({style:n}){if(!this.matchMedia){this.reset();return}n&&i.css(this.$el,n)},events:["scroll","resize"]}};function J(n){return n?"offsetTop"in n?n:J(i.parent(n)):document.documentElement}return typeof window<"u"&&window.UIkit&&window.UIkit.component("parallax",G),G})); assets/uikit/dist/js/components/notification.min.js000064400000004334151666572350016571 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(t,o){typeof exports=="object"&&typeof module<"u"?module.exports=o(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitnotification",["uikit-util"],o):(t=typeof globalThis<"u"?globalThis:t||self,t.UIkitNotification=o(t.UIkit.util))})(this,(function(t){"use strict";var o={props:{container:Boolean},data:{container:!0},computed:{container({container:e}){return e===!0&&this.$container||e&&t.$(e)}}};function c(e){e.target.closest('a[href="#"],a[href=""]')&&e.preventDefault()}var r={mixins:[o],functional:!0,args:["message","status"],data:{message:"",status:"",timeout:5e3,group:"",pos:"top-center",clsContainer:"uk-notification",clsClose:"uk-notification-close",clsMsg:"uk-notification-message"},install:h,computed:{marginProp:({pos:e})=>`margin-${e.match(/[a-z]+(?=-)/)[0]}`,startProps(){return{opacity:0,[this.marginProp]:-this.$el.offsetHeight}}},created(){const e=`${this.clsContainer}-${this.pos}`,s=`data-${this.clsContainer}-container`,i=t.$(`.${e}[${s}]`,this.container)||t.append(this.container,`<div class="${this.clsContainer} ${e}" ${s}></div>`);this.$mount(t.append(i,`<div class="${this.clsMsg}${this.status?` ${this.clsMsg}-${this.status}`:""}" role="alert"> <a href class="${this.clsClose}" data-uk-close></a> <div>${this.message}</div> </div>`))},async connected(){const e=t.toFloat(t.css(this.$el,this.marginProp));await t.Transition.start(t.css(this.$el,this.startProps),{opacity:1,[this.marginProp]:e}),this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},events:{click(e){c(e),this.close()},[t.pointerEnter](){this.timer&&clearTimeout(this.timer)},[t.pointerLeave](){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))}},methods:{async close(e){const s=i=>{const n=t.parent(i);t.trigger(i,"close",[this]),t.remove(i),n!=null&&n.hasChildNodes()||t.remove(n)};this.timer&&clearTimeout(this.timer),e||await t.Transition.start(this.$el,this.startProps),s(this.$el)}}};function h(e){e.notification.closeAll=function(s,i){t.apply(document.body,n=>{const a=e.getComponent(n,"notification");a&&(!s||s===a.group)&&a.close(i)})}}return typeof window<"u"&&window.UIkit&&window.UIkit.component("notification",r),r})); assets/uikit/dist/js/components/lightbox.min.js000064400000071076151666572350015732 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(t,x){typeof exports=="object"&&typeof module<"u"?module.exports=x(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitlightbox",["uikit-util"],x):(t=typeof globalThis<"u"?globalThis:t||self,t.UIkitLightbox=x(t.UIkit.util))})(this,(function(t){"use strict";function x(e,s=[]){try{return e?t.startsWith(e,"{")?JSON.parse(e):s.length&&!t.includes(e,":")?{[s[0]]:e}:e.split(";").reduce((i,n)=>{const[r,o]=n.split(/:(.*)/);return r&&!t.isUndefined(o)&&(i[r.trim()]=o.trim()),i},{}):{}}catch{return{}}}function Z(e,s="update"){e._connected&&e._updates.length&&(e._updateCount||(e._updateCount=0,requestAnimationFrame(()=>e._updateCount=0)),e._queued||(e._queued=new Set,t.fastdom.read(()=>{e._connected&&K(e,e._queued),e._queued=null})),e._updateCount++<20&&e._queued.add(s.type||s))}function K(e,s){for(const{read:i,write:n,events:r=[]}of e._updates){if(!s.has("update")&&!r.some(h=>s.has(h)))continue;let o;i&&(o=i.call(e,e._data,s),o&&t.isPlainObject(o)&&t.assign(e._data,o)),n&&o!==!1&&t.fastdom.write(()=>{e._connected&&n.call(e,e._data,s)})}}function ee(e){return D(t.observeResize,e,"resize")}function te(e){return D(t.observeIntersection,e)}function D(e,s,i){return{observe:e,handler(){Z(this,i)},...s}}te({handler(e,s){this.load(),s.disconnect()},options:({margin:e})=>({rootMargin:e}),filter:({loading:e})=>e==="lazy",target:({$el:e,$props:s})=>s.target?[e,...t.queryAll(s.target,e)]:e});function se(e,s){if(s=ie(s),s.length){const i=t.fragment("<picture>");for(const n of s){const r=t.fragment("<source>");t.attr(r,n),t.append(i,r)}t.append(i,e)}}function ie(e){if(!e)return[];if(t.startsWith(e,"["))try{e=JSON.parse(e)}catch{e=[]}else e=x(e);return t.isArray(e)||(e=[e]),e.filter(s=>!t.isEmpty(s))}let P;function ne(e){const s=t.on(e,"touchstart",r=>{if(r.targetTouches.length!==1||t.matches(r.target,'input[type="range"'))return;let o=t.getEventPos(r).y;const h=t.on(e,"touchmove",a=>{const d=t.getEventPos(a).y;d!==o&&(o=d,t.scrollParents(a.target).some(c=>{if(!e.contains(c))return!1;let{scrollHeight:m,clientHeight:l}=c;return l<m})||a.preventDefault())},{passive:!1});t.once(e,"scroll touchend touchcanel",h,{capture:!0})},{passive:!0});if(P)return s;P=!0;const{scrollingElement:i}=document,n={overflowY:CSS.supports("overflow","clip")?"clip":"hidden",touchAction:"none",paddingRight:t.width(window)-i.clientWidth||""};return t.css(i,n),()=>{P=!1,s(),t.resetProps(i,n)}}var oe={connected(){t.addClass(this.$el,this.$options.id)}},re={props:{container:Boolean},data:{container:!0},computed:{container({container:e}){return e===!0&&this.$container||e&&t.$(e)}}};function O(e){e.target.closest('a[href="#"],a[href=""]')&&e.preventDefault()}function M(e){const s=t.scrollParent(e),{scrollTop:i}=s;return()=>{i!==s.scrollTop&&(s.scrollTop=i)}}var ae={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglable-enter",clsLeave:"uk-togglable-leave"},computed:{hasAnimation:({animation:e})=>!!e[0],hasTransition:({animation:e})=>["slide","reveal"].some(s=>t.startsWith(e[0],s))},methods:{async toggleElement(e,s,i){try{return await Promise.all(t.toNodes(e).map(n=>{const r=t.isBoolean(s)?s:!this.isToggled(n);if(!t.trigger(n,`before${r?"show":"hide"}`,[this]))return Promise.reject();const o=(t.isFunction(i)?i:i===!1||!this.hasAnimation?he:this.hasTransition?de:le)(n,r,this),h=r?this.clsEnter:this.clsLeave;t.addClass(n,h),t.trigger(n,r?"show":"hide",[this]);const a=()=>{var d;if(t.removeClass(n,h),t.trigger(n,r?"shown":"hidden",[this]),r){const c=M(n);(d=t.$$("[autofocus]",n).find(t.isVisible))==null||d.focus(),c()}};return o?o.then(a,()=>(t.removeClass(n,h),Promise.reject())):a()})),!0}catch{return!1}},isToggled(e=this.$el){return e=t.toNode(e),t.hasClass(e,this.clsEnter)?!0:t.hasClass(e,this.clsLeave)?!1:this.cls?t.hasClass(e,this.cls.split(" ")[0]):t.isVisible(e)},_toggle(e,s){if(!e)return;s=!!s;let i;this.cls?(i=t.includes(this.cls," ")||s!==t.hasClass(e,this.cls),i&&t.toggleClass(e,this.cls,t.includes(this.cls," ")?void 0:s)):(i=s===e.hidden,i&&(e.hidden=!s)),i&&t.trigger(e,"toggled",[s,this])}}};function he(e,s,{_toggle:i}){return t.Animation.cancel(e),t.Transition.cancel(e),i(e,s)}async function de(e,s,{animation:i,duration:n,velocity:r,transition:o,_toggle:h}){var a;const[d="reveal",c="top"]=((a=i[0])==null?void 0:a.split("-"))||[],m=[["left","right"],["top","bottom"]],l=m[t.includes(m[0],c)?0:1],f=l[1]===c,u=["width","height"][m.indexOf(l)],k=`margin-${l[0]}`,T=`margin-${c}`;let w=t.dimensions(e)[u];const Le=t.Transition.inProgress(e);await t.Transition.cancel(e),s&&h(e,!0);const Fe=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",k,T].map(Y=>[Y,e.style[Y]])),$=t.dimensions(e),N=t.toFloat(t.css(e,k)),J=t.toFloat(t.css(e,T)),b=$[u]+J;!Le&&!s&&(w+=J);const[_]=t.wrapInner(e,"<div>");t.css(_,{boxSizing:"border-box",height:$.height,width:$.width,...t.css(e,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",T])}),t.css(e,{padding:0,border:0,minWidth:0,minHeight:0,[T]:0,width:$.width,height:$.height,overflow:"hidden",[u]:w});const X=w/b;n=(r*b+n)*(s?1-X:X);const Q={[u]:s?b:0};f&&(t.css(e,k,b-w+N),Q[k]=s?N:b+N),!f^d==="reveal"&&(t.css(_,k,-b+w),t.Transition.start(_,{[k]:s?0:-b},n,o));try{await t.Transition.start(e,Q,n,o)}finally{t.css(e,Fe),t.unwrap(_.firstChild),s||h(e,!1)}}function le(e,s,i){const{animation:n,duration:r,_toggle:o}=i;return s?(o(e,!0),t.Animation.in(e,n[0],r,i.origin)):t.Animation.out(e,n[1]||n[0],r,i.origin).then(()=>o(e,!1))}const p=[];var ce={mixins:[oe,re,ae],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel:({selPanel:e},s)=>t.$(e,s),transitionElement(){return this.panel}},connected(){const e=this.panel||this.$el;e.role=this.role,this.overlay&&(e.ariaModal=!0)},beforeDisconnect(){t.includes(p,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:({selClose:e})=>`${e},a[href*="#"]`,handler(e){const{current:s,defaultPrevented:i}=e,{hash:n}=s;!i&&n&&t.isSameSiteAnchor(s)&&!this.$el.contains(t.$(n))?this.hide():t.matches(s,this.selClose)&&(O(e),this.hide())}},{name:"toggle",self:!0,handler(e,s){e.defaultPrevented||(e.preventDefault(),this.target=s==null?void 0:s.$el,this.isToggled()===t.includes(p,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(e){if(t.includes(p,this))return!1;!this.stack&&p.length?(Promise.all(p.map(s=>s.hide())).then(this.show),e.preventDefault()):p.push(this)}},{name:"show",self:!0,handler(){this.stack&&t.css(this.$el,"zIndex",t.toFloat(t.css(this.$el,"zIndex"))+p.length);const e=[this.overlay&&pe(this),this.overlay&&ne(this.$el),this.bgClose&&me(this),this.escClose&&ge(this)];t.once(this.$el,"hidden",()=>e.forEach(s=>s&&s()),{self:!0}),t.addClass(document.documentElement,this.clsPage),L(this.target,!0)}},{name:"shown",self:!0,handler(){t.isFocusable(this.$el)||(this.$el.tabIndex=-1),t.matches(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){t.includes(p,this)&&p.splice(p.indexOf(this),1),t.css(this.$el,"zIndex","");const{target:e}=this;p.some(s=>s.clsPage===this.clsPage)||(t.removeClass(document.documentElement,this.clsPage),queueMicrotask(()=>{if(t.isFocusable(e)){const s=M(e);e.focus(),s()}})),L(e,!1),this.target=null}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&t.parent(this.$el)!==this.container?(t.append(this.container,this.$el),new Promise(e=>requestAnimationFrame(()=>this.show().then(e)))):this.toggleElement(this.$el,!0,B)},hide(){return this.toggleElement(this.$el,!1,B)}}};function B(e,s,{transitionElement:i,_toggle:n}){return new Promise((r,o)=>t.once(e,"show hide",()=>{var h;(h=e._reject)==null||h.call(e),e._reject=o,n(e,s);const a=t.once(i,"transitionstart",()=>{t.once(i,"transitionend transitioncancel",r,{self:!0}),clearTimeout(d)},{self:!0}),d=setTimeout(()=>{a(),r()},fe(t.css(i,"transitionDuration")))})).then(()=>delete e._reject)}function fe(e){return e?t.endsWith(e,"ms")?t.toFloat(e):t.toFloat(e)*1e3:0}function pe(e){return t.on(document,"focusin",s=>{t.last(p)===e&&!e.$el.contains(s.target)&&e.$el.focus()})}function me(e){return t.on(document,t.pointerDown,({target:s})=>{t.last(p)!==e||e.overlay&&!e.$el.contains(s)||!e.panel||e.panel.contains(s)||t.once(document,`${t.pointerUp} ${t.pointerCancel} scroll`,({defaultPrevented:i,type:n,target:r})=>{!i&&n===t.pointerUp&&s===r&&e.hide()},!0)})}function ge(e){return t.on(document,"keydown",s=>{s.keyCode===27&&t.last(p)===e&&e.hide()})}function L(e,s){e!=null&&e.ariaExpanded&&(e.ariaExpanded=s)}var S={slide:{show(e){return[{transform:y(e*-100)},{transform:y()}]},percent(e){return ue(e)},translate(e,s){return[{transform:y(s*-100*e)},{transform:y(s*100*(1-e))}]}}};function ue(e){return Math.abs(new DOMMatrix(t.css(e,"transform")).m41/e.offsetWidth)}function y(e=0,s="%"){return e?`translate3d(${e+s}, 0, 0)`:""}function ve(e,s,i,{animation:n,easing:r}){const{percent:o,translate:h,show:a=t.noop}=n,d=a(i),{promise:c,resolve:m}=be();return{dir:i,show(l,f=0,G){const u=G?"linear":r;return l-=Math.round(l*t.clamp(f,-1,1)),this.translate(f),I(s,"itemin",{percent:f,duration:l,timing:u,dir:i}),I(e,"itemout",{percent:1-f,duration:l,timing:u,dir:i}),Promise.all([t.Transition.start(s,d[1],l,u),t.Transition.start(e,d[0],l,u)]).then(()=>{this.reset(),m()},t.noop),c},cancel(){return t.Transition.cancel([s,e])},reset(){t.resetProps([s,e],d[0])},async forward(l,f=this.percent()){return await this.cancel(),this.show(l,f,!0)},translate(l){this.reset();const f=h(l,i);t.css(s,f[1]),t.css(e,f[0]),I(s,"itemtranslatein",{percent:l,dir:i}),I(e,"itemtranslateout",{percent:1-l,dir:i})},percent(){return o(e||s,s,i)},getDistance(){return e==null?void 0:e.offsetWidth}}}function I(e,s,i){t.trigger(e,t.createEvent(s,!1,!1,i))}function be(){let e;return{promise:new Promise(s=>e=s),resolve:e}}var xe={props:{i18n:Object},data:{i18n:null},methods:{t(e,...s){var i,n,r;let o=0;return((r=((i=this.i18n)==null?void 0:i[e])||((n=this.$options.i18n)==null?void 0:n[e]))==null?void 0:r.replace(/%s/g,()=>s[o++]||""))||""}}},ke={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){t.attr(this.list,"aria-live",this.autoplay?"off":"polite"),this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){t.attr(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el:()=>document,filter:({autoplay:e})=>e,handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>{this.stack.length||!t.isVisible(this.$el)||this.draggable&&t.matches(this.$el,":focus-within")&&!t.matches(this.$el,":focus")||this.pauseOnHover&&t.matches(this.$el,":hover")||this.show("next")},this.autoplayInterval)},stopAutoplay(){clearInterval(this.interval)}}};const C={passive:!1,capture:!0},F={passive:!0,capture:!0},we="touchstart mousedown",E="touchmove mousemove",H="touchend touchcancel mouseup click input scroll";var $e={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const e of["start","move","end"]){const s=this[e];this[e]=i=>{const n=t.getEventPos(i).x*(t.isRtl?-1:1);this.prevPos=n===this.pos?this.prevPos:this.pos,this.pos=n,s(i)}}},events:[{name:we,passive:!0,delegate:({selList:e})=>`${e} > *`,handler(e){!this.draggable||this.parallax||!t.isTouch(e)&&ye(e.target)||e.target.closest(t.selInput)||e.button>0||this.length<2||this.start(e)}},{name:"dragstart",handler(e){e.preventDefault()}},{name:E,el:({list:e})=>e,handler:t.noop,...C}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,t.on(document,E,this.move,C),t.on(document,H,this.end,F),t.css(this.list,"userSelect","none")},move(e){const s=this.pos-this.drag;if(s===0||this.prevPos===this.pos||!this.dragging&&Math.abs(s)<this.threshold)return;e.cancelable&&e.preventDefault(),this.dragging=!0,this.dir=s<0?1:-1;let{slides:i,prevIndex:n}=this,r=Math.abs(s),o=this.getIndex(n+this.dir),h=z.call(this,n,o);for(;o!==n&&r>h;)this.drag-=h*this.dir,n=o,r-=h,o=this.getIndex(n+this.dir),h=z.call(this,n,o);this.percent=r/h;const a=i[n],d=i[o],c=this.index!==o,m=n===o;let l;for(const f of[this.index,this.prevIndex])t.includes([o,n],f)||(t.trigger(i[f],"itemhidden",[this]),m&&(l=!0,this.prevIndex=n));(this.index===n&&this.prevIndex!==n||l)&&t.trigger(i[this.index],"itemshown",[this]),c&&(this.prevIndex=n,this.index=o,m||(t.trigger(a,"beforeitemhide",[this]),t.trigger(a,"itemhide",[this])),t.trigger(d,"beforeitemshow",[this]),t.trigger(d,"itemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!m&&d)},end(){if(t.off(document,E,this.move,C),t.off(document,H,this.end,F),this.dragging)if(setTimeout(t.on(this.list,"click",e=>e.preventDefault(),C)),this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const e=(t.isRtl?this.dir*(t.isRtl?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=e?this.index:this.prevIndex,e&&(t.trigger(this.slides[this.prevIndex],"itemhidden",[this]),t.trigger(this.slides[this.index],"itemshown",[this]),this.percent=1-this.percent),this.show(this.dir>0&&!e||this.dir<0&&e?"next":"previous",!0)}t.css(this.list,{userSelect:""}),this.drag=this.percent=null}}};function z(e,s){return this._getTransitioner(e,e!==s&&s).getDistance()||this.slides[e].offsetWidth}function ye(e){return t.css(e,"userSelect")!=="none"&&t.toArray(e.childNodes).some(s=>s.nodeType===3&&s.textContent.trim())}t.memoize((e,s)=>{const i=Object.keys(s),n=i.concat(e).map(r=>[t.hyphenate(r),`data-${t.hyphenate(r)}`]).flat();return{attributes:i,filter:n}});let Ie=1;function R(e,s=null){return(s==null?void 0:s.id)||`${e.$options.id}-${Ie++}`}const g={SPACE:32,END:35,HOME:36,LEFT:37,RIGHT:39};var Ce={i18n:{next:"Next slide",previous:"Previous slide",slideX:"Slide %s",slideLabel:"%s of %s",role:"String"},data:{selNav:!1,role:"region"},computed:{nav:({selNav:e},s)=>t.$(e,s),navChildren(){return t.children(this.nav)},selNavItem:({attrItem:e})=>`[${e}],[data-${e}]`,navItems(e,s){return t.$$(this.selNavItem,s)}},watch:{nav(e,s){t.attr(e,"role","tablist"),this.padNavitems(),s&&this.$emit()},list(e){t.isTag(e,"ul")&&t.attr(e,"role","presentation")},navChildren(e){t.attr(e,"role","presentation"),this.padNavitems(),this.updateNav()},navItems(e){for(const s of e){const i=t.data(s,this.attrItem),n=t.$("a,button",s)||s;let r,o=null;if(t.isNumeric(i)){const h=t.toNumber(i),a=this.slides[h];a&&(a.id||(a.id=R(this,a)),o=a.id),r=this.t("slideX",t.toFloat(i)+1),n.role="tab"}else this.list&&(this.list.id||(this.list.id=R(this,this.list)),o=this.list.id),r=this.t(i);n.ariaControls=o,n.ariaLabel=n.ariaLabel||r}},slides(e){e.forEach((s,i)=>t.attr(s,{role:this.nav?"tabpanel":"group","aria-label":this.t("slideLabel",i+1,this.length),"aria-roledescription":this.nav?null:"slide"})),this.padNavitems()}},connected(){this.$el.role=this.role,this.$el.ariaRoleDescription="carousel"},update:[{write(){this.navItems.concat(this.nav).forEach(e=>e&&(e.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]}],events:[{name:"click keydown",delegate:({selNavItem:e})=>e,filter:({parallax:e})=>!e,handler(e){e.target.closest("a,button")&&(e.type==="click"||e.keyCode===g.SPACE)&&(O(e),this.show(t.data(e.current,this.attrItem)))}},{name:"itemshow",handler(){this.updateNav()}},{name:"keydown",delegate:({selNavItem:e})=>e,filter:({parallax:e})=>!e,handler(e){const{current:s,keyCode:i}=e,n=t.data(s,this.attrItem);if(!t.isNumeric(n))return;let r=i===g.HOME?0:i===g.END?"last":i===g.LEFT?"previous":i===g.RIGHT?"next":-1;~r&&(e.preventDefault(),this.show(r))}}],methods:{updateNav(){const e=this.getValidIndex();for(const s of this.navItems){const i=t.data(s,this.attrItem),n=t.$("a,button",s)||s;if(t.isNumeric(i)){const o=t.toNumber(i)===e;t.toggleClass(s,this.clsActive,o),t.toggleClass(n,"uk-disabled",!!this.parallax),n.ariaSelected=o,n.tabIndex=o&&!this.parallax?null:-1,o&&n&&t.matches(t.parent(s),":focus-within")&&n.focus()}else t.toggleClass(s,"uk-invisible",this.finite&&(i==="previous"&&e===0||i==="next"&&e>=this.maxIndex))}},padNavitems(){if(!this.nav)return;const e=[];for(let s=0;s<this.length;s++){const i=`${this.attrItem}="${s}"`;e[s]=this.navChildren.findLast(n=>n.matches(`[${i}]`))||t.$(`<li ${i}><a href></a></li>`)}t.isEqual(e,this.navChildren)||t.html(this.nav,e)}}};const Ae="cubic-bezier(0.25, 0.46, 0.45, 0.94)",Te="cubic-bezier(0.165, 0.84, 0.44, 1)";var _e={mixins:[ke,$e,Ce,xe],props:{clsActivated:String,easing:String,index:Number,finite:Boolean,velocity:Number},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:"",clsEnter:"uk-slide-enter",clsLeave:"uk-slide-leave",clsSlideActive:"uk-slide-active",Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){t.removeClass(this.slides,this.clsActive)},computed:{duration:({velocity:e},s)=>Se(s.offsetWidth/e),list:({selList:e},s)=>t.$(e,s),maxIndex(){return this.length-1},slides(){return t.children(this.list)},length(){return this.slides.length}},watch:{slides(e,s){s&&this.$emit()}},events:{itemshow({target:e}){t.addClass(e,this.clsEnter,this.clsSlideActive)},itemshown({target:e}){t.removeClass(e,this.clsEnter)},itemhide({target:e}){t.addClass(e,this.clsLeave)},itemhidden({target:e}){t.removeClass(e,this.clsLeave,this.clsSlideActive)}},methods:{async show(e,s=!1){var i;if(this.dragging||!this.length||this.parallax)return;const{stack:n}=this,r=s?0:n.length,o=()=>{n.splice(r,1),n.length&&this.show(n.shift(),!0)};if(n[s?"unshift":"push"](e),!s&&n.length>1){n.length===2&&((i=this._transitioner)==null||i.forward(Math.min(this.duration,200)));return}const h=this.getIndex(this.index),a=t.hasClass(this.slides,this.clsActive)&&this.slides[h],d=this.getIndex(e,this.index),c=this.slides[d];if(a===c){o();return}if(this.dir=Pe(e,h),this.prevIndex=h,this.index=d,a&&!t.trigger(a,"beforeitemhide",[this])||!t.trigger(c,"beforeitemshow",[this,a])){this.index=this.prevIndex,o();return}a&&t.trigger(a,"itemhide",[this]),t.trigger(c,"itemshow",[this]),await this._show(a,c,s),a&&t.trigger(a,"itemhidden",[this]),t.trigger(c,"itemshown",[this]),n.shift(),this._transitioner=null,n.length&&requestAnimationFrame(()=>n.length&&this.show(n.shift(),!0))},getIndex(e=this.index,s=this.index){return t.clamp(t.getIndex(e,this.slides,s,this.finite),0,Math.max(0,this.maxIndex))},getValidIndex(e=this.index,s=this.prevIndex){return this.getIndex(e,s)},async _show(e,s,i){if(this._transitioner=this._getTransitioner(e,s,this.dir,{easing:i?s.offsetWidth<600?Ae:Te:this.easing,...this.transitionOptions}),!i&&!e){this._translate(1);return}const{length:n}=this.stack;return this._transitioner[n>1?"forward":"show"](n>1?Math.min(this.duration,75+75/(n-1)):this.duration,this.percent)},_translate(e,s=this.prevIndex,i=this.index){const n=this._getTransitioner(s===i?!1:s,i);return n.translate(e),n},_getTransitioner(e=this.prevIndex,s=this.index,i=this.dir||1,n=this.transitionOptions){return new this.Transitioner(t.isNumber(e)?this.slides[e]:e,t.isNumber(s)?this.slides[s]:s,i*(t.isRtl?-1:1),n)}}};function Pe(e,s){return e==="next"?1:e==="previous"||e<s?-1:1}function Se(e){return .5*e+300}var Ee={mixins:[_e],props:{animation:String},data:{animation:"slide",clsActivated:"uk-transition-active",Animations:S,Transitioner:ve},computed:{animation({animation:e,Animations:s}){return{...s[e]||s.slide,name:e}},transitionOptions(){return{animation:this.animation}}},observe:ee(),events:{itemshow({target:e}){t.addClass(e,this.clsActive)},itemshown({target:e}){t.addClass(e,this.clsActivated)},itemhidden({target:e}){t.removeClass(e,this.clsActive,this.clsActivated)}}};({...S});function A(e){return`scale3d(${e}, ${e}, 1)`}var W={...S,fade:{show(){return[{opacity:0},{opacity:1}]},percent(e){return 1-t.css(e,"opacity")},translate(e){return[{opacity:1-e},{opacity:e}]}},scale:{show(){return[{opacity:0,transform:A(1-.2)},{opacity:1,transform:A(1)}]},percent(e){return 1-t.css(e,"opacity")},translate(e){return[{opacity:1-e,transform:A(1-.2*e)},{opacity:e,transform:A(1-.2+.2*e)}]}}},Ne={i18n:{counter:"%s / %s"},mixins:[ce,Ee],functional:!0,props:{counter:Boolean,preload:Number,nav:Boolean,slidenav:Boolean,delayControls:Number,videoAutoplay:Boolean,template:String},data:()=>({counter:!1,preload:1,nav:!1,slidenav:!0,delayControls:3e3,videoAutoplay:!1,items:[],cls:"uk-open",clsPage:"uk-lightbox-page",clsFit:"uk-lightbox-items-fit",clsZoom:"uk-lightbox-zoom",attrItem:"uk-lightbox-item",selList:".uk-lightbox-items",selClose:".uk-close-large",selNav:".uk-lightbox-thumbnav, .uk-lightbox-dotnav",selCaption:".uk-lightbox-caption",selCounter:".uk-lightbox-counter",pauseOnHover:!1,velocity:2,Animations:W,template:'<div class="uk-lightbox uk-overflow-hidden"> <div class="uk-lightbox-items"></div> <div class="uk-position-top-right uk-position-small uk-transition-fade" uk-inverse> <button class="uk-lightbox-close uk-close-large" type="button" uk-close></button> </div> <div class="uk-lightbox-slidenav uk-position-center-left uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-previous uk-lightbox-item="previous"></a> </div> <div class="uk-lightbox-slidenav uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-next uk-lightbox-item="next"></a> </div> <div class="uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse style="max-height: 90vh; overflow: auto;"> <ul class="uk-lightbox-thumbnav uk-lightbox-thumbnav-vertical uk-thumbnav uk-thumbnav-vertical"></ul> <ul class="uk-lightbox-dotnav uk-dotnav uk-dotnav-vertical"></ul> </div> <div class="uk-lightbox-counter uk-text-large uk-position-top-left uk-position-small uk-transition-fade" uk-inverse></div> <div class="uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>'}),created(){let e=t.$(this.template);t.isTag(e,"template")&&(e=t.fragment(t.html(e)));const s=t.$(this.selList,e),i=this.$props.nav;t.remove(t.$$(this.selNav,e).filter(o=>!t.matches(o,`.uk-${i}`)));for(const[o,h]of this.items.entries())t.append(s,"<div>"),i==="thumbnav"&&t.wrapAll(De(h,this.videoAutoplay),t.append(t.$(this.selNav,e),`<li uk-lightbox-item="${o}"><a href></a></li>`));this.slidenav||t.remove(t.$$(".uk-lightbox-slidenav",e)),this.counter||t.remove(t.$(this.selCounter,e)),t.addClass(s,this.clsFit);const n=t.$("[uk-close]",e),r=this.t("close");n&&r&&(n.dataset.i18n=JSON.stringify({label:r})),this.$mount(t.append(this.container,e))},events:[{name:"click",self:!0,filter:({bgClose:e})=>e,delegate:({selList:e})=>`${e} > *`,handler(e){e.defaultPrevented||this.hide()}},{name:"click",self:!0,delegate:({clsZoom:e})=>`.${e}`,handler(e){e.defaultPrevented||t.toggleClass(this.list,this.clsFit)}},{name:`${t.pointerMove} ${t.pointerDown} keydown`,filter:({delayControls:e})=>e,handler(){this.showControls()}},{name:"shown",self:!0,handler(){this.showControls()}},{name:"hide",self:!0,handler(){this.hideControls(),t.removeClass(this.slides,this.clsActive),t.Transition.stop(this.slides)}},{name:"hidden",self:!0,handler(){this.$destroy(!0)}},{name:"keyup",el:()=>document,handler({keyCode:e}){if(!this.isToggled()||!this.draggable)return;let s=-1;e===g.LEFT?s="previous":e===g.RIGHT?s="next":e===g.HOME?s=0:e===g.END&&(s="last"),~s&&this.show(s)}},{name:"beforeitemshow",handler(e){t.html(t.$(this.selCaption,this.$el),this.getItem().caption||""),t.html(t.$(this.selCounter,this.$el),this.t("counter",this.index+1,this.slides.length));for(let s=-this.preload;s<=this.preload;s++)this.loadItem(this.index+s);this.isToggled()||(this.draggable=!1,e.preventDefault(),this.toggleElement(this.$el,!0,!1),this.animation=W.scale,t.removeClass(e.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshown",handler(){this.draggable=this.$props.draggable}},{name:"itemload",async handler(e,s){const{source:i,type:n,attrs:r={}}=s;if(this.setItem(s,"<span uk-spinner uk-inverse></span>"),!i)return;let o;const h={allowfullscreen:"",style:"max-width: 100%; box-sizing: border-box;","uk-responsive":"","uk-video":`${!!this.videoAutoplay}`};if(n==="image"||j(i)){const a=v("img");se(a,s.sources),t.attr(a,{src:i,...t.pick(s,["alt","srcset","sizes"]),...r}),t.on(a,"load",()=>this.setItem(s,t.parent(a)||a)),t.on(a,"error",()=>this.setError(s))}else if(n==="video"||q(i)){const a=this.videoAutoplay==="inline",d=v("video",{src:i,playsinline:"",controls:a?null:"",loop:a?"":null,poster:this.videoAutoplay?null:s.poster,"uk-video":a?"automute: true":!!this.videoAutoplay,...r});t.on(d,"loadedmetadata",()=>this.setItem(s,d)),t.on(d,"error",()=>this.setError(s))}else if(n==="iframe"||i.match(/\.(html|php)($|\?)/i))this.setItem(s,v("iframe",{src:i,allowfullscreen:"",class:"uk-lightbox-iframe",...r}));else if(o=i.match(/\/\/(?:.*?youtube(-nocookie)?\..*?(?:[?&]v=|\/shorts\/)|youtu\.be\/)([\w-]{11})[&?]?(.*)?/))this.setItem(s,v("iframe",{src:`https://www.youtube${o[1]||""}.com/embed/${o[2]}${o[3]?`?${o[3]}`:""}`,width:1920,height:1080,...h,...r}));else if(o=i.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/))try{const{height:a,width:d}=await(await fetch(`https://vimeo.com/api/oembed.json?maxwidth=1920&url=${encodeURI(i)}`,{credentials:"omit"})).json();this.setItem(s,v("iframe",{src:`https://player.vimeo.com/video/${o[1]}${o[2]?`?${o[2]}`:""}`,width:d,height:a,...h,...r}))}catch{this.setError(s)}}},{name:"itemloaded",handler(){this.$emit("resize")}}],update:{read(){for(const e of t.$$(`${this.selList} :not([controls]):is(img,video)`,this.$el))t.toggleClass(e,this.clsZoom,(e.naturalHeight||e.videoHeight)-this.$el.offsetHeight>Math.max(0,(e.naturalWidth||e.videoWidth)-this.$el.offsetWidth))},events:["resize"]},methods:{loadItem(e=this.index){const s=this.getItem(e);this.getSlide(s).childElementCount||t.trigger(this.$el,"itemload",[s])},getItem(e=this.index){return this.items[t.getIndex(e,this.slides)]},setItem(e,s){t.trigger(this.$el,"itemloaded",[this,t.html(this.getSlide(e),s)])},getSlide(e){return this.slides[this.items.indexOf(e)]},setError(e){this.setItem(e,'<span uk-icon="icon: bolt; ratio: 2" uk-inverse></span>')},showControls(){clearTimeout(this.controlsTimer),this.controlsTimer=this.delayControls&&setTimeout(this.hideControls,this.delayControls),t.addClass(this.$el,"uk-active","uk-transition-active")},hideControls(){t.removeClass(this.$el,"uk-active","uk-transition-active")}}};function v(e,s){const i=t.fragment(`<${e}>`);return t.attr(i,s),i}function De(e,s){const i=e.poster||e.thumb&&(e.type==="image"||j(e.thumb))?v("img",{src:e.poster||e.thumb,alt:""}):e.thumb&&(e.type==="video"||q(e.thumb))?v("video",{src:e.thumb,loop:"",playsinline:"","uk-video":`autoplay: ${!!s}; automute: true`}):v("canvas");return e.thumbRatio&&(i.style.aspectRatio=e.thumbRatio),i}function j(e){return e==null?void 0:e.match(/\.(avif|jpe?g|jfif|a?png|gif|svg|webp)($|\?)/i)}function q(e){return e==null?void 0:e.match(/\.(mp4|webm|ogv)($|\?)/i)}const Oe=".uk-disabled *, .uk-disabled, [disabled]";var U={install:Me,props:{toggle:String},data:{toggle:"a"},computed:{toggles:({toggle:e},s)=>t.$$(e,s)},watch:{toggles(e){this.hide();for(const s of e)t.isTag(s,"a")&&(s.role="button")}},disconnected(){this.hide()},events:{name:"click",delegate:({toggle:e})=>e,handler(e){e.defaultPrevented||(e.preventDefault(),t.matches(e.current,Oe)||this.show(e.current))}},methods:{show(e){let s=this.toggles.map(V);if(this.nav==="thumbnav"&&Be.call(this,this.toggles,s),s=t.uniqueBy(s,"source"),t.isElement(e)){const{source:i}=V(e);e=t.findIndex(s,({source:n})=>i===n)}return this.panel=this.panel||this.$create("lightboxPanel",{...this.$props,items:s}),t.on(this.panel.$el,"hidden",()=>this.panel=null),this.panel.show(e)},hide(){var e;return(e=this.panel)==null?void 0:e.hide()}}};function Me(e,s){e.lightboxPanel||e.component("lightboxPanel",Ne),t.assign(s.props,e.component("lightboxPanel").options.props)}function Be(e,s){for(const[i,n]of Object.entries(e)){if(s[i].thumb)continue;const r=t.parents(n).reverse().concat(n).find(h=>this.$el.contains(h)&&(h===n||t.$$(this.toggle,h).length===1));if(!r)continue;const o=t.$("img,video",r);o&&(s[i].thumb=o.currentSrc||o.poster||o.src,s[i].thumbRatio=(o.naturalWidth||o.videoWidth)/(o.naturalHeight||o.videoHeight))}}function V(e){const s={};for(const i of e.getAttributeNames()){const n=i.replace(/^data-/,"");s[n==="href"?"source":n]=e.getAttribute(i)}return s.attrs=x(s.attrs),s}return typeof window<"u"&&window.UIkit&&window.UIkit.component("lightbox",U),U})); assets/uikit/dist/js/components/notification.js000064400000010047151666572350016005 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitnotification', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitNotification = factory(global.UIkit.util)); })(this, (function (uikitUtil) { 'use strict'; var Container = { props: { container: Boolean }, data: { container: true }, computed: { container({ container }) { return container === true && this.$container || container && uikitUtil.$(container); } } }; function maybeDefaultPreventClick(e) { if (e.target.closest('a[href="#"],a[href=""]')) { e.preventDefault(); } } var Component = { mixins: [Container], functional: true, args: ["message", "status"], data: { message: "", status: "", timeout: 5e3, group: "", pos: "top-center", clsContainer: "uk-notification", clsClose: "uk-notification-close", clsMsg: "uk-notification-message" }, install, computed: { marginProp: ({ pos }) => `margin-${pos.match(/[a-z]+(?=-)/)[0]}`, startProps() { return { opacity: 0, [this.marginProp]: -this.$el.offsetHeight }; } }, created() { const posClass = `${this.clsContainer}-${this.pos}`; const containerAttr = `data-${this.clsContainer}-container`; const container = uikitUtil.$(`.${posClass}[${containerAttr}]`, this.container) || uikitUtil.append( this.container, `<div class="${this.clsContainer} ${posClass}" ${containerAttr}></div>` ); this.$mount( uikitUtil.append( container, `<div class="${this.clsMsg}${this.status ? ` ${this.clsMsg}-${this.status}` : ""}" role="alert"> <a href class="${this.clsClose}" data-uk-close></a> <div>${this.message}</div> </div>` ) ); }, async connected() { const margin = uikitUtil.toFloat(uikitUtil.css(this.$el, this.marginProp)); await uikitUtil.Transition.start(uikitUtil.css(this.$el, this.startProps), { opacity: 1, [this.marginProp]: margin }); if (this.timeout) { this.timer = setTimeout(this.close, this.timeout); } }, events: { click(e) { maybeDefaultPreventClick(e); this.close(); }, [uikitUtil.pointerEnter]() { if (this.timer) { clearTimeout(this.timer); } }, [uikitUtil.pointerLeave]() { if (this.timeout) { this.timer = setTimeout(this.close, this.timeout); } } }, methods: { async close(immediate) { const removeFn = (el) => { const container = uikitUtil.parent(el); uikitUtil.trigger(el, "close", [this]); uikitUtil.remove(el); if (!(container == null ? void 0 : container.hasChildNodes())) { uikitUtil.remove(container); } }; if (this.timer) { clearTimeout(this.timer); } if (!immediate) { await uikitUtil.Transition.start(this.$el, this.startProps); } removeFn(this.$el); } } }; function install(UIkit) { UIkit.notification.closeAll = function(group, immediate) { uikitUtil.apply(document.body, (el) => { const notification = UIkit.getComponent(el, "notification"); if (notification && (!group || group === notification.group)) { notification.close(immediate); } }); }; } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("notification", Component); } return Component; })); assets/uikit/dist/js/components/slider-parallax.min.js000064400000022206151666572350017165 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(i,$){typeof exports=="object"&&typeof module<"u"?module.exports=$(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitslider_parallax",["uikit-util"],$):(i=typeof globalThis<"u"?globalThis:i||self,i.UIkitSlider_parallax=$(i.UIkit.util))})(this,(function(i){"use strict";var $={props:{media:Boolean},data:{media:!1},connected(){const n=Y(this.media,this.$el);if(this.matchMedia=!0,n){this.mediaObj=window.matchMedia(n);const e=()=>{this.matchMedia=this.mediaObj.matches,i.trigger(this.$el,i.createEvent("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=i.on(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var n;(n=this.offMediaObj)==null||n.call(this)}};function Y(n,e){if(i.isString(n)){if(i.startsWith(n,"@"))n=i.toFloat(i.css(e,`--uk-breakpoint-${n.slice(1)}`));else if(isNaN(n))return n}return n&&i.isNumeric(n)?`(min-width: ${n}px)`:""}function Z(n,e){var t;return(t=n==null?void 0:n.startsWith)==null?void 0:t.call(n,e)}const{from:k}=Array;function U(n){return typeof n=="function"}function C(n){return n!==null&&typeof n=="object"}function nn(n){return C(n)&&n===n.window}function tn(n){return N(n)===9}function E(n){return N(n)>=1}function N(n){return!nn(n)&&C(n)&&n.nodeType}function M(n){return typeof n=="string"}function en(n){return n===void 0}function w(n){return n&&l(n)[0]}function l(n){return E(n)?[n]:Array.from(n||[]).filter(E)}function T(n){const e=Object.create(null);return(t,...r)=>e[t]||(e[t]=n(t,...r))}function P(n,e,t){var r;if(C(e)){for(const o in e)P(n,o,e[o]);return}if(en(t))return(r=w(n))==null?void 0:r.getAttribute(e);for(const o of l(n))U(t)&&(t=t.call(o,P(o,e))),t===null?rn(o,e):o.setAttribute(e,t)}function rn(n,e){l(n).forEach(t=>t.removeAttribute(e))}const on=typeof window<"u"&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function cn(n){return l(n).some(e=>on.call(e))}function sn(n){var e;return(e=w(n))==null?void 0:e.parentElement}function an(n,e){return l(n).filter(t=>W(t,e))}function W(n,e){return l(n).some(t=>t.matches(e))}function fn(n,e){n=w(n);const t=n?k(n.children):[];return e?an(t,e):t}function A(n,e){return fn(sn(n)).indexOf(n)}function un(n,e){return l(mn(n,w(e),"querySelectorAll"))}const dn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,ln=/(\([^)]*\)|[^,])+/g,hn=T(n=>{let e=!1;if(!n||!M(n))return{};const t=[];for(let r of n.match(ln))r=r.trim().replace(dn,"$1 *"),e||(e=["!","+","~","-",">"].includes(r[0])),t.push(r);return{selector:t.join(","),selectors:t,isContextSelector:e}}),gn=/(\([^)]*\)|\S)*/,D=T(n=>{n=n.slice(1).trim();const[e]=n.match(gn);return[e,n.slice(e.length+1)]});function mn(n,e=document,t){var r;const o=hn(n);if(!o.isContextSelector)return o.selector?O(e,t,o.selector):n;n="";const c=o.selectors.length===1;for(let s of o.selectors){let a,f=e;if(s[0]==="!"&&([a,s]=D(s),f=(r=e.parentElement)==null?void 0:r.closest(a),!s&&c)||f&&s[0]==="-"&&([a,s]=D(s),f=f.previousElementSibling,f=W(f,a)?f:null,!s&&c))return f;if(f){if(c)return s[0]==="~"||s[0]==="+"?(s=`:scope > :nth-child(${A(f)+1}) ${s}`,f=f.parentElement):s[0]===">"&&(s=`:scope ${s}`),O(f,t,s);n+=`${n?",":""}${$n(f)} ${s}`}}return tn(e)||(e=e.ownerDocument),O(e,t,n)}function O(n,e,t){try{return n[e](t)}catch{return null}}function $n(n){const e=[];for(;n.parentNode;){const t=P(n,"id");if(t){e.unshift(`#${bn(t)}`);break}else{let{tagName:r}=n;r!=="HTML"&&(r+=`:nth-child(${A(n)+1})`),e.unshift(r),n=n.parentNode}}return e.join(" > ")}function bn(n){return M(n)?CSS.escape(n):""}const pn=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function xn(n){const e=pn.exec(n);if(e)return document.createElement(e[1]);const t=document.createElement("template");return t.innerHTML=n.trim(),wn(t.content.childNodes)}function wn(n){return n.length>1?n:n[0]}function yn(n,e){return vn(n)?l(xn(n)):un(n,e)}function vn(n){return M(n)&&Z(n.trim(),"<")}function Sn(n){return cn(n)?Math.ceil(Math.max(0,...yn("[stroke]",n).map(e=>{var t;return((t=e.getTotalLength)==null?void 0:t.call(e))||0}))):0}const y={x:v,y:v,rotate:v,scale:v,color:j,backgroundColor:j,borderColor:j,blur:g,hue:g,fopacity:g,grayscale:g,invert:g,saturate:g,sepia:g,opacity:Mn,stroke:Pn,bgx:R,bgy:R},{keys:H}=Object;var Fn={mixins:[$],props:q(H(y),"list"),data:q(H(y),void 0),computed:{props(n,e){const t={};for(const o in n)o in y&&!i.isUndefined(n[o])&&(t[o]=n[o].slice());const r={};for(const o in t)r[o]=y[o](o,e,t[o],t);return r}},events:{load(){this.$emit()}},methods:{reset(){i.resetProps(this.$el,this.getCss(0))},getCss(n){const e={};for(const t in this.props)this.props[t](e,i.clamp(n));return e.willChange=Object.keys(e).map(i.propName).join(","),e}}};function v(n,e,t){let r=F(t)||{x:"px",y:"px",rotate:"deg"}[n]||"",o;return n==="x"||n==="y"?(n=`translate${i.ucfirst(n)}`,o=c=>i.toFloat(i.toFloat(c).toFixed(r==="px"?0:6))):n==="scale"&&(r="",o=c=>{var s;return F([c])?i.toPx(c,"width",e,!0)/e[`offset${(s=c.endsWith)!=null&&s.call(c,"vh")?"Height":"Width"}`]:i.toFloat(c)}),t.length===1&&t.unshift(n==="scale"?1:0),t=m(t,o),(c,s)=>{c.transform=`${c.transform||""} ${n}(${b(t,s)}${r})`}}function j(n,e,t){return t.length===1&&t.unshift(p(e,n,"")),t=m(t,r=>Cn(e,r)),(r,o)=>{const[c,s,a]=L(t,o),f=c.map((h,u)=>(h+=a*(s[u]-h),u===3?i.toFloat(h):parseInt(h,10))).join(",");r[n]=`rgba(${f})`}}function Cn(n,e){return p(n,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(i.toFloat)}function g(n,e,t){t.length===1&&t.unshift(0);const r=F(t)||{blur:"px",hue:"deg"}[n]||"%";return n={fopacity:"opacity",hue:"hue-rotate"}[n]||n,t=m(t),(o,c)=>{const s=b(t,c);o.filter=`${o.filter||""} ${n}(${s+r})`}}function Mn(n,e,t){return t.length===1&&t.unshift(p(e,n,"")),t=m(t),(r,o)=>{r[n]=b(t,o)}}function Pn(n,e,t){t.length===1&&t.unshift(0);const r=F(t),o=Sn(e);return t=m(t.reverse(),c=>(c=i.toFloat(c),r==="%"?c*o/100:c)),t.some(([c])=>c)?(i.css(e,"strokeDasharray",o),(c,s)=>{c.strokeDashoffset=b(t,s)}):i.noop}function R(n,e,t,r){t.length===1&&t.unshift(0);const o=n==="bgy"?"height":"width";r[n]=m(t,a=>i.toPx(a,o,e));const c=["bgx","bgy"].filter(a=>a in r);if(c.length===2&&n==="bgx")return i.noop;if(p(e,"backgroundSize","")==="cover")return On(n,e,t,r);const s={};for(const a of c)s[a]=B(e,a);return V(c,s,r)}function On(n,e,t,r){const o=jn(e);if(!o.width)return i.noop;const c={width:e.offsetWidth,height:e.offsetHeight},s=["bgx","bgy"].filter(u=>u in r),a={};for(const u of s){const d=r[u].map(([_n])=>_n),x=Math.min(...d),_=Math.max(...d),K=d.indexOf(x)<d.indexOf(_),X=_-x;a[u]=`${(K?-X:0)-(K?x:_)}px`,c[u==="bgy"?"height":"width"]+=X}const f=i.Dimensions.cover(o,c);for(const u of s){const d=u==="bgy"?"height":"width",x=f[d]-c[d];a[u]=`max(${B(e,u)},-${x}px) + ${a[u]}`}const h=V(s,a,r);return(u,d)=>{h(u,d),u.backgroundSize=`${f.width}px ${f.height}px`,u.backgroundRepeat="no-repeat"}}function B(n,e){return p(n,`background-position-${e.slice(-1)}`,"")}function V(n,e,t){return function(r,o){for(const c of n){const s=b(t[c],o);r[`background-position-${c.slice(-1)}`]=`calc(${e[c]} + ${s}px)`}}}const z={},S={};function jn(n){const e=i.css(n,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(S[e])return S[e];const t=new Image;return e&&(t.src=e,!t.naturalWidth&&!z[e])?(i.once(t,"error load",()=>{S[e]=I(t),i.trigger(n,i.createEvent("load",!1))}),z[e]=!0,I(t)):S[e]=I(t)}function I(n){return{width:n.naturalWidth,height:n.naturalHeight}}function m(n,e=i.toFloat){const t=[],{length:r}=n;let o=0;for(let c=0;c<r;c++){let[s,a]=i.isString(n[c])?n[c].trim().split(/ (?![^(]*\))/):[n[c]];if(s=e(s),a=a?i.toFloat(a)/100:null,c===0?a===null?a=0:a&&t.push([s,0]):c===r-1&&(a===null?a=1:a!==1&&(t.push([s,a]),a=1)),t.push([s,a]),a===null)o++;else if(o){const f=t[c-o-1][1],h=(a-f)/(o+1);for(let u=o;u>0;u--)t[c-u][1]=f+h*(o-u+1);o=0}}return t}function L(n,e){const t=i.findIndex(n.slice(1),([,r])=>e<=r)+1;return[n[t-1][0],n[t][0],(e-n[t-1][1])/(n[t][1]-n[t-1][1])]}function b(n,e){const[t,r,o]=L(n,e);return t+Math.abs(t-r)*o*(t<r?1:-1)}const In=/^-?\d+(?:\.\d+)?(\S+)?/;function F(n,e){var t;for(const r of n){const o=(t=r.match)==null?void 0:t.call(r,In);if(o)return o[1]}return e}function p(n,e,t){const r=n.style[e],o=i.css(i.css(n,e,t),e);return n.style[e]=r,o}function q(n,e){return n.reduce((t,r)=>(t[r]=e,t),{})}var Q={mixins:[Fn],beforeConnect(){this.item=this.$el.closest(`.${this.$options.id.replace("parallax","items")} > *`)},disconnected(){this.item=null},events:[{name:"itemin itemout",self:!0,el:({item:n})=>n,handler({type:n,detail:{percent:e,duration:t,timing:r,dir:o}}){i.fastdom.read(()=>{if(!this.matchMedia)return;const c=this.getCss(J(n,o,e)),s=this.getCss(G(n)?.5:o>0?1:0);i.fastdom.write(()=>{i.css(this.$el,c),i.Transition.start(this.$el,s,t,r).catch(i.noop)})})}},{name:"transitioncanceled transitionend",self:!0,el:({item:n})=>n,handler(){i.Transition.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el:({item:n})=>n,handler({type:n,detail:{percent:e,dir:t}}){i.fastdom.read(()=>{if(!this.matchMedia){this.reset();return}const r=this.getCss(J(n,t,e));i.fastdom.write(()=>i.css(this.$el,r))})}}]};function G(n){return i.endsWith(n,"in")}function J(n,e,t){return t/=2,G(n)^e<0?t:1-t}return typeof window<"u"&&window.UIkit&&window.UIkit.component("sliderParallax",Q),Q})); assets/uikit/dist/js/components/slideshow.js000064400000144301151666572350015321 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitslideshow', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitSlideshow = factory(global.UIkit.util)); })(this, (function (util) { 'use strict'; var Class = { connected() { util.addClass(this.$el, this.$options.id); } }; function callUpdate(instance, e = "update") { if (!instance._connected) { return; } if (!instance._updates.length) { return; } if (!instance._updateCount) { instance._updateCount = 0; requestAnimationFrame(() => instance._updateCount = 0); } if (!instance._queued) { instance._queued = /* @__PURE__ */ new Set(); util.fastdom.read(() => { if (instance._connected) { runUpdates(instance, instance._queued); } instance._queued = null; }); } if (instance._updateCount++ < 20) { instance._queued.add(e.type || e); } } function runUpdates(instance, types) { for (const { read, write, events = [] } of instance._updates) { if (!types.has("update") && !events.some((type) => types.has(type))) { continue; } let result; if (read) { result = read.call(instance, instance._data, types); if (result && util.isPlainObject(result)) { util.assign(instance._data, result); } } if (write && result !== false) { util.fastdom.write(() => { if (instance._connected) { write.call(instance, instance._data, types); } }); } } } function resize(options) { return observe(util.observeResize, options, "resize"); } function intersection(options) { return observe(util.observeIntersection, options); } function lazyload(options = {}) { return intersection({ handler: function(entries, observer) { const { targets = this.$el, preload = 5 } = options; for (const el of util.toNodes(util.isFunction(targets) ? targets(this) : targets)) { util.$$('[loading="lazy"]', el).slice(0, preload - 1).forEach((el2) => util.removeAttr(el2, "loading")); } for (const el of entries.filter(({ isIntersecting }) => isIntersecting).map(({ target }) => target)) { observer.unobserve(el); } }, ...options }); } function scroll(options) { return observe( (target, handler) => ({ disconnect: util.on(toScrollTargets(target), "scroll", handler, { passive: true }) }), options, "scroll" ); } function observe(observe2, options, emit) { return { observe: observe2, handler() { callUpdate(this, emit); }, ...options }; } function toScrollTargets(elements) { return util.toNodes(elements).map((node) => { const { ownerDocument } = node; const parent2 = util.scrollParent(node, true); return parent2 === ownerDocument.scrollingElement ? ownerDocument : parent2; }); } function startsWith(str, search) { var _a; return (_a = str == null ? void 0 : str.startsWith) == null ? void 0 : _a.call(str, search); } const { from: toArray } = Array; function isFunction(obj) { return typeof obj === "function"; } function isObject(obj) { return obj !== null && typeof obj === "object"; } function isWindow(obj) { return isObject(obj) && obj === obj.window; } function isDocument(obj) { return nodeType(obj) === 9; } function isNode(obj) { return nodeType(obj) >= 1; } function nodeType(obj) { return !isWindow(obj) && isObject(obj) && obj.nodeType; } function isString(value) { return typeof value === "string"; } function isUndefined(value) { return value === void 0; } function toNode(element) { return element && toNodes(element)[0]; } function toNodes(element) { return isNode(element) ? [element] : Array.from(element || []).filter(isNode); } function memoize(fn) { const cache = /* @__PURE__ */ Object.create(null); return (key, ...args) => cache[key] || (cache[key] = fn(key, ...args)); } function attr(element, name, value) { var _a; if (isObject(name)) { for (const key in name) { attr(element, key, name[key]); } return; } if (isUndefined(value)) { return (_a = toNode(element)) == null ? void 0 : _a.getAttribute(name); } else { for (const el of toNodes(element)) { if (isFunction(value)) { value = value.call(el, attr(el, name)); } if (value === null) { removeAttr(el, name); } else { el.setAttribute(name, value); } } } } function removeAttr(element, name) { toNodes(element).forEach((element2) => element2.removeAttribute(name)); } const inBrowser = typeof window !== "undefined"; const isVisibleFn = inBrowser && Element.prototype.checkVisibility || function() { return this.offsetWidth || this.offsetHeight || this.getClientRects().length; }; function isVisible(element) { return toNodes(element).some((element2) => isVisibleFn.call(element2)); } function parent(element) { var _a; return (_a = toNode(element)) == null ? void 0 : _a.parentElement; } function filter(element, selector) { return toNodes(element).filter((element2) => matches(element2, selector)); } function matches(element, selector) { return toNodes(element).some((element2) => element2.matches(selector)); } function children(element, selector) { element = toNode(element); const children2 = element ? toArray(element.children) : []; return selector ? filter(children2, selector) : children2; } function index(element, ref) { return children(parent(element)).indexOf(element); } function findAll(selector, context) { return toNodes(_query(selector, toNode(context), "querySelectorAll")); } const addStarRe = /([!>+~-])(?=\s+[!>+~-]|\s*$)/g; const splitSelectorRe = /(\([^)]*\)|[^,])+/g; const parseSelector = memoize((selector) => { let isContextSelector = false; if (!selector || !isString(selector)) { return {}; } const selectors = []; for (let sel of selector.match(splitSelectorRe)) { sel = sel.trim().replace(addStarRe, "$1 *"); isContextSelector || (isContextSelector = ["!", "+", "~", "-", ">"].includes(sel[0])); selectors.push(sel); } return { selector: selectors.join(","), selectors, isContextSelector }; }); const positionRe = /(\([^)]*\)|\S)*/; const parsePositionSelector = memoize((selector) => { selector = selector.slice(1).trim(); const [position] = selector.match(positionRe); return [position, selector.slice(position.length + 1)]; }); function _query(selector, context = document, queryFn) { var _a; const parsed = parseSelector(selector); if (!parsed.isContextSelector) { return parsed.selector ? _doQuery(context, queryFn, parsed.selector) : selector; } selector = ""; const isSingle = parsed.selectors.length === 1; for (let sel of parsed.selectors) { let positionSel; let ctx = context; if (sel[0] === "!") { [positionSel, sel] = parsePositionSelector(sel); ctx = (_a = context.parentElement) == null ? void 0 : _a.closest(positionSel); if (!sel && isSingle) { return ctx; } } if (ctx && sel[0] === "-") { [positionSel, sel] = parsePositionSelector(sel); ctx = ctx.previousElementSibling; ctx = matches(ctx, positionSel) ? ctx : null; if (!sel && isSingle) { return ctx; } } if (!ctx) { continue; } if (isSingle) { if (sel[0] === "~" || sel[0] === "+") { sel = `:scope > :nth-child(${index(ctx) + 1}) ${sel}`; ctx = ctx.parentElement; } else if (sel[0] === ">") { sel = `:scope ${sel}`; } return _doQuery(ctx, queryFn, sel); } selector += `${selector ? "," : ""}${domPath(ctx)} ${sel}`; } if (!isDocument(context)) { context = context.ownerDocument; } return _doQuery(context, queryFn, selector); } function _doQuery(context, queryFn, selector) { try { return context[queryFn](selector); } catch (e) { return null; } } function domPath(element) { const names = []; while (element.parentNode) { const id = attr(element, "id"); if (id) { names.unshift(`#${escape(id)}`); break; } else { let { tagName } = element; if (tagName !== "HTML") { tagName += `:nth-child(${index(element) + 1})`; } names.unshift(tagName); element = element.parentNode; } } return names.join(" > "); } function escape(css) { return isString(css) ? CSS.escape(css) : ""; } const singleTagRe = /^<(\w+)\s*\/?>(?:<\/\1>)?$/; function fragment(html2) { const matches = singleTagRe.exec(html2); if (matches) { return document.createElement(matches[1]); } const container = document.createElement("template"); container.innerHTML = html2.trim(); return unwrapSingle(container.content.childNodes); } function unwrapSingle(nodes) { return nodes.length > 1 ? nodes : nodes[0]; } function $$(selector, context) { return isHtml(selector) ? toNodes(fragment(selector)) : findAll(selector, context); } function isHtml(str) { return isString(str) && startsWith(str.trim(), "<"); } function getMaxPathLength(el) { return isVisible(el) ? Math.ceil( Math.max(0, ...$$("[stroke]", el).map((stroke) => { var _a; return ((_a = stroke.getTotalLength) == null ? void 0 : _a.call(stroke)) || 0; })) ) : 0; } const props = { x: transformFn, y: transformFn, rotate: transformFn, scale: transformFn, color: colorFn, backgroundColor: colorFn, borderColor: colorFn, blur: filterFn, hue: filterFn, fopacity: filterFn, grayscale: filterFn, invert: filterFn, saturate: filterFn, sepia: filterFn, opacity: cssPropFn, stroke: strokeFn, bgx: backgroundFn, bgy: backgroundFn }; const { keys } = Object; ({ props: fillObject(keys(props), "list"), data: fillObject(keys(props), void 0)}); function transformFn(prop, el, stops) { let unit = getUnit(stops) || { x: "px", y: "px", rotate: "deg" }[prop] || ""; let transformFn2; if (prop === "x" || prop === "y") { prop = `translate${util.ucfirst(prop)}`; transformFn2 = (stop) => util.toFloat(util.toFloat(stop).toFixed(unit === "px" ? 0 : 6)); } else if (prop === "scale") { unit = ""; transformFn2 = (stop) => { var _a; return getUnit([stop]) ? util.toPx(stop, "width", el, true) / el[`offset${((_a = stop.endsWith) == null ? void 0 : _a.call(stop, "vh")) ? "Height" : "Width"}`] : util.toFloat(stop); }; } if (stops.length === 1) { stops.unshift(prop === "scale" ? 1 : 0); } stops = parseStops(stops, transformFn2); return (css2, percent) => { css2.transform = `${css2.transform || ""} ${prop}(${getValue(stops, percent)}${unit})`; }; } function colorFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops, (stop) => parseColor(el, stop)); return (css2, percent) => { const [start, end, p] = getStop(stops, percent); const value = start.map((value2, i) => { value2 += p * (end[i] - value2); return i === 3 ? util.toFloat(value2) : parseInt(value2, 10); }).join(","); css2[prop] = `rgba(${value})`; }; } function parseColor(el, color) { return getCssValue(el, "color", color).split(/[(),]/g).slice(1, -1).concat(1).slice(0, 4).map(util.toFloat); } function filterFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops) || { blur: "px", hue: "deg" }[prop] || "%"; prop = { fopacity: "opacity", hue: "hue-rotate" }[prop] || prop; stops = parseStops(stops); return (css2, percent) => { const value = getValue(stops, percent); css2.filter = `${css2.filter || ""} ${prop}(${value + unit})`; }; } function cssPropFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops); return (css2, percent) => { css2[prop] = getValue(stops, percent); }; } function strokeFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops); const length = getMaxPathLength(el); stops = parseStops(stops.reverse(), (stop) => { stop = util.toFloat(stop); return unit === "%" ? stop * length / 100 : stop; }); if (!stops.some(([value]) => value)) { return util.noop; } util.css(el, "strokeDasharray", length); return (css2, percent) => { css2.strokeDashoffset = getValue(stops, percent); }; } function backgroundFn(prop, el, stops, props2) { if (stops.length === 1) { stops.unshift(0); } const attr = prop === "bgy" ? "height" : "width"; props2[prop] = parseStops(stops, (stop) => util.toPx(stop, attr, el)); const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); if (bgProps.length === 2 && prop === "bgx") { return util.noop; } if (getCssValue(el, "backgroundSize", "") === "cover") { return backgroundCoverFn(prop, el, stops, props2); } const positions = {}; for (const prop2 of bgProps) { positions[prop2] = getBackgroundPos(el, prop2); } return setBackgroundPosFn(bgProps, positions, props2); } function backgroundCoverFn(prop, el, stops, props2) { const dimImage = getBackgroundImageDimensions(el); if (!dimImage.width) { return util.noop; } const dimEl = { width: el.offsetWidth, height: el.offsetHeight }; const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); const positions = {}; for (const prop2 of bgProps) { const values = props2[prop2].map(([value]) => value); const min = Math.min(...values); const max = Math.max(...values); const down = values.indexOf(min) < values.indexOf(max); const diff = max - min; positions[prop2] = `${(down ? -diff : 0) - (down ? min : max)}px`; dimEl[prop2 === "bgy" ? "height" : "width"] += diff; } const dim = util.Dimensions.cover(dimImage, dimEl); for (const prop2 of bgProps) { const attr = prop2 === "bgy" ? "height" : "width"; const overflow = dim[attr] - dimEl[attr]; positions[prop2] = `max(${getBackgroundPos(el, prop2)},-${overflow}px) + ${positions[prop2]}`; } const fn = setBackgroundPosFn(bgProps, positions, props2); return (css2, percent) => { fn(css2, percent); css2.backgroundSize = `${dim.width}px ${dim.height}px`; css2.backgroundRepeat = "no-repeat"; }; } function getBackgroundPos(el, prop) { return getCssValue(el, `background-position-${prop.slice(-1)}`, ""); } function setBackgroundPosFn(bgProps, positions, props2) { return function(css2, percent) { for (const prop of bgProps) { const value = getValue(props2[prop], percent); css2[`background-position-${prop.slice(-1)}`] = `calc(${positions[prop]} + ${value}px)`; } }; } const loading = {}; const dimensions = {}; function getBackgroundImageDimensions(el) { const src = util.css(el, "backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/, "$1"); if (dimensions[src]) { return dimensions[src]; } const image = new Image(); if (src) { image.src = src; if (!image.naturalWidth && !loading[src]) { util.once(image, "error load", () => { dimensions[src] = toDimensions(image); util.trigger(el, util.createEvent("load", false)); }); loading[src] = true; return toDimensions(image); } } return dimensions[src] = toDimensions(image); } function toDimensions(image) { return { width: image.naturalWidth, height: image.naturalHeight }; } function parseStops(stops, fn = util.toFloat) { const result = []; const { length } = stops; let nullIndex = 0; for (let i = 0; i < length; i++) { let [value, percent] = util.isString(stops[i]) ? stops[i].trim().split(/ (?![^(]*\))/) : [stops[i]]; value = fn(value); percent = percent ? util.toFloat(percent) / 100 : null; if (i === 0) { if (percent === null) { percent = 0; } else if (percent) { result.push([value, 0]); } } else if (i === length - 1) { if (percent === null) { percent = 1; } else if (percent !== 1) { result.push([value, percent]); percent = 1; } } result.push([value, percent]); if (percent === null) { nullIndex++; } else if (nullIndex) { const leftPercent = result[i - nullIndex - 1][1]; const p = (percent - leftPercent) / (nullIndex + 1); for (let j = nullIndex; j > 0; j--) { result[i - j][1] = leftPercent + p * (nullIndex - j + 1); } nullIndex = 0; } } return result; } function getStop(stops, percent) { const index = util.findIndex(stops.slice(1), ([, targetPercent]) => percent <= targetPercent) + 1; return [ stops[index - 1][0], stops[index][0], (percent - stops[index - 1][1]) / (stops[index][1] - stops[index - 1][1]) ]; } function getValue(stops, percent) { const [start, end, p] = getStop(stops, percent); return start + Math.abs(start - end) * p * (start < end ? 1 : -1); } const unitRe = /^-?\d+(?:\.\d+)?(\S+)?/; function getUnit(stops, defaultUnit) { var _a; for (const stop of stops) { const match = (_a = stop.match) == null ? void 0 : _a.call(stop, unitRe); if (match) { return match[1]; } } return defaultUnit; } function getCssValue(el, prop, value) { const prev = el.style[prop]; const val = util.css(util.css(el, prop, value), prop); el.style[prop] = prev; return val; } function fillObject(keys2, value) { return keys2.reduce((data, prop) => { data[prop] = value; return data; }, {}); } function ease(percent, easing) { return easing >= 0 ? Math.pow(percent, easing + 1) : 1 - Math.pow(1 - percent, 1 - easing); } var SliderParallax = { props: { parallax: Boolean, parallaxTarget: Boolean, parallaxStart: String, parallaxEnd: String, parallaxEasing: Number }, data: { parallax: false, parallaxTarget: false, parallaxStart: 0, parallaxEnd: 0, parallaxEasing: 0 }, observe: [ resize({ target: ({ $el, parallaxTarget }) => [$el, parallaxTarget], filter: ({ parallax }) => parallax }), scroll({ filter: ({ parallax }) => parallax }) ], computed: { parallaxTarget({ parallaxTarget }, $el) { return parallaxTarget && util.query(parallaxTarget, $el) || this.list; } }, update: { read() { if (!this.parallax) { return false; } const target = this.parallaxTarget; if (!target) { return false; } const start = util.toPx(this.parallaxStart, "height", target, true); const end = util.toPx(this.parallaxEnd, "height", target, true); const percent = ease(util.scrolledOver(target, start, end), this.parallaxEasing); return { parallax: this.getIndexAt(percent) }; }, write({ parallax }) { const [prevIndex, slidePercent] = parallax; const nextIndex = this.getValidIndex(prevIndex + Math.ceil(slidePercent)); const prev = this.slides[prevIndex]; const next = this.slides[nextIndex]; const { triggerShow, triggerShown, triggerHide, triggerHidden } = useTriggers(this); if (~this.prevIndex) { for (const i of /* @__PURE__ */ new Set([this.index, this.prevIndex])) { if (!util.includes([nextIndex, prevIndex], i)) { triggerHide(this.slides[i]); triggerHidden(this.slides[i]); } } } const changed = this.prevIndex !== prevIndex || this.index !== nextIndex; this.dir = 1; this.prevIndex = prevIndex; this.index = nextIndex; if (prev !== next) { triggerHide(prev); } triggerShow(next); if (changed) { triggerShown(prev); } this._translate(prev === next ? 1 : slidePercent, prev, next); }, events: ["scroll", "resize"] }, methods: { getIndexAt(percent) { const index = percent * (this.length - 1); return [Math.floor(index), index % 1]; } } }; function useTriggers(cmp) { const { clsSlideActive, clsEnter, clsLeave } = cmp; return { triggerShow, triggerShown, triggerHide, triggerHidden }; function triggerShow(el) { if (util.hasClass(el, clsLeave)) { triggerHide(el); triggerHidden(el); } if (!util.hasClass(el, clsSlideActive)) { util.trigger(el, "beforeitemshow", [cmp]); util.trigger(el, "itemshow", [cmp]); } } function triggerShown(el) { if (util.hasClass(el, clsEnter)) { util.trigger(el, "itemshown", [cmp]); } } function triggerHide(el) { if (!util.hasClass(el, clsSlideActive)) { triggerShow(el); } if (util.hasClass(el, clsEnter)) { triggerShown(el); } if (!util.hasClass(el, clsLeave)) { util.trigger(el, "beforeitemhide", [cmp]); util.trigger(el, "itemhide", [cmp]); } } function triggerHidden(el) { if (util.hasClass(el, clsLeave)) { util.trigger(el, "itemhidden", [cmp]); } } } var SliderReactive = { update: { write() { if (this.stack.length || this.dragging || this.parallax) { return; } const index = this.getValidIndex(); if (!~this.prevIndex || this.index !== index) { this.show(index); } else { this._translate(1); } }, events: ["resize"] } }; var Animations$1 = { slide: { show(dir) { return [{ transform: translate(dir * -100) }, { transform: translate() }]; }, percent(current) { return translated(current); }, translate(percent, dir) { return [ { transform: translate(dir * -100 * percent) }, { transform: translate(dir * 100 * (1 - percent)) } ]; } } }; function translated(el) { return Math.abs(new DOMMatrix(util.css(el, "transform")).m41 / el.offsetWidth); } function translate(value = 0, unit = "%") { return value ? `translate3d(${value + unit}, 0, 0)` : ""; } function Transitioner(prev, next, dir, { animation, easing }) { const { percent, translate, show = util.noop } = animation; const props = show(dir); const { promise, resolve } = withResolvers(); return { dir, show(duration, percent2 = 0, linear) { const timing = linear ? "linear" : easing; duration -= Math.round(duration * util.clamp(percent2, -1, 1)); this.translate(percent2); triggerUpdate(next, "itemin", { percent: percent2, duration, timing, dir }); triggerUpdate(prev, "itemout", { percent: 1 - percent2, duration, timing, dir }); Promise.all([ util.Transition.start(next, props[1], duration, timing), util.Transition.start(prev, props[0], duration, timing) ]).then(() => { this.reset(); resolve(); }, util.noop); return promise; }, cancel() { return util.Transition.cancel([next, prev]); }, reset() { util.resetProps([next, prev], props[0]); }, async forward(duration, percent2 = this.percent()) { await this.cancel(); return this.show(duration, percent2, true); }, translate(percent2) { this.reset(); const props2 = translate(percent2, dir); util.css(next, props2[1]); util.css(prev, props2[0]); triggerUpdate(next, "itemtranslatein", { percent: percent2, dir }); triggerUpdate(prev, "itemtranslateout", { percent: 1 - percent2, dir }); }, percent() { return percent(prev || next, next, dir); }, getDistance() { return prev == null ? void 0 : prev.offsetWidth; } }; } function triggerUpdate(el, type, data) { util.trigger(el, util.createEvent(type, false, false, data)); } function withResolvers() { let resolve; return { promise: new Promise((res) => resolve = res), resolve }; } var I18n = { props: { i18n: Object }, data: { i18n: null }, methods: { t(key, ...params) { var _a, _b, _c; let i = 0; return ((_c = ((_a = this.i18n) == null ? void 0 : _a[key]) || ((_b = this.$options.i18n) == null ? void 0 : _b[key])) == null ? void 0 : _c.replace( /%s/g, () => params[i++] || "" )) || ""; } } }; var SliderAutoplay = { props: { autoplay: Boolean, autoplayInterval: Number, pauseOnHover: Boolean }, data: { autoplay: false, autoplayInterval: 7e3, pauseOnHover: true }, connected() { util.attr(this.list, "aria-live", this.autoplay ? "off" : "polite"); this.autoplay && this.startAutoplay(); }, disconnected() { this.stopAutoplay(); }, update() { util.attr(this.slides, "tabindex", "-1"); }, events: [ { name: "visibilitychange", el: () => document, filter: ({ autoplay }) => autoplay, handler() { if (document.hidden) { this.stopAutoplay(); } else { this.startAutoplay(); } } } ], methods: { startAutoplay() { this.stopAutoplay(); this.interval = setInterval(() => { if (!(this.stack.length || !util.isVisible(this.$el) || this.draggable && util.matches(this.$el, ":focus-within") && !util.matches(this.$el, ":focus") || this.pauseOnHover && util.matches(this.$el, ":hover"))) { this.show("next"); } }, this.autoplayInterval); }, stopAutoplay() { clearInterval(this.interval); } } }; const pointerOptions = { passive: false, capture: true }; const pointerUpOptions = { passive: true, capture: true }; const pointerDown = "touchstart mousedown"; const pointerMove = "touchmove mousemove"; const pointerUp = "touchend touchcancel mouseup click input scroll"; var SliderDrag = { props: { draggable: Boolean }, data: { draggable: true, threshold: 10 }, created() { for (const key of ["start", "move", "end"]) { const fn = this[key]; this[key] = (e) => { const pos = util.getEventPos(e).x * (util.isRtl ? -1 : 1); this.prevPos = pos === this.pos ? this.prevPos : this.pos; this.pos = pos; fn(e); }; } }, events: [ { name: pointerDown, passive: true, delegate: ({ selList }) => `${selList} > *`, handler(e) { if (!this.draggable || this.parallax || !util.isTouch(e) && hasSelectableText(e.target) || e.target.closest(util.selInput) || e.button > 0 || this.length < 2) { return; } this.start(e); } }, { name: "dragstart", handler(e) { e.preventDefault(); } }, { // iOS workaround for slider stopping if swiping fast name: pointerMove, el: ({ list }) => list, handler: util.noop, ...pointerOptions } ], methods: { start() { this.drag = this.pos; if (this._transitioner) { this.percent = this._transitioner.percent(); this.drag += this._transitioner.getDistance() * this.percent * this.dir; this._transitioner.cancel(); this._transitioner.translate(this.percent); this.dragging = true; this.stack = []; } else { this.prevIndex = this.index; } util.on(document, pointerMove, this.move, pointerOptions); util.on(document, pointerUp, this.end, pointerUpOptions); util.css(this.list, "userSelect", "none"); }, move(e) { const distance = this.pos - this.drag; if (distance === 0 || this.prevPos === this.pos || !this.dragging && Math.abs(distance) < this.threshold) { return; } e.cancelable && e.preventDefault(); this.dragging = true; this.dir = distance < 0 ? 1 : -1; let { slides, prevIndex } = this; let dis = Math.abs(distance); let nextIndex = this.getIndex(prevIndex + this.dir); let width = getDistance.call(this, prevIndex, nextIndex); while (nextIndex !== prevIndex && dis > width) { this.drag -= width * this.dir; prevIndex = nextIndex; dis -= width; nextIndex = this.getIndex(prevIndex + this.dir); width = getDistance.call(this, prevIndex, nextIndex); } this.percent = dis / width; const prev = slides[prevIndex]; const next = slides[nextIndex]; const changed = this.index !== nextIndex; const edge = prevIndex === nextIndex; let itemShown; for (const i of [this.index, this.prevIndex]) { if (!util.includes([nextIndex, prevIndex], i)) { util.trigger(slides[i], "itemhidden", [this]); if (edge) { itemShown = true; this.prevIndex = prevIndex; } } } if (this.index === prevIndex && this.prevIndex !== prevIndex || itemShown) { util.trigger(slides[this.index], "itemshown", [this]); } if (changed) { this.prevIndex = prevIndex; this.index = nextIndex; if (!edge) { util.trigger(prev, "beforeitemhide", [this]); util.trigger(prev, "itemhide", [this]); } util.trigger(next, "beforeitemshow", [this]); util.trigger(next, "itemshow", [this]); } this._transitioner = this._translate(Math.abs(this.percent), prev, !edge && next); }, end() { util.off(document, pointerMove, this.move, pointerOptions); util.off(document, pointerUp, this.end, pointerUpOptions); if (this.dragging) { setTimeout(util.on(this.list, "click", (e) => e.preventDefault(), pointerOptions)); this.dragging = null; if (this.index === this.prevIndex) { this.percent = 1 - this.percent; this.dir *= -1; this._show(false, this.index, true); this._transitioner = null; } else { const dirChange = (util.isRtl ? this.dir * (util.isRtl ? 1 : -1) : this.dir) < 0 === this.prevPos > this.pos; this.index = dirChange ? this.index : this.prevIndex; if (dirChange) { util.trigger(this.slides[this.prevIndex], "itemhidden", [this]); util.trigger(this.slides[this.index], "itemshown", [this]); this.percent = 1 - this.percent; } this.show( this.dir > 0 && !dirChange || this.dir < 0 && dirChange ? "next" : "previous", true ); } } util.css(this.list, { userSelect: "" }); this.drag = this.percent = null; } } }; function getDistance(prev, next) { return this._getTransitioner(prev, prev !== next && next).getDistance() || this.slides[prev].offsetWidth; } function hasSelectableText(el) { return util.css(el, "userSelect") !== "none" && util.toArray(el.childNodes).some((el2) => el2.nodeType === 3 && el2.textContent.trim()); } util.memoize((id, props) => { const attributes = Object.keys(props); const filter = attributes.concat(id).map((key) => [util.hyphenate(key), `data-${util.hyphenate(key)}`]).flat(); return { attributes, filter }; }); let id = 1; function generateId(instance, el = null) { return (el == null ? void 0 : el.id) || `${instance.$options.id}-${id++}`; } const keyMap = { SPACE: 32, END: 35, HOME: 36, LEFT: 37, RIGHT: 39}; function maybeDefaultPreventClick(e) { if (e.target.closest('a[href="#"],a[href=""]')) { e.preventDefault(); } } var SliderNav = { i18n: { next: "Next slide", previous: "Previous slide", slideX: "Slide %s", slideLabel: "%s of %s", role: "String" }, data: { selNav: false, role: "region" }, computed: { nav: ({ selNav }, $el) => util.$(selNav, $el), navChildren() { return util.children(this.nav); }, selNavItem: ({ attrItem }) => `[${attrItem}],[data-${attrItem}]`, navItems(_, $el) { return util.$$(this.selNavItem, $el); } }, watch: { nav(nav, prev) { util.attr(nav, "role", "tablist"); this.padNavitems(); if (prev) { this.$emit(); } }, list(list) { if (util.isTag(list, "ul")) { util.attr(list, "role", "presentation"); } }, navChildren(children2) { util.attr(children2, "role", "presentation"); this.padNavitems(); this.updateNav(); }, navItems(items) { for (const el of items) { const cmd = util.data(el, this.attrItem); const button = util.$("a,button", el) || el; let ariaLabel; let ariaControls = null; if (util.isNumeric(cmd)) { const item = util.toNumber(cmd); const slide = this.slides[item]; if (slide) { if (!slide.id) { slide.id = generateId(this, slide); } ariaControls = slide.id; } ariaLabel = this.t("slideX", util.toFloat(cmd) + 1); button.role = "tab"; } else { if (this.list) { if (!this.list.id) { this.list.id = generateId(this, this.list); } ariaControls = this.list.id; } ariaLabel = this.t(cmd); } button.ariaControls = ariaControls; button.ariaLabel = button.ariaLabel || ariaLabel; } }, slides(slides) { slides.forEach( (slide, i) => util.attr(slide, { role: this.nav ? "tabpanel" : "group", "aria-label": this.t("slideLabel", i + 1, this.length), "aria-roledescription": this.nav ? null : "slide" }) ); this.padNavitems(); } }, connected() { this.$el.role = this.role; this.$el.ariaRoleDescription = "carousel"; }, update: [ { write() { this.navItems.concat(this.nav).forEach((el) => el && (el.hidden = !this.maxIndex)); this.updateNav(); }, events: ["resize"] } ], events: [ { name: "click keydown", delegate: ({ selNavItem }) => selNavItem, filter: ({ parallax }) => !parallax, handler(e) { if (e.target.closest("a,button") && (e.type === "click" || e.keyCode === keyMap.SPACE)) { maybeDefaultPreventClick(e); this.show(util.data(e.current, this.attrItem)); } } }, { name: "itemshow", handler() { this.updateNav(); } }, { name: "keydown", delegate: ({ selNavItem }) => selNavItem, filter: ({ parallax }) => !parallax, handler(e) { const { current, keyCode } = e; const cmd = util.data(current, this.attrItem); if (!util.isNumeric(cmd)) { return; } let i = keyCode === keyMap.HOME ? 0 : keyCode === keyMap.END ? "last" : keyCode === keyMap.LEFT ? "previous" : keyCode === keyMap.RIGHT ? "next" : -1; if (~i) { e.preventDefault(); this.show(i); } } } ], methods: { updateNav() { const index = this.getValidIndex(); for (const el of this.navItems) { const cmd = util.data(el, this.attrItem); const button = util.$("a,button", el) || el; if (util.isNumeric(cmd)) { const item = util.toNumber(cmd); const active = item === index; util.toggleClass(el, this.clsActive, active); util.toggleClass(button, "uk-disabled", !!this.parallax); button.ariaSelected = active; button.tabIndex = active && !this.parallax ? null : -1; if (active && button && util.matches(util.parent(el), ":focus-within")) { button.focus(); } } else { util.toggleClass( el, "uk-invisible", this.finite && (cmd === "previous" && index === 0 || cmd === "next" && index >= this.maxIndex) ); } } }, padNavitems() { if (!this.nav) { return; } const children2 = []; for (let i = 0; i < this.length; i++) { const attr2 = `${this.attrItem}="${i}"`; children2[i] = this.navChildren.findLast((el) => el.matches(`[${attr2}]`)) || util.$(`<li ${attr2}><a href></a></li>`); } if (!util.isEqual(children2, this.navChildren)) { util.html(this.nav, children2); } } } }; const easeOutQuad = "cubic-bezier(0.25, 0.46, 0.45, 0.94)"; const easeOutQuart = "cubic-bezier(0.165, 0.84, 0.44, 1)"; var Slider = { mixins: [SliderAutoplay, SliderDrag, SliderNav, I18n], props: { clsActivated: String, easing: String, index: Number, finite: Boolean, velocity: Number }, data: () => ({ easing: "ease", finite: false, velocity: 1, index: 0, prevIndex: -1, stack: [], percent: 0, clsActive: "uk-active", clsActivated: "", clsEnter: "uk-slide-enter", clsLeave: "uk-slide-leave", clsSlideActive: "uk-slide-active", Transitioner: false, transitionOptions: {} }), connected() { this.prevIndex = -1; this.index = this.getValidIndex(this.$props.index); this.stack = []; }, disconnected() { util.removeClass(this.slides, this.clsActive); }, computed: { duration: ({ velocity }, $el) => speedUp($el.offsetWidth / velocity), list: ({ selList }, $el) => util.$(selList, $el), maxIndex() { return this.length - 1; }, slides() { return util.children(this.list); }, length() { return this.slides.length; } }, watch: { slides(slides, prev) { if (prev) { this.$emit(); } } }, events: { itemshow({ target }) { util.addClass(target, this.clsEnter, this.clsSlideActive); }, itemshown({ target }) { util.removeClass(target, this.clsEnter); }, itemhide({ target }) { util.addClass(target, this.clsLeave); }, itemhidden({ target }) { util.removeClass(target, this.clsLeave, this.clsSlideActive); } }, methods: { async show(index, force = false) { var _a; if (this.dragging || !this.length || this.parallax) { return; } const { stack } = this; const queueIndex = force ? 0 : stack.length; const reset = () => { stack.splice(queueIndex, 1); if (stack.length) { this.show(stack.shift(), true); } }; stack[force ? "unshift" : "push"](index); if (!force && stack.length > 1) { if (stack.length === 2) { (_a = this._transitioner) == null ? void 0 : _a.forward(Math.min(this.duration, 200)); } return; } const prevIndex = this.getIndex(this.index); const prev = util.hasClass(this.slides, this.clsActive) && this.slides[prevIndex]; const nextIndex = this.getIndex(index, this.index); const next = this.slides[nextIndex]; if (prev === next) { reset(); return; } this.dir = getDirection(index, prevIndex); this.prevIndex = prevIndex; this.index = nextIndex; if (prev && !util.trigger(prev, "beforeitemhide", [this]) || !util.trigger(next, "beforeitemshow", [this, prev])) { this.index = this.prevIndex; reset(); return; } prev && util.trigger(prev, "itemhide", [this]); util.trigger(next, "itemshow", [this]); await this._show(prev, next, force); prev && util.trigger(prev, "itemhidden", [this]); util.trigger(next, "itemshown", [this]); stack.shift(); this._transitioner = null; if (stack.length) { requestAnimationFrame(() => stack.length && this.show(stack.shift(), true)); } }, getIndex(index = this.index, prev = this.index) { return util.clamp( util.getIndex(index, this.slides, prev, this.finite), 0, Math.max(0, this.maxIndex) ); }, getValidIndex(index = this.index, prevIndex = this.prevIndex) { return this.getIndex(index, prevIndex); }, async _show(prev, next, force) { this._transitioner = this._getTransitioner(prev, next, this.dir, { easing: force ? next.offsetWidth < 600 ? easeOutQuad : easeOutQuart : this.easing, ...this.transitionOptions }); if (!force && !prev) { this._translate(1); return; } const { length } = this.stack; return this._transitioner[length > 1 ? "forward" : "show"]( length > 1 ? Math.min(this.duration, 75 + 75 / (length - 1)) : this.duration, this.percent ); }, _translate(percent, prev = this.prevIndex, next = this.index) { const transitioner = this._getTransitioner(prev === next ? false : prev, next); transitioner.translate(percent); return transitioner; }, _getTransitioner(prev = this.prevIndex, next = this.index, dir = this.dir || 1, options = this.transitionOptions) { return new this.Transitioner( util.isNumber(prev) ? this.slides[prev] : prev, util.isNumber(next) ? this.slides[next] : next, dir * (util.isRtl ? -1 : 1), options ); } } }; function getDirection(index, prevIndex) { return index === "next" ? 1 : index === "previous" ? -1 : index < prevIndex ? -1 : 1; } function speedUp(x) { return 0.5 * x + 300; } var Slideshow = { mixins: [Slider], props: { animation: String }, data: { animation: "slide", clsActivated: "uk-transition-active", Animations: Animations$1, Transitioner }, computed: { animation({ animation, Animations: Animations2 }) { return { ...Animations2[animation] || Animations2.slide, name: animation }; }, transitionOptions() { return { animation: this.animation }; } }, observe: resize(), events: { itemshow({ target }) { util.addClass(target, this.clsActive); }, itemshown({ target }) { util.addClass(target, this.clsActivated); }, itemhidden({ target }) { util.removeClass(target, this.clsActive, this.clsActivated); } } }; var SliderPreload = { observe: lazyload({ target: ({ slides }) => slides, targets: (instance) => instance.getAdjacentSlides() }), methods: { getAdjacentSlides() { return [1, -1].map((i) => this.slides[this.getIndex(this.index + i)]); } } }; var Animations = { ...Animations$1, fade: { show() { return [{ opacity: 0, zIndex: 0 }, { zIndex: -1 }]; }, percent(current) { return 1 - util.css(current, "opacity"); }, translate(percent) { return [{ opacity: 1 - percent, zIndex: 0 }, { zIndex: -1 }]; } }, scale: { show() { return [{ opacity: 0, transform: scale3d(1 + 0.5), zIndex: 0 }, { zIndex: -1 }]; }, percent(current) { return 1 - util.css(current, "opacity"); }, translate(percent) { return [ { opacity: 1 - percent, transform: scale3d(1 + 0.5 * percent), zIndex: 0 }, { zIndex: -1 } ]; } }, pull: { show(dir) { return dir < 0 ? [ { transform: translate(30), zIndex: -1 }, { transform: translate(), zIndex: 0 } ] : [ { transform: translate(-100), zIndex: 0 }, { transform: translate(), zIndex: -1 } ]; }, percent(current, next, dir) { return dir < 0 ? 1 - translated(next) : translated(current); }, translate(percent, dir) { return dir < 0 ? [ { transform: translate(30 * percent), zIndex: -1 }, { transform: translate(-100 * (1 - percent)), zIndex: 0 } ] : [ { transform: translate(-percent * 100), zIndex: 0 }, { transform: translate(30 * (1 - percent)), zIndex: -1 } ]; } }, push: { show(dir) { return dir < 0 ? [ { transform: translate(100), zIndex: 0 }, { transform: translate(), zIndex: -1 } ] : [ { transform: translate(-30), zIndex: -1 }, { transform: translate(), zIndex: 0 } ]; }, percent(current, next, dir) { return dir > 0 ? 1 - translated(next) : translated(current); }, translate(percent, dir) { return dir < 0 ? [ { transform: translate(percent * 100), zIndex: 0 }, { transform: translate(-30 * (1 - percent)), zIndex: -1 } ] : [ { transform: translate(-30 * percent), zIndex: -1 }, { transform: translate(100 * (1 - percent)), zIndex: 0 } ]; } } }; function scale3d(value) { return `scale3d(${value}, ${value}, 1)`; } var Component = { mixins: [Class, Slideshow, SliderReactive, SliderParallax, SliderPreload], props: { ratio: String, minHeight: String, maxHeight: String }, data: { ratio: "16:9", minHeight: void 0, maxHeight: void 0, selList: ".uk-slideshow-items", attrItem: "uk-slideshow-item", selNav: ".uk-slideshow-nav", Animations }, watch: { list(list) { util.css(list, { aspectRatio: this.ratio ? this.ratio.replace(":", "/") : void 0, minHeight: this.minHeight, maxHeight: this.maxHeight, width: "100%" }); } }, methods: { getAdjacentSlides() { return [1, -1].map((i) => this.slides[this.getIndex(this.index + i)]); } } }; if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("slideshow", Component); } return Component; })); assets/uikit/dist/js/components/lightbox-panel.js000064400000156144151666572350016245 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitlightbox_panel', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitLightbox_panel = factory(global.UIkit.util)); })(this, (function (util) { 'use strict'; function callUpdate(instance, e = "update") { if (!instance._connected) { return; } if (!instance._updates.length) { return; } if (!instance._updateCount) { instance._updateCount = 0; requestAnimationFrame(() => instance._updateCount = 0); } if (!instance._queued) { instance._queued = /* @__PURE__ */ new Set(); util.fastdom.read(() => { if (instance._connected) { runUpdates(instance, instance._queued); } instance._queued = null; }); } if (instance._updateCount++ < 20) { instance._queued.add(e.type || e); } } function runUpdates(instance, types) { for (const { read, write, events = [] } of instance._updates) { if (!types.has("update") && !events.some((type) => types.has(type))) { continue; } let result; if (read) { result = read.call(instance, instance._data, types); if (result && util.isPlainObject(result)) { util.assign(instance._data, result); } } if (write && result !== false) { util.fastdom.write(() => { if (instance._connected) { write.call(instance, instance._data, types); } }); } } } function resize(options) { return observe(util.observeResize, options, "resize"); } function intersection(options) { return observe(util.observeIntersection, options); } function observe(observe2, options, emit) { return { observe: observe2, handler() { callUpdate(this, emit); }, ...options }; } function parseOptions(options, args = []) { try { return options ? util.startsWith(options, "{") ? JSON.parse(options) : args.length && !util.includes(options, ":") ? { [args[0]]: options } : options.split(";").reduce((options2, option) => { const [key, value] = option.split(/:(.*)/); if (key && !util.isUndefined(value)) { options2[key.trim()] = value.trim(); } return options2; }, {}) : {}; } catch (e) { return {}; } } ({ observe: intersection({ handler(entries, observer) { this.load(); observer.disconnect(); }, options: ({ margin }) => ({ rootMargin: margin }), filter: ({ loading }) => loading === "lazy", target: ({ $el, $props }) => $props.target ? [$el, ...util.queryAll($props.target, $el)] : $el })}); function wrapInPicture(img, sources) { sources = parseSources(sources); if (sources.length) { const picture = util.fragment("<picture>"); for (const attrs of sources) { const source = util.fragment("<source>"); util.attr(source, attrs); util.append(picture, source); } util.append(picture, img); } } function parseSources(sources) { if (!sources) { return []; } if (util.startsWith(sources, "[")) { try { sources = JSON.parse(sources); } catch (e) { sources = []; } } else { sources = parseOptions(sources); } if (!util.isArray(sources)) { sources = [sources]; } return sources.filter((source) => !util.isEmpty(source)); } let prevented; function preventBackgroundScroll(el) { const off = util.on( el, "touchstart", (e) => { if (e.targetTouches.length !== 1 || util.matches(e.target, 'input[type="range"')) { return; } let prev = util.getEventPos(e).y; const offMove = util.on( el, "touchmove", (e2) => { const pos = util.getEventPos(e2).y; if (pos === prev) { return; } prev = pos; if (!util.scrollParents(e2.target).some((scrollParent) => { if (!el.contains(scrollParent)) { return false; } let { scrollHeight, clientHeight } = scrollParent; return clientHeight < scrollHeight; })) { e2.preventDefault(); } }, { passive: false } ); util.once(el, "scroll touchend touchcanel", offMove, { capture: true }); }, { passive: true } ); if (prevented) { return off; } prevented = true; const { scrollingElement } = document; const props = { overflowY: CSS.supports("overflow", "clip") ? "clip" : "hidden", touchAction: "none", paddingRight: util.width(window) - scrollingElement.clientWidth || "" }; util.css(scrollingElement, props); return () => { prevented = false; off(); util.resetProps(scrollingElement, props); }; } var Class = { connected() { util.addClass(this.$el, this.$options.id); } }; var Container = { props: { container: Boolean }, data: { container: true }, computed: { container({ container }) { return container === true && this.$container || container && util.$(container); } } }; function maybeDefaultPreventClick(e) { if (e.target.closest('a[href="#"],a[href=""]')) { e.preventDefault(); } } function storeScrollPosition(element) { const scrollElement = util.scrollParent(element); const { scrollTop } = scrollElement; return () => { if (scrollTop !== scrollElement.scrollTop) { scrollElement.scrollTop = scrollTop; } }; } var Togglable = { props: { cls: Boolean, animation: "list", duration: Number, velocity: Number, origin: String, transition: String }, data: { cls: false, animation: [false], duration: 200, velocity: 0.2, origin: false, transition: "ease", clsEnter: "uk-togglable-enter", clsLeave: "uk-togglable-leave" }, computed: { hasAnimation: ({ animation }) => !!animation[0], hasTransition: ({ animation }) => ["slide", "reveal"].some((transition) => util.startsWith(animation[0], transition)) }, methods: { async toggleElement(targets, toggle, animate) { try { await Promise.all( util.toNodes(targets).map((el) => { const show = util.isBoolean(toggle) ? toggle : !this.isToggled(el); if (!util.trigger(el, `before${show ? "show" : "hide"}`, [this])) { return Promise.reject(); } const promise = (util.isFunction(animate) ? animate : animate === false || !this.hasAnimation ? toggleInstant : this.hasTransition ? toggleTransition : toggleAnimation)(el, show, this); const cls = show ? this.clsEnter : this.clsLeave; util.addClass(el, cls); util.trigger(el, show ? "show" : "hide", [this]); const done = () => { var _a; util.removeClass(el, cls); util.trigger(el, show ? "shown" : "hidden", [this]); if (show) { const restoreScrollPosition = storeScrollPosition(el); (_a = util.$$("[autofocus]", el).find(util.isVisible)) == null ? void 0 : _a.focus(); restoreScrollPosition(); } }; return promise ? promise.then(done, () => { util.removeClass(el, cls); return Promise.reject(); }) : done(); }) ); return true; } catch (e) { return false; } }, isToggled(el = this.$el) { el = util.toNode(el); return util.hasClass(el, this.clsEnter) ? true : util.hasClass(el, this.clsLeave) ? false : this.cls ? util.hasClass(el, this.cls.split(" ")[0]) : util.isVisible(el); }, _toggle(el, toggled) { if (!el) { return; } toggled = Boolean(toggled); let changed; if (this.cls) { changed = util.includes(this.cls, " ") || toggled !== util.hasClass(el, this.cls); changed && util.toggleClass(el, this.cls, util.includes(this.cls, " ") ? void 0 : toggled); } else { changed = toggled === el.hidden; changed && (el.hidden = !toggled); } if (changed) { util.trigger(el, "toggled", [toggled, this]); } } } }; function toggleInstant(el, show, { _toggle }) { util.Animation.cancel(el); util.Transition.cancel(el); return _toggle(el, show); } async function toggleTransition(el, show, { animation, duration, velocity, transition, _toggle }) { var _a; const [mode = "reveal", startProp = "top"] = ((_a = animation[0]) == null ? void 0 : _a.split("-")) || []; const dirs = [ ["left", "right"], ["top", "bottom"] ]; const dir = dirs[util.includes(dirs[0], startProp) ? 0 : 1]; const end = dir[1] === startProp; const props = ["width", "height"]; const dimProp = props[dirs.indexOf(dir)]; const marginProp = `margin-${dir[0]}`; const marginStartProp = `margin-${startProp}`; let currentDim = util.dimensions(el)[dimProp]; const inProgress = util.Transition.inProgress(el); await util.Transition.cancel(el); if (show) { _toggle(el, true); } const prevProps = Object.fromEntries( [ "padding", "border", "width", "height", "minWidth", "minHeight", "overflowY", "overflowX", marginProp, marginStartProp ].map((key) => [key, el.style[key]]) ); const dim = util.dimensions(el); const currentMargin = util.toFloat(util.css(el, marginProp)); const marginStart = util.toFloat(util.css(el, marginStartProp)); const endDim = dim[dimProp] + marginStart; if (!inProgress && !show) { currentDim += marginStart; } const [wrapper] = util.wrapInner(el, "<div>"); util.css(wrapper, { boxSizing: "border-box", height: dim.height, width: dim.width, ...util.css(el, [ "overflow", "padding", "borderTop", "borderRight", "borderBottom", "borderLeft", "borderImage", marginStartProp ]) }); util.css(el, { padding: 0, border: 0, minWidth: 0, minHeight: 0, [marginStartProp]: 0, width: dim.width, height: dim.height, overflow: "hidden", [dimProp]: currentDim }); const percent = currentDim / endDim; duration = (velocity * endDim + duration) * (show ? 1 - percent : percent); const endProps = { [dimProp]: show ? endDim : 0 }; if (end) { util.css(el, marginProp, endDim - currentDim + currentMargin); endProps[marginProp] = show ? currentMargin : endDim + currentMargin; } if (!end ^ mode === "reveal") { util.css(wrapper, marginProp, -endDim + currentDim); util.Transition.start(wrapper, { [marginProp]: show ? 0 : -endDim }, duration, transition); } try { await util.Transition.start(el, endProps, duration, transition); } finally { util.css(el, prevProps); util.unwrap(wrapper.firstChild); if (!show) { _toggle(el, false); } } } function toggleAnimation(el, show, cmp) { const { animation, duration, _toggle } = cmp; if (show) { _toggle(el, true); return util.Animation.in(el, animation[0], duration, cmp.origin); } return util.Animation.out(el, animation[1] || animation[0], duration, cmp.origin).then( () => _toggle(el, false) ); } const active = []; var Modal = { mixins: [Class, Container, Togglable], props: { selPanel: String, selClose: String, escClose: Boolean, bgClose: Boolean, stack: Boolean, role: String }, data: { cls: "uk-open", escClose: true, bgClose: true, overlay: true, stack: false, role: "dialog" }, computed: { panel: ({ selPanel }, $el) => util.$(selPanel, $el), transitionElement() { return this.panel; } }, connected() { const el = this.panel || this.$el; el.role = this.role; if (this.overlay) { el.ariaModal = true; } }, beforeDisconnect() { if (util.includes(active, this)) { this.toggleElement(this.$el, false, false); } }, events: [ { name: "click", delegate: ({ selClose }) => `${selClose},a[href*="#"]`, handler(e) { const { current, defaultPrevented } = e; const { hash } = current; if (!defaultPrevented && hash && util.isSameSiteAnchor(current) && !this.$el.contains(util.$(hash))) { this.hide(); } else if (util.matches(current, this.selClose)) { maybeDefaultPreventClick(e); this.hide(); } } }, { name: "toggle", self: true, handler(e, toggle) { if (e.defaultPrevented) { return; } e.preventDefault(); this.target = toggle == null ? void 0 : toggle.$el; if (this.isToggled() === util.includes(active, this)) { this.toggle(); } } }, { name: "beforeshow", self: true, handler(e) { if (util.includes(active, this)) { return false; } if (!this.stack && active.length) { Promise.all(active.map((modal) => modal.hide())).then(this.show); e.preventDefault(); } else { active.push(this); } } }, { name: "show", self: true, handler() { if (this.stack) { util.css(this.$el, "zIndex", util.toFloat(util.css(this.$el, "zIndex")) + active.length); } const handlers = [ this.overlay && preventBackgroundFocus(this), this.overlay && preventBackgroundScroll(this.$el), this.bgClose && listenForBackgroundClose(this), this.escClose && listenForEscClose(this) ]; util.once( this.$el, "hidden", () => handlers.forEach((handler) => handler && handler()), { self: true } ); util.addClass(document.documentElement, this.clsPage); setAriaExpanded(this.target, true); } }, { name: "shown", self: true, handler() { if (!util.isFocusable(this.$el)) { this.$el.tabIndex = -1; } if (!util.matches(this.$el, ":focus-within")) { this.$el.focus(); } } }, { name: "hidden", self: true, handler() { if (util.includes(active, this)) { active.splice(active.indexOf(this), 1); } util.css(this.$el, "zIndex", ""); const { target } = this; if (!active.some((modal) => modal.clsPage === this.clsPage)) { util.removeClass(document.documentElement, this.clsPage); queueMicrotask(() => { if (util.isFocusable(target)) { const restoreScrollPosition = storeScrollPosition(target); target.focus(); restoreScrollPosition(); } }); } setAriaExpanded(target, false); this.target = null; } } ], methods: { toggle() { return this.isToggled() ? this.hide() : this.show(); }, show() { if (this.container && util.parent(this.$el) !== this.container) { util.append(this.container, this.$el); return new Promise( (resolve) => requestAnimationFrame(() => this.show().then(resolve)) ); } return this.toggleElement(this.$el, true, animate); }, hide() { return this.toggleElement(this.$el, false, animate); } } }; function animate(el, show, { transitionElement, _toggle }) { return new Promise( (resolve, reject) => util.once(el, "show hide", () => { var _a; (_a = el._reject) == null ? void 0 : _a.call(el); el._reject = reject; _toggle(el, show); const off = util.once( transitionElement, "transitionstart", () => { util.once(transitionElement, "transitionend transitioncancel", resolve, { self: true }); clearTimeout(timer); }, { self: true } ); const timer = setTimeout( () => { off(); resolve(); }, toMs(util.css(transitionElement, "transitionDuration")) ); }) ).then(() => delete el._reject); } function toMs(time) { return time ? util.endsWith(time, "ms") ? util.toFloat(time) : util.toFloat(time) * 1e3 : 0; } function preventBackgroundFocus(modal) { return util.on(document, "focusin", (e) => { if (util.last(active) === modal && !modal.$el.contains(e.target)) { modal.$el.focus(); } }); } function listenForBackgroundClose(modal) { return util.on(document, util.pointerDown, ({ target }) => { if (util.last(active) !== modal || modal.overlay && !modal.$el.contains(target) || !modal.panel || modal.panel.contains(target)) { return; } util.once( document, `${util.pointerUp} ${util.pointerCancel} scroll`, ({ defaultPrevented, type, target: newTarget }) => { if (!defaultPrevented && type === util.pointerUp && target === newTarget) { modal.hide(); } }, true ); }); } function listenForEscClose(modal) { return util.on(document, "keydown", (e) => { if (e.keyCode === 27 && util.last(active) === modal) { modal.hide(); } }); } function setAriaExpanded(el, toggled) { if (el == null ? void 0 : el.ariaExpanded) { el.ariaExpanded = toggled; } } var Animations$1 = { slide: { show(dir) { return [{ transform: translate(dir * -100) }, { transform: translate() }]; }, percent(current) { return translated(current); }, translate(percent, dir) { return [ { transform: translate(dir * -100 * percent) }, { transform: translate(dir * 100 * (1 - percent)) } ]; } } }; function translated(el) { return Math.abs(new DOMMatrix(util.css(el, "transform")).m41 / el.offsetWidth); } function translate(value = 0, unit = "%") { return value ? `translate3d(${value + unit}, 0, 0)` : ""; } function Transitioner(prev, next, dir, { animation, easing }) { const { percent, translate, show = util.noop } = animation; const props = show(dir); const { promise, resolve } = withResolvers(); return { dir, show(duration, percent2 = 0, linear) { const timing = linear ? "linear" : easing; duration -= Math.round(duration * util.clamp(percent2, -1, 1)); this.translate(percent2); triggerUpdate(next, "itemin", { percent: percent2, duration, timing, dir }); triggerUpdate(prev, "itemout", { percent: 1 - percent2, duration, timing, dir }); Promise.all([ util.Transition.start(next, props[1], duration, timing), util.Transition.start(prev, props[0], duration, timing) ]).then(() => { this.reset(); resolve(); }, util.noop); return promise; }, cancel() { return util.Transition.cancel([next, prev]); }, reset() { util.resetProps([next, prev], props[0]); }, async forward(duration, percent2 = this.percent()) { await this.cancel(); return this.show(duration, percent2, true); }, translate(percent2) { this.reset(); const props2 = translate(percent2, dir); util.css(next, props2[1]); util.css(prev, props2[0]); triggerUpdate(next, "itemtranslatein", { percent: percent2, dir }); triggerUpdate(prev, "itemtranslateout", { percent: 1 - percent2, dir }); }, percent() { return percent(prev || next, next, dir); }, getDistance() { return prev == null ? void 0 : prev.offsetWidth; } }; } function triggerUpdate(el, type, data) { util.trigger(el, util.createEvent(type, false, false, data)); } function withResolvers() { let resolve; return { promise: new Promise((res) => resolve = res), resolve }; } var I18n = { props: { i18n: Object }, data: { i18n: null }, methods: { t(key, ...params) { var _a, _b, _c; let i = 0; return ((_c = ((_a = this.i18n) == null ? void 0 : _a[key]) || ((_b = this.$options.i18n) == null ? void 0 : _b[key])) == null ? void 0 : _c.replace( /%s/g, () => params[i++] || "" )) || ""; } } }; var SliderAutoplay = { props: { autoplay: Boolean, autoplayInterval: Number, pauseOnHover: Boolean }, data: { autoplay: false, autoplayInterval: 7e3, pauseOnHover: true }, connected() { util.attr(this.list, "aria-live", this.autoplay ? "off" : "polite"); this.autoplay && this.startAutoplay(); }, disconnected() { this.stopAutoplay(); }, update() { util.attr(this.slides, "tabindex", "-1"); }, events: [ { name: "visibilitychange", el: () => document, filter: ({ autoplay }) => autoplay, handler() { if (document.hidden) { this.stopAutoplay(); } else { this.startAutoplay(); } } } ], methods: { startAutoplay() { this.stopAutoplay(); this.interval = setInterval(() => { if (!(this.stack.length || !util.isVisible(this.$el) || this.draggable && util.matches(this.$el, ":focus-within") && !util.matches(this.$el, ":focus") || this.pauseOnHover && util.matches(this.$el, ":hover"))) { this.show("next"); } }, this.autoplayInterval); }, stopAutoplay() { clearInterval(this.interval); } } }; const pointerOptions = { passive: false, capture: true }; const pointerUpOptions = { passive: true, capture: true }; const pointerDown = "touchstart mousedown"; const pointerMove = "touchmove mousemove"; const pointerUp = "touchend touchcancel mouseup click input scroll"; var SliderDrag = { props: { draggable: Boolean }, data: { draggable: true, threshold: 10 }, created() { for (const key of ["start", "move", "end"]) { const fn = this[key]; this[key] = (e) => { const pos = util.getEventPos(e).x * (util.isRtl ? -1 : 1); this.prevPos = pos === this.pos ? this.prevPos : this.pos; this.pos = pos; fn(e); }; } }, events: [ { name: pointerDown, passive: true, delegate: ({ selList }) => `${selList} > *`, handler(e) { if (!this.draggable || this.parallax || !util.isTouch(e) && hasSelectableText(e.target) || e.target.closest(util.selInput) || e.button > 0 || this.length < 2) { return; } this.start(e); } }, { name: "dragstart", handler(e) { e.preventDefault(); } }, { // iOS workaround for slider stopping if swiping fast name: pointerMove, el: ({ list }) => list, handler: util.noop, ...pointerOptions } ], methods: { start() { this.drag = this.pos; if (this._transitioner) { this.percent = this._transitioner.percent(); this.drag += this._transitioner.getDistance() * this.percent * this.dir; this._transitioner.cancel(); this._transitioner.translate(this.percent); this.dragging = true; this.stack = []; } else { this.prevIndex = this.index; } util.on(document, pointerMove, this.move, pointerOptions); util.on(document, pointerUp, this.end, pointerUpOptions); util.css(this.list, "userSelect", "none"); }, move(e) { const distance = this.pos - this.drag; if (distance === 0 || this.prevPos === this.pos || !this.dragging && Math.abs(distance) < this.threshold) { return; } e.cancelable && e.preventDefault(); this.dragging = true; this.dir = distance < 0 ? 1 : -1; let { slides, prevIndex } = this; let dis = Math.abs(distance); let nextIndex = this.getIndex(prevIndex + this.dir); let width = getDistance.call(this, prevIndex, nextIndex); while (nextIndex !== prevIndex && dis > width) { this.drag -= width * this.dir; prevIndex = nextIndex; dis -= width; nextIndex = this.getIndex(prevIndex + this.dir); width = getDistance.call(this, prevIndex, nextIndex); } this.percent = dis / width; const prev = slides[prevIndex]; const next = slides[nextIndex]; const changed = this.index !== nextIndex; const edge = prevIndex === nextIndex; let itemShown; for (const i of [this.index, this.prevIndex]) { if (!util.includes([nextIndex, prevIndex], i)) { util.trigger(slides[i], "itemhidden", [this]); if (edge) { itemShown = true; this.prevIndex = prevIndex; } } } if (this.index === prevIndex && this.prevIndex !== prevIndex || itemShown) { util.trigger(slides[this.index], "itemshown", [this]); } if (changed) { this.prevIndex = prevIndex; this.index = nextIndex; if (!edge) { util.trigger(prev, "beforeitemhide", [this]); util.trigger(prev, "itemhide", [this]); } util.trigger(next, "beforeitemshow", [this]); util.trigger(next, "itemshow", [this]); } this._transitioner = this._translate(Math.abs(this.percent), prev, !edge && next); }, end() { util.off(document, pointerMove, this.move, pointerOptions); util.off(document, pointerUp, this.end, pointerUpOptions); if (this.dragging) { setTimeout(util.on(this.list, "click", (e) => e.preventDefault(), pointerOptions)); this.dragging = null; if (this.index === this.prevIndex) { this.percent = 1 - this.percent; this.dir *= -1; this._show(false, this.index, true); this._transitioner = null; } else { const dirChange = (util.isRtl ? this.dir * (util.isRtl ? 1 : -1) : this.dir) < 0 === this.prevPos > this.pos; this.index = dirChange ? this.index : this.prevIndex; if (dirChange) { util.trigger(this.slides[this.prevIndex], "itemhidden", [this]); util.trigger(this.slides[this.index], "itemshown", [this]); this.percent = 1 - this.percent; } this.show( this.dir > 0 && !dirChange || this.dir < 0 && dirChange ? "next" : "previous", true ); } } util.css(this.list, { userSelect: "" }); this.drag = this.percent = null; } } }; function getDistance(prev, next) { return this._getTransitioner(prev, prev !== next && next).getDistance() || this.slides[prev].offsetWidth; } function hasSelectableText(el) { return util.css(el, "userSelect") !== "none" && util.toArray(el.childNodes).some((el2) => el2.nodeType === 3 && el2.textContent.trim()); } util.memoize((id, props) => { const attributes = Object.keys(props); const filter = attributes.concat(id).map((key) => [util.hyphenate(key), `data-${util.hyphenate(key)}`]).flat(); return { attributes, filter }; }); let id = 1; function generateId(instance, el = null) { return (el == null ? void 0 : el.id) || `${instance.$options.id}-${id++}`; } const keyMap = { SPACE: 32, END: 35, HOME: 36, LEFT: 37, RIGHT: 39}; var SliderNav = { i18n: { next: "Next slide", previous: "Previous slide", slideX: "Slide %s", slideLabel: "%s of %s", role: "String" }, data: { selNav: false, role: "region" }, computed: { nav: ({ selNav }, $el) => util.$(selNav, $el), navChildren() { return util.children(this.nav); }, selNavItem: ({ attrItem }) => `[${attrItem}],[data-${attrItem}]`, navItems(_, $el) { return util.$$(this.selNavItem, $el); } }, watch: { nav(nav, prev) { util.attr(nav, "role", "tablist"); this.padNavitems(); if (prev) { this.$emit(); } }, list(list) { if (util.isTag(list, "ul")) { util.attr(list, "role", "presentation"); } }, navChildren(children2) { util.attr(children2, "role", "presentation"); this.padNavitems(); this.updateNav(); }, navItems(items) { for (const el of items) { const cmd = util.data(el, this.attrItem); const button = util.$("a,button", el) || el; let ariaLabel; let ariaControls = null; if (util.isNumeric(cmd)) { const item = util.toNumber(cmd); const slide = this.slides[item]; if (slide) { if (!slide.id) { slide.id = generateId(this, slide); } ariaControls = slide.id; } ariaLabel = this.t("slideX", util.toFloat(cmd) + 1); button.role = "tab"; } else { if (this.list) { if (!this.list.id) { this.list.id = generateId(this, this.list); } ariaControls = this.list.id; } ariaLabel = this.t(cmd); } button.ariaControls = ariaControls; button.ariaLabel = button.ariaLabel || ariaLabel; } }, slides(slides) { slides.forEach( (slide, i) => util.attr(slide, { role: this.nav ? "tabpanel" : "group", "aria-label": this.t("slideLabel", i + 1, this.length), "aria-roledescription": this.nav ? null : "slide" }) ); this.padNavitems(); } }, connected() { this.$el.role = this.role; this.$el.ariaRoleDescription = "carousel"; }, update: [ { write() { this.navItems.concat(this.nav).forEach((el) => el && (el.hidden = !this.maxIndex)); this.updateNav(); }, events: ["resize"] } ], events: [ { name: "click keydown", delegate: ({ selNavItem }) => selNavItem, filter: ({ parallax }) => !parallax, handler(e) { if (e.target.closest("a,button") && (e.type === "click" || e.keyCode === keyMap.SPACE)) { maybeDefaultPreventClick(e); this.show(util.data(e.current, this.attrItem)); } } }, { name: "itemshow", handler() { this.updateNav(); } }, { name: "keydown", delegate: ({ selNavItem }) => selNavItem, filter: ({ parallax }) => !parallax, handler(e) { const { current, keyCode } = e; const cmd = util.data(current, this.attrItem); if (!util.isNumeric(cmd)) { return; } let i = keyCode === keyMap.HOME ? 0 : keyCode === keyMap.END ? "last" : keyCode === keyMap.LEFT ? "previous" : keyCode === keyMap.RIGHT ? "next" : -1; if (~i) { e.preventDefault(); this.show(i); } } } ], methods: { updateNav() { const index = this.getValidIndex(); for (const el of this.navItems) { const cmd = util.data(el, this.attrItem); const button = util.$("a,button", el) || el; if (util.isNumeric(cmd)) { const item = util.toNumber(cmd); const active = item === index; util.toggleClass(el, this.clsActive, active); util.toggleClass(button, "uk-disabled", !!this.parallax); button.ariaSelected = active; button.tabIndex = active && !this.parallax ? null : -1; if (active && button && util.matches(util.parent(el), ":focus-within")) { button.focus(); } } else { util.toggleClass( el, "uk-invisible", this.finite && (cmd === "previous" && index === 0 || cmd === "next" && index >= this.maxIndex) ); } } }, padNavitems() { if (!this.nav) { return; } const children2 = []; for (let i = 0; i < this.length; i++) { const attr2 = `${this.attrItem}="${i}"`; children2[i] = this.navChildren.findLast((el) => el.matches(`[${attr2}]`)) || util.$(`<li ${attr2}><a href></a></li>`); } if (!util.isEqual(children2, this.navChildren)) { util.html(this.nav, children2); } } } }; const easeOutQuad = "cubic-bezier(0.25, 0.46, 0.45, 0.94)"; const easeOutQuart = "cubic-bezier(0.165, 0.84, 0.44, 1)"; var Slider = { mixins: [SliderAutoplay, SliderDrag, SliderNav, I18n], props: { clsActivated: String, easing: String, index: Number, finite: Boolean, velocity: Number }, data: () => ({ easing: "ease", finite: false, velocity: 1, index: 0, prevIndex: -1, stack: [], percent: 0, clsActive: "uk-active", clsActivated: "", clsEnter: "uk-slide-enter", clsLeave: "uk-slide-leave", clsSlideActive: "uk-slide-active", Transitioner: false, transitionOptions: {} }), connected() { this.prevIndex = -1; this.index = this.getValidIndex(this.$props.index); this.stack = []; }, disconnected() { util.removeClass(this.slides, this.clsActive); }, computed: { duration: ({ velocity }, $el) => speedUp($el.offsetWidth / velocity), list: ({ selList }, $el) => util.$(selList, $el), maxIndex() { return this.length - 1; }, slides() { return util.children(this.list); }, length() { return this.slides.length; } }, watch: { slides(slides, prev) { if (prev) { this.$emit(); } } }, events: { itemshow({ target }) { util.addClass(target, this.clsEnter, this.clsSlideActive); }, itemshown({ target }) { util.removeClass(target, this.clsEnter); }, itemhide({ target }) { util.addClass(target, this.clsLeave); }, itemhidden({ target }) { util.removeClass(target, this.clsLeave, this.clsSlideActive); } }, methods: { async show(index, force = false) { var _a; if (this.dragging || !this.length || this.parallax) { return; } const { stack } = this; const queueIndex = force ? 0 : stack.length; const reset = () => { stack.splice(queueIndex, 1); if (stack.length) { this.show(stack.shift(), true); } }; stack[force ? "unshift" : "push"](index); if (!force && stack.length > 1) { if (stack.length === 2) { (_a = this._transitioner) == null ? void 0 : _a.forward(Math.min(this.duration, 200)); } return; } const prevIndex = this.getIndex(this.index); const prev = util.hasClass(this.slides, this.clsActive) && this.slides[prevIndex]; const nextIndex = this.getIndex(index, this.index); const next = this.slides[nextIndex]; if (prev === next) { reset(); return; } this.dir = getDirection(index, prevIndex); this.prevIndex = prevIndex; this.index = nextIndex; if (prev && !util.trigger(prev, "beforeitemhide", [this]) || !util.trigger(next, "beforeitemshow", [this, prev])) { this.index = this.prevIndex; reset(); return; } prev && util.trigger(prev, "itemhide", [this]); util.trigger(next, "itemshow", [this]); await this._show(prev, next, force); prev && util.trigger(prev, "itemhidden", [this]); util.trigger(next, "itemshown", [this]); stack.shift(); this._transitioner = null; if (stack.length) { requestAnimationFrame(() => stack.length && this.show(stack.shift(), true)); } }, getIndex(index = this.index, prev = this.index) { return util.clamp( util.getIndex(index, this.slides, prev, this.finite), 0, Math.max(0, this.maxIndex) ); }, getValidIndex(index = this.index, prevIndex = this.prevIndex) { return this.getIndex(index, prevIndex); }, async _show(prev, next, force) { this._transitioner = this._getTransitioner(prev, next, this.dir, { easing: force ? next.offsetWidth < 600 ? easeOutQuad : easeOutQuart : this.easing, ...this.transitionOptions }); if (!force && !prev) { this._translate(1); return; } const { length } = this.stack; return this._transitioner[length > 1 ? "forward" : "show"]( length > 1 ? Math.min(this.duration, 75 + 75 / (length - 1)) : this.duration, this.percent ); }, _translate(percent, prev = this.prevIndex, next = this.index) { const transitioner = this._getTransitioner(prev === next ? false : prev, next); transitioner.translate(percent); return transitioner; }, _getTransitioner(prev = this.prevIndex, next = this.index, dir = this.dir || 1, options = this.transitionOptions) { return new this.Transitioner( util.isNumber(prev) ? this.slides[prev] : prev, util.isNumber(next) ? this.slides[next] : next, dir * (util.isRtl ? -1 : 1), options ); } } }; function getDirection(index, prevIndex) { return index === "next" ? 1 : index === "previous" ? -1 : index < prevIndex ? -1 : 1; } function speedUp(x) { return 0.5 * x + 300; } var Slideshow = { mixins: [Slider], props: { animation: String }, data: { animation: "slide", clsActivated: "uk-transition-active", Animations: Animations$1, Transitioner }, computed: { animation({ animation, Animations: Animations2 }) { return { ...Animations2[animation] || Animations2.slide, name: animation }; }, transitionOptions() { return { animation: this.animation }; } }, observe: resize(), events: { itemshow({ target }) { util.addClass(target, this.clsActive); }, itemshown({ target }) { util.addClass(target, this.clsActivated); }, itemhidden({ target }) { util.removeClass(target, this.clsActive, this.clsActivated); } } }; ({ ...Animations$1}); function scale3d(value) { return `scale3d(${value}, ${value}, 1)`; } var Animations = { ...Animations$1, fade: { show() { return [{ opacity: 0 }, { opacity: 1 }]; }, percent(current) { return 1 - util.css(current, "opacity"); }, translate(percent) { return [{ opacity: 1 - percent }, { opacity: percent }]; } }, scale: { show() { return [ { opacity: 0, transform: scale3d(1 - 0.2) }, { opacity: 1, transform: scale3d(1) } ]; }, percent(current) { return 1 - util.css(current, "opacity"); }, translate(percent) { return [ { opacity: 1 - percent, transform: scale3d(1 - 0.2 * percent) }, { opacity: percent, transform: scale3d(1 - 0.2 + 0.2 * percent) } ]; } } }; var Component = { i18n: { counter: "%s / %s" }, mixins: [Modal, Slideshow], functional: true, props: { counter: Boolean, preload: Number, nav: Boolean, slidenav: Boolean, delayControls: Number, videoAutoplay: Boolean, template: String }, data: () => ({ counter: false, preload: 1, nav: false, slidenav: true, delayControls: 3e3, videoAutoplay: false, items: [], cls: "uk-open", clsPage: "uk-lightbox-page", clsFit: "uk-lightbox-items-fit", clsZoom: "uk-lightbox-zoom", attrItem: "uk-lightbox-item", selList: ".uk-lightbox-items", selClose: ".uk-close-large", selNav: ".uk-lightbox-thumbnav, .uk-lightbox-dotnav", selCaption: ".uk-lightbox-caption", selCounter: ".uk-lightbox-counter", pauseOnHover: false, velocity: 2, Animations, template: `<div class="uk-lightbox uk-overflow-hidden"> <div class="uk-lightbox-items"></div> <div class="uk-position-top-right uk-position-small uk-transition-fade" uk-inverse> <button class="uk-lightbox-close uk-close-large" type="button" uk-close></button> </div> <div class="uk-lightbox-slidenav uk-position-center-left uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-previous uk-lightbox-item="previous"></a> </div> <div class="uk-lightbox-slidenav uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-next uk-lightbox-item="next"></a> </div> <div class="uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse style="max-height: 90vh; overflow: auto;"> <ul class="uk-lightbox-thumbnav uk-lightbox-thumbnav-vertical uk-thumbnav uk-thumbnav-vertical"></ul> <ul class="uk-lightbox-dotnav uk-dotnav uk-dotnav-vertical"></ul> </div> <div class="uk-lightbox-counter uk-text-large uk-position-top-left uk-position-small uk-transition-fade" uk-inverse></div> <div class="uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>` }), created() { let $el = util.$(this.template); if (util.isTag($el, "template")) { $el = util.fragment(util.html($el)); } const list = util.$(this.selList, $el); const navType = this.$props.nav; util.remove(util.$$(this.selNav, $el).filter((el) => !util.matches(el, `.uk-${navType}`))); for (const [i, item] of this.items.entries()) { util.append(list, "<div>"); if (navType === "thumbnav") { util.wrapAll( toThumbnavItem(item, this.videoAutoplay), util.append(util.$(this.selNav, $el), `<li uk-lightbox-item="${i}"><a href></a></li>`) ); } } if (!this.slidenav) { util.remove(util.$$(".uk-lightbox-slidenav", $el)); } if (!this.counter) { util.remove(util.$(this.selCounter, $el)); } util.addClass(list, this.clsFit); const close = util.$("[uk-close]", $el); const closeLabel = this.t("close"); if (close && closeLabel) { close.dataset.i18n = JSON.stringify({ label: closeLabel }); } this.$mount(util.append(this.container, $el)); }, events: [ { name: "click", self: true, filter: ({ bgClose }) => bgClose, delegate: ({ selList }) => `${selList} > *`, handler(e) { if (!e.defaultPrevented) { this.hide(); } } }, { name: "click", self: true, delegate: ({ clsZoom }) => `.${clsZoom}`, handler(e) { if (!e.defaultPrevented) { util.toggleClass(this.list, this.clsFit); } } }, { name: `${util.pointerMove} ${util.pointerDown} keydown`, filter: ({ delayControls }) => delayControls, handler() { this.showControls(); } }, { name: "shown", self: true, handler() { this.showControls(); } }, { name: "hide", self: true, handler() { this.hideControls(); util.removeClass(this.slides, this.clsActive); util.Transition.stop(this.slides); } }, { name: "hidden", self: true, handler() { this.$destroy(true); } }, { name: "keyup", el: () => document, handler({ keyCode }) { if (!this.isToggled() || !this.draggable) { return; } let i = -1; if (keyCode === keyMap.LEFT) { i = "previous"; } else if (keyCode === keyMap.RIGHT) { i = "next"; } else if (keyCode === keyMap.HOME) { i = 0; } else if (keyCode === keyMap.END) { i = "last"; } if (~i) { this.show(i); } } }, { name: "beforeitemshow", handler(e) { util.html(util.$(this.selCaption, this.$el), this.getItem().caption || ""); util.html( util.$(this.selCounter, this.$el), this.t("counter", this.index + 1, this.slides.length) ); for (let j = -this.preload; j <= this.preload; j++) { this.loadItem(this.index + j); } if (this.isToggled()) { return; } this.draggable = false; e.preventDefault(); this.toggleElement(this.$el, true, false); this.animation = Animations.scale; util.removeClass(e.target, this.clsActive); this.stack.splice(1, 0, this.index); } }, { name: "itemshown", handler() { this.draggable = this.$props.draggable; } }, { name: "itemload", async handler(_, item) { const { source: src, type, attrs = {} } = item; this.setItem(item, "<span uk-spinner uk-inverse></span>"); if (!src) { return; } let matches2; const iframeAttrs = { allowfullscreen: "", style: "max-width: 100%; box-sizing: border-box;", "uk-responsive": "", "uk-video": `${Boolean(this.videoAutoplay)}` }; if (type === "image" || isImage(src)) { const img = createEl("img"); wrapInPicture(img, item.sources); util.attr(img, { src, ...util.pick(item, ["alt", "srcset", "sizes"]), ...attrs }); util.on(img, "load", () => this.setItem(item, util.parent(img) || img)); util.on(img, "error", () => this.setError(item)); } else if (type === "video" || isVideo(src)) { const inline = this.videoAutoplay === "inline"; const video = createEl("video", { src, playsinline: "", controls: inline ? null : "", loop: inline ? "" : null, poster: this.videoAutoplay ? null : item.poster, "uk-video": inline ? "automute: true" : Boolean(this.videoAutoplay), ...attrs }); util.on(video, "loadedmetadata", () => this.setItem(item, video)); util.on(video, "error", () => this.setError(item)); } else if (type === "iframe" || src.match(/\.(html|php)($|\?)/i)) { this.setItem( item, createEl("iframe", { src, allowfullscreen: "", class: "uk-lightbox-iframe", ...attrs }) ); } else if (matches2 = src.match( /\/\/(?:.*?youtube(-nocookie)?\..*?(?:[?&]v=|\/shorts\/)|youtu\.be\/)([\w-]{11})[&?]?(.*)?/ )) { this.setItem( item, createEl("iframe", { src: `https://www.youtube${matches2[1] || ""}.com/embed/${matches2[2]}${matches2[3] ? `?${matches2[3]}` : ""}`, width: 1920, height: 1080, ...iframeAttrs, ...attrs }) ); } else if (matches2 = src.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/)) { try { const { height, width } = await (await fetch( `https://vimeo.com/api/oembed.json?maxwidth=1920&url=${encodeURI( src )}`, { credentials: "omit" } )).json(); this.setItem( item, createEl("iframe", { src: `https://player.vimeo.com/video/${matches2[1]}${matches2[2] ? `?${matches2[2]}` : ""}`, width, height, ...iframeAttrs, ...attrs }) ); } catch (e) { this.setError(item); } } } }, { name: "itemloaded", handler() { this.$emit("resize"); } } ], update: { read() { for (const media of util.$$(`${this.selList} :not([controls]):is(img,video)`, this.$el)) { util.toggleClass( media, this.clsZoom, (media.naturalHeight || media.videoHeight) - this.$el.offsetHeight > Math.max( 0, (media.naturalWidth || media.videoWidth) - this.$el.offsetWidth ) ); } }, events: ["resize"] }, methods: { loadItem(index = this.index) { const item = this.getItem(index); if (!this.getSlide(item).childElementCount) { util.trigger(this.$el, "itemload", [item]); } }, getItem(index = this.index) { return this.items[util.getIndex(index, this.slides)]; }, setItem(item, content) { util.trigger(this.$el, "itemloaded", [this, util.html(this.getSlide(item), content)]); }, getSlide(item) { return this.slides[this.items.indexOf(item)]; }, setError(item) { this.setItem(item, '<span uk-icon="icon: bolt; ratio: 2" uk-inverse></span>'); }, showControls() { clearTimeout(this.controlsTimer); this.controlsTimer = this.delayControls && setTimeout(this.hideControls, this.delayControls); util.addClass(this.$el, "uk-active", "uk-transition-active"); }, hideControls() { util.removeClass(this.$el, "uk-active", "uk-transition-active"); } } }; function createEl(tag, attrs) { const el = util.fragment(`<${tag}>`); util.attr(el, attrs); return el; } function toThumbnavItem(item, videoAutoplay) { const el = item.poster || item.thumb && (item.type === "image" || isImage(item.thumb)) ? createEl("img", { src: item.poster || item.thumb, alt: "" }) : item.thumb && (item.type === "video" || isVideo(item.thumb)) ? createEl("video", { src: item.thumb, loop: "", playsinline: "", "uk-video": `autoplay: ${Boolean(videoAutoplay)}; automute: true` }) : createEl("canvas"); if (item.thumbRatio) { el.style.aspectRatio = item.thumbRatio; } return el; } function isImage(src) { return src == null ? void 0 : src.match(/\.(avif|jpe?g|jfif|a?png|gif|svg|webp)($|\?)/i); } function isVideo(src) { return src == null ? void 0 : src.match(/\.(mp4|webm|ogv)($|\?)/i); } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("lightboxPanel", Component); } return Component; })); assets/uikit/dist/js/components/upload.js000064400000015756151666572350014617 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitupload', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitUpload = factory(global.UIkit.util)); })(this, (function (uikitUtil) { 'use strict'; var I18n = { props: { i18n: Object }, data: { i18n: null }, methods: { t(key, ...params) { var _a, _b, _c; let i = 0; return ((_c = ((_a = this.i18n) == null ? void 0 : _a[key]) || ((_b = this.$options.i18n) == null ? void 0 : _b[key])) == null ? void 0 : _c.replace( /%s/g, () => params[i++] || "" )) || ""; } } }; var Component = { mixins: [I18n], i18n: { invalidMime: "Invalid File Type: %s", invalidName: "Invalid File Name: %s", invalidSize: "Invalid File Size: %s Kilobytes Max" }, props: { allow: String, clsDragover: String, concurrent: Number, maxSize: Number, method: String, mime: String, multiple: Boolean, name: String, params: Object, type: String, url: String }, data: { allow: false, clsDragover: "uk-dragover", concurrent: 1, maxSize: 0, method: "POST", mime: false, multiple: false, name: "files[]", params: {}, type: "", url: "", abort: uikitUtil.noop, beforeAll: uikitUtil.noop, beforeSend: uikitUtil.noop, complete: uikitUtil.noop, completeAll: uikitUtil.noop, error: uikitUtil.noop, fail: uikitUtil.noop, load: uikitUtil.noop, loadEnd: uikitUtil.noop, loadStart: uikitUtil.noop, progress: uikitUtil.noop }, events: { change(e) { if (!uikitUtil.matches(e.target, 'input[type="file"]')) { return; } e.preventDefault(); if (e.target.files) { this.upload(e.target.files); } e.target.value = ""; }, drop(e) { stop(e); const transfer = e.dataTransfer; if (!(transfer == null ? void 0 : transfer.files)) { return; } uikitUtil.removeClass(this.$el, this.clsDragover); this.upload(transfer.files); }, dragenter(e) { stop(e); }, dragover(e) { stop(e); uikitUtil.addClass(this.$el, this.clsDragover); }, dragleave(e) { stop(e); uikitUtil.removeClass(this.$el, this.clsDragover); } }, methods: { async upload(files) { files = uikitUtil.toArray(files); if (!files.length) { return; } uikitUtil.trigger(this.$el, "upload", [files]); for (const file of files) { if (this.maxSize && this.maxSize * 1e3 < file.size) { this.fail(this.t("invalidSize", this.maxSize)); return; } if (this.allow && !match(this.allow, file.name)) { this.fail(this.t("invalidName", this.allow)); return; } if (this.mime && !match(this.mime, file.type)) { this.fail(this.t("invalidMime", this.mime)); return; } } if (!this.multiple) { files = files.slice(0, 1); } this.beforeAll(this, files); const chunks = chunk(files, this.concurrent); const upload = async (files2) => { const data = new FormData(); files2.forEach((file) => data.append(this.name, file)); for (const key in this.params) { data.append(key, this.params[key]); } try { const xhr = await ajax(this.url, { data, method: this.method, responseType: this.type, beforeSend: (env) => { const { xhr: xhr2 } = env; uikitUtil.on(xhr2.upload, "progress", this.progress); for (const type of ["loadStart", "load", "loadEnd", "abort"]) { uikitUtil.on(xhr2, type.toLowerCase(), this[type]); } return this.beforeSend(env); } }); this.complete(xhr); if (chunks.length) { await upload(chunks.shift()); } else { this.completeAll(xhr); } } catch (e) { this.error(e); } }; await upload(chunks.shift()); } } }; function match(pattern, path) { return path.match( new RegExp( `^${pattern.replace(/\//g, "\\/").replace(/\*\*/g, "(\\/[^\\/]+)*").replace(/\*/g, "[^\\/]+").replace(/((?!\\))\?/g, "$1.")}$`, "i" ) ); } function chunk(files, size) { const chunks = []; for (let i = 0; i < files.length; i += size) { chunks.push(files.slice(i, i + size)); } return chunks; } function stop(e) { e.preventDefault(); e.stopPropagation(); } async function ajax(url, options) { const env = { data: null, method: "GET", headers: {}, xhr: new XMLHttpRequest(), beforeSend: uikitUtil.noop, responseType: "", ...options }; await env.beforeSend(env); return send(url, env); } function send(url, env) { return new Promise((resolve, reject) => { const { xhr } = env; for (const prop in env) { if (prop in xhr) { try { xhr[prop] = env[prop]; } catch (e) { } } } xhr.open(env.method.toUpperCase(), url); for (const header in env.headers) { xhr.setRequestHeader(header, env.headers[header]); } uikitUtil.on(xhr, "load", () => { if (xhr.status === 0 || xhr.status >= 200 && xhr.status < 300 || xhr.status === 304) { resolve(xhr); } else { reject( uikitUtil.assign(Error(xhr.statusText), { xhr, status: xhr.status }) ); } }); uikitUtil.on(xhr, "error", () => reject(uikitUtil.assign(Error("Network Error"), { xhr }))); uikitUtil.on(xhr, "timeout", () => reject(uikitUtil.assign(Error("Network Timeout"), { xhr }))); xhr.send(env.data); }); } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("upload", Component); } return Component; })); assets/uikit/dist/js/components/filter.min.js000064400000017230151666572350015367 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(s,y){typeof exports=="object"&&typeof module<"u"?module.exports=y(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitfilter",["uikit-util"],y):(s=typeof globalThis<"u"?globalThis:s||self,s.UIkitFilter=y(s.UIkit.util))})(this,(function(s){"use strict";function y(e,n=[]){try{return e?s.startsWith(e,"{")?JSON.parse(e):n.length&&!s.includes(e,":")?{[n[0]]:e}:e.split(";").reduce((o,t)=>{const[f,r]=t.split(/:(.*)/);return f&&!s.isUndefined(r)&&(o[f.trim()]=r.trim()),o},{}):{}}catch{return{}}}function j(e,n="update"){e._connected&&e._updates.length&&(e._updateCount||(e._updateCount=0,requestAnimationFrame(()=>e._updateCount=0)),e._queued||(e._queued=new Set,s.fastdom.read(()=>{e._connected&&V(e,e._queued),e._queued=null})),e._updateCount++<20&&e._queued.add(n.type||n))}function V(e,n){for(const{read:o,write:t,events:f=[]}of e._updates){if(!n.has("update")&&!f.some(a=>n.has(a)))continue;let r;o&&(r=o.call(e,e._data,n),r&&s.isPlainObject(r)&&s.assign(e._data,r)),t&&r!==!1&&s.fastdom.write(()=>{e._connected&&t.call(e,e._data,n)})}}function B(e){return T(s.observeResize,e,"resize")}function S(e){return T(s.observeMutation,e)}function T(e,n,o){return{observe:e,handler(){j(this,o)},...n}}S({options:{childList:!0}}),S({options:{attributes:!0,attributeFilter:["style"]}}),B({handler(e){for(const{borderBoxSize:[{inlineSize:n,blockSize:o}]}of e)if(n||o){this.$emit("resize");return}},target:({$el:e})=>[e,...s.children(e)]});function L(e){const n=[[]],o=e.some((t,f)=>f&&e[f-1].offsetParent!==t.offsetParent);for(const t of e){if(!s.isVisible(t))continue;const f=b(t,o);for(let r=n.length-1;r>=0;r--){const a=n[r];if(!a[0]){a.push(t);break}const c=b(a[0],o);if(f.top>=c.bottom-1&&f.top!==c.top){n.push([t]);break}if(f.bottom-1>c.top||f.top===c.top){let p=a.length-1;for(;p>=0;p--){const m=b(a[p],o);if(f.left>=m.left)break}a.splice(p+1,0,t);break}if(r===0){n.unshift([t]);break}}}return n}function b(e,n=!1){let{offsetTop:o,offsetLeft:t,offsetHeight:f,offsetWidth:r}=e;return n&&([o,t]=s.offsetPosition(e)),{top:o,left:t,bottom:o+f,right:t+r}}const v="uk-transition-leave",P="uk-transition-enter";function $(e,n,o,t=0){const f=g(n,!0),r={opacity:1},a={opacity:0},c=()=>f===g(n),p=i=>()=>c()?i():Promise.reject(),m=p(async()=>{s.addClass(n,v),await(t?Promise.all(F(n).map(async(i,u)=>(await C(u*t),s.Transition.start(i,a,o/2,"ease")))):s.Transition.start(n,a,o/2,"ease")),s.removeClass(n,v)}),l=p(async()=>{const i=s.height(n);s.addClass(n,P),e(),s.css(t?s.children(n):n,a),s.height(n,i),await C(),s.height(n,"");const u=s.height(n);s.css(n,"alignContent","flex-start"),s.height(n,i);let d=[],h=o/2;if(t){const w=F(n);s.css(s.children(n),a),d=w.map(async(O,X)=>{await C(X*t),await s.Transition.start(O,r,o/2,"ease"),c()&&s.resetProps(O,r)}),h+=w.length*t}if(!t||i!==u){const w={height:u,...t?{}:r};d.push(s.Transition.start(n,w,h,"ease"))}await Promise.all(d),s.removeClass(n,P),c()&&(s.resetProps(n,{height:"",alignContent:"",...r}),delete n.dataset.transition)});return s.hasClass(n,v)?_(n).then(l):s.hasClass(n,P)?_(n).then(m).then(l):m().then(l)}function g(e,n){return n&&(e.dataset.transition=1+g(e)),s.toNumber(e.dataset.transition)||0}function _(e){return Promise.all(s.children(e).filter(s.Transition.inProgress).map(n=>new Promise(o=>s.once(n,"transitionend transitioncanceled",o))))}function F(e){return L(s.children(e)).flat().filter(s.isVisible)}function C(e){return new Promise(n=>setTimeout(n,e))}async function N(e,n,o){await q();let t=s.children(n);const f=t.map(d=>I(d,!0)),r={...s.css(n,["height","padding"]),display:"block"},a=t.concat(n);await Promise.all(a.map(s.Transition.cancel)),s.css(a,"transitionProperty","none"),await e(),t=t.concat(s.children(n).filter(d=>!s.includes(t,d))),await Promise.resolve(),s.css(a,"transitionProperty","");const c=s.attr(n,"style"),p=s.css(n,["height","padding"]),[m,l]=D(n,t,f),i=t.map(d=>({style:s.attr(d,"style")}));t.forEach((d,h)=>l[h]&&s.css(d,l[h])),s.css(n,r),s.trigger(n,"scroll"),await q();const u=t.map((d,h)=>s.parent(d)===n&&s.Transition.start(d,m[h],o,"ease")).concat(s.Transition.start(n,p,o,"ease"));try{await Promise.all(u),t.forEach((d,h)=>{s.attr(d,i[h]),s.parent(d)===n&&s.css(d,"display",m[h].opacity===0?"none":"")}),s.attr(n,"style",c)}catch{s.attr(t,"style",""),s.resetProps(n,r)}}function I(e,n){const o=s.css(e,"zIndex");return s.isVisible(e)?{display:"",opacity:n?s.css(e,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:o==="auto"?s.index(e):o,...x(e)}:!1}function D(e,n,o){const t=n.map((r,a)=>s.parent(r)&&a in o?o[a]?s.isVisible(r)?x(r):{opacity:0}:{opacity:s.isVisible(r)?1:0}:!1),f=t.map((r,a)=>{const c=s.parent(n[a])===e&&(o[a]||I(n[a]));if(!c)return!1;if(!r)delete c.opacity;else if(!("opacity"in r)){const{opacity:p}=c;p%1?r.opacity=1:delete c.opacity}return c});return[t,f]}function x(e){const{height:n,width:o}=s.dimensions(e);return{height:n,width:o,transform:"",...s.position(e),...s.css(e,["marginTop","marginLeft"])}}function q(){return new Promise(e=>requestAnimationFrame(e))}var H={props:{duration:Number,animation:Boolean},data:{duration:150,animation:"slide"},methods:{animate(e,n=this.$el){const o=this.animation;return(o==="fade"?$:o==="delayed-fade"?(...f)=>$(...f,40):o?N:()=>(e(),Promise.resolve()))(e,n,this.duration).catch(s.noop)}}};function M(e){e.target.closest('a[href="#"],a[href=""]')&&e.preventDefault()}const W={SPACE:32};var z={mixins:[H],args:"target",props:{target:String,selActive:Boolean},data:{target:"",selActive:!1,attrItem:"uk-filter-control",cls:"uk-active",duration:250},computed:{children:({target:e},n)=>s.$$(`${e} > *`,n),toggles:({attrItem:e},n)=>s.$$(`[${e}],[data-${e}]`,n)},watch:{toggles(e){this.updateState();const n=s.$$(this.selActive,this.$el);for(const o of e){this.selActive!==!1&&s.toggleClass(o,this.cls,s.includes(n,o));const t=Q(o);s.isTag(t,"a")&&(t.role="button")}},children(e,n){n&&this.updateState()}},events:{name:"click keydown",delegate:({attrItem:e})=>`[${e}],[data-${e}]`,handler(e){e.type==="keydown"&&e.keyCode!==W.SPACE||e.target.closest("a,button")&&(M(e),this.apply(e.current))}},methods:{apply(e){const n=this.getState(),o=A(e,this.attrItem,this.getState());R(n,o)||this.setState(o)},getState(){return this.toggles.filter(e=>s.hasClass(e,this.cls)).reduce((e,n)=>A(n,this.attrItem,e),{filter:{"":""},sort:[]})},async setState(e,n=!0){e={filter:{"":""},sort:[],...e},s.trigger(this.$el,"beforeFilter",[this,e]);for(const o of this.toggles)s.toggleClass(o,this.cls,G(o,this.attrItem,e));await Promise.all(s.$$(this.target,this.$el).map(o=>{const t=()=>J(e,o,s.children(o));return n?this.animate(t,o):t()})),s.trigger(this.$el,"afterFilter",[this])},updateState(){s.fastdom.write(()=>this.setState(this.getState(),!1))}}};function E(e,n){return y(s.data(e,n),["filter"])}function R(e,n){return["filter","sort"].every(o=>s.isEqual(e[o],n[o]))}function J(e,n,o){for(const r of o)s.css(r,"display",Object.values(e.filter).every(a=>!a||s.matches(r,a))?"":"none");const[t,f]=e.sort;if(t){const r=K(o,t,f);s.isEqual(r,o)||s.append(n,r)}}function A(e,n,o){const{filter:t,group:f,sort:r,order:a="asc"}=E(e,n);return(t||s.isUndefined(r))&&(f?t?(delete o.filter[""],o.filter[f]=t):(delete o.filter[f],(s.isEmpty(o.filter)||""in o.filter)&&(o.filter={"":t||""})):o.filter={"":t||""}),s.isUndefined(r)||(o.sort=[r,a]),o}function G(e,n,{filter:o={"":""},sort:[t,f]}){const{filter:r="",group:a="",sort:c,order:p="asc"}=E(e,n);return s.isUndefined(c)?a in o&&r===o[a]||!r&&a&&!(a in o)&&!o[""]:t===c&&f===p}function K(e,n,o){return[...e].sort((t,f)=>s.data(t,n).localeCompare(s.data(f,n),void 0,{numeric:!0})*(o==="asc"||-1))}function Q(e){return s.$("a,button",e)||e}return typeof window<"u"&&window.UIkit&&window.UIkit.component("filter",z),z})); assets/uikit/dist/js/components/tooltip.js000064400000036362151666572350015021 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikittooltip', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitTooltip = factory(global.UIkit.util)); })(this, (function (util) { 'use strict'; function parseOptions(options, args = []) { try { return options ? util.startsWith(options, "{") ? JSON.parse(options) : args.length && !util.includes(options, ":") ? { [args[0]]: options } : options.split(";").reduce((options2, option) => { const [key, value] = option.split(/:(.*)/); if (key && !util.isUndefined(value)) { options2[key.trim()] = value.trim(); } return options2; }, {}) : {}; } catch (e) { return {}; } } util.memoize((id, props) => { const attributes = Object.keys(props); const filter = attributes.concat(id).map((key) => [util.hyphenate(key), `data-${util.hyphenate(key)}`]).flat(); return { attributes, filter }; }); let id = 1; function generateId(instance, el = null) { return (el == null ? void 0 : el.id) || `${instance.$options.id}-${id++}`; } var Container = { props: { container: Boolean }, data: { container: true }, computed: { container({ container }) { return container === true && this.$container || container && util.$(container); } } }; var Position = { props: { pos: String, offset: Boolean, flip: Boolean, shift: Boolean, inset: Boolean }, data: { pos: `bottom-${util.isRtl ? "right" : "left"}`, offset: false, flip: true, shift: true, inset: false }, connected() { this.pos = this.$props.pos.split("-").concat("center").slice(0, 2); [this.dir, this.align] = this.pos; this.axis = util.includes(["top", "bottom"], this.dir) ? "y" : "x"; }, methods: { positionAt(element, target, boundary) { let offset = [this.getPositionOffset(element), this.getShiftOffset(element)]; const placement = [this.flip && "flip", this.shift && "shift"]; const attach = { element: [this.inset ? this.dir : util.flipPosition(this.dir), this.align], target: [this.dir, this.align] }; if (this.axis === "y") { for (const prop in attach) { attach[prop].reverse(); } offset.reverse(); placement.reverse(); } const restoreScrollPosition = storeScrollPosition(element); const elDim = util.dimensions(element); util.css(element, { top: -elDim.height, left: -elDim.width }); util.positionAt(element, target, { attach, offset, boundary, placement, viewportOffset: this.getViewportOffset(element) }); restoreScrollPosition(); }, getPositionOffset(element = this.$el) { return util.toPx( this.offset === false ? util.css(element, "--uk-position-offset") : this.offset, this.axis === "x" ? "width" : "height", element ) * (util.includes(["left", "top"], this.dir) ? -1 : 1) * (this.inset ? -1 : 1); }, getShiftOffset(element = this.$el) { return this.align === "center" ? 0 : util.toPx( util.css(element, "--uk-position-shift-offset"), this.axis === "y" ? "width" : "height", element ) * (util.includes(["left", "top"], this.align) ? 1 : -1); }, getViewportOffset(element) { return util.toPx(util.css(element, "--uk-position-viewport-offset")); } } }; function storeScrollPosition(element) { const scrollElement = util.scrollParent(element); const { scrollTop } = scrollElement; return () => { if (scrollTop !== scrollElement.scrollTop) { scrollElement.scrollTop = scrollTop; } }; } var Togglable = { props: { cls: Boolean, animation: "list", duration: Number, velocity: Number, origin: String, transition: String }, data: { cls: false, animation: [false], duration: 200, velocity: 0.2, origin: false, transition: "ease", clsEnter: "uk-togglable-enter", clsLeave: "uk-togglable-leave" }, computed: { hasAnimation: ({ animation }) => !!animation[0], hasTransition: ({ animation }) => ["slide", "reveal"].some((transition) => util.startsWith(animation[0], transition)) }, methods: { async toggleElement(targets, toggle, animate) { try { await Promise.all( util.toNodes(targets).map((el) => { const show = util.isBoolean(toggle) ? toggle : !this.isToggled(el); if (!util.trigger(el, `before${show ? "show" : "hide"}`, [this])) { return Promise.reject(); } const promise = (util.isFunction(animate) ? animate : animate === false || !this.hasAnimation ? toggleInstant : this.hasTransition ? toggleTransition : toggleAnimation)(el, show, this); const cls = show ? this.clsEnter : this.clsLeave; util.addClass(el, cls); util.trigger(el, show ? "show" : "hide", [this]); const done = () => { var _a; util.removeClass(el, cls); util.trigger(el, show ? "shown" : "hidden", [this]); if (show) { const restoreScrollPosition = storeScrollPosition(el); (_a = util.$$("[autofocus]", el).find(util.isVisible)) == null ? void 0 : _a.focus(); restoreScrollPosition(); } }; return promise ? promise.then(done, () => { util.removeClass(el, cls); return Promise.reject(); }) : done(); }) ); return true; } catch (e) { return false; } }, isToggled(el = this.$el) { el = util.toNode(el); return util.hasClass(el, this.clsEnter) ? true : util.hasClass(el, this.clsLeave) ? false : this.cls ? util.hasClass(el, this.cls.split(" ")[0]) : util.isVisible(el); }, _toggle(el, toggled) { if (!el) { return; } toggled = Boolean(toggled); let changed; if (this.cls) { changed = util.includes(this.cls, " ") || toggled !== util.hasClass(el, this.cls); changed && util.toggleClass(el, this.cls, util.includes(this.cls, " ") ? void 0 : toggled); } else { changed = toggled === el.hidden; changed && (el.hidden = !toggled); } if (changed) { util.trigger(el, "toggled", [toggled, this]); } } } }; function toggleInstant(el, show, { _toggle }) { util.Animation.cancel(el); util.Transition.cancel(el); return _toggle(el, show); } async function toggleTransition(el, show, { animation, duration, velocity, transition, _toggle }) { var _a; const [mode = "reveal", startProp = "top"] = ((_a = animation[0]) == null ? void 0 : _a.split("-")) || []; const dirs = [ ["left", "right"], ["top", "bottom"] ]; const dir = dirs[util.includes(dirs[0], startProp) ? 0 : 1]; const end = dir[1] === startProp; const props = ["width", "height"]; const dimProp = props[dirs.indexOf(dir)]; const marginProp = `margin-${dir[0]}`; const marginStartProp = `margin-${startProp}`; let currentDim = util.dimensions(el)[dimProp]; const inProgress = util.Transition.inProgress(el); await util.Transition.cancel(el); if (show) { _toggle(el, true); } const prevProps = Object.fromEntries( [ "padding", "border", "width", "height", "minWidth", "minHeight", "overflowY", "overflowX", marginProp, marginStartProp ].map((key) => [key, el.style[key]]) ); const dim = util.dimensions(el); const currentMargin = util.toFloat(util.css(el, marginProp)); const marginStart = util.toFloat(util.css(el, marginStartProp)); const endDim = dim[dimProp] + marginStart; if (!inProgress && !show) { currentDim += marginStart; } const [wrapper] = util.wrapInner(el, "<div>"); util.css(wrapper, { boxSizing: "border-box", height: dim.height, width: dim.width, ...util.css(el, [ "overflow", "padding", "borderTop", "borderRight", "borderBottom", "borderLeft", "borderImage", marginStartProp ]) }); util.css(el, { padding: 0, border: 0, minWidth: 0, minHeight: 0, [marginStartProp]: 0, width: dim.width, height: dim.height, overflow: "hidden", [dimProp]: currentDim }); const percent = currentDim / endDim; duration = (velocity * endDim + duration) * (show ? 1 - percent : percent); const endProps = { [dimProp]: show ? endDim : 0 }; if (end) { util.css(el, marginProp, endDim - currentDim + currentMargin); endProps[marginProp] = show ? currentMargin : endDim + currentMargin; } if (!end ^ mode === "reveal") { util.css(wrapper, marginProp, -endDim + currentDim); util.Transition.start(wrapper, { [marginProp]: show ? 0 : -endDim }, duration, transition); } try { await util.Transition.start(el, endProps, duration, transition); } finally { util.css(el, prevProps); util.unwrap(wrapper.firstChild); if (!show) { _toggle(el, false); } } } function toggleAnimation(el, show, cmp) { const { animation, duration, _toggle } = cmp; if (show) { _toggle(el, true); return util.Animation.in(el, animation[0], duration, cmp.origin); } return util.Animation.out(el, animation[1] || animation[0], duration, cmp.origin).then( () => _toggle(el, false) ); } const keyMap = { ESC: 27}; var Component = { mixins: [Container, Togglable, Position], data: { pos: "top", animation: ["uk-animation-scale-up"], duration: 100, cls: "uk-active" }, connected() { makeFocusable(this.$el); }, disconnected() { this.hide(); }, methods: { show() { if (this.isToggled(this.tooltip || null)) { return; } const { delay = 0, title } = parseProps(this.$options); if (!title) { return; } const titleAttr = util.attr(this.$el, "title"); const off = util.on(this.$el, ["blur", util.pointerLeave], (e) => !util.isTouch(e) && this.hide()); this.reset = () => { util.attr(this.$el, { title: titleAttr, "aria-describedby": null }); off(); }; const id = generateId(this); util.attr(this.$el, { title: null, "aria-describedby": id }); clearTimeout(this.showTimer); this.showTimer = setTimeout(() => this._show(title, id), delay); }, async hide() { var _a; if (util.matches(this.$el, "input:focus")) { return; } clearTimeout(this.showTimer); if (this.isToggled(this.tooltip || null)) { await this.toggleElement(this.tooltip, false, false); } (_a = this.reset) == null ? void 0 : _a.call(this); util.remove(this.tooltip); this.tooltip = null; }, async _show(title, id) { this.tooltip = util.append( this.container, `<div id="${id}" class="uk-${this.$options.name}" role="tooltip"> <div class="uk-${this.$options.name}-inner">${title}</div> </div>` ); util.on(this.tooltip, "toggled", (e, toggled) => { if (!toggled) { return; } const update = () => this.positionAt(this.tooltip, this.$el); update(); const [dir, align] = getAlignment(this.tooltip, this.$el, this.pos); this.origin = this.axis === "y" ? `${util.flipPosition(dir)}-${align}` : `${align}-${util.flipPosition(dir)}`; const handlers = [ util.once( document, `keydown ${util.pointerDown}`, this.hide, false, (e2) => e2.type === util.pointerDown && !this.$el.contains(e2.target) || e2.type === "keydown" && e2.keyCode === keyMap.ESC ), util.on([document, ...util.overflowParents(this.$el)], "scroll", update, { passive: true }) ]; util.once(this.tooltip, "hide", () => handlers.forEach((handler) => handler()), { self: true }); }); if (!await this.toggleElement(this.tooltip, true)) { this.hide(); } } }, events: { // Clicking a button does not give it focus on all browsers and platforms // https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#clicking_and_focus [`focus ${util.pointerEnter} ${util.pointerDown}`](e) { if ((!util.isTouch(e) || e.type === util.pointerDown) && document.readyState !== "loading") { this.show(); } } } }; function makeFocusable(el) { if (!util.isFocusable(el)) { el.tabIndex = 0; } } function getAlignment(el, target, [dir, align]) { const elOffset = util.offset(el); const targetOffset = util.offset(target); const properties = [ ["left", "right"], ["top", "bottom"] ]; for (const props2 of properties) { if (elOffset[props2[0]] >= targetOffset[props2[1]]) { dir = props2[1]; break; } if (elOffset[props2[1]] <= targetOffset[props2[0]]) { dir = props2[0]; break; } } const props = util.includes(properties[0], dir) ? properties[1] : properties[0]; align = props.find((prop) => elOffset[prop] === targetOffset[prop]) || "center"; return [dir, align]; } function parseProps(options) { const { el, id, data } = options; return ["delay", "title"].reduce((obj, key) => ({ [key]: util.data(el, key), ...obj }), { ...parseOptions(util.data(el, id), ["title"]), ...data }); } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("tooltip", Component); } return Component; })); assets/uikit/dist/js/components/slideshow-parallax.min.js000064400000022217151666572350017706 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(i,$){typeof exports=="object"&&typeof module<"u"?module.exports=$(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitslideshow_parallax",["uikit-util"],$):(i=typeof globalThis<"u"?globalThis:i||self,i.UIkitSlideshow_parallax=$(i.UIkit.util))})(this,(function(i){"use strict";var $={props:{media:Boolean},data:{media:!1},connected(){const n=Y(this.media,this.$el);if(this.matchMedia=!0,n){this.mediaObj=window.matchMedia(n);const e=()=>{this.matchMedia=this.mediaObj.matches,i.trigger(this.$el,i.createEvent("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=i.on(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var n;(n=this.offMediaObj)==null||n.call(this)}};function Y(n,e){if(i.isString(n)){if(i.startsWith(n,"@"))n=i.toFloat(i.css(e,`--uk-breakpoint-${n.slice(1)}`));else if(isNaN(n))return n}return n&&i.isNumeric(n)?`(min-width: ${n}px)`:""}function Z(n,e){var t;return(t=n==null?void 0:n.startsWith)==null?void 0:t.call(n,e)}const{from:k}=Array;function U(n){return typeof n=="function"}function C(n){return n!==null&&typeof n=="object"}function nn(n){return C(n)&&n===n.window}function tn(n){return N(n)===9}function E(n){return N(n)>=1}function N(n){return!nn(n)&&C(n)&&n.nodeType}function M(n){return typeof n=="string"}function en(n){return n===void 0}function w(n){return n&&l(n)[0]}function l(n){return E(n)?[n]:Array.from(n||[]).filter(E)}function T(n){const e=Object.create(null);return(t,...r)=>e[t]||(e[t]=n(t,...r))}function P(n,e,t){var r;if(C(e)){for(const o in e)P(n,o,e[o]);return}if(en(t))return(r=w(n))==null?void 0:r.getAttribute(e);for(const o of l(n))U(t)&&(t=t.call(o,P(o,e))),t===null?rn(o,e):o.setAttribute(e,t)}function rn(n,e){l(n).forEach(t=>t.removeAttribute(e))}const on=typeof window<"u"&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function sn(n){return l(n).some(e=>on.call(e))}function cn(n){var e;return(e=w(n))==null?void 0:e.parentElement}function an(n,e){return l(n).filter(t=>W(t,e))}function W(n,e){return l(n).some(t=>t.matches(e))}function fn(n,e){n=w(n);const t=n?k(n.children):[];return e?an(t,e):t}function A(n,e){return fn(cn(n)).indexOf(n)}function un(n,e){return l(mn(n,w(e),"querySelectorAll"))}const dn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,ln=/(\([^)]*\)|[^,])+/g,hn=T(n=>{let e=!1;if(!n||!M(n))return{};const t=[];for(let r of n.match(ln))r=r.trim().replace(dn,"$1 *"),e||(e=["!","+","~","-",">"].includes(r[0])),t.push(r);return{selector:t.join(","),selectors:t,isContextSelector:e}}),gn=/(\([^)]*\)|\S)*/,D=T(n=>{n=n.slice(1).trim();const[e]=n.match(gn);return[e,n.slice(e.length+1)]});function mn(n,e=document,t){var r;const o=hn(n);if(!o.isContextSelector)return o.selector?O(e,t,o.selector):n;n="";const s=o.selectors.length===1;for(let c of o.selectors){let a,f=e;if(c[0]==="!"&&([a,c]=D(c),f=(r=e.parentElement)==null?void 0:r.closest(a),!c&&s)||f&&c[0]==="-"&&([a,c]=D(c),f=f.previousElementSibling,f=W(f,a)?f:null,!c&&s))return f;if(f){if(s)return c[0]==="~"||c[0]==="+"?(c=`:scope > :nth-child(${A(f)+1}) ${c}`,f=f.parentElement):c[0]===">"&&(c=`:scope ${c}`),O(f,t,c);n+=`${n?",":""}${$n(f)} ${c}`}}return tn(e)||(e=e.ownerDocument),O(e,t,n)}function O(n,e,t){try{return n[e](t)}catch{return null}}function $n(n){const e=[];for(;n.parentNode;){const t=P(n,"id");if(t){e.unshift(`#${bn(t)}`);break}else{let{tagName:r}=n;r!=="HTML"&&(r+=`:nth-child(${A(n)+1})`),e.unshift(r),n=n.parentNode}}return e.join(" > ")}function bn(n){return M(n)?CSS.escape(n):""}const pn=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function xn(n){const e=pn.exec(n);if(e)return document.createElement(e[1]);const t=document.createElement("template");return t.innerHTML=n.trim(),wn(t.content.childNodes)}function wn(n){return n.length>1?n:n[0]}function yn(n,e){return vn(n)?l(xn(n)):un(n,e)}function vn(n){return M(n)&&Z(n.trim(),"<")}function Sn(n){return sn(n)?Math.ceil(Math.max(0,...yn("[stroke]",n).map(e=>{var t;return((t=e.getTotalLength)==null?void 0:t.call(e))||0}))):0}const y={x:v,y:v,rotate:v,scale:v,color:j,backgroundColor:j,borderColor:j,blur:g,hue:g,fopacity:g,grayscale:g,invert:g,saturate:g,sepia:g,opacity:Mn,stroke:Pn,bgx:R,bgy:R},{keys:H}=Object;var Fn={mixins:[$],props:q(H(y),"list"),data:q(H(y),void 0),computed:{props(n,e){const t={};for(const o in n)o in y&&!i.isUndefined(n[o])&&(t[o]=n[o].slice());const r={};for(const o in t)r[o]=y[o](o,e,t[o],t);return r}},events:{load(){this.$emit()}},methods:{reset(){i.resetProps(this.$el,this.getCss(0))},getCss(n){const e={};for(const t in this.props)this.props[t](e,i.clamp(n));return e.willChange=Object.keys(e).map(i.propName).join(","),e}}};function v(n,e,t){let r=F(t)||{x:"px",y:"px",rotate:"deg"}[n]||"",o;return n==="x"||n==="y"?(n=`translate${i.ucfirst(n)}`,o=s=>i.toFloat(i.toFloat(s).toFixed(r==="px"?0:6))):n==="scale"&&(r="",o=s=>{var c;return F([s])?i.toPx(s,"width",e,!0)/e[`offset${(c=s.endsWith)!=null&&c.call(s,"vh")?"Height":"Width"}`]:i.toFloat(s)}),t.length===1&&t.unshift(n==="scale"?1:0),t=m(t,o),(s,c)=>{s.transform=`${s.transform||""} ${n}(${b(t,c)}${r})`}}function j(n,e,t){return t.length===1&&t.unshift(p(e,n,"")),t=m(t,r=>Cn(e,r)),(r,o)=>{const[s,c,a]=L(t,o),f=s.map((h,u)=>(h+=a*(c[u]-h),u===3?i.toFloat(h):parseInt(h,10))).join(",");r[n]=`rgba(${f})`}}function Cn(n,e){return p(n,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(i.toFloat)}function g(n,e,t){t.length===1&&t.unshift(0);const r=F(t)||{blur:"px",hue:"deg"}[n]||"%";return n={fopacity:"opacity",hue:"hue-rotate"}[n]||n,t=m(t),(o,s)=>{const c=b(t,s);o.filter=`${o.filter||""} ${n}(${c+r})`}}function Mn(n,e,t){return t.length===1&&t.unshift(p(e,n,"")),t=m(t),(r,o)=>{r[n]=b(t,o)}}function Pn(n,e,t){t.length===1&&t.unshift(0);const r=F(t),o=Sn(e);return t=m(t.reverse(),s=>(s=i.toFloat(s),r==="%"?s*o/100:s)),t.some(([s])=>s)?(i.css(e,"strokeDasharray",o),(s,c)=>{s.strokeDashoffset=b(t,c)}):i.noop}function R(n,e,t,r){t.length===1&&t.unshift(0);const o=n==="bgy"?"height":"width";r[n]=m(t,a=>i.toPx(a,o,e));const s=["bgx","bgy"].filter(a=>a in r);if(s.length===2&&n==="bgx")return i.noop;if(p(e,"backgroundSize","")==="cover")return On(n,e,t,r);const c={};for(const a of s)c[a]=B(e,a);return V(s,c,r)}function On(n,e,t,r){const o=jn(e);if(!o.width)return i.noop;const s={width:e.offsetWidth,height:e.offsetHeight},c=["bgx","bgy"].filter(u=>u in r),a={};for(const u of c){const d=r[u].map(([_n])=>_n),x=Math.min(...d),_=Math.max(...d),K=d.indexOf(x)<d.indexOf(_),X=_-x;a[u]=`${(K?-X:0)-(K?x:_)}px`,s[u==="bgy"?"height":"width"]+=X}const f=i.Dimensions.cover(o,s);for(const u of c){const d=u==="bgy"?"height":"width",x=f[d]-s[d];a[u]=`max(${B(e,u)},-${x}px) + ${a[u]}`}const h=V(c,a,r);return(u,d)=>{h(u,d),u.backgroundSize=`${f.width}px ${f.height}px`,u.backgroundRepeat="no-repeat"}}function B(n,e){return p(n,`background-position-${e.slice(-1)}`,"")}function V(n,e,t){return function(r,o){for(const s of n){const c=b(t[s],o);r[`background-position-${s.slice(-1)}`]=`calc(${e[s]} + ${c}px)`}}}const z={},S={};function jn(n){const e=i.css(n,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(S[e])return S[e];const t=new Image;return e&&(t.src=e,!t.naturalWidth&&!z[e])?(i.once(t,"error load",()=>{S[e]=I(t),i.trigger(n,i.createEvent("load",!1))}),z[e]=!0,I(t)):S[e]=I(t)}function I(n){return{width:n.naturalWidth,height:n.naturalHeight}}function m(n,e=i.toFloat){const t=[],{length:r}=n;let o=0;for(let s=0;s<r;s++){let[c,a]=i.isString(n[s])?n[s].trim().split(/ (?![^(]*\))/):[n[s]];if(c=e(c),a=a?i.toFloat(a)/100:null,s===0?a===null?a=0:a&&t.push([c,0]):s===r-1&&(a===null?a=1:a!==1&&(t.push([c,a]),a=1)),t.push([c,a]),a===null)o++;else if(o){const f=t[s-o-1][1],h=(a-f)/(o+1);for(let u=o;u>0;u--)t[s-u][1]=f+h*(o-u+1);o=0}}return t}function L(n,e){const t=i.findIndex(n.slice(1),([,r])=>e<=r)+1;return[n[t-1][0],n[t][0],(e-n[t-1][1])/(n[t][1]-n[t-1][1])]}function b(n,e){const[t,r,o]=L(n,e);return t+Math.abs(t-r)*o*(t<r?1:-1)}const In=/^-?\d+(?:\.\d+)?(\S+)?/;function F(n,e){var t;for(const r of n){const o=(t=r.match)==null?void 0:t.call(r,In);if(o)return o[1]}return e}function p(n,e,t){const r=n.style[e],o=i.css(i.css(n,e,t),e);return n.style[e]=r,o}function q(n,e){return n.reduce((t,r)=>(t[r]=e,t),{})}var Q={mixins:[Fn],beforeConnect(){this.item=this.$el.closest(`.${this.$options.id.replace("parallax","items")} > *`)},disconnected(){this.item=null},events:[{name:"itemin itemout",self:!0,el:({item:n})=>n,handler({type:n,detail:{percent:e,duration:t,timing:r,dir:o}}){i.fastdom.read(()=>{if(!this.matchMedia)return;const s=this.getCss(J(n,o,e)),c=this.getCss(G(n)?.5:o>0?1:0);i.fastdom.write(()=>{i.css(this.$el,s),i.Transition.start(this.$el,c,t,r).catch(i.noop)})})}},{name:"transitioncanceled transitionend",self:!0,el:({item:n})=>n,handler(){i.Transition.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el:({item:n})=>n,handler({type:n,detail:{percent:e,dir:t}}){i.fastdom.read(()=>{if(!this.matchMedia){this.reset();return}const r=this.getCss(J(n,t,e));i.fastdom.write(()=>i.css(this.$el,r))})}}]};function G(n){return i.endsWith(n,"in")}function J(n,e,t){return t/=2,G(n)^e<0?t:1-t}return typeof window<"u"&&window.UIkit&&window.UIkit.component("slideshowParallax",Q),Q})); assets/uikit/dist/js/components/parallax.js000064400000056664151666572350015142 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitparallax', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitParallax = factory(global.UIkit.util)); })(this, (function (uikitUtil) { 'use strict'; function callUpdate(instance, e = "update") { if (!instance._connected) { return; } if (!instance._updates.length) { return; } if (!instance._updateCount) { instance._updateCount = 0; requestAnimationFrame(() => instance._updateCount = 0); } if (!instance._queued) { instance._queued = /* @__PURE__ */ new Set(); uikitUtil.fastdom.read(() => { if (instance._connected) { runUpdates(instance, instance._queued); } instance._queued = null; }); } if (instance._updateCount++ < 20) { instance._queued.add(e.type || e); } } function runUpdates(instance, types) { for (const { read, write, events = [] } of instance._updates) { if (!types.has("update") && !events.some((type) => types.has(type))) { continue; } let result; if (read) { result = read.call(instance, instance._data, types); if (result && uikitUtil.isPlainObject(result)) { uikitUtil.assign(instance._data, result); } } if (write && result !== false) { uikitUtil.fastdom.write(() => { if (instance._connected) { write.call(instance, instance._data, types); } }); } } } function resize(options) { return observe(uikitUtil.observeResize, options, "resize"); } function viewport(options) { return observe((target, handler) => uikitUtil.observeViewportResize(handler), options, "resize"); } function scroll(options) { return observe( (target, handler) => ({ disconnect: uikitUtil.on(toScrollTargets(target), "scroll", handler, { passive: true }) }), options, "scroll" ); } function observe(observe2, options, emit) { return { observe: observe2, handler() { callUpdate(this, emit); }, ...options }; } function toScrollTargets(elements) { return uikitUtil.toNodes(elements).map((node) => { const { ownerDocument } = node; const parent2 = uikitUtil.scrollParent(node, true); return parent2 === ownerDocument.scrollingElement ? ownerDocument : parent2; }); } var Media = { props: { media: Boolean }, data: { media: false }, connected() { const media = toMedia(this.media, this.$el); this.matchMedia = true; if (media) { this.mediaObj = window.matchMedia(media); const handler = () => { this.matchMedia = this.mediaObj.matches; uikitUtil.trigger(this.$el, uikitUtil.createEvent("mediachange", false, true, [this.mediaObj])); }; this.offMediaObj = uikitUtil.on(this.mediaObj, "change", () => { handler(); this.$emit("resize"); }); handler(); } }, disconnected() { var _a; (_a = this.offMediaObj) == null ? void 0 : _a.call(this); } }; function toMedia(value, element) { if (uikitUtil.isString(value)) { if (uikitUtil.startsWith(value, "@")) { value = uikitUtil.toFloat(uikitUtil.css(element, `--uk-breakpoint-${value.slice(1)}`)); } else if (isNaN(value)) { return value; } } return value && uikitUtil.isNumeric(value) ? `(min-width: ${value}px)` : ""; } function startsWith(str, search) { var _a; return (_a = str == null ? void 0 : str.startsWith) == null ? void 0 : _a.call(str, search); } const { from: toArray } = Array; function isFunction(obj) { return typeof obj === "function"; } function isObject(obj) { return obj !== null && typeof obj === "object"; } function isWindow(obj) { return isObject(obj) && obj === obj.window; } function isDocument(obj) { return nodeType(obj) === 9; } function isNode(obj) { return nodeType(obj) >= 1; } function nodeType(obj) { return !isWindow(obj) && isObject(obj) && obj.nodeType; } function isString(value) { return typeof value === "string"; } function isUndefined(value) { return value === void 0; } function toNode(element) { return element && toNodes(element)[0]; } function toNodes(element) { return isNode(element) ? [element] : Array.from(element || []).filter(isNode); } function memoize(fn) { const cache = /* @__PURE__ */ Object.create(null); return (key, ...args) => cache[key] || (cache[key] = fn(key, ...args)); } function attr(element, name, value) { var _a; if (isObject(name)) { for (const key in name) { attr(element, key, name[key]); } return; } if (isUndefined(value)) { return (_a = toNode(element)) == null ? void 0 : _a.getAttribute(name); } else { for (const el of toNodes(element)) { if (isFunction(value)) { value = value.call(el, attr(el, name)); } if (value === null) { removeAttr(el, name); } else { el.setAttribute(name, value); } } } } function removeAttr(element, name) { toNodes(element).forEach((element2) => element2.removeAttribute(name)); } const inBrowser = typeof window !== "undefined"; const isVisibleFn = inBrowser && Element.prototype.checkVisibility || function() { return this.offsetWidth || this.offsetHeight || this.getClientRects().length; }; function isVisible(element) { return toNodes(element).some((element2) => isVisibleFn.call(element2)); } function parent(element) { var _a; return (_a = toNode(element)) == null ? void 0 : _a.parentElement; } function filter(element, selector) { return toNodes(element).filter((element2) => matches(element2, selector)); } function matches(element, selector) { return toNodes(element).some((element2) => element2.matches(selector)); } function children(element, selector) { element = toNode(element); const children2 = element ? toArray(element.children) : []; return selector ? filter(children2, selector) : children2; } function index(element, ref) { return children(parent(element)).indexOf(element); } function findAll(selector, context) { return toNodes(_query(selector, toNode(context), "querySelectorAll")); } const addStarRe = /([!>+~-])(?=\s+[!>+~-]|\s*$)/g; const splitSelectorRe = /(\([^)]*\)|[^,])+/g; const parseSelector = memoize((selector) => { let isContextSelector = false; if (!selector || !isString(selector)) { return {}; } const selectors = []; for (let sel of selector.match(splitSelectorRe)) { sel = sel.trim().replace(addStarRe, "$1 *"); isContextSelector || (isContextSelector = ["!", "+", "~", "-", ">"].includes(sel[0])); selectors.push(sel); } return { selector: selectors.join(","), selectors, isContextSelector }; }); const positionRe = /(\([^)]*\)|\S)*/; const parsePositionSelector = memoize((selector) => { selector = selector.slice(1).trim(); const [position] = selector.match(positionRe); return [position, selector.slice(position.length + 1)]; }); function _query(selector, context = document, queryFn) { var _a; const parsed = parseSelector(selector); if (!parsed.isContextSelector) { return parsed.selector ? _doQuery(context, queryFn, parsed.selector) : selector; } selector = ""; const isSingle = parsed.selectors.length === 1; for (let sel of parsed.selectors) { let positionSel; let ctx = context; if (sel[0] === "!") { [positionSel, sel] = parsePositionSelector(sel); ctx = (_a = context.parentElement) == null ? void 0 : _a.closest(positionSel); if (!sel && isSingle) { return ctx; } } if (ctx && sel[0] === "-") { [positionSel, sel] = parsePositionSelector(sel); ctx = ctx.previousElementSibling; ctx = matches(ctx, positionSel) ? ctx : null; if (!sel && isSingle) { return ctx; } } if (!ctx) { continue; } if (isSingle) { if (sel[0] === "~" || sel[0] === "+") { sel = `:scope > :nth-child(${index(ctx) + 1}) ${sel}`; ctx = ctx.parentElement; } else if (sel[0] === ">") { sel = `:scope ${sel}`; } return _doQuery(ctx, queryFn, sel); } selector += `${selector ? "," : ""}${domPath(ctx)} ${sel}`; } if (!isDocument(context)) { context = context.ownerDocument; } return _doQuery(context, queryFn, selector); } function _doQuery(context, queryFn, selector) { try { return context[queryFn](selector); } catch (e) { return null; } } function domPath(element) { const names = []; while (element.parentNode) { const id = attr(element, "id"); if (id) { names.unshift(`#${escape(id)}`); break; } else { let { tagName } = element; if (tagName !== "HTML") { tagName += `:nth-child(${index(element) + 1})`; } names.unshift(tagName); element = element.parentNode; } } return names.join(" > "); } function escape(css) { return isString(css) ? CSS.escape(css) : ""; } const singleTagRe = /^<(\w+)\s*\/?>(?:<\/\1>)?$/; function fragment(html2) { const matches = singleTagRe.exec(html2); if (matches) { return document.createElement(matches[1]); } const container = document.createElement("template"); container.innerHTML = html2.trim(); return unwrapSingle(container.content.childNodes); } function unwrapSingle(nodes) { return nodes.length > 1 ? nodes : nodes[0]; } function $$(selector, context) { return isHtml(selector) ? toNodes(fragment(selector)) : findAll(selector, context); } function isHtml(str) { return isString(str) && startsWith(str.trim(), "<"); } function getMaxPathLength(el) { return isVisible(el) ? Math.ceil( Math.max(0, ...$$("[stroke]", el).map((stroke) => { var _a; return ((_a = stroke.getTotalLength) == null ? void 0 : _a.call(stroke)) || 0; })) ) : 0; } const props = { x: transformFn, y: transformFn, rotate: transformFn, scale: transformFn, color: colorFn, backgroundColor: colorFn, borderColor: colorFn, blur: filterFn, hue: filterFn, fopacity: filterFn, grayscale: filterFn, invert: filterFn, saturate: filterFn, sepia: filterFn, opacity: cssPropFn, stroke: strokeFn, bgx: backgroundFn, bgy: backgroundFn }; const { keys } = Object; var Parallax = { mixins: [Media], props: fillObject(keys(props), "list"), data: fillObject(keys(props), void 0), computed: { props(properties, $el) { const stops = {}; for (const prop in properties) { if (prop in props && !uikitUtil.isUndefined(properties[prop])) { stops[prop] = properties[prop].slice(); } } const result = {}; for (const prop in stops) { result[prop] = props[prop](prop, $el, stops[prop], stops); } return result; } }, events: { load() { this.$emit(); } }, methods: { reset() { uikitUtil.resetProps(this.$el, this.getCss(0)); }, getCss(percent) { const css2 = {}; for (const prop in this.props) { this.props[prop](css2, uikitUtil.clamp(percent)); } css2.willChange = Object.keys(css2).map(uikitUtil.propName).join(","); return css2; } } }; function transformFn(prop, el, stops) { let unit = getUnit(stops) || { x: "px", y: "px", rotate: "deg" }[prop] || ""; let transformFn2; if (prop === "x" || prop === "y") { prop = `translate${uikitUtil.ucfirst(prop)}`; transformFn2 = (stop) => uikitUtil.toFloat(uikitUtil.toFloat(stop).toFixed(unit === "px" ? 0 : 6)); } else if (prop === "scale") { unit = ""; transformFn2 = (stop) => { var _a; return getUnit([stop]) ? uikitUtil.toPx(stop, "width", el, true) / el[`offset${((_a = stop.endsWith) == null ? void 0 : _a.call(stop, "vh")) ? "Height" : "Width"}`] : uikitUtil.toFloat(stop); }; } if (stops.length === 1) { stops.unshift(prop === "scale" ? 1 : 0); } stops = parseStops(stops, transformFn2); return (css2, percent) => { css2.transform = `${css2.transform || ""} ${prop}(${getValue(stops, percent)}${unit})`; }; } function colorFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops, (stop) => parseColor(el, stop)); return (css2, percent) => { const [start, end, p] = getStop(stops, percent); const value = start.map((value2, i) => { value2 += p * (end[i] - value2); return i === 3 ? uikitUtil.toFloat(value2) : parseInt(value2, 10); }).join(","); css2[prop] = `rgba(${value})`; }; } function parseColor(el, color) { return getCssValue(el, "color", color).split(/[(),]/g).slice(1, -1).concat(1).slice(0, 4).map(uikitUtil.toFloat); } function filterFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops) || { blur: "px", hue: "deg" }[prop] || "%"; prop = { fopacity: "opacity", hue: "hue-rotate" }[prop] || prop; stops = parseStops(stops); return (css2, percent) => { const value = getValue(stops, percent); css2.filter = `${css2.filter || ""} ${prop}(${value + unit})`; }; } function cssPropFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops); return (css2, percent) => { css2[prop] = getValue(stops, percent); }; } function strokeFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops); const length = getMaxPathLength(el); stops = parseStops(stops.reverse(), (stop) => { stop = uikitUtil.toFloat(stop); return unit === "%" ? stop * length / 100 : stop; }); if (!stops.some(([value]) => value)) { return uikitUtil.noop; } uikitUtil.css(el, "strokeDasharray", length); return (css2, percent) => { css2.strokeDashoffset = getValue(stops, percent); }; } function backgroundFn(prop, el, stops, props2) { if (stops.length === 1) { stops.unshift(0); } const attr = prop === "bgy" ? "height" : "width"; props2[prop] = parseStops(stops, (stop) => uikitUtil.toPx(stop, attr, el)); const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); if (bgProps.length === 2 && prop === "bgx") { return uikitUtil.noop; } if (getCssValue(el, "backgroundSize", "") === "cover") { return backgroundCoverFn(prop, el, stops, props2); } const positions = {}; for (const prop2 of bgProps) { positions[prop2] = getBackgroundPos(el, prop2); } return setBackgroundPosFn(bgProps, positions, props2); } function backgroundCoverFn(prop, el, stops, props2) { const dimImage = getBackgroundImageDimensions(el); if (!dimImage.width) { return uikitUtil.noop; } const dimEl = { width: el.offsetWidth, height: el.offsetHeight }; const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); const positions = {}; for (const prop2 of bgProps) { const values = props2[prop2].map(([value]) => value); const min = Math.min(...values); const max = Math.max(...values); const down = values.indexOf(min) < values.indexOf(max); const diff = max - min; positions[prop2] = `${(down ? -diff : 0) - (down ? min : max)}px`; dimEl[prop2 === "bgy" ? "height" : "width"] += diff; } const dim = uikitUtil.Dimensions.cover(dimImage, dimEl); for (const prop2 of bgProps) { const attr = prop2 === "bgy" ? "height" : "width"; const overflow = dim[attr] - dimEl[attr]; positions[prop2] = `max(${getBackgroundPos(el, prop2)},-${overflow}px) + ${positions[prop2]}`; } const fn = setBackgroundPosFn(bgProps, positions, props2); return (css2, percent) => { fn(css2, percent); css2.backgroundSize = `${dim.width}px ${dim.height}px`; css2.backgroundRepeat = "no-repeat"; }; } function getBackgroundPos(el, prop) { return getCssValue(el, `background-position-${prop.slice(-1)}`, ""); } function setBackgroundPosFn(bgProps, positions, props2) { return function(css2, percent) { for (const prop of bgProps) { const value = getValue(props2[prop], percent); css2[`background-position-${prop.slice(-1)}`] = `calc(${positions[prop]} + ${value}px)`; } }; } const loading = {}; const dimensions = {}; function getBackgroundImageDimensions(el) { const src = uikitUtil.css(el, "backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/, "$1"); if (dimensions[src]) { return dimensions[src]; } const image = new Image(); if (src) { image.src = src; if (!image.naturalWidth && !loading[src]) { uikitUtil.once(image, "error load", () => { dimensions[src] = toDimensions(image); uikitUtil.trigger(el, uikitUtil.createEvent("load", false)); }); loading[src] = true; return toDimensions(image); } } return dimensions[src] = toDimensions(image); } function toDimensions(image) { return { width: image.naturalWidth, height: image.naturalHeight }; } function parseStops(stops, fn = uikitUtil.toFloat) { const result = []; const { length } = stops; let nullIndex = 0; for (let i = 0; i < length; i++) { let [value, percent] = uikitUtil.isString(stops[i]) ? stops[i].trim().split(/ (?![^(]*\))/) : [stops[i]]; value = fn(value); percent = percent ? uikitUtil.toFloat(percent) / 100 : null; if (i === 0) { if (percent === null) { percent = 0; } else if (percent) { result.push([value, 0]); } } else if (i === length - 1) { if (percent === null) { percent = 1; } else if (percent !== 1) { result.push([value, percent]); percent = 1; } } result.push([value, percent]); if (percent === null) { nullIndex++; } else if (nullIndex) { const leftPercent = result[i - nullIndex - 1][1]; const p = (percent - leftPercent) / (nullIndex + 1); for (let j = nullIndex; j > 0; j--) { result[i - j][1] = leftPercent + p * (nullIndex - j + 1); } nullIndex = 0; } } return result; } function getStop(stops, percent) { const index = uikitUtil.findIndex(stops.slice(1), ([, targetPercent]) => percent <= targetPercent) + 1; return [ stops[index - 1][0], stops[index][0], (percent - stops[index - 1][1]) / (stops[index][1] - stops[index - 1][1]) ]; } function getValue(stops, percent) { const [start, end, p] = getStop(stops, percent); return start + Math.abs(start - end) * p * (start < end ? 1 : -1); } const unitRe = /^-?\d+(?:\.\d+)?(\S+)?/; function getUnit(stops, defaultUnit) { var _a; for (const stop of stops) { const match = (_a = stop.match) == null ? void 0 : _a.call(stop, unitRe); if (match) { return match[1]; } } return defaultUnit; } function getCssValue(el, prop, value) { const prev = el.style[prop]; const val = uikitUtil.css(uikitUtil.css(el, prop, value), prop); el.style[prop] = prev; return val; } function fillObject(keys2, value) { return keys2.reduce((data, prop) => { data[prop] = value; return data; }, {}); } function ease(percent, easing) { return easing >= 0 ? Math.pow(percent, easing + 1) : 1 - Math.pow(1 - percent, 1 - easing); } var Component = { mixins: [Parallax], props: { target: String, viewport: Number, // Deprecated easing: Number, start: String, end: String }, data: { target: false, viewport: 1, easing: 1, start: 0, end: 0 }, computed: { target: ({ target }, $el) => getOffsetElement(target && uikitUtil.query(target, $el) || $el), start({ start }) { return uikitUtil.toPx(start, "height", this.target, true); }, end({ end, viewport: viewport2 }) { return uikitUtil.toPx( end || (viewport2 = (1 - viewport2) * 100) && `${viewport2}vh+${viewport2}%`, "height", this.target, true ); } }, observe: [ viewport(), scroll({ target: ({ target }) => target }), resize({ target: ({ $el, target }) => [$el, target, uikitUtil.scrollParent(target, true)] }) ], update: { read({ percent }, types) { if (!types.has("scroll")) { percent = false; } if (!uikitUtil.isVisible(this.$el)) { return false; } if (!this.matchMedia) { return; } const prev = percent; percent = ease(uikitUtil.scrolledOver(this.target, this.start, this.end), this.easing); return { percent, style: prev === percent ? false : this.getCss(percent) }; }, write({ style }) { if (!this.matchMedia) { this.reset(); return; } style && uikitUtil.css(this.$el, style); }, events: ["scroll", "resize"] } }; function getOffsetElement(el) { return el ? "offsetTop" in el ? el : getOffsetElement(uikitUtil.parent(el)) : document.documentElement; } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("parallax", Component); } return Component; })); assets/uikit/dist/js/components/slideshow-parallax.js000064400000051765151666572350017136 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitslideshow_parallax', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitSlideshow_parallax = factory(global.UIkit.util)); })(this, (function (uikitUtil) { 'use strict'; var Media = { props: { media: Boolean }, data: { media: false }, connected() { const media = toMedia(this.media, this.$el); this.matchMedia = true; if (media) { this.mediaObj = window.matchMedia(media); const handler = () => { this.matchMedia = this.mediaObj.matches; uikitUtil.trigger(this.$el, uikitUtil.createEvent("mediachange", false, true, [this.mediaObj])); }; this.offMediaObj = uikitUtil.on(this.mediaObj, "change", () => { handler(); this.$emit("resize"); }); handler(); } }, disconnected() { var _a; (_a = this.offMediaObj) == null ? void 0 : _a.call(this); } }; function toMedia(value, element) { if (uikitUtil.isString(value)) { if (uikitUtil.startsWith(value, "@")) { value = uikitUtil.toFloat(uikitUtil.css(element, `--uk-breakpoint-${value.slice(1)}`)); } else if (isNaN(value)) { return value; } } return value && uikitUtil.isNumeric(value) ? `(min-width: ${value}px)` : ""; } function startsWith(str, search) { var _a; return (_a = str == null ? void 0 : str.startsWith) == null ? void 0 : _a.call(str, search); } const { from: toArray } = Array; function isFunction(obj) { return typeof obj === "function"; } function isObject(obj) { return obj !== null && typeof obj === "object"; } function isWindow(obj) { return isObject(obj) && obj === obj.window; } function isDocument(obj) { return nodeType(obj) === 9; } function isNode(obj) { return nodeType(obj) >= 1; } function nodeType(obj) { return !isWindow(obj) && isObject(obj) && obj.nodeType; } function isString(value) { return typeof value === "string"; } function isUndefined(value) { return value === void 0; } function toNode(element) { return element && toNodes(element)[0]; } function toNodes(element) { return isNode(element) ? [element] : Array.from(element || []).filter(isNode); } function memoize(fn) { const cache = /* @__PURE__ */ Object.create(null); return (key, ...args) => cache[key] || (cache[key] = fn(key, ...args)); } function attr(element, name, value) { var _a; if (isObject(name)) { for (const key in name) { attr(element, key, name[key]); } return; } if (isUndefined(value)) { return (_a = toNode(element)) == null ? void 0 : _a.getAttribute(name); } else { for (const el of toNodes(element)) { if (isFunction(value)) { value = value.call(el, attr(el, name)); } if (value === null) { removeAttr(el, name); } else { el.setAttribute(name, value); } } } } function removeAttr(element, name) { toNodes(element).forEach((element2) => element2.removeAttribute(name)); } const inBrowser = typeof window !== "undefined"; const isVisibleFn = inBrowser && Element.prototype.checkVisibility || function() { return this.offsetWidth || this.offsetHeight || this.getClientRects().length; }; function isVisible(element) { return toNodes(element).some((element2) => isVisibleFn.call(element2)); } function parent(element) { var _a; return (_a = toNode(element)) == null ? void 0 : _a.parentElement; } function filter(element, selector) { return toNodes(element).filter((element2) => matches(element2, selector)); } function matches(element, selector) { return toNodes(element).some((element2) => element2.matches(selector)); } function children(element, selector) { element = toNode(element); const children2 = element ? toArray(element.children) : []; return selector ? filter(children2, selector) : children2; } function index(element, ref) { return children(parent(element)).indexOf(element); } function findAll(selector, context) { return toNodes(_query(selector, toNode(context), "querySelectorAll")); } const addStarRe = /([!>+~-])(?=\s+[!>+~-]|\s*$)/g; const splitSelectorRe = /(\([^)]*\)|[^,])+/g; const parseSelector = memoize((selector) => { let isContextSelector = false; if (!selector || !isString(selector)) { return {}; } const selectors = []; for (let sel of selector.match(splitSelectorRe)) { sel = sel.trim().replace(addStarRe, "$1 *"); isContextSelector || (isContextSelector = ["!", "+", "~", "-", ">"].includes(sel[0])); selectors.push(sel); } return { selector: selectors.join(","), selectors, isContextSelector }; }); const positionRe = /(\([^)]*\)|\S)*/; const parsePositionSelector = memoize((selector) => { selector = selector.slice(1).trim(); const [position] = selector.match(positionRe); return [position, selector.slice(position.length + 1)]; }); function _query(selector, context = document, queryFn) { var _a; const parsed = parseSelector(selector); if (!parsed.isContextSelector) { return parsed.selector ? _doQuery(context, queryFn, parsed.selector) : selector; } selector = ""; const isSingle = parsed.selectors.length === 1; for (let sel of parsed.selectors) { let positionSel; let ctx = context; if (sel[0] === "!") { [positionSel, sel] = parsePositionSelector(sel); ctx = (_a = context.parentElement) == null ? void 0 : _a.closest(positionSel); if (!sel && isSingle) { return ctx; } } if (ctx && sel[0] === "-") { [positionSel, sel] = parsePositionSelector(sel); ctx = ctx.previousElementSibling; ctx = matches(ctx, positionSel) ? ctx : null; if (!sel && isSingle) { return ctx; } } if (!ctx) { continue; } if (isSingle) { if (sel[0] === "~" || sel[0] === "+") { sel = `:scope > :nth-child(${index(ctx) + 1}) ${sel}`; ctx = ctx.parentElement; } else if (sel[0] === ">") { sel = `:scope ${sel}`; } return _doQuery(ctx, queryFn, sel); } selector += `${selector ? "," : ""}${domPath(ctx)} ${sel}`; } if (!isDocument(context)) { context = context.ownerDocument; } return _doQuery(context, queryFn, selector); } function _doQuery(context, queryFn, selector) { try { return context[queryFn](selector); } catch (e) { return null; } } function domPath(element) { const names = []; while (element.parentNode) { const id = attr(element, "id"); if (id) { names.unshift(`#${escape(id)}`); break; } else { let { tagName } = element; if (tagName !== "HTML") { tagName += `:nth-child(${index(element) + 1})`; } names.unshift(tagName); element = element.parentNode; } } return names.join(" > "); } function escape(css) { return isString(css) ? CSS.escape(css) : ""; } const singleTagRe = /^<(\w+)\s*\/?>(?:<\/\1>)?$/; function fragment(html2) { const matches = singleTagRe.exec(html2); if (matches) { return document.createElement(matches[1]); } const container = document.createElement("template"); container.innerHTML = html2.trim(); return unwrapSingle(container.content.childNodes); } function unwrapSingle(nodes) { return nodes.length > 1 ? nodes : nodes[0]; } function $$(selector, context) { return isHtml(selector) ? toNodes(fragment(selector)) : findAll(selector, context); } function isHtml(str) { return isString(str) && startsWith(str.trim(), "<"); } function getMaxPathLength(el) { return isVisible(el) ? Math.ceil( Math.max(0, ...$$("[stroke]", el).map((stroke) => { var _a; return ((_a = stroke.getTotalLength) == null ? void 0 : _a.call(stroke)) || 0; })) ) : 0; } const props = { x: transformFn, y: transformFn, rotate: transformFn, scale: transformFn, color: colorFn, backgroundColor: colorFn, borderColor: colorFn, blur: filterFn, hue: filterFn, fopacity: filterFn, grayscale: filterFn, invert: filterFn, saturate: filterFn, sepia: filterFn, opacity: cssPropFn, stroke: strokeFn, bgx: backgroundFn, bgy: backgroundFn }; const { keys } = Object; var Parallax = { mixins: [Media], props: fillObject(keys(props), "list"), data: fillObject(keys(props), void 0), computed: { props(properties, $el) { const stops = {}; for (const prop in properties) { if (prop in props && !uikitUtil.isUndefined(properties[prop])) { stops[prop] = properties[prop].slice(); } } const result = {}; for (const prop in stops) { result[prop] = props[prop](prop, $el, stops[prop], stops); } return result; } }, events: { load() { this.$emit(); } }, methods: { reset() { uikitUtil.resetProps(this.$el, this.getCss(0)); }, getCss(percent) { const css2 = {}; for (const prop in this.props) { this.props[prop](css2, uikitUtil.clamp(percent)); } css2.willChange = Object.keys(css2).map(uikitUtil.propName).join(","); return css2; } } }; function transformFn(prop, el, stops) { let unit = getUnit(stops) || { x: "px", y: "px", rotate: "deg" }[prop] || ""; let transformFn2; if (prop === "x" || prop === "y") { prop = `translate${uikitUtil.ucfirst(prop)}`; transformFn2 = (stop) => uikitUtil.toFloat(uikitUtil.toFloat(stop).toFixed(unit === "px" ? 0 : 6)); } else if (prop === "scale") { unit = ""; transformFn2 = (stop) => { var _a; return getUnit([stop]) ? uikitUtil.toPx(stop, "width", el, true) / el[`offset${((_a = stop.endsWith) == null ? void 0 : _a.call(stop, "vh")) ? "Height" : "Width"}`] : uikitUtil.toFloat(stop); }; } if (stops.length === 1) { stops.unshift(prop === "scale" ? 1 : 0); } stops = parseStops(stops, transformFn2); return (css2, percent) => { css2.transform = `${css2.transform || ""} ${prop}(${getValue(stops, percent)}${unit})`; }; } function colorFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops, (stop) => parseColor(el, stop)); return (css2, percent) => { const [start, end, p] = getStop(stops, percent); const value = start.map((value2, i) => { value2 += p * (end[i] - value2); return i === 3 ? uikitUtil.toFloat(value2) : parseInt(value2, 10); }).join(","); css2[prop] = `rgba(${value})`; }; } function parseColor(el, color) { return getCssValue(el, "color", color).split(/[(),]/g).slice(1, -1).concat(1).slice(0, 4).map(uikitUtil.toFloat); } function filterFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops) || { blur: "px", hue: "deg" }[prop] || "%"; prop = { fopacity: "opacity", hue: "hue-rotate" }[prop] || prop; stops = parseStops(stops); return (css2, percent) => { const value = getValue(stops, percent); css2.filter = `${css2.filter || ""} ${prop}(${value + unit})`; }; } function cssPropFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops); return (css2, percent) => { css2[prop] = getValue(stops, percent); }; } function strokeFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops); const length = getMaxPathLength(el); stops = parseStops(stops.reverse(), (stop) => { stop = uikitUtil.toFloat(stop); return unit === "%" ? stop * length / 100 : stop; }); if (!stops.some(([value]) => value)) { return uikitUtil.noop; } uikitUtil.css(el, "strokeDasharray", length); return (css2, percent) => { css2.strokeDashoffset = getValue(stops, percent); }; } function backgroundFn(prop, el, stops, props2) { if (stops.length === 1) { stops.unshift(0); } const attr = prop === "bgy" ? "height" : "width"; props2[prop] = parseStops(stops, (stop) => uikitUtil.toPx(stop, attr, el)); const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); if (bgProps.length === 2 && prop === "bgx") { return uikitUtil.noop; } if (getCssValue(el, "backgroundSize", "") === "cover") { return backgroundCoverFn(prop, el, stops, props2); } const positions = {}; for (const prop2 of bgProps) { positions[prop2] = getBackgroundPos(el, prop2); } return setBackgroundPosFn(bgProps, positions, props2); } function backgroundCoverFn(prop, el, stops, props2) { const dimImage = getBackgroundImageDimensions(el); if (!dimImage.width) { return uikitUtil.noop; } const dimEl = { width: el.offsetWidth, height: el.offsetHeight }; const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); const positions = {}; for (const prop2 of bgProps) { const values = props2[prop2].map(([value]) => value); const min = Math.min(...values); const max = Math.max(...values); const down = values.indexOf(min) < values.indexOf(max); const diff = max - min; positions[prop2] = `${(down ? -diff : 0) - (down ? min : max)}px`; dimEl[prop2 === "bgy" ? "height" : "width"] += diff; } const dim = uikitUtil.Dimensions.cover(dimImage, dimEl); for (const prop2 of bgProps) { const attr = prop2 === "bgy" ? "height" : "width"; const overflow = dim[attr] - dimEl[attr]; positions[prop2] = `max(${getBackgroundPos(el, prop2)},-${overflow}px) + ${positions[prop2]}`; } const fn = setBackgroundPosFn(bgProps, positions, props2); return (css2, percent) => { fn(css2, percent); css2.backgroundSize = `${dim.width}px ${dim.height}px`; css2.backgroundRepeat = "no-repeat"; }; } function getBackgroundPos(el, prop) { return getCssValue(el, `background-position-${prop.slice(-1)}`, ""); } function setBackgroundPosFn(bgProps, positions, props2) { return function(css2, percent) { for (const prop of bgProps) { const value = getValue(props2[prop], percent); css2[`background-position-${prop.slice(-1)}`] = `calc(${positions[prop]} + ${value}px)`; } }; } const loading = {}; const dimensions = {}; function getBackgroundImageDimensions(el) { const src = uikitUtil.css(el, "backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/, "$1"); if (dimensions[src]) { return dimensions[src]; } const image = new Image(); if (src) { image.src = src; if (!image.naturalWidth && !loading[src]) { uikitUtil.once(image, "error load", () => { dimensions[src] = toDimensions(image); uikitUtil.trigger(el, uikitUtil.createEvent("load", false)); }); loading[src] = true; return toDimensions(image); } } return dimensions[src] = toDimensions(image); } function toDimensions(image) { return { width: image.naturalWidth, height: image.naturalHeight }; } function parseStops(stops, fn = uikitUtil.toFloat) { const result = []; const { length } = stops; let nullIndex = 0; for (let i = 0; i < length; i++) { let [value, percent] = uikitUtil.isString(stops[i]) ? stops[i].trim().split(/ (?![^(]*\))/) : [stops[i]]; value = fn(value); percent = percent ? uikitUtil.toFloat(percent) / 100 : null; if (i === 0) { if (percent === null) { percent = 0; } else if (percent) { result.push([value, 0]); } } else if (i === length - 1) { if (percent === null) { percent = 1; } else if (percent !== 1) { result.push([value, percent]); percent = 1; } } result.push([value, percent]); if (percent === null) { nullIndex++; } else if (nullIndex) { const leftPercent = result[i - nullIndex - 1][1]; const p = (percent - leftPercent) / (nullIndex + 1); for (let j = nullIndex; j > 0; j--) { result[i - j][1] = leftPercent + p * (nullIndex - j + 1); } nullIndex = 0; } } return result; } function getStop(stops, percent) { const index = uikitUtil.findIndex(stops.slice(1), ([, targetPercent]) => percent <= targetPercent) + 1; return [ stops[index - 1][0], stops[index][0], (percent - stops[index - 1][1]) / (stops[index][1] - stops[index - 1][1]) ]; } function getValue(stops, percent) { const [start, end, p] = getStop(stops, percent); return start + Math.abs(start - end) * p * (start < end ? 1 : -1); } const unitRe = /^-?\d+(?:\.\d+)?(\S+)?/; function getUnit(stops, defaultUnit) { var _a; for (const stop of stops) { const match = (_a = stop.match) == null ? void 0 : _a.call(stop, unitRe); if (match) { return match[1]; } } return defaultUnit; } function getCssValue(el, prop, value) { const prev = el.style[prop]; const val = uikitUtil.css(uikitUtil.css(el, prop, value), prop); el.style[prop] = prev; return val; } function fillObject(keys2, value) { return keys2.reduce((data, prop) => { data[prop] = value; return data; }, {}); } var Component = { mixins: [Parallax], beforeConnect() { this.item = this.$el.closest(`.${this.$options.id.replace("parallax", "items")} > *`); }, disconnected() { this.item = null; }, events: [ { name: "itemin itemout", self: true, el: ({ item }) => item, handler({ type, detail: { percent, duration, timing, dir } }) { uikitUtil.fastdom.read(() => { if (!this.matchMedia) { return; } const propsFrom = this.getCss(getCurrentPercent(type, dir, percent)); const propsTo = this.getCss(isIn(type) ? 0.5 : dir > 0 ? 1 : 0); uikitUtil.fastdom.write(() => { uikitUtil.css(this.$el, propsFrom); uikitUtil.Transition.start(this.$el, propsTo, duration, timing).catch(uikitUtil.noop); }); }); } }, { name: "transitioncanceled transitionend", self: true, el: ({ item }) => item, handler() { uikitUtil.Transition.cancel(this.$el); } }, { name: "itemtranslatein itemtranslateout", self: true, el: ({ item }) => item, handler({ type, detail: { percent, dir } }) { uikitUtil.fastdom.read(() => { if (!this.matchMedia) { this.reset(); return; } const props = this.getCss(getCurrentPercent(type, dir, percent)); uikitUtil.fastdom.write(() => uikitUtil.css(this.$el, props)); }); } } ] }; function isIn(type) { return uikitUtil.endsWith(type, "in"); } function getCurrentPercent(type, dir, percent) { percent /= 2; return isIn(type) ^ dir < 0 ? percent : 1 - percent; } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("slideshowParallax", Component); } return Component; })); assets/uikit/dist/js/components/lightbox-panel.min.js000064400000066214151666572350017025 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(t,k){typeof exports=="object"&&typeof module<"u"?module.exports=k(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitlightbox_panel",["uikit-util"],k):(t=typeof globalThis<"u"?globalThis:t||self,t.UIkitLightbox_panel=k(t.UIkit.util))})(this,(function(t){"use strict";function k(e,s="update"){e._connected&&e._updates.length&&(e._updateCount||(e._updateCount=0,requestAnimationFrame(()=>e._updateCount=0)),e._queued||(e._queued=new Set,t.fastdom.read(()=>{e._connected&&Y(e,e._queued),e._queued=null})),e._updateCount++<20&&e._queued.add(s.type||s))}function Y(e,s){for(const{read:i,write:n,events:o=[]}of e._updates){if(!s.has("update")&&!o.some(h=>s.has(h)))continue;let r;i&&(r=i.call(e,e._data,s),r&&t.isPlainObject(r)&&t.assign(e._data,r)),n&&r!==!1&&t.fastdom.write(()=>{e._connected&&n.call(e,e._data,s)})}}function Z(e){return D(t.observeResize,e,"resize")}function K(e){return D(t.observeIntersection,e)}function D(e,s,i){return{observe:e,handler(){k(this,i)},...s}}function ee(e,s=[]){try{return e?t.startsWith(e,"{")?JSON.parse(e):s.length&&!t.includes(e,":")?{[s[0]]:e}:e.split(";").reduce((i,n)=>{const[o,r]=n.split(/:(.*)/);return o&&!t.isUndefined(r)&&(i[o.trim()]=r.trim()),i},{}):{}}catch{return{}}}K({handler(e,s){this.load(),s.disconnect()},options:({margin:e})=>({rootMargin:e}),filter:({loading:e})=>e==="lazy",target:({$el:e,$props:s})=>s.target?[e,...t.queryAll(s.target,e)]:e});function te(e,s){if(s=se(s),s.length){const i=t.fragment("<picture>");for(const n of s){const o=t.fragment("<source>");t.attr(o,n),t.append(i,o)}t.append(i,e)}}function se(e){if(!e)return[];if(t.startsWith(e,"["))try{e=JSON.parse(e)}catch{e=[]}else e=ee(e);return t.isArray(e)||(e=[e]),e.filter(s=>!t.isEmpty(s))}let P;function ie(e){const s=t.on(e,"touchstart",o=>{if(o.targetTouches.length!==1||t.matches(o.target,'input[type="range"'))return;let r=t.getEventPos(o).y;const h=t.on(e,"touchmove",a=>{const d=t.getEventPos(a).y;d!==r&&(r=d,t.scrollParents(a.target).some(c=>{if(!e.contains(c))return!1;let{scrollHeight:m,clientHeight:l}=c;return l<m})||a.preventDefault())},{passive:!1});t.once(e,"scroll touchend touchcanel",h,{capture:!0})},{passive:!0});if(P)return s;P=!0;const{scrollingElement:i}=document,n={overflowY:CSS.supports("overflow","clip")?"clip":"hidden",touchAction:"none",paddingRight:t.width(window)-i.clientWidth||""};return t.css(i,n),()=>{P=!1,s(),t.resetProps(i,n)}}var ne={connected(){t.addClass(this.$el,this.$options.id)}},re={props:{container:Boolean},data:{container:!0},computed:{container({container:e}){return e===!0&&this.$container||e&&t.$(e)}}};function O(e){e.target.closest('a[href="#"],a[href=""]')&&e.preventDefault()}function M(e){const s=t.scrollParent(e),{scrollTop:i}=s;return()=>{i!==s.scrollTop&&(s.scrollTop=i)}}var oe={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglable-enter",clsLeave:"uk-togglable-leave"},computed:{hasAnimation:({animation:e})=>!!e[0],hasTransition:({animation:e})=>["slide","reveal"].some(s=>t.startsWith(e[0],s))},methods:{async toggleElement(e,s,i){try{return await Promise.all(t.toNodes(e).map(n=>{const o=t.isBoolean(s)?s:!this.isToggled(n);if(!t.trigger(n,`before${o?"show":"hide"}`,[this]))return Promise.reject();const r=(t.isFunction(i)?i:i===!1||!this.hasAnimation?ae:this.hasTransition?he:de)(n,o,this),h=o?this.clsEnter:this.clsLeave;t.addClass(n,h),t.trigger(n,o?"show":"hide",[this]);const a=()=>{var d;if(t.removeClass(n,h),t.trigger(n,o?"shown":"hidden",[this]),o){const c=M(n);(d=t.$$("[autofocus]",n).find(t.isVisible))==null||d.focus(),c()}};return r?r.then(a,()=>(t.removeClass(n,h),Promise.reject())):a()})),!0}catch{return!1}},isToggled(e=this.$el){return e=t.toNode(e),t.hasClass(e,this.clsEnter)?!0:t.hasClass(e,this.clsLeave)?!1:this.cls?t.hasClass(e,this.cls.split(" ")[0]):t.isVisible(e)},_toggle(e,s){if(!e)return;s=!!s;let i;this.cls?(i=t.includes(this.cls," ")||s!==t.hasClass(e,this.cls),i&&t.toggleClass(e,this.cls,t.includes(this.cls," ")?void 0:s)):(i=s===e.hidden,i&&(e.hidden=!s)),i&&t.trigger(e,"toggled",[s,this])}}};function ae(e,s,{_toggle:i}){return t.Animation.cancel(e),t.Transition.cancel(e),i(e,s)}async function he(e,s,{animation:i,duration:n,velocity:o,transition:r,_toggle:h}){var a;const[d="reveal",c="top"]=((a=i[0])==null?void 0:a.split("-"))||[],m=[["left","right"],["top","bottom"]],l=m[t.includes(m[0],c)?0:1],f=l[1]===c,u=["width","height"][m.indexOf(l)],x=`margin-${l[0]}`,T=`margin-${c}`;let w=t.dimensions(e)[u];const Ne=t.Transition.inProgress(e);await t.Transition.cancel(e),s&&h(e,!0);const De=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",x,T].map(Q=>[Q,e.style[Q]])),$=t.dimensions(e),N=t.toFloat(t.css(e,x)),G=t.toFloat(t.css(e,T)),b=$[u]+G;!Ne&&!s&&(w+=G);const[_]=t.wrapInner(e,"<div>");t.css(_,{boxSizing:"border-box",height:$.height,width:$.width,...t.css(e,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",T])}),t.css(e,{padding:0,border:0,minWidth:0,minHeight:0,[T]:0,width:$.width,height:$.height,overflow:"hidden",[u]:w});const J=w/b;n=(o*b+n)*(s?1-J:J);const X={[u]:s?b:0};f&&(t.css(e,x,b-w+N),X[x]=s?N:b+N),!f^d==="reveal"&&(t.css(_,x,-b+w),t.Transition.start(_,{[x]:s?0:-b},n,r));try{await t.Transition.start(e,X,n,r)}finally{t.css(e,De),t.unwrap(_.firstChild),s||h(e,!1)}}function de(e,s,i){const{animation:n,duration:o,_toggle:r}=i;return s?(r(e,!0),t.Animation.in(e,n[0],o,i.origin)):t.Animation.out(e,n[1]||n[0],o,i.origin).then(()=>r(e,!1))}const p=[];var le={mixins:[ne,re,oe],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel:({selPanel:e},s)=>t.$(e,s),transitionElement(){return this.panel}},connected(){const e=this.panel||this.$el;e.role=this.role,this.overlay&&(e.ariaModal=!0)},beforeDisconnect(){t.includes(p,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:({selClose:e})=>`${e},a[href*="#"]`,handler(e){const{current:s,defaultPrevented:i}=e,{hash:n}=s;!i&&n&&t.isSameSiteAnchor(s)&&!this.$el.contains(t.$(n))?this.hide():t.matches(s,this.selClose)&&(O(e),this.hide())}},{name:"toggle",self:!0,handler(e,s){e.defaultPrevented||(e.preventDefault(),this.target=s==null?void 0:s.$el,this.isToggled()===t.includes(p,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(e){if(t.includes(p,this))return!1;!this.stack&&p.length?(Promise.all(p.map(s=>s.hide())).then(this.show),e.preventDefault()):p.push(this)}},{name:"show",self:!0,handler(){this.stack&&t.css(this.$el,"zIndex",t.toFloat(t.css(this.$el,"zIndex"))+p.length);const e=[this.overlay&&fe(this),this.overlay&&ie(this.$el),this.bgClose&&pe(this),this.escClose&&me(this)];t.once(this.$el,"hidden",()=>e.forEach(s=>s&&s()),{self:!0}),t.addClass(document.documentElement,this.clsPage),F(this.target,!0)}},{name:"shown",self:!0,handler(){t.isFocusable(this.$el)||(this.$el.tabIndex=-1),t.matches(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){t.includes(p,this)&&p.splice(p.indexOf(this),1),t.css(this.$el,"zIndex","");const{target:e}=this;p.some(s=>s.clsPage===this.clsPage)||(t.removeClass(document.documentElement,this.clsPage),queueMicrotask(()=>{if(t.isFocusable(e)){const s=M(e);e.focus(),s()}})),F(e,!1),this.target=null}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&t.parent(this.$el)!==this.container?(t.append(this.container,this.$el),new Promise(e=>requestAnimationFrame(()=>this.show().then(e)))):this.toggleElement(this.$el,!0,B)},hide(){return this.toggleElement(this.$el,!1,B)}}};function B(e,s,{transitionElement:i,_toggle:n}){return new Promise((o,r)=>t.once(e,"show hide",()=>{var h;(h=e._reject)==null||h.call(e),e._reject=r,n(e,s);const a=t.once(i,"transitionstart",()=>{t.once(i,"transitionend transitioncancel",o,{self:!0}),clearTimeout(d)},{self:!0}),d=setTimeout(()=>{a(),o()},ce(t.css(i,"transitionDuration")))})).then(()=>delete e._reject)}function ce(e){return e?t.endsWith(e,"ms")?t.toFloat(e):t.toFloat(e)*1e3:0}function fe(e){return t.on(document,"focusin",s=>{t.last(p)===e&&!e.$el.contains(s.target)&&e.$el.focus()})}function pe(e){return t.on(document,t.pointerDown,({target:s})=>{t.last(p)!==e||e.overlay&&!e.$el.contains(s)||!e.panel||e.panel.contains(s)||t.once(document,`${t.pointerUp} ${t.pointerCancel} scroll`,({defaultPrevented:i,type:n,target:o})=>{!i&&n===t.pointerUp&&s===o&&e.hide()},!0)})}function me(e){return t.on(document,"keydown",s=>{s.keyCode===27&&t.last(p)===e&&e.hide()})}function F(e,s){e!=null&&e.ariaExpanded&&(e.ariaExpanded=s)}var S={slide:{show(e){return[{transform:y(e*-100)},{transform:y()}]},percent(e){return ge(e)},translate(e,s){return[{transform:y(s*-100*e)},{transform:y(s*100*(1-e))}]}}};function ge(e){return Math.abs(new DOMMatrix(t.css(e,"transform")).m41/e.offsetWidth)}function y(e=0,s="%"){return e?`translate3d(${e+s}, 0, 0)`:""}function ue(e,s,i,{animation:n,easing:o}){const{percent:r,translate:h,show:a=t.noop}=n,d=a(i),{promise:c,resolve:m}=ve();return{dir:i,show(l,f=0,V){const u=V?"linear":o;return l-=Math.round(l*t.clamp(f,-1,1)),this.translate(f),I(s,"itemin",{percent:f,duration:l,timing:u,dir:i}),I(e,"itemout",{percent:1-f,duration:l,timing:u,dir:i}),Promise.all([t.Transition.start(s,d[1],l,u),t.Transition.start(e,d[0],l,u)]).then(()=>{this.reset(),m()},t.noop),c},cancel(){return t.Transition.cancel([s,e])},reset(){t.resetProps([s,e],d[0])},async forward(l,f=this.percent()){return await this.cancel(),this.show(l,f,!0)},translate(l){this.reset();const f=h(l,i);t.css(s,f[1]),t.css(e,f[0]),I(s,"itemtranslatein",{percent:l,dir:i}),I(e,"itemtranslateout",{percent:1-l,dir:i})},percent(){return r(e||s,s,i)},getDistance(){return e==null?void 0:e.offsetWidth}}}function I(e,s,i){t.trigger(e,t.createEvent(s,!1,!1,i))}function ve(){let e;return{promise:new Promise(s=>e=s),resolve:e}}var be={props:{i18n:Object},data:{i18n:null},methods:{t(e,...s){var i,n,o;let r=0;return((o=((i=this.i18n)==null?void 0:i[e])||((n=this.$options.i18n)==null?void 0:n[e]))==null?void 0:o.replace(/%s/g,()=>s[r++]||""))||""}}},xe={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){t.attr(this.list,"aria-live",this.autoplay?"off":"polite"),this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){t.attr(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el:()=>document,filter:({autoplay:e})=>e,handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>{this.stack.length||!t.isVisible(this.$el)||this.draggable&&t.matches(this.$el,":focus-within")&&!t.matches(this.$el,":focus")||this.pauseOnHover&&t.matches(this.$el,":hover")||this.show("next")},this.autoplayInterval)},stopAutoplay(){clearInterval(this.interval)}}};const C={passive:!1,capture:!0},L={passive:!0,capture:!0},ke="touchstart mousedown",E="touchmove mousemove",z="touchend touchcancel mouseup click input scroll";var we={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const e of["start","move","end"]){const s=this[e];this[e]=i=>{const n=t.getEventPos(i).x*(t.isRtl?-1:1);this.prevPos=n===this.pos?this.prevPos:this.pos,this.pos=n,s(i)}}},events:[{name:ke,passive:!0,delegate:({selList:e})=>`${e} > *`,handler(e){!this.draggable||this.parallax||!t.isTouch(e)&&$e(e.target)||e.target.closest(t.selInput)||e.button>0||this.length<2||this.start(e)}},{name:"dragstart",handler(e){e.preventDefault()}},{name:E,el:({list:e})=>e,handler:t.noop,...C}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,t.on(document,E,this.move,C),t.on(document,z,this.end,L),t.css(this.list,"userSelect","none")},move(e){const s=this.pos-this.drag;if(s===0||this.prevPos===this.pos||!this.dragging&&Math.abs(s)<this.threshold)return;e.cancelable&&e.preventDefault(),this.dragging=!0,this.dir=s<0?1:-1;let{slides:i,prevIndex:n}=this,o=Math.abs(s),r=this.getIndex(n+this.dir),h=H.call(this,n,r);for(;r!==n&&o>h;)this.drag-=h*this.dir,n=r,o-=h,r=this.getIndex(n+this.dir),h=H.call(this,n,r);this.percent=o/h;const a=i[n],d=i[r],c=this.index!==r,m=n===r;let l;for(const f of[this.index,this.prevIndex])t.includes([r,n],f)||(t.trigger(i[f],"itemhidden",[this]),m&&(l=!0,this.prevIndex=n));(this.index===n&&this.prevIndex!==n||l)&&t.trigger(i[this.index],"itemshown",[this]),c&&(this.prevIndex=n,this.index=r,m||(t.trigger(a,"beforeitemhide",[this]),t.trigger(a,"itemhide",[this])),t.trigger(d,"beforeitemshow",[this]),t.trigger(d,"itemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!m&&d)},end(){if(t.off(document,E,this.move,C),t.off(document,z,this.end,L),this.dragging)if(setTimeout(t.on(this.list,"click",e=>e.preventDefault(),C)),this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const e=(t.isRtl?this.dir*(t.isRtl?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=e?this.index:this.prevIndex,e&&(t.trigger(this.slides[this.prevIndex],"itemhidden",[this]),t.trigger(this.slides[this.index],"itemshown",[this]),this.percent=1-this.percent),this.show(this.dir>0&&!e||this.dir<0&&e?"next":"previous",!0)}t.css(this.list,{userSelect:""}),this.drag=this.percent=null}}};function H(e,s){return this._getTransitioner(e,e!==s&&s).getDistance()||this.slides[e].offsetWidth}function $e(e){return t.css(e,"userSelect")!=="none"&&t.toArray(e.childNodes).some(s=>s.nodeType===3&&s.textContent.trim())}t.memoize((e,s)=>{const i=Object.keys(s),n=i.concat(e).map(o=>[t.hyphenate(o),`data-${t.hyphenate(o)}`]).flat();return{attributes:i,filter:n}});let ye=1;function R(e,s=null){return(s==null?void 0:s.id)||`${e.$options.id}-${ye++}`}const g={SPACE:32,END:35,HOME:36,LEFT:37,RIGHT:39};var Ie={i18n:{next:"Next slide",previous:"Previous slide",slideX:"Slide %s",slideLabel:"%s of %s",role:"String"},data:{selNav:!1,role:"region"},computed:{nav:({selNav:e},s)=>t.$(e,s),navChildren(){return t.children(this.nav)},selNavItem:({attrItem:e})=>`[${e}],[data-${e}]`,navItems(e,s){return t.$$(this.selNavItem,s)}},watch:{nav(e,s){t.attr(e,"role","tablist"),this.padNavitems(),s&&this.$emit()},list(e){t.isTag(e,"ul")&&t.attr(e,"role","presentation")},navChildren(e){t.attr(e,"role","presentation"),this.padNavitems(),this.updateNav()},navItems(e){for(const s of e){const i=t.data(s,this.attrItem),n=t.$("a,button",s)||s;let o,r=null;if(t.isNumeric(i)){const h=t.toNumber(i),a=this.slides[h];a&&(a.id||(a.id=R(this,a)),r=a.id),o=this.t("slideX",t.toFloat(i)+1),n.role="tab"}else this.list&&(this.list.id||(this.list.id=R(this,this.list)),r=this.list.id),o=this.t(i);n.ariaControls=r,n.ariaLabel=n.ariaLabel||o}},slides(e){e.forEach((s,i)=>t.attr(s,{role:this.nav?"tabpanel":"group","aria-label":this.t("slideLabel",i+1,this.length),"aria-roledescription":this.nav?null:"slide"})),this.padNavitems()}},connected(){this.$el.role=this.role,this.$el.ariaRoleDescription="carousel"},update:[{write(){this.navItems.concat(this.nav).forEach(e=>e&&(e.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]}],events:[{name:"click keydown",delegate:({selNavItem:e})=>e,filter:({parallax:e})=>!e,handler(e){e.target.closest("a,button")&&(e.type==="click"||e.keyCode===g.SPACE)&&(O(e),this.show(t.data(e.current,this.attrItem)))}},{name:"itemshow",handler(){this.updateNav()}},{name:"keydown",delegate:({selNavItem:e})=>e,filter:({parallax:e})=>!e,handler(e){const{current:s,keyCode:i}=e,n=t.data(s,this.attrItem);if(!t.isNumeric(n))return;let o=i===g.HOME?0:i===g.END?"last":i===g.LEFT?"previous":i===g.RIGHT?"next":-1;~o&&(e.preventDefault(),this.show(o))}}],methods:{updateNav(){const e=this.getValidIndex();for(const s of this.navItems){const i=t.data(s,this.attrItem),n=t.$("a,button",s)||s;if(t.isNumeric(i)){const r=t.toNumber(i)===e;t.toggleClass(s,this.clsActive,r),t.toggleClass(n,"uk-disabled",!!this.parallax),n.ariaSelected=r,n.tabIndex=r&&!this.parallax?null:-1,r&&n&&t.matches(t.parent(s),":focus-within")&&n.focus()}else t.toggleClass(s,"uk-invisible",this.finite&&(i==="previous"&&e===0||i==="next"&&e>=this.maxIndex))}},padNavitems(){if(!this.nav)return;const e=[];for(let s=0;s<this.length;s++){const i=`${this.attrItem}="${s}"`;e[s]=this.navChildren.findLast(n=>n.matches(`[${i}]`))||t.$(`<li ${i}><a href></a></li>`)}t.isEqual(e,this.navChildren)||t.html(this.nav,e)}}};const Ce="cubic-bezier(0.25, 0.46, 0.45, 0.94)",Ae="cubic-bezier(0.165, 0.84, 0.44, 1)";var Te={mixins:[xe,we,Ie,be],props:{clsActivated:String,easing:String,index:Number,finite:Boolean,velocity:Number},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:"",clsEnter:"uk-slide-enter",clsLeave:"uk-slide-leave",clsSlideActive:"uk-slide-active",Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){t.removeClass(this.slides,this.clsActive)},computed:{duration:({velocity:e},s)=>Pe(s.offsetWidth/e),list:({selList:e},s)=>t.$(e,s),maxIndex(){return this.length-1},slides(){return t.children(this.list)},length(){return this.slides.length}},watch:{slides(e,s){s&&this.$emit()}},events:{itemshow({target:e}){t.addClass(e,this.clsEnter,this.clsSlideActive)},itemshown({target:e}){t.removeClass(e,this.clsEnter)},itemhide({target:e}){t.addClass(e,this.clsLeave)},itemhidden({target:e}){t.removeClass(e,this.clsLeave,this.clsSlideActive)}},methods:{async show(e,s=!1){var i;if(this.dragging||!this.length||this.parallax)return;const{stack:n}=this,o=s?0:n.length,r=()=>{n.splice(o,1),n.length&&this.show(n.shift(),!0)};if(n[s?"unshift":"push"](e),!s&&n.length>1){n.length===2&&((i=this._transitioner)==null||i.forward(Math.min(this.duration,200)));return}const h=this.getIndex(this.index),a=t.hasClass(this.slides,this.clsActive)&&this.slides[h],d=this.getIndex(e,this.index),c=this.slides[d];if(a===c){r();return}if(this.dir=_e(e,h),this.prevIndex=h,this.index=d,a&&!t.trigger(a,"beforeitemhide",[this])||!t.trigger(c,"beforeitemshow",[this,a])){this.index=this.prevIndex,r();return}a&&t.trigger(a,"itemhide",[this]),t.trigger(c,"itemshow",[this]),await this._show(a,c,s),a&&t.trigger(a,"itemhidden",[this]),t.trigger(c,"itemshown",[this]),n.shift(),this._transitioner=null,n.length&&requestAnimationFrame(()=>n.length&&this.show(n.shift(),!0))},getIndex(e=this.index,s=this.index){return t.clamp(t.getIndex(e,this.slides,s,this.finite),0,Math.max(0,this.maxIndex))},getValidIndex(e=this.index,s=this.prevIndex){return this.getIndex(e,s)},async _show(e,s,i){if(this._transitioner=this._getTransitioner(e,s,this.dir,{easing:i?s.offsetWidth<600?Ce:Ae:this.easing,...this.transitionOptions}),!i&&!e){this._translate(1);return}const{length:n}=this.stack;return this._transitioner[n>1?"forward":"show"](n>1?Math.min(this.duration,75+75/(n-1)):this.duration,this.percent)},_translate(e,s=this.prevIndex,i=this.index){const n=this._getTransitioner(s===i?!1:s,i);return n.translate(e),n},_getTransitioner(e=this.prevIndex,s=this.index,i=this.dir||1,n=this.transitionOptions){return new this.Transitioner(t.isNumber(e)?this.slides[e]:e,t.isNumber(s)?this.slides[s]:s,i*(t.isRtl?-1:1),n)}}};function _e(e,s){return e==="next"?1:e==="previous"||e<s?-1:1}function Pe(e){return .5*e+300}var Se={mixins:[Te],props:{animation:String},data:{animation:"slide",clsActivated:"uk-transition-active",Animations:S,Transitioner:ue},computed:{animation({animation:e,Animations:s}){return{...s[e]||s.slide,name:e}},transitionOptions(){return{animation:this.animation}}},observe:Z(),events:{itemshow({target:e}){t.addClass(e,this.clsActive)},itemshown({target:e}){t.addClass(e,this.clsActivated)},itemhidden({target:e}){t.removeClass(e,this.clsActive,this.clsActivated)}}};({...S});function A(e){return`scale3d(${e}, ${e}, 1)`}var j={...S,fade:{show(){return[{opacity:0},{opacity:1}]},percent(e){return 1-t.css(e,"opacity")},translate(e){return[{opacity:1-e},{opacity:e}]}},scale:{show(){return[{opacity:0,transform:A(1-.2)},{opacity:1,transform:A(1)}]},percent(e){return 1-t.css(e,"opacity")},translate(e){return[{opacity:1-e,transform:A(1-.2*e)},{opacity:e,transform:A(1-.2+.2*e)}]}}},W={i18n:{counter:"%s / %s"},mixins:[le,Se],functional:!0,props:{counter:Boolean,preload:Number,nav:Boolean,slidenav:Boolean,delayControls:Number,videoAutoplay:Boolean,template:String},data:()=>({counter:!1,preload:1,nav:!1,slidenav:!0,delayControls:3e3,videoAutoplay:!1,items:[],cls:"uk-open",clsPage:"uk-lightbox-page",clsFit:"uk-lightbox-items-fit",clsZoom:"uk-lightbox-zoom",attrItem:"uk-lightbox-item",selList:".uk-lightbox-items",selClose:".uk-close-large",selNav:".uk-lightbox-thumbnav, .uk-lightbox-dotnav",selCaption:".uk-lightbox-caption",selCounter:".uk-lightbox-counter",pauseOnHover:!1,velocity:2,Animations:j,template:'<div class="uk-lightbox uk-overflow-hidden"> <div class="uk-lightbox-items"></div> <div class="uk-position-top-right uk-position-small uk-transition-fade" uk-inverse> <button class="uk-lightbox-close uk-close-large" type="button" uk-close></button> </div> <div class="uk-lightbox-slidenav uk-position-center-left uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-previous uk-lightbox-item="previous"></a> </div> <div class="uk-lightbox-slidenav uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-next uk-lightbox-item="next"></a> </div> <div class="uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse style="max-height: 90vh; overflow: auto;"> <ul class="uk-lightbox-thumbnav uk-lightbox-thumbnav-vertical uk-thumbnav uk-thumbnav-vertical"></ul> <ul class="uk-lightbox-dotnav uk-dotnav uk-dotnav-vertical"></ul> </div> <div class="uk-lightbox-counter uk-text-large uk-position-top-left uk-position-small uk-transition-fade" uk-inverse></div> <div class="uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>'}),created(){let e=t.$(this.template);t.isTag(e,"template")&&(e=t.fragment(t.html(e)));const s=t.$(this.selList,e),i=this.$props.nav;t.remove(t.$$(this.selNav,e).filter(r=>!t.matches(r,`.uk-${i}`)));for(const[r,h]of this.items.entries())t.append(s,"<div>"),i==="thumbnav"&&t.wrapAll(Ee(h,this.videoAutoplay),t.append(t.$(this.selNav,e),`<li uk-lightbox-item="${r}"><a href></a></li>`));this.slidenav||t.remove(t.$$(".uk-lightbox-slidenav",e)),this.counter||t.remove(t.$(this.selCounter,e)),t.addClass(s,this.clsFit);const n=t.$("[uk-close]",e),o=this.t("close");n&&o&&(n.dataset.i18n=JSON.stringify({label:o})),this.$mount(t.append(this.container,e))},events:[{name:"click",self:!0,filter:({bgClose:e})=>e,delegate:({selList:e})=>`${e} > *`,handler(e){e.defaultPrevented||this.hide()}},{name:"click",self:!0,delegate:({clsZoom:e})=>`.${e}`,handler(e){e.defaultPrevented||t.toggleClass(this.list,this.clsFit)}},{name:`${t.pointerMove} ${t.pointerDown} keydown`,filter:({delayControls:e})=>e,handler(){this.showControls()}},{name:"shown",self:!0,handler(){this.showControls()}},{name:"hide",self:!0,handler(){this.hideControls(),t.removeClass(this.slides,this.clsActive),t.Transition.stop(this.slides)}},{name:"hidden",self:!0,handler(){this.$destroy(!0)}},{name:"keyup",el:()=>document,handler({keyCode:e}){if(!this.isToggled()||!this.draggable)return;let s=-1;e===g.LEFT?s="previous":e===g.RIGHT?s="next":e===g.HOME?s=0:e===g.END&&(s="last"),~s&&this.show(s)}},{name:"beforeitemshow",handler(e){t.html(t.$(this.selCaption,this.$el),this.getItem().caption||""),t.html(t.$(this.selCounter,this.$el),this.t("counter",this.index+1,this.slides.length));for(let s=-this.preload;s<=this.preload;s++)this.loadItem(this.index+s);this.isToggled()||(this.draggable=!1,e.preventDefault(),this.toggleElement(this.$el,!0,!1),this.animation=j.scale,t.removeClass(e.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshown",handler(){this.draggable=this.$props.draggable}},{name:"itemload",async handler(e,s){const{source:i,type:n,attrs:o={}}=s;if(this.setItem(s,"<span uk-spinner uk-inverse></span>"),!i)return;let r;const h={allowfullscreen:"",style:"max-width: 100%; box-sizing: border-box;","uk-responsive":"","uk-video":`${!!this.videoAutoplay}`};if(n==="image"||q(i)){const a=v("img");te(a,s.sources),t.attr(a,{src:i,...t.pick(s,["alt","srcset","sizes"]),...o}),t.on(a,"load",()=>this.setItem(s,t.parent(a)||a)),t.on(a,"error",()=>this.setError(s))}else if(n==="video"||U(i)){const a=this.videoAutoplay==="inline",d=v("video",{src:i,playsinline:"",controls:a?null:"",loop:a?"":null,poster:this.videoAutoplay?null:s.poster,"uk-video":a?"automute: true":!!this.videoAutoplay,...o});t.on(d,"loadedmetadata",()=>this.setItem(s,d)),t.on(d,"error",()=>this.setError(s))}else if(n==="iframe"||i.match(/\.(html|php)($|\?)/i))this.setItem(s,v("iframe",{src:i,allowfullscreen:"",class:"uk-lightbox-iframe",...o}));else if(r=i.match(/\/\/(?:.*?youtube(-nocookie)?\..*?(?:[?&]v=|\/shorts\/)|youtu\.be\/)([\w-]{11})[&?]?(.*)?/))this.setItem(s,v("iframe",{src:`https://www.youtube${r[1]||""}.com/embed/${r[2]}${r[3]?`?${r[3]}`:""}`,width:1920,height:1080,...h,...o}));else if(r=i.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/))try{const{height:a,width:d}=await(await fetch(`https://vimeo.com/api/oembed.json?maxwidth=1920&url=${encodeURI(i)}`,{credentials:"omit"})).json();this.setItem(s,v("iframe",{src:`https://player.vimeo.com/video/${r[1]}${r[2]?`?${r[2]}`:""}`,width:d,height:a,...h,...o}))}catch{this.setError(s)}}},{name:"itemloaded",handler(){this.$emit("resize")}}],update:{read(){for(const e of t.$$(`${this.selList} :not([controls]):is(img,video)`,this.$el))t.toggleClass(e,this.clsZoom,(e.naturalHeight||e.videoHeight)-this.$el.offsetHeight>Math.max(0,(e.naturalWidth||e.videoWidth)-this.$el.offsetWidth))},events:["resize"]},methods:{loadItem(e=this.index){const s=this.getItem(e);this.getSlide(s).childElementCount||t.trigger(this.$el,"itemload",[s])},getItem(e=this.index){return this.items[t.getIndex(e,this.slides)]},setItem(e,s){t.trigger(this.$el,"itemloaded",[this,t.html(this.getSlide(e),s)])},getSlide(e){return this.slides[this.items.indexOf(e)]},setError(e){this.setItem(e,'<span uk-icon="icon: bolt; ratio: 2" uk-inverse></span>')},showControls(){clearTimeout(this.controlsTimer),this.controlsTimer=this.delayControls&&setTimeout(this.hideControls,this.delayControls),t.addClass(this.$el,"uk-active","uk-transition-active")},hideControls(){t.removeClass(this.$el,"uk-active","uk-transition-active")}}};function v(e,s){const i=t.fragment(`<${e}>`);return t.attr(i,s),i}function Ee(e,s){const i=e.poster||e.thumb&&(e.type==="image"||q(e.thumb))?v("img",{src:e.poster||e.thumb,alt:""}):e.thumb&&(e.type==="video"||U(e.thumb))?v("video",{src:e.thumb,loop:"",playsinline:"","uk-video":`autoplay: ${!!s}; automute: true`}):v("canvas");return e.thumbRatio&&(i.style.aspectRatio=e.thumbRatio),i}function q(e){return e==null?void 0:e.match(/\.(avif|jpe?g|jfif|a?png|gif|svg|webp)($|\?)/i)}function U(e){return e==null?void 0:e.match(/\.(mp4|webm|ogv)($|\?)/i)}return typeof window<"u"&&window.UIkit&&window.UIkit.component("lightboxPanel",W),W})); assets/uikit/dist/js/components/slider-parallax.js000064400000051754151666572350016415 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitslider_parallax', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitSlider_parallax = factory(global.UIkit.util)); })(this, (function (uikitUtil) { 'use strict'; var Media = { props: { media: Boolean }, data: { media: false }, connected() { const media = toMedia(this.media, this.$el); this.matchMedia = true; if (media) { this.mediaObj = window.matchMedia(media); const handler = () => { this.matchMedia = this.mediaObj.matches; uikitUtil.trigger(this.$el, uikitUtil.createEvent("mediachange", false, true, [this.mediaObj])); }; this.offMediaObj = uikitUtil.on(this.mediaObj, "change", () => { handler(); this.$emit("resize"); }); handler(); } }, disconnected() { var _a; (_a = this.offMediaObj) == null ? void 0 : _a.call(this); } }; function toMedia(value, element) { if (uikitUtil.isString(value)) { if (uikitUtil.startsWith(value, "@")) { value = uikitUtil.toFloat(uikitUtil.css(element, `--uk-breakpoint-${value.slice(1)}`)); } else if (isNaN(value)) { return value; } } return value && uikitUtil.isNumeric(value) ? `(min-width: ${value}px)` : ""; } function startsWith(str, search) { var _a; return (_a = str == null ? void 0 : str.startsWith) == null ? void 0 : _a.call(str, search); } const { from: toArray } = Array; function isFunction(obj) { return typeof obj === "function"; } function isObject(obj) { return obj !== null && typeof obj === "object"; } function isWindow(obj) { return isObject(obj) && obj === obj.window; } function isDocument(obj) { return nodeType(obj) === 9; } function isNode(obj) { return nodeType(obj) >= 1; } function nodeType(obj) { return !isWindow(obj) && isObject(obj) && obj.nodeType; } function isString(value) { return typeof value === "string"; } function isUndefined(value) { return value === void 0; } function toNode(element) { return element && toNodes(element)[0]; } function toNodes(element) { return isNode(element) ? [element] : Array.from(element || []).filter(isNode); } function memoize(fn) { const cache = /* @__PURE__ */ Object.create(null); return (key, ...args) => cache[key] || (cache[key] = fn(key, ...args)); } function attr(element, name, value) { var _a; if (isObject(name)) { for (const key in name) { attr(element, key, name[key]); } return; } if (isUndefined(value)) { return (_a = toNode(element)) == null ? void 0 : _a.getAttribute(name); } else { for (const el of toNodes(element)) { if (isFunction(value)) { value = value.call(el, attr(el, name)); } if (value === null) { removeAttr(el, name); } else { el.setAttribute(name, value); } } } } function removeAttr(element, name) { toNodes(element).forEach((element2) => element2.removeAttribute(name)); } const inBrowser = typeof window !== "undefined"; const isVisibleFn = inBrowser && Element.prototype.checkVisibility || function() { return this.offsetWidth || this.offsetHeight || this.getClientRects().length; }; function isVisible(element) { return toNodes(element).some((element2) => isVisibleFn.call(element2)); } function parent(element) { var _a; return (_a = toNode(element)) == null ? void 0 : _a.parentElement; } function filter(element, selector) { return toNodes(element).filter((element2) => matches(element2, selector)); } function matches(element, selector) { return toNodes(element).some((element2) => element2.matches(selector)); } function children(element, selector) { element = toNode(element); const children2 = element ? toArray(element.children) : []; return selector ? filter(children2, selector) : children2; } function index(element, ref) { return children(parent(element)).indexOf(element); } function findAll(selector, context) { return toNodes(_query(selector, toNode(context), "querySelectorAll")); } const addStarRe = /([!>+~-])(?=\s+[!>+~-]|\s*$)/g; const splitSelectorRe = /(\([^)]*\)|[^,])+/g; const parseSelector = memoize((selector) => { let isContextSelector = false; if (!selector || !isString(selector)) { return {}; } const selectors = []; for (let sel of selector.match(splitSelectorRe)) { sel = sel.trim().replace(addStarRe, "$1 *"); isContextSelector || (isContextSelector = ["!", "+", "~", "-", ">"].includes(sel[0])); selectors.push(sel); } return { selector: selectors.join(","), selectors, isContextSelector }; }); const positionRe = /(\([^)]*\)|\S)*/; const parsePositionSelector = memoize((selector) => { selector = selector.slice(1).trim(); const [position] = selector.match(positionRe); return [position, selector.slice(position.length + 1)]; }); function _query(selector, context = document, queryFn) { var _a; const parsed = parseSelector(selector); if (!parsed.isContextSelector) { return parsed.selector ? _doQuery(context, queryFn, parsed.selector) : selector; } selector = ""; const isSingle = parsed.selectors.length === 1; for (let sel of parsed.selectors) { let positionSel; let ctx = context; if (sel[0] === "!") { [positionSel, sel] = parsePositionSelector(sel); ctx = (_a = context.parentElement) == null ? void 0 : _a.closest(positionSel); if (!sel && isSingle) { return ctx; } } if (ctx && sel[0] === "-") { [positionSel, sel] = parsePositionSelector(sel); ctx = ctx.previousElementSibling; ctx = matches(ctx, positionSel) ? ctx : null; if (!sel && isSingle) { return ctx; } } if (!ctx) { continue; } if (isSingle) { if (sel[0] === "~" || sel[0] === "+") { sel = `:scope > :nth-child(${index(ctx) + 1}) ${sel}`; ctx = ctx.parentElement; } else if (sel[0] === ">") { sel = `:scope ${sel}`; } return _doQuery(ctx, queryFn, sel); } selector += `${selector ? "," : ""}${domPath(ctx)} ${sel}`; } if (!isDocument(context)) { context = context.ownerDocument; } return _doQuery(context, queryFn, selector); } function _doQuery(context, queryFn, selector) { try { return context[queryFn](selector); } catch (e) { return null; } } function domPath(element) { const names = []; while (element.parentNode) { const id = attr(element, "id"); if (id) { names.unshift(`#${escape(id)}`); break; } else { let { tagName } = element; if (tagName !== "HTML") { tagName += `:nth-child(${index(element) + 1})`; } names.unshift(tagName); element = element.parentNode; } } return names.join(" > "); } function escape(css) { return isString(css) ? CSS.escape(css) : ""; } const singleTagRe = /^<(\w+)\s*\/?>(?:<\/\1>)?$/; function fragment(html2) { const matches = singleTagRe.exec(html2); if (matches) { return document.createElement(matches[1]); } const container = document.createElement("template"); container.innerHTML = html2.trim(); return unwrapSingle(container.content.childNodes); } function unwrapSingle(nodes) { return nodes.length > 1 ? nodes : nodes[0]; } function $$(selector, context) { return isHtml(selector) ? toNodes(fragment(selector)) : findAll(selector, context); } function isHtml(str) { return isString(str) && startsWith(str.trim(), "<"); } function getMaxPathLength(el) { return isVisible(el) ? Math.ceil( Math.max(0, ...$$("[stroke]", el).map((stroke) => { var _a; return ((_a = stroke.getTotalLength) == null ? void 0 : _a.call(stroke)) || 0; })) ) : 0; } const props = { x: transformFn, y: transformFn, rotate: transformFn, scale: transformFn, color: colorFn, backgroundColor: colorFn, borderColor: colorFn, blur: filterFn, hue: filterFn, fopacity: filterFn, grayscale: filterFn, invert: filterFn, saturate: filterFn, sepia: filterFn, opacity: cssPropFn, stroke: strokeFn, bgx: backgroundFn, bgy: backgroundFn }; const { keys } = Object; var Parallax = { mixins: [Media], props: fillObject(keys(props), "list"), data: fillObject(keys(props), void 0), computed: { props(properties, $el) { const stops = {}; for (const prop in properties) { if (prop in props && !uikitUtil.isUndefined(properties[prop])) { stops[prop] = properties[prop].slice(); } } const result = {}; for (const prop in stops) { result[prop] = props[prop](prop, $el, stops[prop], stops); } return result; } }, events: { load() { this.$emit(); } }, methods: { reset() { uikitUtil.resetProps(this.$el, this.getCss(0)); }, getCss(percent) { const css2 = {}; for (const prop in this.props) { this.props[prop](css2, uikitUtil.clamp(percent)); } css2.willChange = Object.keys(css2).map(uikitUtil.propName).join(","); return css2; } } }; function transformFn(prop, el, stops) { let unit = getUnit(stops) || { x: "px", y: "px", rotate: "deg" }[prop] || ""; let transformFn2; if (prop === "x" || prop === "y") { prop = `translate${uikitUtil.ucfirst(prop)}`; transformFn2 = (stop) => uikitUtil.toFloat(uikitUtil.toFloat(stop).toFixed(unit === "px" ? 0 : 6)); } else if (prop === "scale") { unit = ""; transformFn2 = (stop) => { var _a; return getUnit([stop]) ? uikitUtil.toPx(stop, "width", el, true) / el[`offset${((_a = stop.endsWith) == null ? void 0 : _a.call(stop, "vh")) ? "Height" : "Width"}`] : uikitUtil.toFloat(stop); }; } if (stops.length === 1) { stops.unshift(prop === "scale" ? 1 : 0); } stops = parseStops(stops, transformFn2); return (css2, percent) => { css2.transform = `${css2.transform || ""} ${prop}(${getValue(stops, percent)}${unit})`; }; } function colorFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops, (stop) => parseColor(el, stop)); return (css2, percent) => { const [start, end, p] = getStop(stops, percent); const value = start.map((value2, i) => { value2 += p * (end[i] - value2); return i === 3 ? uikitUtil.toFloat(value2) : parseInt(value2, 10); }).join(","); css2[prop] = `rgba(${value})`; }; } function parseColor(el, color) { return getCssValue(el, "color", color).split(/[(),]/g).slice(1, -1).concat(1).slice(0, 4).map(uikitUtil.toFloat); } function filterFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops) || { blur: "px", hue: "deg" }[prop] || "%"; prop = { fopacity: "opacity", hue: "hue-rotate" }[prop] || prop; stops = parseStops(stops); return (css2, percent) => { const value = getValue(stops, percent); css2.filter = `${css2.filter || ""} ${prop}(${value + unit})`; }; } function cssPropFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops); return (css2, percent) => { css2[prop] = getValue(stops, percent); }; } function strokeFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops); const length = getMaxPathLength(el); stops = parseStops(stops.reverse(), (stop) => { stop = uikitUtil.toFloat(stop); return unit === "%" ? stop * length / 100 : stop; }); if (!stops.some(([value]) => value)) { return uikitUtil.noop; } uikitUtil.css(el, "strokeDasharray", length); return (css2, percent) => { css2.strokeDashoffset = getValue(stops, percent); }; } function backgroundFn(prop, el, stops, props2) { if (stops.length === 1) { stops.unshift(0); } const attr = prop === "bgy" ? "height" : "width"; props2[prop] = parseStops(stops, (stop) => uikitUtil.toPx(stop, attr, el)); const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); if (bgProps.length === 2 && prop === "bgx") { return uikitUtil.noop; } if (getCssValue(el, "backgroundSize", "") === "cover") { return backgroundCoverFn(prop, el, stops, props2); } const positions = {}; for (const prop2 of bgProps) { positions[prop2] = getBackgroundPos(el, prop2); } return setBackgroundPosFn(bgProps, positions, props2); } function backgroundCoverFn(prop, el, stops, props2) { const dimImage = getBackgroundImageDimensions(el); if (!dimImage.width) { return uikitUtil.noop; } const dimEl = { width: el.offsetWidth, height: el.offsetHeight }; const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); const positions = {}; for (const prop2 of bgProps) { const values = props2[prop2].map(([value]) => value); const min = Math.min(...values); const max = Math.max(...values); const down = values.indexOf(min) < values.indexOf(max); const diff = max - min; positions[prop2] = `${(down ? -diff : 0) - (down ? min : max)}px`; dimEl[prop2 === "bgy" ? "height" : "width"] += diff; } const dim = uikitUtil.Dimensions.cover(dimImage, dimEl); for (const prop2 of bgProps) { const attr = prop2 === "bgy" ? "height" : "width"; const overflow = dim[attr] - dimEl[attr]; positions[prop2] = `max(${getBackgroundPos(el, prop2)},-${overflow}px) + ${positions[prop2]}`; } const fn = setBackgroundPosFn(bgProps, positions, props2); return (css2, percent) => { fn(css2, percent); css2.backgroundSize = `${dim.width}px ${dim.height}px`; css2.backgroundRepeat = "no-repeat"; }; } function getBackgroundPos(el, prop) { return getCssValue(el, `background-position-${prop.slice(-1)}`, ""); } function setBackgroundPosFn(bgProps, positions, props2) { return function(css2, percent) { for (const prop of bgProps) { const value = getValue(props2[prop], percent); css2[`background-position-${prop.slice(-1)}`] = `calc(${positions[prop]} + ${value}px)`; } }; } const loading = {}; const dimensions = {}; function getBackgroundImageDimensions(el) { const src = uikitUtil.css(el, "backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/, "$1"); if (dimensions[src]) { return dimensions[src]; } const image = new Image(); if (src) { image.src = src; if (!image.naturalWidth && !loading[src]) { uikitUtil.once(image, "error load", () => { dimensions[src] = toDimensions(image); uikitUtil.trigger(el, uikitUtil.createEvent("load", false)); }); loading[src] = true; return toDimensions(image); } } return dimensions[src] = toDimensions(image); } function toDimensions(image) { return { width: image.naturalWidth, height: image.naturalHeight }; } function parseStops(stops, fn = uikitUtil.toFloat) { const result = []; const { length } = stops; let nullIndex = 0; for (let i = 0; i < length; i++) { let [value, percent] = uikitUtil.isString(stops[i]) ? stops[i].trim().split(/ (?![^(]*\))/) : [stops[i]]; value = fn(value); percent = percent ? uikitUtil.toFloat(percent) / 100 : null; if (i === 0) { if (percent === null) { percent = 0; } else if (percent) { result.push([value, 0]); } } else if (i === length - 1) { if (percent === null) { percent = 1; } else if (percent !== 1) { result.push([value, percent]); percent = 1; } } result.push([value, percent]); if (percent === null) { nullIndex++; } else if (nullIndex) { const leftPercent = result[i - nullIndex - 1][1]; const p = (percent - leftPercent) / (nullIndex + 1); for (let j = nullIndex; j > 0; j--) { result[i - j][1] = leftPercent + p * (nullIndex - j + 1); } nullIndex = 0; } } return result; } function getStop(stops, percent) { const index = uikitUtil.findIndex(stops.slice(1), ([, targetPercent]) => percent <= targetPercent) + 1; return [ stops[index - 1][0], stops[index][0], (percent - stops[index - 1][1]) / (stops[index][1] - stops[index - 1][1]) ]; } function getValue(stops, percent) { const [start, end, p] = getStop(stops, percent); return start + Math.abs(start - end) * p * (start < end ? 1 : -1); } const unitRe = /^-?\d+(?:\.\d+)?(\S+)?/; function getUnit(stops, defaultUnit) { var _a; for (const stop of stops) { const match = (_a = stop.match) == null ? void 0 : _a.call(stop, unitRe); if (match) { return match[1]; } } return defaultUnit; } function getCssValue(el, prop, value) { const prev = el.style[prop]; const val = uikitUtil.css(uikitUtil.css(el, prop, value), prop); el.style[prop] = prev; return val; } function fillObject(keys2, value) { return keys2.reduce((data, prop) => { data[prop] = value; return data; }, {}); } var Component = { mixins: [Parallax], beforeConnect() { this.item = this.$el.closest(`.${this.$options.id.replace("parallax", "items")} > *`); }, disconnected() { this.item = null; }, events: [ { name: "itemin itemout", self: true, el: ({ item }) => item, handler({ type, detail: { percent, duration, timing, dir } }) { uikitUtil.fastdom.read(() => { if (!this.matchMedia) { return; } const propsFrom = this.getCss(getCurrentPercent(type, dir, percent)); const propsTo = this.getCss(isIn(type) ? 0.5 : dir > 0 ? 1 : 0); uikitUtil.fastdom.write(() => { uikitUtil.css(this.$el, propsFrom); uikitUtil.Transition.start(this.$el, propsTo, duration, timing).catch(uikitUtil.noop); }); }); } }, { name: "transitioncanceled transitionend", self: true, el: ({ item }) => item, handler() { uikitUtil.Transition.cancel(this.$el); } }, { name: "itemtranslatein itemtranslateout", self: true, el: ({ item }) => item, handler({ type, detail: { percent, dir } }) { uikitUtil.fastdom.read(() => { if (!this.matchMedia) { this.reset(); return; } const props = this.getCss(getCurrentPercent(type, dir, percent)); uikitUtil.fastdom.write(() => uikitUtil.css(this.$el, props)); }); } } ] }; function isIn(type) { return uikitUtil.endsWith(type, "in"); } function getCurrentPercent(type, dir, percent) { percent /= 2; return isIn(type) ^ dir < 0 ? percent : 1 - percent; } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("sliderParallax", Component); } return Component; })); assets/uikit/dist/js/components/tooltip.min.js000064400000016536151666572350015604 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(t,p){typeof exports=="object"&&typeof module<"u"?module.exports=p(require("uikit-util")):typeof define=="function"&&define.amd?define("uikittooltip",["uikit-util"],p):(t=typeof globalThis<"u"?globalThis:t||self,t.UIkitTooltip=p(t.UIkit.util))})(this,(function(t){"use strict";function p(s,i=[]){try{return s?t.startsWith(s,"{")?JSON.parse(s):i.length&&!t.includes(s,":")?{[i[0]]:s}:s.split(";").reduce((o,e)=>{const[n,r]=e.split(/:(.*)/);return n&&!t.isUndefined(r)&&(o[n.trim()]=r.trim()),o},{}):{}}catch{return{}}}t.memoize((s,i)=>{const o=Object.keys(i),e=o.concat(s).map(n=>[t.hyphenate(n),`data-${t.hyphenate(n)}`]).flat();return{attributes:o,filter:e}});let E=1;function A(s,i=null){return(i==null?void 0:i.id)||`${s.$options.id}-${E++}`}var B={props:{container:Boolean},data:{container:!0},computed:{container({container:s}){return s===!0&&this.$container||s&&t.$(s)}}},I={props:{pos:String,offset:Boolean,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:`bottom-${t.isRtl?"right":"left"}`,offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=t.includes(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(s,i,o){let e=[this.getPositionOffset(s),this.getShiftOffset(s)];const n=[this.flip&&"flip",this.shift&&"shift"],r={element:[this.inset?this.dir:t.flipPosition(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const a in r)r[a].reverse();e.reverse(),n.reverse()}const h=T(s),c=t.dimensions(s);t.css(s,{top:-c.height,left:-c.width}),t.positionAt(s,i,{attach:r,offset:e,boundary:o,placement:n,viewportOffset:this.getViewportOffset(s)}),h()},getPositionOffset(s=this.$el){return t.toPx(this.offset===!1?t.css(s,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",s)*(t.includes(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(s=this.$el){return this.align==="center"?0:t.toPx(t.css(s,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",s)*(t.includes(["left","top"],this.align)?1:-1)},getViewportOffset(s){return t.toPx(t.css(s,"--uk-position-viewport-offset"))}}};function T(s){const i=t.scrollParent(s),{scrollTop:o}=i;return()=>{o!==i.scrollTop&&(i.scrollTop=o)}}var D={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglable-enter",clsLeave:"uk-togglable-leave"},computed:{hasAnimation:({animation:s})=>!!s[0],hasTransition:({animation:s})=>["slide","reveal"].some(i=>t.startsWith(s[0],i))},methods:{async toggleElement(s,i,o){try{return await Promise.all(t.toNodes(s).map(e=>{const n=t.isBoolean(i)?i:!this.isToggled(e);if(!t.trigger(e,`before${n?"show":"hide"}`,[this]))return Promise.reject();const r=(t.isFunction(o)?o:o===!1||!this.hasAnimation?_:this.hasTransition?j:F)(e,n,this),h=n?this.clsEnter:this.clsLeave;t.addClass(e,h),t.trigger(e,n?"show":"hide",[this]);const c=()=>{var a;if(t.removeClass(e,h),t.trigger(e,n?"shown":"hidden",[this]),n){const l=T(e);(a=t.$$("[autofocus]",e).find(t.isVisible))==null||a.focus(),l()}};return r?r.then(c,()=>(t.removeClass(e,h),Promise.reject())):c()})),!0}catch{return!1}},isToggled(s=this.$el){return s=t.toNode(s),t.hasClass(s,this.clsEnter)?!0:t.hasClass(s,this.clsLeave)?!1:this.cls?t.hasClass(s,this.cls.split(" ")[0]):t.isVisible(s)},_toggle(s,i){if(!s)return;i=!!i;let o;this.cls?(o=t.includes(this.cls," ")||i!==t.hasClass(s,this.cls),o&&t.toggleClass(s,this.cls,t.includes(this.cls," ")?void 0:i)):(o=i===s.hidden,o&&(s.hidden=!i)),o&&t.trigger(s,"toggled",[i,this])}}};function _(s,i,{_toggle:o}){return t.Animation.cancel(s),t.Transition.cancel(s),o(s,i)}async function j(s,i,{animation:o,duration:e,velocity:n,transition:r,_toggle:h}){var c;const[a="reveal",l="top"]=((c=o[0])==null?void 0:c.split("-"))||[],b=[["left","right"],["top","bottom"]],y=b[t.includes(b[0],l)?0:1],k=y[1]===l,v=["width","height"][b.indexOf(y)],f=`margin-${y[0]}`,w=`margin-${l}`;let g=t.dimensions(s)[v];const W=t.Transition.inProgress(s);await t.Transition.cancel(s),i&&h(s,!0);const z=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",f,w].map(O=>[O,s.style[O]])),m=t.dimensions(s),u=t.toFloat(t.css(s,f)),x=t.toFloat(t.css(s,w)),d=m[v]+x;!W&&!i&&(g+=x);const[$]=t.wrapInner(s,"<div>");t.css($,{boxSizing:"border-box",height:m.height,width:m.width,...t.css(s,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",w])}),t.css(s,{padding:0,border:0,minWidth:0,minHeight:0,[w]:0,width:m.width,height:m.height,overflow:"hidden",[v]:g});const S=g/d;e=(n*d+e)*(i?1-S:S);const C={[v]:i?d:0};k&&(t.css(s,f,d-g+u),C[f]=i?u:d+u),!k^a==="reveal"&&(t.css($,f,-d+g),t.Transition.start($,{[f]:i?0:-d},e,r));try{await t.Transition.start(s,C,e,r)}finally{t.css(s,z),t.unwrap($.firstChild),i||h(s,!1)}}function F(s,i,o){const{animation:e,duration:n,_toggle:r}=o;return i?(r(s,!0),t.Animation.in(s,e[0],n,o.origin)):t.Animation.out(s,e[1]||e[0],n,o.origin).then(()=>r(s,!1))}const L={ESC:27};var P={mixins:[B,D,I],data:{pos:"top",animation:["uk-animation-scale-up"],duration:100,cls:"uk-active"},connected(){N(this.$el)},disconnected(){this.hide()},methods:{show(){if(this.isToggled(this.tooltip||null))return;const{delay:s=0,title:i}=V(this.$options);if(!i)return;const o=t.attr(this.$el,"title"),e=t.on(this.$el,["blur",t.pointerLeave],r=>!t.isTouch(r)&&this.hide());this.reset=()=>{t.attr(this.$el,{title:o,"aria-describedby":null}),e()};const n=A(this);t.attr(this.$el,{title:null,"aria-describedby":n}),clearTimeout(this.showTimer),this.showTimer=setTimeout(()=>this._show(i,n),s)},async hide(){var s;t.matches(this.$el,"input:focus")||(clearTimeout(this.showTimer),this.isToggled(this.tooltip||null)&&await this.toggleElement(this.tooltip,!1,!1),(s=this.reset)==null||s.call(this),t.remove(this.tooltip),this.tooltip=null)},async _show(s,i){this.tooltip=t.append(this.container,`<div id="${i}" class="uk-${this.$options.name}" role="tooltip"> <div class="uk-${this.$options.name}-inner">${s}</div> </div>`),t.on(this.tooltip,"toggled",(o,e)=>{if(!e)return;const n=()=>this.positionAt(this.tooltip,this.$el);n();const[r,h]=U(this.tooltip,this.$el,this.pos);this.origin=this.axis==="y"?`${t.flipPosition(r)}-${h}`:`${h}-${t.flipPosition(r)}`;const c=[t.once(document,`keydown ${t.pointerDown}`,this.hide,!1,a=>a.type===t.pointerDown&&!this.$el.contains(a.target)||a.type==="keydown"&&a.keyCode===L.ESC),t.on([document,...t.overflowParents(this.$el)],"scroll",n,{passive:!0})];t.once(this.tooltip,"hide",()=>c.forEach(a=>a()),{self:!0})}),await this.toggleElement(this.tooltip,!0)||this.hide()}},events:{[`focus ${t.pointerEnter} ${t.pointerDown}`](s){(!t.isTouch(s)||s.type===t.pointerDown)&&document.readyState!=="loading"&&this.show()}}};function N(s){t.isFocusable(s)||(s.tabIndex=0)}function U(s,i,[o,e]){const n=t.offset(s),r=t.offset(i),h=[["left","right"],["top","bottom"]];for(const a of h){if(n[a[0]]>=r[a[1]]){o=a[1];break}if(n[a[1]]<=r[a[0]]){o=a[0];break}}return e=(t.includes(h[0],o)?h[1]:h[0]).find(a=>n[a]===r[a])||"center",[o,e]}function V(s){const{el:i,id:o,data:e}=s;return["delay","title"].reduce((n,r)=>({[r]:t.data(i,r),...n}),{...p(t.data(i,o),["title"]),...e})}return typeof window<"u"&&window.UIkit&&window.UIkit.component("tooltip",P),P})); assets/uikit/dist/js/components/lightbox.js000064400000163610151666572350015144 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitlightbox', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitLightbox = factory(global.UIkit.util)); })(this, (function (util) { 'use strict'; function parseOptions(options, args = []) { try { return options ? util.startsWith(options, "{") ? JSON.parse(options) : args.length && !util.includes(options, ":") ? { [args[0]]: options } : options.split(";").reduce((options2, option) => { const [key, value] = option.split(/:(.*)/); if (key && !util.isUndefined(value)) { options2[key.trim()] = value.trim(); } return options2; }, {}) : {}; } catch (e) { return {}; } } function callUpdate(instance, e = "update") { if (!instance._connected) { return; } if (!instance._updates.length) { return; } if (!instance._updateCount) { instance._updateCount = 0; requestAnimationFrame(() => instance._updateCount = 0); } if (!instance._queued) { instance._queued = /* @__PURE__ */ new Set(); util.fastdom.read(() => { if (instance._connected) { runUpdates(instance, instance._queued); } instance._queued = null; }); } if (instance._updateCount++ < 20) { instance._queued.add(e.type || e); } } function runUpdates(instance, types) { for (const { read, write, events = [] } of instance._updates) { if (!types.has("update") && !events.some((type) => types.has(type))) { continue; } let result; if (read) { result = read.call(instance, instance._data, types); if (result && util.isPlainObject(result)) { util.assign(instance._data, result); } } if (write && result !== false) { util.fastdom.write(() => { if (instance._connected) { write.call(instance, instance._data, types); } }); } } } function resize(options) { return observe(util.observeResize, options, "resize"); } function intersection(options) { return observe(util.observeIntersection, options); } function observe(observe2, options, emit) { return { observe: observe2, handler() { callUpdate(this, emit); }, ...options }; } ({ observe: intersection({ handler(entries, observer) { this.load(); observer.disconnect(); }, options: ({ margin }) => ({ rootMargin: margin }), filter: ({ loading }) => loading === "lazy", target: ({ $el, $props }) => $props.target ? [$el, ...util.queryAll($props.target, $el)] : $el })}); function wrapInPicture(img, sources) { sources = parseSources(sources); if (sources.length) { const picture = util.fragment("<picture>"); for (const attrs of sources) { const source = util.fragment("<source>"); util.attr(source, attrs); util.append(picture, source); } util.append(picture, img); } } function parseSources(sources) { if (!sources) { return []; } if (util.startsWith(sources, "[")) { try { sources = JSON.parse(sources); } catch (e) { sources = []; } } else { sources = parseOptions(sources); } if (!util.isArray(sources)) { sources = [sources]; } return sources.filter((source) => !util.isEmpty(source)); } let prevented; function preventBackgroundScroll(el) { const off = util.on( el, "touchstart", (e) => { if (e.targetTouches.length !== 1 || util.matches(e.target, 'input[type="range"')) { return; } let prev = util.getEventPos(e).y; const offMove = util.on( el, "touchmove", (e2) => { const pos = util.getEventPos(e2).y; if (pos === prev) { return; } prev = pos; if (!util.scrollParents(e2.target).some((scrollParent) => { if (!el.contains(scrollParent)) { return false; } let { scrollHeight, clientHeight } = scrollParent; return clientHeight < scrollHeight; })) { e2.preventDefault(); } }, { passive: false } ); util.once(el, "scroll touchend touchcanel", offMove, { capture: true }); }, { passive: true } ); if (prevented) { return off; } prevented = true; const { scrollingElement } = document; const props = { overflowY: CSS.supports("overflow", "clip") ? "clip" : "hidden", touchAction: "none", paddingRight: util.width(window) - scrollingElement.clientWidth || "" }; util.css(scrollingElement, props); return () => { prevented = false; off(); util.resetProps(scrollingElement, props); }; } var Class = { connected() { util.addClass(this.$el, this.$options.id); } }; var Container = { props: { container: Boolean }, data: { container: true }, computed: { container({ container }) { return container === true && this.$container || container && util.$(container); } } }; function maybeDefaultPreventClick(e) { if (e.target.closest('a[href="#"],a[href=""]')) { e.preventDefault(); } } function storeScrollPosition(element) { const scrollElement = util.scrollParent(element); const { scrollTop } = scrollElement; return () => { if (scrollTop !== scrollElement.scrollTop) { scrollElement.scrollTop = scrollTop; } }; } var Togglable = { props: { cls: Boolean, animation: "list", duration: Number, velocity: Number, origin: String, transition: String }, data: { cls: false, animation: [false], duration: 200, velocity: 0.2, origin: false, transition: "ease", clsEnter: "uk-togglable-enter", clsLeave: "uk-togglable-leave" }, computed: { hasAnimation: ({ animation }) => !!animation[0], hasTransition: ({ animation }) => ["slide", "reveal"].some((transition) => util.startsWith(animation[0], transition)) }, methods: { async toggleElement(targets, toggle, animate) { try { await Promise.all( util.toNodes(targets).map((el) => { const show = util.isBoolean(toggle) ? toggle : !this.isToggled(el); if (!util.trigger(el, `before${show ? "show" : "hide"}`, [this])) { return Promise.reject(); } const promise = (util.isFunction(animate) ? animate : animate === false || !this.hasAnimation ? toggleInstant : this.hasTransition ? toggleTransition : toggleAnimation)(el, show, this); const cls = show ? this.clsEnter : this.clsLeave; util.addClass(el, cls); util.trigger(el, show ? "show" : "hide", [this]); const done = () => { var _a; util.removeClass(el, cls); util.trigger(el, show ? "shown" : "hidden", [this]); if (show) { const restoreScrollPosition = storeScrollPosition(el); (_a = util.$$("[autofocus]", el).find(util.isVisible)) == null ? void 0 : _a.focus(); restoreScrollPosition(); } }; return promise ? promise.then(done, () => { util.removeClass(el, cls); return Promise.reject(); }) : done(); }) ); return true; } catch (e) { return false; } }, isToggled(el = this.$el) { el = util.toNode(el); return util.hasClass(el, this.clsEnter) ? true : util.hasClass(el, this.clsLeave) ? false : this.cls ? util.hasClass(el, this.cls.split(" ")[0]) : util.isVisible(el); }, _toggle(el, toggled) { if (!el) { return; } toggled = Boolean(toggled); let changed; if (this.cls) { changed = util.includes(this.cls, " ") || toggled !== util.hasClass(el, this.cls); changed && util.toggleClass(el, this.cls, util.includes(this.cls, " ") ? void 0 : toggled); } else { changed = toggled === el.hidden; changed && (el.hidden = !toggled); } if (changed) { util.trigger(el, "toggled", [toggled, this]); } } } }; function toggleInstant(el, show, { _toggle }) { util.Animation.cancel(el); util.Transition.cancel(el); return _toggle(el, show); } async function toggleTransition(el, show, { animation, duration, velocity, transition, _toggle }) { var _a; const [mode = "reveal", startProp = "top"] = ((_a = animation[0]) == null ? void 0 : _a.split("-")) || []; const dirs = [ ["left", "right"], ["top", "bottom"] ]; const dir = dirs[util.includes(dirs[0], startProp) ? 0 : 1]; const end = dir[1] === startProp; const props = ["width", "height"]; const dimProp = props[dirs.indexOf(dir)]; const marginProp = `margin-${dir[0]}`; const marginStartProp = `margin-${startProp}`; let currentDim = util.dimensions(el)[dimProp]; const inProgress = util.Transition.inProgress(el); await util.Transition.cancel(el); if (show) { _toggle(el, true); } const prevProps = Object.fromEntries( [ "padding", "border", "width", "height", "minWidth", "minHeight", "overflowY", "overflowX", marginProp, marginStartProp ].map((key) => [key, el.style[key]]) ); const dim = util.dimensions(el); const currentMargin = util.toFloat(util.css(el, marginProp)); const marginStart = util.toFloat(util.css(el, marginStartProp)); const endDim = dim[dimProp] + marginStart; if (!inProgress && !show) { currentDim += marginStart; } const [wrapper] = util.wrapInner(el, "<div>"); util.css(wrapper, { boxSizing: "border-box", height: dim.height, width: dim.width, ...util.css(el, [ "overflow", "padding", "borderTop", "borderRight", "borderBottom", "borderLeft", "borderImage", marginStartProp ]) }); util.css(el, { padding: 0, border: 0, minWidth: 0, minHeight: 0, [marginStartProp]: 0, width: dim.width, height: dim.height, overflow: "hidden", [dimProp]: currentDim }); const percent = currentDim / endDim; duration = (velocity * endDim + duration) * (show ? 1 - percent : percent); const endProps = { [dimProp]: show ? endDim : 0 }; if (end) { util.css(el, marginProp, endDim - currentDim + currentMargin); endProps[marginProp] = show ? currentMargin : endDim + currentMargin; } if (!end ^ mode === "reveal") { util.css(wrapper, marginProp, -endDim + currentDim); util.Transition.start(wrapper, { [marginProp]: show ? 0 : -endDim }, duration, transition); } try { await util.Transition.start(el, endProps, duration, transition); } finally { util.css(el, prevProps); util.unwrap(wrapper.firstChild); if (!show) { _toggle(el, false); } } } function toggleAnimation(el, show, cmp) { const { animation, duration, _toggle } = cmp; if (show) { _toggle(el, true); return util.Animation.in(el, animation[0], duration, cmp.origin); } return util.Animation.out(el, animation[1] || animation[0], duration, cmp.origin).then( () => _toggle(el, false) ); } const active = []; var Modal = { mixins: [Class, Container, Togglable], props: { selPanel: String, selClose: String, escClose: Boolean, bgClose: Boolean, stack: Boolean, role: String }, data: { cls: "uk-open", escClose: true, bgClose: true, overlay: true, stack: false, role: "dialog" }, computed: { panel: ({ selPanel }, $el) => util.$(selPanel, $el), transitionElement() { return this.panel; } }, connected() { const el = this.panel || this.$el; el.role = this.role; if (this.overlay) { el.ariaModal = true; } }, beforeDisconnect() { if (util.includes(active, this)) { this.toggleElement(this.$el, false, false); } }, events: [ { name: "click", delegate: ({ selClose }) => `${selClose},a[href*="#"]`, handler(e) { const { current, defaultPrevented } = e; const { hash } = current; if (!defaultPrevented && hash && util.isSameSiteAnchor(current) && !this.$el.contains(util.$(hash))) { this.hide(); } else if (util.matches(current, this.selClose)) { maybeDefaultPreventClick(e); this.hide(); } } }, { name: "toggle", self: true, handler(e, toggle) { if (e.defaultPrevented) { return; } e.preventDefault(); this.target = toggle == null ? void 0 : toggle.$el; if (this.isToggled() === util.includes(active, this)) { this.toggle(); } } }, { name: "beforeshow", self: true, handler(e) { if (util.includes(active, this)) { return false; } if (!this.stack && active.length) { Promise.all(active.map((modal) => modal.hide())).then(this.show); e.preventDefault(); } else { active.push(this); } } }, { name: "show", self: true, handler() { if (this.stack) { util.css(this.$el, "zIndex", util.toFloat(util.css(this.$el, "zIndex")) + active.length); } const handlers = [ this.overlay && preventBackgroundFocus(this), this.overlay && preventBackgroundScroll(this.$el), this.bgClose && listenForBackgroundClose(this), this.escClose && listenForEscClose(this) ]; util.once( this.$el, "hidden", () => handlers.forEach((handler) => handler && handler()), { self: true } ); util.addClass(document.documentElement, this.clsPage); setAriaExpanded(this.target, true); } }, { name: "shown", self: true, handler() { if (!util.isFocusable(this.$el)) { this.$el.tabIndex = -1; } if (!util.matches(this.$el, ":focus-within")) { this.$el.focus(); } } }, { name: "hidden", self: true, handler() { if (util.includes(active, this)) { active.splice(active.indexOf(this), 1); } util.css(this.$el, "zIndex", ""); const { target } = this; if (!active.some((modal) => modal.clsPage === this.clsPage)) { util.removeClass(document.documentElement, this.clsPage); queueMicrotask(() => { if (util.isFocusable(target)) { const restoreScrollPosition = storeScrollPosition(target); target.focus(); restoreScrollPosition(); } }); } setAriaExpanded(target, false); this.target = null; } } ], methods: { toggle() { return this.isToggled() ? this.hide() : this.show(); }, show() { if (this.container && util.parent(this.$el) !== this.container) { util.append(this.container, this.$el); return new Promise( (resolve) => requestAnimationFrame(() => this.show().then(resolve)) ); } return this.toggleElement(this.$el, true, animate); }, hide() { return this.toggleElement(this.$el, false, animate); } } }; function animate(el, show, { transitionElement, _toggle }) { return new Promise( (resolve, reject) => util.once(el, "show hide", () => { var _a; (_a = el._reject) == null ? void 0 : _a.call(el); el._reject = reject; _toggle(el, show); const off = util.once( transitionElement, "transitionstart", () => { util.once(transitionElement, "transitionend transitioncancel", resolve, { self: true }); clearTimeout(timer); }, { self: true } ); const timer = setTimeout( () => { off(); resolve(); }, toMs(util.css(transitionElement, "transitionDuration")) ); }) ).then(() => delete el._reject); } function toMs(time) { return time ? util.endsWith(time, "ms") ? util.toFloat(time) : util.toFloat(time) * 1e3 : 0; } function preventBackgroundFocus(modal) { return util.on(document, "focusin", (e) => { if (util.last(active) === modal && !modal.$el.contains(e.target)) { modal.$el.focus(); } }); } function listenForBackgroundClose(modal) { return util.on(document, util.pointerDown, ({ target }) => { if (util.last(active) !== modal || modal.overlay && !modal.$el.contains(target) || !modal.panel || modal.panel.contains(target)) { return; } util.once( document, `${util.pointerUp} ${util.pointerCancel} scroll`, ({ defaultPrevented, type, target: newTarget }) => { if (!defaultPrevented && type === util.pointerUp && target === newTarget) { modal.hide(); } }, true ); }); } function listenForEscClose(modal) { return util.on(document, "keydown", (e) => { if (e.keyCode === 27 && util.last(active) === modal) { modal.hide(); } }); } function setAriaExpanded(el, toggled) { if (el == null ? void 0 : el.ariaExpanded) { el.ariaExpanded = toggled; } } var Animations$1 = { slide: { show(dir) { return [{ transform: translate(dir * -100) }, { transform: translate() }]; }, percent(current) { return translated(current); }, translate(percent, dir) { return [ { transform: translate(dir * -100 * percent) }, { transform: translate(dir * 100 * (1 - percent)) } ]; } } }; function translated(el) { return Math.abs(new DOMMatrix(util.css(el, "transform")).m41 / el.offsetWidth); } function translate(value = 0, unit = "%") { return value ? `translate3d(${value + unit}, 0, 0)` : ""; } function Transitioner(prev, next, dir, { animation, easing }) { const { percent, translate, show = util.noop } = animation; const props = show(dir); const { promise, resolve } = withResolvers(); return { dir, show(duration, percent2 = 0, linear) { const timing = linear ? "linear" : easing; duration -= Math.round(duration * util.clamp(percent2, -1, 1)); this.translate(percent2); triggerUpdate(next, "itemin", { percent: percent2, duration, timing, dir }); triggerUpdate(prev, "itemout", { percent: 1 - percent2, duration, timing, dir }); Promise.all([ util.Transition.start(next, props[1], duration, timing), util.Transition.start(prev, props[0], duration, timing) ]).then(() => { this.reset(); resolve(); }, util.noop); return promise; }, cancel() { return util.Transition.cancel([next, prev]); }, reset() { util.resetProps([next, prev], props[0]); }, async forward(duration, percent2 = this.percent()) { await this.cancel(); return this.show(duration, percent2, true); }, translate(percent2) { this.reset(); const props2 = translate(percent2, dir); util.css(next, props2[1]); util.css(prev, props2[0]); triggerUpdate(next, "itemtranslatein", { percent: percent2, dir }); triggerUpdate(prev, "itemtranslateout", { percent: 1 - percent2, dir }); }, percent() { return percent(prev || next, next, dir); }, getDistance() { return prev == null ? void 0 : prev.offsetWidth; } }; } function triggerUpdate(el, type, data) { util.trigger(el, util.createEvent(type, false, false, data)); } function withResolvers() { let resolve; return { promise: new Promise((res) => resolve = res), resolve }; } var I18n = { props: { i18n: Object }, data: { i18n: null }, methods: { t(key, ...params) { var _a, _b, _c; let i = 0; return ((_c = ((_a = this.i18n) == null ? void 0 : _a[key]) || ((_b = this.$options.i18n) == null ? void 0 : _b[key])) == null ? void 0 : _c.replace( /%s/g, () => params[i++] || "" )) || ""; } } }; var SliderAutoplay = { props: { autoplay: Boolean, autoplayInterval: Number, pauseOnHover: Boolean }, data: { autoplay: false, autoplayInterval: 7e3, pauseOnHover: true }, connected() { util.attr(this.list, "aria-live", this.autoplay ? "off" : "polite"); this.autoplay && this.startAutoplay(); }, disconnected() { this.stopAutoplay(); }, update() { util.attr(this.slides, "tabindex", "-1"); }, events: [ { name: "visibilitychange", el: () => document, filter: ({ autoplay }) => autoplay, handler() { if (document.hidden) { this.stopAutoplay(); } else { this.startAutoplay(); } } } ], methods: { startAutoplay() { this.stopAutoplay(); this.interval = setInterval(() => { if (!(this.stack.length || !util.isVisible(this.$el) || this.draggable && util.matches(this.$el, ":focus-within") && !util.matches(this.$el, ":focus") || this.pauseOnHover && util.matches(this.$el, ":hover"))) { this.show("next"); } }, this.autoplayInterval); }, stopAutoplay() { clearInterval(this.interval); } } }; const pointerOptions = { passive: false, capture: true }; const pointerUpOptions = { passive: true, capture: true }; const pointerDown = "touchstart mousedown"; const pointerMove = "touchmove mousemove"; const pointerUp = "touchend touchcancel mouseup click input scroll"; var SliderDrag = { props: { draggable: Boolean }, data: { draggable: true, threshold: 10 }, created() { for (const key of ["start", "move", "end"]) { const fn = this[key]; this[key] = (e) => { const pos = util.getEventPos(e).x * (util.isRtl ? -1 : 1); this.prevPos = pos === this.pos ? this.prevPos : this.pos; this.pos = pos; fn(e); }; } }, events: [ { name: pointerDown, passive: true, delegate: ({ selList }) => `${selList} > *`, handler(e) { if (!this.draggable || this.parallax || !util.isTouch(e) && hasSelectableText(e.target) || e.target.closest(util.selInput) || e.button > 0 || this.length < 2) { return; } this.start(e); } }, { name: "dragstart", handler(e) { e.preventDefault(); } }, { // iOS workaround for slider stopping if swiping fast name: pointerMove, el: ({ list }) => list, handler: util.noop, ...pointerOptions } ], methods: { start() { this.drag = this.pos; if (this._transitioner) { this.percent = this._transitioner.percent(); this.drag += this._transitioner.getDistance() * this.percent * this.dir; this._transitioner.cancel(); this._transitioner.translate(this.percent); this.dragging = true; this.stack = []; } else { this.prevIndex = this.index; } util.on(document, pointerMove, this.move, pointerOptions); util.on(document, pointerUp, this.end, pointerUpOptions); util.css(this.list, "userSelect", "none"); }, move(e) { const distance = this.pos - this.drag; if (distance === 0 || this.prevPos === this.pos || !this.dragging && Math.abs(distance) < this.threshold) { return; } e.cancelable && e.preventDefault(); this.dragging = true; this.dir = distance < 0 ? 1 : -1; let { slides, prevIndex } = this; let dis = Math.abs(distance); let nextIndex = this.getIndex(prevIndex + this.dir); let width = getDistance.call(this, prevIndex, nextIndex); while (nextIndex !== prevIndex && dis > width) { this.drag -= width * this.dir; prevIndex = nextIndex; dis -= width; nextIndex = this.getIndex(prevIndex + this.dir); width = getDistance.call(this, prevIndex, nextIndex); } this.percent = dis / width; const prev = slides[prevIndex]; const next = slides[nextIndex]; const changed = this.index !== nextIndex; const edge = prevIndex === nextIndex; let itemShown; for (const i of [this.index, this.prevIndex]) { if (!util.includes([nextIndex, prevIndex], i)) { util.trigger(slides[i], "itemhidden", [this]); if (edge) { itemShown = true; this.prevIndex = prevIndex; } } } if (this.index === prevIndex && this.prevIndex !== prevIndex || itemShown) { util.trigger(slides[this.index], "itemshown", [this]); } if (changed) { this.prevIndex = prevIndex; this.index = nextIndex; if (!edge) { util.trigger(prev, "beforeitemhide", [this]); util.trigger(prev, "itemhide", [this]); } util.trigger(next, "beforeitemshow", [this]); util.trigger(next, "itemshow", [this]); } this._transitioner = this._translate(Math.abs(this.percent), prev, !edge && next); }, end() { util.off(document, pointerMove, this.move, pointerOptions); util.off(document, pointerUp, this.end, pointerUpOptions); if (this.dragging) { setTimeout(util.on(this.list, "click", (e) => e.preventDefault(), pointerOptions)); this.dragging = null; if (this.index === this.prevIndex) { this.percent = 1 - this.percent; this.dir *= -1; this._show(false, this.index, true); this._transitioner = null; } else { const dirChange = (util.isRtl ? this.dir * (util.isRtl ? 1 : -1) : this.dir) < 0 === this.prevPos > this.pos; this.index = dirChange ? this.index : this.prevIndex; if (dirChange) { util.trigger(this.slides[this.prevIndex], "itemhidden", [this]); util.trigger(this.slides[this.index], "itemshown", [this]); this.percent = 1 - this.percent; } this.show( this.dir > 0 && !dirChange || this.dir < 0 && dirChange ? "next" : "previous", true ); } } util.css(this.list, { userSelect: "" }); this.drag = this.percent = null; } } }; function getDistance(prev, next) { return this._getTransitioner(prev, prev !== next && next).getDistance() || this.slides[prev].offsetWidth; } function hasSelectableText(el) { return util.css(el, "userSelect") !== "none" && util.toArray(el.childNodes).some((el2) => el2.nodeType === 3 && el2.textContent.trim()); } util.memoize((id, props) => { const attributes = Object.keys(props); const filter = attributes.concat(id).map((key) => [util.hyphenate(key), `data-${util.hyphenate(key)}`]).flat(); return { attributes, filter }; }); let id = 1; function generateId(instance, el = null) { return (el == null ? void 0 : el.id) || `${instance.$options.id}-${id++}`; } const keyMap = { SPACE: 32, END: 35, HOME: 36, LEFT: 37, RIGHT: 39}; var SliderNav = { i18n: { next: "Next slide", previous: "Previous slide", slideX: "Slide %s", slideLabel: "%s of %s", role: "String" }, data: { selNav: false, role: "region" }, computed: { nav: ({ selNav }, $el) => util.$(selNav, $el), navChildren() { return util.children(this.nav); }, selNavItem: ({ attrItem }) => `[${attrItem}],[data-${attrItem}]`, navItems(_, $el) { return util.$$(this.selNavItem, $el); } }, watch: { nav(nav, prev) { util.attr(nav, "role", "tablist"); this.padNavitems(); if (prev) { this.$emit(); } }, list(list) { if (util.isTag(list, "ul")) { util.attr(list, "role", "presentation"); } }, navChildren(children2) { util.attr(children2, "role", "presentation"); this.padNavitems(); this.updateNav(); }, navItems(items) { for (const el of items) { const cmd = util.data(el, this.attrItem); const button = util.$("a,button", el) || el; let ariaLabel; let ariaControls = null; if (util.isNumeric(cmd)) { const item = util.toNumber(cmd); const slide = this.slides[item]; if (slide) { if (!slide.id) { slide.id = generateId(this, slide); } ariaControls = slide.id; } ariaLabel = this.t("slideX", util.toFloat(cmd) + 1); button.role = "tab"; } else { if (this.list) { if (!this.list.id) { this.list.id = generateId(this, this.list); } ariaControls = this.list.id; } ariaLabel = this.t(cmd); } button.ariaControls = ariaControls; button.ariaLabel = button.ariaLabel || ariaLabel; } }, slides(slides) { slides.forEach( (slide, i) => util.attr(slide, { role: this.nav ? "tabpanel" : "group", "aria-label": this.t("slideLabel", i + 1, this.length), "aria-roledescription": this.nav ? null : "slide" }) ); this.padNavitems(); } }, connected() { this.$el.role = this.role; this.$el.ariaRoleDescription = "carousel"; }, update: [ { write() { this.navItems.concat(this.nav).forEach((el) => el && (el.hidden = !this.maxIndex)); this.updateNav(); }, events: ["resize"] } ], events: [ { name: "click keydown", delegate: ({ selNavItem }) => selNavItem, filter: ({ parallax }) => !parallax, handler(e) { if (e.target.closest("a,button") && (e.type === "click" || e.keyCode === keyMap.SPACE)) { maybeDefaultPreventClick(e); this.show(util.data(e.current, this.attrItem)); } } }, { name: "itemshow", handler() { this.updateNav(); } }, { name: "keydown", delegate: ({ selNavItem }) => selNavItem, filter: ({ parallax }) => !parallax, handler(e) { const { current, keyCode } = e; const cmd = util.data(current, this.attrItem); if (!util.isNumeric(cmd)) { return; } let i = keyCode === keyMap.HOME ? 0 : keyCode === keyMap.END ? "last" : keyCode === keyMap.LEFT ? "previous" : keyCode === keyMap.RIGHT ? "next" : -1; if (~i) { e.preventDefault(); this.show(i); } } } ], methods: { updateNav() { const index = this.getValidIndex(); for (const el of this.navItems) { const cmd = util.data(el, this.attrItem); const button = util.$("a,button", el) || el; if (util.isNumeric(cmd)) { const item = util.toNumber(cmd); const active = item === index; util.toggleClass(el, this.clsActive, active); util.toggleClass(button, "uk-disabled", !!this.parallax); button.ariaSelected = active; button.tabIndex = active && !this.parallax ? null : -1; if (active && button && util.matches(util.parent(el), ":focus-within")) { button.focus(); } } else { util.toggleClass( el, "uk-invisible", this.finite && (cmd === "previous" && index === 0 || cmd === "next" && index >= this.maxIndex) ); } } }, padNavitems() { if (!this.nav) { return; } const children2 = []; for (let i = 0; i < this.length; i++) { const attr2 = `${this.attrItem}="${i}"`; children2[i] = this.navChildren.findLast((el) => el.matches(`[${attr2}]`)) || util.$(`<li ${attr2}><a href></a></li>`); } if (!util.isEqual(children2, this.navChildren)) { util.html(this.nav, children2); } } } }; const easeOutQuad = "cubic-bezier(0.25, 0.46, 0.45, 0.94)"; const easeOutQuart = "cubic-bezier(0.165, 0.84, 0.44, 1)"; var Slider = { mixins: [SliderAutoplay, SliderDrag, SliderNav, I18n], props: { clsActivated: String, easing: String, index: Number, finite: Boolean, velocity: Number }, data: () => ({ easing: "ease", finite: false, velocity: 1, index: 0, prevIndex: -1, stack: [], percent: 0, clsActive: "uk-active", clsActivated: "", clsEnter: "uk-slide-enter", clsLeave: "uk-slide-leave", clsSlideActive: "uk-slide-active", Transitioner: false, transitionOptions: {} }), connected() { this.prevIndex = -1; this.index = this.getValidIndex(this.$props.index); this.stack = []; }, disconnected() { util.removeClass(this.slides, this.clsActive); }, computed: { duration: ({ velocity }, $el) => speedUp($el.offsetWidth / velocity), list: ({ selList }, $el) => util.$(selList, $el), maxIndex() { return this.length - 1; }, slides() { return util.children(this.list); }, length() { return this.slides.length; } }, watch: { slides(slides, prev) { if (prev) { this.$emit(); } } }, events: { itemshow({ target }) { util.addClass(target, this.clsEnter, this.clsSlideActive); }, itemshown({ target }) { util.removeClass(target, this.clsEnter); }, itemhide({ target }) { util.addClass(target, this.clsLeave); }, itemhidden({ target }) { util.removeClass(target, this.clsLeave, this.clsSlideActive); } }, methods: { async show(index, force = false) { var _a; if (this.dragging || !this.length || this.parallax) { return; } const { stack } = this; const queueIndex = force ? 0 : stack.length; const reset = () => { stack.splice(queueIndex, 1); if (stack.length) { this.show(stack.shift(), true); } }; stack[force ? "unshift" : "push"](index); if (!force && stack.length > 1) { if (stack.length === 2) { (_a = this._transitioner) == null ? void 0 : _a.forward(Math.min(this.duration, 200)); } return; } const prevIndex = this.getIndex(this.index); const prev = util.hasClass(this.slides, this.clsActive) && this.slides[prevIndex]; const nextIndex = this.getIndex(index, this.index); const next = this.slides[nextIndex]; if (prev === next) { reset(); return; } this.dir = getDirection(index, prevIndex); this.prevIndex = prevIndex; this.index = nextIndex; if (prev && !util.trigger(prev, "beforeitemhide", [this]) || !util.trigger(next, "beforeitemshow", [this, prev])) { this.index = this.prevIndex; reset(); return; } prev && util.trigger(prev, "itemhide", [this]); util.trigger(next, "itemshow", [this]); await this._show(prev, next, force); prev && util.trigger(prev, "itemhidden", [this]); util.trigger(next, "itemshown", [this]); stack.shift(); this._transitioner = null; if (stack.length) { requestAnimationFrame(() => stack.length && this.show(stack.shift(), true)); } }, getIndex(index = this.index, prev = this.index) { return util.clamp( util.getIndex(index, this.slides, prev, this.finite), 0, Math.max(0, this.maxIndex) ); }, getValidIndex(index = this.index, prevIndex = this.prevIndex) { return this.getIndex(index, prevIndex); }, async _show(prev, next, force) { this._transitioner = this._getTransitioner(prev, next, this.dir, { easing: force ? next.offsetWidth < 600 ? easeOutQuad : easeOutQuart : this.easing, ...this.transitionOptions }); if (!force && !prev) { this._translate(1); return; } const { length } = this.stack; return this._transitioner[length > 1 ? "forward" : "show"]( length > 1 ? Math.min(this.duration, 75 + 75 / (length - 1)) : this.duration, this.percent ); }, _translate(percent, prev = this.prevIndex, next = this.index) { const transitioner = this._getTransitioner(prev === next ? false : prev, next); transitioner.translate(percent); return transitioner; }, _getTransitioner(prev = this.prevIndex, next = this.index, dir = this.dir || 1, options = this.transitionOptions) { return new this.Transitioner( util.isNumber(prev) ? this.slides[prev] : prev, util.isNumber(next) ? this.slides[next] : next, dir * (util.isRtl ? -1 : 1), options ); } } }; function getDirection(index, prevIndex) { return index === "next" ? 1 : index === "previous" ? -1 : index < prevIndex ? -1 : 1; } function speedUp(x) { return 0.5 * x + 300; } var Slideshow = { mixins: [Slider], props: { animation: String }, data: { animation: "slide", clsActivated: "uk-transition-active", Animations: Animations$1, Transitioner }, computed: { animation({ animation, Animations: Animations2 }) { return { ...Animations2[animation] || Animations2.slide, name: animation }; }, transitionOptions() { return { animation: this.animation }; } }, observe: resize(), events: { itemshow({ target }) { util.addClass(target, this.clsActive); }, itemshown({ target }) { util.addClass(target, this.clsActivated); }, itemhidden({ target }) { util.removeClass(target, this.clsActive, this.clsActivated); } } }; ({ ...Animations$1}); function scale3d(value) { return `scale3d(${value}, ${value}, 1)`; } var Animations = { ...Animations$1, fade: { show() { return [{ opacity: 0 }, { opacity: 1 }]; }, percent(current) { return 1 - util.css(current, "opacity"); }, translate(percent) { return [{ opacity: 1 - percent }, { opacity: percent }]; } }, scale: { show() { return [ { opacity: 0, transform: scale3d(1 - 0.2) }, { opacity: 1, transform: scale3d(1) } ]; }, percent(current) { return 1 - util.css(current, "opacity"); }, translate(percent) { return [ { opacity: 1 - percent, transform: scale3d(1 - 0.2 * percent) }, { opacity: percent, transform: scale3d(1 - 0.2 + 0.2 * percent) } ]; } } }; var LightboxPanel = { i18n: { counter: "%s / %s" }, mixins: [Modal, Slideshow], functional: true, props: { counter: Boolean, preload: Number, nav: Boolean, slidenav: Boolean, delayControls: Number, videoAutoplay: Boolean, template: String }, data: () => ({ counter: false, preload: 1, nav: false, slidenav: true, delayControls: 3e3, videoAutoplay: false, items: [], cls: "uk-open", clsPage: "uk-lightbox-page", clsFit: "uk-lightbox-items-fit", clsZoom: "uk-lightbox-zoom", attrItem: "uk-lightbox-item", selList: ".uk-lightbox-items", selClose: ".uk-close-large", selNav: ".uk-lightbox-thumbnav, .uk-lightbox-dotnav", selCaption: ".uk-lightbox-caption", selCounter: ".uk-lightbox-counter", pauseOnHover: false, velocity: 2, Animations, template: `<div class="uk-lightbox uk-overflow-hidden"> <div class="uk-lightbox-items"></div> <div class="uk-position-top-right uk-position-small uk-transition-fade" uk-inverse> <button class="uk-lightbox-close uk-close-large" type="button" uk-close></button> </div> <div class="uk-lightbox-slidenav uk-position-center-left uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-previous uk-lightbox-item="previous"></a> </div> <div class="uk-lightbox-slidenav uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse> <a href uk-slidenav-next uk-lightbox-item="next"></a> </div> <div class="uk-position-center-right uk-position-medium uk-transition-fade" uk-inverse style="max-height: 90vh; overflow: auto;"> <ul class="uk-lightbox-thumbnav uk-lightbox-thumbnav-vertical uk-thumbnav uk-thumbnav-vertical"></ul> <ul class="uk-lightbox-dotnav uk-dotnav uk-dotnav-vertical"></ul> </div> <div class="uk-lightbox-counter uk-text-large uk-position-top-left uk-position-small uk-transition-fade" uk-inverse></div> <div class="uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>` }), created() { let $el = util.$(this.template); if (util.isTag($el, "template")) { $el = util.fragment(util.html($el)); } const list = util.$(this.selList, $el); const navType = this.$props.nav; util.remove(util.$$(this.selNav, $el).filter((el) => !util.matches(el, `.uk-${navType}`))); for (const [i, item] of this.items.entries()) { util.append(list, "<div>"); if (navType === "thumbnav") { util.wrapAll( toThumbnavItem(item, this.videoAutoplay), util.append(util.$(this.selNav, $el), `<li uk-lightbox-item="${i}"><a href></a></li>`) ); } } if (!this.slidenav) { util.remove(util.$$(".uk-lightbox-slidenav", $el)); } if (!this.counter) { util.remove(util.$(this.selCounter, $el)); } util.addClass(list, this.clsFit); const close = util.$("[uk-close]", $el); const closeLabel = this.t("close"); if (close && closeLabel) { close.dataset.i18n = JSON.stringify({ label: closeLabel }); } this.$mount(util.append(this.container, $el)); }, events: [ { name: "click", self: true, filter: ({ bgClose }) => bgClose, delegate: ({ selList }) => `${selList} > *`, handler(e) { if (!e.defaultPrevented) { this.hide(); } } }, { name: "click", self: true, delegate: ({ clsZoom }) => `.${clsZoom}`, handler(e) { if (!e.defaultPrevented) { util.toggleClass(this.list, this.clsFit); } } }, { name: `${util.pointerMove} ${util.pointerDown} keydown`, filter: ({ delayControls }) => delayControls, handler() { this.showControls(); } }, { name: "shown", self: true, handler() { this.showControls(); } }, { name: "hide", self: true, handler() { this.hideControls(); util.removeClass(this.slides, this.clsActive); util.Transition.stop(this.slides); } }, { name: "hidden", self: true, handler() { this.$destroy(true); } }, { name: "keyup", el: () => document, handler({ keyCode }) { if (!this.isToggled() || !this.draggable) { return; } let i = -1; if (keyCode === keyMap.LEFT) { i = "previous"; } else if (keyCode === keyMap.RIGHT) { i = "next"; } else if (keyCode === keyMap.HOME) { i = 0; } else if (keyCode === keyMap.END) { i = "last"; } if (~i) { this.show(i); } } }, { name: "beforeitemshow", handler(e) { util.html(util.$(this.selCaption, this.$el), this.getItem().caption || ""); util.html( util.$(this.selCounter, this.$el), this.t("counter", this.index + 1, this.slides.length) ); for (let j = -this.preload; j <= this.preload; j++) { this.loadItem(this.index + j); } if (this.isToggled()) { return; } this.draggable = false; e.preventDefault(); this.toggleElement(this.$el, true, false); this.animation = Animations.scale; util.removeClass(e.target, this.clsActive); this.stack.splice(1, 0, this.index); } }, { name: "itemshown", handler() { this.draggable = this.$props.draggable; } }, { name: "itemload", async handler(_, item) { const { source: src, type, attrs = {} } = item; this.setItem(item, "<span uk-spinner uk-inverse></span>"); if (!src) { return; } let matches2; const iframeAttrs = { allowfullscreen: "", style: "max-width: 100%; box-sizing: border-box;", "uk-responsive": "", "uk-video": `${Boolean(this.videoAutoplay)}` }; if (type === "image" || isImage(src)) { const img = createEl("img"); wrapInPicture(img, item.sources); util.attr(img, { src, ...util.pick(item, ["alt", "srcset", "sizes"]), ...attrs }); util.on(img, "load", () => this.setItem(item, util.parent(img) || img)); util.on(img, "error", () => this.setError(item)); } else if (type === "video" || isVideo(src)) { const inline = this.videoAutoplay === "inline"; const video = createEl("video", { src, playsinline: "", controls: inline ? null : "", loop: inline ? "" : null, poster: this.videoAutoplay ? null : item.poster, "uk-video": inline ? "automute: true" : Boolean(this.videoAutoplay), ...attrs }); util.on(video, "loadedmetadata", () => this.setItem(item, video)); util.on(video, "error", () => this.setError(item)); } else if (type === "iframe" || src.match(/\.(html|php)($|\?)/i)) { this.setItem( item, createEl("iframe", { src, allowfullscreen: "", class: "uk-lightbox-iframe", ...attrs }) ); } else if (matches2 = src.match( /\/\/(?:.*?youtube(-nocookie)?\..*?(?:[?&]v=|\/shorts\/)|youtu\.be\/)([\w-]{11})[&?]?(.*)?/ )) { this.setItem( item, createEl("iframe", { src: `https://www.youtube${matches2[1] || ""}.com/embed/${matches2[2]}${matches2[3] ? `?${matches2[3]}` : ""}`, width: 1920, height: 1080, ...iframeAttrs, ...attrs }) ); } else if (matches2 = src.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/)) { try { const { height, width } = await (await fetch( `https://vimeo.com/api/oembed.json?maxwidth=1920&url=${encodeURI( src )}`, { credentials: "omit" } )).json(); this.setItem( item, createEl("iframe", { src: `https://player.vimeo.com/video/${matches2[1]}${matches2[2] ? `?${matches2[2]}` : ""}`, width, height, ...iframeAttrs, ...attrs }) ); } catch (e) { this.setError(item); } } } }, { name: "itemloaded", handler() { this.$emit("resize"); } } ], update: { read() { for (const media of util.$$(`${this.selList} :not([controls]):is(img,video)`, this.$el)) { util.toggleClass( media, this.clsZoom, (media.naturalHeight || media.videoHeight) - this.$el.offsetHeight > Math.max( 0, (media.naturalWidth || media.videoWidth) - this.$el.offsetWidth ) ); } }, events: ["resize"] }, methods: { loadItem(index = this.index) { const item = this.getItem(index); if (!this.getSlide(item).childElementCount) { util.trigger(this.$el, "itemload", [item]); } }, getItem(index = this.index) { return this.items[util.getIndex(index, this.slides)]; }, setItem(item, content) { util.trigger(this.$el, "itemloaded", [this, util.html(this.getSlide(item), content)]); }, getSlide(item) { return this.slides[this.items.indexOf(item)]; }, setError(item) { this.setItem(item, '<span uk-icon="icon: bolt; ratio: 2" uk-inverse></span>'); }, showControls() { clearTimeout(this.controlsTimer); this.controlsTimer = this.delayControls && setTimeout(this.hideControls, this.delayControls); util.addClass(this.$el, "uk-active", "uk-transition-active"); }, hideControls() { util.removeClass(this.$el, "uk-active", "uk-transition-active"); } } }; function createEl(tag, attrs) { const el = util.fragment(`<${tag}>`); util.attr(el, attrs); return el; } function toThumbnavItem(item, videoAutoplay) { const el = item.poster || item.thumb && (item.type === "image" || isImage(item.thumb)) ? createEl("img", { src: item.poster || item.thumb, alt: "" }) : item.thumb && (item.type === "video" || isVideo(item.thumb)) ? createEl("video", { src: item.thumb, loop: "", playsinline: "", "uk-video": `autoplay: ${Boolean(videoAutoplay)}; automute: true` }) : createEl("canvas"); if (item.thumbRatio) { el.style.aspectRatio = item.thumbRatio; } return el; } function isImage(src) { return src == null ? void 0 : src.match(/\.(avif|jpe?g|jfif|a?png|gif|svg|webp)($|\?)/i); } function isVideo(src) { return src == null ? void 0 : src.match(/\.(mp4|webm|ogv)($|\?)/i); } const selDisabled = ".uk-disabled *, .uk-disabled, [disabled]"; var Component = { install, props: { toggle: String }, data: { toggle: "a" }, computed: { toggles: ({ toggle }, $el) => util.$$(toggle, $el) }, watch: { toggles(toggles) { this.hide(); for (const toggle of toggles) { if (util.isTag(toggle, "a")) { toggle.role = "button"; } } } }, disconnected() { this.hide(); }, events: { name: "click", delegate: ({ toggle }) => toggle, handler(e) { if (!e.defaultPrevented) { e.preventDefault(); if (!util.matches(e.current, selDisabled)) { this.show(e.current); } } } }, methods: { show(index) { let items = this.toggles.map(toItem); if (this.nav === "thumbnav") { ensureThumb.call(this, this.toggles, items); } items = util.uniqueBy(items, "source"); if (util.isElement(index)) { const { source } = toItem(index); index = util.findIndex(items, ({ source: src }) => source === src); } this.panel = this.panel || this.$create("lightboxPanel", { ...this.$props, items }); util.on(this.panel.$el, "hidden", () => this.panel = null); return this.panel.show(index); }, hide() { var _a; return (_a = this.panel) == null ? void 0 : _a.hide(); } } }; function install(UIkit, Lightbox) { if (!UIkit.lightboxPanel) { UIkit.component("lightboxPanel", LightboxPanel); } util.assign(Lightbox.props, UIkit.component("lightboxPanel").options.props); } function ensureThumb(toggles, items) { for (const [i, toggle] of Object.entries(toggles)) { if (items[i].thumb) { continue; } const parent = util.parents(toggle).reverse().concat(toggle).find( (parent2) => this.$el.contains(parent2) && (parent2 === toggle || util.$$(this.toggle, parent2).length === 1) ); if (!parent) { continue; } const media = util.$("img,video", parent); if (media) { items[i].thumb = media.currentSrc || media.poster || media.src; items[i].thumbRatio = (media.naturalWidth || media.videoWidth) / (media.naturalHeight || media.videoHeight); } } } function toItem(el) { const item = {}; for (const attribute of el.getAttributeNames()) { const key = attribute.replace(/^data-/, ""); item[key === "href" ? "source" : key] = el.getAttribute(attribute); } item.attrs = parseOptions(item.attrs); return item; } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("lightbox", Component); } return Component; })); assets/uikit/dist/js/components/slider.min.js000064400000065762151666572350015401 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(s,I){typeof exports=="object"&&typeof module<"u"?module.exports=I(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitslider",["uikit-util"],I):(s=typeof globalThis<"u"?globalThis:s||self,s.UIkitSlider=I(s.UIkit.util))})(this,(function(s){"use strict";function I(t,e="update"){t._connected&&t._updates.length&&(t._updateCount||(t._updateCount=0,requestAnimationFrame(()=>t._updateCount=0)),t._queued||(t._queued=new Set,s.fastdom.read(()=>{t._connected&&ut(t,t._queued),t._queued=null})),t._updateCount++<20&&t._queued.add(e.type||e))}function ut(t,e){for(const{read:i,write:n,events:o=[]}of t._updates){if(!e.has("update")&&!o.some(a=>e.has(a)))continue;let r;i&&(r=i.call(t,t._data,e),r&&s.isPlainObject(r)&&s.assign(t._data,r)),n&&r!==!1&&s.fastdom.write(()=>{t._connected&&n.call(t,t._data,e)})}}function z(t){return P(s.observeResize,t,"resize")}function mt(t){return P(s.observeIntersection,t)}function pt(t={}){return mt({handler:function(e,i){const{targets:n=this.$el,preload:o=5}=t;for(const r of s.toNodes(s.isFunction(n)?n(this):n))s.$$('[loading="lazy"]',r).slice(0,o-1).forEach(a=>s.removeAttr(a,"loading"));for(const r of e.filter(({isIntersecting:a})=>a).map(({target:a})=>a))i.unobserve(r)},...t})}function vt(t){return P((e,i)=>({disconnect:s.on(xt(e),"scroll",i,{passive:!0})}),t,"scroll")}function P(t,e,i){return{observe:t,handler(){I(this,i)},...e}}function xt(t){return s.toNodes(t).map(e=>{const{ownerDocument:i}=e,n=s.scrollParent(e,!0);return n===i.scrollingElement?i:n})}var wt={connected(){s.addClass(this.$el,this.$options.id)}},It={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var i,n,o;let r=0;return((o=((i=this.i18n)==null?void 0:i[t])||((n=this.$options.i18n)==null?void 0:n[t]))==null?void 0:o.replace(/%s/g,()=>e[r++]||""))||""}}},bt={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){s.attr(this.list,"aria-live",this.autoplay?"off":"polite"),this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){s.attr(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el:()=>document,filter:({autoplay:t})=>t,handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>{this.stack.length||!s.isVisible(this.$el)||this.draggable&&s.matches(this.$el,":focus-within")&&!s.matches(this.$el,":focus")||this.pauseOnHover&&s.matches(this.$el,":hover")||this.show("next")},this.autoplayInterval)},stopAutoplay(){clearInterval(this.interval)}}};const _={passive:!1,capture:!0},B={passive:!0,capture:!0},$t="touchstart mousedown",D="touchmove mousemove",j="touchend touchcancel mouseup click input scroll";var yt={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const e=this[t];this[t]=i=>{const n=s.getEventPos(i).x*(s.isRtl?-1:1);this.prevPos=n===this.pos?this.prevPos:this.pos,this.pos=n,e(i)}}},events:[{name:$t,passive:!0,delegate:({selList:t})=>`${t} > *`,handler(t){!this.draggable||this.parallax||!s.isTouch(t)&&St(t.target)||t.target.closest(s.selInput)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}},{name:D,el:({list:t})=>t,handler:s.noop,..._}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,s.on(document,D,this.move,_),s.on(document,j,this.end,B),s.css(this.list,"userSelect","none")},move(t){const e=this.pos-this.drag;if(e===0||this.prevPos===this.pos||!this.dragging&&Math.abs(e)<this.threshold)return;t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=e<0?1:-1;let{slides:i,prevIndex:n}=this,o=Math.abs(e),r=this.getIndex(n+this.dir),a=U.call(this,n,r);for(;r!==n&&o>a;)this.drag-=a*this.dir,n=r,o-=a,r=this.getIndex(n+this.dir),a=U.call(this,n,r);this.percent=o/a;const h=i[n],d=i[r],f=this.index!==r,c=n===r;let l;for(const g of[this.index,this.prevIndex])s.includes([r,n],g)||(s.trigger(i[g],"itemhidden",[this]),c&&(l=!0,this.prevIndex=n));(this.index===n&&this.prevIndex!==n||l)&&s.trigger(i[this.index],"itemshown",[this]),f&&(this.prevIndex=n,this.index=r,c||(s.trigger(h,"beforeitemhide",[this]),s.trigger(h,"itemhide",[this])),s.trigger(d,"beforeitemshow",[this]),s.trigger(d,"itemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),h,!c&&d)},end(){if(s.off(document,D,this.move,_),s.off(document,j,this.end,B),this.dragging)if(setTimeout(s.on(this.list,"click",t=>t.preventDefault(),_)),this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(s.isRtl?this.dir*(s.isRtl?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(s.trigger(this.slides[this.prevIndex],"itemhidden",[this]),s.trigger(this.slides[this.index],"itemshown",[this]),this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}s.css(this.list,{userSelect:""}),this.drag=this.percent=null}}};function U(t,e){return this._getTransitioner(t,t!==e&&e).getDistance()||this.slides[t].offsetWidth}function St(t){return s.css(t,"userSelect")!=="none"&&s.toArray(t.childNodes).some(e=>e.nodeType===3&&e.textContent.trim())}s.memoize((t,e)=>{const i=Object.keys(e),n=i.concat(t).map(o=>[s.hyphenate(o),`data-${s.hyphenate(o)}`]).flat();return{attributes:i,filter:n}});let _t=1;function q(t,e=null){return(e==null?void 0:e.id)||`${t.$options.id}-${_t++}`}const b={SPACE:32,END:35,HOME:36,LEFT:37,RIGHT:39};function Ct(t){t.target.closest('a[href="#"],a[href=""]')&&t.preventDefault()}var kt={i18n:{next:"Next slide",previous:"Previous slide",slideX:"Slide %s",slideLabel:"%s of %s",role:"String"},data:{selNav:!1,role:"region"},computed:{nav:({selNav:t},e)=>s.$(t,e),navChildren(){return s.children(this.nav)},selNavItem:({attrItem:t})=>`[${t}],[data-${t}]`,navItems(t,e){return s.$$(this.selNavItem,e)}},watch:{nav(t,e){s.attr(t,"role","tablist"),this.padNavitems(),e&&this.$emit()},list(t){s.isTag(t,"ul")&&s.attr(t,"role","presentation")},navChildren(t){s.attr(t,"role","presentation"),this.padNavitems(),this.updateNav()},navItems(t){for(const e of t){const i=s.data(e,this.attrItem),n=s.$("a,button",e)||e;let o,r=null;if(s.isNumeric(i)){const a=s.toNumber(i),h=this.slides[a];h&&(h.id||(h.id=q(this,h)),r=h.id),o=this.t("slideX",s.toFloat(i)+1),n.role="tab"}else this.list&&(this.list.id||(this.list.id=q(this,this.list)),r=this.list.id),o=this.t(i);n.ariaControls=r,n.ariaLabel=n.ariaLabel||o}},slides(t){t.forEach((e,i)=>s.attr(e,{role:this.nav?"tabpanel":"group","aria-label":this.t("slideLabel",i+1,this.length),"aria-roledescription":this.nav?null:"slide"})),this.padNavitems()}},connected(){this.$el.role=this.role,this.$el.ariaRoleDescription="carousel"},update:[{write(){this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]}],events:[{name:"click keydown",delegate:({selNavItem:t})=>t,filter:({parallax:t})=>!t,handler(t){t.target.closest("a,button")&&(t.type==="click"||t.keyCode===b.SPACE)&&(Ct(t),this.show(s.data(t.current,this.attrItem)))}},{name:"itemshow",handler(){this.updateNav()}},{name:"keydown",delegate:({selNavItem:t})=>t,filter:({parallax:t})=>!t,handler(t){const{current:e,keyCode:i}=t,n=s.data(e,this.attrItem);if(!s.isNumeric(n))return;let o=i===b.HOME?0:i===b.END?"last":i===b.LEFT?"previous":i===b.RIGHT?"next":-1;~o&&(t.preventDefault(),this.show(o))}}],methods:{updateNav(){const t=this.getValidIndex();for(const e of this.navItems){const i=s.data(e,this.attrItem),n=s.$("a,button",e)||e;if(s.isNumeric(i)){const r=s.toNumber(i)===t;s.toggleClass(e,this.clsActive,r),s.toggleClass(n,"uk-disabled",!!this.parallax),n.ariaSelected=r,n.tabIndex=r&&!this.parallax?null:-1,r&&n&&s.matches(s.parent(e),":focus-within")&&n.focus()}else s.toggleClass(e,"uk-invisible",this.finite&&(i==="previous"&&t===0||i==="next"&&t>=this.maxIndex))}},padNavitems(){if(!this.nav)return;const t=[];for(let e=0;e<this.length;e++){const i=`${this.attrItem}="${e}"`;t[e]=this.navChildren.findLast(n=>n.matches(`[${i}]`))||s.$(`<li ${i}><a href></a></li>`)}s.isEqual(t,this.navChildren)||s.html(this.nav,t)}}};const At="cubic-bezier(0.25, 0.46, 0.45, 0.94)",Mt="cubic-bezier(0.165, 0.84, 0.44, 1)";var Et={mixins:[bt,yt,kt,It],props:{clsActivated:String,easing:String,index:Number,finite:Boolean,velocity:Number},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:"",clsEnter:"uk-slide-enter",clsLeave:"uk-slide-leave",clsSlideActive:"uk-slide-active",Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){s.removeClass(this.slides,this.clsActive)},computed:{duration:({velocity:t},e)=>Q(e.offsetWidth/t),list:({selList:t},e)=>s.$(t,e),maxIndex(){return this.length-1},slides(){return s.children(this.list)},length(){return this.slides.length}},watch:{slides(t,e){e&&this.$emit()}},events:{itemshow({target:t}){s.addClass(t,this.clsEnter,this.clsSlideActive)},itemshown({target:t}){s.removeClass(t,this.clsEnter)},itemhide({target:t}){s.addClass(t,this.clsLeave)},itemhidden({target:t}){s.removeClass(t,this.clsLeave,this.clsSlideActive)}},methods:{async show(t,e=!1){var i;if(this.dragging||!this.length||this.parallax)return;const{stack:n}=this,o=e?0:n.length,r=()=>{n.splice(o,1),n.length&&this.show(n.shift(),!0)};if(n[e?"unshift":"push"](t),!e&&n.length>1){n.length===2&&((i=this._transitioner)==null||i.forward(Math.min(this.duration,200)));return}const a=this.getIndex(this.index),h=s.hasClass(this.slides,this.clsActive)&&this.slides[a],d=this.getIndex(t,this.index),f=this.slides[d];if(h===f){r();return}if(this.dir=Nt(t,a),this.prevIndex=a,this.index=d,h&&!s.trigger(h,"beforeitemhide",[this])||!s.trigger(f,"beforeitemshow",[this,h])){this.index=this.prevIndex,r();return}h&&s.trigger(h,"itemhide",[this]),s.trigger(f,"itemshow",[this]),await this._show(h,f,e),h&&s.trigger(h,"itemhidden",[this]),s.trigger(f,"itemshown",[this]),n.shift(),this._transitioner=null,n.length&&requestAnimationFrame(()=>n.length&&this.show(n.shift(),!0))},getIndex(t=this.index,e=this.index){return s.clamp(s.getIndex(t,this.slides,e,this.finite),0,Math.max(0,this.maxIndex))},getValidIndex(t=this.index,e=this.prevIndex){return this.getIndex(t,e)},async _show(t,e,i){if(this._transitioner=this._getTransitioner(t,e,this.dir,{easing:i?e.offsetWidth<600?At:Mt:this.easing,...this.transitionOptions}),!i&&!t){this._translate(1);return}const{length:n}=this.stack;return this._transitioner[n>1?"forward":"show"](n>1?Math.min(this.duration,75+75/(n-1)):this.duration,this.percent)},_translate(t,e=this.prevIndex,i=this.index){const n=this._getTransitioner(e===i?!1:e,i);return n.translate(t),n},_getTransitioner(t=this.prevIndex,e=this.index,i=this.dir||1,n=this.transitionOptions){return new this.Transitioner(s.isNumber(t)?this.slides[t]:t,s.isNumber(e)?this.slides[e]:e,i*(s.isRtl?-1:1),n)}}};function Nt(t,e){return t==="next"?1:t==="previous"||t<e?-1:1}function Q(t){return .5*t+300}function Tt(t,e){var i;return(i=t==null?void 0:t.startsWith)==null?void 0:i.call(t,e)}const{from:Pt}=Array;function Dt(t){return typeof t=="function"}function O(t){return t!==null&&typeof t=="object"}function Ot(t){return O(t)&&t===t.window}function Ft(t){return X(t)===9}function G(t){return X(t)>=1}function X(t){return!Ot(t)&&O(t)&&t.nodeType}function F(t){return typeof t=="string"}function Rt(t){return t===void 0}function C(t){return t&&m(t)[0]}function m(t){return G(t)?[t]:Array.from(t||[]).filter(G)}function J(t){const e=Object.create(null);return(i,...n)=>e[i]||(e[i]=t(i,...n))}function R(t,e,i){var n;if(O(e)){for(const o in e)R(t,o,e[o]);return}if(Rt(i))return(n=C(t))==null?void 0:n.getAttribute(e);for(const o of m(t))Dt(i)&&(i=i.call(o,R(o,e))),i===null?Wt(o,e):o.setAttribute(e,i)}function Wt(t,e){m(t).forEach(i=>i.removeAttribute(e))}const Ht=typeof window<"u"&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function Lt(t){return m(t).some(e=>Ht.call(e))}function Vt(t){var e;return(e=C(t))==null?void 0:e.parentElement}function zt(t,e){return m(t).filter(i=>K(i,e))}function K(t,e){return m(t).some(i=>i.matches(e))}function Bt(t,e){t=C(t);const i=t?Pt(t.children):[];return e?zt(i,e):i}function Y(t,e){return Bt(Vt(t)).indexOf(t)}function jt(t,e){return m(Xt(t,C(e),"querySelectorAll"))}const Ut=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,qt=/(\([^)]*\)|[^,])+/g,Qt=J(t=>{let e=!1;if(!t||!F(t))return{};const i=[];for(let n of t.match(qt))n=n.trim().replace(Ut,"$1 *"),e||(e=["!","+","~","-",">"].includes(n[0])),i.push(n);return{selector:i.join(","),selectors:i,isContextSelector:e}}),Gt=/(\([^)]*\)|\S)*/,Z=J(t=>{t=t.slice(1).trim();const[e]=t.match(Gt);return[e,t.slice(e.length+1)]});function Xt(t,e=document,i){var n;const o=Qt(t);if(!o.isContextSelector)return o.selector?W(e,i,o.selector):t;t="";const r=o.selectors.length===1;for(let a of o.selectors){let h,d=e;if(a[0]==="!"&&([h,a]=Z(a),d=(n=e.parentElement)==null?void 0:n.closest(h),!a&&r)||d&&a[0]==="-"&&([h,a]=Z(a),d=d.previousElementSibling,d=K(d,h)?d:null,!a&&r))return d;if(d){if(r)return a[0]==="~"||a[0]==="+"?(a=`:scope > :nth-child(${Y(d)+1}) ${a}`,d=d.parentElement):a[0]===">"&&(a=`:scope ${a}`),W(d,i,a);t+=`${t?",":""}${Jt(d)} ${a}`}}return Ft(e)||(e=e.ownerDocument),W(e,i,t)}function W(t,e,i){try{return t[e](i)}catch{return null}}function Jt(t){const e=[];for(;t.parentNode;){const i=R(t,"id");if(i){e.unshift(`#${Kt(i)}`);break}else{let{tagName:n}=t;n!=="HTML"&&(n+=`:nth-child(${Y(t)+1})`),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function Kt(t){return F(t)?CSS.escape(t):""}const Yt=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Zt(t){const e=Yt.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("template");return i.innerHTML=t.trim(),te(i.content.childNodes)}function te(t){return t.length>1?t:t[0]}function ee(t,e){return se(t)?m(Zt(t)):jt(t,e)}function se(t){return F(t)&&Tt(t.trim(),"<")}function ie(t){return Lt(t)?Math.ceil(Math.max(0,...ee("[stroke]",t).map(e=>{var i;return((i=e.getTotalLength)==null?void 0:i.call(e))||0}))):0}const tt={x:k,y:k,rotate:k,scale:k,color:H,backgroundColor:H,borderColor:H,blur:v,hue:v,fopacity:v,grayscale:v,invert:v,saturate:v,sepia:v,opacity:re,stroke:oe,bgx:st,bgy:st},{keys:et}=Object;at(et(tt),"list"),at(et(tt),void 0);function k(t,e,i){let n=M(i)||{x:"px",y:"px",rotate:"deg"}[t]||"",o;return t==="x"||t==="y"?(t=`translate${s.ucfirst(t)}`,o=r=>s.toFloat(s.toFloat(r).toFixed(n==="px"?0:6))):t==="scale"&&(n="",o=r=>{var a;return M([r])?s.toPx(r,"width",e,!0)/e[`offset${(a=r.endsWith)!=null&&a.call(r,"vh")?"Height":"Width"}`]:s.toFloat(r)}),i.length===1&&i.unshift(t==="scale"?1:0),i=x(i,o),(r,a)=>{r.transform=`${r.transform||""} ${t}(${$(i,a)}${n})`}}function H(t,e,i){return i.length===1&&i.unshift(y(e,t,"")),i=x(i,n=>ne(e,n)),(n,o)=>{const[r,a,h]=ot(i,o),d=r.map((f,c)=>(f+=h*(a[c]-f),c===3?s.toFloat(f):parseInt(f,10))).join(",");n[t]=`rgba(${d})`}}function ne(t,e){return y(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(s.toFloat)}function v(t,e,i){i.length===1&&i.unshift(0);const n=M(i)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,i=x(i),(o,r)=>{const a=$(i,r);o.filter=`${o.filter||""} ${t}(${a+n})`}}function re(t,e,i){return i.length===1&&i.unshift(y(e,t,"")),i=x(i),(n,o)=>{n[t]=$(i,o)}}function oe(t,e,i){i.length===1&&i.unshift(0);const n=M(i),o=ie(e);return i=x(i.reverse(),r=>(r=s.toFloat(r),n==="%"?r*o/100:r)),i.some(([r])=>r)?(s.css(e,"strokeDasharray",o),(r,a)=>{r.strokeDashoffset=$(i,a)}):s.noop}function st(t,e,i,n){i.length===1&&i.unshift(0);const o=t==="bgy"?"height":"width";n[t]=x(i,h=>s.toPx(h,o,e));const r=["bgx","bgy"].filter(h=>h in n);if(r.length===2&&t==="bgx")return s.noop;if(y(e,"backgroundSize","")==="cover")return ae(t,e,i,n);const a={};for(const h of r)a[h]=it(e,h);return nt(r,a,n)}function ae(t,e,i,n){const o=he(e);if(!o.width)return s.noop;const r={width:e.offsetWidth,height:e.offsetHeight},a=["bgx","bgy"].filter(c=>c in n),h={};for(const c of a){const l=n[c].map(([T])=>T),g=Math.min(...l),u=Math.max(...l),N=l.indexOf(g)<l.indexOf(u),p=u-g;h[c]=`${(N?-p:0)-(N?g:u)}px`,r[c==="bgy"?"height":"width"]+=p}const d=s.Dimensions.cover(o,r);for(const c of a){const l=c==="bgy"?"height":"width",g=d[l]-r[l];h[c]=`max(${it(e,c)},-${g}px) + ${h[c]}`}const f=nt(a,h,n);return(c,l)=>{f(c,l),c.backgroundSize=`${d.width}px ${d.height}px`,c.backgroundRepeat="no-repeat"}}function it(t,e){return y(t,`background-position-${e.slice(-1)}`,"")}function nt(t,e,i){return function(n,o){for(const r of t){const a=$(i[r],o);n[`background-position-${r.slice(-1)}`]=`calc(${e[r]} + ${a}px)`}}}const rt={},A={};function he(t){const e=s.css(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(A[e])return A[e];const i=new Image;return e&&(i.src=e,!i.naturalWidth&&!rt[e])?(s.once(i,"error load",()=>{A[e]=L(i),s.trigger(t,s.createEvent("load",!1))}),rt[e]=!0,L(i)):A[e]=L(i)}function L(t){return{width:t.naturalWidth,height:t.naturalHeight}}function x(t,e=s.toFloat){const i=[],{length:n}=t;let o=0;for(let r=0;r<n;r++){let[a,h]=s.isString(t[r])?t[r].trim().split(/ (?![^(]*\))/):[t[r]];if(a=e(a),h=h?s.toFloat(h)/100:null,r===0?h===null?h=0:h&&i.push([a,0]):r===n-1&&(h===null?h=1:h!==1&&(i.push([a,h]),h=1)),i.push([a,h]),h===null)o++;else if(o){const d=i[r-o-1][1],f=(h-d)/(o+1);for(let c=o;c>0;c--)i[r-c][1]=d+f*(o-c+1);o=0}}return i}function ot(t,e){const i=s.findIndex(t.slice(1),([,n])=>e<=n)+1;return[t[i-1][0],t[i][0],(e-t[i-1][1])/(t[i][1]-t[i-1][1])]}function $(t,e){const[i,n,o]=ot(t,e);return i+Math.abs(i-n)*o*(i<n?1:-1)}const de=/^-?\d+(?:\.\d+)?(\S+)?/;function M(t,e){var i;for(const n of t){const o=(i=n.match)==null?void 0:i.call(n,de);if(o)return o[1]}return e}function y(t,e,i){const n=t.style[e],o=s.css(s.css(t,e,i),e);return t.style[e]=n,o}function at(t,e){return t.reduce((i,n)=>(i[n]=e,i),{})}function ce(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,1-e)}var le={props:{parallax:Boolean,parallaxTarget:Boolean,parallaxStart:String,parallaxEnd:String,parallaxEasing:Number},data:{parallax:!1,parallaxTarget:!1,parallaxStart:0,parallaxEnd:0,parallaxEasing:0},observe:[z({target:({$el:t,parallaxTarget:e})=>[t,e],filter:({parallax:t})=>t}),vt({filter:({parallax:t})=>t})],computed:{parallaxTarget({parallaxTarget:t},e){return t&&s.query(t,e)||this.list}},update:{read(){if(!this.parallax)return!1;const t=this.parallaxTarget;if(!t)return!1;const e=s.toPx(this.parallaxStart,"height",t,!0),i=s.toPx(this.parallaxEnd,"height",t,!0),n=ce(s.scrolledOver(t,e,i),this.parallaxEasing);return{parallax:this.getIndexAt(n)}},write({parallax:t}){const[e,i]=t,n=this.getValidIndex(e+Math.ceil(i)),o=this.slides[e],r=this.slides[n],{triggerShow:a,triggerShown:h,triggerHide:d,triggerHidden:f}=fe(this);if(~this.prevIndex)for(const l of new Set([this.index,this.prevIndex]))s.includes([n,e],l)||(d(this.slides[l]),f(this.slides[l]));const c=this.prevIndex!==e||this.index!==n;this.dir=1,this.prevIndex=e,this.index=n,o!==r&&d(o),a(r),c&&h(o),this._translate(o===r?1:i,o,r)},events:["scroll","resize"]},methods:{getIndexAt(t){const e=t*(this.length-1);return[Math.floor(e),e%1]}}};function fe(t){const{clsSlideActive:e,clsEnter:i,clsLeave:n}=t;return{triggerShow:o,triggerShown:r,triggerHide:a,triggerHidden:h};function o(d){s.hasClass(d,n)&&(a(d),h(d)),s.hasClass(d,e)||(s.trigger(d,"beforeitemshow",[t]),s.trigger(d,"itemshow",[t]))}function r(d){s.hasClass(d,i)&&s.trigger(d,"itemshown",[t])}function a(d){s.hasClass(d,e)||o(d),s.hasClass(d,i)&&r(d),s.hasClass(d,n)||(s.trigger(d,"beforeitemhide",[t]),s.trigger(d,"itemhide",[t]))}function h(d){s.hasClass(d,n)&&s.trigger(d,"itemhidden",[t])}}var ge={update:{write(){if(this.stack.length||this.dragging||this.parallax)return;const t=this.getValidIndex();!~this.prevIndex||this.index!==t?this.show(t):this._translate(1)},events:["resize"]}},ue={observe:pt({target:({slides:t})=>t,targets:t=>t.getAdjacentSlides()}),methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}};function ht(t=0,e="%"){return t?`translate3d(${t+e}, 0, 0)`:""}function V(t,e,i){s.trigger(t,s.createEvent(e,!1,!1,i))}function me(){let t;return{promise:new Promise(e=>t=e),resolve:t}}function pe(t,e,i,{center:n,easing:o,list:r}){const a=t?S(t,r,n):S(e,r,n)+s.dimensions(e).width*i,h=e?S(e,r,n):a+s.dimensions(t).width*i*(s.isRtl?-1:1),{promise:d,resolve:f}=me();return{dir:i,show(c,l=0,g){const u=g?"linear":o;return c-=Math.round(c*s.clamp(l,-1,1)),s.css(r,"transitionProperty","none"),this.translate(l),s.css(r,"transitionProperty",""),l=t?l:s.clamp(l,0,1),V(this.getItemIn(),"itemin",{percent:l,duration:c,timing:u,dir:i}),t&&V(this.getItemIn(!0),"itemout",{percent:1-l,duration:c,timing:u,dir:i}),s.Transition.start(r,{transform:ht(-h*(s.isRtl?-1:1),"px")},c,u).then(f,s.noop),d},cancel(){return s.Transition.cancel(r)},reset(){s.css(r,"transform","")},async forward(c,l=this.percent()){return await this.cancel(),this.show(c,l,!0)},translate(c){if(c===this.percent())return;const l=this.getDistance()*i*(s.isRtl?-1:1);s.css(r,"transform",ht(s.clamp(-h+(l-l*c),-w(r),s.dimensions(r).width)*(s.isRtl?-1:1),"px"));const g=this.getActives(),u=this.getItemIn(),N=this.getItemIn(!0);c=t?s.clamp(c,-1,1):0;for(const p of s.children(r)){const T=s.includes(g,p),ft=p===u,gt=p===N,Ie=ft||!gt&&(T||i*(s.isRtl?-1:1)===-1^E(p,r)>E(t||e));V(p,`itemtranslate${Ie?"in":"out"}`,{dir:i,percent:gt?1-c:ft?c:T?1:0})}},percent(){return Math.abs((new DOMMatrix(s.css(r,"transform")).m41*(s.isRtl?-1:1)+a)/(h-a))},getDistance(){return Math.abs(h-a)},getItemIn(c=!1){let l=this.getActives(),g=ct(r,S(e||t,r,n));if(c){const u=l;l=g,g=u}return g[s.findIndex(g,u=>!s.includes(l,u))]},getActives(){return ct(r,S(t||e,r,n))}}}function S(t,e,i){const n=E(t,e);return i?n-ve(t,e):Math.min(n,dt(e))}function dt(t){return Math.max(0,w(t)-s.dimensions(t).width)}function w(t,e){return s.sumBy(s.children(t).slice(0,e),i=>s.dimensions(i).width)}function ve(t,e){return s.dimensions(e).width/2-s.dimensions(t).width/2}function E(t,e){return t&&(s.position(t).left+(s.isRtl?s.dimensions(t).width-s.dimensions(e).width:0))*(s.isRtl?-1:1)||0}function ct(t,e){e-=1;const i=s.dimensions(t).width,n=e+i+2;return s.children(t).filter(o=>{const r=E(o,t),a=r+Math.min(s.dimensions(o).width,i);return r>=e&&a<=n})}var lt={mixins:[wt,Et,ge,le,ue],props:{center:Boolean,sets:Boolean,active:String},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",active:"all",Transitioner:pe},computed:{finite({finite:t}){return t||xe(this.list,this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return s.last(this.sets);let t=0;const e=dt(this.list),i=s.findIndex(this.slides,n=>{if(t>=e-.005)return!0;t+=s.dimensions(n).width});return~i?i:this.length-1},sets({sets:t}){if(!t||this.parallax)return;let e=0;const i=[],n=s.dimensions(this.list).width;for(let o=0;o<this.length;o++){const r=s.dimensions(this.slides[o]).width;e+r>n&&(e=0),this.center?e<n/2&&e+r+s.dimensions(this.slides[s.getIndex(o+1,this.slides)]).width/2>n/2&&(i.push(o),e=n/2-r/2):e===0&&i.push(Math.min(o,this.maxIndex)),e+=r}if(i.length)return i},transitionOptions(){return{center:this.center,list:this.list}},slides(){return s.children(this.list).filter(s.isVisible)}},connected(){s.toggleClass(this.$el,this.clsContainer,!s.$(`.${this.clsContainer}`,this.$el))},observe:z({target:({slides:t,$el:e})=>[e,...t]}),update:{write(){for(const t of this.navItems){const e=s.toNumber(s.data(t,this.attrItem));e!==!1&&(t.hidden=!this.maxIndex||e>this.maxIndex||this.sets&&!s.includes(this.sets,e))}this.reorder(),this.parallax||this._translate(1),this.updateActiveClasses()},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!s.includes(this.sets,this.index)&&(this.index=this.getValidIndex());const e=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&e>1){for(let o=0;o<e;o++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault();return}const i=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex,n=w(this.list)/this.length;this.duration=Q(n/this.velocity)*(s.dimensions(this.slides[i]).width/n),this.reorder()},itemshow(){~this.prevIndex&&s.addClass(this._getTransitioner().getItemIn(),this.clsActive),this.updateActiveClasses(this.prevIndex)},itemshown(){this.updateActiveClasses()}},methods:{reorder(){if(this.finite){s.css(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((o,r)=>s.css(o,"order",this.dir>0&&r<t?1:this.dir<0&&r>=this.index?-1:"")),!this.center||!this.length)return;const e=this.slides[t];let i=s.dimensions(this.list).width/2-s.dimensions(e).width/2,n=0;for(;i>0;){const o=this.getIndex(--n+t,t),r=this.slides[o];s.css(r,"order",o>t?-2:-1),i-=s.dimensions(r).width}},updateActiveClasses(t=this.index){let e=this._getTransitioner(t).getActives();this.active!=="all"&&(e=[this.slides[this.getValidIndex(t)]]);const i=[this.clsActive,!this.sets||s.includes(this.sets,s.toFloat(this.index))?this.clsActivated:""];for(const n of this.slides){const o=s.includes(e,n);s.toggleClass(n,i,o),n.ariaHidden=!o;for(const r of s.$$(s.selFocusable,n))s.hasOwn(r,"_tabindex")||(r._tabindex=r.tabIndex),r.tabIndex=o?r._tabindex:-1}},getValidIndex(t=this.index,e=this.prevIndex){if(t=this.getIndex(t,e),!this.sets)return t;let i;do{if(s.includes(this.sets,t))return t;i=t,t=this.getIndex(t+this.dir,e)}while(t!==i);return t},getAdjacentSlides(){const{width:t}=s.dimensions(this.list),e=-t,i=t*2,n=s.dimensions(this.slides[this.index]).width,o=this.center?t/2-n/2:0,r=new Set;for(const a of[-1,1]){let h=o+(a>0?n:0),d=0;do{const f=this.slides[this.getIndex(this.index+a+d++*a)];h+=s.dimensions(f).width*a,r.add(f)}while(this.length>d&&h>e&&h<i)}return Array.from(r)},getIndexAt(t){let e=-1;const i=this.center?w(this.list)-(s.dimensions(this.slides[0]).width/2+s.dimensions(s.last(this.slides)).width/2):w(this.list,this.maxIndex);let n=t*i,o=0;do{const r=s.dimensions(this.slides[++e]).width,a=this.center?r/2+s.dimensions(this.slides[e+1]).width/2:r;o=n/a%1,n-=a}while(n>=0&&e<this.maxIndex);return[e,o]}}};function xe(t,e){if(!t||t.length<2)return!0;const{width:i}=s.dimensions(t);if(!e)return Math.ceil(w(t))<Math.trunc(i+we(t));const n=s.children(t),o=Math.trunc(i/2);for(const r in n){const a=n[r],h=s.dimensions(a).width,d=new Set([a]);let f=0;for(const c of[-1,1]){let l=h/2,g=0;for(;l<o;){const u=n[s.getIndex(+r+c+g++*c,n)];if(d.has(u))return!0;l+=s.dimensions(u).width,d.add(u)}f=Math.max(f,h/2+s.dimensions(n[s.getIndex(+r+c,n)]).width/2-(l-o))}if(Math.trunc(f)>s.sumBy(n.filter(c=>!d.has(c)),c=>s.dimensions(c).width))return!0}return!1}function we(t){return Math.max(0,...s.children(t).map(e=>s.dimensions(e).width))}return typeof window<"u"&&window.UIkit&&window.UIkit.component("slider",lt),lt})); assets/uikit/dist/js/components/slider.js000064400000163762151666572350014616 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitslider', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitSlider = factory(global.UIkit.util)); })(this, (function (util) { 'use strict'; function callUpdate(instance, e = "update") { if (!instance._connected) { return; } if (!instance._updates.length) { return; } if (!instance._updateCount) { instance._updateCount = 0; requestAnimationFrame(() => instance._updateCount = 0); } if (!instance._queued) { instance._queued = /* @__PURE__ */ new Set(); util.fastdom.read(() => { if (instance._connected) { runUpdates(instance, instance._queued); } instance._queued = null; }); } if (instance._updateCount++ < 20) { instance._queued.add(e.type || e); } } function runUpdates(instance, types) { for (const { read, write, events = [] } of instance._updates) { if (!types.has("update") && !events.some((type) => types.has(type))) { continue; } let result; if (read) { result = read.call(instance, instance._data, types); if (result && util.isPlainObject(result)) { util.assign(instance._data, result); } } if (write && result !== false) { util.fastdom.write(() => { if (instance._connected) { write.call(instance, instance._data, types); } }); } } } function resize(options) { return observe(util.observeResize, options, "resize"); } function intersection(options) { return observe(util.observeIntersection, options); } function lazyload(options = {}) { return intersection({ handler: function(entries, observer) { const { targets = this.$el, preload = 5 } = options; for (const el of util.toNodes(util.isFunction(targets) ? targets(this) : targets)) { util.$$('[loading="lazy"]', el).slice(0, preload - 1).forEach((el2) => util.removeAttr(el2, "loading")); } for (const el of entries.filter(({ isIntersecting }) => isIntersecting).map(({ target }) => target)) { observer.unobserve(el); } }, ...options }); } function scroll(options) { return observe( (target, handler) => ({ disconnect: util.on(toScrollTargets(target), "scroll", handler, { passive: true }) }), options, "scroll" ); } function observe(observe2, options, emit) { return { observe: observe2, handler() { callUpdate(this, emit); }, ...options }; } function toScrollTargets(elements) { return util.toNodes(elements).map((node) => { const { ownerDocument } = node; const parent2 = util.scrollParent(node, true); return parent2 === ownerDocument.scrollingElement ? ownerDocument : parent2; }); } var Class = { connected() { util.addClass(this.$el, this.$options.id); } }; var I18n = { props: { i18n: Object }, data: { i18n: null }, methods: { t(key, ...params) { var _a, _b, _c; let i = 0; return ((_c = ((_a = this.i18n) == null ? void 0 : _a[key]) || ((_b = this.$options.i18n) == null ? void 0 : _b[key])) == null ? void 0 : _c.replace( /%s/g, () => params[i++] || "" )) || ""; } } }; var SliderAutoplay = { props: { autoplay: Boolean, autoplayInterval: Number, pauseOnHover: Boolean }, data: { autoplay: false, autoplayInterval: 7e3, pauseOnHover: true }, connected() { util.attr(this.list, "aria-live", this.autoplay ? "off" : "polite"); this.autoplay && this.startAutoplay(); }, disconnected() { this.stopAutoplay(); }, update() { util.attr(this.slides, "tabindex", "-1"); }, events: [ { name: "visibilitychange", el: () => document, filter: ({ autoplay }) => autoplay, handler() { if (document.hidden) { this.stopAutoplay(); } else { this.startAutoplay(); } } } ], methods: { startAutoplay() { this.stopAutoplay(); this.interval = setInterval(() => { if (!(this.stack.length || !util.isVisible(this.$el) || this.draggable && util.matches(this.$el, ":focus-within") && !util.matches(this.$el, ":focus") || this.pauseOnHover && util.matches(this.$el, ":hover"))) { this.show("next"); } }, this.autoplayInterval); }, stopAutoplay() { clearInterval(this.interval); } } }; const pointerOptions = { passive: false, capture: true }; const pointerUpOptions = { passive: true, capture: true }; const pointerDown = "touchstart mousedown"; const pointerMove = "touchmove mousemove"; const pointerUp = "touchend touchcancel mouseup click input scroll"; var SliderDrag = { props: { draggable: Boolean }, data: { draggable: true, threshold: 10 }, created() { for (const key of ["start", "move", "end"]) { const fn = this[key]; this[key] = (e) => { const pos = util.getEventPos(e).x * (util.isRtl ? -1 : 1); this.prevPos = pos === this.pos ? this.prevPos : this.pos; this.pos = pos; fn(e); }; } }, events: [ { name: pointerDown, passive: true, delegate: ({ selList }) => `${selList} > *`, handler(e) { if (!this.draggable || this.parallax || !util.isTouch(e) && hasSelectableText(e.target) || e.target.closest(util.selInput) || e.button > 0 || this.length < 2) { return; } this.start(e); } }, { name: "dragstart", handler(e) { e.preventDefault(); } }, { // iOS workaround for slider stopping if swiping fast name: pointerMove, el: ({ list }) => list, handler: util.noop, ...pointerOptions } ], methods: { start() { this.drag = this.pos; if (this._transitioner) { this.percent = this._transitioner.percent(); this.drag += this._transitioner.getDistance() * this.percent * this.dir; this._transitioner.cancel(); this._transitioner.translate(this.percent); this.dragging = true; this.stack = []; } else { this.prevIndex = this.index; } util.on(document, pointerMove, this.move, pointerOptions); util.on(document, pointerUp, this.end, pointerUpOptions); util.css(this.list, "userSelect", "none"); }, move(e) { const distance = this.pos - this.drag; if (distance === 0 || this.prevPos === this.pos || !this.dragging && Math.abs(distance) < this.threshold) { return; } e.cancelable && e.preventDefault(); this.dragging = true; this.dir = distance < 0 ? 1 : -1; let { slides, prevIndex } = this; let dis = Math.abs(distance); let nextIndex = this.getIndex(prevIndex + this.dir); let width = getDistance.call(this, prevIndex, nextIndex); while (nextIndex !== prevIndex && dis > width) { this.drag -= width * this.dir; prevIndex = nextIndex; dis -= width; nextIndex = this.getIndex(prevIndex + this.dir); width = getDistance.call(this, prevIndex, nextIndex); } this.percent = dis / width; const prev = slides[prevIndex]; const next = slides[nextIndex]; const changed = this.index !== nextIndex; const edge = prevIndex === nextIndex; let itemShown; for (const i of [this.index, this.prevIndex]) { if (!util.includes([nextIndex, prevIndex], i)) { util.trigger(slides[i], "itemhidden", [this]); if (edge) { itemShown = true; this.prevIndex = prevIndex; } } } if (this.index === prevIndex && this.prevIndex !== prevIndex || itemShown) { util.trigger(slides[this.index], "itemshown", [this]); } if (changed) { this.prevIndex = prevIndex; this.index = nextIndex; if (!edge) { util.trigger(prev, "beforeitemhide", [this]); util.trigger(prev, "itemhide", [this]); } util.trigger(next, "beforeitemshow", [this]); util.trigger(next, "itemshow", [this]); } this._transitioner = this._translate(Math.abs(this.percent), prev, !edge && next); }, end() { util.off(document, pointerMove, this.move, pointerOptions); util.off(document, pointerUp, this.end, pointerUpOptions); if (this.dragging) { setTimeout(util.on(this.list, "click", (e) => e.preventDefault(), pointerOptions)); this.dragging = null; if (this.index === this.prevIndex) { this.percent = 1 - this.percent; this.dir *= -1; this._show(false, this.index, true); this._transitioner = null; } else { const dirChange = (util.isRtl ? this.dir * (util.isRtl ? 1 : -1) : this.dir) < 0 === this.prevPos > this.pos; this.index = dirChange ? this.index : this.prevIndex; if (dirChange) { util.trigger(this.slides[this.prevIndex], "itemhidden", [this]); util.trigger(this.slides[this.index], "itemshown", [this]); this.percent = 1 - this.percent; } this.show( this.dir > 0 && !dirChange || this.dir < 0 && dirChange ? "next" : "previous", true ); } } util.css(this.list, { userSelect: "" }); this.drag = this.percent = null; } } }; function getDistance(prev, next) { return this._getTransitioner(prev, prev !== next && next).getDistance() || this.slides[prev].offsetWidth; } function hasSelectableText(el) { return util.css(el, "userSelect") !== "none" && util.toArray(el.childNodes).some((el2) => el2.nodeType === 3 && el2.textContent.trim()); } util.memoize((id, props) => { const attributes = Object.keys(props); const filter = attributes.concat(id).map((key) => [util.hyphenate(key), `data-${util.hyphenate(key)}`]).flat(); return { attributes, filter }; }); let id = 1; function generateId(instance, el = null) { return (el == null ? void 0 : el.id) || `${instance.$options.id}-${id++}`; } const keyMap = { SPACE: 32, END: 35, HOME: 36, LEFT: 37, RIGHT: 39}; function maybeDefaultPreventClick(e) { if (e.target.closest('a[href="#"],a[href=""]')) { e.preventDefault(); } } var SliderNav = { i18n: { next: "Next slide", previous: "Previous slide", slideX: "Slide %s", slideLabel: "%s of %s", role: "String" }, data: { selNav: false, role: "region" }, computed: { nav: ({ selNav }, $el) => util.$(selNav, $el), navChildren() { return util.children(this.nav); }, selNavItem: ({ attrItem }) => `[${attrItem}],[data-${attrItem}]`, navItems(_, $el) { return util.$$(this.selNavItem, $el); } }, watch: { nav(nav, prev) { util.attr(nav, "role", "tablist"); this.padNavitems(); if (prev) { this.$emit(); } }, list(list) { if (util.isTag(list, "ul")) { util.attr(list, "role", "presentation"); } }, navChildren(children2) { util.attr(children2, "role", "presentation"); this.padNavitems(); this.updateNav(); }, navItems(items) { for (const el of items) { const cmd = util.data(el, this.attrItem); const button = util.$("a,button", el) || el; let ariaLabel; let ariaControls = null; if (util.isNumeric(cmd)) { const item = util.toNumber(cmd); const slide = this.slides[item]; if (slide) { if (!slide.id) { slide.id = generateId(this, slide); } ariaControls = slide.id; } ariaLabel = this.t("slideX", util.toFloat(cmd) + 1); button.role = "tab"; } else { if (this.list) { if (!this.list.id) { this.list.id = generateId(this, this.list); } ariaControls = this.list.id; } ariaLabel = this.t(cmd); } button.ariaControls = ariaControls; button.ariaLabel = button.ariaLabel || ariaLabel; } }, slides(slides) { slides.forEach( (slide, i) => util.attr(slide, { role: this.nav ? "tabpanel" : "group", "aria-label": this.t("slideLabel", i + 1, this.length), "aria-roledescription": this.nav ? null : "slide" }) ); this.padNavitems(); } }, connected() { this.$el.role = this.role; this.$el.ariaRoleDescription = "carousel"; }, update: [ { write() { this.navItems.concat(this.nav).forEach((el) => el && (el.hidden = !this.maxIndex)); this.updateNav(); }, events: ["resize"] } ], events: [ { name: "click keydown", delegate: ({ selNavItem }) => selNavItem, filter: ({ parallax }) => !parallax, handler(e) { if (e.target.closest("a,button") && (e.type === "click" || e.keyCode === keyMap.SPACE)) { maybeDefaultPreventClick(e); this.show(util.data(e.current, this.attrItem)); } } }, { name: "itemshow", handler() { this.updateNav(); } }, { name: "keydown", delegate: ({ selNavItem }) => selNavItem, filter: ({ parallax }) => !parallax, handler(e) { const { current, keyCode } = e; const cmd = util.data(current, this.attrItem); if (!util.isNumeric(cmd)) { return; } let i = keyCode === keyMap.HOME ? 0 : keyCode === keyMap.END ? "last" : keyCode === keyMap.LEFT ? "previous" : keyCode === keyMap.RIGHT ? "next" : -1; if (~i) { e.preventDefault(); this.show(i); } } } ], methods: { updateNav() { const index = this.getValidIndex(); for (const el of this.navItems) { const cmd = util.data(el, this.attrItem); const button = util.$("a,button", el) || el; if (util.isNumeric(cmd)) { const item = util.toNumber(cmd); const active = item === index; util.toggleClass(el, this.clsActive, active); util.toggleClass(button, "uk-disabled", !!this.parallax); button.ariaSelected = active; button.tabIndex = active && !this.parallax ? null : -1; if (active && button && util.matches(util.parent(el), ":focus-within")) { button.focus(); } } else { util.toggleClass( el, "uk-invisible", this.finite && (cmd === "previous" && index === 0 || cmd === "next" && index >= this.maxIndex) ); } } }, padNavitems() { if (!this.nav) { return; } const children2 = []; for (let i = 0; i < this.length; i++) { const attr2 = `${this.attrItem}="${i}"`; children2[i] = this.navChildren.findLast((el) => el.matches(`[${attr2}]`)) || util.$(`<li ${attr2}><a href></a></li>`); } if (!util.isEqual(children2, this.navChildren)) { util.html(this.nav, children2); } } } }; const easeOutQuad = "cubic-bezier(0.25, 0.46, 0.45, 0.94)"; const easeOutQuart = "cubic-bezier(0.165, 0.84, 0.44, 1)"; var Slider = { mixins: [SliderAutoplay, SliderDrag, SliderNav, I18n], props: { clsActivated: String, easing: String, index: Number, finite: Boolean, velocity: Number }, data: () => ({ easing: "ease", finite: false, velocity: 1, index: 0, prevIndex: -1, stack: [], percent: 0, clsActive: "uk-active", clsActivated: "", clsEnter: "uk-slide-enter", clsLeave: "uk-slide-leave", clsSlideActive: "uk-slide-active", Transitioner: false, transitionOptions: {} }), connected() { this.prevIndex = -1; this.index = this.getValidIndex(this.$props.index); this.stack = []; }, disconnected() { util.removeClass(this.slides, this.clsActive); }, computed: { duration: ({ velocity }, $el) => speedUp($el.offsetWidth / velocity), list: ({ selList }, $el) => util.$(selList, $el), maxIndex() { return this.length - 1; }, slides() { return util.children(this.list); }, length() { return this.slides.length; } }, watch: { slides(slides, prev) { if (prev) { this.$emit(); } } }, events: { itemshow({ target }) { util.addClass(target, this.clsEnter, this.clsSlideActive); }, itemshown({ target }) { util.removeClass(target, this.clsEnter); }, itemhide({ target }) { util.addClass(target, this.clsLeave); }, itemhidden({ target }) { util.removeClass(target, this.clsLeave, this.clsSlideActive); } }, methods: { async show(index, force = false) { var _a; if (this.dragging || !this.length || this.parallax) { return; } const { stack } = this; const queueIndex = force ? 0 : stack.length; const reset = () => { stack.splice(queueIndex, 1); if (stack.length) { this.show(stack.shift(), true); } }; stack[force ? "unshift" : "push"](index); if (!force && stack.length > 1) { if (stack.length === 2) { (_a = this._transitioner) == null ? void 0 : _a.forward(Math.min(this.duration, 200)); } return; } const prevIndex = this.getIndex(this.index); const prev = util.hasClass(this.slides, this.clsActive) && this.slides[prevIndex]; const nextIndex = this.getIndex(index, this.index); const next = this.slides[nextIndex]; if (prev === next) { reset(); return; } this.dir = getDirection(index, prevIndex); this.prevIndex = prevIndex; this.index = nextIndex; if (prev && !util.trigger(prev, "beforeitemhide", [this]) || !util.trigger(next, "beforeitemshow", [this, prev])) { this.index = this.prevIndex; reset(); return; } prev && util.trigger(prev, "itemhide", [this]); util.trigger(next, "itemshow", [this]); await this._show(prev, next, force); prev && util.trigger(prev, "itemhidden", [this]); util.trigger(next, "itemshown", [this]); stack.shift(); this._transitioner = null; if (stack.length) { requestAnimationFrame(() => stack.length && this.show(stack.shift(), true)); } }, getIndex(index = this.index, prev = this.index) { return util.clamp( util.getIndex(index, this.slides, prev, this.finite), 0, Math.max(0, this.maxIndex) ); }, getValidIndex(index = this.index, prevIndex = this.prevIndex) { return this.getIndex(index, prevIndex); }, async _show(prev, next, force) { this._transitioner = this._getTransitioner(prev, next, this.dir, { easing: force ? next.offsetWidth < 600 ? easeOutQuad : easeOutQuart : this.easing, ...this.transitionOptions }); if (!force && !prev) { this._translate(1); return; } const { length } = this.stack; return this._transitioner[length > 1 ? "forward" : "show"]( length > 1 ? Math.min(this.duration, 75 + 75 / (length - 1)) : this.duration, this.percent ); }, _translate(percent, prev = this.prevIndex, next = this.index) { const transitioner = this._getTransitioner(prev === next ? false : prev, next); transitioner.translate(percent); return transitioner; }, _getTransitioner(prev = this.prevIndex, next = this.index, dir = this.dir || 1, options = this.transitionOptions) { return new this.Transitioner( util.isNumber(prev) ? this.slides[prev] : prev, util.isNumber(next) ? this.slides[next] : next, dir * (util.isRtl ? -1 : 1), options ); } } }; function getDirection(index, prevIndex) { return index === "next" ? 1 : index === "previous" ? -1 : index < prevIndex ? -1 : 1; } function speedUp(x) { return 0.5 * x + 300; } function startsWith(str, search) { var _a; return (_a = str == null ? void 0 : str.startsWith) == null ? void 0 : _a.call(str, search); } const { from: toArray } = Array; function isFunction(obj) { return typeof obj === "function"; } function isObject(obj) { return obj !== null && typeof obj === "object"; } function isWindow(obj) { return isObject(obj) && obj === obj.window; } function isDocument(obj) { return nodeType(obj) === 9; } function isNode(obj) { return nodeType(obj) >= 1; } function nodeType(obj) { return !isWindow(obj) && isObject(obj) && obj.nodeType; } function isString(value) { return typeof value === "string"; } function isUndefined(value) { return value === void 0; } function toNode(element) { return element && toNodes(element)[0]; } function toNodes(element) { return isNode(element) ? [element] : Array.from(element || []).filter(isNode); } function memoize(fn) { const cache = /* @__PURE__ */ Object.create(null); return (key, ...args) => cache[key] || (cache[key] = fn(key, ...args)); } function attr(element, name, value) { var _a; if (isObject(name)) { for (const key in name) { attr(element, key, name[key]); } return; } if (isUndefined(value)) { return (_a = toNode(element)) == null ? void 0 : _a.getAttribute(name); } else { for (const el of toNodes(element)) { if (isFunction(value)) { value = value.call(el, attr(el, name)); } if (value === null) { removeAttr(el, name); } else { el.setAttribute(name, value); } } } } function removeAttr(element, name) { toNodes(element).forEach((element2) => element2.removeAttribute(name)); } const inBrowser = typeof window !== "undefined"; const isVisibleFn = inBrowser && Element.prototype.checkVisibility || function() { return this.offsetWidth || this.offsetHeight || this.getClientRects().length; }; function isVisible(element) { return toNodes(element).some((element2) => isVisibleFn.call(element2)); } function parent(element) { var _a; return (_a = toNode(element)) == null ? void 0 : _a.parentElement; } function filter(element, selector) { return toNodes(element).filter((element2) => matches(element2, selector)); } function matches(element, selector) { return toNodes(element).some((element2) => element2.matches(selector)); } function children(element, selector) { element = toNode(element); const children2 = element ? toArray(element.children) : []; return selector ? filter(children2, selector) : children2; } function index(element, ref) { return children(parent(element)).indexOf(element); } function findAll(selector, context) { return toNodes(_query(selector, toNode(context), "querySelectorAll")); } const addStarRe = /([!>+~-])(?=\s+[!>+~-]|\s*$)/g; const splitSelectorRe = /(\([^)]*\)|[^,])+/g; const parseSelector = memoize((selector) => { let isContextSelector = false; if (!selector || !isString(selector)) { return {}; } const selectors = []; for (let sel of selector.match(splitSelectorRe)) { sel = sel.trim().replace(addStarRe, "$1 *"); isContextSelector || (isContextSelector = ["!", "+", "~", "-", ">"].includes(sel[0])); selectors.push(sel); } return { selector: selectors.join(","), selectors, isContextSelector }; }); const positionRe = /(\([^)]*\)|\S)*/; const parsePositionSelector = memoize((selector) => { selector = selector.slice(1).trim(); const [position] = selector.match(positionRe); return [position, selector.slice(position.length + 1)]; }); function _query(selector, context = document, queryFn) { var _a; const parsed = parseSelector(selector); if (!parsed.isContextSelector) { return parsed.selector ? _doQuery(context, queryFn, parsed.selector) : selector; } selector = ""; const isSingle = parsed.selectors.length === 1; for (let sel of parsed.selectors) { let positionSel; let ctx = context; if (sel[0] === "!") { [positionSel, sel] = parsePositionSelector(sel); ctx = (_a = context.parentElement) == null ? void 0 : _a.closest(positionSel); if (!sel && isSingle) { return ctx; } } if (ctx && sel[0] === "-") { [positionSel, sel] = parsePositionSelector(sel); ctx = ctx.previousElementSibling; ctx = matches(ctx, positionSel) ? ctx : null; if (!sel && isSingle) { return ctx; } } if (!ctx) { continue; } if (isSingle) { if (sel[0] === "~" || sel[0] === "+") { sel = `:scope > :nth-child(${index(ctx) + 1}) ${sel}`; ctx = ctx.parentElement; } else if (sel[0] === ">") { sel = `:scope ${sel}`; } return _doQuery(ctx, queryFn, sel); } selector += `${selector ? "," : ""}${domPath(ctx)} ${sel}`; } if (!isDocument(context)) { context = context.ownerDocument; } return _doQuery(context, queryFn, selector); } function _doQuery(context, queryFn, selector) { try { return context[queryFn](selector); } catch (e) { return null; } } function domPath(element) { const names = []; while (element.parentNode) { const id = attr(element, "id"); if (id) { names.unshift(`#${escape(id)}`); break; } else { let { tagName } = element; if (tagName !== "HTML") { tagName += `:nth-child(${index(element) + 1})`; } names.unshift(tagName); element = element.parentNode; } } return names.join(" > "); } function escape(css) { return isString(css) ? CSS.escape(css) : ""; } const singleTagRe = /^<(\w+)\s*\/?>(?:<\/\1>)?$/; function fragment(html2) { const matches = singleTagRe.exec(html2); if (matches) { return document.createElement(matches[1]); } const container = document.createElement("template"); container.innerHTML = html2.trim(); return unwrapSingle(container.content.childNodes); } function unwrapSingle(nodes) { return nodes.length > 1 ? nodes : nodes[0]; } function $$(selector, context) { return isHtml(selector) ? toNodes(fragment(selector)) : findAll(selector, context); } function isHtml(str) { return isString(str) && startsWith(str.trim(), "<"); } function getMaxPathLength(el) { return isVisible(el) ? Math.ceil( Math.max(0, ...$$("[stroke]", el).map((stroke) => { var _a; return ((_a = stroke.getTotalLength) == null ? void 0 : _a.call(stroke)) || 0; })) ) : 0; } const props = { x: transformFn, y: transformFn, rotate: transformFn, scale: transformFn, color: colorFn, backgroundColor: colorFn, borderColor: colorFn, blur: filterFn, hue: filterFn, fopacity: filterFn, grayscale: filterFn, invert: filterFn, saturate: filterFn, sepia: filterFn, opacity: cssPropFn, stroke: strokeFn, bgx: backgroundFn, bgy: backgroundFn }; const { keys } = Object; ({ props: fillObject(keys(props), "list"), data: fillObject(keys(props), void 0)}); function transformFn(prop, el, stops) { let unit = getUnit(stops) || { x: "px", y: "px", rotate: "deg" }[prop] || ""; let transformFn2; if (prop === "x" || prop === "y") { prop = `translate${util.ucfirst(prop)}`; transformFn2 = (stop) => util.toFloat(util.toFloat(stop).toFixed(unit === "px" ? 0 : 6)); } else if (prop === "scale") { unit = ""; transformFn2 = (stop) => { var _a; return getUnit([stop]) ? util.toPx(stop, "width", el, true) / el[`offset${((_a = stop.endsWith) == null ? void 0 : _a.call(stop, "vh")) ? "Height" : "Width"}`] : util.toFloat(stop); }; } if (stops.length === 1) { stops.unshift(prop === "scale" ? 1 : 0); } stops = parseStops(stops, transformFn2); return (css2, percent) => { css2.transform = `${css2.transform || ""} ${prop}(${getValue(stops, percent)}${unit})`; }; } function colorFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops, (stop) => parseColor(el, stop)); return (css2, percent) => { const [start, end, p] = getStop(stops, percent); const value = start.map((value2, i) => { value2 += p * (end[i] - value2); return i === 3 ? util.toFloat(value2) : parseInt(value2, 10); }).join(","); css2[prop] = `rgba(${value})`; }; } function parseColor(el, color) { return getCssValue(el, "color", color).split(/[(),]/g).slice(1, -1).concat(1).slice(0, 4).map(util.toFloat); } function filterFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops) || { blur: "px", hue: "deg" }[prop] || "%"; prop = { fopacity: "opacity", hue: "hue-rotate" }[prop] || prop; stops = parseStops(stops); return (css2, percent) => { const value = getValue(stops, percent); css2.filter = `${css2.filter || ""} ${prop}(${value + unit})`; }; } function cssPropFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(getCssValue(el, prop, "")); } stops = parseStops(stops); return (css2, percent) => { css2[prop] = getValue(stops, percent); }; } function strokeFn(prop, el, stops) { if (stops.length === 1) { stops.unshift(0); } const unit = getUnit(stops); const length = getMaxPathLength(el); stops = parseStops(stops.reverse(), (stop) => { stop = util.toFloat(stop); return unit === "%" ? stop * length / 100 : stop; }); if (!stops.some(([value]) => value)) { return util.noop; } util.css(el, "strokeDasharray", length); return (css2, percent) => { css2.strokeDashoffset = getValue(stops, percent); }; } function backgroundFn(prop, el, stops, props2) { if (stops.length === 1) { stops.unshift(0); } const attr = prop === "bgy" ? "height" : "width"; props2[prop] = parseStops(stops, (stop) => util.toPx(stop, attr, el)); const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); if (bgProps.length === 2 && prop === "bgx") { return util.noop; } if (getCssValue(el, "backgroundSize", "") === "cover") { return backgroundCoverFn(prop, el, stops, props2); } const positions = {}; for (const prop2 of bgProps) { positions[prop2] = getBackgroundPos(el, prop2); } return setBackgroundPosFn(bgProps, positions, props2); } function backgroundCoverFn(prop, el, stops, props2) { const dimImage = getBackgroundImageDimensions(el); if (!dimImage.width) { return util.noop; } const dimEl = { width: el.offsetWidth, height: el.offsetHeight }; const bgProps = ["bgx", "bgy"].filter((prop2) => prop2 in props2); const positions = {}; for (const prop2 of bgProps) { const values = props2[prop2].map(([value]) => value); const min = Math.min(...values); const max = Math.max(...values); const down = values.indexOf(min) < values.indexOf(max); const diff = max - min; positions[prop2] = `${(down ? -diff : 0) - (down ? min : max)}px`; dimEl[prop2 === "bgy" ? "height" : "width"] += diff; } const dim = util.Dimensions.cover(dimImage, dimEl); for (const prop2 of bgProps) { const attr = prop2 === "bgy" ? "height" : "width"; const overflow = dim[attr] - dimEl[attr]; positions[prop2] = `max(${getBackgroundPos(el, prop2)},-${overflow}px) + ${positions[prop2]}`; } const fn = setBackgroundPosFn(bgProps, positions, props2); return (css2, percent) => { fn(css2, percent); css2.backgroundSize = `${dim.width}px ${dim.height}px`; css2.backgroundRepeat = "no-repeat"; }; } function getBackgroundPos(el, prop) { return getCssValue(el, `background-position-${prop.slice(-1)}`, ""); } function setBackgroundPosFn(bgProps, positions, props2) { return function(css2, percent) { for (const prop of bgProps) { const value = getValue(props2[prop], percent); css2[`background-position-${prop.slice(-1)}`] = `calc(${positions[prop]} + ${value}px)`; } }; } const loading = {}; const dimensions = {}; function getBackgroundImageDimensions(el) { const src = util.css(el, "backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/, "$1"); if (dimensions[src]) { return dimensions[src]; } const image = new Image(); if (src) { image.src = src; if (!image.naturalWidth && !loading[src]) { util.once(image, "error load", () => { dimensions[src] = toDimensions(image); util.trigger(el, util.createEvent("load", false)); }); loading[src] = true; return toDimensions(image); } } return dimensions[src] = toDimensions(image); } function toDimensions(image) { return { width: image.naturalWidth, height: image.naturalHeight }; } function parseStops(stops, fn = util.toFloat) { const result = []; const { length } = stops; let nullIndex = 0; for (let i = 0; i < length; i++) { let [value, percent] = util.isString(stops[i]) ? stops[i].trim().split(/ (?![^(]*\))/) : [stops[i]]; value = fn(value); percent = percent ? util.toFloat(percent) / 100 : null; if (i === 0) { if (percent === null) { percent = 0; } else if (percent) { result.push([value, 0]); } } else if (i === length - 1) { if (percent === null) { percent = 1; } else if (percent !== 1) { result.push([value, percent]); percent = 1; } } result.push([value, percent]); if (percent === null) { nullIndex++; } else if (nullIndex) { const leftPercent = result[i - nullIndex - 1][1]; const p = (percent - leftPercent) / (nullIndex + 1); for (let j = nullIndex; j > 0; j--) { result[i - j][1] = leftPercent + p * (nullIndex - j + 1); } nullIndex = 0; } } return result; } function getStop(stops, percent) { const index = util.findIndex(stops.slice(1), ([, targetPercent]) => percent <= targetPercent) + 1; return [ stops[index - 1][0], stops[index][0], (percent - stops[index - 1][1]) / (stops[index][1] - stops[index - 1][1]) ]; } function getValue(stops, percent) { const [start, end, p] = getStop(stops, percent); return start + Math.abs(start - end) * p * (start < end ? 1 : -1); } const unitRe = /^-?\d+(?:\.\d+)?(\S+)?/; function getUnit(stops, defaultUnit) { var _a; for (const stop of stops) { const match = (_a = stop.match) == null ? void 0 : _a.call(stop, unitRe); if (match) { return match[1]; } } return defaultUnit; } function getCssValue(el, prop, value) { const prev = el.style[prop]; const val = util.css(util.css(el, prop, value), prop); el.style[prop] = prev; return val; } function fillObject(keys2, value) { return keys2.reduce((data, prop) => { data[prop] = value; return data; }, {}); } function ease(percent, easing) { return easing >= 0 ? Math.pow(percent, easing + 1) : 1 - Math.pow(1 - percent, 1 - easing); } var SliderParallax = { props: { parallax: Boolean, parallaxTarget: Boolean, parallaxStart: String, parallaxEnd: String, parallaxEasing: Number }, data: { parallax: false, parallaxTarget: false, parallaxStart: 0, parallaxEnd: 0, parallaxEasing: 0 }, observe: [ resize({ target: ({ $el, parallaxTarget }) => [$el, parallaxTarget], filter: ({ parallax }) => parallax }), scroll({ filter: ({ parallax }) => parallax }) ], computed: { parallaxTarget({ parallaxTarget }, $el) { return parallaxTarget && util.query(parallaxTarget, $el) || this.list; } }, update: { read() { if (!this.parallax) { return false; } const target = this.parallaxTarget; if (!target) { return false; } const start = util.toPx(this.parallaxStart, "height", target, true); const end = util.toPx(this.parallaxEnd, "height", target, true); const percent = ease(util.scrolledOver(target, start, end), this.parallaxEasing); return { parallax: this.getIndexAt(percent) }; }, write({ parallax }) { const [prevIndex, slidePercent] = parallax; const nextIndex = this.getValidIndex(prevIndex + Math.ceil(slidePercent)); const prev = this.slides[prevIndex]; const next = this.slides[nextIndex]; const { triggerShow, triggerShown, triggerHide, triggerHidden } = useTriggers(this); if (~this.prevIndex) { for (const i of /* @__PURE__ */ new Set([this.index, this.prevIndex])) { if (!util.includes([nextIndex, prevIndex], i)) { triggerHide(this.slides[i]); triggerHidden(this.slides[i]); } } } const changed = this.prevIndex !== prevIndex || this.index !== nextIndex; this.dir = 1; this.prevIndex = prevIndex; this.index = nextIndex; if (prev !== next) { triggerHide(prev); } triggerShow(next); if (changed) { triggerShown(prev); } this._translate(prev === next ? 1 : slidePercent, prev, next); }, events: ["scroll", "resize"] }, methods: { getIndexAt(percent) { const index = percent * (this.length - 1); return [Math.floor(index), index % 1]; } } }; function useTriggers(cmp) { const { clsSlideActive, clsEnter, clsLeave } = cmp; return { triggerShow, triggerShown, triggerHide, triggerHidden }; function triggerShow(el) { if (util.hasClass(el, clsLeave)) { triggerHide(el); triggerHidden(el); } if (!util.hasClass(el, clsSlideActive)) { util.trigger(el, "beforeitemshow", [cmp]); util.trigger(el, "itemshow", [cmp]); } } function triggerShown(el) { if (util.hasClass(el, clsEnter)) { util.trigger(el, "itemshown", [cmp]); } } function triggerHide(el) { if (!util.hasClass(el, clsSlideActive)) { triggerShow(el); } if (util.hasClass(el, clsEnter)) { triggerShown(el); } if (!util.hasClass(el, clsLeave)) { util.trigger(el, "beforeitemhide", [cmp]); util.trigger(el, "itemhide", [cmp]); } } function triggerHidden(el) { if (util.hasClass(el, clsLeave)) { util.trigger(el, "itemhidden", [cmp]); } } } var SliderReactive = { update: { write() { if (this.stack.length || this.dragging || this.parallax) { return; } const index = this.getValidIndex(); if (!~this.prevIndex || this.index !== index) { this.show(index); } else { this._translate(1); } }, events: ["resize"] } }; var SliderPreload = { observe: lazyload({ target: ({ slides }) => slides, targets: (instance) => instance.getAdjacentSlides() }), methods: { getAdjacentSlides() { return [1, -1].map((i) => this.slides[this.getIndex(this.index + i)]); } } }; function translate(value = 0, unit = "%") { return value ? `translate3d(${value + unit}, 0, 0)` : ""; } function triggerUpdate(el, type, data) { util.trigger(el, util.createEvent(type, false, false, data)); } function withResolvers() { let resolve; return { promise: new Promise((res) => resolve = res), resolve }; } function Transitioner(prev, next, dir, { center, easing, list }) { const from = prev ? getLeft(prev, list, center) : getLeft(next, list, center) + util.dimensions(next).width * dir; const to = next ? getLeft(next, list, center) : from + util.dimensions(prev).width * dir * (util.isRtl ? -1 : 1); const { promise, resolve } = withResolvers(); return { dir, show(duration, percent = 0, linear) { const timing = linear ? "linear" : easing; duration -= Math.round(duration * util.clamp(percent, -1, 1)); util.css(list, "transitionProperty", "none"); this.translate(percent); util.css(list, "transitionProperty", ""); percent = prev ? percent : util.clamp(percent, 0, 1); triggerUpdate(this.getItemIn(), "itemin", { percent, duration, timing, dir }); prev && triggerUpdate(this.getItemIn(true), "itemout", { percent: 1 - percent, duration, timing, dir }); util.Transition.start( list, { transform: translate(-to * (util.isRtl ? -1 : 1), "px") }, duration, timing ).then(resolve, util.noop); return promise; }, cancel() { return util.Transition.cancel(list); }, reset() { util.css(list, "transform", ""); }, async forward(duration, percent = this.percent()) { await this.cancel(); return this.show(duration, percent, true); }, translate(percent) { if (percent === this.percent()) { return; } const distance = this.getDistance() * dir * (util.isRtl ? -1 : 1); util.css( list, "transform", translate( util.clamp( -to + (distance - distance * percent), -getWidth(list), util.dimensions(list).width ) * (util.isRtl ? -1 : 1), "px" ) ); const actives = this.getActives(); const itemIn = this.getItemIn(); const itemOut = this.getItemIn(true); percent = prev ? util.clamp(percent, -1, 1) : 0; for (const slide of util.children(list)) { const isActive = util.includes(actives, slide); const isIn = slide === itemIn; const isOut = slide === itemOut; const translateIn = isIn || !isOut && (isActive || dir * (util.isRtl ? -1 : 1) === -1 ^ getElLeft(slide, list) > getElLeft(prev || next)); triggerUpdate(slide, `itemtranslate${translateIn ? "in" : "out"}`, { dir, percent: isOut ? 1 - percent : isIn ? percent : isActive ? 1 : 0 }); } }, percent() { return Math.abs( (new DOMMatrix(util.css(list, "transform")).m41 * (util.isRtl ? -1 : 1) + from) / (to - from) ); }, getDistance() { return Math.abs(to - from); }, getItemIn(out = false) { let actives = this.getActives(); let nextActives = inView(list, getLeft(next || prev, list, center)); if (out) { const temp = actives; actives = nextActives; nextActives = temp; } return nextActives[util.findIndex(nextActives, (el) => !util.includes(actives, el))]; }, getActives() { return inView(list, getLeft(prev || next, list, center)); } }; } function getLeft(el, list, center) { const left = getElLeft(el, list); return center ? left - centerEl(el, list) : Math.min(left, getMax(list)); } function getMax(list) { return Math.max(0, getWidth(list) - util.dimensions(list).width); } function getWidth(list, index) { return util.sumBy(util.children(list).slice(0, index), (el) => util.dimensions(el).width); } function centerEl(el, list) { return util.dimensions(list).width / 2 - util.dimensions(el).width / 2; } function getElLeft(el, list) { return el && (util.position(el).left + (util.isRtl ? util.dimensions(el).width - util.dimensions(list).width : 0)) * (util.isRtl ? -1 : 1) || 0; } function inView(list, listLeft) { listLeft -= 1; const listWidth = util.dimensions(list).width; const listRight = listLeft + listWidth + 2; return util.children(list).filter((slide) => { const slideLeft = getElLeft(slide, list); const slideRight = slideLeft + Math.min(util.dimensions(slide).width, listWidth); return slideLeft >= listLeft && slideRight <= listRight; }); } var Component = { mixins: [Class, Slider, SliderReactive, SliderParallax, SliderPreload], props: { center: Boolean, sets: Boolean, active: String }, data: { center: false, sets: false, attrItem: "uk-slider-item", selList: ".uk-slider-items", selNav: ".uk-slider-nav", clsContainer: "uk-slider-container", active: "all", Transitioner }, computed: { finite({ finite }) { return finite || isFinite(this.list, this.center); }, maxIndex() { if (!this.finite || this.center && !this.sets) { return this.length - 1; } if (this.center) { return util.last(this.sets); } let lft = 0; const max = getMax(this.list); const index = util.findIndex(this.slides, (el) => { if (lft >= max - 5e-3) { return true; } lft += util.dimensions(el).width; }); return ~index ? index : this.length - 1; }, sets({ sets: enabled }) { if (!enabled || this.parallax) { return; } let left = 0; const sets = []; const width = util.dimensions(this.list).width; for (let i = 0; i < this.length; i++) { const slideWidth = util.dimensions(this.slides[i]).width; if (left + slideWidth > width) { left = 0; } if (this.center) { if (left < width / 2 && left + slideWidth + util.dimensions(this.slides[util.getIndex(i + 1, this.slides)]).width / 2 > width / 2) { sets.push(i); left = width / 2 - slideWidth / 2; } } else if (left === 0) { sets.push(Math.min(i, this.maxIndex)); } left += slideWidth; } if (sets.length) { return sets; } }, transitionOptions() { return { center: this.center, list: this.list }; }, slides() { return util.children(this.list).filter(util.isVisible); } }, connected() { util.toggleClass(this.$el, this.clsContainer, !util.$(`.${this.clsContainer}`, this.$el)); }, observe: resize({ target: ({ slides, $el }) => [$el, ...slides] }), update: { write() { for (const el of this.navItems) { const index = util.toNumber(util.data(el, this.attrItem)); if (index !== false) { el.hidden = !this.maxIndex || index > this.maxIndex || this.sets && !util.includes(this.sets, index); } } this.reorder(); if (!this.parallax) { this._translate(1); } this.updateActiveClasses(); }, events: ["resize"] }, events: { beforeitemshow(e) { if (!this.dragging && this.sets && this.stack.length < 2 && !util.includes(this.sets, this.index)) { this.index = this.getValidIndex(); } const diff = Math.abs( this.index - this.prevIndex + (this.dir > 0 && this.index < this.prevIndex || this.dir < 0 && this.index > this.prevIndex ? (this.maxIndex + 1) * this.dir : 0) ); if (!this.dragging && diff > 1) { for (let i = 0; i < diff; i++) { this.stack.splice(1, 0, this.dir > 0 ? "next" : "previous"); } e.preventDefault(); return; } const index = this.dir < 0 || !this.slides[this.prevIndex] ? this.index : this.prevIndex; const avgWidth = getWidth(this.list) / this.length; this.duration = speedUp(avgWidth / this.velocity) * (util.dimensions(this.slides[index]).width / avgWidth); this.reorder(); }, itemshow() { if (~this.prevIndex) { util.addClass(this._getTransitioner().getItemIn(), this.clsActive); } this.updateActiveClasses(this.prevIndex); }, itemshown() { this.updateActiveClasses(); } }, methods: { reorder() { if (this.finite) { util.css(this.slides, "order", ""); return; } const index = this.dir > 0 && this.slides[this.prevIndex] ? this.prevIndex : this.index; this.slides.forEach( (slide, i) => util.css( slide, "order", this.dir > 0 && i < index ? 1 : this.dir < 0 && i >= this.index ? -1 : "" ) ); if (!this.center || !this.length) { return; } const next = this.slides[index]; let width = util.dimensions(this.list).width / 2 - util.dimensions(next).width / 2; let j = 0; while (width > 0) { const slideIndex = this.getIndex(--j + index, index); const slide = this.slides[slideIndex]; util.css(slide, "order", slideIndex > index ? -2 : -1); width -= util.dimensions(slide).width; } }, updateActiveClasses(currentIndex = this.index) { let actives = this._getTransitioner(currentIndex).getActives(); if (this.active !== "all") { actives = [this.slides[this.getValidIndex(currentIndex)]]; } const activeClasses = [ this.clsActive, !this.sets || util.includes(this.sets, util.toFloat(this.index)) ? this.clsActivated : "" ]; for (const slide of this.slides) { const active = util.includes(actives, slide); util.toggleClass(slide, activeClasses, active); slide.ariaHidden = !active; for (const focusable of util.$$(util.selFocusable, slide)) { if (!util.hasOwn(focusable, "_tabindex")) { focusable._tabindex = focusable.tabIndex; } focusable.tabIndex = active ? focusable._tabindex : -1; } } }, getValidIndex(index = this.index, prevIndex = this.prevIndex) { index = this.getIndex(index, prevIndex); if (!this.sets) { return index; } let prev; do { if (util.includes(this.sets, index)) { return index; } prev = index; index = this.getIndex(index + this.dir, prevIndex); } while (index !== prev); return index; }, getAdjacentSlides() { const { width } = util.dimensions(this.list); const left = -width; const right = width * 2; const slideWidth = util.dimensions(this.slides[this.index]).width; const slideLeft = this.center ? width / 2 - slideWidth / 2 : 0; const slides = /* @__PURE__ */ new Set(); for (const i of [-1, 1]) { let currentLeft = slideLeft + (i > 0 ? slideWidth : 0); let j = 0; do { const slide = this.slides[this.getIndex(this.index + i + j++ * i)]; currentLeft += util.dimensions(slide).width * i; slides.add(slide); } while (this.length > j && currentLeft > left && currentLeft < right); } return Array.from(slides); }, getIndexAt(percent) { let index = -1; const scrollDist = this.center ? getWidth(this.list) - (util.dimensions(this.slides[0]).width / 2 + util.dimensions(util.last(this.slides)).width / 2) : getWidth(this.list, this.maxIndex); let dist = percent * scrollDist; let slidePercent = 0; do { const slideWidth = util.dimensions(this.slides[++index]).width; const slideDist = this.center ? slideWidth / 2 + util.dimensions(this.slides[index + 1]).width / 2 : slideWidth; slidePercent = dist / slideDist % 1; dist -= slideDist; } while (dist >= 0 && index < this.maxIndex); return [index, slidePercent]; } } }; function isFinite(list, center) { if (!list || list.length < 2) { return true; } const { width: listWidth } = util.dimensions(list); if (!center) { return Math.ceil(getWidth(list)) < Math.trunc(listWidth + getMaxElWidth(list)); } const slides = util.children(list); const listHalf = Math.trunc(listWidth / 2); for (const index in slides) { const slide = slides[index]; const slideWidth = util.dimensions(slide).width; const slidesInView = /* @__PURE__ */ new Set([slide]); let diff = 0; for (const i of [-1, 1]) { let left = slideWidth / 2; let j = 0; while (left < listHalf) { const nextSlide = slides[util.getIndex(+index + i + j++ * i, slides)]; if (slidesInView.has(nextSlide)) { return true; } left += util.dimensions(nextSlide).width; slidesInView.add(nextSlide); } diff = Math.max( diff, slideWidth / 2 + util.dimensions(slides[util.getIndex(+index + i, slides)]).width / 2 - (left - listHalf) ); } if (Math.trunc(diff) > util.sumBy( slides.filter((slide2) => !slidesInView.has(slide2)), (slide2) => util.dimensions(slide2).width )) { return true; } } return false; } function getMaxElWidth(list) { return Math.max(0, ...util.children(list).map((el) => util.dimensions(el).width)); } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("slider", Component); } return Component; })); assets/uikit/dist/js/components/sortable.min.js000064400000024430151666572350015715 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,u){typeof exports=="object"&&typeof module<"u"?module.exports=u(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitsortable",["uikit-util"],u):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitSortable=u(e.UIkit.util))})(this,(function(e){"use strict";function u(o,s="update"){o._connected&&o._updates.length&&(o._updateCount||(o._updateCount=0,requestAnimationFrame(()=>o._updateCount=0)),o._queued||(o._queued=new Set,e.fastdom.read(()=>{o._connected&&A(o,o._queued),o._queued=null})),o._updateCount++<20&&o._queued.add(s.type||s))}function A(o,s){for(const{read:n,write:t,events:c=[]}of o._updates){if(!s.has("update")&&!c.some(r=>s.has(r)))continue;let a;n&&(a=n.call(o,o._data,s),a&&e.isPlainObject(a)&&e.assign(o._data,a)),t&&a!==!1&&e.fastdom.write(()=>{o._connected&&t.call(o,o._data,s)})}}function H(o){return T(e.observeResize,o,"resize")}function S(o){return T(e.observeMutation,o)}function T(o,s,n){return{observe:o,handler(){u(this,n)},...s}}S({options:{childList:!0}}),S({options:{attributes:!0,attributeFilter:["style"]}}),H({handler(o){for(const{borderBoxSize:[{inlineSize:s,blockSize:n}]}of o)if(s||n){this.$emit("resize");return}},target:({$el:o})=>[o,...e.children(o)]});function L(o){const s=[[]],n=o.some((t,c)=>c&&o[c-1].offsetParent!==t.offsetParent);for(const t of o){if(!e.isVisible(t))continue;const c=v(t,n);for(let a=s.length-1;a>=0;a--){const r=s[a];if(!r[0]){r.push(t);break}const h=v(r[0],n);if(c.top>=h.bottom-1&&c.top!==h.top){s.push([t]);break}if(c.bottom-1>h.top||c.top===h.top){let d=r.length-1;for(;d>=0;d--){const p=v(r[d],n);if(c.left>=p.left)break}r.splice(d+1,0,t);break}if(a===0){s.unshift([t]);break}}}return s}function v(o,s=!1){let{offsetTop:n,offsetLeft:t,offsetHeight:c,offsetWidth:a}=o;return s&&([n,t]=e.offsetPosition(o)),{top:n,left:t,bottom:n+c,right:t+a}}const w="uk-transition-leave",y="uk-transition-enter";function x(o,s,n,t=0){const c=P(s,!0),a={opacity:1},r={opacity:0},h=()=>c===P(s),d=l=>()=>h()?l():Promise.reject(),p=d(async()=>{e.addClass(s,w),await(t?Promise.all(E(s).map(async(l,g)=>(await C(g*t),e.Transition.start(l,r,n/2,"ease")))):e.Transition.start(s,r,n/2,"ease")),e.removeClass(s,w)}),m=d(async()=>{const l=e.height(s);e.addClass(s,y),o(),e.css(t?e.children(s):s,r),e.height(s,l),await C(),e.height(s,"");const g=e.height(s);e.css(s,"alignContent","flex-start"),e.height(s,l);let f=[],i=n/2;if(t){const b=E(s);e.css(e.children(s),r),f=b.map(async(q,X)=>{await C(X*t),await e.Transition.start(q,a,n/2,"ease"),h()&&e.resetProps(q,a)}),i+=b.length*t}if(!t||l!==g){const b={height:g,...t?{}:a};f.push(e.Transition.start(s,b,i,"ease"))}await Promise.all(f),e.removeClass(s,y),h()&&(e.resetProps(s,{height:"",alignContent:"",...a}),delete s.dataset.transition)});return e.hasClass(s,w)?I(s).then(m):e.hasClass(s,y)?I(s).then(p).then(m):p().then(m)}function P(o,s){return s&&(o.dataset.transition=1+P(o)),e.toNumber(o.dataset.transition)||0}function I(o){return Promise.all(e.children(o).filter(e.Transition.inProgress).map(s=>new Promise(n=>e.once(s,"transitionend transitioncanceled",n))))}function E(o){return L(e.children(o)).flat().filter(e.isVisible)}function C(o){return new Promise(s=>setTimeout(s,o))}async function M(o,s,n){await F();let t=e.children(s);const c=t.map(f=>_(f,!0)),a={...e.css(s,["height","padding"]),display:"block"},r=t.concat(s);await Promise.all(r.map(e.Transition.cancel)),e.css(r,"transitionProperty","none"),await o(),t=t.concat(e.children(s).filter(f=>!e.includes(t,f))),await Promise.resolve(),e.css(r,"transitionProperty","");const h=e.attr(s,"style"),d=e.css(s,["height","padding"]),[p,m]=V(s,t,c),l=t.map(f=>({style:e.attr(f,"style")}));t.forEach((f,i)=>m[i]&&e.css(f,m[i])),e.css(s,a),e.trigger(s,"scroll"),await F();const g=t.map((f,i)=>e.parent(f)===s&&e.Transition.start(f,p[i],n,"ease")).concat(e.Transition.start(s,d,n,"ease"));try{await Promise.all(g),t.forEach((f,i)=>{e.attr(f,l[i]),e.parent(f)===s&&e.css(f,"display",p[i].opacity===0?"none":"")}),e.attr(s,"style",h)}catch{e.attr(t,"style",""),e.resetProps(s,a)}}function _(o,s){const n=e.css(o,"zIndex");return e.isVisible(o)?{display:"",opacity:s?e.css(o,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:n==="auto"?e.index(o):n,...D(o)}:!1}function V(o,s,n){const t=s.map((a,r)=>e.parent(a)&&r in n?n[r]?e.isVisible(a)?D(a):{opacity:0}:{opacity:e.isVisible(a)?1:0}:!1),c=t.map((a,r)=>{const h=e.parent(s[r])===o&&(n[r]||_(s[r]));if(!h)return!1;if(!a)delete h.opacity;else if(!("opacity"in a)){const{opacity:d}=h;d%1?a.opacity=1:delete h.opacity}return h});return[t,c]}function D(o){const{height:s,width:n}=e.dimensions(o);return{height:s,width:n,transform:"",...e.position(o),...e.css(o,["marginTop","marginLeft"])}}function F(){return new Promise(o=>requestAnimationFrame(o))}var B={props:{duration:Number,animation:Boolean},data:{duration:150,animation:"slide"},methods:{animate(o,s=this.$el){const n=this.animation;return(n==="fade"?x:n==="delayed-fade"?(...c)=>x(...c,40):n?M:()=>(o(),Promise.resolve()))(o,s,this.duration).catch(e.noop)}}},R={connected(){e.addClass(this.$el,this.$options.id)}},$={mixins:[R,B],props:{group:String,threshold:Number,clsItem:String,clsPlaceholder:String,clsDrag:String,clsDragState:String,clsBase:String,clsNoDrag:String,clsEmpty:String,clsCustom:String,handle:String},data:{group:!1,threshold:5,clsItem:"uk-sortable-item",clsPlaceholder:"uk-sortable-placeholder",clsDrag:"uk-sortable-drag",clsDragState:"uk-drag",clsBase:"uk-sortable",clsNoDrag:"uk-sortable-nodrag",clsEmpty:"uk-sortable-empty",clsCustom:"",handle:!1,pos:{}},events:{name:e.pointerDown,passive:!1,handler(o){this.init(o)}},computed:{target:(o,s)=>(s.tBodies||[s])[0],items(){return e.children(this.target)},isEmpty(){return!this.items.length},handles({handle:o},s){return o?e.$$(o,s):this.items}},watch:{isEmpty(o){e.toggleClass(this.target,this.clsEmpty,o)},handles(o,s){const n={touchAction:"none",userSelect:"none"};e.resetProps(s,n),e.css(o,n)}},update:{write(o){if(!this.drag||!e.parent(this.placeholder))return;const{pos:{x:s,y:n},origin:{offsetTop:t,offsetLeft:c},placeholder:a}=this;e.css(this.drag,{top:n-t,left:s-c});const r=this.getSortable(document.elementFromPoint(s,n));if(!r)return;const{items:h}=r;if(h.some(e.Transition.inProgress))return;const d=G(h,{x:s,y:n});if(h.length&&(!d||d===a))return;const p=this.getSortable(a),m=J(r.target,d,a,s,n,r===p&&o.moved!==d);m!==!1&&(m&&a===m||(r!==p?(p.remove(a),o.moved=d):delete o.moved,r.insert(a,m),this.touched.add(r)))},events:["move"]},methods:{init(o){const{target:s,button:n,defaultPrevented:t}=o,[c]=this.items.filter(a=>a.contains(s));!c||t||n>0||e.isInput(s)||s.closest(`.${this.clsNoDrag}`)||this.handle&&!s.closest(this.handle)||(o.preventDefault(),this.pos=e.getEventPos(o),this.touched=new Set([this]),this.placeholder=c,this.origin={target:s,index:e.index(c),...this.pos},e.on(document,e.pointerMove,this.move),e.on(document,e.pointerUp,this.end),this.threshold||this.start(o))},start(o){this.drag=W(this.$container,this.placeholder);const{left:s,top:n}=e.dimensions(this.placeholder);e.assign(this.origin,{offsetLeft:this.pos.x-s,offsetTop:this.pos.y-n}),e.addClass(this.drag,this.clsDrag,this.clsCustom),e.addClass(this.placeholder,this.clsPlaceholder),e.addClass(this.items,this.clsItem),e.addClass(document.documentElement,this.clsDragState),e.trigger(this.$el,"start",[this,this.placeholder]),j(this.pos),this.move(o)},move:Q(function(o){e.assign(this.pos,e.getEventPos(o)),!this.drag&&(Math.abs(this.pos.x-this.origin.x)>this.threshold||Math.abs(this.pos.y-this.origin.y)>this.threshold)&&this.start(o),this.$emit("move")}),end(){if(e.off(document,e.pointerMove,this.move),e.off(document,e.pointerUp,this.end),!this.drag)return;O();const o=this.getSortable(this.placeholder);this===o?this.origin.index!==e.index(this.placeholder)&&e.trigger(this.$el,"moved",[this,this.placeholder]):(e.trigger(o.$el,"added",[o,this.placeholder]),e.trigger(this.$el,"removed",[this,this.placeholder])),e.trigger(this.$el,"stop",[this,this.placeholder]),e.remove(this.drag),this.drag=null;for(const{clsPlaceholder:s,clsItem:n}of this.touched)for(const t of this.touched)e.removeClass(t.items,s,n);this.touched=null,e.removeClass(document.documentElement,this.clsDragState)},insert(o,s){e.addClass(this.items,this.clsItem),s&&s.previousElementSibling!==o?this.animate(()=>e.before(s,o)):!s&&this.target.lastElementChild!==o&&this.animate(()=>e.append(this.target,o))},remove(o){this.target.contains(o)&&this.animate(()=>e.remove(o))},getSortable(o){do{const s=this.$getComponent(o,"sortable");if(s&&(s===this||this.group!==!1&&s.group===this.group))return s}while(o=e.parent(o))}}};let z;function j(o){let s=Date.now();z=setInterval(()=>{let{x:n,y:t}=o;t+=document.scrollingElement.scrollTop;const c=(Date.now()-s)*.3;s=Date.now(),e.scrollParents(document.elementFromPoint(n,o.y)).reverse().some(a=>{let{scrollTop:r,scrollHeight:h}=a;const{top:d,bottom:p,height:m}=e.offsetViewport(a);if(d<t&&d+35>t)r-=c;else if(p>t&&p-35<t)r+=c;else return;if(r>0&&r<h-m)return a.scrollTop=r,!0})},15)}function O(){clearInterval(z)}function W(o,s){let n;if(e.isTag(s,"li","tr")){n=e.$("<div>"),e.append(n,s.cloneNode(!0).children);for(const t of s.getAttributeNames())e.attr(n,t,s.getAttribute(t))}else n=s.cloneNode(!0);return e.append(o,n),e.css(n,"margin","0","important"),e.css(n,{boxSizing:"border-box",width:s.offsetWidth,height:s.offsetHeight,padding:e.css(s,"padding")}),e.height(n.firstElementChild,e.height(s.firstElementChild)),n}function G(o,s){return o[e.findIndex(o,n=>e.pointInRect(s,e.dimensions(n)))]}function J(o,s,n,t,c,a){if(!e.children(o).length)return;const r=e.dimensions(s);if(!a)return K(o,n)||c<r.top+r.height/2?s:s.nextElementSibling;const h=e.dimensions(n),d=N([r.top,r.bottom],[h.top,h.bottom]),[p,m,l,g]=d?[t,"width","left","right"]:[c,"height","top","bottom"],f=h[m]<r[m]?r[m]-h[m]:0;return h[l]<r[l]?f&&p<r[l]+f?!1:s.nextElementSibling:f&&p>r[g]-f?!1:s}function K(o,s){const n=e.children(o).length===1;n&&e.append(o,s);const t=e.children(o),c=t.some((a,r)=>{const h=e.dimensions(a);return t.slice(r+1).some(d=>{const p=e.dimensions(d);return!N([h.left,h.right],[p.left,p.right])})});return n&&e.remove(s),c}function N(o,s){return o[1]>s[0]&&s[1]>o[0]}function Q(o){let s;return function(...n){s||(s=!0,o.call(this,...n),requestAnimationFrame(()=>s=!1))}}return typeof window<"u"&&window.UIkit&&window.UIkit.component("sortable",$),$})); assets/uikit/dist/js/components/filter.js000064400000043177151666572350014616 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitfilter', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitFilter = factory(global.UIkit.util)); })(this, (function (uikitUtil) { 'use strict'; function parseOptions(options, args = []) { try { return options ? uikitUtil.startsWith(options, "{") ? JSON.parse(options) : args.length && !uikitUtil.includes(options, ":") ? { [args[0]]: options } : options.split(";").reduce((options2, option) => { const [key, value] = option.split(/:(.*)/); if (key && !uikitUtil.isUndefined(value)) { options2[key.trim()] = value.trim(); } return options2; }, {}) : {}; } catch (e) { return {}; } } function callUpdate(instance, e = "update") { if (!instance._connected) { return; } if (!instance._updates.length) { return; } if (!instance._updateCount) { instance._updateCount = 0; requestAnimationFrame(() => instance._updateCount = 0); } if (!instance._queued) { instance._queued = /* @__PURE__ */ new Set(); uikitUtil.fastdom.read(() => { if (instance._connected) { runUpdates(instance, instance._queued); } instance._queued = null; }); } if (instance._updateCount++ < 20) { instance._queued.add(e.type || e); } } function runUpdates(instance, types) { for (const { read, write, events = [] } of instance._updates) { if (!types.has("update") && !events.some((type) => types.has(type))) { continue; } let result; if (read) { result = read.call(instance, instance._data, types); if (result && uikitUtil.isPlainObject(result)) { uikitUtil.assign(instance._data, result); } } if (write && result !== false) { uikitUtil.fastdom.write(() => { if (instance._connected) { write.call(instance, instance._data, types); } }); } } } function resize(options) { return observe(uikitUtil.observeResize, options, "resize"); } function mutation(options) { return observe(uikitUtil.observeMutation, options); } function observe(observe2, options, emit) { return { observe: observe2, handler() { callUpdate(this, emit); }, ...options }; } ({ observe: [ mutation({ options: { childList: true } }), mutation({ options: { attributes: true, attributeFilter: ["style"] } }), resize({ handler(mutations) { for (const { borderBoxSize: [{ inlineSize, blockSize }] } of mutations) { if (inlineSize || blockSize) { this.$emit("resize"); return; } } }, target: ({ $el }) => [$el, ...uikitUtil.children($el)] }) ]}); function getRows(elements) { const sorted = [[]]; const withOffset = elements.some( (el, i) => i && elements[i - 1].offsetParent !== el.offsetParent ); for (const el of elements) { if (!uikitUtil.isVisible(el)) { continue; } const offset = getOffset(el, withOffset); for (let i = sorted.length - 1; i >= 0; i--) { const current = sorted[i]; if (!current[0]) { current.push(el); break; } const offsetCurrent = getOffset(current[0], withOffset); if (offset.top >= offsetCurrent.bottom - 1 && offset.top !== offsetCurrent.top) { sorted.push([el]); break; } if (offset.bottom - 1 > offsetCurrent.top || offset.top === offsetCurrent.top) { let j = current.length - 1; for (; j >= 0; j--) { const offsetCurrent2 = getOffset(current[j], withOffset); if (offset.left >= offsetCurrent2.left) { break; } } current.splice(j + 1, 0, el); break; } if (i === 0) { sorted.unshift([el]); break; } } } return sorted; } function getOffset(element, offset = false) { let { offsetTop, offsetLeft, offsetHeight, offsetWidth } = element; if (offset) { [offsetTop, offsetLeft] = uikitUtil.offsetPosition(element); } return { top: offsetTop, left: offsetLeft, bottom: offsetTop + offsetHeight, right: offsetLeft + offsetWidth }; } const clsLeave = "uk-transition-leave"; const clsEnter = "uk-transition-enter"; function fade(action, target, duration, stagger = 0) { const index = transitionIndex(target, true); const propsIn = { opacity: 1 }; const propsOut = { opacity: 0 }; const isCurrentIndex = () => index === transitionIndex(target); const wrapIndexFn = (fn) => () => isCurrentIndex() ? fn() : Promise.reject(); const leaveFn = wrapIndexFn(async () => { uikitUtil.addClass(target, clsLeave); await (stagger ? Promise.all( getTransitionNodes(target).map(async (child, i) => { await awaitTimeout(i * stagger); return uikitUtil.Transition.start(child, propsOut, duration / 2, "ease"); }) ) : uikitUtil.Transition.start(target, propsOut, duration / 2, "ease")); uikitUtil.removeClass(target, clsLeave); }); const enterFn = wrapIndexFn(async () => { const oldHeight = uikitUtil.height(target); uikitUtil.addClass(target, clsEnter); action(); uikitUtil.css(stagger ? uikitUtil.children(target) : target, propsOut); uikitUtil.height(target, oldHeight); await awaitTimeout(); uikitUtil.height(target, ""); const newHeight = uikitUtil.height(target); uikitUtil.css(target, "alignContent", "flex-start"); uikitUtil.height(target, oldHeight); let transitions = []; let targetDuration = duration / 2; if (stagger) { const nodes = getTransitionNodes(target); uikitUtil.css(uikitUtil.children(target), propsOut); transitions = nodes.map(async (child, i) => { await awaitTimeout(i * stagger); await uikitUtil.Transition.start(child, propsIn, duration / 2, "ease"); if (isCurrentIndex()) { uikitUtil.resetProps(child, propsIn); } }); targetDuration += nodes.length * stagger; } if (!stagger || oldHeight !== newHeight) { const targetProps = { height: newHeight, ...stagger ? {} : propsIn }; transitions.push(uikitUtil.Transition.start(target, targetProps, targetDuration, "ease")); } await Promise.all(transitions); uikitUtil.removeClass(target, clsEnter); if (isCurrentIndex()) { uikitUtil.resetProps(target, { height: "", alignContent: "", ...propsIn }); delete target.dataset.transition; } }); return uikitUtil.hasClass(target, clsLeave) ? waitTransitionend(target).then(enterFn) : uikitUtil.hasClass(target, clsEnter) ? waitTransitionend(target).then(leaveFn).then(enterFn) : leaveFn().then(enterFn); } function transitionIndex(target, next) { if (next) { target.dataset.transition = 1 + transitionIndex(target); } return uikitUtil.toNumber(target.dataset.transition) || 0; } function waitTransitionend(target) { return Promise.all( uikitUtil.children(target).filter(uikitUtil.Transition.inProgress).map( (el) => new Promise((resolve) => uikitUtil.once(el, "transitionend transitioncanceled", resolve)) ) ); } function getTransitionNodes(target) { return getRows(uikitUtil.children(target)).flat().filter(uikitUtil.isVisible); } function awaitTimeout(timeout) { return new Promise((resolve) => setTimeout(resolve, timeout)); } async function slide(action, target, duration) { await awaitFrame(); let nodes = uikitUtil.children(target); const currentProps = nodes.map((el) => getProps(el, true)); const targetProps = { ...uikitUtil.css(target, ["height", "padding"]), display: "block" }; const targets = nodes.concat(target); await Promise.all(targets.map(uikitUtil.Transition.cancel)); uikitUtil.css(targets, "transitionProperty", "none"); await action(); nodes = nodes.concat(uikitUtil.children(target).filter((el) => !uikitUtil.includes(nodes, el))); await Promise.resolve(); uikitUtil.css(targets, "transitionProperty", ""); const targetStyle = uikitUtil.attr(target, "style"); const targetPropsTo = uikitUtil.css(target, ["height", "padding"]); const [propsTo, propsFrom] = getTransitionProps(target, nodes, currentProps); const attrsTo = nodes.map((el) => ({ style: uikitUtil.attr(el, "style") })); nodes.forEach((el, i) => propsFrom[i] && uikitUtil.css(el, propsFrom[i])); uikitUtil.css(target, targetProps); uikitUtil.trigger(target, "scroll"); await awaitFrame(); const transitions = nodes.map((el, i) => uikitUtil.parent(el) === target && uikitUtil.Transition.start(el, propsTo[i], duration, "ease")).concat(uikitUtil.Transition.start(target, targetPropsTo, duration, "ease")); try { await Promise.all(transitions); nodes.forEach((el, i) => { uikitUtil.attr(el, attrsTo[i]); if (uikitUtil.parent(el) === target) { uikitUtil.css(el, "display", propsTo[i].opacity === 0 ? "none" : ""); } }); uikitUtil.attr(target, "style", targetStyle); } catch (e) { uikitUtil.attr(nodes, "style", ""); uikitUtil.resetProps(target, targetProps); } } function getProps(el, opacity) { const zIndex = uikitUtil.css(el, "zIndex"); return uikitUtil.isVisible(el) ? { display: "", opacity: opacity ? uikitUtil.css(el, "opacity") : "0", pointerEvents: "none", position: "absolute", zIndex: zIndex === "auto" ? uikitUtil.index(el) : zIndex, ...getPositionWithMargin(el) } : false; } function getTransitionProps(target, nodes, currentProps) { const propsTo = nodes.map( (el, i) => uikitUtil.parent(el) && i in currentProps ? currentProps[i] ? uikitUtil.isVisible(el) ? getPositionWithMargin(el) : { opacity: 0 } : { opacity: uikitUtil.isVisible(el) ? 1 : 0 } : false ); const propsFrom = propsTo.map((props, i) => { const from = uikitUtil.parent(nodes[i]) === target && (currentProps[i] || getProps(nodes[i])); if (!from) { return false; } if (!props) { delete from.opacity; } else if (!("opacity" in props)) { const { opacity } = from; if (opacity % 1) { props.opacity = 1; } else { delete from.opacity; } } return from; }); return [propsTo, propsFrom]; } function getPositionWithMargin(el) { const { height, width } = uikitUtil.dimensions(el); return { height, width, transform: "", ...uikitUtil.position(el), ...uikitUtil.css(el, ["marginTop", "marginLeft"]) }; } function awaitFrame() { return new Promise((resolve) => requestAnimationFrame(resolve)); } var Animate = { props: { duration: Number, animation: Boolean }, data: { duration: 150, animation: "slide" }, methods: { animate(action, target = this.$el) { const name = this.animation; const animationFn = name === "fade" ? fade : name === "delayed-fade" ? (...args) => fade(...args, 40) : name ? slide : () => { action(); return Promise.resolve(); }; return animationFn(action, target, this.duration).catch(uikitUtil.noop); } } }; function maybeDefaultPreventClick(e) { if (e.target.closest('a[href="#"],a[href=""]')) { e.preventDefault(); } } const keyMap = { SPACE: 32}; var Component = { mixins: [Animate], args: "target", props: { target: String, selActive: Boolean }, data: { target: "", selActive: false, attrItem: "uk-filter-control", cls: "uk-active", duration: 250 }, computed: { children: ({ target }, $el) => uikitUtil.$$(`${target} > *`, $el), toggles: ({ attrItem }, $el) => uikitUtil.$$(`[${attrItem}],[data-${attrItem}]`, $el) }, watch: { toggles(toggles) { this.updateState(); const actives = uikitUtil.$$(this.selActive, this.$el); for (const toggle of toggles) { if (this.selActive !== false) { uikitUtil.toggleClass(toggle, this.cls, uikitUtil.includes(actives, toggle)); } const button = findButton(toggle); if (uikitUtil.isTag(button, "a")) { button.role = "button"; } } }, children(list, prev) { if (prev) { this.updateState(); } } }, events: { name: "click keydown", delegate: ({ attrItem }) => `[${attrItem}],[data-${attrItem}]`, handler(e) { if (e.type === "keydown" && e.keyCode !== keyMap.SPACE) { return; } if (e.target.closest("a,button")) { maybeDefaultPreventClick(e); this.apply(e.current); } } }, methods: { apply(el) { const prevState = this.getState(); const newState = mergeState(el, this.attrItem, this.getState()); if (!isEqualState(prevState, newState)) { this.setState(newState); } }, getState() { return this.toggles.filter((item) => uikitUtil.hasClass(item, this.cls)).reduce((state, el) => mergeState(el, this.attrItem, state), { filter: { "": "" }, sort: [] }); }, async setState(state, animate = true) { state = { filter: { "": "" }, sort: [], ...state }; uikitUtil.trigger(this.$el, "beforeFilter", [this, state]); for (const toggle of this.toggles) { uikitUtil.toggleClass(toggle, this.cls, matchFilter(toggle, this.attrItem, state)); } await Promise.all( uikitUtil.$$(this.target, this.$el).map((target) => { const filterFn = () => applyState(state, target, uikitUtil.children(target)); return animate ? this.animate(filterFn, target) : filterFn(); }) ); uikitUtil.trigger(this.$el, "afterFilter", [this]); }, updateState() { uikitUtil.fastdom.write(() => this.setState(this.getState(), false)); } } }; function getFilter(el, attr) { return parseOptions(uikitUtil.data(el, attr), ["filter"]); } function isEqualState(stateA, stateB) { return ["filter", "sort"].every((prop) => uikitUtil.isEqual(stateA[prop], stateB[prop])); } function applyState(state, target, children) { for (const el of children) { uikitUtil.css( el, "display", Object.values(state.filter).every((selector) => !selector || uikitUtil.matches(el, selector)) ? "" : "none" ); } const [sort, order] = state.sort; if (sort) { const sorted = sortItems(children, sort, order); if (!uikitUtil.isEqual(sorted, children)) { uikitUtil.append(target, sorted); } } } function mergeState(el, attr, state) { const { filter, group, sort, order = "asc" } = getFilter(el, attr); if (filter || uikitUtil.isUndefined(sort)) { if (group) { if (filter) { delete state.filter[""]; state.filter[group] = filter; } else { delete state.filter[group]; if (uikitUtil.isEmpty(state.filter) || "" in state.filter) { state.filter = { "": filter || "" }; } } } else { state.filter = { "": filter || "" }; } } if (!uikitUtil.isUndefined(sort)) { state.sort = [sort, order]; } return state; } function matchFilter(el, attr, { filter: stateFilter = { "": "" }, sort: [stateSort, stateOrder] }) { const { filter = "", group = "", sort, order = "asc" } = getFilter(el, attr); return uikitUtil.isUndefined(sort) ? group in stateFilter && filter === stateFilter[group] || !filter && group && !(group in stateFilter) && !stateFilter[""] : stateSort === sort && stateOrder === order; } function sortItems(nodes, sort, order) { return [...nodes].sort( (a, b) => uikitUtil.data(a, sort).localeCompare(uikitUtil.data(b, sort), void 0, { numeric: true }) * (order === "asc" || -1) ); } function findButton(el) { return uikitUtil.$("a,button", el) || el; } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("filter", Component); } return Component; })); assets/uikit/dist/js/components/slideshow.min.js000064400000056723151666572350016115 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(i,w){typeof exports=="object"&&typeof module<"u"?module.exports=w(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitslideshow",["uikit-util"],w):(i=typeof globalThis<"u"?globalThis:i||self,i.UIkitSlideshow=w(i.UIkit.util))})(this,(function(i){"use strict";var w={connected(){i.addClass(this.$el,this.$options.id)}};function ht(t,e="update"){t._connected&&t._updates.length&&(t._updateCount||(t._updateCount=0,requestAnimationFrame(()=>t._updateCount=0)),t._queued||(t._queued=new Set,i.fastdom.read(()=>{t._connected&&dt(t,t._queued),t._queued=null})),t._updateCount++<20&&t._queued.add(e.type||e))}function dt(t,e){for(const{read:n,write:s,events:a=[]}of t._updates){if(!e.has("update")&&!a.some(o=>e.has(o)))continue;let r;n&&(r=n.call(t,t._data,e),r&&i.isPlainObject(r)&&i.assign(t._data,r)),s&&r!==!1&&i.fastdom.write(()=>{t._connected&&s.call(t,t._data,e)})}}function R(t){return E(i.observeResize,t,"resize")}function ct(t){return E(i.observeIntersection,t)}function lt(t={}){return ct({handler:function(e,n){const{targets:s=this.$el,preload:a=5}=t;for(const r of i.toNodes(i.isFunction(s)?s(this):s))i.$$('[loading="lazy"]',r).slice(0,a-1).forEach(o=>i.removeAttr(o,"loading"));for(const r of e.filter(({isIntersecting:o})=>o).map(({target:o})=>o))n.unobserve(r)},...t})}function ft(t){return E((e,n)=>({disconnect:i.on(ut(e),"scroll",n,{passive:!0})}),t,"scroll")}function E(t,e,n){return{observe:t,handler(){ht(this,n)},...e}}function ut(t){return i.toNodes(t).map(e=>{const{ownerDocument:n}=e,s=i.scrollParent(e,!0);return s===n.scrollingElement?n:s})}function gt(t,e){var n;return(n=t==null?void 0:t.startsWith)==null?void 0:n.call(t,e)}const{from:mt}=Array;function pt(t){return typeof t=="function"}function T(t){return t!==null&&typeof t=="object"}function vt(t){return T(t)&&t===t.window}function xt(t){return W(t)===9}function L(t){return W(t)>=1}function W(t){return!vt(t)&&T(t)&&t.nodeType}function P(t){return typeof t=="string"}function wt(t){return t===void 0}function _(t){return t&&m(t)[0]}function m(t){return L(t)?[t]:Array.from(t||[]).filter(L)}function U(t){const e=Object.create(null);return(n,...s)=>e[n]||(e[n]=t(n,...s))}function H(t,e,n){var s;if(T(e)){for(const a in e)H(t,a,e[a]);return}if(wt(n))return(s=_(t))==null?void 0:s.getAttribute(e);for(const a of m(t))pt(n)&&(n=n.call(a,H(a,e))),n===null?It(a,e):a.setAttribute(e,n)}function It(t,e){m(t).forEach(n=>n.removeAttribute(e))}const bt=typeof window<"u"&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function yt(t){return m(t).some(e=>bt.call(e))}function $t(t){var e;return(e=_(t))==null?void 0:e.parentElement}function St(t,e){return m(t).filter(n=>j(n,e))}function j(t,e){return m(t).some(n=>n.matches(e))}function _t(t,e){t=_(t);const n=t?mt(t.children):[];return e?St(n,e):n}function q(t,e){return _t($t(t)).indexOf(t)}function kt(t,e){return m(Et(t,_(e),"querySelectorAll"))}const Ct=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,At=/(\([^)]*\)|[^,])+/g,zt=U(t=>{let e=!1;if(!t||!P(t))return{};const n=[];for(let s of t.match(At))s=s.trim().replace(Ct,"$1 *"),e||(e=["!","+","~","-",">"].includes(s[0])),n.push(s);return{selector:n.join(","),selectors:n,isContextSelector:e}}),Nt=/(\([^)]*\)|\S)*/,B=U(t=>{t=t.slice(1).trim();const[e]=t.match(Nt);return[e,t.slice(e.length+1)]});function Et(t,e=document,n){var s;const a=zt(t);if(!a.isContextSelector)return a.selector?M(e,n,a.selector):t;t="";const r=a.selectors.length===1;for(let o of a.selectors){let h,d=e;if(o[0]==="!"&&([h,o]=B(o),d=(s=e.parentElement)==null?void 0:s.closest(h),!o&&r)||d&&o[0]==="-"&&([h,o]=B(o),d=d.previousElementSibling,d=j(d,h)?d:null,!o&&r))return d;if(d){if(r)return o[0]==="~"||o[0]==="+"?(o=`:scope > :nth-child(${q(d)+1}) ${o}`,d=d.parentElement):o[0]===">"&&(o=`:scope ${o}`),M(d,n,o);t+=`${t?",":""}${Tt(d)} ${o}`}}return xt(e)||(e=e.ownerDocument),M(e,n,t)}function M(t,e,n){try{return t[e](n)}catch{return null}}function Tt(t){const e=[];for(;t.parentNode;){const n=H(t,"id");if(n){e.unshift(`#${Pt(n)}`);break}else{let{tagName:s}=t;s!=="HTML"&&(s+=`:nth-child(${q(t)+1})`),e.unshift(s),t=t.parentNode}}return e.join(" > ")}function Pt(t){return P(t)?CSS.escape(t):""}const Ht=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Mt(t){const e=Ht.exec(t);if(e)return document.createElement(e[1]);const n=document.createElement("template");return n.innerHTML=t.trim(),Dt(n.content.childNodes)}function Dt(t){return t.length>1?t:t[0]}function Ot(t,e){return Ft(t)?m(Mt(t)):kt(t,e)}function Ft(t){return P(t)&>(t.trim(),"<")}function Rt(t){return yt(t)?Math.ceil(Math.max(0,...Ot("[stroke]",t).map(e=>{var n;return((n=e.getTotalLength)==null?void 0:n.call(e))||0}))):0}const V={x:k,y:k,rotate:k,scale:k,color:D,backgroundColor:D,borderColor:D,blur:p,hue:p,fopacity:p,grayscale:p,invert:p,saturate:p,sepia:p,opacity:Wt,stroke:Ut,bgx:G,bgy:G},{keys:Q}=Object;Z(Q(V),"list"),Z(Q(V),void 0);function k(t,e,n){let s=A(n)||{x:"px",y:"px",rotate:"deg"}[t]||"",a;return t==="x"||t==="y"?(t=`translate${i.ucfirst(t)}`,a=r=>i.toFloat(i.toFloat(r).toFixed(s==="px"?0:6))):t==="scale"&&(s="",a=r=>{var o;return A([r])?i.toPx(r,"width",e,!0)/e[`offset${(o=r.endsWith)!=null&&o.call(r,"vh")?"Height":"Width"}`]:i.toFloat(r)}),n.length===1&&n.unshift(t==="scale"?1:0),n=x(n,a),(r,o)=>{r.transform=`${r.transform||""} ${t}(${I(n,o)}${s})`}}function D(t,e,n){return n.length===1&&n.unshift(b(e,t,"")),n=x(n,s=>Lt(e,s)),(s,a)=>{const[r,o,h]=Y(n,a),d=r.map((u,c)=>(u+=h*(o[c]-u),c===3?i.toFloat(u):parseInt(u,10))).join(",");s[t]=`rgba(${d})`}}function Lt(t,e){return b(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(i.toFloat)}function p(t,e,n){n.length===1&&n.unshift(0);const s=A(n)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,n=x(n),(a,r)=>{const o=I(n,r);a.filter=`${a.filter||""} ${t}(${o+s})`}}function Wt(t,e,n){return n.length===1&&n.unshift(b(e,t,"")),n=x(n),(s,a)=>{s[t]=I(n,a)}}function Ut(t,e,n){n.length===1&&n.unshift(0);const s=A(n),a=Rt(e);return n=x(n.reverse(),r=>(r=i.toFloat(r),s==="%"?r*a/100:r)),n.some(([r])=>r)?(i.css(e,"strokeDasharray",a),(r,o)=>{r.strokeDashoffset=I(n,o)}):i.noop}function G(t,e,n,s){n.length===1&&n.unshift(0);const a=t==="bgy"?"height":"width";s[t]=x(n,h=>i.toPx(h,a,e));const r=["bgx","bgy"].filter(h=>h in s);if(r.length===2&&t==="bgx")return i.noop;if(b(e,"backgroundSize","")==="cover")return jt(t,e,n,s);const o={};for(const h of r)o[h]=X(e,h);return J(r,o,s)}function jt(t,e,n,s){const a=qt(e);if(!a.width)return i.noop;const r={width:e.offsetWidth,height:e.offsetHeight},o=["bgx","bgy"].filter(c=>c in s),h={};for(const c of o){const l=s[c].map(([ge])=>ge),g=Math.min(...l),S=Math.max(...l),v=l.indexOf(g)<l.indexOf(S),ot=S-g;h[c]=`${(v?-ot:0)-(v?g:S)}px`,r[c==="bgy"?"height":"width"]+=ot}const d=i.Dimensions.cover(a,r);for(const c of o){const l=c==="bgy"?"height":"width",g=d[l]-r[l];h[c]=`max(${X(e,c)},-${g}px) + ${h[c]}`}const u=J(o,h,s);return(c,l)=>{u(c,l),c.backgroundSize=`${d.width}px ${d.height}px`,c.backgroundRepeat="no-repeat"}}function X(t,e){return b(t,`background-position-${e.slice(-1)}`,"")}function J(t,e,n){return function(s,a){for(const r of t){const o=I(n[r],a);s[`background-position-${r.slice(-1)}`]=`calc(${e[r]} + ${o}px)`}}}const K={},C={};function qt(t){const e=i.css(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(C[e])return C[e];const n=new Image;return e&&(n.src=e,!n.naturalWidth&&!K[e])?(i.once(n,"error load",()=>{C[e]=O(n),i.trigger(t,i.createEvent("load",!1))}),K[e]=!0,O(n)):C[e]=O(n)}function O(t){return{width:t.naturalWidth,height:t.naturalHeight}}function x(t,e=i.toFloat){const n=[],{length:s}=t;let a=0;for(let r=0;r<s;r++){let[o,h]=i.isString(t[r])?t[r].trim().split(/ (?![^(]*\))/):[t[r]];if(o=e(o),h=h?i.toFloat(h)/100:null,r===0?h===null?h=0:h&&n.push([o,0]):r===s-1&&(h===null?h=1:h!==1&&(n.push([o,h]),h=1)),n.push([o,h]),h===null)a++;else if(a){const d=n[r-a-1][1],u=(h-d)/(a+1);for(let c=a;c>0;c--)n[r-c][1]=d+u*(a-c+1);a=0}}return n}function Y(t,e){const n=i.findIndex(t.slice(1),([,s])=>e<=s)+1;return[t[n-1][0],t[n][0],(e-t[n-1][1])/(t[n][1]-t[n-1][1])]}function I(t,e){const[n,s,a]=Y(t,e);return n+Math.abs(n-s)*a*(n<s?1:-1)}const Bt=/^-?\d+(?:\.\d+)?(\S+)?/;function A(t,e){var n;for(const s of t){const a=(n=s.match)==null?void 0:n.call(s,Bt);if(a)return a[1]}return e}function b(t,e,n){const s=t.style[e],a=i.css(i.css(t,e,n),e);return t.style[e]=s,a}function Z(t,e){return t.reduce((n,s)=>(n[s]=e,n),{})}function Vt(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,1-e)}var Qt={props:{parallax:Boolean,parallaxTarget:Boolean,parallaxStart:String,parallaxEnd:String,parallaxEasing:Number},data:{parallax:!1,parallaxTarget:!1,parallaxStart:0,parallaxEnd:0,parallaxEasing:0},observe:[R({target:({$el:t,parallaxTarget:e})=>[t,e],filter:({parallax:t})=>t}),ft({filter:({parallax:t})=>t})],computed:{parallaxTarget({parallaxTarget:t},e){return t&&i.query(t,e)||this.list}},update:{read(){if(!this.parallax)return!1;const t=this.parallaxTarget;if(!t)return!1;const e=i.toPx(this.parallaxStart,"height",t,!0),n=i.toPx(this.parallaxEnd,"height",t,!0),s=Vt(i.scrolledOver(t,e,n),this.parallaxEasing);return{parallax:this.getIndexAt(s)}},write({parallax:t}){const[e,n]=t,s=this.getValidIndex(e+Math.ceil(n)),a=this.slides[e],r=this.slides[s],{triggerShow:o,triggerShown:h,triggerHide:d,triggerHidden:u}=Gt(this);if(~this.prevIndex)for(const l of new Set([this.index,this.prevIndex]))i.includes([s,e],l)||(d(this.slides[l]),u(this.slides[l]));const c=this.prevIndex!==e||this.index!==s;this.dir=1,this.prevIndex=e,this.index=s,a!==r&&d(a),o(r),c&&h(a),this._translate(a===r?1:n,a,r)},events:["scroll","resize"]},methods:{getIndexAt(t){const e=t*(this.length-1);return[Math.floor(e),e%1]}}};function Gt(t){const{clsSlideActive:e,clsEnter:n,clsLeave:s}=t;return{triggerShow:a,triggerShown:r,triggerHide:o,triggerHidden:h};function a(d){i.hasClass(d,s)&&(o(d),h(d)),i.hasClass(d,e)||(i.trigger(d,"beforeitemshow",[t]),i.trigger(d,"itemshow",[t]))}function r(d){i.hasClass(d,n)&&i.trigger(d,"itemshown",[t])}function o(d){i.hasClass(d,e)||a(d),i.hasClass(d,n)&&r(d),i.hasClass(d,s)||(i.trigger(d,"beforeitemhide",[t]),i.trigger(d,"itemhide",[t]))}function h(d){i.hasClass(d,s)&&i.trigger(d,"itemhidden",[t])}}var Xt={update:{write(){if(this.stack.length||this.dragging||this.parallax)return;const t=this.getValidIndex();!~this.prevIndex||this.index!==t?this.show(t):this._translate(1)},events:["resize"]}},tt={slide:{show(t){return[{transform:f(t*-100)},{transform:f()}]},percent(t){return y(t)},translate(t,e){return[{transform:f(e*-100*t)},{transform:f(e*100*(1-t))}]}}};function y(t){return Math.abs(new DOMMatrix(i.css(t,"transform")).m41/t.offsetWidth)}function f(t=0,e="%"){return t?`translate3d(${t+e}, 0, 0)`:""}function Jt(t,e,n,{animation:s,easing:a}){const{percent:r,translate:o,show:h=i.noop}=s,d=h(n),{promise:u,resolve:c}=Kt();return{dir:n,show(l,g=0,S){const v=S?"linear":a;return l-=Math.round(l*i.clamp(g,-1,1)),this.translate(g),z(e,"itemin",{percent:g,duration:l,timing:v,dir:n}),z(t,"itemout",{percent:1-g,duration:l,timing:v,dir:n}),Promise.all([i.Transition.start(e,d[1],l,v),i.Transition.start(t,d[0],l,v)]).then(()=>{this.reset(),c()},i.noop),u},cancel(){return i.Transition.cancel([e,t])},reset(){i.resetProps([e,t],d[0])},async forward(l,g=this.percent()){return await this.cancel(),this.show(l,g,!0)},translate(l){this.reset();const g=o(l,n);i.css(e,g[1]),i.css(t,g[0]),z(e,"itemtranslatein",{percent:l,dir:n}),z(t,"itemtranslateout",{percent:1-l,dir:n})},percent(){return r(t||e,e,n)},getDistance(){return t==null?void 0:t.offsetWidth}}}function z(t,e,n){i.trigger(t,i.createEvent(e,!1,!1,n))}function Kt(){let t;return{promise:new Promise(e=>t=e),resolve:t}}var Yt={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var n,s,a;let r=0;return((a=((n=this.i18n)==null?void 0:n[t])||((s=this.$options.i18n)==null?void 0:s[t]))==null?void 0:a.replace(/%s/g,()=>e[r++]||""))||""}}},Zt={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){i.attr(this.list,"aria-live",this.autoplay?"off":"polite"),this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){i.attr(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el:()=>document,filter:({autoplay:t})=>t,handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>{this.stack.length||!i.isVisible(this.$el)||this.draggable&&i.matches(this.$el,":focus-within")&&!i.matches(this.$el,":focus")||this.pauseOnHover&&i.matches(this.$el,":hover")||this.show("next")},this.autoplayInterval)},stopAutoplay(){clearInterval(this.interval)}}};const N={passive:!1,capture:!0},et={passive:!0,capture:!0},te="touchstart mousedown",F="touchmove mousemove",nt="touchend touchcancel mouseup click input scroll";var ee={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const e=this[t];this[t]=n=>{const s=i.getEventPos(n).x*(i.isRtl?-1:1);this.prevPos=s===this.pos?this.prevPos:this.pos,this.pos=s,e(n)}}},events:[{name:te,passive:!0,delegate:({selList:t})=>`${t} > *`,handler(t){!this.draggable||this.parallax||!i.isTouch(t)&&ne(t.target)||t.target.closest(i.selInput)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}},{name:F,el:({list:t})=>t,handler:i.noop,...N}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,i.on(document,F,this.move,N),i.on(document,nt,this.end,et),i.css(this.list,"userSelect","none")},move(t){const e=this.pos-this.drag;if(e===0||this.prevPos===this.pos||!this.dragging&&Math.abs(e)<this.threshold)return;t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=e<0?1:-1;let{slides:n,prevIndex:s}=this,a=Math.abs(e),r=this.getIndex(s+this.dir),o=it.call(this,s,r);for(;r!==s&&a>o;)this.drag-=o*this.dir,s=r,a-=o,r=this.getIndex(s+this.dir),o=it.call(this,s,r);this.percent=a/o;const h=n[s],d=n[r],u=this.index!==r,c=s===r;let l;for(const g of[this.index,this.prevIndex])i.includes([r,s],g)||(i.trigger(n[g],"itemhidden",[this]),c&&(l=!0,this.prevIndex=s));(this.index===s&&this.prevIndex!==s||l)&&i.trigger(n[this.index],"itemshown",[this]),u&&(this.prevIndex=s,this.index=r,c||(i.trigger(h,"beforeitemhide",[this]),i.trigger(h,"itemhide",[this])),i.trigger(d,"beforeitemshow",[this]),i.trigger(d,"itemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),h,!c&&d)},end(){if(i.off(document,F,this.move,N),i.off(document,nt,this.end,et),this.dragging)if(setTimeout(i.on(this.list,"click",t=>t.preventDefault(),N)),this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(i.isRtl?this.dir*(i.isRtl?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(i.trigger(this.slides[this.prevIndex],"itemhidden",[this]),i.trigger(this.slides[this.index],"itemshown",[this]),this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}i.css(this.list,{userSelect:""}),this.drag=this.percent=null}}};function it(t,e){return this._getTransitioner(t,t!==e&&e).getDistance()||this.slides[t].offsetWidth}function ne(t){return i.css(t,"userSelect")!=="none"&&i.toArray(t.childNodes).some(e=>e.nodeType===3&&e.textContent.trim())}i.memoize((t,e)=>{const n=Object.keys(e),s=n.concat(t).map(a=>[i.hyphenate(a),`data-${i.hyphenate(a)}`]).flat();return{attributes:n,filter:s}});let ie=1;function st(t,e=null){return(e==null?void 0:e.id)||`${t.$options.id}-${ie++}`}const $={SPACE:32,END:35,HOME:36,LEFT:37,RIGHT:39};function se(t){t.target.closest('a[href="#"],a[href=""]')&&t.preventDefault()}var re={i18n:{next:"Next slide",previous:"Previous slide",slideX:"Slide %s",slideLabel:"%s of %s",role:"String"},data:{selNav:!1,role:"region"},computed:{nav:({selNav:t},e)=>i.$(t,e),navChildren(){return i.children(this.nav)},selNavItem:({attrItem:t})=>`[${t}],[data-${t}]`,navItems(t,e){return i.$$(this.selNavItem,e)}},watch:{nav(t,e){i.attr(t,"role","tablist"),this.padNavitems(),e&&this.$emit()},list(t){i.isTag(t,"ul")&&i.attr(t,"role","presentation")},navChildren(t){i.attr(t,"role","presentation"),this.padNavitems(),this.updateNav()},navItems(t){for(const e of t){const n=i.data(e,this.attrItem),s=i.$("a,button",e)||e;let a,r=null;if(i.isNumeric(n)){const o=i.toNumber(n),h=this.slides[o];h&&(h.id||(h.id=st(this,h)),r=h.id),a=this.t("slideX",i.toFloat(n)+1),s.role="tab"}else this.list&&(this.list.id||(this.list.id=st(this,this.list)),r=this.list.id),a=this.t(n);s.ariaControls=r,s.ariaLabel=s.ariaLabel||a}},slides(t){t.forEach((e,n)=>i.attr(e,{role:this.nav?"tabpanel":"group","aria-label":this.t("slideLabel",n+1,this.length),"aria-roledescription":this.nav?null:"slide"})),this.padNavitems()}},connected(){this.$el.role=this.role,this.$el.ariaRoleDescription="carousel"},update:[{write(){this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]}],events:[{name:"click keydown",delegate:({selNavItem:t})=>t,filter:({parallax:t})=>!t,handler(t){t.target.closest("a,button")&&(t.type==="click"||t.keyCode===$.SPACE)&&(se(t),this.show(i.data(t.current,this.attrItem)))}},{name:"itemshow",handler(){this.updateNav()}},{name:"keydown",delegate:({selNavItem:t})=>t,filter:({parallax:t})=>!t,handler(t){const{current:e,keyCode:n}=t,s=i.data(e,this.attrItem);if(!i.isNumeric(s))return;let a=n===$.HOME?0:n===$.END?"last":n===$.LEFT?"previous":n===$.RIGHT?"next":-1;~a&&(t.preventDefault(),this.show(a))}}],methods:{updateNav(){const t=this.getValidIndex();for(const e of this.navItems){const n=i.data(e,this.attrItem),s=i.$("a,button",e)||e;if(i.isNumeric(n)){const r=i.toNumber(n)===t;i.toggleClass(e,this.clsActive,r),i.toggleClass(s,"uk-disabled",!!this.parallax),s.ariaSelected=r,s.tabIndex=r&&!this.parallax?null:-1,r&&s&&i.matches(i.parent(e),":focus-within")&&s.focus()}else i.toggleClass(e,"uk-invisible",this.finite&&(n==="previous"&&t===0||n==="next"&&t>=this.maxIndex))}},padNavitems(){if(!this.nav)return;const t=[];for(let e=0;e<this.length;e++){const n=`${this.attrItem}="${e}"`;t[e]=this.navChildren.findLast(s=>s.matches(`[${n}]`))||i.$(`<li ${n}><a href></a></li>`)}i.isEqual(t,this.navChildren)||i.html(this.nav,t)}}};const ae="cubic-bezier(0.25, 0.46, 0.45, 0.94)",oe="cubic-bezier(0.165, 0.84, 0.44, 1)";var he={mixins:[Zt,ee,re,Yt],props:{clsActivated:String,easing:String,index:Number,finite:Boolean,velocity:Number},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:"",clsEnter:"uk-slide-enter",clsLeave:"uk-slide-leave",clsSlideActive:"uk-slide-active",Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){i.removeClass(this.slides,this.clsActive)},computed:{duration:({velocity:t},e)=>ce(e.offsetWidth/t),list:({selList:t},e)=>i.$(t,e),maxIndex(){return this.length-1},slides(){return i.children(this.list)},length(){return this.slides.length}},watch:{slides(t,e){e&&this.$emit()}},events:{itemshow({target:t}){i.addClass(t,this.clsEnter,this.clsSlideActive)},itemshown({target:t}){i.removeClass(t,this.clsEnter)},itemhide({target:t}){i.addClass(t,this.clsLeave)},itemhidden({target:t}){i.removeClass(t,this.clsLeave,this.clsSlideActive)}},methods:{async show(t,e=!1){var n;if(this.dragging||!this.length||this.parallax)return;const{stack:s}=this,a=e?0:s.length,r=()=>{s.splice(a,1),s.length&&this.show(s.shift(),!0)};if(s[e?"unshift":"push"](t),!e&&s.length>1){s.length===2&&((n=this._transitioner)==null||n.forward(Math.min(this.duration,200)));return}const o=this.getIndex(this.index),h=i.hasClass(this.slides,this.clsActive)&&this.slides[o],d=this.getIndex(t,this.index),u=this.slides[d];if(h===u){r();return}if(this.dir=de(t,o),this.prevIndex=o,this.index=d,h&&!i.trigger(h,"beforeitemhide",[this])||!i.trigger(u,"beforeitemshow",[this,h])){this.index=this.prevIndex,r();return}h&&i.trigger(h,"itemhide",[this]),i.trigger(u,"itemshow",[this]),await this._show(h,u,e),h&&i.trigger(h,"itemhidden",[this]),i.trigger(u,"itemshown",[this]),s.shift(),this._transitioner=null,s.length&&requestAnimationFrame(()=>s.length&&this.show(s.shift(),!0))},getIndex(t=this.index,e=this.index){return i.clamp(i.getIndex(t,this.slides,e,this.finite),0,Math.max(0,this.maxIndex))},getValidIndex(t=this.index,e=this.prevIndex){return this.getIndex(t,e)},async _show(t,e,n){if(this._transitioner=this._getTransitioner(t,e,this.dir,{easing:n?e.offsetWidth<600?ae:oe:this.easing,...this.transitionOptions}),!n&&!t){this._translate(1);return}const{length:s}=this.stack;return this._transitioner[s>1?"forward":"show"](s>1?Math.min(this.duration,75+75/(s-1)):this.duration,this.percent)},_translate(t,e=this.prevIndex,n=this.index){const s=this._getTransitioner(e===n?!1:e,n);return s.translate(t),s},_getTransitioner(t=this.prevIndex,e=this.index,n=this.dir||1,s=this.transitionOptions){return new this.Transitioner(i.isNumber(t)?this.slides[t]:t,i.isNumber(e)?this.slides[e]:e,n*(i.isRtl?-1:1),s)}}};function de(t,e){return t==="next"?1:t==="previous"||t<e?-1:1}function ce(t){return .5*t+300}var le={mixins:[he],props:{animation:String},data:{animation:"slide",clsActivated:"uk-transition-active",Animations:tt,Transitioner:Jt},computed:{animation({animation:t,Animations:e}){return{...e[t]||e.slide,name:t}},transitionOptions(){return{animation:this.animation}}},observe:R(),events:{itemshow({target:t}){i.addClass(t,this.clsActive)},itemshown({target:t}){i.addClass(t,this.clsActivated)},itemhidden({target:t}){i.removeClass(t,this.clsActive,this.clsActivated)}}},fe={observe:lt({target:({slides:t})=>t,targets:t=>t.getAdjacentSlides()}),methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}},ue={...tt,fade:{show(){return[{opacity:0,zIndex:0},{zIndex:-1}]},percent(t){return 1-i.css(t,"opacity")},translate(t){return[{opacity:1-t,zIndex:0},{zIndex:-1}]}},scale:{show(){return[{opacity:0,transform:rt(1+.5),zIndex:0},{zIndex:-1}]},percent(t){return 1-i.css(t,"opacity")},translate(t){return[{opacity:1-t,transform:rt(1+.5*t),zIndex:0},{zIndex:-1}]}},pull:{show(t){return t<0?[{transform:f(30),zIndex:-1},{transform:f(),zIndex:0}]:[{transform:f(-100),zIndex:0},{transform:f(),zIndex:-1}]},percent(t,e,n){return n<0?1-y(e):y(t)},translate(t,e){return e<0?[{transform:f(30*t),zIndex:-1},{transform:f(-100*(1-t)),zIndex:0}]:[{transform:f(-t*100),zIndex:0},{transform:f(30*(1-t)),zIndex:-1}]}},push:{show(t){return t<0?[{transform:f(100),zIndex:0},{transform:f(),zIndex:-1}]:[{transform:f(-30),zIndex:-1},{transform:f(),zIndex:0}]},percent(t,e,n){return n>0?1-y(e):y(t)},translate(t,e){return e<0?[{transform:f(t*100),zIndex:0},{transform:f(-30*(1-t)),zIndex:-1}]:[{transform:f(-30*t),zIndex:-1},{transform:f(100*(1-t)),zIndex:0}]}}};function rt(t){return`scale3d(${t}, ${t}, 1)`}var at={mixins:[w,le,Xt,Qt,fe],props:{ratio:String,minHeight:String,maxHeight:String},data:{ratio:"16:9",minHeight:void 0,maxHeight:void 0,selList:".uk-slideshow-items",attrItem:"uk-slideshow-item",selNav:".uk-slideshow-nav",Animations:ue},watch:{list(t){i.css(t,{aspectRatio:this.ratio?this.ratio.replace(":","/"):void 0,minHeight:this.minHeight,maxHeight:this.maxHeight,width:"100%"})}},methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}};return typeof window<"u"&&window.UIkit&&window.UIkit.component("slideshow",at),at})); assets/uikit/dist/js/components/countdown.js000064400000006455151666572350015347 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) : typeof define === 'function' && define.amd ? define('uikitcountdown', ['uikit-util'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitCountdown = factory(global.UIkit.util)); })(this, (function (uikitUtil) { 'use strict'; var Class = { connected() { uikitUtil.addClass(this.$el, this.$options.id); } }; const units = ["days", "hours", "minutes", "seconds"]; var Component = { mixins: [Class], props: { date: String, clsWrapper: String, role: String, reload: Boolean }, data: { date: "", clsWrapper: ".uk-countdown-%unit%", role: "timer", reload: false }, connected() { this.$el.role = this.role; this.date = uikitUtil.toFloat(Date.parse(this.$props.date)); this.started = this.end = false; this.start(); }, disconnected() { this.stop(); }, events: { name: "visibilitychange", el: () => document, handler() { if (document.hidden) { this.stop(); } else { this.start(); } } }, methods: { start() { this.stop(); this.update(); }, stop() { if (this.timer) { clearInterval(this.timer); uikitUtil.trigger(this.$el, "countdownstop"); this.timer = null; } }, update() { const timespan = getTimeSpan(this.date); if (!timespan.total) { this.stop(); if (!this.end) { uikitUtil.trigger(this.$el, "countdownend"); this.end = true; if (this.reload && this.started) { window.location.reload(); } } } else if (!this.timer) { this.started = true; this.timer = setInterval(this.update, 1e3); uikitUtil.trigger(this.$el, "countdownstart"); } for (const unit of units) { const el = uikitUtil.$(this.clsWrapper.replace("%unit%", unit), this.$el); if (!el) { continue; } let digits = Math.trunc(timespan[unit]).toString().padStart(2, "0"); if (el.textContent !== digits) { digits = digits.split(""); if (digits.length !== el.children.length) { uikitUtil.html(el, digits.map(() => "<span></span>").join("")); } digits.forEach((digit, i) => el.children[i].textContent = digit); } } } } }; function getTimeSpan(date) { const total = Math.max(0, date - Date.now()) / 1e3; return { total, seconds: total % 60, minutes: total / 60 % 60, hours: total / 60 / 60 % 24, days: total / 60 / 60 / 24 }; } if (typeof window !== "undefined" && window.UIkit) { window.UIkit.component("countdown", Component); } return Component; })); assets/uikit/dist/js/uikit-icons-craft.min.js000064400000213051151666572350015247 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitcraft",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitCraft=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.3" points="1 3.5 6 8.5 11 3.5"/></svg>',"nav-parent-icon-large":'<svg width="18" height="18" viewBox="0 0 18 18"><polyline fill="none" stroke="#000" stroke-width="2.5" points="1.097 5.048 9 12.952 16.903 5.048"/></svg>',"navbar-parent-icon":'<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.3" points="1 3.5 6 8.5 11 3.5"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1,11 6,6 1,1"/></svg>',"slidenav-next-large":'<svg width="12" height="20" viewBox="0 0 12 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1,19 10,10 1,1"/></svg>',"slidenav-previous":'<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="6,1 1,6 6,11"/></svg>',"slidenav-previous-large":'<svg width="12" height="20" viewBox="0 0 12 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="11,1 2,10 11,19"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-morgan-consulting.min.js000064400000212533151666572350017622 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitmorgan_consulting",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitMorgan_consulting=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="18" height="16" viewBox="0 0 18 16"><polygon points="17.41,8 9.71,15.71 8.29,14.29 13.59,9 0,9 0,7 13.59,7 8.29,1.71 9.71,0.29"/></svg>',"slidenav-next-large":'<svg width="27" height="24" viewBox="0 0 27 24"><polygon points="0,11 22.59,11 13.29,1.71 14.71,0.29 26.41,12 14.71,23.71 13.29,22.29 22.59,13 0,13"/></svg>',"slidenav-previous":'<svg width="18" height="16" viewBox="0 0 18 16"><polygon points="18,9 4.41,9 9.71,14.29 8.29,15.71 0.59,8 8.29,0.29 9.71,1.71 4.41,7 18,7"/></svg>',"slidenav-previous-large":'<svg width="27" height="24" viewBox="0 0 27 24"><polygon points="27,13 4.41,13 13.71,22.29 12.29,23.71 0.59,12 12.29,0.29 13.71,1.71 4.41,11 27,11"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="15" height="22" viewBox="0 0 15 20"><polyline fill="none" stroke="#0000" stroke-width="1.1" points="1,8 7.5,1.5 14,8"/><rect width="1" height="20" fill="0" x="7" y="2"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-circle.min.js000064400000213065151666572350015416 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitcircle",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitCircle=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',marker:'<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" x1="7" y1="1" x2="7" y2="13"/><line fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" x1="1" y1="7" x2="13" y2="7"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',"nav-parent-icon-large":'<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="2" points="1 4 7 10 13 4"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="10" height="16" viewBox="0 0 10 16"><polyline fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" points="2 14 8 8 2 2"/></svg>',"slidenav-next-large":'<svg width="12" height="18" viewBox="0 0 12 18"><polyline fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" points="1 17 9 9 1 1"/></svg>',"slidenav-previous":'<svg width="10" height="16" viewBox="0 0 10 16"><polyline fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" points="8 14 2 8 8 2"/></svg>',"slidenav-previous-large":'<svg width="12" height="18" viewBox="0 0 12 18"><polyline fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" points="10 17 2 9 10 1"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/dist/js/uikit-icons-joline.min.js000064400000213055151666572350015434 0ustar00/*! UIkit 3.23.13 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define("uikitjoline",t):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitJoline=t())})(this,(function(){"use strict";function e(t){e.installed||t.icon.add({"500px":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z"/><path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z"/><path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z"/><path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z"/></svg>',album:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="5" y="2" width="10" height="1"/><rect x="3" y="4" width="14" height="1"/><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"/></svg>',android:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z"/></svg>',"android-robot":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z"/><path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z"/><path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z"/></svg>',apple:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z"/></svg>',"arrow-down":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48"/><polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12"/></svg>',"arrow-down-arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10"/><polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10"/><polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16"/></svg>',"arrow-up":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53"/><polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8"/></svg>',"arrow-up-right":'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53"/><polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5"/></svg>',bag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5"/><polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5"/></svg>',ban:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5"/></svg>',behance:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z"/><path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z"/><rect x="13" y="4" width="5" height="1.4"/></svg>',bell:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z"/><path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16"/></svg>',bluesky:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z"/></svg>',bold:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z"/></svg>',bookmark:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5"/></svg>',calendar:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z"/><rect width="1" height="3" x="6" y="2"/><rect width="1" height="3" x="13" y="2"/></svg>',camera:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8"/><path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z"/></svg>',cart:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="7.3" cy="17.3" r="1.4"/><circle cx="13.3" cy="17.3" r="1.4"/><polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5"/></svg>',check:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4"/></svg>',"chevron-double-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6"/></svg>',"chevron-double-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14"/><polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14"/></svg>',"chevron-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',close:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"/><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"/></svg>',"close-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18"/><line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18"/></svg>',"cloud-download":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.5,18.17v-10"/><polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66"/></svg>',"cloud-upload":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3"/><path fill="none" stroke="#000" d="M9.51,9.34v9"/><polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85"/></svg>',code:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16"/></svg>',cog:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31"/><path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z"/></svg>',comment:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z"/></svg>',commenting:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5"/><circle cx="10" cy="8" r="1"/><circle cx="6" cy="8" r="1"/><circle cx="14" cy="8" r="1"/></svg>',comments:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13"/><path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z"/></svg>',copy:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"/><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"/></svg>',"credit-card":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12"/><rect x="1" y="7" width="18" height="3"/></svg>',crosshairs:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="7.5"/><line fill="none" stroke="#000" x1="10" x2="10" y2="8"/><line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20"/><line fill="none" stroke="#000" y1="10" x2="8" y2="10"/><line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10"/></svg>',database:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14"/><path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11"/><path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25"/><path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64"/></svg>',desktop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="8" y="15" width="1" height="2"/><rect x="11" y="15" width="1" height="2"/><rect x="5" y="16" width="10" height="1"/><rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11"/></svg>',discord:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z"/></svg>',download:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09"/><polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62"/><line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',dribbble:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5"/><path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6"/><path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4"/><circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9"/></svg>',etsy:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z"/></svg>',expand:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52"/><polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03"/><path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52"/><polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97"/></svg>',eye:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="3.45"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/></svg>',"eye-slash":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44"/><path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z"/><line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5"/></svg>',facebook:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z"/></svg>',file:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17"/></svg>',"file-edit":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z"/><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5"/></svg>',"file-pdf":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z"/></svg>',"file-text":'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5"/><line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5"/><line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5"/></svg>',flickr:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="5.5" cy="9.5" r="3.5"/><circle cx="14.5" cy="9.5" r="3.5"/></svg>',folder:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5"/></svg>',forward:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z"/></svg>',foursquare:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z"/></svg>',future:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10"/><rect x="9" y="4" width="1" height="7"/><path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1"/></svg>',"git-branch":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5"/><circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79"/><circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79"/></svg>',"git-fork":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="6" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="14" cy="3" r="1.79"/><circle fill="none" stroke="#000" cx="10" cy="17" r="1.79"/><path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99"/></svg>',github:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z"/></svg>',"github-alt":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z"/></svg>',gitter:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3.5" y="1" width="1.531" height="11.471"/><rect x="7.324" y="4.059" width="1.529" height="15.294"/><rect x="11.148" y="4.059" width="1.527" height="15.294"/><rect x="14.971" y="4.059" width="1.529" height="8.412"/></svg>',google:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z"/></svg>',grid:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="2" width="3" height="3"/><rect x="8" y="2" width="3" height="3"/><rect x="14" y="2" width="3" height="3"/><rect x="2" y="8" width="3" height="3"/><rect x="8" y="8" width="3" height="3"/><rect x="14" y="8" width="3" height="3"/><rect x="2" y="14" width="3" height="3"/><rect x="8" y="14" width="3" height="3"/><rect x="14" y="14" width="3" height="3"/></svg>',happy:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="13" cy="7" r="1"/><circle cx="7" cy="7" r="1"/><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5"/><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4"/></svg>',hashtag:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z"/></svg>',heart:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z"/></svg>',history:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2"/><path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="16.1" cy="6.1" r="1.1"/><rect fill="none" stroke="#000" x=".5" y="2.5" width="19" height="15"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14"/><polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14"/></svg>',info:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',instagram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z"/><circle cx="14.87" cy="5.26" r="1.09"/><path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z"/></svg>',italic:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z"/></svg>',joomla:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z"/><path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8"/><path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8"/><path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7"/></svg>',laptop:'<svg width="20" height="20" viewBox="0 0 20 20"><rect y="16" width="20" height="1"/><rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10"/></svg>',lifesaver:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" cx="10" cy="10" r="9"/><circle fill="none" stroke="#000" cx="10" cy="10" r="5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33"/><line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67"/><line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83"/><line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11"/><line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39"/><line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61"/><line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89"/></svg>',link:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"/><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"/></svg>',"link-external":'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5"/><line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99"/><polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5"/></svg>',linkedin:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z"/><path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z"/></svg>',list:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z"/><circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3"/></svg>',lock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/><path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/></svg>',mail:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5"/><path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z"/></svg>',mastodon:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z"/></svg>',menu:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="2" y="4" width="16" height="1"/><rect x="2" y="9" width="16" height="1"/><rect x="2" y="14" width="16" height="1"/></svg>',microphone:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5"/><line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z"/><path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6"/></svg>',microsoft:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58"/></svg>',minus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect height="1" width="18" y="9" x="1"/></svg>',"minus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="4,5 1,5 1,9 2,9 2,6 4,6"/><polygon points="1,16 2,16 2,18 4,18 4,19 1,19"/><polygon points="14,16 14,19 11,19 11,18 13,18 13,16"/><rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13"/><rect x="1" y="11" width="1" height="3"/><rect x="6" y="18" width="3" height="1"/></svg>',nut:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3"/><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5"/></svg>',"pagination-next":'<svg width="10" height="10" viewBox="0 0 10 10"><polyline fill="none" stroke="#000" stroke-width="1.2" points="3.251,0.499 6.751,3.999 3.251,7.499"/></svg>',"pagination-previous":'<svg width="10" height="10" viewBox="0 0 10 10"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6.75,7.5 3.25,4 6.75,0.5"/></svg>',"paint-bucket":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28"/><path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z"/><line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5"/><polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55"/></svg>',pencil:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z"/><path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148"/></svg>',phone:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z"/><circle cx="10.5" cy="16.5" r=".8"/></svg>',"phone-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z"/><circle cx="3.8" cy="10.5" r=".8"/></svg>',pinterest:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1"/></svg>',play:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15"/></svg>',"play-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/></svg>',plus:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="9" y="1" width="1" height="17"/><rect x="1" y="9" width="17" height="1"/></svg>',"plus-circle":'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9"/><line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14"/><line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5"/></svg>',print:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5"/><polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5"/><rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5"/><rect width="8" height="1" x="6" y="13"/><rect width="8" height="1" x="6" y="15"/></svg>',pull:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2"/><polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5"/><polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21"/></svg>',push:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1"/><polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5"/><polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88"/></svg>',question:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><circle cx="9.99" cy="14.24" r="1.05"/><path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35"/></svg>',"quote-right":'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z"/><path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z"/></svg>',receiver:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611"/></svg>',reddit:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z"/><path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z"/><path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z"/><path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z"/></svg>',refresh:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5"/><polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9"/></svg>',reply:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z"/></svg>',rss:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="3.12" cy="16.8" r="1.85"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5"/></svg>',search:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',server:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="3" y="3" width="1" height="2"/><rect x="5" y="3" width="1" height="2"/><rect x="7" y="3" width="1" height="2"/><rect x="16" y="3" width="1" height="1"/><rect x="16" y="10" width="1" height="1"/><circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4"/><rect x="3" y="10" width="1" height="2"/><rect x="5" y="10" width="1" height="2"/><rect x="9.5" y="14" width="1" height="2"/><rect x="3" y="17" width="6" height="1"/><rect x="11" y="17" width="6" height="1"/><rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5"/><rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15" y="9" width="3" height="1"/><rect x="1" y="15" width="3" height="1"/><rect x="10" y="15" width="8" height="1"/></svg>',shrink:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6"/><polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99"/><path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6"/><polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4"/></svg>',"sign-in":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2"/><line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5"/><polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67"/></svg>',"sign-out":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2"/><line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49"/><polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66"/></svg>',signal:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z"/></svg>',"slidenav-next":'<svg width="10" height="14" viewBox="0 0 10 14"><polyline fill="none" stroke="#000" stroke-width="2" points="2,13 8,7 2,1"/></svg>',"slidenav-next-large":'<svg width="21" height="33" viewBox="0 0 21 33"><polyline fill="none" stroke="#000" stroke-width="3" points="3,2.292 17.777,16.5 3,30.708"/></svg>',"slidenav-previous":'<svg width="9" height="14" viewBox="0 0 9 14"><polyline fill="none" stroke="#000" stroke-width="2" points="7.5,1 1.5,7 7.5,13"/></svg>',"slidenav-previous-large":'<svg width="21" height="33" viewBox="0 0 21 33"><polyline fill="none" stroke="#000" stroke-width="3" points="17.777,2.292 3,16.5 17.777,30.708"/></svg>',social:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3"/></svg>',sorting:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38"/><polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76"/><line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62"/><polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24"/></svg>',soundcloud:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z"/><rect x="6" y="6.5" width="1.5" height="8.5"/><rect x="3" y="8" width="1.5" height="7"/><rect y="10" width="1.5" height="5"/></svg>',star:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27"/></svg>',strikethrough:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z"/><rect x="3" y="10" width="15" height="1"/></svg>',table:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="1" y="3" width="18" height="1"/><rect x="1" y="7" width="18" height="1"/><rect x="1" y="11" width="18" height="1"/><rect x="1" y="15" width="18" height="1"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z"/><circle cx="10.5" cy="16.3" r=".8"/></svg>',"tablet-landscape":'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tag:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z"/><circle cx="14" cy="6" r="1"/></svg>',telegram:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z"/></svg>',threads:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z"/></svg>',thumbnails:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5"/><rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5"/><rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5"/></svg>',tiktok:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z"/></svg>',totop:'<svg width="8" height="22" viewBox="0 0 8 22"><polygon points="8,5 4,0 0,5 3.497,5 3.497,22 4.504,22 4.504,5"/></svg>',trash:'<svg width="20" height="20" viewBox="0 0 20 20"><polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3"/><polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4"/><rect x="8" y="7" width="1" height="9"/><rect x="11" y="7" width="1" height="9"/><rect x="2" y="3" width="16" height="1"/></svg>',"triangle-down":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 7 15 7 10 12"/></svg>',"triangle-left":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="12 5 7 10 12 15"/></svg>',"triangle-right":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="8 5 13 10 8 15"/></svg>',"triangle-up":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="5 13 10 8 15 13"/></svg>',tripadvisor:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z"/></svg>',tumblr:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z"/></svg>',tv:'<svg width="20" height="20" viewBox="0 0 20 20"><rect x="7" y="16" width="6" height="1"/><rect fill="none" stroke="#000" x=".5" y="3.5" width="19" height="11"/></svg>',twitch:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z"/><rect x="12.98" y="4.55" width="1.29" height="3.88"/><rect x="9.43" y="4.55" width="1.29" height="3.88"/></svg>',twitter:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74"/></svg>',uikit:'<svg width="20" height="20" viewBox="0 0 20 20"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9"/></svg>',upload:'<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17"/><polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64"/><line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5"/></svg>',user:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/></svg>',users:'<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"/><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"/><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"/></svg>',"video-camera":'<svg width="20" height="20" viewBox="0 0 20 20"><polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9"/></svg>',vimeo:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z"/></svg>',warning:'<svg width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="14" r="1"/><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z"/></svg>',whatsapp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9"/></svg>',wordpress:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z"/></svg>',world:'<svg width="20" height="20" viewBox="0 0 20 20"><path fill="none" stroke="#000" d="M1,10.5 L19,10.5"/><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5"/><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5"/><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z"/><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9"/></svg>',x:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z"/></svg>',xing:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z"/><path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z"/></svg>',yelp:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z"/></svg>',yootheme:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z"/></svg>',youtube:'<svg width="20" height="20" viewBox="0 0 20 20"><path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z"/></svg>'})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(e),e})); assets/uikit/src/less/uikit.less000064400000000062151666572350012763 0ustar00// // Core // @import "components/_import.less"; assets/uikit/src/less/theme/tile.less000064400000001430151666572350013675 0ustar00// // Component: Tile // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-tile() {} // Style modifiers // ======================================================================== .hook-tile-default() {} .hook-tile-default-hover() {} // // Muted // .hook-tile-muted() {} .hook-tile-muted-hover() {} // // Primary // .hook-tile-primary() {} .hook-tile-primary-hover() {} // // Secondary // .hook-tile-secondary() {} .hook-tile-secondary-hover() {} // Miscellaneous // ======================================================================== .hook-tile-misc() {} assets/uikit/src/less/theme/container.less000064400000000477151666572350014734 0ustar00// // Component: Container // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-container-misc() {} assets/uikit/src/less/theme/margin.less000064400000000471151666572360014222 0ustar00// // Component: Margin // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-margin-misc() {} assets/uikit/src/less/theme/section.less000064400000001173151666572360014411 0ustar00// // Component: Section // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-section() {} // Style modifiers // ======================================================================== .hook-section-default() {} .hook-section-muted() {} .hook-section-primary() {} .hook-section-secondary() {} // Miscellaneous // ======================================================================== .hook-section-misc() {} assets/uikit/src/less/theme/nav.less000064400000007265151666572360013541 0ustar00// // Component: Nav // // ======================================================================== // Variables // ======================================================================== @nav-default-font-size: @global-small-font-size; @nav-default-subtitle-font-size: 12px; // // New // @nav-secondary-margin-top: 0; @nav-secondary-item-padding-horizontal: 10px; @nav-secondary-item-padding-vertical: 10px; @nav-secondary-item-hover-background: @global-muted-background; @nav-secondary-item-active-background: @global-muted-background; // Sublists // ======================================================================== .hook-nav-sub() {} // Header // ======================================================================== .hook-nav-header() {} // Divider // ======================================================================== .hook-nav-divider() {} // Default style modifier // ======================================================================== .hook-nav-default() {} .hook-nav-default-item() {} .hook-nav-default-item-hover() {} .hook-nav-default-item-active() {} .hook-nav-default-subtitle() {} .hook-nav-default-header() {} .hook-nav-default-divider() {} // Primary style modifier // ======================================================================== .hook-nav-primary() {} .hook-nav-primary-item() {} .hook-nav-primary-item-hover() {} .hook-nav-primary-item-active() {} .hook-nav-primary-subtitle() {} .hook-nav-primary-header() {} .hook-nav-primary-divider() {} // Secondary style modifier // ======================================================================== .hook-nav-secondary() { > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) { margin-top: @nav-secondary-margin-top; } } .hook-nav-secondary-item() { padding: @nav-secondary-item-padding-vertical @nav-secondary-item-padding-horizontal; } .hook-nav-secondary-item-hover() { background-color: @nav-secondary-item-hover-background; } .hook-nav-secondary-item-active() { background-color: @nav-secondary-item-active-background; } .hook-nav-secondary-subtitle() {} .hook-nav-secondary-subtitle-hover() {} .hook-nav-secondary-subtitle-active() {} .hook-nav-secondary-header() {} .hook-nav-secondary-divider() {} // Style modifier // ======================================================================== .hook-nav-dividers() {} // Miscellaneous // ======================================================================== .hook-nav-misc() {} // Inverse // ======================================================================== @inverse-nav-background-item-hover-background: @inverse-global-muted-background; @inverse-nav-background-item-active-background: @inverse-global-muted-background; .hook-inverse-nav-default-item() {} .hook-inverse-nav-default-item-hover() {} .hook-inverse-nav-default-item-active() {} .hook-inverse-nav-default-header() {} .hook-inverse-nav-default-divider() {} .hook-inverse-nav-primary-item() {} .hook-inverse-nav-primary-item-hover() {} .hook-inverse-nav-primary-item-active() {} .hook-inverse-nav-primary-header() {} .hook-inverse-nav-primary-divider() {} .hook-inverse-nav-secondary-item() {} .hook-inverse-nav-secondary-item-hover() { background-color: @inverse-nav-background-item-hover-background; } .hook-inverse-nav-secondary-item-active() { background-color: @inverse-nav-background-item-active-background; } .hook-inverse-nav-secondary-subtitle() {} .hook-inverse-nav-secondary-subtitle-hover() {} .hook-inverse-nav-secondary-subtitle-active() {} .hook-inverse-nav-secondary-header() {} .hook-inverse-nav-secondary-divider() {} .hook-inverse-nav-dividers() {} assets/uikit/src/less/theme/dropdown.less000064400000002513151666572360014600 0ustar00// // Component: Dropdown // // ======================================================================== // Variables // ======================================================================== @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-dropbar-padding-top: 5px; @dropdown-nav-subtitle-font-size: 12px; // // New // @dropdown-nav-font-size: @global-small-font-size; @dropdown-box-shadow: 0 5px 12px rgba(0,0,0,0.15); // Component // ======================================================================== .hook-dropdown() { box-shadow: @dropdown-box-shadow; } // Dropbar modifier // ======================================================================== .hook-dropdown-dropbar() { box-shadow: none; } .hook-dropdown-dropbar-large() {} // Nav // ======================================================================== .hook-dropdown-nav() { font-size: @dropdown-nav-font-size; } .hook-dropdown-nav-item() {} .hook-dropdown-nav-item-hover() {} .hook-dropdown-nav-subtitle() {} .hook-dropdown-nav-header() {} .hook-dropdown-nav-divider() {} // Miscellaneous // ======================================================================== .hook-dropdown-misc() {} assets/uikit/src/less/theme/position.less000064400000000475151666572360014615 0ustar00// // Component: Position // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-position-misc() {} assets/uikit/src/less/theme/_import.less000064400000003213151666572360014413 0ustar00// Base @import "variables.less"; @import "base.less"; // Elements @import "link.less"; @import "heading.less"; @import "divider.less"; @import "list.less"; @import "description-list.less"; @import "table.less"; @import "icon.less"; @import "form-range.less"; @import "form.less"; @import "button.less"; @import "progress.less"; // Layout @import "section.less"; @import "container.less"; @import "tile.less"; @import "card.less"; // Common @import "close.less"; @import "spinner.less"; @import "totop.less"; @import "marker.less"; @import "alert.less"; @import "placeholder.less"; @import "badge.less"; @import "label.less"; @import "overlay.less"; @import "article.less"; @import "comment.less"; @import "search.less"; // JavaScript @import "accordion.less"; @import "drop.less"; @import "dropbar.less"; @import "modal.less"; @import "slider.less"; @import "sticky.less"; @import "offcanvas.less"; @import "leader.less"; @import "notification.less"; @import "tooltip.less"; @import "sortable.less"; @import "countdown.less"; @import "grid.less"; // Navs @import "nav.less"; @import "navbar.less"; @import "subnav.less"; @import "breadcrumb.less"; @import "pagination.less"; @import "tab.less"; @import "slidenav.less"; @import "dotnav.less"; @import "thumbnav.less"; @import "iconnav.less"; @import "dropdown.less"; @import "lightbox.less"; // Utilities @import "animation.less"; @import "width.less"; @import "height.less"; @import "text.less"; @import "column.less"; @import "background.less"; @import "align.less"; @import "utility.less"; @import "margin.less"; @import "padding.less"; @import "position.less"; @import "transition.less"; @import "inverse.less"; assets/uikit/src/less/theme/progress.less000064400000001101151666572360014600 0ustar00// // Component: Progress // // ======================================================================== // Variables // ======================================================================== @progress-border-radius: 500px; // Component // ======================================================================== .hook-progress() { border-radius: @progress-border-radius; overflow: hidden; } .hook-progress-bar() {} // Miscellaneous // ======================================================================== .hook-progress-misc() {} assets/uikit/src/less/theme/inverse.less000064400000000462151666572360014420 0ustar00// // Component: Inverse // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-inverse() {} assets/uikit/src/less/theme/heading.less000064400000002443151666572360014345 0ustar00// // Component: Heading // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-heading-small() {} .hook-heading-medium() {} .hook-heading-large() {} .hook-heading-xlarge() {} .hook-heading-2xlarge() {} .hook-heading-3xlarge() {} // Divider // ======================================================================== .hook-heading-divider() {} // Bullet // ======================================================================== .hook-heading-bullet() {} // Line // ======================================================================== .hook-heading-line() {} // Miscellaneous // ======================================================================== .hook-heading-misc() {} // Inverse // ======================================================================== .hook-inverse-heading-small() {} .hook-inverse-heading-medium() {} .hook-inverse-heading-large() {} .hook-inverse-heading-xlarge() {} .hook-inverse-heading-2xlarge() {} .hook-inverse-heading-3xlarge() {} .hook-inverse-heading-divider() {} .hook-inverse-heading-bullet() {} .hook-inverse-heading-line() {} assets/uikit/src/less/theme/totop.less000064400000001253151666572360014111 0ustar00// // Component: Totop // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-totop() { transition: color 0.1s ease-in-out; } .hook-totop-hover() {} .hook-totop-active() {} // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== .hook-inverse-totop() {} .hook-inverse-totop-hover() {} .hook-inverse-totop-active() {} assets/uikit/src/less/theme/accordion.less000064400000004063151666572360014707 0ustar00// // Component: Accordion // // ======================================================================== // Variables // ======================================================================== // // New // @accordion-icon-margin-left: 10px; @accordion-icon-color: @global-color; @internal-accordion-open-image: "../../images/backgrounds/accordion-open.svg"; @internal-accordion-close-image: "../../images/backgrounds/accordion-close.svg"; // Component // ======================================================================== .hook-accordion() {} // Item // ======================================================================== .hook-accordion-item() {} // Title // ======================================================================== .hook-accordion-title() { overflow: hidden; &::before { content: ""; width: (@accordion-title-line-height * 1em); height: (@accordion-title-line-height * 1em); margin-left: @accordion-icon-margin-left; float: right; .svg-fill(@internal-accordion-close-image, "#000", @accordion-icon-color); background-repeat: no-repeat; background-position: 50% 50%; } .uk-open > &::before { .svg-fill(@internal-accordion-open-image, "#000", @accordion-icon-color); } } .hook-accordion-title-hover() {} // Content // ======================================================================== .hook-accordion-content() {} // Miscellaneous // ======================================================================== .hook-accordion-misc() {} // Inverse // ======================================================================== .hook-inverse-accordion-item() {} .hook-inverse-accordion-title() {} .hook-inverse-accordion-title-hover() {} .hook-inverse() { .uk-accordion-title::before { .svg-fill(@internal-accordion-close-image, "#000", @inverse-global-color); } .uk-open > .uk-accordion-title::before { .svg-fill(@internal-accordion-open-image, "#000", @inverse-global-color); } } assets/uikit/src/less/theme/icon.less000064400000001730151666572360013674 0ustar00// // Component: Icon // // ======================================================================== // Variables // ======================================================================== // Style modifiers // ======================================================================== // // Link // .hook-icon-link() {} .hook-icon-link-hover() {} .hook-icon-link-active() {} // // Button // .hook-icon-button() { transition: 0.1s ease-in-out; transition-property: color, background-color; } .hook-icon-button-hover() {} .hook-icon-button-active() {} // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== .hook-inverse-icon-link() {} .hook-inverse-icon-link-hover() {} .hook-inverse-icon-link-active() {} .hook-inverse-icon-button() {} .hook-inverse-icon-button-hover() {} .hook-inverse-icon-button-active() {} assets/uikit/src/less/theme/article.less000064400000002247151666572360014373 0ustar00// // Component: Article // // ======================================================================== // Variables // ======================================================================== // // New // @article-meta-link-color: @article-meta-color; @article-meta-link-hover-color: @global-color; // Component // ======================================================================== .hook-article() {} // Adjacent sibling // ======================================================================== .hook-article-adjacent() {} // Title // ======================================================================== .hook-article-title() {} // Meta // ======================================================================== .hook-article-meta() { a { color: @article-meta-link-color; } a:hover { color: @article-meta-link-hover-color; text-decoration: none; } } // Miscellaneous // ======================================================================== .hook-article-misc() {} // Inverse // ======================================================================== .hook-inverse-article-meta() {} assets/uikit/src/less/theme/offcanvas.less000064400000001231151666572360014706 0ustar00// // Component: Off-canvas // // ======================================================================== // Variables // ======================================================================== // Bar // ======================================================================== .hook-offcanvas-bar() {} // Close // ======================================================================== .hook-offcanvas-close() {} // Overlay // ======================================================================== .hook-offcanvas-overlay() {} // Miscellaneous // ======================================================================== .hook-offcanvas-misc() {} assets/uikit/src/less/theme/form.less000064400000010603151666572360013706 0ustar00// // Component: Form // // ======================================================================== // Variables // ======================================================================== @form-line-height: @form-height - (2* @form-border-width); @form-background: @global-background; @form-focus-background: @global-background; @form-small-line-height: @form-small-height - (2* @form-border-width); @form-large-line-height: @form-large-height - (2* @form-border-width); @form-radio-background: transparent; @form-stacked-margin-bottom: 5px; // // New // @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-primary-background; @form-disabled-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @global-border; @form-blank-focus-border-style: solid; @form-radio-border-width: @global-border-width; @form-radio-border: darken(@global-border, 10%); @form-radio-focus-border: @global-primary-background; @form-radio-checked-border: transparent; @form-radio-disabled-border: @global-border; @form-label-color: @global-emphasis-color; @form-label-font-size: @global-small-font-size; // Component // ======================================================================== .hook-form() { border: @form-border-width solid @form-border; transition: 0.2s ease-in-out; transition-property: color, background-color, border; } .hook-form-single-line() {} .hook-form-multi-line() {} .hook-form-focus() { border-color: @form-focus-border; } .hook-form-disabled() { border-color: @form-disabled-border; } // Style modifiers // ======================================================================== .hook-form-danger() { border-color: @form-danger-border; } .hook-form-success() { border-color: @form-success-border; } .hook-form-blank() { border-color: transparent; } .hook-form-blank-focus() { border-color: @form-blank-focus-border; border-style: @form-blank-focus-border-style; } // Radio and checkbox // ======================================================================== .hook-form-radio() { border: @form-radio-border-width solid @form-radio-border; transition: 0.2s ease-in-out; transition-property: background-color, border; } .hook-form-radio-focus() { border-color: @form-radio-focus-border; } .hook-form-radio-checked() { border-color: @form-radio-checked-border; } .hook-form-radio-checked-focus() {} .hook-form-radio-disabled() { border-color: @form-radio-disabled-border; } // Legend // ======================================================================== .hook-form-legend() {} // Label // ======================================================================== .hook-form-label() { color: @form-label-color; font-size: @form-label-font-size; } // Layout // ======================================================================== .hook-form-stacked-label() {} .hook-form-horizontal-label() {} // Icon // ======================================================================== .hook-form-icon() {} // Miscellaneous // ======================================================================== .hook-form-misc() {} // Inverse // ======================================================================== @inverse-form-label-color: @inverse-global-emphasis-color; .hook-inverse-form() { border-color: @inverse-global-border; } .hook-inverse-form-focus() { border-color: @inverse-global-color; } .hook-inverse-form-radio() { border-color: @inverse-global-border; } .hook-inverse-form-radio-focus() { border-color: @inverse-global-color; } .hook-inverse-form-radio-checked() { border-color: @inverse-global-primary-background; } .hook-inverse-form-radio-checked-focus() {} .hook-inverse-form-label() { color: @inverse-form-label-color; } .hook-inverse-form-icon() {} assets/uikit/src/less/theme/utility.less000064400000001773151666572360014456 0ustar00// // Component: Utility // // ======================================================================== // Variables // ======================================================================== // Panel // ======================================================================== .hook-panel-scrollable() {} // Box-shadow bottom // ======================================================================== .hook-box-shadow-bottom() {} // Drop cap // ======================================================================== .hook-dropcap() { // Prevent line wrap margin-bottom: -2px; } // Logo // ======================================================================== .hook-logo() {} .hook-logo-hover() {} // Miscellaneous // ======================================================================== .hook-utility-misc() {} // Inverse // ======================================================================== .hook-inverse-dropcap() {} .hook-inverse-logo() {} .hook-inverse-logo-hover() {} assets/uikit/src/less/theme/tooltip.less000064400000000652151666572360014440 0ustar00// // Component: Tooltip // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-tooltip() {} // Miscellaneous // ======================================================================== .hook-tooltip-misc() {} assets/uikit/src/less/theme/background.less000064400000000501151666572360015056 0ustar00// // Component: Background // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-background-misc() {} assets/uikit/src/less/theme/animation.less000064400000000477151666572360014732 0ustar00// // Component: Animation // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-animation-misc() {} assets/uikit/src/less/theme/form-range.less000064400000003032151666572360014776 0ustar00// // Component: Form Range // // ======================================================================== // Variables // ======================================================================== @form-range-thumb-background: @global-background; // // New // @form-range-track-border-radius: 500px; @form-range-thumb-border-width: @global-border-width; @form-range-thumb-border: darken(@global-border, 10%); // Component // ======================================================================== .hook-form-range() {} // Track // ======================================================================== .hook-form-range-track() { border-radius: @form-range-track-border-radius; } .hook-form-range-track-focus() {} // Thumb // ======================================================================== .hook-form-range-thumb() { border: @form-range-thumb-border-width solid @form-range-thumb-border; } // Miscellaneous // ======================================================================== .hook-form-range-misc() {} // Inverse // ======================================================================== @inverse-form-range-thumb-background: darken(fadein(@inverse-global-color, 100%), 50%); @inverse-form-range-thumb-border: darken(fadein(@inverse-global-border, 100%), 10%); .hook-inverse-form-range-track() {} .hook-inverse-form-range-track-focus() {} .hook-inverse-form-range-thumb() { border-color: @inverse-form-range-thumb-border; } assets/uikit/src/less/theme/dotnav.less000064400000003251151666572360014237 0ustar00// // Component: Dotnav // // ======================================================================== // Variables // ======================================================================== @dotnav-item-background: transparent; // // New // @dotnav-item-border-width: 1px; @dotnav-item-border: fade(@global-color, 40%); @dotnav-item-hover-border: transparent; @dotnav-item-onclick-border: transparent; @dotnav-item-active-border: transparent; // Component // ======================================================================== .hook-dotnav() {} .hook-dotnav-item() { border: @dotnav-item-border-width solid @dotnav-item-border; transition: 0.2s ease-in-out; transition-property: background-color, border-color; } .hook-dotnav-item-hover() { border-color: @dotnav-item-hover-border; } .hook-dotnav-item-onclick() { border-color: @dotnav-item-onclick-border; } .hook-dotnav-item-active() { border-color: @dotnav-item-active-border; } // Miscellaneous // ======================================================================== .hook-dotnav-misc() {} // Inverse // ======================================================================== @inverse-dotnav-item-background: transparent; .hook-inverse-dotnav() {} .hook-inverse-dotnav-item() { border-color: fade(@inverse-global-color, 90%); } .hook-inverse-dotnav-item-hover() { border-color: transparent; } .hook-inverse-dotnav-item-onclick() { border-color: transparent; } .hook-inverse-dotnav-item-active() { border-color: transparent; } assets/uikit/src/less/theme/navbar.less000064400000010040151666572360014207 0ustar00// // Component: Navbar // // ======================================================================== // Variables // ======================================================================== @navbar-gap: 15px; @navbar-nav-gap: 15px; @navbar-nav-item-padding-horizontal: 0; @navbar-nav-item-font-size: @global-small-font-size; @navbar-item-padding-horizontal: 0; @navbar-dropdown-margin: 15px; @navbar-dropdown-padding: 25px; @navbar-dropdown-background: @global-background; @navbar-dropdown-nav-subtitle-font-size: 12px; // // New // @navbar-gap-m: 30px; @navbar-nav-gap-m: 30px; @navbar-nav-item-text-transform: uppercase; @navbar-dropdown-nav-font-size: @global-small-font-size; @navbar-dropdown-box-shadow: 0 5px 12px rgba(0,0,0,0.15); // Component // ======================================================================== .hook-navbar() {} // Container // ======================================================================== .hook-navbar-container() {} // Nav // ======================================================================== .hook-navbar-nav-item() { text-transform: @navbar-nav-item-text-transform; transition: 0.1s ease-in-out; transition-property: color, background-color; } .hook-navbar-nav-item-hover() {} .hook-navbar-nav-item-onclick() {} .hook-navbar-nav-item-active() {} // Item // ======================================================================== .hook-navbar-item() {} // Toggle // ======================================================================== .hook-navbar-toggle() {} .hook-navbar-toggle-hover() {} .hook-navbar-toggle-icon() {} .hook-navbar-toggle-icon-hover() {} // Subtitle // ======================================================================== .hook-navbar-subtitle() {} // Style modifiers // ======================================================================== .hook-navbar-primary() {} .hook-navbar-transparent() {} .hook-navbar-sticky() {} // Dropdown // ======================================================================== .hook-navbar-dropdown() { box-shadow: @navbar-dropdown-box-shadow; } .hook-navbar-dropdown-large() {} .hook-navbar-dropdown-dropbar() { box-shadow: none; } .hook-navbar-dropdown-dropbar-large() {} // Dropdown nav // ======================================================================== .hook-navbar-dropdown-nav() { font-size: @navbar-dropdown-nav-font-size; } .hook-navbar-dropdown-nav-item() {} .hook-navbar-dropdown-nav-item-hover() {} .hook-navbar-dropdown-nav-subtitle() {} .hook-navbar-dropdown-nav-header() {} .hook-navbar-dropdown-nav-divider() {} // Dropbar // ======================================================================== .hook-navbar-dropbar() {} // Miscellaneous // ======================================================================== .hook-navbar-misc() { .uk-navbar-container { transition: 0.1s ease-in-out; transition-property: background-color; } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-navbar-left, .uk-navbar-right, [class*="uk-navbar-center"] { gap: @navbar-gap-m; } .uk-navbar-center-left { right: ~'calc(100% + @{navbar-gap-m})'; } .uk-navbar-center-right { left: ~'calc(100% + @{navbar-gap-m})'; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-navbar-nav { gap: @navbar-nav-gap-m; } } } // Inverse // ======================================================================== .hook-inverse-navbar-nav-item() {} .hook-inverse-navbar-nav-item-hover() {} .hook-inverse-navbar-nav-item-onclick() {} .hook-inverse-navbar-nav-item-active() {} .hook-inverse-navbar-item() {} .hook-inverse-navbar-toggle() {} .hook-inverse-navbar-toggle-hover() {} assets/uikit/src/less/theme/description-list.less000064400000001761151666572360016244 0ustar00// // Component: Description list // // ======================================================================== // Variables // ======================================================================== @description-list-term-font-size: @global-small-font-size; @description-list-term-font-weight: normal; @description-list-term-text-transform: uppercase; // Component // ======================================================================== .hook-description-list-term() { font-size: @description-list-term-font-size; font-weight: @description-list-term-font-weight; text-transform: @description-list-term-text-transform; } .hook-description-list-description() {} // Style modifier // ======================================================================== .hook-description-list-divider-term() {} // Miscellaneous // ======================================================================== .hook-description-list-misc() {} assets/uikit/src/less/theme/slider.less000064400000000471151666572360014227 0ustar00// // Component: Slider // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-slider-misc() {} assets/uikit/src/less/theme/table.less000064400000004255151666572360014040 0ustar00// // Component: Table // // ======================================================================== // Variables // ======================================================================== @table-header-cell-font-size: @global-small-font-size; @table-header-cell-font-weight: normal; @table-header-cell-color: @global-muted-color; // // New // @table-striped-border-width: @global-border-width; @table-striped-border: @global-border; // Component // ======================================================================== .hook-table-header-cell() { text-transform: uppercase; } .hook-table-cell() {} .hook-table-footer() { } .hook-table-caption() {} .hook-table-row-active() {} // Style modifiers // ======================================================================== .hook-table-divider() {} .hook-table-striped() { border-top: @table-striped-border-width solid @table-striped-border; border-bottom: @table-striped-border-width solid @table-striped-border; } .hook-table-hover() {} // Size modifier // ======================================================================== .hook-table-small() {} .hook-table-large() {} // Miscellaneous // ======================================================================== .hook-table-misc() { .uk-table tbody tr { transition: background-color 0.1s linear; } .uk-table-striped > tr:nth-of-type(even):last-child, .uk-table-striped tbody tr:nth-of-type(even):last-child { border-bottom: @table-striped-border-width solid @table-striped-border; } } // Inverse // ======================================================================== .hook-inverse-table-header-cell() {} .hook-inverse-table-caption() {} .hook-inverse-table-row-active() {} .hook-inverse-table-divider() {} .hook-inverse-table-striped() { border-top-color: @inverse-global-border; border-bottom-color: @inverse-global-border; } .hook-inverse-table-hover() {} .hook-inverse() { .uk-table-striped > tr:nth-of-type(even):last-child, .uk-table-striped tbody tr:nth-of-type(even):last-child { border-bottom-color: @inverse-global-border; } } assets/uikit/src/less/theme/tab.less000064400000005613151666572360013516 0ustar00// // Component: Tab // // ======================================================================== // Variables // ======================================================================== // // New // @tab-border-width: @global-border-width; @tab-border: @global-border; @tab-item-border-width: @global-border-width; @tab-item-font-size: @global-small-font-size; @tab-item-text-transform: uppercase; @tab-item-active-border: @global-primary-background; // Component // ======================================================================== .hook-tab() { position: relative; &::before { content: ""; position: absolute; bottom: 0; left: @tab-margin-horizontal; right: 0; border-bottom: @tab-border-width solid @tab-border; } } // Items // ======================================================================== .hook-tab-item() { border-bottom: @tab-item-border-width solid transparent; font-size: @tab-item-font-size; text-transform: @tab-item-text-transform; transition: color 0.1s ease-in-out; } .hook-tab-item-hover() {} .hook-tab-item-active() { border-color: @tab-item-active-border; } .hook-tab-item-disabled() {} // Position modifiers // ======================================================================== .hook-tab-bottom() { &::before { top: 0; bottom: auto; } } .hook-tab-bottom-item() { border-top: @tab-item-border-width solid transparent; border-bottom: none; } .hook-tab-left() { &::before { top: 0; bottom: 0; left: auto; right: 0; border-left: @tab-border-width solid @tab-border; border-bottom: none; } } .hook-tab-left-item() { border-right: @tab-item-border-width solid transparent; border-bottom: none; } .hook-tab-right() { &::before { top: 0; bottom: 0; left: 0; right: auto; border-left: @tab-border-width solid @tab-border; border-bottom: none; } } .hook-tab-right-item() { border-left: @tab-item-border-width solid transparent; border-bottom: none; } // Miscellaneous // ======================================================================== .hook-tab-misc() { .uk-tab .uk-dropdown { margin-left: (@tab-margin-horizontal + @tab-item-padding-horizontal); } } // Inverse // ======================================================================== @inverse-tab-border: @inverse-global-border; .hook-inverse-tab() { &::before { border-color: @inverse-tab-border; } } .hook-inverse-tab-item() {} .hook-inverse-tab-item-hover() {} .hook-inverse-tab-item-active() { border-color: @inverse-global-primary-background; } .hook-inverse-tab-item-disabled() {} assets/uikit/src/less/theme/pagination.less000064400000001661151666572360015100 0ustar00// // Component: Pagination // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-pagination() {} // Items // ======================================================================== .hook-pagination-item() { transition: color 0.1s ease-in-out; } .hook-pagination-item-hover() {} .hook-pagination-item-active() {} .hook-pagination-item-disabled() {} // Miscellaneous // ======================================================================== .hook-pagination-misc() {} // Inverse // ======================================================================== .hook-inverse-pagination-item() {} .hook-inverse-pagination-item-hover() {} .hook-inverse-pagination-item-active() {} .hook-inverse-pagination-item-disabled() {} assets/uikit/src/less/theme/sticky.less000064400000000471151666572360014253 0ustar00// // Component: Sticky // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-sticky-misc() {} assets/uikit/src/less/theme/drop.less000064400000000465151666572360013714 0ustar00// // Component: Drop // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-drop-misc() {} assets/uikit/src/less/theme/card.less000064400000014540151666572360013660 0ustar00// // Component: Card // // ======================================================================== // Variables // ======================================================================== @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @card-default-background; @card-primary-hover-background: @card-primary-background; @card-secondary-hover-background: @card-secondary-background; // // New // @card-badge-border-radius: 2px; @card-badge-text-transform: uppercase; @card-hover-box-shadow: @global-large-box-shadow; @card-default-box-shadow: @global-medium-box-shadow; @card-default-hover-box-shadow: @global-large-box-shadow; @card-default-header-border-width: @global-border-width; @card-default-header-border: @global-border; @card-default-footer-border-width: @global-border-width; @card-default-footer-border: @global-border; @card-primary-box-shadow: @global-medium-box-shadow; @card-primary-hover-box-shadow: @global-large-box-shadow; @card-secondary-box-shadow: @global-medium-box-shadow; @card-secondary-hover-box-shadow: @global-large-box-shadow; // Component // ======================================================================== .hook-card() { transition: box-shadow 0.1s ease-in-out; } // Sections // ======================================================================== .hook-card-body() {} .hook-card-header() {} .hook-card-footer() {} // Media // ======================================================================== .hook-card-media() {} .hook-card-media-top() {} .hook-card-media-bottom() {} .hook-card-media-left() {} .hook-card-media-right() {} // Title // ======================================================================== .hook-card-title() {} // Badge // ======================================================================== .hook-card-badge() { border-radius: @card-badge-border-radius; text-transform: @card-badge-text-transform; } // Hover modifier // ======================================================================== .hook-card-hover() { box-shadow: @card-hover-box-shadow; } // Style modifiers // ======================================================================== .hook-card-default() { box-shadow: @card-default-box-shadow; } .hook-card-default-title() {} .hook-card-default-hover() { box-shadow: @card-default-hover-box-shadow; } .hook-card-default-header() { border-bottom: @card-default-header-border-width solid @card-default-header-border; } .hook-card-default-footer() { border-top: @card-default-footer-border-width solid @card-default-footer-border; } // // Primary // .hook-card-primary() { box-shadow: @card-primary-box-shadow; } .hook-card-primary-title() {} .hook-card-primary-hover() { box-shadow: @card-primary-hover-box-shadow; } // // Secondary // .hook-card-secondary() { box-shadow: @card-secondary-box-shadow; } .hook-card-secondary-title() {} .hook-card-secondary-hover() { box-shadow: @card-secondary-hover-box-shadow; } // Miscellaneous // ======================================================================== .hook-card-misc() { /* * Default */ .uk-card-body > .uk-nav-default { margin-left: -@card-body-padding-horizontal; margin-right: -@card-body-padding-horizontal; } .uk-card-body > .uk-nav-default:only-child { margin-top: (-@card-body-padding-vertical + 15px); margin-bottom: (-@card-body-padding-vertical + 15px); } .uk-card-body > .uk-nav-default > li > a, .uk-card-body > .uk-nav-default .uk-nav-header, .uk-card-body > .uk-nav-default .uk-nav-divider { padding-left: @card-body-padding-horizontal; padding-right: @card-body-padding-horizontal; } .uk-card-body > .uk-nav-default .uk-nav-sub { padding-left: @nav-sublist-deeper-padding-left + @card-body-padding-horizontal; } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-card-body > .uk-nav-default { margin-left: -@card-body-padding-horizontal-l; margin-right: -@card-body-padding-horizontal-l; } .uk-card-body > .uk-nav-default:only-child { margin-top: (-@card-body-padding-vertical-l + 15px); margin-bottom: (-@card-body-padding-vertical-l + 15px); } .uk-card-body > .uk-nav-default > li > a, .uk-card-body > .uk-nav-default .uk-nav-header, .uk-card-body > .uk-nav-default .uk-nav-divider { padding-left: @card-body-padding-horizontal-l; padding-right: @card-body-padding-horizontal-l; } .uk-card-body > .uk-nav-default .uk-nav-sub { padding-left: @nav-sublist-deeper-padding-left + @card-body-padding-horizontal-l; } } /* * Small */ .uk-card-small > .uk-nav-default { margin-left: -@card-small-body-padding-horizontal; margin-right: -@card-small-body-padding-horizontal; } .uk-card-small > .uk-nav-default:only-child { margin-top: (-@card-small-body-padding-vertical + 15px); margin-bottom: (-@card-small-body-padding-vertical + 15px); } .uk-card-small > .uk-nav-default > li > a, .uk-card-small > .uk-nav-default .uk-nav-header, .uk-card-small > .uk-nav-default .uk-nav-divider { padding-left: @card-small-body-padding-horizontal; padding-right: @card-small-body-padding-horizontal; } .uk-card-small > .uk-nav-default .uk-nav-sub { padding-left: @nav-sublist-deeper-padding-left + @card-small-body-padding-horizontal; } /* * Large */ /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-card-large > .uk-nav-default { margin: 0; } .uk-card-large > .uk-nav-default:only-child { margin: 0; } .uk-card-large > .uk-nav-default > li > a, .uk-card-large > .uk-nav-default .uk-nav-header, .uk-card-large > .uk-nav-default .uk-nav-divider { padding-left: 0; padding-right: 0; } .uk-card-large > .uk-nav-default .uk-nav-sub { padding-left: @nav-sublist-deeper-padding-left; } } } assets/uikit/src/less/theme/close.less000064400000001232151666572360014046 0ustar00// // Component: Close // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-close() { transition: 0.1s ease-in-out; transition-property: color, opacity; } .hook-close-hover() {} // Miscellaneous // ======================================================================== .hook-close-misc() {} // Inverse // ======================================================================== .hook-inverse-close() {} .hook-inverse-close-hover() {} assets/uikit/src/less/theme/placeholder.less000064400000001310151666572360015220 0ustar00// // Component: Placeholder // // ======================================================================== // Variables // ======================================================================== @placeholder-background: transparent; // // New // @placeholder-border-width: @global-border-width; @placeholder-border: @global-border; // Component // ======================================================================== .hook-placeholder() { border: @placeholder-border-width dashed @placeholder-border; } // Miscellaneous // ======================================================================== .hook-placeholder-misc() {} assets/uikit/src/less/theme/modal.less000064400000004416151666572360014044 0ustar00// // Component: Modal // // ======================================================================== // Variables // ======================================================================== @modal-header-background: @modal-dialog-background; @modal-footer-background: @modal-dialog-background; // // New // @modal-header-border-width: @global-border-width; @modal-header-border: @global-border; @modal-footer-border-width: @global-border-width; @modal-footer-border: @global-border; @modal-close-full-padding: 10px; @modal-close-full-background: @modal-dialog-background; @modal-close-full-padding-m: @global-margin; // Component // ======================================================================== .hook-modal() {} // Dialog // ======================================================================== .hook-modal-dialog() {} // Full // ======================================================================== .hook-modal-full() {} // Sections // ======================================================================== .hook-modal-header() { border-bottom: @modal-header-border-width solid @modal-header-border; } .hook-modal-body() {} .hook-modal-footer() { border-top: @modal-footer-border-width solid @modal-footer-border; } // Title // ======================================================================== .hook-modal-title() {} // Close // ======================================================================== .hook-modal-close() {} .hook-modal-close-hover() {} .hook-modal-close-default() {} .hook-modal-close-default-hover() {} .hook-modal-close-outside() {} .hook-modal-close-outside-hover() {} .hook-modal-close-full() { top: 0; right: 0; padding: @modal-close-full-padding; background: @modal-close-full-background; } .hook-modal-close-full-hover() {} // Miscellaneous // ======================================================================== .hook-modal-misc() { /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-modal-close-full { padding: @modal-close-full-padding-m; } } } assets/uikit/src/less/theme/alert.less000064400000002523151666572360014054 0ustar00// // Component: Alert // // ======================================================================== // Variables // ======================================================================== // // New // @alert-close-opacity: 0.4; @alert-close-hover-opacity: 0.8; // Component // ======================================================================== .hook-alert() {} // Close // ======================================================================== .hook-alert-close() { color: inherit; opacity: @alert-close-opacity; } .hook-alert-close-hover() { color: inherit; opacity: @alert-close-hover-opacity; } // Style modifiers // ======================================================================== .hook-alert-primary() {} .hook-alert-success() {} .hook-alert-warning() {} .hook-alert-danger() {} // Miscellaneous // ======================================================================== .hook-alert-misc() { /* * Content */ .uk-alert h1, .uk-alert h2, .uk-alert h3, .uk-alert h4, .uk-alert h5, .uk-alert h6 { color: inherit; } .uk-alert a:not([class]) { color: inherit; text-decoration: underline; } .uk-alert a:not([class]):hover { color: inherit; text-decoration: underline; } } assets/uikit/src/less/theme/iconnav.less000064400000001635151666572360014405 0ustar00// // Component: Iconnav // // ======================================================================== // Variables // ======================================================================== // // New // @subnav-item-font-size: @global-small-font-size; // Component // ======================================================================== .hook-iconnav() {} .hook-iconnav-item() { font-size: @subnav-item-font-size; transition: 0.1s ease-in-out; transition-property: color, background-color; } .hook-iconnav-item-hover() {} .hook-iconnav-item-active() {} // Miscellaneous // ======================================================================== .hook-iconnav-misc() {} // Inverse // ======================================================================== .hook-inverse-iconnav-item() {} .hook-inverse-iconnav-item-hover() {} .hook-inverse-iconnav-item-active() {} assets/uikit/src/less/theme/grid.less000064400000001201151666572360013662 0ustar00// // Component: Grid // // ======================================================================== // Variables // ======================================================================== // Divider // ======================================================================== .hook-grid-divider-horizontal() {} .hook-grid-divider-vertical() {} // Miscellaneous // ======================================================================== .hook-grid-misc() {} // Inverse // ======================================================================== .hook-inverse-grid-divider-horizontal() {} .hook-inverse-grid-divider-vertical() {} assets/uikit/src/less/theme/divider.less000064400000001735151666572360014377 0ustar00// // Component: Divider // // ======================================================================== // Variables // ======================================================================== // Icon // ======================================================================== .hook-divider-icon() {} .hook-divider-icon-line() {} .hook-divider-icon-line-left() {} .hook-divider-icon-line-right() {} // Small // ======================================================================== .hook-divider-small() {} // Vertical // ======================================================================== .hook-divider-vertical() {} // Miscellaneous // ======================================================================== .hook-divider-misc() {} // Inverse // ======================================================================== .hook-inverse-divider-icon() {} .hook-inverse-divider-icon-line() {} .hook-inverse-divider-small() {} .hook-inverse-divider-vertical() {} assets/uikit/src/less/theme/button.less000064400000013312151666572360014256 0ustar00// // Component: Button // // ======================================================================== // Variables // ======================================================================== @button-line-height: @global-control-height - (@button-border-width * 2); @button-small-line-height: @global-control-small-height - (@button-border-width * 2); @button-large-line-height: @global-control-large-height - (@button-border-width * 2); @button-font-size: @global-small-font-size; @button-large-font-size: @global-small-font-size; @button-default-background: transparent; @button-default-hover-background: transparent; @button-default-active-background: transparent; @button-disabled-background: transparent; @button-text-hover-color: @global-emphasis-color; // // New // @button-text-transform: uppercase; @button-border-width: @global-border-width; @button-default-border: @global-border; @button-default-hover-border: darken(@global-border, 20%); @button-default-active-border: darken(@global-border, 30%); @button-disabled-border: @global-border; @button-text-border-width: @global-border-width; @button-text-border: currentColor; // Component // ======================================================================== .hook-button() { text-transform: @button-text-transform; transition: 0.1s ease-in-out; transition-property: color, background-color, border-color; } .hook-button-hover() {} .hook-button-active() {} // Style modifiers // ======================================================================== .hook-button-default() { border: @button-border-width solid @button-default-border; } .hook-button-default-hover() { border-color: @button-default-hover-border; } .hook-button-default-active() { border-color: @button-default-active-border; } // // Primary // .hook-button-primary() { border: @button-border-width solid transparent; } .hook-button-primary-hover() {} .hook-button-primary-active() {} // // Secondary // .hook-button-secondary() { border: @button-border-width solid transparent; } .hook-button-secondary-hover() {} .hook-button-secondary-active() {} // // Danger // .hook-button-danger() { border: @button-border-width solid transparent; } .hook-button-danger-hover() {} .hook-button-danger-active() {} // Disabled // ======================================================================== .hook-button-disabled() { border-color: @button-disabled-border; } // Size modifiers // ======================================================================== .hook-button-small() {} .hook-button-large() {} // Text modifier // ======================================================================== .hook-button-text() { position: relative; &::before { content: ""; position: absolute; bottom: 0; left: 0; right: 100%; border-bottom: @button-text-border-width solid @button-text-border; transition: right 0.3s ease-out; } } .hook-button-text-hover() { &::before { right: 0; } } .hook-button-text-disabled() { &::before { display: none; } } // Link modifier // ======================================================================== .hook-button-link() {} // Miscellaneous // ======================================================================== .hook-button-misc() { /* Group ========================================================================== */ /* * Collapse border */ .uk-button-group > .uk-button:nth-child(n+2), .uk-button-group > div:nth-child(n+2) .uk-button { margin-left: -@button-border-width; } /* * Create position context to superimpose the successor elements border * Known issue: If you use an `a` element as button and an icon inside, * the active state will not work if you click the icon inside the button * Workaround: Just use a `button` or `input` element as button */ .uk-button-group .uk-button:hover, .uk-button-group .uk-button:focus, .uk-button-group .uk-button:active, .uk-button-group .uk-button.uk-active { position: relative; z-index: 1; } } // Inverse // ======================================================================== @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-emphasis-color; @inverse-button-default-hover-background: transparent; @inverse-button-default-hover-color: @inverse-global-emphasis-color; @inverse-button-default-active-background: transparent; @inverse-button-default-active-color: @inverse-global-emphasis-color; @inverse-button-text-hover-color: @inverse-global-emphasis-color; .hook-inverse-button-default() { border-color: @inverse-global-color; } .hook-inverse-button-default-hover() { border-color: @inverse-global-emphasis-color; } .hook-inverse-button-default-active() { border-color: @inverse-global-emphasis-color; } .hook-inverse-button-primary() {} .hook-inverse-button-primary-hover() {} .hook-inverse-button-primary-active() {} .hook-inverse-button-secondary() {} .hook-inverse-button-secondary-hover() {} .hook-inverse-button-secondary-active() {} .hook-inverse-button-text() { &::before { border-bottom-color: @inverse-global-emphasis-color; } } .hook-inverse-button-text-hover() {} .hook-inverse-button-text-disabled() {} .hook-inverse-button-link() {} assets/uikit/src/less/theme/width.less000064400000000467151666572360014071 0ustar00// // Component: Width // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-width-misc() {} assets/uikit/src/less/theme/base.less000064400000006074151666572360013664 0ustar00// // Component: Base // // ======================================================================== // Variables // ======================================================================== // // New // @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 2px; @base-code-background: @global-muted-background; @base-blockquote-color: @global-emphasis-color; @base-blockquote-footer-color: @global-color; @base-pre-padding: 10px; @base-pre-background: @global-background; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @base-pre-border-radius: 3px; // Body // ======================================================================== .hook-base-body() {} // Links // ======================================================================== .hook-base-link() {} .hook-base-link-hover() {} // Text-level semantics // ======================================================================== .hook-base-code() { padding: @base-code-padding-vertical @base-code-padding-horizontal; background: @base-code-background; } // Headings // ======================================================================== .hook-base-heading() {} .hook-base-h1() {} .hook-base-h2() {} .hook-base-h3() {} .hook-base-h4() {} .hook-base-h5() {} .hook-base-h6() {} // Horizontal rules // ======================================================================== .hook-base-hr() {} // Blockquotes // ======================================================================== .hook-base-blockquote() { color: @base-blockquote-color; } .hook-base-blockquote-footer() { color: @base-blockquote-footer-color; &::before { content: "— "; } } // Preformatted text // ======================================================================== .hook-base-pre() { padding: @base-pre-padding; border: @base-pre-border-width solid @base-pre-border; border-radius: @base-pre-border-radius; background: @base-pre-background; } // Miscellaneous // ======================================================================== .hook-base-misc() {} // Inverse // ======================================================================== @inverse-base-blockquote-color: @inverse-global-emphasis-color; @inverse-base-blockquote-footer-color: @inverse-global-color; .hook-inverse-base-link() {} .hook-inverse-base-link-hover() {} .hook-inverse-base-code() { background-color: @inverse-global-muted-background; } .hook-inverse-base-heading() {} .hook-inverse-base-h1() {} .hook-inverse-base-h2() {} .hook-inverse-base-h3() {} .hook-inverse-base-h4() {} .hook-inverse-base-h5() {} .hook-inverse-base-h6() {} .hook-inverse-base-blockquote() { color: @inverse-base-blockquote-color; } .hook-inverse-base-blockquote-footer() { color: @inverse-base-blockquote-footer-color; } .hook-inverse-base-hr() {} assets/uikit/src/less/theme/notification.less000064400000001655151666572360015440 0ustar00// // Component: Notification // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-notification() {} // Message // ======================================================================== .hook-notification-message() {} // Close // ======================================================================== .hook-notification-close() {} // Style modifiers // ======================================================================== .hook-notification-message-primary() {} .hook-notification-message-success() {} .hook-notification-message-warning() {} .hook-notification-message-danger() {} // Miscellaneous // ======================================================================== .hook-notification-misc() {} assets/uikit/src/less/theme/link.less000064400000002056151666572360013703 0ustar00// // Component: Link // // ======================================================================== // Variables // ======================================================================== // Muted // ======================================================================== .hook-link-muted() {} .hook-link-muted-hover() {} // Text // ======================================================================== .hook-link-text() {} .hook-link-text-hover() {} // Heading // ======================================================================== .hook-link-heading() {} .hook-link-heading-hover() {} // Reset // ======================================================================== .hook-link-reset() {} // Miscellaneous // ======================================================================== .hook-link-misc() {} // Inverse // ======================================================================== .hook-inverse-link-muted() {} .hook-inverse-link-muted-hover() {} .hook-inverse-link-text-hover() {} .hook-inverse-link-heading-hover() {} assets/uikit/src/less/theme/search.less000064400000007457151666572360014225 0ustar00// // Component: Search // // ======================================================================== // Variables // ======================================================================== @search-default-background: transparent; @search-navbar-focus-background: @search-navbar-background; @search-medium-background: transparent; @search-large-background: transparent; // // New // @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-primary-background; @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: @global-primary-background; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-primary-background; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-primary-background; // Component // ======================================================================== .hook-search-input() {} // Icon // ======================================================================== .hook-search-icon() {} // Default modifiers // ======================================================================== .hook-search-default-input() { border: @search-default-border-width solid @search-default-border; } .hook-search-default-input-focus() { border-color: @search-default-focus-border; } // Navbar modifiers // ======================================================================== .hook-search-navbar-input() { border: @search-navbar-border-width solid @search-navbar-border; } .hook-search-navbar-input-focus() { border-color: @search-navbar-focus-border; } // Medium modifiers // ======================================================================== .hook-search-medium-input() { border: @search-medium-border-width solid @search-medium-border; } .hook-search-medium-input-focus() { border-color: @search-medium-focus-border; } // Large modifiers // ======================================================================== .hook-search-large-input() { border: @search-large-border-width solid @search-large-border; } .hook-search-large-input-focus() { border-color: @search-large-focus-border; } // Toggle // ======================================================================== .hook-search-toggle() {} .hook-search-toggle-hover() {} // Miscellaneous // ======================================================================== .hook-search-misc() {} // Inverse // ======================================================================== @inverse-search-default-background: transparent; @inverse-search-navbar-background: transparent; @inverse-search-medium-background: transparent; @inverse-search-large-background: transparent; .hook-inverse-search-default-input() { border-color: @inverse-global-border; } .hook-inverse-search-default-input-focus() {} .hook-inverse-search-navbar-input() { border-color: @inverse-global-border; } .hook-inverse-search-navbar-input-focus() {} .hook-inverse-search-medium-input() { border-color: @inverse-global-border; } .hook-inverse-search-medium-input-focus() {} .hook-inverse-search-large-input() { border-color: @inverse-global-border; } .hook-inverse-search-large-input-focus() {} .hook-inverse-search-toggle() {} .hook-inverse-search-toggle-hover() {} assets/uikit/src/less/theme/marker.less000064400000001157151666572360014230 0ustar00// // Component: Marker // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-marker() { border-radius: 500px; } .hook-marker-hover() {} // Miscellaneous // ======================================================================== .hook-marker-misc() {} // Inverse // ======================================================================== .hook-inverse-marker() {} .hook-inverse-marker-hover() {} assets/uikit/src/less/theme/height.less000064400000000471151666572360014215 0ustar00// // Component: Height // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-height-misc() {} assets/uikit/src/less/theme/padding.less000064400000000473151666572360014355 0ustar00// // Component: Padding // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-padding-misc() {} assets/uikit/src/less/theme/transition.less000064400000000501151666572360015131 0ustar00// // Component: Transition // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-transition-misc() {} assets/uikit/src/less/theme/align.less000064400000000467151666572360014044 0ustar00// // Component: Align // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-align-misc() {} assets/uikit/src/less/theme/comment.less000064400000002666151666572360014417 0ustar00// // Component: Comment // // ======================================================================== // Variables // ======================================================================== // // New // @comment-primary-padding: @global-gutter; @comment-primary-background: @global-muted-background; // Component // ======================================================================== .hook-comment() {} // Sections // ======================================================================== .hook-comment-body() {} .hook-comment-header() {} // Title // ======================================================================== .hook-comment-title() {} // Meta // ======================================================================== .hook-comment-meta() {} // Avatar // ======================================================================== .hook-comment-avatar() {} // List // ======================================================================== .hook-comment-list-adjacent() {} .hook-comment-list-sub() {} .hook-comment-list-sub-adjacent() {} // Style modifier // ======================================================================== .hook-comment-primary() { padding: @comment-primary-padding; background-color: @comment-primary-background; } // Miscellaneous // ======================================================================== .hook-comment-misc() {} assets/uikit/src/less/theme/sortable.less000064400000001415151666572360014557 0ustar00// // Component: Sortable // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-sortable() {} // Drag // ======================================================================== .hook-sortable-drag() {} // Placeholder // ======================================================================== .hook-sortable-placeholder() {} // Empty // ======================================================================== .hook-sortable-empty() {} // Miscellaneous // ======================================================================== .hook-sortable-misc() {} assets/uikit/src/less/theme/dropbar.less000064400000002362151666572360014377 0ustar00// // Component: Dropbar // // ======================================================================== // Variables // ======================================================================== @dropbar-padding-top: 25px; @dropbar-background: @global-background; // // New // @dropbar-top-box-shadow: 0 12px 7px -6px rgba(0, 0, 0, 0.05); @dropbar-bottom-box-shadow: 0 -12px 7px -6px rgba(0, 0, 0, 0.05); @dropbar-left-box-shadow: 12px 0 7px -6px rgba(0, 0, 0, 0.05); @dropbar-right-box-shadow: -12px 0 7px -6px rgba(0, 0, 0, 0.05); // Component // ======================================================================== .hook-dropbar() {} // Direction modifier // ======================================================================== .hook-dropbar-top() { box-shadow: @dropbar-top-box-shadow; } .hook-dropbar-bottom() { box-shadow: @dropbar-bottom-box-shadow; } .hook-dropbar-left() { box-shadow: @dropbar-left-box-shadow; } .hook-dropbar-right() { box-shadow: @dropbar-right-box-shadow; } // Miscellaneous // ======================================================================== .hook-dropbar-misc() {} assets/uikit/src/less/theme/overlay.less000064400000001261151666572360014424 0ustar00// // Component: Overlay // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-overlay() {} // Icon // ======================================================================== .hook-overlay-icon() {} // Style modifiers // ======================================================================== .hook-overlay-default() {} .hook-overlay-primary() {} // Miscellaneous // ======================================================================== .hook-overlay-misc() {} assets/uikit/src/less/theme/list.less000064400000002073151666572360013720 0ustar00// // Component: List // // ======================================================================== // Variables // ======================================================================== // // New // @list-striped-border-width: @global-border-width; @list-striped-border: @global-border; // Style modifiers // ======================================================================== .hook-list-divider() {} .hook-list-striped() { &:nth-of-type(odd) { border-top: @list-striped-border-width solid @list-striped-border; border-bottom: @list-striped-border-width solid @list-striped-border; } } // Miscellaneous // ======================================================================== .hook-list-misc() {} // Inverse // ======================================================================== .hook-inverse-list-divider() {} .hook-inverse-list-striped() { &:nth-of-type(odd) { border-top-color: @inverse-global-border; border-bottom-color: @inverse-global-border; } } assets/uikit/src/less/theme/badge.less000064400000001116151666572360014004 0ustar00// // Component: Badge // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-badge() {} .hook-badge-hover() {} // Miscellaneous // ======================================================================== .hook-badge-misc() {} // Inverse // ======================================================================== .hook-inverse-badge() {} .hook-inverse-badge-hover() {} assets/uikit/src/less/theme/lightbox.less000064400000001223151666572360014561 0ustar00// // Component: Lightbox // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-lightbox() {} // Item // ======================================================================== .hook-lightbox-item() {} // Caption // ======================================================================== .hook-lightbox-caption() {} // Miscellaneous // ======================================================================== .hook-lightbox-misc() {} assets/uikit/src/less/theme/subnav.less000064400000003322151666572360014241 0ustar00// // Component: Subnav // // ======================================================================== // Variables // ======================================================================== // // New // @subnav-item-font-size: @global-small-font-size; @subnav-item-text-transform: uppercase; // Component // ======================================================================== .hook-subnav() {} .hook-subnav-item() { font-size: @subnav-item-font-size; text-transform: @subnav-item-text-transform; transition: 0.1s ease-in-out; transition-property: color, background-color; } .hook-subnav-item-hover() {} .hook-subnav-item-active() {} // Divider modifier // ======================================================================== .hook-subnav-divider() {} // Pill modifier // ======================================================================== .hook-subnav-pill-item() {} .hook-subnav-pill-item-hover() {} .hook-subnav-pill-item-onclick() {} .hook-subnav-pill-item-active() {} // Disabled // ======================================================================== .hook-subnav-item-disabled() {} // Miscellaneous // ======================================================================== .hook-subnav-misc() {} // Inverse // ======================================================================== .hook-inverse-subnav-item() {} .hook-inverse-subnav-item-hover() {} .hook-inverse-subnav-item-active() {} .hook-inverse-subnav-divider() {} .hook-inverse-subnav-pill-item() {} .hook-inverse-subnav-pill-item-hover() {} .hook-inverse-subnav-pill-item-onclick() {} .hook-inverse-subnav-pill-item-active() {} .hook-inverse-subnav-item-disabled() {} assets/uikit/src/less/theme/breadcrumb.less000064400000001722151666572360015053 0ustar00// // Component: Breadcrumb // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-breadcrumb() {} // Items // ======================================================================== .hook-breadcrumb-item() {} .hook-breadcrumb-item-hover() {} .hook-breadcrumb-item-disabled() {} .hook-breadcrumb-item-active() {} .hook-breadcrumb-divider() {} // Miscellaneous // ======================================================================== .hook-breadcrumb-misc() {} // Inverse // ======================================================================== .hook-inverse-breadcrumb-item() {} .hook-inverse-breadcrumb-item-hover() {} .hook-inverse-breadcrumb-item-disabled() {} .hook-inverse-breadcrumb-item-active() {} .hook-inverse-breadcrumb-divider() {} assets/uikit/src/less/theme/thumbnav.less000064400000002747151666572360014601 0ustar00// // Component: Thumbnav // // ======================================================================== // Variables // ======================================================================== // // New // @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @thumbnav-item-hover-opacity: 0; @thumbnav-item-active-opacity: 0; // Component // ======================================================================== .hook-thumbnav() {} .hook-thumbnav-item() { position: relative; &::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background-image: @thumbnav-item-gradient; transition: opacity 0.1s ease-in-out; } } .hook-thumbnav-item-hover() { &::after { opacity: @thumbnav-item-hover-opacity; } } .hook-thumbnav-item-active() { &::after { opacity: @thumbnav-item-active-opacity; } } // Miscellaneous // ======================================================================== .hook-thumbnav-misc() {} // Inverse // ======================================================================== @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); .hook-inverse-thumbnav-item() { &::after { background-image: @inverse-thumbnav-item-gradient; } } .hook-inverse-thumbnav-item-hover() {} .hook-inverse-thumbnav-item-active() {} assets/uikit/src/less/theme/label.less000064400000001631151666572360014023 0ustar00// // Component: Label // // ======================================================================== // Variables // ======================================================================== // // New // @label-border-radius: 2px; @label-text-transform: uppercase; // Component // ======================================================================== .hook-label() { border-radius: @label-border-radius; text-transform: @label-text-transform; } // Color modifiers // ======================================================================== .hook-label-success() {} .hook-label-warning() {} .hook-label-danger() {} // Miscellaneous // ======================================================================== .hook-label-misc() {} // Inverse // ======================================================================== .hook-inverse-label() {} assets/uikit/src/less/theme/leader.less000064400000001033151666572360014174 0ustar00// // Component: Leader // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-leader() {} // Miscellaneous // ======================================================================== .hook-leader-misc() {} // Inverse // ======================================================================== .hook-inverse-leader() {} assets/uikit/src/less/theme/variables.less000064400000000522151666572360014712 0ustar00// // Component: Variables // // ======================================================================== // Global variables // ======================================================================== // // Typography // // // Colors // // // Backgrounds // // // Borders // // // Spacings // // // Controls // // // Z-index // assets/uikit/src/less/theme/column.less000064400000000471151666572360014242 0ustar00// // Component: Column // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-column-misc() {} assets/uikit/src/less/theme/countdown.less000064400000002156151666572360014767 0ustar00// // Component: Countdown // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-countdown() {} // Item // ======================================================================== .hook-countdown-item() {} // Number // ======================================================================== .hook-countdown-number() {} // Separator // ======================================================================== .hook-countdown-separator() {} // Label // ======================================================================== .hook-countdown-label() {} // Miscellaneous // ======================================================================== .hook-countdown-misc() {} // Inverse // ======================================================================== .hook-inverse-countdown-item() {} .hook-inverse-countdown-number() {} .hook-inverse-countdown-separator() {} .hook-inverse-countdown-label() {} assets/uikit/src/less/theme/spinner.less000064400000000473151666572360014425 0ustar00// // Component: Spinner // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-spinner-misc() {} assets/uikit/src/less/theme/slidenav.less000064400000002117151666572360014551 0ustar00// // Component: Slidenav // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-slidenav() { transition: color 0.1s ease-in-out; } .hook-slidenav-hover() {} .hook-slidenav-active() {} // Icon modifier // ======================================================================== .hook-slidenav-previous() {} .hook-slidenav-next() {} // Size modifier // ======================================================================== .hook-slidenav-large() {} // Container // ======================================================================== .hook-slidenav-container() {} // Miscellaneous // ======================================================================== .hook-slidenav-misc() {} // Inverse // ======================================================================== .hook-inverse-slidenav() {} .hook-inverse-slidenav-hover() {} .hook-inverse-slidenav-active() {} assets/uikit/src/less/theme/text.less000064400000002516151666572360013733 0ustar00// // Component: Text // // ======================================================================== // Variables // ======================================================================== // // New // @text-meta-link-color: @text-meta-color; @text-meta-link-hover-color: @global-color; @internal-text-background-color-gradient: linear-gradient(90deg, @text-background-color 0%, spin(@text-background-color, 40) 100%); // Style modifiers // ======================================================================== .hook-text-lead() {} .hook-text-meta() { > a { color: @text-meta-link-color; } > a:hover { color: @text-meta-link-hover-color; text-decoration: none; } } // Size modifiers // ======================================================================== .hook-text-small() {} .hook-text-large() {} // Background modifier // ======================================================================== .hook-text-background() { background-image: @internal-text-background-color-gradient; } // Miscellaneous // ======================================================================== .hook-text-misc() {} // Inverse // ======================================================================== .hook-inverse-text-lead() {} .hook-inverse-text-meta() {} assets/uikit/src/less/uikit.theme.less000064400000000141151666572360014063 0ustar00// // Core // @import "components/_import.less"; // // Theme // @import "theme/_import.less"; assets/uikit/src/less/components/close.less000064400000002663151666572360015142 0ustar00// Name: Close // Description: Component to create a close button // // Component: `uk-close` // // ======================================================================== // Variables // ======================================================================== @close-color: @global-muted-color; @close-hover-color: @global-color; /* ======================================================================== Component: Close ========================================================================== */ /* * Adopts `uk-icon` */ .uk-close { color: @close-color; .hook-close(); } /* Hover */ .uk-close:hover { color: @close-hover-color; .hook-close-hover(); } // Hooks // ======================================================================== .hook-close-misc(); .hook-close() {} .hook-close-hover() {} .hook-close-misc() {} // Inverse // ======================================================================== @inverse-close-color: @inverse-global-muted-color; @inverse-close-hover-color: @inverse-global-color; .hook-inverse() { .uk-close { color: @inverse-close-color; .hook-inverse-close(); } .uk-close:hover { color: @inverse-close-hover-color; .hook-inverse-close-hover(); } } .hook-inverse-close() {} .hook-inverse-close-hover() {} assets/uikit/src/less/components/divider.less000064400000011710151666572360015454 0ustar00// Name: Divider // Description: Styles for dividers // // Component: `uk-divider-icon` // `uk-divider-small` // `uk-divider-vertical` // // ======================================================================== // Variables // ======================================================================== @divider-margin-vertical: @global-margin; @divider-icon-width: 50px; @divider-icon-height: 20px; @divider-icon-color: @global-border; @divider-icon-line-top: 50%; @divider-icon-line-width: 100%; @divider-icon-line-border-width: @global-border-width; @divider-icon-line-border: @global-border; @internal-divider-icon-image: "../../images/backgrounds/divider-icon.svg"; @divider-small-width: 100px; @divider-small-border-width: @global-border-width; @divider-small-border: @global-border; @divider-vertical-height: 100px; @divider-vertical-border-width: @global-border-width; @divider-vertical-border: @global-border; /* ======================================================================== Component: Divider ========================================================================== */ /* * 1. Reset default `hr` * 2. Set margin if a `div` is used for semantical reason */ [class*="uk-divider"] { /* 1 */ border: none; /* 2 */ margin-bottom: @divider-margin-vertical; } /* Add margin if adjacent element */ * + [class*="uk-divider"] { margin-top: @divider-margin-vertical; } /* Icon ========================================================================== */ .uk-divider-icon { position: relative; height: @divider-icon-height; .svg-fill(@internal-divider-icon-image, "#000", @divider-icon-color); background-repeat: no-repeat; background-position: 50% 50%; .hook-divider-icon(); } .uk-divider-icon::before, .uk-divider-icon::after { content: ""; position: absolute; top: @divider-icon-line-top; max-width: ~'calc(50% - (@{divider-icon-width} / 2))'; border-bottom: @divider-icon-line-border-width solid @divider-icon-line-border; .hook-divider-icon-line(); } .uk-divider-icon::before { right: ~'calc(50% + (@{divider-icon-width} / 2))'; width: @divider-icon-line-width; .hook-divider-icon-line-left(); } .uk-divider-icon::after { left: ~'calc(50% + (@{divider-icon-width} / 2))'; width: @divider-icon-line-width; .hook-divider-icon-line-right(); } /* Small ========================================================================== */ /* * 1. Fix height because of `inline-block` * 2. Using ::after and inline-block to make `text-align` work */ /* 1 */ .uk-divider-small { line-height: 0; } /* 2 */ .uk-divider-small::after { content: ""; display: inline-block; width: @divider-small-width; max-width: 100%; border-top: @divider-small-border-width solid @divider-small-border; vertical-align: top; .hook-divider-small(); } /* Vertical ========================================================================== */ .uk-divider-vertical { width: max-content; height: @divider-vertical-height; margin-left: auto; margin-right: auto; border-left: @divider-vertical-border-width solid @divider-vertical-border; .hook-divider-vertical(); } // Hooks // ======================================================================== .hook-divider-misc(); .hook-divider-icon() {} .hook-divider-icon-line() {} .hook-divider-icon-line-left() {} .hook-divider-icon-line-right() {} .hook-divider-small() {} .hook-divider-vertical() {} .hook-divider-misc() {} // Inverse // ======================================================================== @inverse-divider-icon-color: @inverse-global-border; @inverse-divider-icon-line-border: @inverse-global-border; @inverse-divider-small-border: @inverse-global-border; @inverse-divider-vertical-border: @inverse-global-border; .hook-inverse() { .uk-divider-icon { .svg-fill(@internal-divider-icon-image, "#000", @inverse-divider-icon-color); .hook-inverse-divider-icon(); } .uk-divider-icon::before, .uk-divider-icon::after { border-bottom-color: @inverse-divider-icon-line-border; .hook-inverse-divider-icon-line(); } .uk-divider-small::after { border-top-color: @inverse-divider-small-border; .hook-inverse-divider-small(); } .uk-divider-vertical { border-left-color: @inverse-divider-vertical-border; .hook-inverse-divider-vertical(); } } .hook-inverse-divider-icon() {} .hook-inverse-divider-icon-line() {} .hook-inverse-divider-small() {} .hook-inverse-divider-vertical() {} assets/uikit/src/less/components/alert.less000064400000007074151666572360015145 0ustar00// Name: Alert // Description: Component to create alert messages // // Component: `uk-alert` // // Adopted: `uk-alert-close` // // Modifiers: `uk-alert-primary` // `uk-alert-success` // `uk-alert-warning` // `uk-alert-danger` // // ======================================================================== // Variables // ======================================================================== @alert-margin-vertical: @global-margin; @alert-padding: 15px; @alert-padding-right: @alert-padding + 14px; @alert-background: @global-muted-background; @alert-color: @global-color; @alert-close-top: @alert-padding + 5px; @alert-close-right: @alert-padding; @alert-primary-background: lighten(tint(@global-primary-background, 40%), 20%); @alert-primary-color: @global-primary-background; @alert-success-background: lighten(tint(@global-success-background, 40%), 25%); @alert-success-color: @global-success-background; @alert-warning-background: lighten(tint(@global-warning-background, 45%), 15%); @alert-warning-color: @global-warning-background; @alert-danger-background: lighten(tint(@global-danger-background, 40%), 20%); @alert-danger-color: @global-danger-background; /* ======================================================================== Component: Alert ========================================================================== */ .uk-alert { position: relative; margin-bottom: @alert-margin-vertical; padding: @alert-padding @alert-padding-right @alert-padding @alert-padding; background: @alert-background; color: @alert-color; .hook-alert(); } /* Add margin if adjacent element */ * + .uk-alert { margin-top: @alert-margin-vertical; } /* * Remove margin from the last-child */ .uk-alert > :last-child { margin-bottom: 0; } /* Close * Adopts `uk-close` ========================================================================== */ .uk-alert-close { position: absolute; top: @alert-close-top; right: @alert-close-right; .hook-alert-close(); } /* * Remove margin from adjacent element */ .uk-alert-close:first-child + * { margin-top: 0; } /* * Hover */ .uk-alert-close:hover { .hook-alert-close-hover(); } /* Style modifiers ========================================================================== */ /* * Primary */ .uk-alert-primary { background: @alert-primary-background; color: @alert-primary-color; .hook-alert-primary(); } /* * Success */ .uk-alert-success { background: @alert-success-background; color: @alert-success-color; .hook-alert-success(); } /* * Warning */ .uk-alert-warning { background: @alert-warning-background; color: @alert-warning-color; .hook-alert-warning(); } /* * Danger */ .uk-alert-danger { background: @alert-danger-background; color: @alert-danger-color; .hook-alert-danger(); } // Hooks // ======================================================================== .hook-alert-misc(); .hook-alert() {} .hook-alert-close() {} .hook-alert-close-hover() {} .hook-alert-primary() {} .hook-alert-success() {} .hook-alert-warning() {} .hook-alert-danger() {} .hook-alert-misc() {} assets/uikit/src/less/components/modal.less000064400000021570151666572360015127 0ustar00// Name: Modal // Description: Component to create modal dialogs // // Component: `uk-modal` // // Sub-objects: `uk-modal-page` // `uk-modal-dialog` // `uk-modal-header` // `uk-modal-body` // `uk-modal-footer` // `uk-modal-title` // `uk-modal-close` // // Adopted: `uk-modal-close-default` // `uk-modal-close-outside` // `uk-modal-close-full` // // Modifiers: `uk-modal-container` // `uk-modal-full` // // States: `uk-open` // // ======================================================================== // Variables // ======================================================================== @modal-z-index: @global-z-index + 10; @modal-background: rgba(0,0,0,0.6); @modal-padding-horizontal: 15px; @modal-padding-horizontal-s: @global-gutter; @modal-padding-horizontal-m: @global-medium-gutter; @modal-padding-vertical: @modal-padding-horizontal; @modal-padding-vertical-s: 50px; @modal-dialog-width: 600px; @modal-dialog-background: @global-background; @modal-container-width: 1200px; @modal-body-padding-horizontal: 20px; @modal-body-padding-vertical: 20px; @modal-body-padding-horizontal-s: @global-gutter; @modal-body-padding-vertical-s: @global-gutter; @modal-header-padding-horizontal: 20px; @modal-header-padding-vertical: (@modal-header-padding-horizontal / 2); @modal-header-padding-horizontal-s: @global-gutter; @modal-header-padding-vertical-s: (@modal-header-padding-horizontal-s / 2); @modal-header-background: @global-muted-background; @modal-footer-padding-horizontal: 20px; @modal-footer-padding-vertical: (@modal-footer-padding-horizontal / 2); @modal-footer-padding-horizontal-s: @global-gutter; @modal-footer-padding-vertical-s: (@modal-footer-padding-horizontal-s / 2); @modal-footer-background: @global-muted-background; @modal-title-font-size: @global-xlarge-font-size; @modal-title-line-height: 1.3; @modal-close-position: @global-small-margin; @modal-close-padding: 5px; @modal-close-outside-position: 0; @modal-close-outside-translate: 100%; @modal-close-outside-color: lighten(@global-inverse-color, 20%); @modal-close-outside-hover-color: @global-inverse-color; /* ======================================================================== Component: Modal ========================================================================== */ /* * 1. Hide by default * 2. Set position * 3. Allow scrolling for the modal dialog * 4. Horizontal padding * 5. Mask the background page * 6. Fade-in transition */ .uk-modal { /* 1 */ display: none; /* 2 */ position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: @modal-z-index; /* 3 */ overflow-y: auto; /* 4 */ padding: @modal-padding-vertical @modal-padding-horizontal; /* 5 */ background: @modal-background; /* 6 */ opacity: 0; transition: opacity 0.15s linear; .hook-modal(); } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-modal { padding: @modal-padding-vertical-s @modal-padding-horizontal-s; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-modal { padding-left: @modal-padding-horizontal-m; padding-right: @modal-padding-horizontal-m; } } /* * Open */ .uk-modal.uk-open { opacity: 1; } /* Page ========================================================================== */ /* * Prevent scrollbars */ .uk-modal-page { overflow: hidden; } /* Dialog ========================================================================== */ /* * 1. Create position context for spinner and close button * 2. Dimensions * 3. `!important` is needed to overwrite `uk-width-auto`. See `#modal-media-image` in tests * 4. Style * 5. Slide-in transition */ .uk-modal-dialog { /* 1 */ position: relative; /* 2 */ box-sizing: border-box; margin: 0 auto; width: @modal-dialog-width; /* 3 */ max-width: 100% !important; /* 4 */ background: @modal-dialog-background; /* 5 */ opacity: 0; transform: translateY(-100px); transition: 0.3s linear; transition-property: opacity, transform; .hook-modal-dialog(); } /* * Open */ .uk-open > .uk-modal-dialog { opacity: 1; transform: translateY(0); } /* Size modifier ========================================================================== */ /* * Container size * Take the same size as the Container component */ .uk-modal-container .uk-modal-dialog { width: @modal-container-width; } /* * Full size * 1. Remove padding and background from modal * 2. Reset all default declarations from modal dialog */ /* 1 */ .uk-modal-full { padding: 0; background: none; } /* 2 */ .uk-modal-full .uk-modal-dialog { margin: 0; width: 100%; max-width: 100%; transform: translateY(0); .hook-modal-full(); } /* Sections ========================================================================== */ .uk-modal-body { display: flow-root; padding: @modal-body-padding-vertical @modal-body-padding-horizontal; .hook-modal-body(); } .uk-modal-header { display: flow-root; padding: @modal-header-padding-vertical @modal-header-padding-horizontal; background: @modal-header-background; .hook-modal-header(); } .uk-modal-footer { display: flow-root; padding: @modal-footer-padding-vertical @modal-footer-padding-horizontal; background: @modal-footer-background; .hook-modal-footer(); } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-modal-body { padding: @modal-body-padding-vertical-s @modal-body-padding-horizontal-s; } .uk-modal-header { padding: @modal-header-padding-vertical-s @modal-header-padding-horizontal-s; } .uk-modal-footer { padding: @modal-footer-padding-vertical-s @modal-footer-padding-horizontal-s; } } /* * Remove margin from the last-child */ .uk-modal-body > :last-child, .uk-modal-header > :last-child, .uk-modal-footer > :last-child { margin-bottom: 0; } /* Title ========================================================================== */ .uk-modal-title { font-size: @modal-title-font-size; line-height: @modal-title-line-height; .hook-modal-title(); } /* Close * Adopts `uk-close` ========================================================================== */ [class*="uk-modal-close-"] { position: absolute; z-index: @modal-z-index; top: @modal-close-position; right: @modal-close-position; padding: @modal-close-padding; .hook-modal-close(); } /* * Remove margin from adjacent element */ [class*="uk-modal-close-"]:first-child + * { margin-top: 0; } /* * Hover */ [class*="uk-modal-close-"]:hover { .hook-modal-close-hover(); } /* * Default */ .uk-modal-close-default { .hook-modal-close-default(); } .uk-modal-close-default:hover { .hook-modal-close-default-hover(); } /* * Outside * 1. Prevent scrollbar on small devices */ .uk-modal-close-outside { top: @modal-close-outside-position; /* 1 */ right: -@modal-close-padding; transform: translate(0, -(@modal-close-outside-translate)); color: @modal-close-outside-color; .hook-modal-close-outside(); } .uk-modal-close-outside:hover { color: @modal-close-outside-hover-color; .hook-modal-close-outside-hover(); } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { /* 1 */ .uk-modal-close-outside { right: @modal-close-outside-position; transform: translate(@modal-close-outside-translate, -(@modal-close-outside-translate)); } } /* * Full */ .uk-modal-close-full { .hook-modal-close-full(); } .uk-modal-close-full:hover { .hook-modal-close-full-hover(); } // Hooks // ======================================================================== .hook-modal-misc(); .hook-modal() {} .hook-modal-dialog() {} .hook-modal-full() {} .hook-modal-header() {} .hook-modal-body() {} .hook-modal-footer() {} .hook-modal-title() {} .hook-modal-close() {} .hook-modal-close-hover() {} .hook-modal-close-default() {} .hook-modal-close-default-hover() {} .hook-modal-close-outside() {} .hook-modal-close-outside-hover() {} .hook-modal-close-full() {} .hook-modal-close-full-hover() {} .hook-modal-misc() {} assets/uikit/src/less/components/list.less000064400000015777151666572360015022 0ustar00// Name: List // Description: Styles for lists // // Component: `uk-list` // // Modifiers: `uk-list-disc` // `uk-list-circle` // `uk-list-square` // `uk-list-decimal` // `uk-list-hyphen` // `uk-list-muted` // `uk-list-emphasis` // `uk-list-primary` // `uk-list-secondary` // `uk-list-bullet` // `uk-list-divider` // `uk-list-striped` // `uk-list-large` // `uk-list-collapse` // // ======================================================================== // Variables // ======================================================================== @list-margin-top: @global-small-margin; @list-padding-left: 30px; @list-marker-height: (@global-line-height * 1em); @list-muted-color: @global-muted-color; @list-emphasis-color: @global-emphasis-color; @list-primary-color: @global-primary-background; @list-secondary-color: @global-secondary-background; @list-bullet-icon-color: @global-color; @list-divider-margin-top: @global-small-margin; @list-divider-border-width: @global-border-width; @list-divider-border: @global-border; @list-striped-padding-vertical: @global-small-margin; @list-striped-padding-horizontal: @global-small-margin; @list-striped-background: @global-muted-background; @list-large-margin-top: @global-margin; @list-large-divider-margin-top: @global-margin; @list-large-striped-padding-vertical: @global-margin; @list-large-striped-padding-horizontal: @global-small-margin; @internal-list-bullet-image: "../../images/backgrounds/list-bullet.svg"; /* ======================================================================== Component: List ========================================================================== */ .uk-list { padding: 0; list-style: none; } /* * Avoid column break within the list item, when using `column-count` */ .uk-list > * { break-inside: avoid-column; } /* * Remove margin from the last-child */ .uk-list > * > :last-child { margin-bottom: 0; } /* * Style */ .uk-list > :nth-child(n+2), .uk-list > * > ul { margin-top: @list-margin-top; } /* Marker modifiers ========================================================================== */ .uk-list-disc, .uk-list-circle, .uk-list-square, .uk-list-decimal, .uk-list-hyphen { padding-left: @list-padding-left; } .uk-list-disc { list-style-type: disc; } .uk-list-circle { list-style-type: circle; } .uk-list-square { list-style-type: square; } .uk-list-decimal { list-style-type: decimal; } .uk-list-hyphen { list-style-type: '– '; } /* * Color modifiers */ .uk-list-muted > ::marker { color: @list-muted-color !important; } .uk-list-emphasis > ::marker { color: @list-emphasis-color !important; } .uk-list-primary > ::marker { color: @list-primary-color !important; } .uk-list-secondary > ::marker { color: @list-secondary-color !important; } /* Image bullet modifier ========================================================================== */ .uk-list-bullet > * { position: relative; padding-left: @list-padding-left; } .uk-list-bullet > ::before { content: ""; position: absolute; top: 0; left: 0; width: @list-padding-left; height: @global-line-height * 1em; .svg-fill(@internal-list-bullet-image, "#000", @list-bullet-icon-color); background-repeat: no-repeat; background-position: 50% 50%; } /* Style modifiers ========================================================================== */ /* * Divider */ .uk-list-divider > :nth-child(n+2) { margin-top: @list-divider-margin-top; padding-top: @list-divider-margin-top; border-top: @list-divider-border-width solid @list-divider-border; .hook-list-divider(); } /* * Striped */ .uk-list-striped > * { padding: @list-striped-padding-vertical @list-striped-padding-horizontal; .hook-list-striped(); } .uk-list-striped > :nth-of-type(odd) { background: @list-striped-background; } .uk-list-striped > :nth-child(n+2) { margin-top: 0; } /* Size modifier ========================================================================== */ .uk-list-large > :nth-child(n+2), .uk-list-large > * > ul { margin-top: @list-large-margin-top; } .uk-list-collapse > :nth-child(n+2), .uk-list-collapse > * > ul { margin-top: 0; } /* * Divider */ .uk-list-large.uk-list-divider > :nth-child(n+2) { margin-top: @list-large-divider-margin-top; padding-top: @list-large-divider-margin-top; } .uk-list-collapse.uk-list-divider > :nth-child(n+2) { margin-top: 0; padding-top: 0; } /* * Striped */ .uk-list-large.uk-list-striped > * { padding: @list-large-striped-padding-vertical @list-large-striped-padding-horizontal; } .uk-list-collapse.uk-list-striped > * { padding-top: 0; padding-bottom: 0; } .uk-list-large.uk-list-striped > :nth-child(n+2), .uk-list-collapse.uk-list-striped > :nth-child(n+2) { margin-top: 0; } // Hooks // ======================================================================== .hook-list-misc(); .hook-list-divider() {} .hook-list-striped() {} .hook-list-misc() {} // Inverse // ======================================================================== @inverse-list-muted-color: @inverse-global-muted-color; @inverse-list-emphasis-color: @inverse-global-emphasis-color; @inverse-list-primary-color: @inverse-global-primary-background; @inverse-list-secondary-color: @inverse-global-primary-background; @inverse-list-divider-border: @inverse-global-border; @inverse-list-striped-background: @inverse-global-muted-background; @inverse-list-bullet-icon-color: @inverse-global-color; .hook-inverse() { .uk-list-muted > ::marker { color: @inverse-list-muted-color !important; } .uk-list-emphasis > ::marker { color: @inverse-list-emphasis-color !important; } .uk-list-primary > ::marker { color: @inverse-list-primary-color !important; } .uk-list-secondary > ::marker { color: @inverse-list-secondary-color !important; } .uk-list-bullet > ::before { .svg-fill(@internal-list-bullet-image, "#000", @inverse-list-bullet-icon-color); } .uk-list-divider > :nth-child(n+2) { border-top-color: @inverse-list-divider-border; .hook-inverse-list-divider(); } .uk-list-striped > * { .hook-inverse-list-striped(); } .uk-list-striped > :nth-of-type(odd) { background-color: @inverse-list-striped-background; } } .hook-inverse-list-divider() {} .hook-inverse-list-striped() {} assets/uikit/src/less/components/margin.less000064400000020714151666572360015307 0ustar00// Name: Margin // Description: Utilities for margins // // Component: `uk-margin-*` // `uk-margin-small-*` // `uk-margin-medium-*` // `uk-margin-large-*` // `uk-margin-xlarge-*` // `uk-margin-remove-*` // `uk-margin-auto-*` // // ======================================================================== // Variables // ======================================================================== @margin-margin: @global-margin; @margin-xsmall-margin: 5px; @margin-small-margin: @global-small-margin; @margin-medium-margin: @global-medium-margin; @margin-large-margin: @global-medium-margin; @margin-large-margin-l: @global-large-margin; @margin-xlarge-margin: @global-large-margin; @margin-xlarge-margin-l: @global-xlarge-margin; /* ======================================================================== Component: Margin ========================================================================== */ /* * Default */ .uk-margin { margin-bottom: @margin-margin; } * + .uk-margin { margin-top: @margin-margin !important; } .uk-margin-top { margin-top: @margin-margin !important; } .uk-margin-bottom { margin-bottom: @margin-margin !important; } .uk-margin-left { margin-left: @margin-margin !important; } .uk-margin-right { margin-right: @margin-margin !important; } /* XSmall ========================================================================== */ .uk-margin-xsmall { margin-bottom: @margin-xsmall-margin; } * + .uk-margin-xsmall { margin-top: @margin-xsmall-margin !important; } .uk-margin-xsmall-top { margin-top: @margin-xsmall-margin !important; } .uk-margin-xsmall-bottom { margin-bottom: @margin-xsmall-margin !important; } .uk-margin-xsmall-left { margin-left: @margin-xsmall-margin !important; } .uk-margin-xsmall-right { margin-right: @margin-xsmall-margin !important; } /* Small ========================================================================== */ .uk-margin-small { margin-bottom: @margin-small-margin; } * + .uk-margin-small { margin-top: @margin-small-margin !important; } .uk-margin-small-top { margin-top: @margin-small-margin !important; } .uk-margin-small-bottom { margin-bottom: @margin-small-margin !important; } .uk-margin-small-left { margin-left: @margin-small-margin !important; } .uk-margin-small-right { margin-right: @margin-small-margin !important; } /* Medium ========================================================================== */ .uk-margin-medium { margin-bottom: @margin-medium-margin; } * + .uk-margin-medium { margin-top: @margin-medium-margin !important; } .uk-margin-medium-top { margin-top: @margin-medium-margin !important; } .uk-margin-medium-bottom { margin-bottom: @margin-medium-margin !important; } .uk-margin-medium-left { margin-left: @margin-medium-margin !important; } .uk-margin-medium-right { margin-right: @margin-medium-margin !important; } /* Large ========================================================================== */ .uk-margin-large { margin-bottom: @margin-large-margin; } * + .uk-margin-large { margin-top: @margin-large-margin !important; } .uk-margin-large-top { margin-top: @margin-large-margin !important; } .uk-margin-large-bottom { margin-bottom: @margin-large-margin !important; } .uk-margin-large-left { margin-left: @margin-large-margin !important; } .uk-margin-large-right { margin-right: @margin-large-margin !important; } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-margin-large { margin-bottom: @margin-large-margin-l; } * + .uk-margin-large { margin-top: @margin-large-margin-l !important; } .uk-margin-large-top { margin-top: @margin-large-margin-l !important; } .uk-margin-large-bottom { margin-bottom: @margin-large-margin-l !important; } .uk-margin-large-left { margin-left: @margin-large-margin-l !important; } .uk-margin-large-right { margin-right: @margin-large-margin-l !important; } } /* XLarge ========================================================================== */ .uk-margin-xlarge { margin-bottom: @margin-xlarge-margin; } * + .uk-margin-xlarge { margin-top: @margin-xlarge-margin !important; } .uk-margin-xlarge-top { margin-top: @margin-xlarge-margin !important; } .uk-margin-xlarge-bottom { margin-bottom: @margin-xlarge-margin !important; } .uk-margin-xlarge-left { margin-left: @margin-xlarge-margin !important; } .uk-margin-xlarge-right { margin-right: @margin-xlarge-margin !important; } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-margin-xlarge { margin-bottom: @margin-xlarge-margin-l; } * + .uk-margin-xlarge { margin-top: @margin-xlarge-margin-l !important; } .uk-margin-xlarge-top { margin-top: @margin-xlarge-margin-l !important; } .uk-margin-xlarge-bottom { margin-bottom: @margin-xlarge-margin-l !important; } .uk-margin-xlarge-left { margin-left: @margin-xlarge-margin-l !important; } .uk-margin-xlarge-right { margin-right: @margin-xlarge-margin-l !important; } } /* Auto ========================================================================== */ .uk-margin-auto { margin-left: auto !important; margin-right: auto !important; } .uk-margin-auto-top { margin-top: auto !important; } .uk-margin-auto-bottom { margin-bottom: auto !important; } .uk-margin-auto-left { margin-left: auto !important; } .uk-margin-auto-right { margin-right: auto !important; } .uk-margin-auto-vertical { margin-top: auto !important; margin-bottom: auto !important; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-margin-auto\@s { margin-left: auto !important; margin-right: auto !important; } .uk-margin-auto-left\@s { margin-left: auto !important; } .uk-margin-auto-right\@s { margin-right: auto !important; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-margin-auto\@m { margin-left: auto !important; margin-right: auto !important; } .uk-margin-auto-left\@m { margin-left: auto !important; } .uk-margin-auto-right\@m { margin-right: auto !important; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-margin-auto\@l { margin-left: auto !important; margin-right: auto !important; } .uk-margin-auto-left\@l { margin-left: auto !important; } .uk-margin-auto-right\@l { margin-right: auto !important; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-margin-auto\@xl { margin-left: auto !important; margin-right: auto !important; } .uk-margin-auto-left\@xl { margin-left: auto !important; } .uk-margin-auto-right\@xl { margin-right: auto !important; } } /* Remove ========================================================================== */ .uk-margin-remove { margin: 0 !important; } .uk-margin-remove-top { margin-top: 0 !important; } .uk-margin-remove-bottom { margin-bottom: 0 !important; } .uk-margin-remove-left { margin-left: 0 !important; } .uk-margin-remove-right { margin-right: 0 !important; } .uk-margin-remove-vertical { margin-top: 0 !important; margin-bottom: 0 !important; } .uk-margin-remove-adjacent + *, .uk-margin-remove-first-child > :first-child { margin-top: 0 !important; } .uk-margin-remove-last-child > :last-child { margin-bottom: 0 !important; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-margin-remove-left\@s { margin-left: 0 !important; } .uk-margin-remove-right\@s { margin-right: 0 !important; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-margin-remove-left\@m { margin-left: 0 !important; } .uk-margin-remove-right\@m { margin-right: 0 !important; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-margin-remove-left\@l { margin-left: 0 !important; } .uk-margin-remove-right\@l { margin-right: 0 !important; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-margin-remove-left\@xl { margin-left: 0 !important; } .uk-margin-remove-right\@xl { margin-right: 0 !important; } } // Hooks // ======================================================================== .hook-margin-misc(); .hook-margin-misc() {} assets/uikit/src/less/components/countdown.less000064400000007001151666572360016044 0ustar00// Name: Countdown // Description: Component to create countdown timers // // Component: `uk-countdown` // // Sub-objects: `uk-countdown-number` // `uk-countdown-separator` // `uk-countdown-label` // // ======================================================================== // Variables // ======================================================================== @countdown-number-line-height: 0.8; @countdown-number-font-size: 2rem; // 32px @countdown-number-font-size-s: 4rem; // 64px @countdown-number-font-size-m: 6rem; // 96px @countdown-separator-line-height: 1.6; @countdown-separator-font-size: 1rem; // 16px @countdown-separator-font-size-s: 2rem; // 32px @countdown-separator-font-size-m: 3rem; // 48px /* ======================================================================== Component: Countdown ========================================================================== */ .uk-countdown { .hook-countdown(); } /* Item ========================================================================== */ .uk-countdown-number, .uk-countdown-separator { .hook-countdown-item(); } /* Number ========================================================================== */ /* * 1. Make numbers all of the same size to prevent jumping. Must be supported by the font. * 2. Style */ .uk-countdown-number { /* 1 */ font-variant-numeric: tabular-nums; /* 2 */ font-size: @countdown-number-font-size; line-height: @countdown-number-line-height; .hook-countdown-number(); } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-countdown-number { font-size: @countdown-number-font-size-s; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-countdown-number { font-size: @countdown-number-font-size-m; } } /* Separator ========================================================================== */ .uk-countdown-separator { font-size: @countdown-separator-font-size; line-height: @countdown-separator-line-height; .hook-countdown-separator(); } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-countdown-separator { font-size: @countdown-separator-font-size-s; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-countdown-separator { font-size: @countdown-separator-font-size-m; } } /* Label ========================================================================== */ .uk-countdown-label { .hook-countdown-label(); } // Hooks // ======================================================================== .hook-countdown-misc(); .hook-countdown() {} .hook-countdown-item() {} .hook-countdown-number() {} .hook-countdown-separator() {} .hook-countdown-label() {} .hook-countdown-misc() {} // Inverse // ======================================================================== .hook-inverse() { .uk-countdown-number, .uk-countdown-separator { .hook-inverse-countdown-item(); } .uk-countdown-number { .hook-inverse-countdown-number(); } .uk-countdown-separator { .hook-inverse-countdown-separator(); } .uk-countdown-label { .hook-inverse-countdown-label(); } } .hook-inverse-countdown-item() {} .hook-inverse-countdown-number() {} .hook-inverse-countdown-separator() {} .hook-inverse-countdown-label() {} assets/uikit/src/less/components/variables.less000064400000010237151666572360016001 0ustar00// // Component: Variables // Description: Defines common values which are used across all components // // ======================================================================== // Load deprecated components // ======================================================================== @deprecated: false; // Breakpoints // ======================================================================== // Phone Portrait: Galaxy (360x640), iPhone 6 (375x667), iPhone 6+ (414x736) // Phone Landscape: Galaxy (640x360), iPhone 6 (667x375), iPhone 6+ (736x414) // Tablet Portrait: iPad (768x1024), Galaxy Tab (800x1280), // Tablet Landscape: iPad (1024x768), iPad Pro (1024x1366), // Desktop: Galaxy Tab (1280x800), iPad Pro (1366x1024) @breakpoint-small: 640px; // Phone landscape @breakpoint-medium: 960px; // Tablet Landscape @breakpoint-large: 1200px; // Desktop @breakpoint-xlarge: 1600px; // Large Screens @breakpoint-xsmall-max: (@breakpoint-small - 1); @breakpoint-small-max: (@breakpoint-medium - 1); @breakpoint-medium-max: (@breakpoint-large - 1); @breakpoint-large-max: (@breakpoint-xlarge - 1); // Global variables // ======================================================================== // // Typography // @global-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; @global-font-size: 16px; @global-line-height: 1.5; // 24px @global-2xlarge-font-size: 2.625rem; // 42px @global-xlarge-font-size: 2rem; // 32px @global-large-font-size: 1.5rem; // 24px @global-medium-font-size: 1.25rem; // 20px @global-small-font-size: 0.875rem; // 14px // // Colors // @global-color: #666; @global-emphasis-color: #333; @global-muted-color: #999; @global-link-color: #1e87f0; @global-link-hover-color: #0f6ecd; @global-inverse-color: #fff; // // Backgrounds // @global-background: #fff; @global-muted-background: #f8f8f8; @global-primary-background: #1e87f0; @global-secondary-background: #222; @global-success-background: #32d296; @global-warning-background: #faa05a; @global-danger-background: #f0506e; // // Borders // @global-border-width: 1px; @global-border: #e5e5e5; // // Box-Shadows // @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); // // Spacings // // Used in margin, section, list @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; // Used in grid, column, container, align, card, padding @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; // // Controls // @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 55px; // // Z-index // @global-z-index: 1000; assets/uikit/src/less/components/text.less000064400000020627151666572360015021 0ustar00// Name: Text // Description: Utilities for text // // Component: `uk-text-*` // // ======================================================================== // Variables // ======================================================================== @text-lead-font-size: @global-large-font-size; @text-lead-line-height: 1.5; @text-lead-color: @global-emphasis-color; @text-meta-font-size: @global-small-font-size; @text-meta-line-height: 1.4; @text-meta-color: @global-muted-color; @text-small-font-size: @global-small-font-size; @text-small-line-height: 1.5; @text-large-font-size: @global-large-font-size; @text-large-line-height: 1.5; @text-muted-color: @global-muted-color; @text-emphasis-color: @global-emphasis-color; @text-primary-color: @global-primary-background; @text-secondary-color: @global-secondary-background; @text-success-color: @global-success-background; @text-warning-color: @global-warning-background; @text-danger-color: @global-danger-background; @text-background-color: @global-primary-background; @text-stroke-text-stroke: ~'calc(1.4px + 0.002em)'; /* ======================================================================== Component: Text ========================================================================== */ /* Style modifiers ========================================================================== */ .uk-text-lead { font-size: @text-lead-font-size; line-height: @text-lead-line-height; color: @text-lead-color; .hook-text-lead(); } .uk-text-meta { font-size: @text-meta-font-size; line-height: @text-meta-line-height; color: @text-meta-color; .hook-text-meta(); } /* Size modifiers ========================================================================== */ .uk-text-small { font-size: @text-small-font-size; line-height: @text-small-line-height; .hook-text-small(); } .uk-text-large { font-size: @text-large-font-size; line-height: @text-large-line-height; .hook-text-large(); } .uk-text-default { font-size: @global-font-size; line-height: @global-line-height; } /* Weight modifier ========================================================================== */ .uk-text-light { font-weight: 300; } .uk-text-normal { font-weight: 400; } .uk-text-bold { font-weight: 700; } .uk-text-lighter { font-weight: lighter; } .uk-text-bolder { font-weight: bolder; } /* Style modifier ========================================================================== */ .uk-text-italic { font-style: italic; } /* Transform modifier ========================================================================== */ .uk-text-capitalize { text-transform: capitalize !important; } .uk-text-uppercase { text-transform: uppercase !important; } .uk-text-lowercase { text-transform: lowercase !important; } /* Decoration modifier ========================================================================== */ .uk-text-decoration-none { text-decoration: none !important; } /* Color modifiers ========================================================================== */ .uk-text-muted { color: @text-muted-color !important; } .uk-text-emphasis { color: @text-emphasis-color !important; } .uk-text-primary { color: @text-primary-color !important; } .uk-text-secondary { color: @text-secondary-color !important; } .uk-text-success { color: @text-success-color !important; } .uk-text-warning { color: @text-warning-color !important; } .uk-text-danger { color: @text-danger-color !important; } /* Background modifier ========================================================================== */ /* * 1. The background clips to the foreground text. Works in all browsers. * 2. Default color is set to transparent. * 3. Container fits the text * 4. Style */ .uk-text-background { /* 1 */ -webkit-background-clip: text; /* 2 */ color: transparent !important; /* 3 */ display: inline-block; /* 4 */ background-color: @text-background-color; .hook-text-background(); } /* Alignment modifiers ========================================================================== */ .uk-text-left { text-align: left !important; } .uk-text-right { text-align: right !important; } .uk-text-center { text-align: center !important; } .uk-text-justify { text-align: justify !important; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-text-left\@s { text-align: left !important; } .uk-text-right\@s { text-align: right !important; } .uk-text-center\@s { text-align: center !important; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-text-left\@m { text-align: left !important; } .uk-text-right\@m { text-align: right !important; } .uk-text-center\@m { text-align: center !important; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-text-left\@l { text-align: left !important; } .uk-text-right\@l { text-align: right !important; } .uk-text-center\@l { text-align: center !important; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-text-left\@xl { text-align: left !important; } .uk-text-right\@xl { text-align: right !important; } .uk-text-center\@xl { text-align: center !important; } } /* * Vertical */ .uk-text-top { vertical-align: top !important; } .uk-text-middle { vertical-align: middle !important; } .uk-text-bottom { vertical-align: bottom !important; } .uk-text-baseline { vertical-align: baseline !important; } /* Wrap modifiers ========================================================================== */ /* * Prevent text from wrapping onto multiple lines */ .uk-text-nowrap { white-space: nowrap; } /* * 1. Make sure a max-width is set after which truncation can occur * 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis * 3. Fix for table cells */ .uk-text-truncate { /* 1 */ max-width: 100%; /* 2 */ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } /* 2 */ th.uk-text-truncate, td.uk-text-truncate { max-width: 0; } /* * Wrap long words onto the next line and break them if they are too long to fit. * 1. Make it work with table cells in all browsers. * Note: Not using `hyphens: auto` because it hyphenates text even if not needed. */ .uk-text-break { overflow-wrap: break-word; } /* 1 */ th.uk-text-break, td.uk-text-break { word-break: break-word; } /* Stroke modifiers ========================================================================== */ .uk-text-stroke { -webkit-text-stroke: @text-stroke-text-stroke; -webkit-text-fill-color: transparent; } // Hooks // ======================================================================== .hook-text-misc(); .hook-text-lead() {} .hook-text-meta() {} .hook-text-small() {} .hook-text-large() {} .hook-text-background() {} .hook-text-misc() {} // Inverse // ======================================================================== @inverse-text-lead-color: @inverse-global-color; @inverse-text-meta-color: @inverse-global-muted-color; @inverse-text-muted-color: @inverse-global-muted-color; @inverse-text-emphasis-color: @inverse-global-emphasis-color; @inverse-text-primary-color: @inverse-global-primary-background; @inverse-text-secondary-color: @inverse-global-primary-background; .hook-inverse() { .uk-text-lead { color: @inverse-text-lead-color; .hook-inverse-text-lead(); } .uk-text-meta { color: @inverse-text-meta-color; .hook-inverse-text-meta(); } .uk-text-muted { color: @inverse-text-muted-color !important; } .uk-text-emphasis { color: @inverse-text-emphasis-color !important; } .uk-text-primary { color: @inverse-text-primary-color !important; } .uk-text-secondary { color: @inverse-text-secondary-color !important; } } .hook-inverse-text-lead() {} .hook-inverse-text-meta() {} assets/uikit/src/less/components/iconnav.less000064400000007167151666572360015476 0ustar00// Name: Iconnav // Description: Component to create icon navigations // // Component: `uk-iconnav` // // Modifier: `uk-iconnav-vertical` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @iconnav-margin-horizontal: @global-small-margin; @iconnav-margin-vertical: @iconnav-margin-horizontal; @iconnav-item-color: @global-muted-color; @iconnav-item-hover-color: @global-color; @iconnav-item-active-color: @global-color; /* ======================================================================== Component: Iconnav ========================================================================== */ /* * 1. Allow items to wrap into the next line * 2. Reset list * 3. Gutter */ .uk-iconnav { display: flex; /* 1 */ flex-wrap: wrap; /* 2 */ margin: 0; padding: 0; list-style: none; /* 3 */ margin-left: -@iconnav-margin-horizontal; .hook-iconnav(); } /* * Space is allocated based on content dimensions, but shrinks: 0 1 auto * 1. Gutter */ .uk-iconnav > * { /* 1 */ padding-left: @iconnav-margin-horizontal; } /* Items ========================================================================== */ /* * Items must target `a` elements to exclude other elements (e.g. dropdowns) * 1. Center content vertically if there is still some text * 2. Imitate white space gap when using flexbox * 3. Force text not to affect item height * 4. Style * 5. Required for `a` if there is still some text */ .uk-iconnav > * > a { /* 1 */ display: flex; align-items: center; /* 2 */ column-gap: 0.25em; /* 3 */ line-height: 0; /* 4 */ color: @iconnav-item-color; /* 5 */ text-decoration: none; .hook-iconnav-item(); } /* Hover */ .uk-iconnav > * > a:hover { color: @iconnav-item-hover-color; .hook-iconnav-item-hover(); } /* Active */ .uk-iconnav > .uk-active > a { color: @iconnav-item-active-color; .hook-iconnav-item-active(); } /* Modifier: 'uk-iconnav-vertical' ========================================================================== */ /* * 1. Change direction * 2. Gutter */ .uk-iconnav-vertical { /* 1 */ flex-direction: column; /* 2 */ margin-left: 0; margin-top: -@iconnav-margin-vertical; } /* 2 */ .uk-iconnav-vertical > * { padding-left: 0; padding-top: @iconnav-margin-vertical; } // Hooks // ======================================================================== .hook-iconnav-misc(); .hook-iconnav() {} .hook-iconnav-item() {} .hook-iconnav-item-hover() {} .hook-iconnav-item-active() {} .hook-iconnav-misc() {} // Inverse // ======================================================================== @inverse-iconnav-item-color: @inverse-global-muted-color; @inverse-iconnav-item-hover-color: @inverse-global-color; @inverse-iconnav-item-active-color: @inverse-global-color; .hook-inverse() { .uk-iconnav > * > a { color: @inverse-iconnav-item-color; .hook-inverse-iconnav-item(); } .uk-iconnav > * > a:hover { color: @inverse-iconnav-item-hover-color; .hook-inverse-iconnav-item-hover(); } .uk-iconnav > .uk-active > a { color: @inverse-iconnav-item-active-color; .hook-inverse-iconnav-item-active(); } } .hook-inverse-iconnav-item() {} .hook-inverse-iconnav-item-hover() {} .hook-inverse-iconnav-item-active() {} assets/uikit/src/less/components/width.less000064400000032652151666572360015155 0ustar00// Name: Width // Description: Utilities for widths // // Component: `uk-child-width-*` // `uk-width-*` // // ======================================================================== // Variables // ======================================================================== @width-small-width: 150px; @width-medium-width: 300px; @width-large-width: 450px; @width-xlarge-width: 600px; @width-2xlarge-width: 750px; /* ======================================================================== Component: Width ========================================================================== */ /* Equal child widths ========================================================================== */ [class*="uk-child-width"] > * { box-sizing: border-box; width: 100%; } .uk-child-width-1-2 > * { width: 50%; } .uk-child-width-1-3 > * { width: ~'calc(100% / 3)'; } .uk-child-width-1-4 > * { width: 25%; } .uk-child-width-1-5 > * { width: 20%; } .uk-child-width-1-6 > * { width: ~'calc(100% / 6)'; } .uk-child-width-auto > * { width: auto; } /* * 1. Reset the `min-width`, which is set to auto by default, because * flex items won't shrink below their minimum intrinsic content size. * Using `1px` instead of `0`, so items still wrap into the next line, * if they have zero width and padding and the predecessor is 100% wide. */ .uk-child-width-expand > :not([class*="uk-width"]) { flex: 1; /* 1 */ min-width: 1px; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-child-width-1-1\@s > * { width: 100%; } .uk-child-width-1-2\@s > * { width: 50%; } .uk-child-width-1-3\@s > * { width: ~'calc(100% / 3)'; } .uk-child-width-1-4\@s > * { width: 25%; } .uk-child-width-1-5\@s > * { width: 20%; } .uk-child-width-1-6\@s > * { width: ~'calc(100% / 6)'; } .uk-child-width-auto\@s > * { width: auto; } .uk-child-width-expand\@s > :not([class*="uk-width"]) { flex: 1; min-width: 1px; } /* Reset expand */ .uk-child-width-1-1\@s > :not([class*="uk-width"]), .uk-child-width-1-2\@s > :not([class*="uk-width"]), .uk-child-width-1-3\@s > :not([class*="uk-width"]), .uk-child-width-1-4\@s > :not([class*="uk-width"]), .uk-child-width-1-5\@s > :not([class*="uk-width"]), .uk-child-width-1-6\@s > :not([class*="uk-width"]), .uk-child-width-auto\@s > :not([class*="uk-width"]) { flex: initial; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-child-width-1-1\@m > * { width: 100%; } .uk-child-width-1-2\@m > * { width: 50%; } .uk-child-width-1-3\@m > * { width: ~'calc(100% / 3)'; } .uk-child-width-1-4\@m > * { width: 25%; } .uk-child-width-1-5\@m > * { width: 20%; } .uk-child-width-1-6\@m > * { width: ~'calc(100% / 6)'; } .uk-child-width-auto\@m > * { width: auto; } .uk-child-width-expand\@m > :not([class*="uk-width"]) { flex: 1; min-width: 1px; } /* Reset expand */ .uk-child-width-1-1\@m > :not([class*="uk-width"]), .uk-child-width-1-2\@m > :not([class*="uk-width"]), .uk-child-width-1-3\@m > :not([class*="uk-width"]), .uk-child-width-1-4\@m > :not([class*="uk-width"]), .uk-child-width-1-5\@m > :not([class*="uk-width"]), .uk-child-width-1-6\@m > :not([class*="uk-width"]), .uk-child-width-auto\@m > :not([class*="uk-width"]) { flex: initial; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-child-width-1-1\@l > * { width: 100%; } .uk-child-width-1-2\@l > * { width: 50%; } .uk-child-width-1-3\@l > * { width: ~'calc(100% / 3)'; } .uk-child-width-1-4\@l > * { width: 25%; } .uk-child-width-1-5\@l > * { width: 20%; } .uk-child-width-1-6\@l > * { width: ~'calc(100% / 6)'; } .uk-child-width-auto\@l > * { width: auto; } .uk-child-width-expand\@l > :not([class*="uk-width"]) { flex: 1; min-width: 1px; } /* Reset expand */ .uk-child-width-1-1\@l > :not([class*="uk-width"]), .uk-child-width-1-2\@l > :not([class*="uk-width"]), .uk-child-width-1-3\@l > :not([class*="uk-width"]), .uk-child-width-1-4\@l > :not([class*="uk-width"]), .uk-child-width-1-5\@l > :not([class*="uk-width"]), .uk-child-width-1-6\@l > :not([class*="uk-width"]), .uk-child-width-auto\@l > :not([class*="uk-width"]) { flex: initial; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-child-width-1-1\@xl > * { width: 100%; } .uk-child-width-1-2\@xl > * { width: 50%; } .uk-child-width-1-3\@xl > * { width: ~'calc(100% / 3)'; } .uk-child-width-1-4\@xl > * { width: 25%; } .uk-child-width-1-5\@xl > * { width: 20%; } .uk-child-width-1-6\@xl > * { width: ~'calc(100% / 6)'; } .uk-child-width-auto\@xl > * { width: auto; } .uk-child-width-expand\@xl > :not([class*="uk-width"]) { flex: 1; min-width: 1px; } /* Reset expand */ .uk-child-width-1-1\@xl > :not([class*="uk-width"]), .uk-child-width-1-2\@xl > :not([class*="uk-width"]), .uk-child-width-1-3\@xl > :not([class*="uk-width"]), .uk-child-width-1-4\@xl > :not([class*="uk-width"]), .uk-child-width-1-5\@xl > :not([class*="uk-width"]), .uk-child-width-1-6\@xl > :not([class*="uk-width"]), .uk-child-width-auto\@xl > :not([class*="uk-width"]) { flex: initial; } } /* Single Widths ========================================================================== */ /* * 1. `max-width` is needed for the pixel-based classes */ [class*="uk-width"] { box-sizing: border-box; width: 100%; /* 1 */ max-width: 100%; } /* Halves */ .uk-width-1-2 { width: 50%; } /* Thirds */ .uk-width-1-3 { width: ~'calc(100% / 3)'; } .uk-width-2-3 { width: ~'calc(200% / 3)'; } /* Quarters */ .uk-width-1-4 { width: 25%; } .uk-width-3-4 { width: 75%; } /* Fifths */ .uk-width-1-5 { width: 20%; } .uk-width-2-5 { width: 40%; } .uk-width-3-5 { width: 60%; } .uk-width-4-5 { width: 80%; } /* Sixths */ .uk-width-1-6 { width: ~'calc(100% / 6)'; } .uk-width-5-6 { width: ~'calc(500% / 6)'; } /* Pixel */ .uk-width-small { width: @width-small-width; } .uk-width-medium { width: @width-medium-width; } .uk-width-large { width: @width-large-width; } .uk-width-xlarge { width: @width-xlarge-width; } .uk-width-2xlarge { width: @width-2xlarge-width; } .uk-width-xxlarge when (@deprecated = true) { width: @width-2xlarge-width; } /* Auto */ .uk-width-auto { width: auto; } /* Expand */ .uk-width-expand { flex: 1; min-width: 1px; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { /* Whole */ .uk-width-1-1\@s { width: 100%; } /* Halves */ .uk-width-1-2\@s { width: 50%; } /* Thirds */ .uk-width-1-3\@s { width: ~'calc(100% / 3)'; } .uk-width-2-3\@s { width: ~'calc(200% / 3)'; } /* Quarters */ .uk-width-1-4\@s { width: 25%; } .uk-width-3-4\@s { width: 75%; } /* Fifths */ .uk-width-1-5\@s { width: 20%; } .uk-width-2-5\@s { width: 40%; } .uk-width-3-5\@s { width: 60%; } .uk-width-4-5\@s { width: 80%; } /* Sixths */ .uk-width-1-6\@s { width: ~'calc(100% / 6)'; } .uk-width-5-6\@s { width: ~'calc(500% / 6)'; } /* Pixel */ .uk-width-small\@s { width: @width-small-width; } .uk-width-medium\@s { width: @width-medium-width; } .uk-width-large\@s { width: @width-large-width; } .uk-width-xlarge\@s { width: @width-xlarge-width; } .uk-width-2xlarge\@s { width: @width-2xlarge-width; } .uk-width-xxlarge\@s when (@deprecated = true) { width: @width-2xlarge-width; } /* Auto */ .uk-width-auto\@s { width: auto; } /* Expand */ .uk-width-expand\@s { flex: 1; min-width: 1px; } /* Reset expand */ .uk-width-1-1\@s, .uk-width-1-2\@s, .uk-width-1-3\@s, .uk-width-2-3\@s, .uk-width-1-4\@s, .uk-width-3-4\@s, .uk-width-1-5\@s, .uk-width-2-5\@s, .uk-width-3-5\@s, .uk-width-4-5\@s, .uk-width-1-6\@s, .uk-width-5-6\@s, .uk-width-small\@s, .uk-width-medium\@s, .uk-width-large\@s, .uk-width-xlarge\@s, .uk-width-2xlarge\@s, .uk-width-auto\@s { flex: initial; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { /* Whole */ .uk-width-1-1\@m { width: 100%; } /* Halves */ .uk-width-1-2\@m { width: 50%; } /* Thirds */ .uk-width-1-3\@m { width: ~'calc(100% / 3)'; } .uk-width-2-3\@m { width: ~'calc(200% / 3)'; } /* Quarters */ .uk-width-1-4\@m { width: 25%; } .uk-width-3-4\@m { width: 75%; } /* Fifths */ .uk-width-1-5\@m { width: 20%; } .uk-width-2-5\@m { width: 40%; } .uk-width-3-5\@m { width: 60%; } .uk-width-4-5\@m { width: 80%; } /* Sixths */ .uk-width-1-6\@m { width: ~'calc(100% / 6)'; } .uk-width-5-6\@m { width: ~'calc(500% / 6)'; } /* Pixel */ .uk-width-small\@m { width: @width-small-width; } .uk-width-medium\@m { width: @width-medium-width; } .uk-width-large\@m { width: @width-large-width; } .uk-width-xlarge\@m { width: @width-xlarge-width; } .uk-width-2xlarge\@m { width: @width-2xlarge-width; } .uk-width-xxlarge\@m when (@deprecated = true) { width: @width-2xlarge-width; } /* Auto */ .uk-width-auto\@m { width: auto; } /* Expand */ .uk-width-expand\@m { flex: 1; min-width: 1px; } /* Reset expand */ .uk-width-1-1\@m, .uk-width-1-2\@m, .uk-width-1-3\@m, .uk-width-2-3\@m, .uk-width-1-4\@m, .uk-width-3-4\@m, .uk-width-1-5\@m, .uk-width-2-5\@m, .uk-width-3-5\@m, .uk-width-4-5\@m, .uk-width-1-6\@m, .uk-width-5-6\@m, .uk-width-small\@m, .uk-width-medium\@m, .uk-width-large\@m, .uk-width-xlarge\@m, .uk-width-2xlarge\@m, .uk-width-auto\@m { flex: initial; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { /* Whole */ .uk-width-1-1\@l { width: 100%; } /* Halves */ .uk-width-1-2\@l { width: 50%; } /* Thirds */ .uk-width-1-3\@l { width: ~'calc(100% / 3)'; } .uk-width-2-3\@l { width: ~'calc(200% / 3)'; } /* Quarters */ .uk-width-1-4\@l { width: 25%; } .uk-width-3-4\@l { width: 75%; } /* Fifths */ .uk-width-1-5\@l { width: 20%; } .uk-width-2-5\@l { width: 40%; } .uk-width-3-5\@l { width: 60%; } .uk-width-4-5\@l { width: 80%; } /* Sixths */ .uk-width-1-6\@l { width: ~'calc(100% / 6)'; } .uk-width-5-6\@l { width: ~'calc(500% / 6)'; } /* Pixel */ .uk-width-small\@l { width: @width-small-width; } .uk-width-medium\@l { width: @width-medium-width; } .uk-width-large\@l { width: @width-large-width; } .uk-width-xlarge\@l { width: @width-xlarge-width; } .uk-width-2xlarge\@l { width: @width-2xlarge-width; } .uk-width-xxlarge\@l when (@deprecated = true) { width: @width-2xlarge-width; } /* Auto */ .uk-width-auto\@l { width: auto; } /* Expand */ .uk-width-expand\@l { flex: 1; min-width: 1px; } /* Reset expand */ .uk-width-1-1\@l, .uk-width-1-2\@l, .uk-width-1-3\@l, .uk-width-2-3\@l, .uk-width-1-4\@l, .uk-width-3-4\@l, .uk-width-1-5\@l, .uk-width-2-5\@l, .uk-width-3-5\@l, .uk-width-4-5\@l, .uk-width-1-6\@l, .uk-width-5-6\@l, .uk-width-small\@l, .uk-width-medium\@l, .uk-width-large\@l, .uk-width-xlarge\@l, .uk-width-2xlarge\@l, .uk-width-auto\@l { flex: initial; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { /* Whole */ .uk-width-1-1\@xl { width: 100%; } /* Halves */ .uk-width-1-2\@xl { width: 50%; } /* Thirds */ .uk-width-1-3\@xl { width: ~'calc(100% / 3)'; } .uk-width-2-3\@xl { width: ~'calc(200% / 3)'; } /* Quarters */ .uk-width-1-4\@xl { width: 25%; } .uk-width-3-4\@xl { width: 75%; } /* Fifths */ .uk-width-1-5\@xl { width: 20%; } .uk-width-2-5\@xl { width: 40%; } .uk-width-3-5\@xl { width: 60%; } .uk-width-4-5\@xl { width: 80%; } /* Sixths */ .uk-width-1-6\@xl { width: ~'calc(100% / 6)'; } .uk-width-5-6\@xl { width: ~'calc(500% / 6)'; } /* Pixel */ .uk-width-small\@xl { width: @width-small-width; } .uk-width-medium\@xl { width: @width-medium-width; } .uk-width-large\@xl { width: @width-large-width; } .uk-width-xlarge\@xl { width: @width-xlarge-width; } .uk-width-2xlarge\@xl { width: @width-2xlarge-width; } .uk-width-xxlarge\@xl when (@deprecated = true) { width: @width-2xlarge-width; } /* Auto */ .uk-width-auto\@xl { width: auto; } /* Expand */ .uk-width-expand\@xl { flex: 1; min-width: 1px; } /* Reset expand */ .uk-width-1-1\@xl, .uk-width-1-2\@xl, .uk-width-1-3\@xl, .uk-width-2-3\@xl, .uk-width-1-4\@xl, .uk-width-3-4\@xl, .uk-width-1-5\@xl, .uk-width-2-5\@xl, .uk-width-3-5\@xl, .uk-width-4-5\@xl, .uk-width-1-6\@xl, .uk-width-5-6\@xl, .uk-width-small\@xl, .uk-width-medium\@xl, .uk-width-large\@xl, .uk-width-xlarge\@xl, .uk-width-2xlarge\@xl, .uk-width-auto\@xl { flex: initial; } } /* Intrinsic Widths ========================================================================== */ .uk-width-max-content { width: max-content; } .uk-width-min-content { width: min-content; } // Hooks // ======================================================================== .hook-width-misc(); .hook-width-misc() {} assets/uikit/src/less/components/flex.less000064400000016553151666572360014776 0ustar00// Name: Flex // Description: Utilities for layouts based on flexbox // // Component: `uk-flex-*` // // ======================================================================== /* ======================================================================== Component: Flex ========================================================================== */ .uk-flex { display: flex; } .uk-flex-inline { display: inline-flex; } /* Alignment ========================================================================== */ /* * Align items along the main axis of the current line of the flex container * Row: Horizontal */ // Default .uk-flex-left { justify-content: flex-start; } .uk-flex-center { justify-content: center; } .uk-flex-right { justify-content: flex-end; } .uk-flex-between { justify-content: space-between; } .uk-flex-around { justify-content: space-around; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-flex-left\@s { justify-content: flex-start; } .uk-flex-center\@s { justify-content: center; } .uk-flex-right\@s { justify-content: flex-end; } .uk-flex-between\@s { justify-content: space-between; } .uk-flex-around\@s { justify-content: space-around; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-flex-left\@m { justify-content: flex-start; } .uk-flex-center\@m { justify-content: center; } .uk-flex-right\@m { justify-content: flex-end; } .uk-flex-between\@m { justify-content: space-between; } .uk-flex-around\@m { justify-content: space-around; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-flex-left\@l { justify-content: flex-start; } .uk-flex-center\@l { justify-content: center; } .uk-flex-right\@l { justify-content: flex-end; } .uk-flex-between\@l { justify-content: space-between; } .uk-flex-around\@l { justify-content: space-around; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-flex-left\@xl { justify-content: flex-start; } .uk-flex-center\@xl { justify-content: center; } .uk-flex-right\@xl { justify-content: flex-end; } .uk-flex-between\@xl { justify-content: space-between; } .uk-flex-around\@xl { justify-content: space-around; } } /* * Align items in the cross axis of the current line of the flex container * Row: Vertical */ // Default .uk-flex-stretch { align-items: stretch; } .uk-flex-top { align-items: flex-start; } .uk-flex-middle { align-items: center; } .uk-flex-bottom { align-items: flex-end; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-flex-stretch\@s { align-items: stretch; } .uk-flex-top\@s { align-items: flex-start; } .uk-flex-middle\@s { align-items: center; } .uk-flex-bottom\@s { align-items: flex-end; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-flex-stretch\@m { align-items: stretch; } .uk-flex-top\@m { align-items: flex-start; } .uk-flex-middle\@m { align-items: center; } .uk-flex-bottom\@m { align-items: flex-end; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-flex-stretch\@l { align-items: stretch; } .uk-flex-top\@l { align-items: flex-start; } .uk-flex-middle\@l { align-items: center; } .uk-flex-bottom\@l { align-items: flex-end; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-flex-stretch\@xl { align-items: stretch; } .uk-flex-top\@xl { align-items: flex-start; } .uk-flex-middle\@xl { align-items: center; } .uk-flex-bottom\@xl { align-items: flex-end; } } /* Direction ========================================================================== */ // Default .uk-flex-row { flex-direction: row; } .uk-flex-row-reverse { flex-direction: row-reverse; } .uk-flex-column { flex-direction: column; } .uk-flex-column-reverse { flex-direction: column-reverse; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-flex-row\@s { flex-direction: row; } .uk-flex-column\@s { flex-direction: column; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-flex-row\@m { flex-direction: row; } .uk-flex-column\@m { flex-direction: column; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-flex-row\@l { flex-direction: row; } .uk-flex-column\@l { flex-direction: column; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-flex-row\@xl { flex-direction: row; } .uk-flex-column\@xl { flex-direction: column; } } /* Wrap ========================================================================== */ // Default .uk-flex-nowrap { flex-wrap: nowrap; } .uk-flex-wrap { flex-wrap: wrap; } .uk-flex-wrap-reverse { flex-wrap: wrap-reverse; } /* * Aligns items within the flex container when there is extra space in the cross-axis * Only works if there is more than one line of flex items */ // Default .uk-flex-wrap-stretch { align-content: stretch; } .uk-flex-wrap-top { align-content: flex-start; } .uk-flex-wrap-middle { align-content: center; } .uk-flex-wrap-bottom { align-content: flex-end; } .uk-flex-wrap-between { align-content: space-between; } .uk-flex-wrap-around { align-content: space-around; } /* Item ordering ========================================================================== */ /* * Default is 0 */ .uk-flex-first { order: -1;} .uk-flex-last { order: 99;} /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-flex-first\@s { order: -1; } .uk-flex-last\@s { order: 99; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-flex-first\@m { order: -1; } .uk-flex-last\@m { order: 99; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-flex-first\@l { order: -1; } .uk-flex-last\@l { order: 99; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-flex-first\@xl { order: -1; } .uk-flex-last\@xl { order: 99; } } /* Item dimensions ========================================================================== */ /* * Initial: 0 1 auto * Content dimensions, but shrinks */ .uk-flex-initial { flex: initial; } /* * No Flex: 0 0 auto * Content dimensions */ .uk-flex-none { flex: none; } /* * Relative Flex: 1 1 auto * Space is allocated considering content */ .uk-flex-auto { flex: auto; } /* * Absolute Flex: 1 1 0% * Space is allocated solely based on flex */ .uk-flex-1 { flex: 1; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-flex-initial\@s { flex: initial; } .uk-flex-none\@s { flex: none; } .uk-flex-1\@s { flex: 1; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-flex-initial\@m { flex: initial; } .uk-flex-none\@m { flex: none; } .uk-flex-1\@m { flex: 1; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-flex-initial\@l { flex: initial; } .uk-flex-none\@l { flex: none; } .uk-flex-1\@l { flex: 1; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-flex-initial\@xl { flex: initial; } .uk-flex-none\@xl { flex: none; } .uk-flex-1\@xl { flex: 1; } } // Hooks // ======================================================================== .hook-flex-misc(); .hook-flex-misc() {} assets/uikit/src/less/components/badge.less000064400000004310151666572360015066 0ustar00// Name: Badge // Description: Component to create notification badges // // Component: `uk-badge` // // ======================================================================== // Variables // ======================================================================== @badge-size: 18px; @badge-padding-vertical: 0; @badge-padding-horizontal: 5px; @badge-border-radius: 500px; @badge-background: @global-primary-background; @badge-color: @global-inverse-color; @badge-font-size: 11px; /* ======================================================================== Component: Badge ========================================================================== */ /* * 1. Style * 2. Center child vertically and horizontally */ .uk-badge { box-sizing: border-box; min-width: @badge-size; height: @badge-size; padding: @badge-padding-vertical @badge-padding-horizontal; border-radius: @badge-border-radius; vertical-align: middle; /* 1 */ background: @badge-background; color: @badge-color !important; font-size: @badge-font-size; /* 2 */ display: inline-flex; justify-content: center; align-items: center; line-height: 0; .hook-badge(); } /* * Required for `a` */ .uk-badge:hover { text-decoration: none; .hook-badge-hover(); } // Hooks // ======================================================================== .hook-badge-misc(); .hook-badge() {} .hook-badge-hover() {} .hook-badge-misc() {} // Inverse // ======================================================================== @inverse-badge-background: @inverse-global-primary-background; @inverse-badge-color: @inverse-global-inverse-color; .hook-inverse() { .uk-badge { background-color: @inverse-badge-background; color: @inverse-badge-color !important; .hook-inverse-badge(); } .uk-badge:hover { .hook-inverse-badge-hover(); } } .hook-inverse-badge() {} .hook-inverse-badge-hover() {} assets/uikit/src/less/components/lightbox.less000064400000012121151666572360015643 0ustar00// Name: Lightbox // Description: Component to create an lightbox image gallery // // Component: `uk-lightbox` // // Sub-objects: `uk-lightbox-page` // `uk-lightbox-items` // `uk-lightbox-items-fit` // `uk-lightbox-thumbnav` // `uk-lightbox-thumbnav-vertical` // `uk-lightbox-dotnav` // `uk-lightbox-caption` // `uk-lightbox-counter` // `uk-lightbox-iframe` // `uk-lightbox-zoom` // // States: `uk-open` // // ======================================================================== // Variables // ======================================================================== @lightbox-z-index: @global-z-index + 10; @lightbox-background: #000; @lightbox-color-mode: light; @lightbox-focus-outline: rgba(255,255,255,0.7); @lightbox-item-max-width: 100vw; @lightbox-item-max-height: 100vh; @lightbox-thumbnav-vertical-width: 100px; @lightbox-thumbnav-height: 100px; @lightbox-caption-padding-vertical: 10px; @lightbox-caption-padding-horizontal: 10px; @lightbox-caption-background: rgba(0,0,0,0.3); @lightbox-caption-color: rgba(255,255,255,0.7); /* ======================================================================== Component: Lightbox ========================================================================== */ /* * 1. Hide by default * 2. Set position * 3. Allow scrolling for the modal dialog * 4. Horizontal padding * 5. Mask the background page * 6. Fade-in transition * 7. Prevent cancellation of pointer events while dragging */ .uk-lightbox { --uk-inverse: @lightbox-color-mode; /* 1 */ display: none; /* 2 */ position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: @lightbox-z-index; /* 5 */ background: @lightbox-background; /* 6 */ opacity: 0; transition: opacity 0.15s linear; /* 7 */ touch-action: pinch-zoom; .hook-lightbox(); } /* * Open * 1. Center child * 2. Fade-in */ .uk-lightbox.uk-open { display: block; /* 2 */ opacity: 1; } /* * Focus */ .uk-lightbox :focus-visible { outline-color: @lightbox-focus-outline; } /* Page ========================================================================== */ /* * Prevent scrollbars */ .uk-lightbox-page { overflow: hidden; } /* Items ========================================================================== */ /* * Reset list */ .uk-lightbox-items { margin: 0; padding: 0; list-style: none; } /* * 1. Center child within the viewport * 2. Not visible by default * 3. Optimize animation * 4. Responsiveness * Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera */ .uk-lightbox-items > * { /* 1 */ position: absolute; top: 0; right: 0; bottom: 0; left: 0; /* 2 */ display: none; justify-content: center; align-items: flex-start; /* 3 */ will-change: transform, opacity; /* 4 */ overflow: auto; .hook-lightbox-item(); } /* 2 */ .uk-lightbox-items > .uk-active { display: flex; } .uk-lightbox-items-fit > * { align-items: center; } /* 4 */ .uk-lightbox-items-fit > * > * { max-width: @lightbox-item-max-width; max-height: @lightbox-item-max-height; } .uk-lightbox-items-fit > * > :not(iframe) { width: auto; height: auto; } /* Zoom Cursor */ .uk-lightbox-items.uk-lightbox-items-fit .uk-lightbox-zoom:hover { cursor: zoom-in; } .uk-lightbox-items:not(.uk-lightbox-items-fit) .uk-lightbox-zoom:hover { cursor: zoom-out; } /* Navs ========================================================================== */ .uk-lightbox-thumbnav-vertical :where(img, video) { max-width: @lightbox-thumbnav-vertical-width; } .uk-lightbox-thumbnav:not(.uk-lightbox-thumbnav-vertical) :where(img, video) { max-height: @lightbox-thumbnav-height; } .uk-lightbox-thumbnav:empty, .uk-lightbox-dotnav:empty { display: none; } /* Caption ========================================================================== */ .uk-lightbox-caption:empty { display: none; } .uk-lightbox-caption { padding: @lightbox-caption-padding-vertical @lightbox-caption-padding-horizontal; background: @lightbox-caption-background; color: @lightbox-caption-color; .hook-lightbox-caption(); } .uk-lightbox-caption > * { color: @lightbox-caption-color; } /* Counter ========================================================================== */ .uk-lightbox-counter:empty { display: none; } /* Iframe ========================================================================== */ .uk-lightbox-iframe { width: 80%; height: 80%; } // Hooks // ======================================================================== .hook-lightbox-misc(); .hook-lightbox() {} .hook-lightbox-item() {} .hook-lightbox-caption() {} .hook-lightbox-misc() {} assets/uikit/src/less/components/drop.less000064400000003606151666572360014777 0ustar00// Name: Drop // Description: Component to position any element next to any other element. // // Component: `uk-drop` // // Sub-objects: `uk-drop-parent-icon` // // Modifiers: `uk-drop-stack` // `uk-drop-grid` // // States: `uk-open` // // Uses: Animation // // ======================================================================== // Variables // ======================================================================== @drop-z-index: @global-z-index + 20; @drop-margin: @global-margin; @drop-viewport-margin: 15px; @drop-width: 300px; @drop-parent-icon-margin-left: 0.25em; /* ======================================================================== Component: Drop ========================================================================== */ /* * 1. Hide by default * 2. Set position * 3. Set a default width */ .uk-drop { /* 1 */ display: none; /* 2 */ position: absolute; z-index: @drop-z-index; --uk-position-offset: @drop-margin; --uk-position-viewport-offset: @drop-viewport-margin; /* 3 */ box-sizing: border-box; width: @drop-width; } /* Show */ .uk-drop.uk-open { display: block; } /* Grid modifiers ========================================================================== */ .uk-drop-stack .uk-drop-grid > * { width: 100% !important; } /* Parent icon ========================================================================== */ .uk-drop-parent-icon { margin-left: @drop-parent-icon-margin-left; transition: transform 0.3s ease-out; } [aria-expanded="true"] > .uk-drop-parent-icon { transform: rotateX(180deg); } // Hooks // ======================================================================== .hook-drop-misc(); .hook-drop-misc() {} assets/uikit/src/less/components/card.less000064400000030177151666572360014747 0ustar00// Name: Card // Description: Component to create boxed content containers // // Component: `uk-card` // // Sub-objects: `uk-card-body` // `uk-card-header` // `uk-card-footer` // `uk-card-media-*` // `uk-card-title` // `uk-card-badge` // // Modifiers: `uk-card-hover` // `uk-card-default` // `uk-card-primary` // `uk-card-secondary` // `uk-card-small` // `uk-card-large` // // Uses: `uk-grid-stack` // // ======================================================================== // Variables // ======================================================================== @card-body-padding-horizontal: @global-gutter; @card-body-padding-vertical: @global-gutter; @card-body-padding-horizontal-l: @global-medium-gutter; @card-body-padding-vertical-l: @global-medium-gutter; @card-header-padding-horizontal: @global-gutter; @card-header-padding-vertical: round((@global-gutter / 2)); @card-header-padding-horizontal-l: @global-medium-gutter; @card-header-padding-vertical-l: round((@global-medium-gutter / 2)); @card-footer-padding-horizontal: @global-gutter; @card-footer-padding-vertical: (@global-gutter / 2); @card-footer-padding-horizontal-l: @global-medium-gutter; @card-footer-padding-vertical-l: round((@global-medium-gutter / 2)); @card-title-font-size: @global-large-font-size; @card-title-line-height: 1.4; @card-badge-top: 15px; @card-badge-right: 15px; @card-badge-height: 22px; @card-badge-padding-horizontal: 10px; @card-badge-background: @global-primary-background; @card-badge-color: @global-inverse-color; @card-badge-font-size: @global-small-font-size; @card-hover-background: @global-muted-background; @card-default-background: @global-muted-background; @card-default-color: @global-color; @card-default-title-color: @global-emphasis-color; @card-default-hover-background: darken(@card-default-background, 5%); @card-default-color-mode: dark; @card-primary-background: @global-primary-background; @card-primary-color: @global-inverse-color; @card-primary-title-color: @card-primary-color; @card-primary-hover-background: darken(@card-primary-background, 5%); @card-primary-color-mode: light; @card-secondary-background: @global-secondary-background; @card-secondary-color: @global-inverse-color; @card-secondary-title-color: @card-secondary-color; @card-secondary-hover-background: darken(@card-secondary-background, 5%); @card-secondary-color-mode: light; @card-small-body-padding-horizontal: @global-margin; @card-small-body-padding-vertical: @global-margin; @card-small-header-padding-horizontal: @global-margin; @card-small-header-padding-vertical: round((@global-margin / 1.5)); @card-small-footer-padding-horizontal: @global-margin; @card-small-footer-padding-vertical: round((@global-margin / 1.5)); @card-large-body-padding-horizontal-l: @global-large-gutter; @card-large-body-padding-vertical-l: @global-large-gutter; @card-large-header-padding-horizontal-l: @global-large-gutter; @card-large-header-padding-vertical-l: round((@global-large-gutter / 2)); @card-large-footer-padding-horizontal-l: @global-large-gutter; @card-large-footer-padding-vertical-l: round((@global-large-gutter / 2)); /* ======================================================================== Component: Card ========================================================================== */ .uk-card { position: relative; box-sizing: border-box; .hook-card(); } /* Sections ========================================================================== */ .uk-card-body { display: flow-root; padding: @card-body-padding-vertical @card-body-padding-horizontal; .hook-card-body(); } .uk-card-header { display: flow-root; padding: @card-header-padding-vertical @card-header-padding-horizontal; .hook-card-header(); } .uk-card-footer { display: flow-root; padding: @card-footer-padding-vertical @card-footer-padding-horizontal; .hook-card-footer(); } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-card-body { padding: @card-body-padding-vertical-l @card-body-padding-horizontal-l; } .uk-card-header { padding: @card-header-padding-vertical-l @card-header-padding-horizontal-l; } .uk-card-footer { padding: @card-footer-padding-vertical-l @card-footer-padding-horizontal-l; } } /* * Remove margin from the last-child */ .uk-card-body > :last-child, .uk-card-header > :last-child, .uk-card-footer > :last-child { margin-bottom: 0; } /* Media ========================================================================== */ /* * Reserved alignment modifier to style the media element, e.g. with `border-radius` * Implemented by the theme */ [class*="uk-card-media"] { .hook-card-media(); } .uk-card-media-top, .uk-grid-stack > .uk-card-media-left, .uk-grid-stack > .uk-card-media-right { .hook-card-media-top(); } .uk-card-media-bottom { .hook-card-media-bottom(); } :not(.uk-grid-stack) > .uk-card-media-left { .hook-card-media-left(); } :not(.uk-grid-stack) > .uk-card-media-right { .hook-card-media-right(); } /* Title ========================================================================== */ .uk-card-title { font-size: @card-title-font-size; line-height: @card-title-line-height; .hook-card-title(); } /* Badge ========================================================================== */ /* * 1. Position * 2. Size * 3. Style * 4. Center child vertically */ .uk-card-badge { /* 1 */ position: absolute; top: @card-badge-top; right: @card-badge-right; z-index: 1; /* 2 */ height: @card-badge-height; padding: 0 @card-badge-padding-horizontal; /* 3 */ background: @card-badge-background; color: @card-badge-color; font-size: @card-badge-font-size; /* 4 */ display: flex; justify-content: center; align-items: center; line-height: 0; .hook-card-badge(); } /* * Remove margin from adjacent element */ .uk-card-badge:first-child + * { margin-top: 0; } /* Hover modifier ========================================================================== */ .uk-card-hover:not(.uk-card-default):not(.uk-card-primary):not(.uk-card-secondary):hover { background-color: @card-hover-background; .hook-card-hover(); } /* Style modifiers ========================================================================== */ /* * Default * Note: Header and Footer are only implemented for the default style */ .uk-card-default { --uk-inverse: @card-default-color-mode; background-color: @card-default-background; color: @card-default-color; .hook-card-default(); } .uk-card-default .uk-card-title { color: @card-default-title-color; .hook-card-default-title(); } .uk-card-default.uk-card-hover:hover { background-color: @card-default-hover-background; .hook-card-default-hover(); } .uk-card-default .uk-card-header { .hook-card-default-header(); } .uk-card-default .uk-card-footer { .hook-card-default-footer(); } // Color Mode .uk-card-default.uk-card-body:extend(.uk-light all) when (@card-default-color-mode = light) {} .uk-card-default > :not([class*="uk-card-media"]):extend(.uk-light all) when (@card-default-color-mode = light) {} .uk-card-default.uk-card-body:extend(.uk-dark all) when (@card-default-color-mode = dark) {} .uk-card-default > :not([class*="uk-card-media"]):extend(.uk-dark all) when (@card-default-color-mode = dark) {} /* * Primary */ .uk-card-primary { --uk-inverse: @card-primary-color-mode; background-color: @card-primary-background; color: @card-primary-color; .hook-card-primary(); } .uk-card-primary .uk-card-title { color: @card-primary-title-color; .hook-card-primary-title(); } .uk-card-primary.uk-card-hover:hover { background-color: @card-primary-hover-background; .hook-card-primary-hover(); } // Color Mode .uk-card-primary.uk-card-body:extend(.uk-light all) when (@card-primary-color-mode = light) {} .uk-card-primary > :not([class*="uk-card-media"]):extend(.uk-light all) when (@card-primary-color-mode = light) {} .uk-card-primary.uk-card-body:extend(.uk-dark all) when (@card-primary-color-mode = dark) {} .uk-card-primary > :not([class*="uk-card-media"]):extend(.uk-dark all) when (@card-primary-color-mode = dark) {} /* * Secondary */ .uk-card-secondary { --uk-inverse: @card-secondary-color-mode; background-color: @card-secondary-background; color: @card-secondary-color; .hook-card-secondary(); } .uk-card-secondary .uk-card-title { color: @card-secondary-title-color; .hook-card-secondary-title(); } .uk-card-secondary.uk-card-hover:hover { background-color: @card-secondary-hover-background; .hook-card-secondary-hover(); } // Color Mode .uk-card-secondary.uk-card-body:extend(.uk-light all) when (@card-secondary-color-mode = light) {} .uk-card-secondary > :not([class*="uk-card-media"]):extend(.uk-light all) when (@card-secondary-color-mode = light) {} .uk-card-secondary.uk-card-body:extend(.uk-dark all) when (@card-secondary-color-mode = dark) {} .uk-card-secondary > :not([class*="uk-card-media"]):extend(.uk-dark all) when (@card-secondary-color-mode = dark) {} /* Size modifier ========================================================================== */ /* * Small */ .uk-card-small.uk-card-body, .uk-card-small .uk-card-body { padding: @card-small-body-padding-vertical @card-small-body-padding-horizontal; } .uk-card-small .uk-card-header { padding: @card-small-header-padding-vertical @card-small-header-padding-horizontal; } .uk-card-small .uk-card-footer { padding: @card-small-footer-padding-vertical @card-small-footer-padding-horizontal; } /* * Large */ /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-card-large.uk-card-body, .uk-card-large .uk-card-body { padding: @card-large-body-padding-vertical-l @card-large-body-padding-horizontal-l; } .uk-card-large .uk-card-header { padding: @card-large-header-padding-vertical-l @card-large-header-padding-horizontal-l; } .uk-card-large .uk-card-footer { padding: @card-large-footer-padding-vertical-l @card-large-footer-padding-horizontal-l; } } // Hooks // ======================================================================== .hook-card-misc(); .hook-card() {} .hook-card-body() {} .hook-card-header() {} .hook-card-footer() {} .hook-card-media() {} .hook-card-media-top() {} .hook-card-media-bottom() {} .hook-card-media-left() {} .hook-card-media-right() {} .hook-card-title() {} .hook-card-badge() {} .hook-card-hover() {} .hook-card-default() {} .hook-card-default-title() {} .hook-card-default-hover() {} .hook-card-default-header() {} .hook-card-default-footer() {} .hook-card-primary() {} .hook-card-primary-title() {} .hook-card-primary-hover() {} .hook-card-secondary() {} .hook-card-secondary-title() {} .hook-card-secondary-hover() {} .hook-card-misc() {} // Inverse // ======================================================================== @inverse-card-badge-background: @inverse-global-primary-background; @inverse-card-badge-color: @inverse-global-inverse-color; .hook-inverse() { &.uk-card-badge { background-color: @inverse-card-badge-background; color: @inverse-card-badge-color; .hook-inverse-card-badge(); } } .hook-inverse-card-badge() {} assets/uikit/src/less/components/spinner.less000064400000003640151666572360015507 0ustar00// Name: Spinner // Description: Component to create a loading spinner // // Component: `uk-spinner` // // ======================================================================== // Variables // ======================================================================== @spinner-size: 30px; @spinner-stroke-width: 1; @spinner-radius: floor(((@spinner-size - @spinner-stroke-width) / 2)); // Minus stroke width to prevent overflow clipping @spinner-circumference: round(2 * 3.141 * @spinner-radius); @spinner-duration: 1.4s; /* ======================================================================== Component: Spinner ========================================================================== */ /* * Adopts `uk-icon` */ .uk-spinner { .hook-spinner(); } /* SVG ========================================================================== */ .uk-spinner > * { animation: uk-spinner-rotate @spinner-duration linear infinite; } @keyframes uk-spinner-rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(270deg); } } /* * Circle */ .uk-spinner > * > * { stroke-dasharray: @spinner-circumference; stroke-dashoffset: 0; transform-origin: center; animation: uk-spinner-dash @spinner-duration ease-in-out infinite; stroke-width: @spinner-stroke-width; stroke-linecap: round; } @keyframes uk-spinner-dash { 0% { stroke-dashoffset: @spinner-circumference; } 50% { stroke-dashoffset: (@spinner-circumference / 4); transform: rotate(135deg); } 100% { stroke-dashoffset: @spinner-circumference; transform: rotate(450deg); } } // Hooks // ======================================================================== .hook-spinner-misc(); .hook-spinner() {} .hook-spinner-misc() {} assets/uikit/src/less/components/align.less000064400000005421151666572360015122 0ustar00// Name: Align // Description: Utilities to align embedded content // // Component: `uk-align-left-*` // `uk-align-right-*` // `uk-align-center` // // ======================================================================== // Variables // ======================================================================== @align-margin-horizontal: @global-gutter; @align-margin-vertical: @global-gutter; @align-margin-horizontal-l: @global-medium-gutter; /* ======================================================================== Component: Align ========================================================================== */ /* * Default */ [class*="uk-align"] { display: block; margin-bottom: @align-margin-vertical; } * + [class*="uk-align"] { margin-top: @align-margin-vertical; } /* * Center */ .uk-align-center { margin-left: auto; margin-right: auto; } /* * Left/Right */ .uk-align-left { margin-top: 0; margin-right: @align-margin-horizontal; float: left; } .uk-align-right { margin-top: 0; margin-left: @align-margin-horizontal; float: right; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-align-left\@s { margin-top: 0; margin-right: @align-margin-horizontal; float: left; } .uk-align-right\@s { margin-top: 0; margin-left: @align-margin-horizontal; float: right; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-align-left\@m { margin-top: 0; margin-right: @align-margin-horizontal; float: left; } .uk-align-right\@m { margin-top: 0; margin-left: @align-margin-horizontal; float: right; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-align-left\@l { margin-top: 0; float: left; } .uk-align-right\@l { margin-top: 0; float: right; } .uk-align-left, .uk-align-left\@s, .uk-align-left\@m, .uk-align-left\@l { margin-right: @align-margin-horizontal-l; } .uk-align-right, .uk-align-right\@s, .uk-align-right\@m, .uk-align-right\@l { margin-left: @align-margin-horizontal-l; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-align-left\@xl { margin-top: 0; margin-right: @align-margin-horizontal-l; float: left; } .uk-align-right\@xl { margin-top: 0; margin-left: @align-margin-horizontal-l; float: right; } } // Hooks // ======================================================================== .hook-align-misc(); .hook-align-misc() {} assets/uikit/src/less/components/background.less000064400000011107151666572360016145 0ustar00// Name: Background // Description: Utilities for backgrounds // // Component: `uk-background-*` // // ======================================================================== // Variables // ======================================================================== @background-default-background: @global-background; @background-muted-background: @global-muted-background; @background-primary-background: @global-primary-background; @background-secondary-background: @global-secondary-background; /* ======================================================================== Component: Background ========================================================================== */ /* Color ========================================================================== */ .uk-background-default { background-color: @background-default-background; } .uk-background-muted { background-color: @background-muted-background; } .uk-background-primary { background-color: @background-primary-background; } .uk-background-secondary { background-color: @background-secondary-background; } /* Size ========================================================================== */ .uk-background-cover, .uk-background-contain, .uk-background-width-1-1, .uk-background-height-1-1 { background-position: 50% 50%; background-repeat: no-repeat; } .uk-background-cover { background-size: cover; } .uk-background-contain { background-size: contain; } .uk-background-width-1-1 { background-size: 100%; } .uk-background-height-1-1 { background-size: auto 100%; } /* Position ========================================================================== */ .uk-background-top-left { background-position: 0 0; } .uk-background-top-center { background-position: 50% 0; } .uk-background-top-right { background-position: 100% 0; } .uk-background-center-left { background-position: 0 50%; } .uk-background-center-center { background-position: 50% 50%; } .uk-background-center-right { background-position: 100% 50%; } .uk-background-bottom-left { background-position: 0 100%; } .uk-background-bottom-center { background-position: 50% 100%; } .uk-background-bottom-right { background-position: 100% 100%; } /* Repeat ========================================================================== */ .uk-background-norepeat { background-repeat: no-repeat; } /* Attachment ========================================================================== */ .uk-background-fixed { background-attachment: fixed; } /* * Exclude touch devices because `fixed` doesn't work on iOS and Android */ @media (pointer: coarse) { .uk-background-fixed { background-attachment: scroll; } } /* Image ========================================================================== */ /* Phone portrait and smaller */ @media (max-width: @breakpoint-xsmall-max) { .uk-background-image\@s { background-image: none !important; } } /* Phone landscape and smaller */ @media (max-width: @breakpoint-small-max) { .uk-background-image\@m { background-image: none !important; } } /* Tablet landscape and smaller */ @media (max-width: @breakpoint-medium-max) { .uk-background-image\@l { background-image: none !important; } } /* Desktop and smaller */ @media (max-width: @breakpoint-large-max) { .uk-background-image\@xl {background-image: none !important; } } /* Blend modes ========================================================================== */ .uk-background-blend-multiply { background-blend-mode: multiply; } .uk-background-blend-screen { background-blend-mode: screen; } .uk-background-blend-overlay { background-blend-mode: overlay; } .uk-background-blend-darken { background-blend-mode: darken; } .uk-background-blend-lighten { background-blend-mode: lighten; } .uk-background-blend-color-dodge { background-blend-mode: color-dodge; } .uk-background-blend-color-burn { background-blend-mode: color-burn; } .uk-background-blend-hard-light { background-blend-mode: hard-light; } .uk-background-blend-soft-light { background-blend-mode: soft-light; } .uk-background-blend-difference { background-blend-mode: difference; } .uk-background-blend-exclusion { background-blend-mode: exclusion; } .uk-background-blend-hue { background-blend-mode: hue; } .uk-background-blend-saturation { background-blend-mode: saturation; } .uk-background-blend-color { background-blend-mode: color; } .uk-background-blend-luminosity { background-blend-mode: luminosity; } // Hooks // ======================================================================== .hook-background-misc(); .hook-background-misc() {} assets/uikit/src/less/components/sortable.less000064400000004041151666572360015640 0ustar00// Name: Sortable // Description: Component to create sortable grids and lists // // Component: `uk-sortable` // // Sub-objects: `uk-sortable-drag` // `uk-sortable-placeholder` // `uk-sortable-handle` // // Modifiers: `uk-sortable-empty` // // States: `uk-drag` // // ======================================================================== // Variables // ======================================================================== @sortable-dragged-z-index: @global-z-index + 50; @sortable-placeholder-opacity: 0; @sortable-empty-height: 50px; /* ======================================================================== Component: Sortable ========================================================================== */ .uk-sortable { position: relative; .hook-sortable(); } /* * Remove margin from the last-child */ .uk-sortable > :last-child { margin-bottom: 0; } /* Drag ========================================================================== */ .uk-sortable-drag { position: fixed !important; z-index: @sortable-dragged-z-index !important; pointer-events: none; .hook-sortable-drag(); } /* Placeholder ========================================================================== */ .uk-sortable-placeholder { opacity: @sortable-placeholder-opacity; pointer-events: none; .hook-sortable-placeholder(); } /* Empty modifier ========================================================================== */ .uk-sortable-empty { min-height: @sortable-empty-height; .hook-sortable-empty(); } /* Handle ========================================================================== */ /* Hover */ .uk-sortable-handle:hover { cursor: move; } // Hooks // ======================================================================== .hook-sortable-misc(); .hook-sortable() {} .hook-sortable-drag() {} .hook-sortable-placeholder() {} .hook-sortable-empty() {} .hook-sortable-misc() {} assets/uikit/src/less/components/svg.less000064400000001732151666572360014630 0ustar00// Name: SVG // Description: Component to style SVGs // // Component: `uk-svg` // // ======================================================================== /* ======================================================================== Component: SVG ========================================================================== */ /* * 1. Fill all SVG elements with the current text color if no `fill` attribute is set * 2. Set the fill and stroke color of all SVG elements to the current text color */ /* 1 */ .uk-svg, /* 2 */ .uk-svg:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) { fill: currentcolor; } .uk-svg:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) { stroke: currentcolor; } /* * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835 */ .uk-svg { transform: translate(0, 0); } // Hooks // ======================================================================== .hook-svg-misc(); .hook-svg-misc() {} assets/uikit/src/less/components/sticky.less000064400000003222151666572360015333 0ustar00// Name: Sticky // Description: Component to make elements sticky in the viewport // // Component: `uk-sticky` // // Modifier: `uk-sticky-fixed` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @sticky-z-index: @global-z-index - 20; @sticky-animation-duration: 0.2s; @sticky-reverse-animation-duration: 0.2s; /* ======================================================================== Component: Sticky ========================================================================== */ /* * 1. Create position context so it's t the same like when fixed. * 2. Create stacking context already when not sticky to have the same context * for position set to `sticky` and `relative` * 2. More robust if padding and border are used and the sticky height is transitioned */ .uk-sticky { /* 1 */ position: relative; /* 2 */ z-index: @sticky-z-index; /* 3 */ box-sizing: border-box; } .uk-sticky-fixed { margin: 0 !important; } /* * Faster animations */ .uk-sticky[class*="uk-animation-"] { animation-duration: @sticky-animation-duration; } .uk-sticky.uk-animation-reverse { animation-duration: @sticky-reverse-animation-duration; } /* * Placeholder * Make content clickable for sticky cover and reveal effects */ .uk-sticky-placeholder { pointer-events: none; } // Hooks // ======================================================================== .hook-sticky-misc(); .hook-sticky-misc() {} assets/uikit/src/less/components/comment.less000064400000007503151666572360015475 0ustar00// Name: Comment // Description: Component to create nested comments // // Component: `uk-comment` // // Sub-objects: `uk-comment-body` // `uk-comment-header` // `uk-comment-title` // `uk-comment-meta` // `uk-comment-avatar` // `uk-comment-list` // // Modifier: `uk-comment-primary` // // ======================================================================== // Variables // ======================================================================== @comment-header-margin-bottom: @global-margin; @comment-title-font-size: @global-medium-font-size; @comment-title-line-height: 1.4; @comment-meta-font-size: @global-small-font-size; @comment-meta-line-height: 1.4; @comment-meta-color: @global-muted-color; @comment-list-margin-top: @global-large-margin; @comment-list-padding-left: 30px; @comment-list-padding-left-m: 100px; /* ======================================================================== Component: Comment ========================================================================== */ .uk-comment { .hook-comment(); } /* Sections ========================================================================== */ .uk-comment-body { display: flow-root; overflow-wrap: break-word; word-wrap: break-word; .hook-comment-body(); } .uk-comment-header { display: flow-root; margin-bottom: @comment-header-margin-bottom; .hook-comment-header(); } /* * Remove margin from the last-child */ .uk-comment-body > :last-child, .uk-comment-header > :last-child { margin-bottom: 0; } /* Title ========================================================================== */ .uk-comment-title { font-size: @comment-title-font-size; line-height: @comment-title-line-height; .hook-comment-title(); } /* Meta ========================================================================== */ .uk-comment-meta { font-size: @comment-meta-font-size; line-height: @comment-meta-line-height; color: @comment-meta-color; .hook-comment-meta(); } /* Avatar ========================================================================== */ .uk-comment-avatar { .hook-comment-avatar(); } /* List ========================================================================== */ .uk-comment-list { padding: 0; list-style: none; } /* Adjacent siblings */ .uk-comment-list > :nth-child(n+2) { margin-top: @comment-list-margin-top; .hook-comment-list-adjacent(); } /* * Sublists * Note: General sibling selector allows reply block between comment and sublist */ .uk-comment-list .uk-comment ~ ul { margin: @comment-list-margin-top 0 0 0; padding-left: @comment-list-padding-left; list-style: none; .hook-comment-list-sub(); } /* Tablet and bigger */ @media (min-width: @breakpoint-medium) { .uk-comment-list .uk-comment ~ ul { padding-left: @comment-list-padding-left-m; } } /* Adjacent siblings */ .uk-comment-list .uk-comment ~ ul > :nth-child(n+2) { margin-top: @comment-list-margin-top; .hook-comment-list-sub-adjacent(); } /* Style modifier ========================================================================== */ .uk-comment-primary { .hook-comment-primary(); } // Hooks // ======================================================================== .hook-comment-misc(); .hook-comment() {} .hook-comment-body() {} .hook-comment-header() {} .hook-comment-title() {} .hook-comment-meta() {} .hook-comment-avatar() {} .hook-comment-list-adjacent() {} .hook-comment-list-sub() {} .hook-comment-list-sub-adjacent() {} .hook-comment-primary() {} .hook-comment-misc() {} assets/uikit/src/less/components/slidenav.less000064400000006265151666572360015644 0ustar00// Name: Slidenav // Description: Component to create previous/next icon navigations // // Component: `uk-slidenav` // // Sub-objects: `uk-slidenav-container` // // Modifiers: `uk-slidenav-previous` // `uk-slidenav-next` // `uk-slidenav-large` // // ======================================================================== // Variables // ======================================================================== @slidenav-padding-vertical: 5px; @slidenav-padding-horizontal: 10px; @slidenav-color: fade(@global-color, 50%); @slidenav-hover-color: fade(@global-color, 90%); @slidenav-active-color: fade(@global-color, 50%); @slidenav-large-padding-vertical: 10px; @slidenav-large-padding-horizontal: @slidenav-large-padding-vertical; /* ======================================================================== Component: Slidenav ========================================================================== */ /* * Adopts `uk-icon` */ .uk-slidenav { padding: @slidenav-padding-vertical @slidenav-padding-horizontal; color: @slidenav-color; .hook-slidenav(); } /* Hover */ .uk-slidenav:hover { color: @slidenav-hover-color; .hook-slidenav-hover(); } /* OnClick */ .uk-slidenav:active { color: @slidenav-active-color; .hook-slidenav-active(); } /* Icon modifier ========================================================================== */ /* * Previous */ .uk-slidenav-previous { .hook-slidenav-previous(); } /* * Next */ .uk-slidenav-next { .hook-slidenav-next(); } /* Size modifier ========================================================================== */ .uk-slidenav-large { padding: @slidenav-large-padding-vertical @slidenav-large-padding-horizontal; .hook-slidenav-large(); } /* Container ========================================================================== */ .uk-slidenav-container { display: flex; .hook-slidenav-container(); } // Hooks // ======================================================================== .hook-slidenav-misc(); .hook-slidenav() {} .hook-slidenav-hover() {} .hook-slidenav-active() {} .hook-slidenav-previous() {} .hook-slidenav-next() {} .hook-slidenav-large() {} .hook-slidenav-container() {} .hook-slidenav-misc() {} // Inverse // ======================================================================== @inverse-slidenav-color: fade(@inverse-global-color, 70%); @inverse-slidenav-hover-color: fade(@inverse-global-color, 95%); @inverse-slidenav-active-color: fade(@inverse-global-color, 70%); .hook-inverse() { .uk-slidenav { color: @inverse-slidenav-color; .hook-inverse-slidenav(); } .uk-slidenav:hover { color: @inverse-slidenav-hover-color; .hook-inverse-slidenav-hover(); } .uk-slidenav:active { color: @inverse-slidenav-active-color; .hook-inverse-slidenav-active(); } } .hook-inverse-slidenav() {} .hook-inverse-slidenav-hover() {} .hook-inverse-slidenav-active() {} assets/uikit/src/less/components/grid.less000064400000031421151666572360014754 0ustar00// Name: Grid // Description: Component to create responsive, fluid and nestable grids // // Component: `uk-grid` // // Modifiers: `uk-grid-small` // `uk-grid-medium` // `uk-grid-large` // `uk-grid-collapse` // `uk-grid-divider` // `uk-grid-match` // `uk-grid-stack` // `uk-grid-margin` // `uk-grid-margin-small` // `uk-grid-margin-medium` // `uk-grid-margin-large` // `uk-grid-margin-collapse` // // Sub-modifier: `uk-grid-item-match` // // States: `uk-first-column` // // ======================================================================== // Variables // ======================================================================== @grid-gutter-horizontal: @global-gutter; @grid-gutter-vertical: @grid-gutter-horizontal; @grid-gutter-horizontal-l: @global-medium-gutter; @grid-gutter-vertical-l: @grid-gutter-horizontal-l; @grid-small-gutter-horizontal: @global-small-gutter; @grid-small-gutter-vertical: @grid-small-gutter-horizontal; @grid-medium-gutter-horizontal: @global-gutter; @grid-medium-gutter-vertical: @grid-medium-gutter-horizontal; @grid-large-gutter-horizontal: @global-medium-gutter; @grid-large-gutter-vertical: @grid-large-gutter-horizontal; @grid-large-gutter-horizontal-l: @global-large-gutter; @grid-large-gutter-vertical-l: @grid-large-gutter-horizontal-l; @grid-divider-border-width: @global-border-width; @grid-divider-border: @global-border; /* ======================================================================== Component: Grid ========================================================================== */ /* * 1. Allow cells to wrap into the next line * 2. Reset list */ .uk-grid { display: flex; /* 1 */ flex-wrap: wrap; /* 2 */ margin: 0; padding: 0; list-style: none; } /* * Grid cell * Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto * Reset margin for e.g. paragraphs */ .uk-grid > * { margin: 0; } /* * Remove margin from the last-child */ .uk-grid > * > :last-child { margin-bottom: 0; } /* Gutter ========================================================================== */ /* * Default */ /* Horizontal */ .uk-grid { margin-left: -@grid-gutter-horizontal; } .uk-grid > * { padding-left: @grid-gutter-horizontal; } /* Vertical */ .uk-grid + .uk-grid, .uk-grid > .uk-grid-margin, * + .uk-grid-margin { margin-top: @grid-gutter-vertical; } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { /* Horizontal */ .uk-grid { margin-left: -@grid-gutter-horizontal-l; } .uk-grid > * { padding-left: @grid-gutter-horizontal-l; } /* Vertical */ .uk-grid + .uk-grid, .uk-grid > .uk-grid-margin, * + .uk-grid-margin { margin-top: @grid-gutter-vertical-l; } } /* * Small */ /* Horizontal */ .uk-grid-small, .uk-grid-column-small { margin-left: -@grid-small-gutter-horizontal; } .uk-grid-small > *, .uk-grid-column-small > * { padding-left: @grid-small-gutter-horizontal; } /* Vertical */ .uk-grid + .uk-grid-small, .uk-grid + .uk-grid-row-small, .uk-grid-small > .uk-grid-margin, .uk-grid-row-small > .uk-grid-margin, * + .uk-grid-margin-small { margin-top: @grid-small-gutter-vertical; } /* * Medium */ /* Horizontal */ .uk-grid-medium, .uk-grid-column-medium { margin-left: -@grid-medium-gutter-horizontal; } .uk-grid-medium > *, .uk-grid-column-medium > * { padding-left: @grid-medium-gutter-horizontal; } /* Vertical */ .uk-grid + .uk-grid-medium, .uk-grid + .uk-grid-row-medium, .uk-grid-medium > .uk-grid-margin, .uk-grid-row-medium > .uk-grid-margin, * + .uk-grid-margin-medium { margin-top: @grid-medium-gutter-vertical; } /* * Large */ /* Horizontal */ .uk-grid-large, .uk-grid-column-large { margin-left: -@grid-large-gutter-horizontal; } .uk-grid-large > *, .uk-grid-column-large > * { padding-left: @grid-large-gutter-horizontal; } /* Vertical */ .uk-grid + .uk-grid-large, .uk-grid + .uk-grid-row-large, .uk-grid-large > .uk-grid-margin, .uk-grid-row-large > .uk-grid-margin, * + .uk-grid-margin-large { margin-top: @grid-large-gutter-vertical; } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { /* Horizontal */ .uk-grid-large, .uk-grid-column-large { margin-left: -@grid-large-gutter-horizontal-l; } .uk-grid-large > *, .uk-grid-column-large > * { padding-left: @grid-large-gutter-horizontal-l; } /* Vertical */ .uk-grid + .uk-grid-large, .uk-grid + .uk-grid-row-large, .uk-grid-large > .uk-grid-margin, .uk-grid-row-large > .uk-grid-margin, * + .uk-grid-margin-large { margin-top: @grid-large-gutter-vertical-l; } } /* * Collapse */ /* Horizontal */ .uk-grid-collapse, .uk-grid-column-collapse { margin-left: 0; } .uk-grid-collapse > *, .uk-grid-column-collapse > * { padding-left: 0; } /* Vertical */ .uk-grid + .uk-grid-collapse, .uk-grid + .uk-grid-row-collapse, .uk-grid-collapse > .uk-grid-margin, .uk-grid-row-collapse > .uk-grid-margin { margin-top: 0; } /* Divider ========================================================================== */ .uk-grid-divider > * { position: relative; } .uk-grid-divider > :not(.uk-first-column)::before { content: ""; position: absolute; top: 0; bottom: 0; border-left: @grid-divider-border-width solid @grid-divider-border; .hook-grid-divider-horizontal(); } /* Vertical */ .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before { content: ""; position: absolute; left: 0; right: 0; border-top: @grid-divider-border-width solid @grid-divider-border; .hook-grid-divider-vertical(); } /* * Default */ /* Horizontal */ .uk-grid-divider { margin-left: -(@grid-gutter-horizontal * 2); } .uk-grid-divider > * { padding-left: (@grid-gutter-horizontal * 2); } .uk-grid-divider > :not(.uk-first-column)::before { left: @grid-gutter-horizontal; } /* Vertical */ .uk-grid-divider.uk-grid-stack > .uk-grid-margin { margin-top: (@grid-gutter-vertical * 2); } .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before { top: -@grid-gutter-vertical; left: (@grid-gutter-horizontal * 2); } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { /* Horizontal */ .uk-grid-divider { margin-left: -(@grid-gutter-horizontal-l * 2); } .uk-grid-divider > * { padding-left: (@grid-gutter-horizontal-l * 2); } .uk-grid-divider > :not(.uk-first-column)::before { left: @grid-gutter-horizontal-l; } /* Vertical */ .uk-grid-divider.uk-grid-stack > .uk-grid-margin { margin-top: (@grid-gutter-vertical-l * 2); } .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before { top: -@grid-gutter-vertical-l; left: (@grid-gutter-horizontal-l * 2); } } /* * Small */ /* Horizontal */ .uk-grid-divider.uk-grid-small, .uk-grid-divider.uk-grid-column-small { margin-left: -(@grid-small-gutter-horizontal * 2); } .uk-grid-divider.uk-grid-small > *, .uk-grid-divider.uk-grid-column-small > * { padding-left: (@grid-small-gutter-horizontal * 2); } .uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before, .uk-grid-divider.uk-grid-column-small > :not(.uk-first-column)::before { left: @grid-small-gutter-horizontal; } /* Vertical */ .uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin, .uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin { margin-top: (@grid-small-gutter-vertical * 2); } .uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before { top: -@grid-small-gutter-vertical; left: (@grid-small-gutter-horizontal * 2); } .uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before { top: -@grid-small-gutter-vertical; } .uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before { left: (@grid-small-gutter-horizontal * 2); } /* * Medium */ /* Horizontal */ .uk-grid-divider.uk-grid-medium, .uk-grid-divider.uk-grid-column-medium { margin-left: -(@grid-medium-gutter-horizontal * 2); } .uk-grid-divider.uk-grid-medium > *, .uk-grid-divider.uk-grid-column-medium > * { padding-left: (@grid-medium-gutter-horizontal * 2); } .uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before, .uk-grid-divider.uk-grid-column-medium > :not(.uk-first-column)::before { left: @grid-medium-gutter-horizontal; } /* Vertical */ .uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin, .uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin { margin-top: (@grid-medium-gutter-vertical * 2); } .uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before { top: -@grid-medium-gutter-vertical; left: (@grid-medium-gutter-horizontal * 2); } .uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before { top: -@grid-medium-gutter-vertical; } .uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before { left: (@grid-medium-gutter-horizontal * 2); } /* * Large */ /* Horizontal */ .uk-grid-divider.uk-grid-large, .uk-grid-divider.uk-grid-column-large { margin-left: -(@grid-large-gutter-horizontal * 2); } .uk-grid-divider.uk-grid-large > *, .uk-grid-divider.uk-grid-column-large > * { padding-left: (@grid-large-gutter-horizontal * 2); } .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before, .uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before { left: @grid-large-gutter-horizontal; } /* Vertical */ .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin, .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin { margin-top: (@grid-large-gutter-vertical * 2); } .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before { top: -@grid-large-gutter-vertical; left: (@grid-large-gutter-horizontal * 2); } .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before { top: -@grid-large-gutter-vertical; } .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before { left: (@grid-large-gutter-horizontal * 2); } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { /* Horizontal */ .uk-grid-divider.uk-grid-large, .uk-grid-divider.uk-grid-column-large { margin-left: -(@grid-large-gutter-horizontal-l * 2); } .uk-grid-divider.uk-grid-large > *, .uk-grid-divider.uk-grid-column-large > * { padding-left: (@grid-large-gutter-horizontal-l * 2); } .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before, .uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before { left: @grid-large-gutter-horizontal-l; } /* Vertical */ .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin, .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin { margin-top: (@grid-large-gutter-vertical-l * 2); } .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before { top: -@grid-large-gutter-vertical-l; left: (@grid-large-gutter-horizontal-l * 2); } .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before { top: -@grid-large-gutter-vertical-l; } .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before { left: (@grid-large-gutter-horizontal-l * 2); } } /* Match child of a grid cell ========================================================================== */ /* * Behave like a block element * 1. Wrap into the next line * 2. Take the full width, at least 100%. Only if no class from the Width component is set. * 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids) */ .uk-grid-match > *, .uk-grid-item-match { display: flex; /* 1 */ flex-wrap: wrap; } .uk-grid-match > * > :not([class*="uk-width"]), .uk-grid-item-match > :not([class*="uk-width"]) { /* 2 */ box-sizing: border-box; width: 100%; /* 3 */ flex: auto; } // Hooks // ======================================================================== .hook-grid-misc(); .hook-grid-divider-horizontal() {} .hook-grid-divider-vertical() {} .hook-grid-misc() {} // Inverse // ======================================================================== @inverse-grid-divider-border: @inverse-global-border; .hook-inverse() { .uk-grid-divider > :not(.uk-first-column)::before { border-left-color: @inverse-grid-divider-border; .hook-inverse-grid-divider-horizontal(); } .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before { border-top-color: @inverse-grid-divider-border; .hook-inverse-grid-divider-vertical(); } } .hook-inverse-grid-divider-horizontal() {} .hook-inverse-grid-divider-vertical() {} assets/uikit/src/less/components/padding.less000064400000004242151666572360015436 0ustar00// Name: Padding // Description: Utilities for padding // // Component: `uk-padding` // `uk-padding-large` // `uk-padding-remove-*` // // ======================================================================== // Variables // ======================================================================== @padding-padding: @global-gutter; @padding-padding-l: @global-medium-gutter; @padding-small-padding: @global-small-gutter; @padding-large-padding: @global-medium-gutter; @padding-large-padding-l: @global-large-gutter; /* ======================================================================== Component: Padding ========================================================================== */ .uk-padding { padding: @padding-padding; } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-padding { padding: @padding-padding-l; } } /* Small ========================================================================== */ .uk-padding-small { padding: @padding-small-padding; } /* Large ========================================================================== */ .uk-padding-large { padding: @padding-large-padding; } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-padding-large { padding: @padding-large-padding-l; } } /* Remove ========================================================================== */ .uk-padding-remove { padding: 0 !important; } .uk-padding-remove-top { padding-top: 0 !important; } .uk-padding-remove-bottom { padding-bottom: 0 !important; } .uk-padding-remove-left { padding-left: 0 !important; } .uk-padding-remove-right { padding-right: 0 !important; } .uk-padding-remove-vertical { padding-top: 0 !important; padding-bottom: 0 !important; } .uk-padding-remove-horizontal { padding-left: 0 !important; padding-right: 0 !important; } // Hooks // ======================================================================== .hook-padding-misc(); .hook-padding-misc() {} assets/uikit/src/less/components/slider.less000064400000005631151666572360015315 0ustar00// Name: Slider // Description: Component to create horizontal sliders // // Component: `uk-slider` // // Sub-objects: `uk-slider-container` // `uk-slider-items` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @slider-container-margin-top: -11px; @slider-container-margin-bottom: -39px; @slider-container-margin-left: -25px; @slider-container-margin-right: -25px; /* ======================================================================== Component: Slider ========================================================================== */ /* * 1. Prevent tab highlighting on iOS. */ .uk-slider { /* 1 */ -webkit-tap-highlight-color: transparent; .hook-slider(); } /* Container ========================================================================== */ /* * 1. Clip child elements * 2. Prevent accidental scrolling through elements in slide getting focused */ .uk-slider-container { /* 1 */ overflow: hidden; /* 2 */ overflow: clip; } /* * Widen container to prevent box-shadows from clipping, `large-box-shadow` */ .uk-slider-container-offset { margin: @slider-container-margin-top @slider-container-margin-right @slider-container-margin-bottom @slider-container-margin-left; padding: (@slider-container-margin-top * -1) (@slider-container-margin-right * -1) (@slider-container-margin-bottom * -1) (@slider-container-margin-left * -1); } /* Items ========================================================================== */ /* * 1. Optimize animation * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`. * 3. Disable horizontal panning gestures */ .uk-slider-items { /* 1 */ will-change: transform; /* 2 */ position: relative; /* 3 */ touch-action: pan-y; } /* * 1. Reset list style without interfering with grid * 2. Prevent displaying the callout information on iOS. */ .uk-slider-items:not(.uk-grid) { display: flex; /* 1 */ margin: 0; padding: 0; list-style: none; /* 2 */ -webkit-touch-callout: none; } .uk-slider-items.uk-grid { flex-wrap: nowrap; } /* Item ========================================================================== */ /* * 1. Let items take content dimensions (0 0 auto) * `max-width` needed to keep image responsiveness and prevent content overflow * 2. Create position context */ .uk-slider-items > * { /* 1 */ flex: none !important; box-sizing: border-box; max-width: 100%; /* 2 */ position: relative; } // Hooks // ======================================================================== .hook-slider-misc(); .hook-slider() {} .hook-slider-misc() {} assets/uikit/src/less/components/form-range.less000064400000011761151666572360016071 0ustar00// Name: Form Range // Description: Styles for the range input type // // Component: `uk-range` // // ======================================================================== // Variables // ======================================================================== @form-range-track-height: 3px; @form-range-track-background: darken(@global-muted-background, 5%); @form-range-track-focus-background: darken(@form-range-track-background, 5%); @form-range-thumb-height: 15px; @form-range-thumb-width: @form-range-thumb-height; @form-range-thumb-border-radius: 500px; @form-range-thumb-background: @global-color; /* ======================================================================== Component: Form Range ========================================================================== */ /* * 1. Remove default style. * 2. Define consistent box sizing. * 3. Remove `margin` in all browsers. * 4. Align to the center of the line box. * 5. Prevent content overflow if a fixed width is used. * 6. Take the full width. * 7. Remove white background in Chrome. */ .uk-range { /* 1 */ -webkit-appearance: none; /* 2 */ box-sizing: border-box; /* 3 */ margin: 0; /* 4 */ vertical-align: middle; /* 5 */ max-width: 100%; /* 6 */ width: 100%; /* 7 */ background: transparent; .hook-form-range(); } /* Focus */ .uk-range:focus { outline: none; } .uk-range::-moz-focus-outer { border: none; } /* * Improves consistency of cursor style for clickable elements */ .uk-range:not(:disabled)::-webkit-slider-thumb { cursor: pointer; } .uk-range:not(:disabled)::-moz-range-thumb { cursor: pointer; } /* * Track * 1. Safari doesn't have a focus state. Using active instead. */ /* Webkit */ .uk-range::-webkit-slider-runnable-track { height: @form-range-track-height; background: @form-range-track-background; .hook-form-range-track(); } .uk-range:focus::-webkit-slider-runnable-track, /* 1 */ .uk-range:active::-webkit-slider-runnable-track { background: @form-range-track-focus-background; .hook-form-range-track-focus(); } /* Firefox */ .uk-range::-moz-range-track { height: @form-range-track-height; background: @form-range-track-background; .hook-form-range-track(); } .uk-range:focus::-moz-range-track { background: @form-range-track-focus-background; .hook-form-range-track-focus(); } /* * Thumb * 1. Reset * 2. Style */ /* Webkit */ .uk-range::-webkit-slider-thumb { /* 1 */ -webkit-appearance: none; margin-top: (floor((@form-range-thumb-height / 2)) * -1); /* 2 */ height: @form-range-thumb-height; width: @form-range-thumb-width; border-radius: @form-range-thumb-border-radius; background: @form-range-thumb-background; .hook-form-range-thumb(); } /* Firefox */ .uk-range::-moz-range-thumb { /* 1 */ border: none; /* 2 */ height: @form-range-thumb-height; width: @form-range-thumb-width; margin-top: (floor((@form-range-thumb-height / 2)) * -1); border-radius: @form-range-thumb-border-radius; background: @form-range-thumb-background; .hook-form-range-thumb(); } // Hooks // ======================================================================== .hook-form-range-misc(); .hook-form-range() {} .hook-form-range-track() {} .hook-form-range-track-focus() {} .hook-form-range-thumb() {} .hook-form-range-misc() {} // Inverse // ======================================================================== @inverse-form-range-track-background: darken(@inverse-global-muted-background, 5%); @inverse-form-range-track-focus-background: fadein(@inverse-form-range-track-background, 5%); @inverse-form-range-thumb-background: fadein(@inverse-global-color, 100%); .hook-inverse() { /* Webkit */ .uk-range::-webkit-slider-runnable-track { background: @inverse-form-range-track-background; .hook-inverse-form-range-track(); } .uk-range:focus::-webkit-slider-runnable-track, .uk-range:active::-webkit-slider-runnable-track { background: @inverse-form-range-track-focus-background; .hook-inverse-form-range-track-focus(); } /* Firefox */ .uk-range::-moz-range-track { background: @inverse-form-range-track-background; .hook-inverse-form-range-track(); } .uk-range:focus::-moz-range-track { background: @inverse-form-range-track-focus-background; .hook-inverse-form-range-track-focus(); } /* Webkit */ .uk-range::-webkit-slider-thumb { background: @inverse-form-range-thumb-background; .hook-inverse-form-range-thumb(); } /* Firefox */ .uk-range::-moz-range-thumb { background: @inverse-form-range-thumb-background; .hook-inverse-form-range-thumb(); } } .hook-inverse-form-range-track() {} .hook-inverse-form-range-track-focus() {} .hook-inverse-form-range-thumb() {} assets/uikit/src/less/components/dropbar.less000064400000006646151666572360015473 0ustar00// Name: Dropbar // Description: Component to create a dropbar based on Drop component // // Component: `uk-dropbar` // // Modifiers: `uk-dropbar-large` // `uk-dropbar-top` // `uk-dropbar-bottom` // `uk-dropbar-left` // `uk-dropbar-right` // // ======================================================================== // Variables // ======================================================================== @dropbar-margin: 0; @dropbar-padding-top: 15px; @dropbar-padding-bottom: @dropbar-padding-top; @dropbar-padding-horizontal: 15px; @dropbar-padding-horizontal-s: @global-gutter; @dropbar-padding-horizontal-m: @global-medium-gutter; @dropbar-background: @global-muted-background; @dropbar-color: @global-color; @dropbar-color-mode: dark; @dropbar-focus-outline: @base-focus-outline; @dropbar-large-padding-top: 40px; @dropbar-large-padding-bottom: @dropbar-large-padding-top; /* ======================================================================== Component: Dropbar ========================================================================== */ /* * Adopts `uk-drop` * 1. Reset drop * 2. Style */ .uk-dropbar { --uk-position-offset: @dropbar-margin; --uk-position-shift-offset: 0; --uk-position-viewport-offset: 0; --uk-inverse: @dropbar-color-mode; /* 1 */ width: auto; /* 2 */ padding: @dropbar-padding-top @dropbar-padding-horizontal @dropbar-padding-bottom @dropbar-padding-horizontal; background: @dropbar-background; color: @dropbar-color; .hook-dropbar(); } /* * Remove margin from the last-child */ .uk-dropbar > :last-child { margin-bottom: 0; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-dropbar { padding-left: @dropbar-padding-horizontal-s; padding-right: @dropbar-padding-horizontal-s; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-dropbar { padding-left: @dropbar-padding-horizontal-m; padding-right: @dropbar-padding-horizontal-m; } } // Color Mode .uk-dropbar:extend(.uk-light all) when (@dropbar-color-mode = light) {} .uk-dropbar:extend(.uk-dark all) when (@dropbar-color-mode = dark) {} .uk-dropbar :focus-visible when not (@dropbar-color-mode = @inverse-global-color-mode) { outline-color: @dropbar-focus-outline !important; } /* Size modifier ========================================================================== */ .uk-dropbar-large { padding-top: @dropbar-large-padding-top; padding-bottom: @dropbar-large-padding-bottom; } /* Direction modifier ========================================================================== */ .uk-dropbar-top { .hook-dropbar-top(); } .uk-dropbar-bottom { .hook-dropbar-bottom(); } .uk-dropbar-left { .hook-dropbar-left(); } .uk-dropbar-right { .hook-dropbar-right(); } // Hooks // ======================================================================== .hook-dropbar-misc(); .hook-dropbar() {} .hook-dropbar-top() {} .hook-dropbar-bottom() {} .hook-dropbar-left() {} .hook-dropbar-right() {} .hook-dropbar-misc() {} assets/uikit/src/less/components/overlay.less000064400000004536151666572360015517 0ustar00// Name: Overlay // Description: Component to create content areas overlaying an image // // Component: `uk-overlay` // // Adopted: `uk-overlay-icon` // // Modifier: `uk-overlay-default` // `uk-overlay-primary` // // ======================================================================== // Variables // ======================================================================== @overlay-padding-horizontal: @global-gutter; @overlay-padding-vertical: @global-gutter; @overlay-default-background: fade(@global-background, 80%); @overlay-default-color-mode: dark; @overlay-primary-background: fade(@global-secondary-background, 80%); @overlay-primary-color-mode: light; /* ======================================================================== Component: Overlay ========================================================================== */ .uk-overlay { padding: @overlay-padding-vertical @overlay-padding-horizontal; .hook-overlay(); } /* * Remove margin from the last-child */ .uk-overlay > :last-child { margin-bottom: 0; } /* Icon ========================================================================== */ .uk-overlay-icon { .hook-overlay-icon(); } /* Style modifiers ========================================================================== */ /* * Default */ .uk-overlay-default { --uk-inverse: @overlay-default-color-mode; background: @overlay-default-background; .hook-overlay-default(); } // Color Mode .uk-overlay-default:extend(.uk-light all) when (@overlay-default-color-mode = light) {} .uk-overlay-default:extend(.uk-dark all) when (@overlay-default-color-mode = dark) {} /* * Primary */ .uk-overlay-primary { --uk-inverse: @overlay-primary-color-mode; background: @overlay-primary-background; .hook-overlay-primary(); } // Color Mode .uk-overlay-primary:extend(.uk-light all) when (@overlay-primary-color-mode = light) {} .uk-overlay-primary:extend(.uk-dark all) when (@overlay-primary-color-mode = dark) {} // Hooks // ======================================================================== .hook-overlay-misc(); .hook-overlay() {} .hook-overlay-icon() {} .hook-overlay-default() {} .hook-overlay-primary() {} .hook-overlay-misc() {} assets/uikit/src/less/components/base.less000064400000040742151666572360014747 0ustar00// Name: Base // Description: Default values for HTML elements // // Component: `uk-link` // `uk-h1`, `uk-h2`, `uk-h3`, `uk-h4`, `uk-h5`, `uk-h6` // `uk-hr` // // ======================================================================== // Variables // ======================================================================== @base-body-background: @global-background; @base-body-font-family: @global-font-family; @base-body-font-weight: normal; @base-body-font-size: @global-font-size; @base-body-line-height: @global-line-height; @base-body-color: @global-color; @base-link-color: @global-link-color; @base-link-text-decoration: none; @base-link-hover-color: @global-link-hover-color; @base-link-hover-text-decoration: underline; @base-strong-font-weight: bolder; @base-code-font-size: @global-small-font-size; @base-code-font-family: Consolas, monaco, monospace; @base-code-color: @global-danger-background; @base-em-color: @global-danger-background; @base-ins-background: #ffd; @base-ins-color: @global-color; @base-mark-background: #ffd; @base-mark-color: @global-color; @base-quote-font-style: italic; @base-small-font-size: 80%; @base-margin-vertical: @global-margin; @base-heading-font-family: @global-font-family; @base-heading-font-weight: normal; @base-heading-color: @global-emphasis-color; @base-heading-text-transform: none; @base-heading-margin-top: @global-medium-margin; @base-h1-font-size-m: @global-2xlarge-font-size; @base-h1-font-size: @base-h1-font-size-m * 0.85; @base-h1-line-height: 1.2; @base-h2-font-size-m: @global-xlarge-font-size; @base-h2-font-size: @base-h2-font-size-m * 0.85; @base-h2-line-height: 1.3; @base-h3-font-size: @global-large-font-size; @base-h3-line-height: 1.4; @base-h4-font-size: @global-medium-font-size; @base-h4-line-height: 1.4; @base-h5-font-size: @global-font-size; @base-h5-line-height: 1.4; @base-h6-font-size: @global-small-font-size; @base-h6-line-height: 1.4; @base-list-padding-left: 30px; @base-hr-margin-vertical: @global-margin; @base-hr-border-width: @global-border-width; @base-hr-border: @global-border; @base-blockquote-font-size: @global-medium-font-size; @base-blockquote-line-height: 1.5; @base-blockquote-font-style: italic; @base-blockquote-margin-vertical: @global-margin; @base-blockquote-footer-margin-top: @global-small-margin; @base-blockquote-footer-font-size: @global-small-font-size; @base-blockquote-footer-line-height: 1.5; @base-pre-font-size: @global-small-font-size; @base-pre-line-height: 1.5; @base-pre-font-family: @base-code-font-family; @base-pre-color: @global-color; @base-focus-outline-width: 2px; @base-focus-outline-style: dotted; @base-focus-outline: @global-emphasis-color; @base-focus-outline-offset: 1px; @base-selection-background: #39f; @base-selection-color: @global-inverse-color; /* ======================================================================== Component: Base ========================================================================== */ /* * 1. Set `font-size` to support `rem` units * 2. Prevent adjustments of font size after orientation changes in iOS. * 3. Style */ html { /* 1 */ font-family: @base-body-font-family; font-size: @base-body-font-size; font-weight: @base-body-font-weight; line-height: @base-body-line-height; /* 2 */ -webkit-text-size-adjust: 100%; /* 3 */ background: @base-body-background; color: @base-body-color; .hook-base-body(); } /* * Remove the margin in all browsers. */ body { margin: 0; } /* Links ========================================================================== */ /* * Style */ a, .uk-link { color: @base-link-color; text-decoration: @base-link-text-decoration; cursor: pointer; .hook-base-link(); } a:hover, .uk-link:hover, .uk-link-toggle:hover .uk-link { color: @base-link-hover-color; text-decoration: @base-link-hover-text-decoration; .hook-base-link-hover(); } /* Text-level semantics ========================================================================== */ /* * 1. Add the correct text decoration in Edge. * 2. The shorthand declaration `underline dotted` is not supported in Safari. */ abbr[title] { /* 1 */ text-decoration: underline dotted; /* 2 */ -webkit-text-decoration-style: dotted; } /* * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: @base-strong-font-weight; } /* * 1. Consolas has a better baseline in running text compared to `Courier` * 2. Correct the odd `em` font sizing in all browsers. * 3. Style */ :not(pre) > code, :not(pre) > kbd, :not(pre) > samp { /* 1 */ font-family: @base-code-font-family; /* 2 */ font-size: @base-code-font-size; /* 3 */ color: @base-code-color; white-space: nowrap; .hook-base-code(); } /* * Emphasize */ em { color: @base-em-color; } /* * Insert */ ins { background: @base-ins-background; color: @base-ins-color; text-decoration: none; } /* * Mark */ mark { background: @base-mark-background; color: @base-mark-color; } /* * Quote */ q { font-style: @base-quote-font-style; } /* * Add the correct font size in all browsers. */ small { font-size: @base-small-font-size; } /* * Prevents `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* Embedded content ========================================================================== */ /* * Remove the gap between the element and the bottom of its parent container. */ audio, canvas, iframe, img, svg, video { vertical-align: middle; } /* * 1. Constrain the element to its parent width. * 2. Preserve the intrinsic aspect ratio and auto-scale the height of an image if the `height` attribute is present. * 3. Take border and padding into account. */ canvas, img, svg, video { /* 1 */ max-width: 100%; /* 2 */ height: auto; /* 3 */ box-sizing: border-box; } /* * Deprecated: only needed for `img` elements with `uk-img` * 1. Hide `alt` text for lazy load images. * 2. Fix lazy loading images if parent element is set to `display: inline` and has `overflow: hidden`. */ img:not([src]) { /* 1 */ visibility: hidden; /* 2 */ min-width: 1px; } /* * Iframe * Remove border in all browsers */ iframe { border: 0; } /* Block elements ========================================================================== */ /* * Margins */ p, ul, ol, dl, pre, address, fieldset, figure { margin: 0 0 @base-margin-vertical 0; } /* Add margin if adjacent element */ * + p, * + ul, * + ol, * + dl, * + pre, * + address, * + fieldset, * + figure { margin-top: @base-margin-vertical; } /* Headings ========================================================================== */ h1, .uk-h1, h2, .uk-h2, h3, .uk-h3, h4, .uk-h4, h5, .uk-h5, h6, .uk-h6, .uk-heading-small, .uk-heading-medium, .uk-heading-large, .uk-heading-xlarge, .uk-heading-2xlarge, .uk-heading-3xlarge { margin: 0 0 @base-margin-vertical 0; font-family: @base-heading-font-family; font-weight: @base-heading-font-weight; color: @base-heading-color; text-transform: @base-heading-text-transform; .hook-base-heading(); } /* Add margin if adjacent element */ * + h1, * + .uk-h1, * + h2, * + .uk-h2, * + h3, * + .uk-h3, * + h4, * + .uk-h4, * + h5, * + .uk-h5, * + h6, * + .uk-h6, * + .uk-heading-small, * + .uk-heading-medium, * + .uk-heading-large, * + .uk-heading-xlarge, * + .uk-heading-2xlarge, * + .uk-heading-3xlarge { margin-top: @base-heading-margin-top; } /* * Sizes */ h1, .uk-h1 { font-size: @base-h1-font-size; line-height: @base-h1-line-height; .hook-base-h1(); } h2, .uk-h2 { font-size: @base-h2-font-size; line-height: @base-h2-line-height; .hook-base-h2(); } h3, .uk-h3 { font-size: @base-h3-font-size; line-height: @base-h3-line-height; .hook-base-h3(); } h4, .uk-h4 { font-size: @base-h4-font-size; line-height: @base-h4-line-height; .hook-base-h4(); } h5, .uk-h5 { font-size: @base-h5-font-size; line-height: @base-h5-line-height; .hook-base-h5(); } h6, .uk-h6 { font-size: @base-h6-font-size; line-height: @base-h6-line-height; .hook-base-h6(); } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { h1, .uk-h1 { font-size: @base-h1-font-size-m; } h2, .uk-h2 { font-size: @base-h2-font-size-m; } } /* Lists ========================================================================== */ ul, ol { padding-left: @base-list-padding-left; } /* * Reset margin for nested lists */ ul > li > ul, ul > li > ol, ol > li > ol, ol > li > ul { margin: 0; } /* Description lists ========================================================================== */ dt { font-weight: bold; } dd { margin-left: 0; } /* Horizontal rules ========================================================================== */ /* * 1. Show the overflow in Chrome, Edge and IE. * 2. Add the correct text-align in Edge and IE. * 3. Style */ hr, .uk-hr { /* 1 */ overflow: visible; /* 2 */ text-align: inherit; /* 3 */ margin: 0 0 @base-hr-margin-vertical 0; border: 0; border-top: @base-hr-border-width solid @base-hr-border; .hook-base-hr(); } /* Add margin if adjacent element */ * + hr, * + .uk-hr { margin-top: @base-hr-margin-vertical; } /* Address ========================================================================== */ address { font-style: normal; } /* Blockquotes ========================================================================== */ blockquote { margin: 0 0 @base-blockquote-margin-vertical 0; font-size: @base-blockquote-font-size; line-height: @base-blockquote-line-height; font-style: @base-blockquote-font-style; .hook-base-blockquote(); } /* Add margin if adjacent element */ * + blockquote { margin-top: @base-blockquote-margin-vertical; } /* * Content */ blockquote p:last-of-type { margin-bottom: 0; } blockquote footer { margin-top: @base-blockquote-footer-margin-top; font-size: @base-blockquote-footer-font-size; line-height: @base-blockquote-footer-line-height; .hook-base-blockquote-footer(); } /* Preformatted text ========================================================================== */ /* * 1. Contain overflow in all browsers. */ pre { font: @base-pre-font-size e("/") @base-pre-line-height @base-pre-font-family; color: @base-pre-color; -moz-tab-size: 4; tab-size: 4; /* 1 */ overflow: auto; .hook-base-pre(); } pre code { font-family: @base-pre-font-family; } /* Focus ========================================================================== */ :focus { outline: none; } :focus-visible { outline: @base-focus-outline-width @base-focus-outline-style @base-focus-outline; } /* Selection pseudo-element ========================================================================== */ ::selection { background: @base-selection-background; color: @base-selection-color; text-shadow: none; } /* HTML5 elements ========================================================================== */ /* * 1. Add the correct display in Edge, IE 10+, and Firefox. * 2. Add the correct display in IE. */ details, /* 1 */ main { /* 2 */ display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* * Add the correct display in IE. */ template { display: none; } /* Pass media breakpoints to JS ========================================================================== */ /* * Breakpoints */ :root { --uk-breakpoint-s: @breakpoint-small; --uk-breakpoint-m: @breakpoint-medium; --uk-breakpoint-l: @breakpoint-large; --uk-breakpoint-xl: @breakpoint-xlarge; } // Hooks // ======================================================================== .hook-base-misc(); .hook-base-body() {} .hook-base-link() {} .hook-base-link-hover() {} .hook-base-code() {} .hook-base-heading() {} .hook-base-h1() {} .hook-base-h2() {} .hook-base-h3() {} .hook-base-h4() {} .hook-base-h5() {} .hook-base-h6() {} .hook-base-hr() {} .hook-base-blockquote() {} .hook-base-blockquote-footer() {} .hook-base-pre() {} .hook-base-misc() {} // Inverse // ======================================================================== @inverse-base-color: @inverse-global-color; @inverse-base-link-color: @inverse-global-emphasis-color; @inverse-base-link-hover-color: @inverse-global-emphasis-color; @inverse-base-code-color: @inverse-global-color; @inverse-base-em-color: @inverse-global-emphasis-color; @inverse-base-heading-color: @inverse-global-emphasis-color; @inverse-base-hr-border: @inverse-global-border; @inverse-base-focus-outline: @inverse-global-emphasis-color; .hook-inverse() { color: @inverse-base-color; // Base // ======================================================================== // // Link // a, .uk-link { color: @inverse-base-link-color; .hook-inverse-base-link(); } a:hover, .uk-link:hover, .uk-link-toggle:hover .uk-link { color: @inverse-base-link-hover-color; .hook-inverse-base-link-hover(); } // // Code // :not(pre) > code, :not(pre) > kbd, :not(pre) > samp { color: @inverse-base-code-color; .hook-inverse-base-code(); } // // Emphasize // em { color: @inverse-base-em-color; } // // Headings // h1, .uk-h1, h2, .uk-h2, h3, .uk-h3, h4, .uk-h4, h5, .uk-h5, h6, .uk-h6, .uk-heading-small, .uk-heading-medium, .uk-heading-large, .uk-heading-xlarge, .uk-heading-2xlarge, .uk-heading-3xlarge { color: @inverse-base-heading-color; .hook-inverse-base-heading(); } h1, .uk-h1 { .hook-inverse-base-h1(); } h2, .uk-h2 { .hook-inverse-base-h2(); } h3, .uk-h3 { .hook-inverse-base-h3(); } h4, .uk-h4 { .hook-inverse-base-h4(); } h5, .uk-h5 { .hook-inverse-base-h5(); } h6, .uk-h6 { .hook-inverse-base-h6(); } // // Blockquotes // blockquote { .hook-inverse-base-blockquote(); } blockquote footer { .hook-inverse-base-blockquote-footer(); } // // Horizontal rules // hr, .uk-hr { border-top-color: @inverse-base-hr-border; .hook-inverse-base-hr(); } // // Focus // :focus-visible { outline-color: @inverse-base-focus-outline; } } .hook-inverse-base-link() {} .hook-inverse-base-link-hover() {} .hook-inverse-base-code() {} .hook-inverse-base-heading() {} .hook-inverse-base-h1() {} .hook-inverse-base-h2() {} .hook-inverse-base-h3() {} .hook-inverse-base-h4() {} .hook-inverse-base-h5() {} .hook-inverse-base-h6() {} .hook-inverse-base-blockquote() {} .hook-inverse-base-blockquote-footer() {} .hook-inverse-base-hr() {} assets/uikit/src/less/components/label.less000064400000005615151666572360015114 0ustar00// Name: Label // Description: Component to indicate important notes // // Component: `uk-label` // // Modifiers: `uk-label-success` // `uk-label-warning` // `uk-label-danger` // // ======================================================================== // Variables // ======================================================================== @label-padding-vertical: 0; @label-padding-horizontal: @global-small-margin; @label-background: @global-primary-background; @label-line-height: @global-line-height; @label-font-size: @global-small-font-size; @label-color: @global-inverse-color; @label-success-background: @global-success-background; @label-success-color: @global-inverse-color; @label-warning-background: @global-warning-background; @label-warning-color: @global-inverse-color; @label-danger-background: @global-danger-background; @label-danger-color: @global-inverse-color; /* ======================================================================== Component: Label ========================================================================== */ .uk-label { display: inline-block; padding: @label-padding-vertical @label-padding-horizontal; background: @label-background; line-height: @label-line-height; font-size: @label-font-size; color: @label-color; vertical-align: middle; white-space: nowrap; .hook-label(); } /* Color modifiers ========================================================================== */ /* * Success */ .uk-label-success { background-color: @label-success-background; color: @label-success-color; .hook-label-success(); } /* * Warning */ .uk-label-warning { background-color: @label-warning-background; color: @label-warning-color; .hook-label-warning(); } /* * Danger */ .uk-label-danger { background-color: @label-danger-background; color: @label-danger-color; .hook-label-danger(); } // Hooks // ======================================================================== .hook-label-misc(); .hook-label() {} .hook-label-success() {} .hook-label-warning() {} .hook-label-danger() {} .hook-label-misc() {} // Inverse // ======================================================================== @inverse-label-background: @inverse-global-primary-background; @inverse-label-color: @inverse-global-inverse-color; .hook-inverse() { .uk-label { background-color: @inverse-label-background; color: @inverse-label-color; .hook-inverse-label(); } } .hook-inverse-label() {} assets/uikit/src/less/components/dotnav.less000064400000010325151666572360015322 0ustar00// Name: Dotnav // Description: Component to create dot navigations // // Component: `uk-dotnav` // // Modifier: `uk-dotnav-vertical` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @dotnav-margin-horizontal: 12px; @dotnav-margin-vertical: @dotnav-margin-horizontal; @dotnav-item-width: 10px; @dotnav-item-height: @dotnav-item-width; @dotnav-item-border-radius: 50%; @dotnav-item-background: fade(@global-color, 20%); @dotnav-item-hover-background: fade(@global-color, 60%); @dotnav-item-onclick-background: fade(@global-color, 20%); @dotnav-item-active-background: fade(@global-color, 60%); /* ======================================================================== Component: Dotnav ========================================================================== */ /* * 1. Allow items to wrap into the next line * 2. Reset list * 3. Gutter */ .uk-dotnav { display: flex; /* 1 */ flex-wrap: wrap; /* 2 */ margin: 0; padding: 0; list-style: none; /* 3 */ margin-left: -@dotnav-margin-horizontal; .hook-dotnav(); } /* * 1. Space is allocated solely based on content dimensions: 0 0 auto * 2. Gutter */ .uk-dotnav > * { /* 1 */ flex: none; /* 2 */ padding-left: @dotnav-margin-horizontal; } /* Items ========================================================================== */ /* * Items * 1. Hide text if present */ .uk-dotnav > * > * { display: block; box-sizing: border-box; width: @dotnav-item-width; height: @dotnav-item-height; border-radius: @dotnav-item-border-radius; background: @dotnav-item-background; /* 1 */ text-indent: 100%; overflow: hidden; white-space: nowrap; .hook-dotnav-item(); } /* Hover */ .uk-dotnav > * > :hover { background-color: @dotnav-item-hover-background; .hook-dotnav-item-hover(); } /* OnClick */ .uk-dotnav > * > :active { background-color: @dotnav-item-onclick-background; .hook-dotnav-item-onclick(); } /* Active */ .uk-dotnav > .uk-active > * { background-color: @dotnav-item-active-background; .hook-dotnav-item-active(); } /* Modifier: 'uk-dotnav-vertical' ========================================================================== */ /* * 1. Change direction * 2. Gutter */ .uk-dotnav-vertical { /* 1 */ flex-direction: column; /* 2 */ margin-left: 0; margin-top: -@dotnav-margin-vertical; } /* 2 */ .uk-dotnav-vertical > * { padding-left: 0; padding-top: @dotnav-margin-vertical; } // Hooks // ======================================================================== .hook-dotnav-misc(); .hook-dotnav() {} .hook-dotnav-item() {} .hook-dotnav-item-hover() {} .hook-dotnav-item-onclick() {} .hook-dotnav-item-active() {} .hook-dotnav-misc() {} // Inverse // ======================================================================== @inverse-dotnav-item-background: fade(@inverse-global-color, 50%); @inverse-dotnav-item-hover-background: fade(@inverse-global-color, 90%); @inverse-dotnav-item-onclick-background: fade(@inverse-global-color, 50%); @inverse-dotnav-item-active-background: fade(@inverse-global-color, 90%); .hook-inverse() { .uk-dotnav > * > * { background-color: @inverse-dotnav-item-background; .hook-inverse-dotnav-item(); } .uk-dotnav > * > :hover { background-color: @inverse-dotnav-item-hover-background; .hook-inverse-dotnav-item-hover(); } .uk-dotnav > * > :active { background-color: @inverse-dotnav-item-onclick-background; .hook-inverse-dotnav-item-onclick(); } .uk-dotnav > .uk-active > * { background-color: @inverse-dotnav-item-active-background; .hook-inverse-dotnav-item-active(); } } .hook-inverse-dotnav-item() {} .hook-inverse-dotnav-item-hover() {} .hook-inverse-dotnav-item-onclick() {} .hook-inverse-dotnav-item-active() {} assets/uikit/src/less/components/navbar.less000064400000043657151666572360015316 0ustar00// Name: Navbar // Description: Component to create horizontal navigation bars // // Component: `uk-navbar` // // Sub-objects: `uk-navbar-container` // `uk-navbar-left` // `uk-navbar-right` // `uk-navbar-center` // `uk-navbar-center-left` // `uk-navbar-center-right` // `uk-navbar-nav` // `uk-navbar-parent-icon` // `uk-navbar-item` // `uk-navbar-toggle` // `uk-navbar-subtitle` // `uk-navbar-dropbar` // // Adopted: `uk-navbar-dropdown` + Modifiers // `uk-navbar-dropdown-nav` // `uk-navbar-toggle-icon` // // Modifiers: `uk-navbar-primary` // `uk-navbar-transparent` // `uk-navbar-sticky` // // States: `uk-active` // `uk-parent` // `uk-open` // // ======================================================================== // Variables // ======================================================================== @navbar-background: @global-muted-background; @navbar-gap: 0px; // Must have a unit because of `calc` @navbar-color-mode: dark; @navbar-nav-gap: 0px; // Must have a unit because of `calc` @navbar-nav-item-height: 80px; @navbar-nav-item-padding-horizontal: 15px; @navbar-nav-item-color: @global-muted-color; @navbar-nav-item-font-size: @global-font-size; @navbar-nav-item-font-family: @global-font-family; @navbar-nav-item-hover-color: @global-color; @navbar-nav-item-onclick-color: @global-emphasis-color; @navbar-nav-item-active-color: @global-emphasis-color; @navbar-parent-icon-margin-left: 4px; @navbar-item-padding-horizontal: 15px; @navbar-item-color: @global-color; @navbar-toggle-color: @global-muted-color; @navbar-toggle-hover-color: @global-color; @navbar-subtitle-font-size: @global-small-font-size; @navbar-dropdown-margin: 0; @navbar-dropdown-shift-margin: 0; @navbar-dropdown-viewport-margin: 15px; @navbar-dropdown-width: 200px; @navbar-dropdown-padding: 15px; @navbar-dropdown-background: @global-muted-background; @navbar-dropdown-color: @global-color; @navbar-dropdown-color-mode: dark; @navbar-dropdown-focus-outline: @base-focus-outline; @navbar-dropdown-grid-gutter-horizontal: @global-gutter; @navbar-dropdown-grid-gutter-vertical: @navbar-dropdown-grid-gutter-horizontal; @navbar-dropdown-large-shift-margin: 0; @navbar-dropdown-large-padding: 40px; @navbar-dropdown-dropbar-margin: 0; @navbar-dropdown-dropbar-shift-margin: 0; @navbar-dropdown-dropbar-padding-top: @navbar-dropdown-padding; @navbar-dropdown-dropbar-padding-bottom: @navbar-dropdown-dropbar-padding-top; @navbar-dropdown-dropbar-viewport-margin: 15px; @navbar-dropdown-dropbar-viewport-margin-s: @global-gutter; @navbar-dropdown-dropbar-viewport-margin-m: @global-medium-gutter; @navbar-dropdown-dropbar-large-shift-margin: 0; @navbar-dropdown-dropbar-large-padding-top: @navbar-dropdown-large-padding; @navbar-dropdown-dropbar-large-padding-bottom: @navbar-dropdown-dropbar-large-padding-top; @navbar-dropdown-nav-item-color: @global-muted-color; @navbar-dropdown-nav-item-hover-color: @global-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-subtitle-font-size: @global-small-font-size; @navbar-dropdown-nav-header-color: @global-emphasis-color; @navbar-dropdown-nav-divider-border-width: @global-border-width; @navbar-dropdown-nav-divider-border: @global-border; @navbar-dropdown-nav-sublist-item-color: @global-muted-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-color; @navbar-dropdown-nav-sublist-item-active-color: @global-emphasis-color; /* ======================================================================== Component: Navbar ========================================================================== */ /* * 1. Create position context to center navbar group */ .uk-navbar { display: flex; /* 1 */ position: relative; .hook-navbar(); } /* Container ========================================================================== */ .uk-navbar-container:not(.uk-navbar-transparent) { background: @navbar-background; .hook-navbar-container(); } // Color Mode .uk-navbar-container:not(.uk-navbar-transparent):extend(.uk-light all) when (@navbar-color-mode = light) {} .uk-navbar-container:not(.uk-navbar-transparent):extend(.uk-dark all) when (@navbar-color-mode = dark) {} /* Groups ========================================================================== */ /* * 1. Align navs and items vertically if they have a different height */ .uk-navbar-left, .uk-navbar-right, [class*="uk-navbar-center"] { display: flex; gap: @navbar-gap; /* 1 */ align-items: center; } /* * Horizontal alignment * 1. Create position context for centered navbar with sub groups (left/right) * 2. Fix text wrapping if content is larger than 50% of the container. * 3. Needed for dropdowns because a new position context is created * `z-index` must be smaller than off-canvas * 4. Align sub groups for centered navbar */ .uk-navbar-right { margin-left: auto; } .uk-navbar-center:only-child { margin-left: auto; margin-right: auto; /* 1 */ position: relative; } .uk-navbar-center:not(:only-child) { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* 2 */ width: max-content; box-sizing: border-box; /* 3 */ z-index: @global-z-index - 10; } /* 4 */ .uk-navbar-center-left, .uk-navbar-center-right { position: absolute; top: 0; } .uk-navbar-center-left { right: ~'calc(100% + @{navbar-gap})'; } .uk-navbar-center-right { left: ~'calc(100% + @{navbar-gap})'; } [class*="uk-navbar-center-"] { width: max-content; box-sizing: border-box; } /* Nav ========================================================================== */ /* * 1. Reset list */ .uk-navbar-nav { display: flex; gap: @navbar-nav-gap; /* 1 */ margin: 0; padding: 0; list-style: none; } /* * Allow items to wrap into the next line * Only not `absolute` positioned groups */ .uk-navbar-left, .uk-navbar-right, .uk-navbar-center:only-child { flex-wrap: wrap; } /* * Items * 1. Center content vertically and horizontally * 2. Imitate white space gap when using flexbox * 3. Dimensions * 4. Style * 5. Required for `a` */ .uk-navbar-nav > li > a, // Nav item .uk-navbar-item, // Content item .uk-navbar-toggle { // Clickable item /* 1 */ display: flex; justify-content: center; align-items: center; /* 2 */ column-gap: 0.25em; /* 3 */ box-sizing: border-box; min-height: @navbar-nav-item-height; /* 4 */ font-size: @navbar-nav-item-font-size; font-family: @navbar-nav-item-font-family; /* 5 */ text-decoration: none; } /* * Nav items */ .uk-navbar-nav > li > a { padding: 0 @navbar-nav-item-padding-horizontal; color: @navbar-nav-item-color; .hook-navbar-nav-item(); } /* * Hover * Apply hover style also if dropdown is opened */ .uk-navbar-nav > li:hover > a, .uk-navbar-nav > li > a[aria-expanded="true"] { color: @navbar-nav-item-hover-color; .hook-navbar-nav-item-hover(); } /* OnClick */ .uk-navbar-nav > li > a:active { color: @navbar-nav-item-onclick-color; .hook-navbar-nav-item-onclick(); } /* Active */ .uk-navbar-nav > li.uk-active > a { color: @navbar-nav-item-active-color; .hook-navbar-nav-item-active(); } /* Parent icon modifier ========================================================================== */ .uk-navbar-parent-icon { margin-left: @navbar-parent-icon-margin-left; transition: transform 0.3s ease-out; } .uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon { transform: rotateX(180deg); } /* Item ========================================================================== */ .uk-navbar-item { padding: 0 @navbar-item-padding-horizontal; color: @navbar-item-color; .hook-navbar-item(); } /* * Remove margin from the last-child */ .uk-navbar-item > :last-child { margin-bottom: 0; } /* Toggle ========================================================================== */ .uk-navbar-toggle { padding: 0 @navbar-item-padding-horizontal; color: @navbar-toggle-color; .hook-navbar-toggle(); } .uk-navbar-toggle:hover, .uk-navbar-toggle[aria-expanded="true"] { color: @navbar-toggle-hover-color; text-decoration: none; .hook-navbar-toggle-hover(); } /* * Icon * Adopts `uk-icon` */ .uk-navbar-toggle-icon { .hook-navbar-toggle-icon(); } /* Hover */ :hover > .uk-navbar-toggle-icon { .hook-navbar-toggle-icon-hover(); } /* Subtitle ========================================================================== */ .uk-navbar-subtitle { font-size: @navbar-subtitle-font-size; .hook-navbar-subtitle(); } /* Justify modifier ========================================================================== */ .uk-navbar-justify .uk-navbar-left, .uk-navbar-justify .uk-navbar-right, .uk-navbar-justify .uk-navbar-nav, .uk-navbar-justify .uk-navbar-nav > li, // Nav item .uk-navbar-justify .uk-navbar-item, // Content item .uk-navbar-justify .uk-navbar-toggle { flex-grow: 1; } /* Style modifiers ========================================================================== */ .uk-navbar-primary { .hook-navbar-primary(); } .uk-navbar-transparent { .hook-navbar-transparent(); } .uk-navbar-sticky { .hook-navbar-sticky(); } /* Dropdown ========================================================================== */ /* * Adopts `uk-drop` * 1. Set a default width * 2. Style */ .uk-navbar-dropdown { --uk-position-offset: @navbar-dropdown-margin; --uk-position-shift-offset: @navbar-dropdown-shift-margin; --uk-position-viewport-offset: @navbar-dropdown-viewport-margin; --uk-inverse: @navbar-dropdown-color-mode; /* 1 */ width: @navbar-dropdown-width; /* 2 */ padding: @navbar-dropdown-padding; background: @navbar-dropdown-background; color: @navbar-dropdown-color; .hook-navbar-dropdown(); } /* * Remove margin from the last-child */ .uk-navbar-dropdown > :last-child { margin-bottom: 0; } // Color Mode .uk-navbar-dropdown:extend(.uk-light all) when (@navbar-dropdown-color-mode = light) {} .uk-navbar-dropdown:extend(.uk-dark all) when (@navbar-dropdown-color-mode = dark) {} .uk-navbar-dropdown :focus-visible when not (@navbar-dropdown-color-mode = @inverse-global-color-mode) { outline-color: @navbar-dropdown-focus-outline !important; } /* * Grid * Adopts `uk-grid` */ /* Gutter Horizontal */ .uk-navbar-dropdown .uk-drop-grid { margin-left: -@navbar-dropdown-grid-gutter-horizontal; } .uk-navbar-dropdown .uk-drop-grid > * { padding-left: @navbar-dropdown-grid-gutter-horizontal; } /* Gutter Vertical */ .uk-navbar-dropdown .uk-drop-grid > .uk-grid-margin { margin-top: @navbar-dropdown-grid-gutter-vertical; } /* * Width modifier */ .uk-navbar-dropdown-width-2:not(.uk-drop-stack) { width: (@navbar-dropdown-width * 2); } .uk-navbar-dropdown-width-3:not(.uk-drop-stack) { width: (@navbar-dropdown-width * 3); } .uk-navbar-dropdown-width-4:not(.uk-drop-stack) { width: (@navbar-dropdown-width * 4); } .uk-navbar-dropdown-width-5:not(.uk-drop-stack) { width: (@navbar-dropdown-width * 5); } /* * Size modifier */ .uk-navbar-dropdown-large { --uk-position-shift-offset: @navbar-dropdown-large-shift-margin; padding: @navbar-dropdown-large-padding; .hook-navbar-dropdown-large(); } /* * Dropbar modifier * 1. Reset dropdown width to prevent to early shifting * 2. Reset style * 3. Padding */ .uk-navbar-dropdown-dropbar { /* 1 */ width: auto; /* 2 */ background: transparent; /* 3 */ padding: @navbar-dropdown-dropbar-padding-top 0 @navbar-dropdown-dropbar-padding-bottom 0; --uk-position-offset: @navbar-dropdown-dropbar-margin; --uk-position-shift-offset: @navbar-dropdown-dropbar-shift-margin; --uk-position-viewport-offset: @navbar-dropdown-dropbar-viewport-margin; .hook-navbar-dropdown-dropbar(); } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-navbar-dropdown-dropbar { --uk-position-viewport-offset: @navbar-dropdown-dropbar-viewport-margin-s; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-navbar-dropdown-dropbar { --uk-position-viewport-offset: @navbar-dropdown-dropbar-viewport-margin-m; } } .uk-navbar-dropdown-dropbar-large { --uk-position-shift-offset: @navbar-dropdown-dropbar-large-shift-margin; padding-top: @navbar-dropdown-dropbar-large-padding-top; padding-bottom: @navbar-dropdown-dropbar-large-padding-bottom; .hook-navbar-dropdown-dropbar-large(); } /* Dropdown Nav * Adopts `uk-nav` ========================================================================== */ .uk-navbar-dropdown-nav { .hook-navbar-dropdown-nav(); } /* * Items */ .uk-navbar-dropdown-nav > li > a { color: @navbar-dropdown-nav-item-color; .hook-navbar-dropdown-nav-item(); } /* Hover */ .uk-navbar-dropdown-nav > li > a:hover { color: @navbar-dropdown-nav-item-hover-color; .hook-navbar-dropdown-nav-item-hover(); } /* Active */ .uk-navbar-dropdown-nav > li.uk-active > a { color: @navbar-dropdown-nav-item-active-color; .hook-navbar-dropdown-nav-item-active(); } /* * Subtitle */ .uk-navbar-dropdown-nav .uk-nav-subtitle { font-size: @navbar-dropdown-nav-subtitle-font-size; .hook-navbar-dropdown-nav-subtitle(); } /* * Header */ .uk-navbar-dropdown-nav .uk-nav-header { color: @navbar-dropdown-nav-header-color; .hook-navbar-dropdown-nav-header(); } /* * Divider */ .uk-navbar-dropdown-nav .uk-nav-divider { border-top: @navbar-dropdown-nav-divider-border-width solid @navbar-dropdown-nav-divider-border; .hook-navbar-dropdown-nav-divider(); } /* * Sublists */ .uk-navbar-dropdown-nav .uk-nav-sub a { color: @navbar-dropdown-nav-sublist-item-color; } .uk-navbar-dropdown-nav .uk-nav-sub a:hover { color: @navbar-dropdown-nav-sublist-item-hover-color; } .uk-navbar-dropdown-nav .uk-nav-sub li.uk-active > a { color: @navbar-dropdown-nav-sublist-item-active-color; } /* Dropbar ========================================================================== */ /* * Adopts `uk-dropnav-dropbar` */ .uk-navbar-dropbar { .hook-navbar-dropbar(); } // Hooks // ======================================================================== .hook-navbar-misc(); .hook-navbar() {} .hook-navbar-container() {} .hook-navbar-nav-item() {} .hook-navbar-nav-item-hover() {} .hook-navbar-nav-item-onclick() {} .hook-navbar-nav-item-active() {} .hook-navbar-item() {} .hook-navbar-toggle() {} .hook-navbar-toggle-hover() {} .hook-navbar-toggle-icon() {} .hook-navbar-toggle-icon-hover() {} .hook-navbar-subtitle() {} .hook-navbar-primary() {} .hook-navbar-transparent() {} .hook-navbar-sticky() {} .hook-navbar-dropdown() {} .hook-navbar-dropdown-large() {} .hook-navbar-dropdown-dropbar() {} .hook-navbar-dropdown-dropbar-large() {} .hook-navbar-dropdown-nav() {} .hook-navbar-dropdown-nav-item() {} .hook-navbar-dropdown-nav-item-hover() {} .hook-navbar-dropdown-nav-item-active() {} .hook-navbar-dropdown-nav-subtitle() {} .hook-navbar-dropdown-nav-header() {} .hook-navbar-dropdown-nav-divider() {} .hook-navbar-dropbar() {} .hook-navbar-misc() {} // Inverse // ======================================================================== @inverse-navbar-nav-item-color: @inverse-global-muted-color; @inverse-navbar-nav-item-hover-color: @inverse-global-color; @inverse-navbar-nav-item-onclick-color: @inverse-global-emphasis-color; @inverse-navbar-nav-item-active-color: @inverse-global-emphasis-color; @inverse-navbar-item-color: @inverse-global-color; @inverse-navbar-toggle-color: @inverse-global-muted-color; @inverse-navbar-toggle-hover-color: @inverse-global-color; .hook-inverse() { // // Nav Item // .uk-navbar-nav > li > a { color: @inverse-navbar-nav-item-color; .hook-inverse-navbar-nav-item(); } .uk-navbar-nav > li:hover > a, .uk-navbar-nav > li > a[aria-expanded="true"] { color: @inverse-navbar-nav-item-hover-color; .hook-inverse-navbar-nav-item-hover(); } .uk-navbar-nav > li > a:active { color: @inverse-navbar-nav-item-onclick-color; .hook-inverse-navbar-nav-item-onclick(); } .uk-navbar-nav > li.uk-active > a { color: @inverse-navbar-nav-item-active-color; .hook-inverse-navbar-nav-item-active(); } // // Item // .uk-navbar-item { color: @inverse-navbar-item-color; .hook-inverse-navbar-item(); } // // Toggle // .uk-navbar-toggle { color: @inverse-navbar-toggle-color; .hook-inverse-navbar-toggle(); } .uk-navbar-toggle:hover, .uk-navbar-toggle[aria-expanded="true"] { color: @inverse-navbar-toggle-hover-color; .hook-inverse-navbar-toggle-hover(); } } .hook-inverse-navbar-nav-item() {} .hook-inverse-navbar-nav-item-hover() {} .hook-inverse-navbar-nav-item-onclick() {} .hook-inverse-navbar-nav-item-active() {} .hook-inverse-navbar-item() {} .hook-inverse-navbar-toggle() {} .hook-inverse-navbar-toggle-hover() {} assets/uikit/src/less/components/thumbnav.less000064400000005111151666572360015650 0ustar00// Name: Thumbnav // Description: Component to create thumbnail navigations // // Component: `uk-thumbnav` // // Modifier: `uk-thumbnav-vertical` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @thumbnav-margin-horizontal: 15px; @thumbnav-margin-vertical: @thumbnav-margin-horizontal; /* ======================================================================== Component: Thumbnav ========================================================================== */ /* * 1. Allow items to wrap into the next line * 2. Reset list * 3. Gutter */ .uk-thumbnav { display: flex; /* 1 */ flex-wrap: wrap; /* 2 */ margin: 0; padding: 0; list-style: none; /* 3 */ margin-left: -@thumbnav-margin-horizontal; .hook-thumbnav(); } /* * Space is allocated based on content dimensions, but shrinks: 0 1 auto * 1. Gutter */ .uk-thumbnav > * { /* 1 */ padding-left: @thumbnav-margin-horizontal; } /* Items ========================================================================== */ /* * Items */ .uk-thumbnav > * > * { display: inline-block; .hook-thumbnav-item(); } /* Hover */ .uk-thumbnav > * > :hover { .hook-thumbnav-item-hover(); } /* Active */ .uk-thumbnav > .uk-active > * { .hook-thumbnav-item-active(); } /* Modifier: 'uk-thumbnav-vertical' ========================================================================== */ /* * 1. Change direction * 2. Gutter */ .uk-thumbnav-vertical { /* 1 */ flex-direction: column; /* 2 */ margin-left: 0; margin-top: -@thumbnav-margin-vertical; } /* 2 */ .uk-thumbnav-vertical > * { padding-left: 0; padding-top: @thumbnav-margin-vertical; } // Hooks // ======================================================================== .hook-thumbnav-misc(); .hook-thumbnav() {} .hook-thumbnav-item() {} .hook-thumbnav-item-hover() {} .hook-thumbnav-item-active() {} .hook-thumbnav-misc() {} // Inverse // ======================================================================== .hook-inverse() { .uk-thumbnav > * > * { .hook-inverse-thumbnav-item(); } .uk-thumbnav > * > :hover { .hook-inverse-thumbnav-item-hover(); } .uk-thumbnav > .uk-active > * { .hook-inverse-thumbnav-item-active(); } } .hook-inverse-thumbnav-item() {} .hook-inverse-thumbnav-item-hover() {} .hook-inverse-thumbnav-item-active() {} assets/uikit/src/less/components/link.less000064400000010057151666572360014766 0ustar00// Name: Link // Description: Styles for links // // Component: `uk-link-muted` // `uk-link-text` // `uk-link-heading` // `uk-link-reset` // // Sub-objects: `uk-link-toggle` // // ======================================================================== // Variables // ======================================================================== @link-muted-color: @global-muted-color; @link-muted-hover-color: @global-color; @link-text-hover-color: @global-muted-color; @link-heading-hover-color: @global-primary-background; @link-heading-hover-text-decoration: none; /* ======================================================================== Component: Link ========================================================================== */ /* Muted ========================================================================== */ a.uk-link-muted, .uk-link-muted a, .uk-link-toggle .uk-link-muted { color: @link-muted-color; .hook-link-muted(); } a.uk-link-muted:hover, .uk-link-muted a:hover, .uk-link-toggle:hover .uk-link-muted { color: @link-muted-hover-color; .hook-link-muted-hover(); } /* Text ========================================================================== */ a.uk-link-text, .uk-link-text a, .uk-link-toggle .uk-link-text { color: inherit; .hook-link-text(); } a.uk-link-text:hover, .uk-link-text a:hover, .uk-link-toggle:hover .uk-link-text { color: @link-text-hover-color; .hook-link-text-hover(); } /* Heading ========================================================================== */ a.uk-link-heading, .uk-link-heading a, .uk-link-toggle .uk-link-heading { color: inherit; .hook-link-heading(); } a.uk-link-heading:hover, .uk-link-heading a:hover, .uk-link-toggle:hover .uk-link-heading { color: @link-heading-hover-color; text-decoration: @link-heading-hover-text-decoration; .hook-link-heading-hover(); } /* Reset ========================================================================== */ /* * `!important` needed to override inverse component */ a.uk-link-reset, .uk-link-reset a { color: inherit !important; text-decoration: none !important; .hook-link-reset(); } /* Toggle ========================================================================== */ .uk-link-toggle { color: inherit !important; text-decoration: none !important; } // Hooks // ======================================================================== .hook-link-misc(); .hook-link-muted() {} .hook-link-muted-hover() {} .hook-link-text() {} .hook-link-text-hover() {} .hook-link-heading() {} .hook-link-heading-hover() {} .hook-link-reset() {} .hook-link-misc() {} // Inverse // ======================================================================== @inverse-link-muted-color: @inverse-global-muted-color; @inverse-link-muted-hover-color: @inverse-global-color; @inverse-link-text-hover-color: @inverse-global-muted-color; @inverse-link-heading-hover-color: @inverse-global-primary-background; .hook-inverse() { a.uk-link-muted, .uk-link-muted a { color: @inverse-link-muted-color; .hook-inverse-link-muted(); } a.uk-link-muted:hover, .uk-link-muted a:hover, .uk-link-toggle:hover .uk-link-muted { color: @inverse-link-muted-hover-color; .hook-inverse-link-muted-hover(); } a.uk-link-text:hover, .uk-link-text a:hover, .uk-link-toggle:hover .uk-link-text { color: @inverse-link-text-hover-color; .hook-inverse-link-text-hover(); } a.uk-link-heading:hover, .uk-link-heading a:hover, .uk-link-toggle:hover .uk-link-heading { color: @inverse-link-heading-hover-color; .hook-inverse-link-heading-hover(); } } .hook-inverse-link-muted() {} .hook-inverse-link-muted-hover() {} .hook-inverse-link-text-hover() {} .hook-inverse-link-heading-hover() {} assets/uikit/src/less/components/pagination.less000064400000010061151666572360016155 0ustar00// Name: Pagination // Description: Component to create a page navigation // // Component: `uk-pagination` // // Adopted: `uk-pagination-next` // `uk-pagination-previous` // // States: `uk-active` // `uk-disabled` // // ======================================================================== // Variables // ======================================================================== @pagination-margin-horizontal: 0; @pagination-item-padding-vertical: 5px; @pagination-item-padding-horizontal: 10px; @pagination-item-color: @global-muted-color; @pagination-item-hover-color: @global-color; @pagination-item-hover-text-decoration: none; @pagination-item-active-color: @global-color; @pagination-item-disabled-color: @global-muted-color; /* ======================================================================== Component: Pagination ========================================================================== */ /* * 1. Allow items to wrap into the next line * 2. Center items vertically if they have a different height * 3. Gutter * 4. Reset list */ .uk-pagination { display: flex; /* 1 */ flex-wrap: wrap; /* 2 */ align-items: center; /* 3 */ margin-left: -@pagination-margin-horizontal; /* 4 */ padding: 0; list-style: none; .hook-pagination(); } /* * 1. Space is allocated solely based on content dimensions: 0 0 auto * 2. Gutter * 3. Create position context for dropdowns */ .uk-pagination > * { /* 1 */ flex: none; /* 2 */ padding-left: @pagination-margin-horizontal; /* 3 */ position: relative; } /* Items ========================================================================== */ /* * 1. Center content vertically, e.g. an icon * 2. Imitate white space gap when using flexbox * 3. Style */ .uk-pagination > * > * { /* 1 */ display: flex; align-items: center; /* 2 */ column-gap: 0.25em; /* 3 */ padding: @pagination-item-padding-vertical @pagination-item-padding-horizontal; color: @pagination-item-color; .hook-pagination-item(); } /* Hover */ .uk-pagination > * > :hover { color: @pagination-item-hover-color; text-decoration: @pagination-item-hover-text-decoration; .hook-pagination-item-hover(); } /* Active */ .uk-pagination > .uk-active > * { color: @pagination-item-active-color; .hook-pagination-item-active(); } /* Disabled */ .uk-pagination > .uk-disabled > * { color: @pagination-item-disabled-color; .hook-pagination-item-disabled(); } // Hooks // ======================================================================== .hook-pagination-misc(); .hook-pagination() {} .hook-pagination-item() {} .hook-pagination-item-hover() {} .hook-pagination-item-active() {} .hook-pagination-item-disabled() {} .hook-pagination-misc() {} // Inverse // ======================================================================== @inverse-pagination-item-color: @inverse-global-muted-color; @inverse-pagination-item-hover-color: @inverse-global-color; @inverse-pagination-item-active-color: @inverse-global-color; @inverse-pagination-item-disabled-color: @inverse-global-muted-color; .hook-inverse() { .uk-pagination > * > * { color: @inverse-pagination-item-color; .hook-inverse-pagination-item(); } .uk-pagination > * > :hover { color: @inverse-pagination-item-hover-color; .hook-inverse-pagination-item-hover(); } .uk-pagination > .uk-active > * { color: @inverse-pagination-item-active-color; .hook-inverse-pagination-item-active(); } .uk-pagination > .uk-disabled > * { color: @inverse-pagination-item-disabled-color; .hook-inverse-pagination-item-disabled(); } } .hook-inverse-pagination-item() {} .hook-inverse-pagination-item-hover() {} .hook-inverse-pagination-item-active() {} .hook-inverse-pagination-item-disabled() {} assets/uikit/src/less/components/offcanvas.less000064400000016577151666572360016014 0ustar00// Name: Off-canvas // Description: Component to create an off-canvas sidebar // // Component: `uk-offcanvas` // // Sub-objects: `uk-offcanvas-bar` // `uk-offcanvas-container` // `uk-offcanvas-page` // // Adopted: `uk-offcanvas-close` // // Modifiers: `uk-offcanvas-flip` // `uk-offcanvas-bar-animation` // `uk-offcanvas-reveal` // `uk-offcanvas-overlay` // `uk-offcanvas-container-animation` // // States: `uk-open` // // ======================================================================== // Variables // ======================================================================== @offcanvas-z-index: @global-z-index; @offcanvas-bar-width: 270px; @offcanvas-bar-padding-vertical: 20px; @offcanvas-bar-padding-horizontal: 20px; @offcanvas-bar-background: @global-secondary-background; @offcanvas-bar-color-mode: light; @offcanvas-bar-width-s: 350px; @offcanvas-bar-padding-vertical-s: @global-gutter; @offcanvas-bar-padding-horizontal-s: @global-gutter; @offcanvas-close-position: 5px; @offcanvas-close-padding: 5px; @offcanvas-close-position-s: 10px; @offcanvas-overlay-background: rgba(0,0,0,0.1); /* ======================================================================== Component: Off-canvas ========================================================================== */ /* * 1. Hide by default * 2. Set position */ .uk-offcanvas { /* 1 */ display: none; /* 2 */ position: fixed; top: 0; bottom: 0; left: 0; z-index: @offcanvas-z-index; } /* * Flip modifier */ .uk-offcanvas-flip .uk-offcanvas { right: 0; left: auto; } /* Bar ========================================================================== */ /* * 1. Set position * 2. Size and style * 3. Allow scrolling */ .uk-offcanvas-bar { --uk-inverse: @offcanvas-bar-color-mode; /* 1 */ position: absolute; top: 0; bottom: 0; left: -@offcanvas-bar-width; /* 2 */ box-sizing: border-box; width: @offcanvas-bar-width; padding: @offcanvas-bar-padding-vertical @offcanvas-bar-padding-horizontal; background: @offcanvas-bar-background; /* 3 */ overflow-y: auto; .hook-offcanvas-bar(); } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-offcanvas-bar { left: -@offcanvas-bar-width-s; width: @offcanvas-bar-width-s; padding: @offcanvas-bar-padding-vertical-s @offcanvas-bar-padding-horizontal-s; } } // Color Mode .uk-offcanvas-bar:extend(.uk-light all) when (@offcanvas-bar-color-mode = light) {} .uk-offcanvas-bar:extend(.uk-dark all) when (@offcanvas-bar-color-mode = dark) {} /* Flip modifier */ .uk-offcanvas-flip .uk-offcanvas-bar { left: auto; right: -@offcanvas-bar-width; } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-offcanvas-flip .uk-offcanvas-bar { right: -@offcanvas-bar-width-s; } } /* * Open */ .uk-open > .uk-offcanvas-bar { left: 0; } .uk-offcanvas-flip .uk-open > .uk-offcanvas-bar { left: auto; right: 0; } /* * Slide Animation (Used in slide and push mode) */ .uk-offcanvas-bar-animation { transition: left 0.3s ease-out; } .uk-offcanvas-flip .uk-offcanvas-bar-animation { transition-property: right; } /* * Reveal Animation * 1. Set position * 2. Clip the bar * 3. Animation * 4. Reset position */ .uk-offcanvas-reveal { /* 1 */ position: absolute; top: 0; bottom: 0; left: 0; /* 2 */ width: 0; overflow: hidden; /* 3 */ transition: width 0.3s ease-out; } .uk-offcanvas-reveal .uk-offcanvas-bar { /* 4 */ left: 0; } .uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar { /* 4 */ left: auto; right: 0; } .uk-open > .uk-offcanvas-reveal { width: @offcanvas-bar-width; } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-open > .uk-offcanvas-reveal { width: @offcanvas-bar-width-s; } } /* * Flip modifier */ .uk-offcanvas-flip .uk-offcanvas-reveal { right: 0; left: auto; } /* Close * Adopts `uk-close` ========================================================================== */ .uk-offcanvas-close { position: absolute; z-index: @offcanvas-z-index; top: @offcanvas-close-position; right: @offcanvas-close-position; padding: @offcanvas-close-padding; .hook-offcanvas-close(); } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-offcanvas-close { top: @offcanvas-close-position-s; right: @offcanvas-close-position-s; } } /* * Remove margin from adjacent element */ .uk-offcanvas-close:first-child + * { margin-top: 0; } /* Overlay ========================================================================== */ /* * Overlay the whole page. Needed for the `::before` * 1. Using `100vw` so no modification is needed when off-canvas is flipped * 2. Allow for closing with swipe gesture on devices with pointer events. */ .uk-offcanvas-overlay { /* 1 */ width: 100vw; /* 2 */ touch-action: none; } /* * 1. Mask the whole page * 2. Fade-in transition */ .uk-offcanvas-overlay::before { /* 1 */ content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: @offcanvas-overlay-background; /* 2 */ opacity: 0; transition: opacity 0.15s linear; .hook-offcanvas-overlay(); } .uk-offcanvas-overlay.uk-open::before { opacity: 1; } /* Prevent scrolling ========================================================================== */ /* * Prevent horizontal scrollbar when the content is slide-out * Has to be on the `html` element too to make it work on the `body` * 1. `clip` is needed for `position: sticky` elements to keep their position */ .uk-offcanvas-page, .uk-offcanvas-container { overflow-x: hidden; /* 1 */ overflow-x: clip; } /* Container ========================================================================== */ /* * Prepare slide-out animation (Used in reveal and push mode) * Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars * lose their fixed state and behaves like `absolute` within a transformed container * 1. Provide a fixed width and prevent shrinking */ .uk-offcanvas-container { position: relative; left: 0; transition: left 0.3s ease-out; /* 1 */ box-sizing: border-box; width: 100%; } /* * Activate slide-out animation */ :not(.uk-offcanvas-flip).uk-offcanvas-container-animation { left: @offcanvas-bar-width; } .uk-offcanvas-flip.uk-offcanvas-container-animation { left: -@offcanvas-bar-width; } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-small) { :not(.uk-offcanvas-flip).uk-offcanvas-container-animation { left: @offcanvas-bar-width-s; } .uk-offcanvas-flip.uk-offcanvas-container-animation { left: -@offcanvas-bar-width-s; } } // Hooks // ======================================================================== .hook-offcanvas-misc(); .hook-offcanvas-bar() {} .hook-offcanvas-close() {} .hook-offcanvas-overlay() {} .hook-offcanvas-misc() {} assets/uikit/src/less/components/slideshow.less000064400000003465151666572360016037 0ustar00// Name: Slideshow // Description: Component to create slideshows // // Component: `uk-slideshow` // // Sub-objects: `uk-slideshow-items` // // States: `uk-active` // // ======================================================================== /* ======================================================================== Component: Slideshow ========================================================================== */ /* * 1. Prevent tab highlighting on iOS. */ .uk-slideshow { /* 1 */ -webkit-tap-highlight-color: transparent; .hook-slideshow(); } /* Items ========================================================================== */ /* * 1. Create position and stacking context * 2. Reset list * 3. Clip child elements * 4. Prevent displaying the callout information on iOS. * 5. Disable horizontal panning gestures */ .uk-slideshow-items { /* 1 */ position: relative; z-index: 0; /* 2 */ margin: 0; padding: 0; list-style: none; /* 3 */ overflow: hidden; /* 4 */ -webkit-touch-callout: none; /* 5 */ touch-action: pan-y; } /* Item ========================================================================== */ /* * 1. Position items above each other * 2. Take the full width * 3. Clip child elements, e.g. for `uk-cover` * 4. Optimize animation */ .uk-slideshow-items > * { /* 1 */ position: absolute; top: 0; left: 0; /* 2 */ right: 0; bottom: 0; /* 3 */ overflow: hidden; /* 4 */ will-change: transform, opacity; } /* * Hide not active items */ .uk-slideshow-items > :not(.uk-active) { display: none; } // Hooks // ======================================================================== .hook-slideshow-misc(); .hook-slideshow() {} .hook-slideshow-misc() {} assets/uikit/src/less/components/inverse.less000064400000003377151666572360015513 0ustar00// Name: Inverse // Description: Inverse component style for light or dark backgrounds // // Component: `uk-light` // `uk-dark` // // ======================================================================== // Variables // ======================================================================== @inverse-global-color-mode: light; @inverse-global-color: fade(@global-inverse-color, 70%); @inverse-global-emphasis-color: @global-inverse-color; @inverse-global-muted-color: fade(@global-inverse-color, 50%); @inverse-global-inverse-color: @global-color; @inverse-global-primary-background: @global-inverse-color; @inverse-global-muted-background: fade(@global-inverse-color, 10%); @inverse-global-border: fade(@global-inverse-color, 20%); /* ======================================================================== Component: Inverse ========================================================================== */ /* * Implemented class depends on the general theme color * `uk-light` is for light colors on dark backgrounds * `uk-dark` is or dark colors on light backgrounds */ .uk-light when (@inverse-global-color-mode = light) { .hook-inverse(); } .uk-dark when (@inverse-global-color-mode = dark) { .hook-inverse(); } /* * Pass dropbar behind color to JS */ * { --uk-inverse: initial; } .uk-light { --uk-inverse: light; } .uk-dark { --uk-inverse: dark; } .uk-inverse-light { --uk-inverse: light !important; } .uk-inverse-dark { --uk-inverse: dark !important; } // Hooks // ======================================================================== .hook-inverse() {} assets/uikit/src/less/components/description-list.less000064400000003551151666572360017326 0ustar00// Name: Description list // Description: Styles for description lists // // Component: `uk-description-list` // // Modifiers: `uk-description-list-divider` // // ======================================================================== // Variables // ======================================================================== @description-list-term-color: @global-emphasis-color; @description-list-term-margin-top: @global-margin; @description-list-divider-term-margin-top: @global-margin; @description-list-divider-term-border-width: @global-border-width; @description-list-divider-term-border: @global-border; /* ======================================================================== Component: Description list ========================================================================== */ /* * Term */ .uk-description-list > dt { color: @description-list-term-color; .hook-description-list-term(); } .uk-description-list > dt:nth-child(n+2) { margin-top: @description-list-term-margin-top; } /* * Description */ .uk-description-list > dd { .hook-description-list-description(); } /* Style modifier ========================================================================== */ /* * Line */ .uk-description-list-divider > dt:nth-child(n+2) { margin-top: @description-list-divider-term-margin-top; padding-top: @description-list-divider-term-margin-top; border-top: @description-list-divider-term-border-width solid @description-list-divider-term-border; .hook-description-list-divider-term(); } // Hooks // ======================================================================== .hook-description-list-misc(); .hook-description-list-term() {} .hook-description-list-description() {} .hook-description-list-divider-term() {} .hook-description-list-misc() {} assets/uikit/src/less/components/_import.less000064400000004341151666572360015501 0ustar00// Base @import "variables.less"; @import "mixin.less"; @import "base.less"; // Elements @import "link.less"; @import "heading.less"; @import "divider.less"; @import "list.less"; @import "description-list.less"; @import "table.less"; @import "icon.less"; @import "form-range.less"; @import "form.less"; // After: Icon, Form Range @import "button.less"; @import "progress.less"; // Layout @import "section.less"; @import "container.less"; @import "tile.less"; @import "card.less"; // Common @import "close.less"; // After: Icon @import "spinner.less"; // After: Icon @import "totop.less"; // After: Icon @import "marker.less"; // After: Icon @import "alert.less"; // After: Close @import "placeholder.less"; @import "badge.less"; @import "label.less"; @import "overlay.less"; // After: Icon @import "article.less"; @import "comment.less"; @import "search.less"; // After: Icon // JavaScript @import "accordion.less"; @import "drop.less"; // After: Card @import "dropbar.less"; @import "dropnav.less"; // After: Dropbar @import "modal.less"; // After: Close @import "slideshow.less"; @import "slider.less"; @import "sticky.less"; @import "offcanvas.less"; @import "switcher.less"; @import "leader.less"; @import "notification.less"; @import "tooltip.less"; @import "sortable.less"; @import "countdown.less"; // Scrollspy // Toggle // Scroll @import "thumbnav.less"; @import "iconnav.less"; @import "grid.less"; // After: Thumbnav, Iconnav // Navs @import "nav.less"; @import "navbar.less"; // After: Card, Grid, Nav, Icon, Search @import "subnav.less"; @import "breadcrumb.less"; @import "pagination.less"; @import "tab.less"; @import "slidenav.less"; // After: Icon @import "dotnav.less"; @import "dropdown.less"; // After: Card, Nav @import "lightbox.less"; // After: Close, Slidenav // Utilities @import "animation.less"; @import "width.less"; @import "height.less"; @import "text.less"; @import "column.less"; @import "cover.less"; @import "background.less"; @import "align.less"; @import "svg.less"; @import "utility.less"; @import "flex.less"; // After: Utility @import "margin.less"; @import "padding.less"; @import "position.less"; @import "transition.less"; @import "visibility.less"; @import "inverse.less"; // Need to be loaded last @import "print.less"; assets/uikit/src/less/components/print.less000064400000002312151666572360015160 0ustar00// Name: Print // Description: Optimize page for printing // // Adapted from http://github.com/h5bp/html5-boilerplate // // Modifications: Removed link `href` and `title` related rules // // ======================================================================== /* ======================================================================== Component: Print ========================================================================== */ @media print { *, *::before, *::after { background: transparent !important; color: black !important; box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } @page { margin: 0.5cm; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } .hook-print(); } // Hooks // ======================================================================== .hook-print() {} assets/uikit/src/less/components/animation.less000064400000016067151666572360016017 0ustar00// Name: Animation // Description: Utilities for keyframe animations // // Component: `uk-animation-*` // // Modifiers: `uk-animation-fade` // `uk-animation-scale-up` // `uk-animation-scale-down` // `uk-animation-slide-top-*` // `uk-animation-slide-bottom-*` // `uk-animation-slide-left-*` // `uk-animation-slide-right-*` // `uk-animation-kenburns` // `uk-animation-shake` // `uk-animation-stroke` // `uk-animation-reverse` // `uk-animation-fast` // // Sub-objects: `uk-animation-toggle` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @animation-duration: 0.5s; @animation-fade-duration: 0.8s; @animation-stroke-duration: 2s; @animation-kenburns-duration: 15s; @animation-fast-duration: 0.1s; @animation-slide-small-translate: 10px; @animation-slide-medium-translate: 50px; /* ======================================================================== Component: Animation ========================================================================== */ [class*="uk-animation-"] { animation: @animation-duration ease-out both; } /* Animations ========================================================================== */ /* * Fade */ .uk-animation-fade { animation-name: uk-fade; animation-duration: @animation-fade-duration; animation-timing-function: linear; } /* * Scale */ .uk-animation-scale-up { animation-name: uk-fade, uk-scale-up; } .uk-animation-scale-down { animation-name: uk-fade, uk-scale-down; } /* * Slide */ .uk-animation-slide-top { animation-name: uk-fade, uk-slide-top; } .uk-animation-slide-bottom { animation-name: uk-fade, uk-slide-bottom; } .uk-animation-slide-left { animation-name: uk-fade, uk-slide-left; } .uk-animation-slide-right { animation-name: uk-fade, uk-slide-right; } /* * Slide Small */ .uk-animation-slide-top-small { animation-name: uk-fade, uk-slide-top-small; } .uk-animation-slide-bottom-small { animation-name: uk-fade, uk-slide-bottom-small; } .uk-animation-slide-left-small { animation-name: uk-fade, uk-slide-left-small; } .uk-animation-slide-right-small { animation-name: uk-fade, uk-slide-right-small; } /* * Slide Medium */ .uk-animation-slide-top-medium { animation-name: uk-fade, uk-slide-top-medium; } .uk-animation-slide-bottom-medium { animation-name: uk-fade, uk-slide-bottom-medium; } .uk-animation-slide-left-medium { animation-name: uk-fade, uk-slide-left-medium; } .uk-animation-slide-right-medium { animation-name: uk-fade, uk-slide-right-medium; } /* * Kenburns */ .uk-animation-kenburns { animation-name: uk-kenburns; animation-duration: @animation-kenburns-duration; } /* * Shake */ .uk-animation-shake { animation-name: uk-shake; } /* * SVG Stroke * The `--uk-animation-stroke` custom property contains the longest path length. * Set it manually or use `uk-svg="stroke-animation: true"` to set it automatically. * All strokes are animated by the same pace and doesn't end simultaneously. * To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet. */ .uk-animation-stroke { animation-name: uk-stroke; animation-duration: @animation-stroke-duration; stroke-dasharray: var(--uk-animation-stroke); } /* Direction modifier ========================================================================== */ .uk-animation-reverse { animation-direction: reverse; animation-timing-function: ease-in; } /* Duration modifier ========================================================================== */ .uk-animation-fast { animation-duration: @animation-fast-duration; } /* Toggle animation based on the State of the Parent Element ========================================================================== */ .uk-animation-toggle:not(:hover):not(:focus) [class*="uk-animation-"] { animation-name: none; } /* Keyframes used by animation classes ========================================================================== */ /* * Fade */ @keyframes uk-fade { 0% { opacity: 0; } 100% { opacity: 1; } } /* * Scale */ @keyframes uk-scale-up { 0% { transform: scale(0.9); } 100% { transform: scale(1); } } @keyframes uk-scale-down { 0% { transform: scale(1.1); } 100% { transform: scale(1); } } /* * Slide */ @keyframes uk-slide-top { 0% { transform: translateY(-100%); } 100% { transform: translateY(0); } } @keyframes uk-slide-bottom { 0% { transform: translateY(100%); } 100% { transform: translateY(0); } } @keyframes uk-slide-left { 0% { transform: translateX(-100%); } 100% { transform: translateX(0); } } @keyframes uk-slide-right { 0% { transform: translateX(100%); } 100% { transform: translateX(0); } } /* * Slide Small */ @keyframes uk-slide-top-small { 0% { transform: translateY(-@animation-slide-small-translate); } 100% { transform: translateY(0); } } @keyframes uk-slide-bottom-small { 0% { transform: translateY(@animation-slide-small-translate); } 100% { transform: translateY(0); } } @keyframes uk-slide-left-small { 0% { transform: translateX(-@animation-slide-small-translate); } 100% { transform: translateX(0); } } @keyframes uk-slide-right-small { 0% { transform: translateX(@animation-slide-small-translate); } 100% { transform: translateX(0); } } /* * Slide Medium */ @keyframes uk-slide-top-medium { 0% { transform: translateY(-@animation-slide-medium-translate); } 100% { transform: translateY(0); } } @keyframes uk-slide-bottom-medium { 0% { transform: translateY(@animation-slide-medium-translate); } 100% { transform: translateY(0); } } @keyframes uk-slide-left-medium { 0% { transform: translateX(-@animation-slide-medium-translate); } 100% { transform: translateX(0); } } @keyframes uk-slide-right-medium { 0% { transform: translateX(@animation-slide-medium-translate); } 100% { transform: translateX(0); } } /* * Kenburns */ @keyframes uk-kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.2); } } /* * Shake */ @keyframes uk-shake { 0%, 100% { transform: translateX(0); } 10% { transform: translateX(-9px); } 20% { transform: translateX(8px); } 30% { transform: translateX(-7px); } 40% { transform: translateX(6px); } 50% { transform: translateX(-5px); } 60% { transform: translateX(4px); } 70% { transform: translateX(-3px); } 80% { transform: translateX(2px); } 90% { transform: translateX(-1px); } } /* * Stroke */ @keyframes uk-stroke { 0% { stroke-dashoffset: var(--uk-animation-stroke); } 100% { stroke-dashoffset: 0; } } // Hooks // ======================================================================== .hook-animation-misc(); .hook-animation-misc() {} assets/uikit/src/less/components/form.less000064400000056642151666572360015006 0ustar00// Name: Form // Description: Styles for forms // // Component: `uk-form-*` // `uk-input` // `uk-select` // `uk-textarea` // `uk-radio` // `uk-checkbox` // `uk-legend` // `uk-fieldset` // // Sub-objects: `uk-form-custom` // `uk-form-stacked` // `uk-form-horizontal` // `uk-form-label` // `uk-form-controls` // `uk-form-icon` // `uk-form-icon-flip` // // Modifiers: `uk-form-small` // `uk-form-large` // `uk-form-danger` // `uk-form-success` // `uk-form-blank` // `uk-form-width-xsmall` // `uk-form-width-small` // `uk-form-width-medium` // `uk-form-width-large` // `uk-form-controls-text` // // ======================================================================== // Variables // ======================================================================== @form-height: @global-control-height; @form-line-height: @form-height; @form-padding-horizontal: 10px; @form-padding-vertical: round(@form-padding-horizontal * 0.6); @form-background: @global-muted-background; @form-color: @global-color; @form-focus-background: darken(@form-background, 5%); @form-focus-color: @global-color; @form-disabled-background: @global-muted-background; @form-disabled-color: @global-muted-color; @form-placeholder-color: @global-muted-color; @form-small-height: @global-control-small-height; @form-small-padding-horizontal: 8px; @form-small-padding-vertical: round(@form-small-padding-horizontal * 0.6); @form-small-line-height: @form-small-height; @form-small-font-size: @global-small-font-size; @form-large-height: @global-control-large-height; @form-large-padding-horizontal: 12px; @form-large-padding-vertical: round(@form-large-padding-horizontal * 0.6); @form-large-line-height: @form-large-height; @form-large-font-size: @global-medium-font-size; @form-danger-color: @global-danger-background; @form-success-color: @global-success-background; @form-width-xsmall: 50px; @form-width-small: 130px; @form-width-medium: 200px; @form-width-large: 500px; @form-select-padding-right: 20px; @form-select-icon-color: @global-color; @form-select-option-color: @global-color; @form-select-disabled-icon-color: @global-muted-color; @form-datalist-padding-right: 20px; @form-datalist-icon-color: @global-color; @form-radio-size: 16px; @form-radio-margin-top: -4px; @form-radio-background: darken(@global-muted-background, 5%); @form-radio-focus-background: darken(@form-radio-background, 5%); @form-radio-checked-background: @global-primary-background; @form-radio-checked-icon-color: @global-inverse-color; @form-radio-checked-focus-background: darken(@global-primary-background, 10%); @form-radio-disabled-background: @global-muted-background; @form-radio-disabled-icon-color: @global-muted-color; @form-legend-font-size: @global-large-font-size; @form-legend-line-height: 1.4; @form-stacked-margin-bottom: @global-small-margin; @form-horizontal-label-width: 200px; @form-horizontal-label-margin-top: 7px; @form-horizontal-controls-margin-left: 215px; @form-horizontal-controls-text-padding-top: 7px; @form-icon-width: @form-height; @form-icon-color: @global-muted-color; @form-icon-hover-color: @global-color; @internal-form-select-image: "../../images/backgrounds/form-select.svg"; @internal-form-datalist-image: "../../images/backgrounds/form-datalist.svg"; @internal-form-radio-image: "../../images/backgrounds/form-radio.svg"; @internal-form-checkbox-image: "../../images/backgrounds/form-checkbox.svg"; @internal-form-checkbox-indeterminate-image: "../../images/backgrounds/form-checkbox-indeterminate.svg"; /* ======================================================================== Component: Form ========================================================================== */ /* * 1. Define consistent box sizing. * Default is `content-box` with following exceptions set to `border-box` * `select`, `input[type="checkbox"]` and `input[type="radio"]` * `input[type="search"]` in Chrome, Safari and Opera * `input[type="color"]` in Firefox * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera. * 3. Remove `border-radius` in iOS. * 4. Change font properties to `inherit` in all browsers. */ .uk-input, .uk-select, .uk-textarea, .uk-radio, .uk-checkbox { /* 1 */ box-sizing: border-box; /* 2 */ margin: 0; /* 3 */ border-radius: 0; /* 4 */ font: inherit; } /* * Show the overflow in Edge. */ .uk-input { overflow: visible; } /* * Remove the inheritance of text transform in Firefox. */ .uk-select { text-transform: none; } /* * 1. Change font properties to `inherit` in all browsers * 2. Don't inherit the `font-weight` and use `bold` instead. * NOTE: Both declarations don't work in Chrome, Safari and Opera. */ .uk-select optgroup { /* 1 */ font: inherit; /* 2 */ font-weight: bold; } /* * Remove the default vertical scrollbar in IE 10+. */ .uk-textarea { overflow: auto; } /* * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X. */ .uk-input[type="search"]::-webkit-search-cancel-button, .uk-input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /* * Correct the cursor style of increment and decrement buttons in Chrome. */ .uk-input[type="number"]::-webkit-inner-spin-button, .uk-input[type="number"]::-webkit-outer-spin-button { height: auto; } /* * Correct vertical alignment in Safari. */ .uk-input[type="date"]::-webkit-datetime-edit, .uk-input[type="time"]::-webkit-datetime-edit, .uk-input[type="datetime-local"]::-webkit-datetime-edit { display: inline-flex; align-items: center; height: 100%; padding: 0; } /* * Removes placeholder transparency in Firefox. */ .uk-input::-moz-placeholder, .uk-textarea::-moz-placeholder { opacity: 1; } /* * Improves consistency of cursor style for clickable elements */ .uk-radio:not(:disabled), .uk-checkbox:not(:disabled) { cursor: pointer; } /* * Define consistent border, margin, and padding. * 1. Reset `min-width` */ .uk-fieldset { border: none; margin: 0; padding: 0; /* 1 */ min-width: 0; } /* Input, select and textarea * Allowed: `text`, `password`, `datetime-local`, `date`, `month`, `time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color` * Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image` ========================================================================== */ /* * Remove default style in iOS. */ .uk-input, .uk-textarea { -webkit-appearance: none; } /* * 1. Prevent content overflow if a fixed width is used * 2. Take the full width * 3. Reset default * 4. Style */ .uk-input, .uk-select, .uk-textarea { /* 1 */ max-width: 100%; /* 2 */ width: 100%; /* 3 */ border: 0 none; /* 4 */ padding: 0 @form-padding-horizontal; background: @form-background; color: @form-color; .hook-form(); } /* * Single-line * 1. Allow any element to look like an `input` or `select` element * 2. Make sure line-height is not larger than height * Also needed to center the text vertically */ .uk-input, .uk-select:not([multiple]):not([size]) { height: @form-height; vertical-align: middle; /* 1 */ display: inline-block; .hook-form-single-line(); } /* 2 */ .uk-input:not(input), .uk-select:not(select) { line-height: @form-line-height; } /* * Multi-line */ .uk-select[multiple], .uk-select[size], .uk-textarea { padding-top: @form-padding-vertical; padding-bottom: @form-padding-vertical; vertical-align: top; .hook-form-multi-line(); } .uk-select[multiple], .uk-select[size] { resize: vertical; } /* Focus */ .uk-input:focus, .uk-select:focus, .uk-textarea:focus { outline: none; background-color: @form-focus-background; color: @form-focus-color; .hook-form-focus(); } /* Disabled */ .uk-input:disabled, .uk-select:disabled, .uk-textarea:disabled { background-color: @form-disabled-background; color: @form-disabled-color; .hook-form-disabled(); } /* * Placeholder */ .uk-input::placeholder { color: @form-placeholder-color; } .uk-textarea::placeholder { color: @form-placeholder-color; } /* Style modifier (`uk-input`, `uk-select` and `uk-textarea`) ========================================================================== */ /* * Small */ .uk-form-small { font-size: @form-small-font-size; } /* Single-line */ .uk-form-small:not(textarea):not([multiple]):not([size]) { height: @form-small-height; padding-left: @form-small-padding-horizontal; padding-right: @form-small-padding-horizontal; } /* Multi-line */ textarea.uk-form-small, [multiple].uk-form-small, [size].uk-form-small { padding: @form-small-padding-vertical @form-small-padding-horizontal; } .uk-form-small:not(select):not(input):not(textarea) { line-height: @form-small-line-height; } /* * Large */ .uk-form-large { font-size: @form-large-font-size; } /* Single-line */ .uk-form-large:not(textarea):not([multiple]):not([size]) { height: @form-large-height; padding-left: @form-large-padding-horizontal; padding-right: @form-large-padding-horizontal; } /* Multi-line */ textarea.uk-form-large, [multiple].uk-form-large, [size].uk-form-large { padding: @form-large-padding-vertical @form-large-padding-horizontal; } .uk-form-large:not(select):not(input):not(textarea) { line-height: @form-large-line-height; } /* Style modifier (`uk-input`, `uk-select` and `uk-textarea`) ========================================================================== */ /* * Error */ .uk-form-danger, .uk-form-danger:focus { color: @form-danger-color; .hook-form-danger(); } /* * Success */ .uk-form-success, .uk-form-success:focus { color: @form-success-color; .hook-form-success(); } /* * Blank */ .uk-form-blank { background: none; .hook-form-blank(); } .uk-form-blank:focus { .hook-form-blank-focus(); } /* Width modifiers (`uk-input`, `uk-select` and `uk-textarea`) ========================================================================== */ /* * Fixed widths * Different widths for mini sized `input` and `select` elements */ input.uk-form-width-xsmall { width: @form-width-xsmall; } select.uk-form-width-xsmall { width: (@form-width-xsmall + 25px); } .uk-form-width-small { width: @form-width-small; } .uk-form-width-medium { width: @form-width-medium; } .uk-form-width-large { width: @form-width-large; } /* Select ========================================================================== */ /* * 1. Remove default style. Also works in Firefox * 2. Style * 3. Set `color` for options in the select dropdown, because the inherited `color` might be too light. */ .uk-select:not([multiple]):not([size]) { /* 1 */ -webkit-appearance: none; -moz-appearance: none; /* 2 */ padding-right: @form-select-padding-right; .svg-fill(@internal-form-select-image, "#000", @form-select-icon-color); background-repeat: no-repeat; background-position: 100% 50%; } /* 3 */ .uk-select:not([multiple]):not([size]) option { color: @form-select-option-color; } /* * Disabled */ .uk-select:not([multiple]):not([size]):disabled { .svg-fill(@internal-form-select-image, "#000", @form-select-disabled-icon-color); } /* Datalist ========================================================================== */ /* * 1. Remove default style in Chrome */ .uk-input[list] { padding-right: @form-datalist-padding-right; background-repeat: no-repeat; background-position: 100% 50%; } .uk-input[list]:hover, .uk-input[list]:focus { .svg-fill(@internal-form-datalist-image, "#000", @form-datalist-icon-color); } /* 1 */ .uk-input[list]::-webkit-calendar-picker-indicator { display: none !important; } /* Radio and checkbox ========================================================================== */ /* * 1. Style * 2. Make box more robust so it clips the child element * 3. Vertical alignment * 4. Remove default style * 5. Fix black background on iOS * 6. Center icons */ .uk-radio, .uk-checkbox { /* 1 */ display: inline-block; height: @form-radio-size; width: @form-radio-size; /* 2 */ overflow: hidden; /* 3 */ margin-top: @form-radio-margin-top; vertical-align: middle; /* 4 */ -webkit-appearance: none; -moz-appearance: none; /* 5 */ background-color: @form-radio-background; /* 6 */ background-repeat: no-repeat; background-position: 50% 50%; .hook-form-radio(); } .uk-radio { border-radius: 50%; } /* Focus */ .uk-radio:focus, .uk-checkbox:focus { background-color: @form-radio-focus-background; outline: none; .hook-form-radio-focus(); } /* * Checked */ .uk-radio:checked, .uk-checkbox:checked, .uk-checkbox:indeterminate { background-color: @form-radio-checked-background; .hook-form-radio-checked(); } /* Focus */ .uk-radio:checked:focus, .uk-checkbox:checked:focus, .uk-checkbox:indeterminate:focus { background-color: @form-radio-checked-focus-background; .hook-form-radio-checked-focus(); } /* * Icons */ .uk-radio:checked { .svg-fill(@internal-form-radio-image, "#000", @form-radio-checked-icon-color); } .uk-checkbox:checked { .svg-fill(@internal-form-checkbox-image, "#000", @form-radio-checked-icon-color); } .uk-checkbox:indeterminate { .svg-fill(@internal-form-checkbox-indeterminate-image, "#000", @form-radio-checked-icon-color); } /* * Disabled */ .uk-radio:disabled, .uk-checkbox:disabled { background-color: @form-radio-disabled-background; .hook-form-radio-disabled(); } .uk-radio:disabled:checked { .svg-fill(@internal-form-radio-image, "#000", @form-radio-disabled-icon-color); } .uk-checkbox:disabled:checked { .svg-fill(@internal-form-checkbox-image, "#000", @form-radio-disabled-icon-color); } .uk-checkbox:disabled:indeterminate { .svg-fill(@internal-form-checkbox-indeterminate-image, "#000", @form-radio-disabled-icon-color); } /* Legend ========================================================================== */ /* * Legend * 1. Behave like block element * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove padding so people aren't caught out if they zero out fieldsets. * 4. Style */ .uk-legend { /* 1 */ width: 100%; /* 2 */ color: inherit; /* 3 */ padding: 0; /* 4 */ font-size: @form-legend-font-size; line-height: @form-legend-line-height; .hook-form-legend(); } /* Custom controls ========================================================================== */ /* * 1. Container fits its content * 2. Create position context * 3. Prevent content overflow * 4. Behave like most inline-block elements */ .uk-form-custom { /* 1 */ display: inline-block; /* 2 */ position: relative; /* 3 */ max-width: 100%; /* 4 */ vertical-align: middle; } /* * 1. Position and resize the form control to always cover its container * 2. Required for Firefox for positioning to the left * 3. Required for Webkit to make `height` work * 4. Hide controls and show cursor * 5. Needed for the cursor * 6. Clip height caused by 5. Needed for Webkit only */ .uk-form-custom select, .uk-form-custom input[type="file"] { /* 1 */ position: absolute; top: 0; z-index: 1; width: 100%; height: 100%; /* 2 */ left: 0; /* 3 */ -webkit-appearance: none; /* 4 */ opacity: 0; cursor: pointer; } .uk-form-custom input[type="file"] { /* 5 */ font-size: 500px; /* 6 */ overflow: hidden; } /* Label ========================================================================== */ .uk-form-label { .hook-form-label(); } /* Layout ========================================================================== */ /* * Stacked */ .uk-form-stacked .uk-form-label { display: block; margin-bottom: @form-stacked-margin-bottom; .hook-form-stacked-label(); } /* * Horizontal */ /* Tablet portrait and smaller */ @media (max-width: @breakpoint-small-max) { /* Behave like `uk-form-stacked` */ .uk-form-horizontal .uk-form-label { display: block; margin-bottom: @form-stacked-margin-bottom; .hook-form-stacked-label(); } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-form-horizontal .uk-form-label { width: @form-horizontal-label-width; margin-top: @form-horizontal-label-margin-top; float: left; .hook-form-horizontal-label(); } .uk-form-horizontal .uk-form-controls { margin-left: @form-horizontal-controls-margin-left; } /* Better vertical alignment if controls are checkboxes and radio buttons with text */ .uk-form-horizontal .uk-form-controls-text { padding-top: @form-horizontal-controls-text-padding-top; } } /* Icons ========================================================================== */ /* * 1. Set position * 2. Set width * 3. Center icon vertically and horizontally * 4. Style */ .uk-form-icon { /* 1 */ position: absolute; top: 0; bottom: 0; left: 0; /* 2 */ width: @form-icon-width; /* 3 */ display: inline-flex; justify-content: center; align-items: center; /* 4 */ color: @form-icon-color; .hook-form-icon(); } /* * Required for `a`. */ .uk-form-icon:hover { color: @form-icon-hover-color; } /* * Make `input` element clickable through icon, e.g. if it's a `span` */ .uk-form-icon:not(a):not(button):not(input) { pointer-events: none; } /* * Input padding */ .uk-form-icon:not(.uk-form-icon-flip) ~ .uk-input { padding-left: @form-icon-width !important; } /* * Position modifier */ .uk-form-icon-flip { right: 0; left: auto; } .uk-form-icon-flip ~ .uk-input { padding-right: @form-icon-width !important; } // Hooks // ======================================================================== .hook-form-misc(); .hook-form() {} .hook-form-single-line() {} .hook-form-multi-line() {} .hook-form-focus() {} .hook-form-disabled() {} .hook-form-danger() {} .hook-form-success() {} .hook-form-blank() {} .hook-form-blank-focus() {} .hook-form-radio() {} .hook-form-radio-focus() {} .hook-form-radio-checked() {} .hook-form-radio-checked-focus() {} .hook-form-radio-disabled() {} .hook-form-legend() {} .hook-form-label() {} .hook-form-stacked-label() {} .hook-form-horizontal-label() {} .hook-form-icon() {} .hook-form-misc() {} // Inverse // ======================================================================== @inverse-form-background: @inverse-global-muted-background; @inverse-form-color: @inverse-global-color; @inverse-form-focus-background: fadein(@inverse-form-background, 5%); @inverse-form-focus-color: @inverse-global-color; @inverse-form-placeholder-color: @inverse-global-muted-color; @inverse-form-select-icon-color: @inverse-global-color; @inverse-form-datalist-icon-color: @inverse-global-color; @inverse-form-radio-background: @inverse-global-muted-background; @inverse-form-radio-focus-background: fadein(@inverse-form-radio-background, 5%); @inverse-form-radio-checked-background: @inverse-global-primary-background; @inverse-form-radio-checked-icon-color: @inverse-global-inverse-color; @inverse-form-radio-checked-focus-background: fadein(@inverse-global-primary-background, 10%); @inverse-form-icon-color: @inverse-global-muted-color; @inverse-form-icon-hover-color: @inverse-global-color; .hook-inverse() { .uk-input, .uk-select, .uk-textarea { background-color: @inverse-form-background; color: @inverse-form-color; background-clip: padding-box; .hook-inverse-form(); &:focus { background-color: @inverse-form-focus-background; color: @inverse-form-focus-color; .hook-inverse-form-focus(); } } // // Placeholder // .uk-input::placeholder { color: @inverse-form-placeholder-color; } .uk-textarea::placeholder { color: @inverse-form-placeholder-color; } // // Select // .uk-select:not([multiple]):not([size]) { .svg-fill(@internal-form-select-image, "#000", @inverse-form-select-icon-color); } // // Datalist // .uk-input[list]:hover, .uk-input[list]:focus { .svg-fill(@internal-form-datalist-image, "#000", @inverse-form-datalist-icon-color); } // // Radio and checkbox // .uk-radio, .uk-checkbox { background-color: @inverse-form-radio-background; .hook-inverse-form-radio(); } // Focus .uk-radio:focus, .uk-checkbox:focus { background-color: @inverse-form-radio-focus-background; .hook-inverse-form-radio-focus(); } // Checked .uk-radio:checked, .uk-checkbox:checked, .uk-checkbox:indeterminate { background-color: @inverse-form-radio-checked-background; .hook-inverse-form-radio-checked(); } // Focus .uk-radio:checked:focus, .uk-checkbox:checked:focus, .uk-checkbox:indeterminate:focus { background-color: @inverse-form-radio-checked-focus-background; .hook-inverse-form-radio-checked-focus(); } // Icon .uk-radio:checked { .svg-fill(@internal-form-radio-image, "#000", @inverse-form-radio-checked-icon-color); } .uk-checkbox:checked { .svg-fill(@internal-form-checkbox-image, "#000", @inverse-form-radio-checked-icon-color); } .uk-checkbox:indeterminate { .svg-fill(@internal-form-checkbox-indeterminate-image, "#000", @inverse-form-radio-checked-icon-color); } // Label .uk-form-label { .hook-inverse-form-label(); } // Icon .uk-form-icon { color: @inverse-form-icon-color; .hook-inverse-form-icon(); } .uk-form-icon:hover { color: @inverse-form-icon-hover-color; } } .hook-inverse-form() {} .hook-inverse-form-focus() {} .hook-inverse-form-radio() {} .hook-inverse-form-radio-focus() {} .hook-inverse-form-radio-checked() {} .hook-inverse-form-radio-checked-focus() {} .hook-inverse-form-label() {} .hook-inverse-form-icon() {} assets/uikit/src/less/components/heading.less000064400000026535151666572360015440 0ustar00// Name: Heading // Description: Styles for headings // // Component: `uk-heading-primary` // `uk-heading-hero` // `uk-heading-divider` // `uk-heading-bullet` // `uk-heading-line` // // ======================================================================== // Variables // ======================================================================== @heading-small-font-size: @heading-small-font-size-m * 0.8; // 38px 0.73 @heading-medium-font-size: @heading-medium-font-size-m * 0.825; // 40px 0.714 @heading-large-font-size: @heading-large-font-size-m * 0.85; // 50px 0.78 @heading-xlarge-font-size: @heading-large-font-size-m; // 4rem / 64px @heading-2xlarge-font-size: @heading-xlarge-font-size-m; // 6rem / 96px @heading-3xlarge-font-size: @heading-2xlarge-font-size-m; // 8rem / 128px @heading-small-font-size-m: @heading-medium-font-size-l * 0.8125; // 3.25rem / 52px @heading-medium-font-size-m: @heading-medium-font-size-l * 0.875; // 3.5rem / 56px @heading-large-font-size-m: @heading-medium-font-size-l; // 4rem / 64px @heading-xlarge-font-size-m: @heading-large-font-size-l; // 6rem / 96px @heading-2xlarge-font-size-m: @heading-xlarge-font-size-l; // 8rem / 128px @heading-3xlarge-font-size-m: @heading-2xlarge-font-size-l; // 11rem / 176px @heading-medium-font-size-l: 4rem; // 64px @heading-large-font-size-l: 6rem; // 96px @heading-xlarge-font-size-l: 8rem; // 128px @heading-2xlarge-font-size-l: 11rem; // 176px @heading-3xlarge-font-size-l: 15rem; // 240px @heading-small-line-height: 1.2; @heading-medium-line-height: 1.1; @heading-large-line-height: 1.1; @heading-xlarge-line-height: 1; @heading-2xlarge-line-height: 1; @heading-3xlarge-line-height: 1; @heading-divider-padding-bottom: ~'calc(5px + 0.1em)'; @heading-divider-border-width: ~'calc(0.2px + 0.05em)'; @heading-divider-border: @global-border; @heading-bullet-top: ~'calc(-0.1 * 1em)'; @heading-bullet-height: ~'calc(4px + 0.7em)'; @heading-bullet-margin-right: ~'calc(5px + 0.2em)'; @heading-bullet-border-width: ~'calc(5px + 0.1em)'; @heading-bullet-border: @global-border; @heading-line-top: 50%; @heading-line-height: @heading-line-border-width; @heading-line-width: 2000px; @heading-line-border-width: ~'calc(0.2px + 0.05em)'; @heading-line-border: @global-border; @heading-line-margin-horizontal: ~'calc(5px + 0.3em)'; /* ======================================================================== Component: Heading ========================================================================== */ .uk-heading-small { font-size: @heading-small-font-size; line-height: @heading-small-line-height; .hook-heading-small(); } .uk-heading-medium { font-size: @heading-medium-font-size; line-height: @heading-medium-line-height; .hook-heading-medium(); } .uk-heading-large { font-size: @heading-large-font-size; line-height: @heading-large-line-height; .hook-heading-large(); } .uk-heading-xlarge { font-size: @heading-xlarge-font-size; line-height: @heading-xlarge-line-height; .hook-heading-xlarge(); } .uk-heading-2xlarge { font-size: @heading-2xlarge-font-size; line-height: @heading-2xlarge-line-height; .hook-heading-2xlarge(); } .uk-heading-3xlarge { font-size: @heading-3xlarge-font-size; line-height: @heading-3xlarge-line-height; .hook-heading-3xlarge(); } /* Tablet Landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-heading-small { font-size: @heading-small-font-size-m; } .uk-heading-medium { font-size: @heading-medium-font-size-m; } .uk-heading-large { font-size: @heading-large-font-size-m; } .uk-heading-xlarge { font-size: @heading-xlarge-font-size-m; } .uk-heading-2xlarge { font-size: @heading-2xlarge-font-size-m; } .uk-heading-3xlarge { font-size: @heading-3xlarge-font-size-m; } } /* Laptop and bigger */ @media (min-width: @breakpoint-large) { .uk-heading-medium { font-size: @heading-medium-font-size-l; } .uk-heading-large { font-size: @heading-large-font-size-l; } .uk-heading-xlarge { font-size: @heading-xlarge-font-size-l; } .uk-heading-2xlarge { font-size: @heading-2xlarge-font-size-l; } .uk-heading-3xlarge { font-size: @heading-3xlarge-font-size-l; } } /* Primary Deprecated: Use `uk-heading-medium` instead ========================================================================== */ @heading-primary-font-size-l: 3.75rem; // 60px @heading-primary-line-height-l: 1.1; @heading-primary-font-size-m: @heading-primary-font-size-l * 0.9; // 54px @heading-primary-font-size: @heading-primary-font-size-l * 0.8; // 48px @heading-primary-line-height: 1.2; .uk-heading-primary when (@deprecated = true) { font-size: @heading-primary-font-size; line-height: @heading-primary-line-height; .hook-heading-primary(); } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-heading-primary when (@deprecated = true) { font-size: @heading-primary-font-size-m; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-heading-primary when (@deprecated = true) { font-size: @heading-primary-font-size-l; line-height: @heading-primary-line-height-l; } } /* Hero Deprecated: Use `uk-heading-xlarge` instead ========================================================================== */ @heading-hero-font-size-l: 8rem; // 128px @heading-hero-line-height-l: 1; @heading-hero-font-size-m: @heading-hero-font-size-l * 0.75; // 96px @heading-hero-line-height-m: 1; @heading-hero-font-size: @heading-hero-font-size-l * 0.5; // 64px @heading-hero-line-height: 1.1; .uk-heading-hero when (@deprecated = true) { font-size: @heading-hero-font-size; line-height: @heading-hero-line-height; .hook-heading-hero(); } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-heading-hero when (@deprecated = true) { font-size: @heading-hero-font-size-m; line-height: @heading-hero-line-height-m; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-heading-hero when (@deprecated = true) { font-size: @heading-hero-font-size-l; line-height: @heading-hero-line-height-l; } } /* Divider ========================================================================== */ .uk-heading-divider { padding-bottom: @heading-divider-padding-bottom; border-bottom: @heading-divider-border-width solid @heading-divider-border; .hook-heading-divider(); } /* Bullet ========================================================================== */ .uk-heading-bullet { position: relative; } /* * 1. Using `inline-block` to make it work with text alignment * 2. Center vertically * 3. Style */ .uk-heading-bullet::before { content: ""; /* 1 */ display: inline-block; /* 2 */ position: relative; top: @heading-bullet-top; vertical-align: middle; /* 3 */ height: @heading-bullet-height; margin-right: @heading-bullet-margin-right; border-left: @heading-bullet-border-width solid @heading-bullet-border; .hook-heading-bullet(); } /* Line ========================================================================== */ /* * Clip the child element */ .uk-heading-line { overflow: hidden; } /* * Extra markup is needed to make it work with text align */ .uk-heading-line > * { display: inline-block; position: relative; } /* * 1. Center vertically * 2. Make the element as large as possible. It's clipped by the container. * 3. Style */ .uk-heading-line > ::before, .uk-heading-line > ::after { content: ""; /* 1 */ position: absolute; top: ~'calc(@{heading-line-top} - (@{heading-line-height} / 2))'; /* 2 */ width: @heading-line-width; /* 3 */ border-bottom: @heading-line-border-width solid @heading-line-border; .hook-heading-line(); } .uk-heading-line > ::before { right: 100%; margin-right: @heading-line-margin-horizontal; } .uk-heading-line > ::after { left: 100%; margin-left: @heading-line-margin-horizontal; } // Hooks // ======================================================================== .hook-heading-misc(); .hook-heading-small() {} .hook-heading-medium() {} .hook-heading-large() {} .hook-heading-xlarge() {} .hook-heading-2xlarge() {} .hook-heading-3xlarge() {} .hook-heading-primary() {} .hook-heading-hero() {} .hook-heading-divider() {} .hook-heading-bullet() {} .hook-heading-line() {} .hook-heading-misc() {} // Inverse // ======================================================================== @inverse-heading-divider-border: @inverse-global-border; @inverse-heading-bullet-border: @inverse-global-border; @inverse-heading-line-border: @inverse-global-border; .hook-inverse() { .uk-heading-small { .hook-inverse-heading-small(); } .uk-heading-medium { .hook-inverse-heading-medium(); } .uk-heading-large { .hook-inverse-heading-large(); } .uk-heading-xlarge { .hook-inverse-heading-xlarge(); } .uk-heading-2xlarge { .hook-inverse-heading-2xlarge(); } .uk-heading-3xlarge { .hook-inverse-heading-3xlarge(); } .uk-heading-primary when (@deprecated = true) { .hook-inverse-heading-primary(); } .uk-heading-hero when (@deprecated = true) { .hook-inverse-heading-hero(); } .uk-heading-divider { border-bottom-color: @inverse-heading-divider-border; .hook-inverse-heading-divider(); } .uk-heading-bullet::before { border-left-color: @inverse-heading-bullet-border; .hook-inverse-heading-bullet(); } .uk-heading-line > ::before, .uk-heading-line > ::after { border-bottom-color: @inverse-heading-line-border; .hook-inverse-heading-line(); } } .hook-inverse-heading-small() {} .hook-inverse-heading-medium() {} .hook-inverse-heading-large() {} .hook-inverse-heading-xlarge() {} .hook-inverse-heading-2xlarge() {} .hook-inverse-heading-3xlarge() {} .hook-inverse-heading-primary() {} .hook-inverse-heading-hero() {} .hook-inverse-heading-divider() {} .hook-inverse-heading-bullet() {} .hook-inverse-heading-line() {} assets/uikit/src/less/components/marker.less000064400000003367151666572360015320 0ustar00// Name: Marker // Description: Component to create a marker icon // // Component: `uk-marker` // // ======================================================================== // Variables // ======================================================================== @marker-padding: 5px; @marker-background: @global-secondary-background; @marker-color: @global-inverse-color; @marker-hover-color: @global-inverse-color; /* ======================================================================== Component: Marker ========================================================================== */ /* * Addopts `uk-icon` */ .uk-marker { padding: @marker-padding; background: @marker-background; color: @marker-color; .hook-marker(); } /* Hover */ .uk-marker:hover { color: @marker-hover-color; .hook-marker-hover(); } // Hooks // ======================================================================== .hook-marker-misc(); .hook-marker() {} .hook-marker-hover() {} .hook-marker-misc() {} // Inverse // ======================================================================== @inverse-marker-background: @global-muted-background; @inverse-marker-color: @global-color; @inverse-marker-hover-color: @global-color; .hook-inverse() { .uk-marker { background: @inverse-marker-background; color: @inverse-marker-color; .hook-inverse-marker(); } .uk-marker:hover { color: @inverse-marker-hover-color; .hook-inverse-marker-hover(); } } .hook-inverse-marker() {} .hook-inverse-marker-hover() {} assets/uikit/src/less/components/search.less000064400000034141151666572360015276 0ustar00// Name: Search // Description: Component to create the search // // Component: `uk-search` // // Sub-objects: `uk-search-input` // `uk-search-toggle` // // Adopted: `uk-search-icon` // // Modifier: `uk-search-default` // `uk-search-navbar` // `uk-search-medium` // `uk-search-large` // // ======================================================================== // Variables // ======================================================================== @search-color: @global-color; @search-placeholder-color: @global-muted-color; @search-icon-color: @global-muted-color; @search-default-width: 240px; @search-default-height: @global-control-height; @search-default-padding-horizontal: 10px; @search-default-background: @global-muted-background; @search-default-focus-background: darken(@search-default-background, 2%); @search-default-icon-width: 20px; @search-default-icon-padding: 10px; @search-navbar-width: 240px; @search-navbar-height: @global-control-height; @search-navbar-padding-horizontal: 10px; @search-navbar-background: @global-background; @search-navbar-focus-background: darken(@search-navbar-background, 1%); @search-navbar-icon-width: 20px; @search-navbar-icon-padding: 10px; @search-medium-width: 400px; @search-medium-height: @global-control-large-height; @search-medium-padding-horizontal: 12px; @search-medium-background: @search-default-background; @search-medium-font-size: @global-large-font-size; @search-medium-focus-background: darken(@search-medium-background, 2%); @search-medium-icon-width: 24px; @search-medium-icon-padding: 12px; @search-large-width: 500px; @search-large-height: 90px; @search-large-padding-horizontal: 20px; @search-large-background: @search-default-background; @search-large-font-size: @global-2xlarge-font-size; @search-large-focus-background: darken(@search-large-background, 2%); @search-large-icon-width: 40px; @search-large-icon-padding: 20px; @search-toggle-color: @global-muted-color; @search-toggle-hover-color: @global-color; /* ======================================================================== Component: Search ========================================================================== */ /* * 1. Container fits its content * 2. Create position context * 3. Prevent content overflow * 4. Reset `form` */ .uk-search { /* 1 */ display: inline-block; /* 2 */ position: relative; /* 3 */ max-width: 100%; /* 4 */ margin: 0; } /* Input ========================================================================== */ /* * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X. */ .uk-search-input::-webkit-search-cancel-button, .uk-search-input::-webkit-search-decoration { -webkit-appearance: none; } /* * Removes placeholder transparency in Firefox. */ .uk-search-input::-moz-placeholder { opacity: 1; } /* * 1. Define consistent box sizing. * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera. * 3. Remove `border-radius` in iOS. * 4. Change font properties to `inherit` in all browsers * 5. Show the overflow in Edge. * 6. Remove default style in iOS. * 7. Vertical alignment * 8. Take the full container width * 9. Style */ .uk-search-input { /* 1 */ box-sizing: border-box; /* 2 */ margin: 0; /* 3 */ border-radius: 0; /* 4 */ font: inherit; /* 5 */ overflow: visible; /* 6 */ -webkit-appearance: none; /* 7 */ vertical-align: middle; /* 8 */ width: 100%; /* 9 */ border: none; color: @search-color; .hook-search-input(); } .uk-search-input:focus { outline: none; } /* Placeholder */ .uk-search-input::placeholder { color: @search-placeholder-color; } /* Icon (Adopts `uk-icon`) ========================================================================== */ /* * Position above input * 1. Set position * 2. Center icon vertically and horizontally * 3. Style */ .uk-search .uk-search-icon { /* 1 */ position: absolute; top: 0; bottom: 0; left: 0; /* 2 */ display: inline-flex; justify-content: center; align-items: center; /* 3 */ color: @search-icon-color; .hook-search-icon(); } /* * Required for `a`. */ .uk-search .uk-search-icon:hover { color: @search-icon-color; } /* * Make `input` element clickable through icon, e.g. if it's a `span` */ .uk-search .uk-search-icon:not(a):not(button):not(input) { pointer-events: none; } /* * Position modifier */ .uk-search .uk-search-icon-flip { right: 0; left: auto; } /* Default modifier ========================================================================== */ .uk-search-default { width: @search-default-width; } /* * Input */ .uk-search-default .uk-search-input { height: @search-default-height; padding-left: @search-default-padding-horizontal; padding-right: @search-default-padding-horizontal; background: @search-default-background; .hook-search-default-input(); } /* Focus */ .uk-search-default .uk-search-input:focus { background-color: @search-default-focus-background; .hook-search-default-input-focus(); } /* * Icon */ .uk-search-default .uk-search-icon { padding-left: @search-default-padding-horizontal; padding-right: @search-default-padding-horizontal; } .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-default-icon-width + @search-default-padding-horizontal + @search-default-icon-padding); } .uk-search-default:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-default-icon-width + @search-default-padding-horizontal + @search-default-icon-padding); } /* Navbar modifier ========================================================================== */ .uk-search-navbar { width: @search-navbar-width; } /* * Input */ .uk-search-navbar .uk-search-input { height: @search-navbar-height; padding-left: @search-navbar-padding-horizontal; padding-right: @search-navbar-padding-horizontal; background: @search-navbar-background; .hook-search-navbar-input(); } /* Focus */ .uk-search-navbar .uk-search-input:focus { background-color: @search-navbar-focus-background; .hook-search-navbar-input-focus(); } /* * Icon */ .uk-search-navbar .uk-search-icon { padding-left: @search-navbar-padding-horizontal; padding-right: @search-navbar-padding-horizontal; } .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-navbar-icon-width + @search-navbar-padding-horizontal + @search-navbar-icon-padding); } .uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-navbar-icon-width + @search-navbar-padding-horizontal + @search-navbar-icon-padding); } /* Medium modifier ========================================================================== */ .uk-search-medium { width: @search-medium-width; } /* * Input */ .uk-search-medium .uk-search-input { height: @search-medium-height; padding-left: @search-medium-padding-horizontal; padding-right: @search-medium-padding-horizontal; background: @search-medium-background; font-size: @search-medium-font-size; .hook-search-medium-input(); } /* Focus */ .uk-search-medium .uk-search-input:focus { background-color: @search-medium-focus-background; .hook-search-medium-input-focus(); } /* * Icon */ .uk-search-medium .uk-search-icon { padding-left: @search-medium-padding-horizontal; padding-right: @search-medium-padding-horizontal; } .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-medium-icon-width + @search-medium-padding-horizontal + @search-medium-icon-padding); } .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-medium-icon-width + @search-medium-padding-horizontal + @search-medium-icon-padding); } /* Large modifier ========================================================================== */ .uk-search-large { width: @search-large-width; } /* * Input */ .uk-search-large .uk-search-input { height: @search-large-height; padding-left: @search-large-padding-horizontal; padding-right: @search-large-padding-horizontal; background: @search-large-background; font-size: @search-large-font-size; .hook-search-large-input(); } /* Focus */ .uk-search-large .uk-search-input:focus { background-color: @search-medium-focus-background; .hook-search-large-input-focus(); } /* * Icon */ .uk-search-large .uk-search-icon { padding-left: @search-large-padding-horizontal; padding-right: @search-large-padding-horizontal; } .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-large-icon-width + @search-large-padding-horizontal + @search-large-icon-padding); } .uk-search-large:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-large-icon-width + @search-large-padding-horizontal + @search-large-icon-padding); } /* Toggle ========================================================================== */ .uk-search-toggle { color: @search-toggle-color; .hook-search-toggle(); } /* Hover */ .uk-search-toggle:hover { color: @search-toggle-hover-color; .hook-search-toggle-hover(); } // Hooks // ======================================================================== .hook-search-misc(); .hook-search-input() {} .hook-search-icon() {} .hook-search-default-input() {} .hook-search-default-input-focus() {} .hook-search-navbar-input() {} .hook-search-navbar-input-focus() {} .hook-search-medium-input() {} .hook-search-medium-input-focus() {} .hook-search-large-input() {} .hook-search-large-input-focus() {} .hook-search-toggle() {} .hook-search-toggle-hover() {} .hook-search-misc() {} // Inverse // ======================================================================== @inverse-search-color: @inverse-global-color; @inverse-search-placeholder-color: @inverse-global-muted-color; @inverse-search-icon-color: @inverse-global-muted-color; @inverse-search-default-background: @inverse-global-muted-background; @inverse-search-default-focus-background: fadein(@inverse-search-default-background, 5%); @inverse-search-navbar-background: @inverse-global-muted-background; @inverse-search-navbar-focus-background: fadein(@inverse-search-navbar-background, 5%); @inverse-search-medium-background: @inverse-search-default-background; @inverse-search-medium-focus-background: fadein(@inverse-search-medium-background, 5%); @inverse-search-large-background: @inverse-search-default-background; @inverse-search-large-focus-background: fadein(@inverse-search-large-background, 5%); @inverse-search-toggle-color: @inverse-global-muted-color; @inverse-search-toggle-hover-color: @inverse-global-color; .hook-inverse() { // // Input // .uk-search-input { color: @inverse-search-color; } .uk-search-input::placeholder { color: @inverse-search-placeholder-color; } // // Icon // .uk-search .uk-search-icon { color: @inverse-search-icon-color; } .uk-search .uk-search-icon:hover { color: @inverse-search-icon-color; } // // Style modifier // .uk-search-default .uk-search-input { background-color: @inverse-search-default-background; .hook-inverse-search-default-input(); } .uk-search-default .uk-search-input:focus { background-color: @inverse-search-default-focus-background; .hook-inverse-search-default-input-focus(); } .uk-search-navbar .uk-search-input { background-color: @inverse-search-navbar-background; .hook-inverse-search-navbar-input(); } .uk-search-navbar .uk-search-input:focus { background-color: @inverse-search-navbar-focus-background; .hook-inverse-search-navbar-input-focus(); } .uk-search-medium .uk-search-input { background-color: @inverse-search-medium-background; .hook-inverse-search-medium-input(); } .uk-search-medium .uk-search-input:focus { background-color: @inverse-search-medium-focus-background; .hook-inverse-search-medium-input-focus(); } .uk-search-large .uk-search-input { background-color: @inverse-search-large-background; .hook-inverse-search-large-input(); } .uk-search-large .uk-search-input:focus { background-color: @inverse-search-large-focus-background; .hook-inverse-search-large-input-focus(); } // // Toggle // .uk-search-toggle { color: @inverse-search-toggle-color; .hook-inverse-search-toggle(); } .uk-search-toggle:hover { color: @inverse-search-toggle-hover-color; .hook-inverse-search-toggle-hover(); } } .hook-inverse-search-default-input() {} .hook-inverse-search-default-input-focus() {} .hook-inverse-search-navbar-input() {} .hook-inverse-search-navbar-input-focus() {} .hook-inverse-search-medium-input() {} .hook-inverse-search-medium-input-focus() {} .hook-inverse-search-large-input() {} .hook-inverse-search-large-input-focus() {} .hook-inverse-search-toggle() {} .hook-inverse-search-toggle-hover() {} assets/uikit/src/less/components/dropnav.less000064400000001713151666572360015501 0ustar00// Name: Dropnav // Description: Component to create dropdown/dropbar menus based on Drop component // // Component: `uk-dropnav` // // Sub-objects: `uk-dropnav-dropbar` // // ======================================================================== // Variables // ======================================================================== @dropnav-dropbar-z-index: @global-z-index - 20; /* ======================================================================== Component: Dropnav ========================================================================== */ /* * 1. Position * 2. Reset dropbar * 3. Width */ .uk-dropnav-dropbar { /* 1 */ position: absolute; z-index: @dropnav-dropbar-z-index; /* 2 */ padding: 0; /* 3 */ left: 0; right: 0; } // Hooks // ======================================================================== .hook-dropnav-misc(); .hook-dropnav-misc() {} assets/uikit/src/less/components/section.less000064400000013437151666572360015502 0ustar00// Name: Section // Description: Component to create horizontal layout section // // Component: `uk-section` // // Modifiers: `uk-section-xsmall` // `uk-section-small` // `uk-section-large` // `uk-section-xlarge` // `uk-section-default` // `uk-section-muted` // `uk-section-primary` // `uk-section-secondary` // `uk-section-overlap` // // States: `uk-preserve-color` // // ======================================================================== // Variables // ======================================================================== @section-padding-vertical: @global-medium-margin; @section-padding-vertical-m: @global-large-margin; @section-xsmall-padding-vertical: @global-margin; @section-small-padding-vertical: @global-medium-margin; @section-large-padding-vertical: @global-large-margin; @section-large-padding-vertical-m: @global-xlarge-margin; @section-xlarge-padding-vertical: @global-xlarge-margin; @section-xlarge-padding-vertical-m: (@global-large-margin + @global-xlarge-margin); @section-default-background: @global-background; @section-default-color-mode: dark; @section-muted-background: @global-muted-background; @section-muted-color-mode: dark; @section-primary-background: @global-primary-background; @section-primary-color-mode: light; @section-secondary-background: @global-secondary-background; @section-secondary-color-mode: light; /* ======================================================================== Component: Section ========================================================================== */ /* * 1. Make it work with `100vh` and height in general */ .uk-section { display: flow-root; box-sizing: border-box; /* 1 */ padding-top: @section-padding-vertical; padding-bottom: @section-padding-vertical; .hook-section(); } /* Desktop and bigger */ @media (min-width: @breakpoint-medium) { .uk-section { padding-top: @section-padding-vertical-m; padding-bottom: @section-padding-vertical-m; } } /* * Remove margin from the last-child */ .uk-section > :last-child { margin-bottom: 0; } /* Size modifiers ========================================================================== */ /* * XSmall */ .uk-section-xsmall { padding-top: @section-xsmall-padding-vertical; padding-bottom: @section-xsmall-padding-vertical; } /* * Small */ .uk-section-small { padding-top: @section-small-padding-vertical; padding-bottom: @section-small-padding-vertical; } /* * Large */ .uk-section-large { padding-top: @section-large-padding-vertical; padding-bottom: @section-large-padding-vertical; } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-section-large { padding-top: @section-large-padding-vertical-m; padding-bottom: @section-large-padding-vertical-m; } } /* * XLarge */ .uk-section-xlarge { padding-top: @section-xlarge-padding-vertical; padding-bottom: @section-xlarge-padding-vertical; } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-section-xlarge { padding-top: @section-xlarge-padding-vertical-m; padding-bottom: @section-xlarge-padding-vertical-m; } } /* Style modifiers ========================================================================== */ /* * Default */ .uk-section-default { --uk-inverse: @section-default-color-mode; background: @section-default-background; .hook-section-default(); } .uk-section-default:not(.uk-preserve-color):extend(.uk-light all) when (@section-default-color-mode = light) {} .uk-section-default:not(.uk-preserve-color):extend(.uk-dark all) when (@section-default-color-mode = dark) {} /* * Muted */ .uk-section-muted { --uk-inverse: @section-muted-color-mode; background: @section-muted-background; .hook-section-muted(); } .uk-section-muted:not(.uk-preserve-color):extend(.uk-light all) when (@section-muted-color-mode = light) {} .uk-section-muted:not(.uk-preserve-color):extend(.uk-dark all) when (@section-muted-color-mode = dark) {} /* * Primary */ .uk-section-primary { --uk-inverse: @section-primary-color-mode; background: @section-primary-background; .hook-section-primary(); } .uk-section-primary:not(.uk-preserve-color):extend(.uk-light all) when (@section-primary-color-mode = light) {} .uk-section-primary:not(.uk-preserve-color):extend(.uk-dark all) when (@section-primary-color-mode = dark) {} /* * Secondary */ .uk-section-secondary { --uk-inverse: @section-secondary-color-mode; background: @section-secondary-background; .hook-section-secondary(); } .uk-section-secondary:not(.uk-preserve-color):extend(.uk-light all) when (@section-secondary-color-mode = light) {} .uk-section-secondary:not(.uk-preserve-color):extend(.uk-dark all) when (@section-secondary-color-mode = dark) {} /* Overlap modifier ========================================================================== */ /* * Reserved modifier to make a section overlap another section with an border image * Implemented by the theme */ .uk-section-overlap { .hook-section-overlap(); } // Hooks // ======================================================================== .hook-section-misc(); .hook-section() {} .hook-section-default() {} .hook-section-muted() {} .hook-section-secondary() {} .hook-section-primary() {} .hook-section-overlap() {} .hook-section-misc() {} assets/uikit/src/less/components/totop.less000064400000003650151666572360015177 0ustar00// Name: Totop // Description: Component to create an icon to scroll back to top // // Component: `uk-totop` // // ======================================================================== // Variables // ======================================================================== @totop-padding: 5px; @totop-color: @global-muted-color; @totop-hover-color: @global-color; @totop-active-color: @global-emphasis-color; /* ======================================================================== Component: Totop ========================================================================== */ /* * Adopts `uk-icon` */ .uk-totop { padding: @totop-padding; color: @totop-color; .hook-totop(); } /* Hover */ .uk-totop:hover { color: @totop-hover-color; .hook-totop-hover(); } /* OnClick */ .uk-totop:active { color: @totop-active-color; .hook-totop-active(); } // Hooks // ======================================================================== .hook-totop-misc(); .hook-totop() {} .hook-totop-hover() {} .hook-totop-active() {} .hook-totop-misc() {} // Inverse // ======================================================================== @inverse-totop-color: @inverse-global-muted-color; @inverse-totop-hover-color: @inverse-global-color; @inverse-totop-active-color: @inverse-global-emphasis-color; .hook-inverse() { .uk-totop { color: @inverse-totop-color; .hook-inverse-totop(); } .uk-totop:hover { color: @inverse-totop-hover-color; .hook-inverse-totop-hover(); } .uk-totop:active { color: @inverse-totop-active-color; .hook-inverse-totop-active(); } } .hook-inverse-totop() {} .hook-inverse-totop-hover() {} .hook-inverse-totop-active() {} assets/uikit/src/less/components/nav.less000064400000054217151666572360014623 0ustar00// Name: Nav // Description: Defines styles for list navigations // // Component: `uk-nav` // // Sub-objects: `uk-nav-parent-icon` // `uk-nav-header` // `uk-nav-divider` // `uk-nav-subtitle` // `uk-nav-sub` // // Modifiers: `uk-nav-default` // `uk-nav-primary` // `uk-nav-secondary` // `uk-nav-medium` // `uk-nav-large` // `uk-nav-xlarge` // `uk-nav-center`, // `uk-nav-divider` // // States: `uk-active` // `uk-parent` // `uk-open` // `uk-touch` // // ======================================================================== // Variables // ======================================================================== @nav-item-padding-vertical: 5px; @nav-item-padding-horizontal: 0; @nav-sublist-padding-vertical: 5px; @nav-sublist-padding-left: 15px; @nav-sublist-deeper-padding-left: 15px; @nav-sublist-item-padding-vertical: 2px; @nav-parent-icon-margin-left: 0.25em; @nav-header-padding-vertical: @nav-item-padding-vertical; @nav-header-padding-horizontal: @nav-item-padding-horizontal; @nav-header-font-size: @global-small-font-size; @nav-header-text-transform: uppercase; @nav-header-margin-top: @global-margin; @nav-divider-margin-vertical: 5px; @nav-divider-margin-horizontal: 0; @nav-default-font-size: @global-font-size; @nav-default-line-height: @global-line-height; @nav-default-item-color: @global-muted-color; @nav-default-item-hover-color: @global-color; @nav-default-item-active-color: @global-emphasis-color; @nav-default-subtitle-font-size: @global-small-font-size; @nav-default-header-color: @global-emphasis-color; @nav-default-divider-border-width: @global-border-width; @nav-default-divider-border: @global-border; @nav-default-sublist-font-size: @nav-default-font-size; @nav-default-sublist-line-height: @nav-default-line-height; @nav-default-sublist-item-color: @global-muted-color; @nav-default-sublist-item-hover-color: @global-color; @nav-default-sublist-item-active-color: @global-emphasis-color; @nav-primary-font-size: @global-large-font-size; @nav-primary-line-height: @global-line-height; @nav-primary-item-color: @global-muted-color; @nav-primary-item-hover-color: @global-color; @nav-primary-item-active-color: @global-emphasis-color; @nav-primary-subtitle-font-size: @global-medium-font-size; @nav-primary-header-color: @global-emphasis-color; @nav-primary-divider-border-width: @global-border-width; @nav-primary-divider-border: @global-border; @nav-primary-sublist-font-size: @global-medium-font-size; @nav-primary-sublist-line-height: @global-line-height; @nav-primary-sublist-item-color: @global-muted-color; @nav-primary-sublist-item-hover-color: @global-color; @nav-primary-sublist-item-active-color: @global-emphasis-color; @nav-secondary-font-size: @global-font-size; @nav-secondary-line-height: @global-line-height; @nav-secondary-item-color: @global-emphasis-color; @nav-secondary-item-hover-color: @global-emphasis-color; @nav-secondary-item-active-color: @global-emphasis-color; @nav-secondary-subtitle-font-size: @global-small-font-size; @nav-secondary-subtitle-color: @global-muted-color; @nav-secondary-subtitle-hover-color: @global-color; @nav-secondary-subtitle-active-color: @global-emphasis-color; @nav-secondary-header-color: @global-emphasis-color; @nav-secondary-divider-border-width: @global-border-width; @nav-secondary-divider-border: @global-border; @nav-secondary-sublist-font-size: @global-small-font-size; @nav-secondary-sublist-line-height: @global-line-height; @nav-secondary-sublist-item-color: @global-muted-color; @nav-secondary-sublist-item-hover-color: @global-color; @nav-secondary-sublist-item-active-color: @global-emphasis-color; @nav-medium-line-height: 1; @nav-medium-font-size: @nav-medium-font-size-m * 0.825; // 40px 0.714 @nav-medium-font-size-m: @nav-medium-font-size-l * 0.875; // 3.5rem / 56px @nav-medium-font-size-l: 4rem; // 64px @nav-large-line-height: 1; @nav-large-font-size: @nav-large-font-size-m * 0.85; // 50px 0.78 @nav-large-font-size-m: 4rem; // 64px @nav-large-font-size-l: 6rem; // 96px @nav-xlarge-line-height: 1; @nav-xlarge-font-size: 4rem; // 64px @nav-xlarge-font-size-m: 6rem; // 96px @nav-xlarge-font-size-l: 8rem; // 128px @nav-dividers-margin-top: 5px; @nav-dividers-border-width: @global-border-width; @nav-dividers-border: @global-border; /* ======================================================================== Component: Nav ========================================================================== */ /* * Reset */ .uk-nav, .uk-nav ul { margin: 0; padding: 0; list-style: none; } /* * 1. Center content vertically, e.g. an icon * 2. Imitate white space gap when using flexbox * 3. Reset link */ .uk-nav li > a { /* 1 */ display: flex; align-items: center; /* 2 */ column-gap: 0.25em; /* 3*/ text-decoration: none; } /* * Items * Must target `a` elements to exclude other elements (e.g. lists) */ .uk-nav > li > a { padding: @nav-item-padding-vertical @nav-item-padding-horizontal; } /* Sublists ========================================================================== */ /* * Level 2 * `ul` needed for higher specificity to override padding */ ul.uk-nav-sub { padding: @nav-sublist-padding-vertical 0 @nav-sublist-padding-vertical @nav-sublist-padding-left; .hook-nav-sub(); } /* * Level 3 and deeper */ .uk-nav-sub ul { padding-left: @nav-sublist-deeper-padding-left; } /* * Items */ .uk-nav-sub a { padding: @nav-sublist-item-padding-vertical 0; } /* Parent icon ========================================================================== */ .uk-nav-parent-icon { margin-left: auto; transition: transform 0.3s ease-out; } .uk-nav > li.uk-open > a .uk-nav-parent-icon { transform: rotateX(180deg); } /* Header ========================================================================== */ .uk-nav-header { padding: @nav-header-padding-vertical @nav-header-padding-horizontal; text-transform: @nav-header-text-transform; font-size: @nav-header-font-size; .hook-nav-header(); } .uk-nav-header:not(:first-child) { margin-top: @nav-header-margin-top; } /* Divider ========================================================================== */ .uk-nav .uk-nav-divider { margin: @nav-divider-margin-vertical @nav-divider-margin-horizontal; .hook-nav-divider(); } /* Default modifier ========================================================================== */ .uk-nav-default { font-size: @nav-default-font-size; line-height: @nav-default-line-height; .hook-nav-default(); } /* * Items */ .uk-nav-default > li > a { color: @nav-default-item-color; .hook-nav-default-item(); } /* Hover */ .uk-nav-default > li > a:hover { color: @nav-default-item-hover-color; .hook-nav-default-item-hover(); } /* Active */ .uk-nav-default > li.uk-active > a { color: @nav-default-item-active-color; .hook-nav-default-item-active(); } /* * Subtitle */ .uk-nav-default .uk-nav-subtitle { font-size: @nav-default-subtitle-font-size; .hook-nav-default-subtitle(); } /* * Header */ .uk-nav-default .uk-nav-header { color: @nav-default-header-color; .hook-nav-default-header(); } /* * Divider */ .uk-nav-default .uk-nav-divider { border-top: @nav-default-divider-border-width solid @nav-default-divider-border; .hook-nav-default-divider(); } /* * Sublists */ .uk-nav-default .uk-nav-sub { font-size: @nav-default-sublist-font-size; line-height: @nav-default-sublist-line-height; } .uk-nav-default .uk-nav-sub a { color: @nav-default-sublist-item-color; } .uk-nav-default .uk-nav-sub a:hover { color: @nav-default-sublist-item-hover-color; } .uk-nav-default .uk-nav-sub li.uk-active > a { color: @nav-default-sublist-item-active-color; } /* Primary modifier ========================================================================== */ .uk-nav-primary { font-size: @nav-primary-font-size; line-height: @nav-primary-line-height; .hook-nav-primary(); } /* * Items */ .uk-nav-primary > li > a { color: @nav-primary-item-color; .hook-nav-primary-item(); } /* Hover */ .uk-nav-primary > li > a:hover { color: @nav-primary-item-hover-color; .hook-nav-primary-item-hover(); } /* Active */ .uk-nav-primary > li.uk-active > a { color: @nav-primary-item-active-color; .hook-nav-primary-item-active(); } /* * Subtitle */ .uk-nav-primary .uk-nav-subtitle { font-size: @nav-primary-subtitle-font-size; .hook-nav-primary-subtitle(); } /* * Header */ .uk-nav-primary .uk-nav-header { color: @nav-primary-header-color; .hook-nav-primary-header(); } /* * Divider */ .uk-nav-primary .uk-nav-divider { border-top: @nav-primary-divider-border-width solid @nav-primary-divider-border; .hook-nav-primary-divider(); } /* * Sublists */ .uk-nav-primary .uk-nav-sub { font-size: @nav-primary-sublist-font-size; line-height: @nav-primary-sublist-line-height; } .uk-nav-primary .uk-nav-sub a { color: @nav-primary-sublist-item-color; } .uk-nav-primary .uk-nav-sub a:hover { color: @nav-primary-sublist-item-hover-color; } .uk-nav-primary .uk-nav-sub li.uk-active > a { color: @nav-primary-sublist-item-active-color; } /* Secondary modifier ========================================================================== */ .uk-nav-secondary { font-size: @nav-secondary-font-size; line-height: @nav-secondary-line-height; .hook-nav-secondary(); } /* * Items */ .uk-nav-secondary > li > a { color: @nav-secondary-item-color; .hook-nav-secondary-item(); } /* Hover */ .uk-nav-secondary > li > a:hover { color: @nav-secondary-item-hover-color; .hook-nav-secondary-item-hover(); } /* Active */ .uk-nav-secondary > li.uk-active > a { color: @nav-secondary-item-active-color; .hook-nav-secondary-item-active(); } /* * Subtitle */ .uk-nav-secondary .uk-nav-subtitle { font-size: @nav-secondary-subtitle-font-size; color: @nav-secondary-subtitle-color; .hook-nav-secondary-subtitle(); } /* Hover */ .uk-nav-secondary > li > a:hover .uk-nav-subtitle { color: @nav-secondary-subtitle-hover-color; .hook-nav-secondary-subtitle-hover(); } /* Active */ .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle { color: @nav-secondary-subtitle-active-color; .hook-nav-secondary-subtitle-active(); } /* * Header */ .uk-nav-secondary .uk-nav-header { color: @nav-secondary-header-color; .hook-nav-secondary-header(); } /* * Divider */ .uk-nav-secondary .uk-nav-divider { border-top: @nav-secondary-divider-border-width solid @nav-secondary-divider-border; .hook-nav-secondary-divider(); } /* * Sublists */ .uk-nav-secondary .uk-nav-sub { font-size: @nav-secondary-sublist-font-size; line-height: @nav-secondary-sublist-line-height; } .uk-nav-secondary .uk-nav-sub a { color: @nav-secondary-sublist-item-color; } .uk-nav-secondary .uk-nav-sub a:hover { color: @nav-secondary-sublist-item-hover-color; } .uk-nav-secondary .uk-nav-sub li.uk-active > a { color: @nav-secondary-sublist-item-active-color; } /* Size modifier ========================================================================== */ /* * Medium */ .uk-nav-medium { font-size: @nav-medium-font-size; line-height: @nav-medium-line-height; .hook-nav-medium(); } .uk-nav-large { font-size: @nav-large-font-size; line-height: @nav-large-line-height; .hook-nav-large(); } .uk-nav-xlarge { font-size: @nav-xlarge-font-size; line-height: @nav-xlarge-line-height; .hook-nav-xlarge(); } /* Tablet Landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-nav-medium { font-size: @nav-medium-font-size-m; } .uk-nav-large { font-size: @nav-large-font-size-m; } .uk-nav-xlarge { font-size: @nav-xlarge-font-size-m; } } /* Laptop and bigger */ @media (min-width: @breakpoint-large) { .uk-nav-medium { font-size: @nav-medium-font-size-l; } .uk-nav-large { font-size: @nav-large-font-size-l; } .uk-nav-xlarge { font-size: @nav-xlarge-font-size-l; } } /* Alignment modifier ========================================================================== */ /* * 1. Center header * 2. Center items */ /* 1 */ .uk-nav-center { text-align: center; } /* 2 */ .uk-nav-center li > a { justify-content: center; } /* Sublists */ .uk-nav-center .uk-nav-sub, .uk-nav-center .uk-nav-sub ul { padding-left: 0; } /* Parent icon */ .uk-nav-center .uk-nav-parent-icon { margin-left: @nav-parent-icon-margin-left; } /* Style modifier ========================================================================== */ /* * Divider * Naming is in plural to prevent conflicts with divider sub object. */ .uk-nav.uk-nav-divider > :not(.uk-nav-header, .uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) { margin-top: @nav-dividers-margin-top; padding-top: @nav-dividers-margin-top; border-top: @nav-dividers-border-width solid @nav-dividers-border; .hook-nav-dividers(); } // Hooks // ======================================================================== .hook-nav-misc(); .hook-nav-sub() {} .hook-nav-header() {} .hook-nav-divider() {} .hook-nav-default() {} .hook-nav-default-item() {} .hook-nav-default-item-hover() {} .hook-nav-default-item-active() {} .hook-nav-default-subtitle() {} .hook-nav-default-header() {} .hook-nav-default-divider() {} .hook-nav-primary() {} .hook-nav-primary-item() {} .hook-nav-primary-item-hover() {} .hook-nav-primary-item-active() {} .hook-nav-primary-subtitle() {} .hook-nav-primary-header() {} .hook-nav-primary-divider() {} .hook-nav-secondary() {} .hook-nav-secondary-item() {} .hook-nav-secondary-item-hover() {} .hook-nav-secondary-item-active() {} .hook-nav-secondary-subtitle() {} .hook-nav-secondary-subtitle-hover() {} .hook-nav-secondary-subtitle-active() {} .hook-nav-secondary-header() {} .hook-nav-secondary-divider() {} .hook-nav-medium() {} .hook-nav-large() {} .hook-nav-xlarge() {} .hook-nav-dividers() {} .hook-nav-misc() {} // Inverse // ======================================================================== @inverse-nav-default-item-color: @inverse-global-muted-color; @inverse-nav-default-item-hover-color: @inverse-global-color; @inverse-nav-default-item-active-color: @inverse-global-emphasis-color; @inverse-nav-default-header-color: @inverse-global-emphasis-color; @inverse-nav-default-divider-border: @inverse-global-border; @inverse-nav-default-sublist-item-color: @inverse-global-muted-color; @inverse-nav-default-sublist-item-hover-color: @inverse-global-color; @inverse-nav-default-sublist-item-active-color: @inverse-global-emphasis-color; @inverse-nav-primary-item-color: @inverse-global-muted-color; @inverse-nav-primary-item-hover-color: @inverse-global-color; @inverse-nav-primary-item-active-color: @inverse-global-emphasis-color; @inverse-nav-primary-header-color: @inverse-global-emphasis-color; @inverse-nav-primary-divider-border: @inverse-global-border; @inverse-nav-primary-sublist-item-color: @inverse-global-muted-color; @inverse-nav-primary-sublist-item-hover-color: @inverse-global-color; @inverse-nav-primary-sublist-item-active-color: @inverse-global-emphasis-color; @inverse-nav-secondary-item-color: @inverse-global-emphasis-color; @inverse-nav-secondary-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-item-active-color: @inverse-global-emphasis-color; @inverse-nav-secondary-subtitle-color: @inverse-global-muted-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-color; @inverse-nav-secondary-subtitle-active-color: @inverse-global-emphasis-color; @inverse-nav-secondary-header-color: @inverse-global-emphasis-color; @inverse-nav-secondary-divider-border: @inverse-global-border; @inverse-nav-secondary-sublist-item-color: @inverse-global-muted-color; @inverse-nav-secondary-sublist-item-hover-color: @inverse-global-color; @inverse-nav-secondary-sublist-item-active-color: @inverse-global-emphasis-color; @inverse-nav-dividers-border: @inverse-global-border; .hook-inverse() { // // Default // .uk-nav-default > li > a { color: @inverse-nav-default-item-color; .hook-inverse-nav-default-item(); } .uk-nav-default > li > a:hover { color: @inverse-nav-default-item-hover-color; .hook-inverse-nav-default-item-hover(); } .uk-nav-default > li.uk-active > a { color: @inverse-nav-default-item-active-color; .hook-inverse-nav-default-item-active(); } .uk-nav-default .uk-nav-header { color: @inverse-nav-default-header-color; .hook-inverse-nav-default-header(); } .uk-nav-default .uk-nav-divider { border-top-color: @inverse-nav-default-divider-border; .hook-inverse-nav-default-divider(); } .uk-nav-default .uk-nav-sub a { color: @inverse-nav-default-sublist-item-color; } .uk-nav-default .uk-nav-sub a:hover { color: @inverse-nav-default-sublist-item-hover-color; } .uk-nav-default .uk-nav-sub li.uk-active > a { color: @inverse-nav-default-sublist-item-active-color; } // // Primary // .uk-nav-primary > li > a { color: @inverse-nav-primary-item-color; .hook-inverse-nav-primary-item(); } .uk-nav-primary > li > a:hover { color: @inverse-nav-primary-item-hover-color; .hook-inverse-nav-primary-item-hover(); } .uk-nav-primary > li.uk-active > a { color: @inverse-nav-primary-item-active-color; .hook-inverse-nav-primary-item-active(); } .uk-nav-primary .uk-nav-header { color: @inverse-nav-primary-header-color; .hook-inverse-nav-primary-header(); } .uk-nav-primary .uk-nav-divider { border-top-color: @inverse-nav-primary-divider-border; .hook-inverse-nav-primary-divider(); } .uk-nav-primary .uk-nav-sub a { color: @inverse-nav-primary-sublist-item-color; } .uk-nav-primary .uk-nav-sub a:hover { color: @inverse-nav-primary-sublist-item-hover-color; } .uk-nav-primary .uk-nav-sub li.uk-active > a { color: @inverse-nav-primary-sublist-item-active-color; } // // Secondary // .uk-nav-secondary > li > a { color: @inverse-nav-secondary-item-color; .hook-inverse-nav-secondary-item(); } .uk-nav-secondary > li > a:hover { color: @inverse-nav-secondary-item-hover-color; .hook-inverse-nav-secondary-item-hover(); } .uk-nav-secondary > li.uk-active > a { color: @inverse-nav-secondary-item-active-color; .hook-inverse-nav-secondary-item-active(); } .uk-nav-secondary .uk-nav-subtitle { color: @inverse-nav-secondary-subtitle-color; .hook-inverse-nav-secondary-subtitle(); } .uk-nav-secondary > li > a:hover .uk-nav-subtitle { color: @inverse-nav-secondary-subtitle-hover-color; .hook-inverse-nav-secondary-subtitle-hover(); } .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle { color: @inverse-nav-secondary-subtitle-active-color; .hook-inverse-nav-secondary-subtitle-active(); } .uk-nav-secondary .uk-nav-header { color: @inverse-nav-secondary-header-color; .hook-inverse-nav-secondary-header(); } .uk-nav-secondary .uk-nav-divider { border-top-color: @inverse-nav-secondary-divider-border; .hook-inverse-nav-secondary-divider(); } .uk-nav-secondary .uk-nav-sub a { color: @inverse-nav-secondary-sublist-item-color; } .uk-nav-secondary .uk-nav-sub a:hover { color: @inverse-nav-secondary-sublist-item-hover-color; } .uk-nav-secondary .uk-nav-sub li.uk-active > a { color: @inverse-nav-secondary-sublist-item-active-color; } // // Dividers // .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) { border-top-color: @inverse-nav-dividers-border; .hook-inverse-nav-dividers(); } } .hook-inverse-nav-default-item() {} .hook-inverse-nav-default-item-hover() {} .hook-inverse-nav-default-item-active() {} .hook-inverse-nav-default-header() {} .hook-inverse-nav-default-divider() {} .hook-inverse-nav-primary-item() {} .hook-inverse-nav-primary-item-hover() {} .hook-inverse-nav-primary-item-active() {} .hook-inverse-nav-primary-header() {} .hook-inverse-nav-primary-divider() {} .hook-inverse-nav-secondary-item() {} .hook-inverse-nav-secondary-item-hover() {} .hook-inverse-nav-secondary-item-active() {} .hook-inverse-nav-secondary-subtitle() {} .hook-inverse-nav-secondary-subtitle-hover() {} .hook-inverse-nav-secondary-subtitle-active() {} .hook-inverse-nav-secondary-header() {} .hook-inverse-nav-secondary-divider() {} .hook-inverse-nav-dividers() {} assets/uikit/src/less/components/dropdown.less000064400000013425151666572360015667 0ustar00// Name: Dropdown // Description: Component to create a dropdown based on Drop component // // Component: `uk-dropdown` // // Adopted: `uk-dropdown-nav` // // Modifiers: `uk-dropdown-large` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @dropdown-margin: @global-small-margin; @dropdown-viewport-margin: 15px; @dropdown-min-width: 200px; @dropdown-padding: 15px; @dropdown-background: @global-muted-background; @dropdown-color: @global-color; @dropdown-color-mode: dark; @dropdown-focus-outline: @base-focus-outline; @dropdown-large-padding: 40px; @dropdown-dropbar-margin: @dropdown-margin; @dropdown-dropbar-padding-top: @dropdown-padding; @dropdown-dropbar-padding-bottom: @dropdown-padding; @dropdown-dropbar-viewport-margin: 15px; @dropdown-dropbar-viewport-margin-s: @global-gutter; @dropdown-dropbar-viewport-margin-m: @global-medium-gutter; @dropdown-dropbar-large-padding-top: @dropdown-large-padding; @dropdown-dropbar-large-padding-bottom: @dropdown-large-padding; @dropdown-nav-item-color: @global-muted-color; @dropdown-nav-item-hover-color: @global-color; @dropdown-nav-subtitle-font-size: @global-small-font-size; @dropdown-nav-header-color: @global-emphasis-color; @dropdown-nav-divider-border-width: @global-border-width; @dropdown-nav-divider-border: @global-border; @dropdown-nav-sublist-item-color: @global-muted-color; @dropdown-nav-sublist-item-hover-color: @global-color; /* ======================================================================== Component: Dropdown ========================================================================== */ /* * Adopts `uk-drop` * 1. Reset drop and let text expand the width instead of wrapping * 2. Set a default width * 3. Style */ .uk-dropdown { --uk-position-offset: @dropdown-margin; --uk-position-viewport-offset: @dropdown-viewport-margin; --uk-inverse: @dropdown-color-mode; /* 1 */ width: auto; /* 2 */ min-width: @dropdown-min-width; /* 3 */ padding: @dropdown-padding; background: @dropdown-background; color: @dropdown-color; .hook-dropdown(); } /* * Remove margin from the last-child */ .uk-dropdown > :last-child { margin-bottom: 0; } // Color Mode .uk-dropdown:extend(.uk-light all) when (@dropdown-color-mode = light) {} .uk-dropdown:extend(.uk-dark all) when (@dropdown-color-mode = dark) {} .uk-dropdown :focus-visible when not (@dropdown-color-mode = @inverse-global-color-mode) { outline-color: @dropdown-focus-outline !important; } /* Size modifier ========================================================================== */ .uk-dropdown-large { padding: @dropdown-large-padding; } /* Dropbar modifier ========================================================================== */ /* * 1. Reset dropdown width to prevent to early shifting * 2. Reset style * 3. Padding */ .uk-dropdown-dropbar { --uk-position-offset: @dropdown-dropbar-margin; /* 1 */ width: auto; /* 2 */ background: transparent; /* 3 */ padding: @dropdown-dropbar-padding-top 0 @dropdown-dropbar-padding-bottom 0; --uk-position-viewport-offset: @dropdown-dropbar-viewport-margin; .hook-dropdown-dropbar(); } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-dropdown-dropbar { --uk-position-viewport-offset: @dropdown-dropbar-viewport-margin-s; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-dropdown-dropbar { --uk-position-viewport-offset: @dropdown-dropbar-viewport-margin-m; } } .uk-dropdown-dropbar-large { padding-top: @dropdown-dropbar-large-padding-top; padding-bottom: @dropdown-dropbar-large-padding-bottom; .hook-dropdown-dropbar-large(); } /* Nav * Adopts `uk-nav` ========================================================================== */ .uk-dropdown-nav { .hook-dropdown-nav(); } /* * Items */ .uk-dropdown-nav > li > a { color: @dropdown-nav-item-color; .hook-dropdown-nav-item(); } /* Hover + Active */ .uk-dropdown-nav > li > a:hover, .uk-dropdown-nav > li.uk-active > a { color: @dropdown-nav-item-hover-color; .hook-dropdown-nav-item-hover(); } /* * Subtitle */ .uk-dropdown-nav .uk-nav-subtitle { font-size: @dropdown-nav-subtitle-font-size; .hook-dropdown-nav-subtitle(); } /* * Header */ .uk-dropdown-nav .uk-nav-header { color: @dropdown-nav-header-color; .hook-dropdown-nav-header(); } /* * Divider */ .uk-dropdown-nav .uk-nav-divider { border-top: @dropdown-nav-divider-border-width solid @dropdown-nav-divider-border; .hook-dropdown-nav-divider(); } /* * Sublists */ .uk-dropdown-nav .uk-nav-sub a { color: @dropdown-nav-sublist-item-color; } .uk-dropdown-nav .uk-nav-sub a:hover, .uk-dropdown-nav .uk-nav-sub li.uk-active > a { color: @dropdown-nav-sublist-item-hover-color; } // Hooks // ======================================================================== .hook-dropdown-misc(); .hook-dropdown() {} .hook-dropdown-dropbar() {} .hook-dropdown-dropbar-large() {} .hook-dropdown-nav() {} .hook-dropdown-nav-item() {} .hook-dropdown-nav-item-hover() {} .hook-dropdown-nav-subtitle() {} .hook-dropdown-nav-header() {} .hook-dropdown-nav-divider() {} .hook-dropdown-misc() {} assets/uikit/src/less/components/progress.less000064400000004144151666572360015675 0ustar00// Name: Progress // Description: Component to create progress bars // // Component: `uk-progress` // // ======================================================================== // Variables // ======================================================================== @progress-height: 15px; @progress-margin-vertical: @global-margin; @progress-background: @global-muted-background; @progress-bar-background: @global-primary-background; /* ======================================================================== Component: Progress ========================================================================== */ /* * 1. Add the correct vertical alignment in all browsers. * 2. Behave like a block element. * 3. Remove borders in Firefox. * 4. Remove default style in Chrome, Safari and Edge. * 5. Style */ .uk-progress { /* 1 */ vertical-align: baseline; /* 2 */ display: block; width: 100%; /* 3 */ border: 0; /* 4 */ background-color: @progress-background; /* 5 */ margin-bottom: @progress-margin-vertical; height: @progress-height; .hook-progress(); } /* Add margin if adjacent element */ * + .uk-progress { margin-top: @progress-margin-vertical; } /* * Show background color set on `uk-progress` in Chrome, Safari and Edge. */ .uk-progress::-webkit-progress-bar { background-color: transparent; } /* * Progress Bar * 1. Transitions don't work on `::-moz-progress-bar` pseudo element in Firefox yet. * https://bugzilla.mozilla.org/show_bug.cgi?id=662351 */ .uk-progress::-webkit-progress-value { background-color: @progress-bar-background; transition: width 0.6s ease; .hook-progress-bar(); } .uk-progress::-moz-progress-bar { background-color: @progress-bar-background; /* 1 */ transition: width 0.6s ease; .hook-progress-bar(); } // Hooks // ======================================================================== .hook-progress-misc(); .hook-progress() {} .hook-progress-bar() {} .hook-progress-misc() {} assets/uikit/src/less/components/position.less000064400000013077151666572360015702 0ustar00// Name: Position // Description: Utilities to position content // // Component: `uk-position-absolute` // `uk-position-relative` // `uk-position-z-index` // `uk-position-top` // `uk-position-bottom` // `uk-position-left` // `uk-position-right` // `uk-position-top-left` // `uk-position-top-center` // `uk-position-top-right` // `uk-position-bottom-left` // `uk-position-bottom-center` // `uk-position-bottom-right` // `uk-position-center` // `uk-position-center-left` // `uk-position-center-right` // `uk-position-cover` // // Modifiers: `uk-position-small` // `uk-position-medium` // `uk-position-large` // // ======================================================================== // Variables // ======================================================================== @position-small-margin: @global-small-gutter; @position-medium-margin: @global-gutter; @position-large-margin: @global-gutter; @position-large-margin-l: 50px; /* ======================================================================== Component: Position ========================================================================== */ :root { --uk-position-margin-offset: 0px; } /* Directions ========================================================================== */ /* * 1. Prevent content overflow. */ [class*="uk-position-top"], [class*="uk-position-bottom"], [class*="uk-position-left"], [class*="uk-position-right"], [class*="uk-position-center"] { position: absolute !important; /* 1 */ max-width: ~'calc(100% - (var(--uk-position-margin-offset) * 2))'; box-sizing: border-box; } /* * Edges * Don't use `width: 100%` because it's wrong if the parent has padding. */ .uk-position-top { top: 0; left: 0; right: 0; } .uk-position-bottom { bottom: 0; left: 0; right: 0; } .uk-position-left { top: 0; bottom: 0; left: 0; } .uk-position-right { top: 0; bottom: 0; right: 0; } /* * Corners */ .uk-position-top-left { top: 0; left: 0; } .uk-position-top-right { top: 0; right: 0; } .uk-position-bottom-left { bottom: 0; left: 0; } .uk-position-bottom-right { bottom: 0; right: 0; } /* * Center * 1. Fix text wrapping if content is larger than 50% of the container. * Using `max-content` requires `max-width` of 100% which is set generally. */ .uk-position-center { top: ~'calc(50% - var(--uk-position-margin-offset))'; left: ~'calc(50% - var(--uk-position-margin-offset))'; --uk-position-translate-x: -50%; --uk-position-translate-y: -50%; transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y)); /* 1 */ width: max-content; } /* Vertical */ [class*="uk-position-center-left"], [class*="uk-position-center-right"], .uk-position-center-vertical { top: ~'calc(50% - var(--uk-position-margin-offset))'; --uk-position-translate-y: -50%; transform: translate(0, var(--uk-position-translate-y)); } .uk-position-center-left { left: 0; } .uk-position-center-right { right: 0; } .uk-position-center-vertical { left: 0; right: 0; } .uk-position-center-left-out { right: 100%; width: max-content; } .uk-position-center-right-out { left: 100%; width: max-content; } /* Horizontal */ .uk-position-top-center, .uk-position-bottom-center, .uk-position-center-horizontal { left: ~'calc(50% - var(--uk-position-margin-offset))'; --uk-position-translate-x: -50%; transform: translate(var(--uk-position-translate-x), 0); /* 1 */ width: max-content; } .uk-position-top-center { top: 0; } .uk-position-bottom-center { bottom: 0; } .uk-position-center-horizontal { top: 0; bottom: 0; } /* * Cover */ .uk-position-cover { position: absolute; top: 0; bottom: 0; left: 0; right: 0; } /* Margin ========================================================================== */ .uk-position-small { margin: @position-small-margin; --uk-position-margin-offset: @position-small-margin; } .uk-position-medium { margin: @position-medium-margin; --uk-position-margin-offset: @position-medium-margin; } .uk-position-large { margin: @position-large-margin; --uk-position-margin-offset: @position-large-margin; } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-position-large { margin: @position-large-margin-l; --uk-position-margin-offset: @position-large-margin-l; } } /* Schemes ========================================================================== */ .uk-position-relative { position: relative !important; } .uk-position-absolute { position: absolute !important; } .uk-position-fixed { position: fixed !important; } .uk-position-sticky { position: sticky !important; } /* Layer ========================================================================== */ .uk-position-z-index { z-index: 1; } .uk-position-z-index-zero { z-index: 0; } .uk-position-z-index-negative { z-index: -1; } .uk-position-z-index-high { z-index: @global-z-index - 10; } // Higher than dropbar so it is behind // Hooks // ======================================================================== .hook-position-misc(); .hook-position-misc() {} assets/uikit/src/less/components/button.less000064400000037252151666572360015352 0ustar00// Name: Button // Description: Styles for buttons // // Component: `uk-button` // // Sub-objects: `uk-button-group` // // Modifiers: `uk-button-default` // `uk-button-primary` // `uk-button-secondary` // `uk-button-danger` // `uk-button-text` // `uk-button-link` // `uk-button-small` // `uk-button-large` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @button-line-height: @global-control-height; @button-small-line-height: @global-control-small-height; @button-large-line-height: @global-control-large-height; @button-font-size: @global-font-size; @button-small-font-size: @global-small-font-size; @button-large-font-size: @global-medium-font-size; @button-padding-horizontal: @global-gutter; @button-small-padding-horizontal: @global-small-gutter; @button-large-padding-horizontal: @global-medium-gutter; @button-default-background: @global-muted-background; @button-default-color: @global-emphasis-color; @button-default-hover-background: darken(@button-default-background, 5%); @button-default-hover-color: @global-emphasis-color; @button-default-active-background: darken(@button-default-background, 10%); @button-default-active-color: @global-emphasis-color; @button-primary-background: @global-primary-background; @button-primary-color: @global-inverse-color; @button-primary-hover-background: darken(@button-primary-background, 5%); @button-primary-hover-color: @global-inverse-color; @button-primary-active-background: darken(@button-primary-background, 10%); @button-primary-active-color: @global-inverse-color; @button-secondary-background: @global-secondary-background; @button-secondary-color: @global-inverse-color; @button-secondary-hover-background: darken(@button-secondary-background, 5%); @button-secondary-hover-color: @global-inverse-color; @button-secondary-active-background: darken(@button-secondary-background, 10%); @button-secondary-active-color: @global-inverse-color; @button-danger-background: @global-danger-background; @button-danger-color: @global-inverse-color; @button-danger-hover-background: darken(@button-danger-background, 5%); @button-danger-hover-color: @global-inverse-color; @button-danger-active-background: darken(@button-danger-background, 10%); @button-danger-active-color: @global-inverse-color; @button-disabled-background: @global-muted-background; @button-disabled-color: @global-muted-color; @button-text-line-height: @global-line-height; @button-text-color: @global-emphasis-color; @button-text-hover-color: @global-muted-color; @button-text-disabled-color: @global-muted-color; @button-link-line-height: @global-line-height; @button-link-color: @global-emphasis-color; @button-link-hover-color: @global-muted-color; @button-link-hover-text-decoration: none; @button-link-disabled-color: @global-muted-color; /* ======================================================================== Component: Button ========================================================================== */ /* * 1. Remove margins in Chrome, Safari and Opera. * 2. Remove borders for `button`. * 3. Address `overflow` set to `hidden` in IE. * 4. Correct `font` properties and `color` not being inherited for `button`. * 5. Remove the inheritance of text transform in Edge, Firefox, and IE. * 6. Remove default style for `input type="submit"`in iOS. * 7. Style * 8. `line-height` is used to create a height because it also centers the text vertically for `a` elements. * Better would be to use height and flexbox to center the text vertically but flexbox doesn't work in Firefox on `button` elements. * 9. Align text if button has a width * 10. Required for `a`. */ .uk-button { /* 1 */ margin: 0; /* 2 */ border: none; /* 3 */ overflow: visible; /* 4 */ font: inherit; color: inherit; /* 5 */ text-transform: none; /* 6 */ -webkit-appearance: none; border-radius: 0; /* 7 */ display: inline-block; box-sizing: border-box; padding: 0 @button-padding-horizontal; vertical-align: middle; font-size: @button-font-size; /* 8 */ line-height: @button-line-height; /* 9 */ text-align: center; /* 10 */ text-decoration: none; .hook-button(); } .uk-button:not(:disabled) { cursor: pointer; } /* * Remove the inner border and padding in Firefox. */ .uk-button::-moz-focus-inner { border: 0; padding: 0; } /* Hover */ .uk-button:hover { /* 9 */ text-decoration: none; .hook-button-hover(); } /* OnClick + Active */ .uk-button:active, .uk-button.uk-active { .hook-button-active(); } /* Style modifiers ========================================================================== */ /* * Default */ .uk-button-default { background-color: @button-default-background; color: @button-default-color; .hook-button-default(); } /* Hover */ .uk-button-default:hover { background-color: @button-default-hover-background; color: @button-default-hover-color; .hook-button-default-hover(); } /* OnClick + Active */ .uk-button-default:active, .uk-button-default.uk-active { background-color: @button-default-active-background; color: @button-default-active-color; .hook-button-default-active(); } /* * Primary */ .uk-button-primary { background-color: @button-primary-background; color: @button-primary-color; .hook-button-primary(); } /* Hover */ .uk-button-primary:hover { background-color: @button-primary-hover-background; color: @button-primary-hover-color; .hook-button-primary-hover(); } /* OnClick + Active */ .uk-button-primary:active, .uk-button-primary.uk-active { background-color: @button-primary-active-background; color: @button-primary-active-color; .hook-button-primary-active(); } /* * Secondary */ .uk-button-secondary { background-color: @button-secondary-background; color: @button-secondary-color; .hook-button-secondary(); } /* Hover */ .uk-button-secondary:hover { background-color: @button-secondary-hover-background; color: @button-secondary-hover-color; .hook-button-secondary-hover(); } /* OnClick + Active */ .uk-button-secondary:active, .uk-button-secondary.uk-active { background-color: @button-secondary-active-background; color: @button-secondary-active-color; .hook-button-secondary-active(); } /* * Danger */ .uk-button-danger { background-color: @button-danger-background; color: @button-danger-color; .hook-button-danger(); } /* Hover */ .uk-button-danger:hover { background-color: @button-danger-hover-background; color: @button-danger-hover-color; .hook-button-danger-hover(); } /* OnClick + Active */ .uk-button-danger:active, .uk-button-danger.uk-active { background-color: @button-danger-active-background; color: @button-danger-active-color; .hook-button-danger-active(); } /* * Disabled * The same for all style modifiers */ .uk-button-default:disabled, .uk-button-primary:disabled, .uk-button-secondary:disabled, .uk-button-danger:disabled { background-color: @button-disabled-background; color: @button-disabled-color; .hook-button-disabled(); } /* Size modifiers ========================================================================== */ .uk-button-small { padding: 0 @button-small-padding-horizontal; line-height: @button-small-line-height; font-size: @button-small-font-size; .hook-button-small(); } .uk-button-large { padding: 0 @button-large-padding-horizontal; line-height: @button-large-line-height; font-size: @button-large-font-size; .hook-button-large(); } /* Text modifiers ========================================================================== */ /* * Text * 1. Reset * 2. Style */ .uk-button-text { /* 1 */ padding: 0; line-height: @button-text-line-height; background: none; /* 2 */ color: @button-text-color; .hook-button-text(); } /* Hover */ .uk-button-text:hover { color: @button-text-hover-color; .hook-button-text-hover(); } /* Disabled */ .uk-button-text:disabled { color: @button-text-disabled-color; .hook-button-text-disabled(); } /* * Link * 1. Reset * 2. Style */ .uk-button-link { /* 1 */ padding: 0; line-height: @button-link-line-height; background: none; /* 2 */ color: @button-link-color; .hook-button-link(); } /* Hover */ .uk-button-link:hover { color: @button-link-hover-color; text-decoration: @button-link-hover-text-decoration; } /* Disabled */ .uk-button-link:disabled { color: @button-link-disabled-color; text-decoration: none; } /* Group ========================================================================== */ /* * 1. Using `flex` instead of `inline-block` to prevent whitespace between child elements * 2. Behave like button * 3. Create position context */ .uk-button-group { /* 1 */ display: inline-flex; /* 2 */ vertical-align: middle; /* 3 */ position: relative; } // Hooks // ======================================================================== .hook-button-misc(); .hook-button() {} .hook-button-hover() {} .hook-button-active() {} .hook-button-default() {} .hook-button-default-hover() {} .hook-button-default-active() {} .hook-button-primary() {} .hook-button-primary-hover() {} .hook-button-primary-active() {} .hook-button-secondary() {} .hook-button-secondary-hover() {} .hook-button-secondary-active() {} .hook-button-danger() {} .hook-button-danger-hover() {} .hook-button-danger-active() {} .hook-button-disabled() {} .hook-button-small() {} .hook-button-large() {} .hook-button-text() {} .hook-button-text-hover() {} .hook-button-text-disabled() {} .hook-button-link() {} .hook-button-misc() {} // Inverse // ======================================================================== @inverse-button-default-background: @inverse-global-primary-background; @inverse-button-default-color: @inverse-global-inverse-color; @inverse-button-default-hover-background: darken(@inverse-button-default-background, 5%); @inverse-button-default-hover-color: @inverse-global-inverse-color; @inverse-button-default-active-background: darken(@inverse-button-default-background, 10%); @inverse-button-default-active-color: @inverse-global-inverse-color; @inverse-button-primary-background: @inverse-global-primary-background; @inverse-button-primary-color: @inverse-global-inverse-color; @inverse-button-primary-hover-background: darken(@inverse-button-primary-background, 5%); @inverse-button-primary-hover-color: @inverse-global-inverse-color; @inverse-button-primary-active-background: darken(@inverse-button-primary-background, 10%); @inverse-button-primary-active-color: @inverse-global-inverse-color; @inverse-button-secondary-background: @inverse-global-primary-background; @inverse-button-secondary-color: @inverse-global-inverse-color; @inverse-button-secondary-hover-background: darken(@inverse-button-secondary-background, 5%); @inverse-button-secondary-hover-color: @inverse-global-inverse-color; @inverse-button-secondary-active-background: darken(@inverse-button-secondary-background, 10%); @inverse-button-secondary-active-color: @inverse-global-inverse-color; @inverse-button-text-color: @inverse-global-emphasis-color; @inverse-button-text-hover-color: @inverse-global-muted-color; @inverse-button-text-disabled-color: @inverse-global-muted-color; @inverse-button-link-color: @inverse-global-emphasis-color; @inverse-button-link-hover-color: @inverse-global-muted-color; .hook-inverse() { // // Default // .uk-button-default { background-color: @inverse-button-default-background; color: @inverse-button-default-color; .hook-inverse-button-default(); } .uk-button-default:hover { background-color: @inverse-button-default-hover-background; color: @inverse-button-default-hover-color; .hook-inverse-button-default-hover(); } .uk-button-default:active, .uk-button-default.uk-active { background-color: @inverse-button-default-active-background; color: @inverse-button-default-active-color; .hook-inverse-button-default-active(); } // // Primary // .uk-button-primary { background-color: @inverse-button-primary-background; color: @inverse-button-primary-color; .hook-inverse-button-primary(); } .uk-button-primary:hover { background-color: @inverse-button-primary-hover-background; color: @inverse-button-primary-hover-color; .hook-inverse-button-primary-hover(); } .uk-button-primary:active, .uk-button-primary.uk-active { background-color: @inverse-button-primary-active-background; color: @inverse-button-primary-active-color; .hook-inverse-button-primary-active(); } // // Secondary // .uk-button-secondary { background-color: @inverse-button-secondary-background; color: @inverse-button-secondary-color; .hook-inverse-button-secondary(); } .uk-button-secondary:hover { background-color: @inverse-button-secondary-hover-background; color: @inverse-button-secondary-hover-color; .hook-inverse-button-secondary-hover(); } .uk-button-secondary:active, .uk-button-secondary.uk-active { background-color: @inverse-button-secondary-active-background; color: @inverse-button-secondary-active-color; .hook-inverse-button-secondary-active(); } // // Text // .uk-button-text { color: @inverse-button-text-color; .hook-inverse-button-text(); } .uk-button-text:hover { color: @inverse-button-text-hover-color; .hook-inverse-button-text-hover(); } .uk-button-text:disabled { color: @inverse-button-text-disabled-color; .hook-inverse-button-text-disabled(); } // // Link // .uk-button-link { color: @inverse-button-link-color; .hook-inverse-button-link(); } .uk-button-link:hover { color: @inverse-button-link-hover-color; } } .hook-inverse-button-default() {} .hook-inverse-button-default-hover() {} .hook-inverse-button-default-active() {} .hook-inverse-button-primary() {} .hook-inverse-button-primary-hover() {} .hook-inverse-button-primary-active() {} .hook-inverse-button-secondary() {} .hook-inverse-button-secondary-hover() {} .hook-inverse-button-secondary-active() {} .hook-inverse-button-text() {} .hook-inverse-button-text-hover() {} .hook-inverse-button-text-disabled() {} .hook-inverse-button-link() {} assets/uikit/src/less/components/tile.less000064400000014261151666572360014767 0ustar00// Name: Tile // Description: Component to create tiled boxes // // Component: `uk-tile` // // Modifiers: `uk-tile-xsmall` // `uk-tile-small` // `uk-tile-large` // `uk-tile-xlarge` // `uk-tile-default` // `uk-tile-muted` // `uk-tile-primary` // `uk-tile-secondary` // // States: `uk-preserve-color` // // ======================================================================== // Variables // ======================================================================== @tile-padding-horizontal: 15px; @tile-padding-horizontal-s: @global-gutter; @tile-padding-horizontal-m: @global-medium-gutter; @tile-padding-vertical: @global-medium-margin; @tile-padding-vertical-m: @global-large-margin; @tile-xsmall-padding-vertical: @global-margin; @tile-small-padding-vertical: @global-medium-margin; @tile-large-padding-vertical: @global-large-margin; @tile-large-padding-vertical-m: @global-xlarge-margin; @tile-xlarge-padding-vertical: @global-xlarge-margin; @tile-xlarge-padding-vertical-m: (@global-large-margin + @global-xlarge-margin); @tile-default-background: @global-background; @tile-default-color-mode: dark; @tile-muted-background: @global-muted-background; @tile-muted-color-mode: dark; @tile-primary-background: @global-primary-background; @tile-primary-color-mode: light; @tile-secondary-background: @global-secondary-background; @tile-secondary-color-mode: light; /* ======================================================================== Component: Tile ========================================================================== */ .uk-tile { display: flow-root; position: relative; box-sizing: border-box; padding-left: @tile-padding-horizontal; padding-right: @tile-padding-horizontal; padding-top: @tile-padding-vertical; padding-bottom: @tile-padding-vertical; .hook-tile(); } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-tile { padding-left: @tile-padding-horizontal-s; padding-right: @tile-padding-horizontal-s; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-tile { padding-left: @tile-padding-horizontal-m; padding-right: @tile-padding-horizontal-m; padding-top: @tile-padding-vertical-m; padding-bottom: @tile-padding-vertical-m; } } /* * Remove margin from the last-child */ .uk-tile > :last-child { margin-bottom: 0; } /* Size modifiers ========================================================================== */ /* * XSmall */ .uk-tile-xsmall { padding-top: @tile-xsmall-padding-vertical; padding-bottom: @tile-xsmall-padding-vertical; } /* * Small */ .uk-tile-small { padding-top: @tile-small-padding-vertical; padding-bottom: @tile-small-padding-vertical; } /* * Large */ .uk-tile-large { padding-top: @tile-large-padding-vertical; padding-bottom: @tile-large-padding-vertical; } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-tile-large { padding-top: @tile-large-padding-vertical-m; padding-bottom: @tile-large-padding-vertical-m; } } /* * XLarge */ .uk-tile-xlarge { padding-top: @tile-xlarge-padding-vertical; padding-bottom: @tile-xlarge-padding-vertical; } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-tile-xlarge { padding-top: @tile-xlarge-padding-vertical-m; padding-bottom: @tile-xlarge-padding-vertical-m; } } /* Style modifiers ========================================================================== */ /* * Default */ .uk-tile-default { --uk-inverse: @tile-default-color-mode; background-color: @tile-default-background; .hook-tile-default(); } .uk-tile-default.uk-tile-hover:hover { .hook-tile-default-hover(); } // Color Mode .uk-tile-default:not(.uk-preserve-color):extend(.uk-light all) when (@tile-default-color-mode = light) {} .uk-tile-default:not(.uk-preserve-color):extend(.uk-dark all) when (@tile-default-color-mode = dark) {} /* * Muted */ .uk-tile-muted { --uk-inverse: @tile-muted-color-mode; background-color: @tile-muted-background; .hook-tile-muted(); } .uk-tile-muted.uk-tile-hover:hover { .hook-tile-muted-hover(); } // Color Mode .uk-tile-muted:not(.uk-preserve-color):extend(.uk-light all) when (@tile-muted-color-mode = light) {} .uk-tile-muted:not(.uk-preserve-color):extend(.uk-dark all) when (@tile-muted-color-mode = dark) {} /* * Primary */ .uk-tile-primary { --uk-inverse: @tile-primary-color-mode; background-color: @tile-primary-background; .hook-tile-primary(); } .uk-tile-primary.uk-tile-hover:hover { .hook-tile-primary-hover(); } // Color Mode .uk-tile-primary:not(.uk-preserve-color):extend(.uk-light all) when (@tile-primary-color-mode = light) {} .uk-tile-primary:not(.uk-preserve-color):extend(.uk-dark all) when (@tile-primary-color-mode = dark) {} /* * Secondary */ .uk-tile-secondary { --uk-inverse: @tile-secondary-color-mode; background-color: @tile-secondary-background; .hook-tile-secondary(); } .uk-tile-secondary.uk-tile-hover:hover { .hook-tile-secondary-hover(); } // Color Mode .uk-tile-secondary:not(.uk-preserve-color):extend(.uk-light all) when (@tile-secondary-color-mode = light) {} .uk-tile-secondary:not(.uk-preserve-color):extend(.uk-dark all) when (@tile-secondary-color-mode = dark) {} // Hooks // ======================================================================== .hook-tile-misc(); .hook-tile() {} .hook-tile-default() {} .hook-tile-default-hover() {} .hook-tile-muted() {} .hook-tile-muted-hover() {} .hook-tile-primary() {} .hook-tile-primary-hover() {} .hook-tile-secondary() {} .hook-tile-secondary-hover() {} .hook-tile-misc() {} assets/uikit/src/less/components/container.less000064400000013672151666572360016021 0ustar00// Name: Container // Description: Component to align and center your site and grid content // // Component: `uk-container` // // Modifier: `uk-container-small` // `uk-container-large` // `uk-container-expand` // `uk-container-expand-left` // `uk-container-expand-right` // `uk-container-item-padding-remove-left` // `uk-container-item-padding-remove-right` // // ======================================================================== // Variables // ======================================================================== @container-max-width: 1200px; @container-xsmall-max-width: 750px; @container-small-max-width: 900px; @container-large-max-width: 1400px; @container-xlarge-max-width: 1600px; @container-padding-horizontal: 15px; @container-padding-horizontal-s: @global-gutter; @container-padding-horizontal-m: @global-medium-gutter; /* ======================================================================== Component: Container ========================================================================== */ /* * 1. Box sizing has to be `content-box` so the max-width is always the same and * unaffected by the padding on different breakpoints. It's important for the size modifiers. */ .uk-container { display: flow-root; /* 1 */ box-sizing: content-box; max-width: @container-max-width; margin-left: auto; margin-right: auto; padding-left: @container-padding-horizontal; padding-right: @container-padding-horizontal; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-container { padding-left: @container-padding-horizontal-s; padding-right: @container-padding-horizontal-s; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-container { padding-left: @container-padding-horizontal-m; padding-right: @container-padding-horizontal-m; } } /* * Remove margin from the last-child */ .uk-container > :last-child { margin-bottom: 0; } /* * Remove padding from nested containers */ .uk-container .uk-container { padding-left: 0; padding-right: 0; } /* Size modifier ========================================================================== */ .uk-container-xsmall { max-width: @container-xsmall-max-width; } .uk-container-small { max-width: @container-small-max-width; } .uk-container-large { max-width: @container-large-max-width; } .uk-container-xlarge { max-width: @container-xlarge-max-width; } .uk-container-expand { max-width: none; } /* Expand modifier ========================================================================== */ /* * Expand one side only */ .uk-container-expand-left { margin-left: 0; } .uk-container-expand-right { margin-right: 0; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-container-expand-left.uk-container-xsmall, .uk-container-expand-right.uk-container-xsmall { max-width: ~'calc(50% + (@{container-xsmall-max-width} / 2) - @{container-padding-horizontal-s})'; } .uk-container-expand-left.uk-container-small, .uk-container-expand-right.uk-container-small { max-width: ~'calc(50% + (@{container-small-max-width} / 2) - @{container-padding-horizontal-s})'; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-container-expand-left, .uk-container-expand-right { max-width: ~'calc(50% + (@{container-max-width} / 2) - @{container-padding-horizontal-m})'; } .uk-container-expand-left.uk-container-xsmall, .uk-container-expand-right.uk-container-xsmall { max-width: ~'calc(50% + (@{container-xsmall-max-width} / 2) - @{container-padding-horizontal-m})'; } .uk-container-expand-left.uk-container-small, .uk-container-expand-right.uk-container-small { max-width: ~'calc(50% + (@{container-small-max-width} / 2) - @{container-padding-horizontal-m})'; } .uk-container-expand-left.uk-container-large, .uk-container-expand-right.uk-container-large { max-width: ~'calc(50% + (@{container-large-max-width} / 2) - @{container-padding-horizontal-m})'; } .uk-container-expand-left.uk-container-xlarge, .uk-container-expand-right.uk-container-xlarge { max-width: ~'calc(50% + (@{container-xlarge-max-width} / 2) - @{container-padding-horizontal-m})'; } } /* Item ========================================================================== */ /* * Utility classes to reset container padding on the left or right side * Note: It has to be negative margin on the item, because it's specific to the item. */ .uk-container-item-padding-remove-left, .uk-container-item-padding-remove-right { width: ~'calc(100% + @{container-padding-horizontal})'; } .uk-container-item-padding-remove-left { margin-left: -@container-padding-horizontal; } .uk-container-item-padding-remove-right { margin-right: -@container-padding-horizontal; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-container-item-padding-remove-left, .uk-container-item-padding-remove-right { width: ~'calc(100% + @{container-padding-horizontal-s})'; } .uk-container-item-padding-remove-left { margin-left: -@container-padding-horizontal-s; } .uk-container-item-padding-remove-right { margin-right: -@container-padding-horizontal-s; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-container-item-padding-remove-left, .uk-container-item-padding-remove-right { width: ~'calc(100% + @{container-padding-horizontal-m})'; } .uk-container-item-padding-remove-left { margin-left: -@container-padding-horizontal-m; } .uk-container-item-padding-remove-right { margin-right: -@container-padding-horizontal-m; } } // Hooks // ======================================================================== .hook-container-misc(); .hook-container-misc() {} assets/uikit/src/less/components/subnav.less000064400000022024151666572360015324 0ustar00// Name: Subnav // Description: Component to create a sub navigation // // Component: `uk-subnav` // // Modifiers: `uk-subnav-divider` // `uk-subnav-pill` // // States: `uk-active` // `uk-first-column` // // ======================================================================== // Variables // ======================================================================== @subnav-margin-horizontal: 20px; @subnav-item-color: @global-muted-color; @subnav-item-hover-color: @global-color; @subnav-item-hover-text-decoration: none; @subnav-item-active-color: @global-emphasis-color; @subnav-divider-margin-horizontal: @subnav-margin-horizontal; @subnav-divider-border-height: 1.5em; @subnav-divider-border-width: @global-border-width; @subnav-divider-border: @global-border; @subnav-pill-margin-horizontal: @subnav-margin-horizontal; @subnav-pill-item-padding-vertical: 5px; @subnav-pill-item-padding-horizontal: 10px; @subnav-pill-item-background: transparent; @subnav-pill-item-color: @subnav-item-color; @subnav-pill-item-hover-background: @global-muted-background; @subnav-pill-item-hover-color: @global-color; @subnav-pill-item-onclick-background: @subnav-pill-item-hover-background; @subnav-pill-item-onclick-color: @subnav-pill-item-hover-color; @subnav-pill-item-active-background: @global-primary-background; @subnav-pill-item-active-color: @global-inverse-color; @subnav-item-disabled-color: @global-muted-color; /* ======================================================================== Component: Subnav ========================================================================== */ /* * 1. Allow items to wrap into the next line * 2. Center items vertically if they have a different height * 3. Gutter * 4. Reset list */ .uk-subnav { display: flex; /* 1 */ flex-wrap: wrap; /* 2 */ align-items: center; /* 3 */ margin-left: -@subnav-margin-horizontal; /* 4 */ padding: 0; list-style: none; .hook-subnav(); } /* * 1. Space is allocated solely based on content dimensions: 0 0 auto * 2. Gutter * 3. Create position context for dropdowns */ .uk-subnav > * { /* 1 */ flex: none; /* 2 */ padding-left: @subnav-margin-horizontal; /* 3 */ position: relative; } /* Items ========================================================================== */ /* * Items must target `a` elements to exclude other elements (e.g. dropdowns) * Using `:first-child` instead of `a` to support `span` elements for text * 1. Center content vertically, e.g. an icon * 2. Imitate white space gap when using flexbox * 3. Style */ .uk-subnav > * > :first-child { /* 1 */ display: flex; align-items: center; /* 2 */ column-gap: 0.25em; /* 3 */ color: @subnav-item-color; .hook-subnav-item(); } /* Hover */ .uk-subnav > * > a:hover { color: @subnav-item-hover-color; text-decoration: @subnav-item-hover-text-decoration; .hook-subnav-item-hover(); } /* Active */ .uk-subnav > .uk-active > a { color: @subnav-item-active-color; .hook-subnav-item-active(); } /* Divider modifier ========================================================================== */ /* * Set gutter */ .uk-subnav-divider { margin-left: -((@subnav-divider-margin-horizontal * 2) + @subnav-divider-border-width); } /* * Align items and divider vertically */ .uk-subnav-divider > * { display: flex; align-items: center; } /* * Divider * 1. `nth-child` makes it also work without JS if it's only one row */ .uk-subnav-divider > ::before { content: ""; height: @subnav-divider-border-height; margin-left: (@subnav-divider-margin-horizontal - @subnav-margin-horizontal); margin-right: @subnav-divider-margin-horizontal; border-left: @subnav-divider-border-width solid transparent; } /* 1 */ .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before { border-left-color: @subnav-divider-border; .hook-subnav-divider(); } /* Pill modifier ========================================================================== */ /* * Gutter */ .uk-subnav-pill { margin-left: -@subnav-pill-margin-horizontal; } .uk-subnav-pill > * { padding-left: @subnav-pill-margin-horizontal; } .uk-subnav-pill > * > :first-child { padding: @subnav-pill-item-padding-vertical @subnav-pill-item-padding-horizontal; background: @subnav-pill-item-background; color: @subnav-pill-item-color; .hook-subnav-pill-item(); } /* Hover */ .uk-subnav-pill > * > a:hover { background-color: @subnav-pill-item-hover-background; color: @subnav-pill-item-hover-color; .hook-subnav-pill-item-hover(); } /* OnClick */ .uk-subnav-pill > * > a:active { background-color: @subnav-pill-item-onclick-background; color: @subnav-pill-item-onclick-color; .hook-subnav-pill-item-onclick(); } /* Active */ .uk-subnav-pill > .uk-active > a { background-color: @subnav-pill-item-active-background; color: @subnav-pill-item-active-color; .hook-subnav-pill-item-active(); } /* Disabled * The same for all style modifiers ========================================================================== */ .uk-subnav > .uk-disabled > a { color: @subnav-item-disabled-color; .hook-subnav-item-disabled(); } // Hooks // ======================================================================== .hook-subnav-misc(); .hook-subnav() {} .hook-subnav-item() {} .hook-subnav-item-hover() {} .hook-subnav-item-active() {} .hook-subnav-divider() {} .hook-subnav-pill-item() {} .hook-subnav-pill-item-hover() {} .hook-subnav-pill-item-onclick() {} .hook-subnav-pill-item-active() {} .hook-subnav-item-disabled() {} .hook-subnav-misc() {} // Inverse // ======================================================================== @inverse-subnav-item-color: @inverse-global-muted-color; @inverse-subnav-item-hover-color: @inverse-global-color; @inverse-subnav-item-active-color: @inverse-global-emphasis-color; @inverse-subnav-divider-border: @inverse-global-border; @inverse-subnav-pill-item-background: transparent; @inverse-subnav-pill-item-color: @inverse-global-muted-color; @inverse-subnav-pill-item-hover-background: @inverse-global-muted-background; @inverse-subnav-pill-item-hover-color: @inverse-global-color; @inverse-subnav-pill-item-onclick-background: @inverse-subnav-pill-item-hover-background; @inverse-subnav-pill-item-onclick-color: @inverse-subnav-pill-item-hover-color; @inverse-subnav-pill-item-active-background: @inverse-global-primary-background; @inverse-subnav-pill-item-active-color: @inverse-global-inverse-color; @inverse-subnav-item-disabled-color: @inverse-global-muted-color; .hook-inverse() { .uk-subnav > * > :first-child { color: @inverse-subnav-item-color; .hook-inverse-subnav-item(); } .uk-subnav > * > a:hover { color: @inverse-subnav-item-hover-color; .hook-inverse-subnav-item-hover(); } .uk-subnav > .uk-active > a { color: @inverse-subnav-item-active-color; .hook-inverse-subnav-item-active(); } // // Divider // .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before { border-left-color: @inverse-subnav-divider-border; .hook-inverse-subnav-divider(); } // // Pill // .uk-subnav-pill > * > :first-child { background-color: @inverse-subnav-pill-item-background; color: @inverse-subnav-pill-item-color; .hook-inverse-subnav-pill-item(); } .uk-subnav-pill > * > a:hover { background-color: @inverse-subnav-pill-item-hover-background; color: @inverse-subnav-pill-item-hover-color; .hook-inverse-subnav-pill-item-hover(); } .uk-subnav-pill > * > a:active { background-color: @inverse-subnav-pill-item-onclick-background; color: @inverse-subnav-pill-item-onclick-color; .hook-inverse-subnav-pill-item-onclick(); } .uk-subnav-pill > .uk-active > a { background-color: @inverse-subnav-pill-item-active-background; color: @inverse-subnav-pill-item-active-color; .hook-inverse-subnav-pill-item-active(); } // // Disabled // .uk-subnav > .uk-disabled > a { color: @inverse-subnav-item-disabled-color; .hook-inverse-subnav-item-disabled(); } } .hook-inverse-subnav-item() {} .hook-inverse-subnav-item-hover() {} .hook-inverse-subnav-item-active() {} .hook-inverse-subnav-divider() {} .hook-inverse-subnav-pill-item() {} .hook-inverse-subnav-pill-item-hover() {} .hook-inverse-subnav-pill-item-onclick() {} .hook-inverse-subnav-pill-item-active() {} .hook-inverse-subnav-item-disabled() {} assets/uikit/src/less/components/transition.less000064400000012731151666572360016224 0ustar00// Name: Transition // Description: Utilities for transitions // // Component: `uk-transition-*` // // Modifiers: `uk-transition-fade` // `uk-transition-scale-up` // `uk-transition-scale-down` // `uk-transition-slide-top-*` // `uk-transition-slide-bottom-*` // `uk-transition-slide-left-*` // `uk-transition-slide-right-*` // `uk-transition-opaque` // `uk-transition-slow` // `uk-transition-disable` // // Sub-objects: `uk-transition-toggle`, // `uk-transition-active` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @transition-duration: 0.3s; @transition-scale: 1.03; @transition-slide-small-translate: 10px; @transition-slide-medium-translate: 50px; @transition-slow-duration: 0.7s; /* ======================================================================== Component: Transition ========================================================================== */ /* Transitions ========================================================================== */ /* * The toggle is triggered on touch devices by two methods: * 1. Using `:focus` and tabindex * 2. Using `:hover` and a `touchstart` event listener registered on the document * (Doesn't work on Surface touch devices) */ :where(.uk-transition-fade), :where([class*="uk-transition-scale"]), :where([class*="uk-transition-slide"]) { --uk-position-translate-x: 0; --uk-position-translate-y: 0; } .uk-transition-fade, [class*="uk-transition-scale"], [class*="uk-transition-slide"] { --uk-translate-x: 0; --uk-translate-y: 0; --uk-scale-x: 1; --uk-scale-y: 1; transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y)) translate(var(--uk-translate-x), var(--uk-translate-y)) scale(var(--uk-scale-x), var(--uk-scale-y)); transition: @transition-duration ease-out; transition-property: opacity, transform, filter; opacity: 0; } /* * Fade */ .uk-transition-toggle:hover .uk-transition-fade, .uk-transition-toggle:focus .uk-transition-fade, .uk-transition-toggle:focus-within .uk-transition-fade, .uk-transition-active.uk-active .uk-transition-fade { opacity: 1; } /* * Scale * 1. Make image rendering the same during the transition as before and after. Prefixed because of Safari. */ /* 1 */ [class*="uk-transition-scale"] { -webkit-backface-visibility: hidden; } .uk-transition-scale-up { --uk-scale-x: 1; --uk-scale-y: 1; } .uk-transition-scale-down { --uk-scale-x: @transition-scale; --uk-scale-y: @transition-scale; } /* Show */ .uk-transition-toggle:hover .uk-transition-scale-up, .uk-transition-toggle:focus .uk-transition-scale-up, .uk-transition-toggle:focus-within .uk-transition-scale-up, .uk-transition-active.uk-active .uk-transition-scale-up { --uk-scale-x: @transition-scale; --uk-scale-y: @transition-scale; opacity: 1; } .uk-transition-toggle:hover .uk-transition-scale-down, .uk-transition-toggle:focus .uk-transition-scale-down, .uk-transition-toggle:focus-within .uk-transition-scale-down, .uk-transition-active.uk-active .uk-transition-scale-down { --uk-scale-x: 1; --uk-scale-y: 1; opacity: 1; } /* * Slide */ .uk-transition-slide-top { --uk-translate-y: -100%; } .uk-transition-slide-bottom { --uk-translate-y: 100%; } .uk-transition-slide-left { --uk-translate-x: -100%; } .uk-transition-slide-right { --uk-translate-x: 100%; } .uk-transition-slide-top-small { --uk-translate-y: ~'calc(-1 * @{transition-slide-small-translate})'; } .uk-transition-slide-bottom-small { --uk-translate-y: @transition-slide-small-translate; } .uk-transition-slide-left-small { --uk-translate-x: ~'calc(-1 * @{transition-slide-small-translate})'; } .uk-transition-slide-right-small { --uk-translate-x: @transition-slide-small-translate; } .uk-transition-slide-top-medium { --uk-translate-y: ~'calc(-1 * @{transition-slide-medium-translate})'; } .uk-transition-slide-bottom-medium { --uk-translate-y: @transition-slide-medium-translate; } .uk-transition-slide-left-medium { --uk-translate-x: ~'calc(-1 * @{transition-slide-medium-translate})'; } .uk-transition-slide-right-medium { --uk-translate-x: @transition-slide-medium-translate; } /* Show */ .uk-transition-toggle:hover [class*="uk-transition-slide"], .uk-transition-toggle:focus [class*="uk-transition-slide"], .uk-transition-toggle:focus-within [class*="uk-transition-slide"], .uk-transition-active.uk-active [class*="uk-transition-slide"] { --uk-translate-x: 0; --uk-translate-y: 0; opacity: 1; } /* Opacity modifier ========================================================================== */ .uk-transition-opaque { opacity: 1; } /* Duration modifier ========================================================================== */ .uk-transition-slow { transition-duration: @transition-slow-duration; } /* Disable modifier ========================================================================== */ .uk-transition-disable, .uk-transition-disable * { transition: none !important; } // Hooks // ======================================================================== .hook-transition-misc(); .hook-transition-misc() {} assets/uikit/src/less/components/breadcrumb.less000064400000010167151666572360016141 0ustar00// Name: Breadcrumb // Description: Component to create a breadcrumb navigation // // Component: `uk-breadcrumb` // // States: `uk-disabled` // // ======================================================================== // Variables // ======================================================================== @breadcrumb-item-font-size: @global-small-font-size; @breadcrumb-item-color: @global-muted-color; @breadcrumb-item-hover-color: @global-color; @breadcrumb-item-hover-text-decoration: none; @breadcrumb-item-active-color: @global-color; @breadcrumb-divider: "/"; @breadcrumb-divider-margin-horizontal: 20px; @breadcrumb-divider-font-size: @breadcrumb-item-font-size; @breadcrumb-divider-color: @global-muted-color; /* ======================================================================== Component: Breadcrumb ========================================================================== */ /* * 1. Reset list * 2. Remove space between elements */ .uk-breadcrumb { /* 1 */ padding: 0; list-style: none; /* 2 */ font-size: 0; .hook-breadcrumb(); } /* * 1. Doesn't generate any box and replaced by child boxes */ .uk-breadcrumb > * { display: contents; } /* Items ========================================================================== */ .uk-breadcrumb > * > * { font-size: @breadcrumb-item-font-size; color: @breadcrumb-item-color; .hook-breadcrumb-item(); } /* Hover */ .uk-breadcrumb > * > :hover { color: @breadcrumb-item-hover-color; text-decoration: @breadcrumb-item-hover-text-decoration; .hook-breadcrumb-item-hover(); } /* Disabled */ .uk-breadcrumb > .uk-disabled > * { .hook-breadcrumb-item-disabled(); } /* Active */ .uk-breadcrumb > :last-child > span, .uk-breadcrumb > :last-child > a:not([href]) { color: @breadcrumb-item-active-color; .hook-breadcrumb-item-active(); } /* * Divider * `nth-child` makes it also work without JS if it's only one row * 1. Remove space between inline block elements. * 2. Style */ .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before { content: @breadcrumb-divider; display: inline-block; /* 1 */ margin: 0 @breadcrumb-divider-margin-horizontal; /* 2 */ font-size: @breadcrumb-divider-font-size; color: @breadcrumb-divider-color; .hook-breadcrumb-divider(); } // Hooks // ======================================================================== .hook-breadcrumb-misc(); .hook-breadcrumb() {} .hook-breadcrumb-item() {} .hook-breadcrumb-item-hover() {} .hook-breadcrumb-item-disabled() {} .hook-breadcrumb-item-active() {} .hook-breadcrumb-divider() {} .hook-breadcrumb-misc() {} // Inverse // ======================================================================== @inverse-breadcrumb-item-color: @inverse-global-muted-color; @inverse-breadcrumb-item-hover-color: @inverse-global-color; @inverse-breadcrumb-item-active-color: @inverse-global-color; @inverse-breadcrumb-divider-color: @inverse-global-muted-color; .hook-inverse() { .uk-breadcrumb > * > * { color: @inverse-breadcrumb-item-color; .hook-inverse-breadcrumb-item(); } .uk-breadcrumb > * > :hover { color: @inverse-breadcrumb-item-hover-color; .hook-inverse-breadcrumb-item-hover(); } .uk-breadcrumb > .uk-disabled > * { .hook-inverse-breadcrumb-item-disabled(); } .uk-breadcrumb > :last-child > * { color: @inverse-breadcrumb-item-active-color; .hook-inverse-breadcrumb-item-active(); } // // Divider // .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before { color: @inverse-breadcrumb-divider-color; .hook-inverse-breadcrumb-divider(); } } .hook-inverse-breadcrumb-item() {} .hook-inverse-breadcrumb-item-hover() {} .hook-inverse-breadcrumb-item-disabled() {} .hook-inverse-breadcrumb-item-active() {} .hook-inverse-breadcrumb-divider() {} assets/uikit/src/less/components/visibility.less000064400000010242151666572360016214 0ustar00// Name: Visibility // Description: Utilities to show or hide content on breakpoints, hover or touch // // Component: `uk-hidden-*` // `uk-visible-*` // `uk-invisible` // `uk-hidden-visually` // `uk-visible-toggle` // `uk-hidden-hover` // `uk-invisible-hover` // `uk-hidden-touch` // `uk-hidden-notouch` // // ======================================================================== /* ======================================================================== Component: Visibility ========================================================================== */ /* * Hidden * `hidden` attribute also set here to make it stronger */ [hidden], .uk-hidden, .uk-hidden-empty:empty { display: none !important; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-hidden\@s { display: none !important; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-hidden\@m { display: none !important; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-hidden\@l { display: none !important; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-hidden\@xl { display: none !important; } } /* * Visible */ /* Phone portrait and smaller */ @media (max-width: @breakpoint-xsmall-max) { .uk-visible\@s { display: none !important; } } /* Phone landscape and smaller */ @media (max-width: @breakpoint-small-max) { .uk-visible\@m { display: none !important; } } /* Tablet landscape and smaller */ @media (max-width: @breakpoint-medium-max) { .uk-visible\@l { display: none !important; } } /* Desktop and smaller */ @media (max-width: @breakpoint-large-max) { .uk-visible\@xl { display: none !important; } } /* Visibility ========================================================================== */ .uk-invisible { visibility: hidden !important; } /* Based on the State of the Parent Element ========================================================================== */ /* * Mind that `display: none`, `visibility: hidden` and `opacity: 0` * remove the element from the accessibility tree and that * `display: none` and `visibility: hidden` are not focusable. * * The target stays visible if any element within receives focus through keyboard. */ /* * Remove space when hidden. * 1. Remove from document flow. * 2. Hide element and shrink its dimension. Current browsers and screen readers * keep the element in the accessibility tree even with zero dimensions. * Using `tabindex="-1"` will show the element on touch devices. * Note: `clip-path` doesn't work with `tabindex` on touch devices. */ .uk-hidden-visually:not(:focus):not(:active):not(:focus-within), .uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-visible):not(:has(:focus-visible)), // Fallback for Safari 18.3 `:not(:has(...)) invalidation` bug. Remove when fixed. .uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) { /* 1 */ position: absolute !important; /* 2 */ width: 0 !important; height: 0 !important; padding: 0 !important; border: 0 !important; margin: 0 !important; overflow: hidden !important; } /* * Keep space when hidden. * Hide element without shrinking its dimension. * Note: `clip-path` doesn't work with hover for elements outside of the toggle box. */ .uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) { opacity: 0 !important; } /* Based on Hover Capability of the Pointing Device ========================================================================== */ /* * Hover */ /* Hide if primary pointing device doesn't support hover, e.g. touch screens. */ @media (hover: none) { .uk-hidden-touch { display: none !important; } } /* Hide if primary pointing device supports hover, e.g. mice. */ @media (hover) { .uk-hidden-notouch { display: none !important; } } // Hooks // ======================================================================== .hook-visibility-misc(); .hook-visibility-misc() {} assets/uikit/src/less/components/height.less000064400000002733151666572360015303 0ustar00// Name: Height // Description: Utilities for heights // // Component: `uk-height-*` // // ======================================================================== // Variables // ======================================================================== @height-small-height: 150px; @height-medium-height: 300px; @height-large-height: 450px; /* ======================================================================== Component: Height ========================================================================== */ [class*="uk-height"] { box-sizing: border-box; } /* * Only works if parent element has a height set */ .uk-height-1-1 { height: 100%; } /* * Useful to create image teasers */ .uk-height-viewport { min-height: 100vh; } .uk-height-viewport-2 { min-height: 200vh; } .uk-height-viewport-3 { min-height: 300vh; } .uk-height-viewport-4 { min-height: 400vh; } /* * Pixel * Useful for `overflow: auto` */ .uk-height-small { height: @height-small-height; } .uk-height-medium { height: @height-medium-height; } .uk-height-large { height: @height-large-height; } .uk-height-max-small { max-height: @height-small-height; } .uk-height-max-medium { max-height: @height-medium-height; } .uk-height-max-large { max-height: @height-large-height; } // Hooks // ======================================================================== .hook-height-misc(); .hook-height-misc() {} assets/uikit/src/less/components/tab.less000064400000011216151666572360014575 0ustar00// Name: Tab // Description: Component to create a tabbed navigation // // Component: `uk-tab` // // Modifiers: `uk-tab-bottom` // `uk-tab-left` // `uk-tab-right` // // States: `uk-active` // `uk-disabled` // // ======================================================================== // Variables // ======================================================================== @tab-margin-horizontal: 20px; @tab-item-padding-horizontal: 10px; @tab-item-padding-vertical: 5px; @tab-item-color: @global-muted-color; @tab-item-hover-color: @global-color; @tab-item-hover-text-decoration: none; @tab-item-active-color: @global-emphasis-color; @tab-item-disabled-color: @global-muted-color; /* ======================================================================== Component: Tab ========================================================================== */ /* * 1. Allow items to wrap into the next line * 2. Gutter * 3. Reset list */ .uk-tab { display: flex; /* 1 */ flex-wrap: wrap; /* 2 */ margin-left: -@tab-margin-horizontal; /* 3 */ padding: 0; list-style: none; .hook-tab(); } /* * 1. Space is allocated solely based on content dimensions: 0 0 auto * 2. Gutter * 3. Create position context for dropdowns */ .uk-tab > * { /* 1 */ flex: none; /* 2 */ padding-left: @tab-margin-horizontal; /* 3 */ position: relative; } /* Items ========================================================================== */ /* * Items must target `a` elements to exclude other elements (e.g. dropdowns) * 1. Center content vertically, e.g. an icon * 2. Imitate white space gap when using flexbox * 3. Center content if a width is set * 4. Style */ .uk-tab > * > a { /* 1 */ display: flex; align-items: center; /* 2 */ column-gap: 0.25em; /* 3 */ justify-content: center; /* 4 */ padding: @tab-item-padding-vertical @tab-item-padding-horizontal; color: @tab-item-color; .hook-tab-item(); } /* Hover */ .uk-tab > * > a:hover { color: @tab-item-hover-color; text-decoration: @tab-item-hover-text-decoration; .hook-tab-item-hover(); } /* Active */ .uk-tab > .uk-active > a { color: @tab-item-active-color; .hook-tab-item-active(); } /* Disabled */ .uk-tab > .uk-disabled > a { color: @tab-item-disabled-color; .hook-tab-item-disabled(); } /* Position modifier ========================================================================== */ /* * Bottom */ .uk-tab-bottom { .hook-tab-bottom(); } .uk-tab-bottom > * > a { .hook-tab-bottom-item(); } /* * Left + Right * 1. Reset Gutter */ .uk-tab-left, .uk-tab-right { flex-direction: column; /* 1 */ margin-left: 0; } /* 1 */ .uk-tab-left > *, .uk-tab-right > * { padding-left: 0; } .uk-tab-left { .hook-tab-left(); } .uk-tab-right { .hook-tab-right(); } .uk-tab-left > * > a { justify-content: left; .hook-tab-left-item(); } .uk-tab-right > * > a { justify-content: left; .hook-tab-right-item(); } // Hooks // ======================================================================== .hook-tab-misc(); .hook-tab() {} .hook-tab-item() {} .hook-tab-item-hover() {} .hook-tab-item-active() {} .hook-tab-item-disabled() {} .hook-tab-bottom() {} .hook-tab-bottom-item() {} .hook-tab-left() {} .hook-tab-left-item() {} .hook-tab-right() {} .hook-tab-right-item() {} .hook-tab-misc() {} // Inverse // ======================================================================== @inverse-tab-item-color: @inverse-global-muted-color; @inverse-tab-item-hover-color: @inverse-global-color; @inverse-tab-item-active-color: @inverse-global-emphasis-color; @inverse-tab-item-disabled-color: @inverse-global-muted-color; .hook-inverse() { .uk-tab { .hook-inverse-tab(); } .uk-tab > * > a { color: @inverse-tab-item-color; .hook-inverse-tab-item(); } .uk-tab > * > a:hover { color: @inverse-tab-item-hover-color; .hook-inverse-tab-item-hover(); } .uk-tab > .uk-active > a { color: @inverse-tab-item-active-color; .hook-inverse-tab-item-active(); } .uk-tab > .uk-disabled > a { color: @inverse-tab-item-disabled-color; .hook-inverse-tab-item-disabled(); } } .hook-inverse-tab() {} .hook-inverse-tab-item() {} .hook-inverse-tab-item-hover() {} .hook-inverse-tab-item-active() {} .hook-inverse-tab-item-disabled() {} assets/uikit/src/less/components/article.less000064400000005153151666572360015455 0ustar00// Name: Article // Description: Component to create articles // // Component: `uk-article` // // Sub-objects: `uk-article-title` // `uk-article-meta` // // ======================================================================== // Variables // ======================================================================== @article-margin-top: @global-large-margin; @article-title-font-size-m: @global-2xlarge-font-size; @article-title-font-size: @article-title-font-size-m * 0.85; @article-title-line-height: 1.2; @article-meta-font-size: @global-small-font-size; @article-meta-line-height: 1.4; @article-meta-color: @global-muted-color; /* ======================================================================== Component: Article ========================================================================== */ .uk-article { display: flow-root; .hook-article(); } /* * Remove margin from the last-child */ .uk-article > :last-child { margin-bottom: 0; } /* Adjacent sibling ========================================================================== */ .uk-article + .uk-article { margin-top: @article-margin-top; .hook-article-adjacent(); } /* Title ========================================================================== */ .uk-article-title { font-size: @article-title-font-size; line-height: @article-title-line-height; .hook-article-title(); } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-article-title { font-size: @article-title-font-size-m; } } /* Meta ========================================================================== */ .uk-article-meta { font-size: @article-meta-font-size; line-height: @article-meta-line-height; color: @article-meta-color; .hook-article-meta(); } // Hooks // ======================================================================== .hook-article-misc(); .hook-article() {} .hook-article-adjacent() {} .hook-article-title() {} .hook-article-meta() {} .hook-article-misc() {} // Inverse // ======================================================================== @inverse-article-meta-color: @inverse-global-muted-color; .hook-inverse() { .uk-article-title { .hook-inverse-article-title(); } .uk-article-meta { color: @inverse-article-meta-color; .hook-inverse-article-meta(); } } .hook-inverse-article-title() {} .hook-inverse-article-meta() {} assets/uikit/src/less/components/table.less000064400000022676151666572360015132 0ustar00// Name: Table // Description: Styles for tables // // Component: `uk-table` // // Modifiers: `uk-table-middle` // `uk-table-divider` // `uk-table-striped` // `uk-table-hover` // `uk-table-small` // `uk-table-justify` // `uk-table-shrink` // `uk-table-expand` // `uk-table-link` // `uk-table-responsive` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @table-margin-vertical: @global-margin; @table-cell-padding-vertical: 16px; @table-cell-padding-horizontal: 12px; @table-header-cell-font-size: @global-font-size; @table-header-cell-font-weight: bold; @table-header-cell-color: @global-color; @table-footer-font-size: @global-small-font-size; @table-caption-font-size: @global-small-font-size; @table-caption-color: @global-muted-color; @table-row-active-background: #ffd; @table-divider-border-width: @global-border-width; @table-divider-border: @global-border; @table-striped-row-background: @global-muted-background; @table-hover-row-background: @table-row-active-background; @table-small-cell-padding-vertical: 10px; @table-small-cell-padding-horizontal: 12px; @table-large-cell-padding-vertical: 22px; @table-large-cell-padding-horizontal: 12px; @table-expand-min-width: 150px; /* ======================================================================== Component: Table ========================================================================== */ /* * 1. Remove most spacing between table cells. * 2. Behave like a block element * 3. Style */ .uk-table { /* 1 */ border-collapse: collapse; border-spacing: 0; /* 2 */ width: 100%; /* 3 */ margin-bottom: @table-margin-vertical; .hook-table(); } /* Add margin if adjacent element */ * + .uk-table { margin-top: @table-margin-vertical; } /* Header cell ========================================================================== */ /* * 1. Style */ .uk-table th { padding: @table-cell-padding-vertical @table-cell-padding-horizontal; text-align: left; vertical-align: bottom; /* 1 */ font-size: @table-header-cell-font-size; font-weight: @table-header-cell-font-weight; color: @table-header-cell-color; .hook-table-header-cell(); } /* Cell ========================================================================== */ .uk-table td { padding: @table-cell-padding-vertical @table-cell-padding-horizontal; vertical-align: top; .hook-table-cell(); } /* * Remove margin from the last-child */ .uk-table td > :last-child { margin-bottom: 0; } /* Footer ========================================================================== */ .uk-table tfoot { font-size: @table-footer-font-size; .hook-table-footer(); } /* Caption ========================================================================== */ .uk-table caption { font-size: @table-caption-font-size; text-align: left; color: @table-caption-color; .hook-table-caption(); } /* Alignment modifier ========================================================================== */ .uk-table-middle, .uk-table-middle td { vertical-align: middle !important; } /* Style modifiers ========================================================================== */ /* * Divider */ .uk-table-divider > tr:not(:first-child), .uk-table-divider > :not(:first-child) > tr, .uk-table-divider > :first-child > tr:not(:first-child) { border-top: @table-divider-border-width solid @table-divider-border; .hook-table-divider(); } /* * Striped */ .uk-table-striped > tr:nth-of-type(odd), .uk-table-striped tbody tr:nth-of-type(odd) { background: @table-striped-row-background; .hook-table-striped(); } /* * Hover */ .uk-table-hover > tr:hover, .uk-table-hover tbody tr:hover { background: @table-hover-row-background; .hook-table-hover(); } /* Active state ========================================================================== */ .uk-table > tr.uk-active, .uk-table tbody tr.uk-active { background: @table-row-active-background; .hook-table-row-active(); } /* Size modifier ========================================================================== */ .uk-table-small th, .uk-table-small td { padding: @table-small-cell-padding-vertical @table-small-cell-padding-horizontal; .hook-table-small(); } .uk-table-large th, .uk-table-large td { padding: @table-large-cell-padding-vertical @table-large-cell-padding-horizontal; .hook-table-large(); } /* Justify modifier ========================================================================== */ .uk-table-justify th:first-child, .uk-table-justify td:first-child { padding-left: 0; } .uk-table-justify th:last-child, .uk-table-justify td:last-child { padding-right: 0; } /* Cell size modifier ========================================================================== */ .uk-table-shrink { width: 1px; } .uk-table-expand { min-width: @table-expand-min-width; } /* Cell link modifier ========================================================================== */ /* * Does not work with `uk-table-justify` at the moment */ .uk-table-link { padding: 0 !important; } .uk-table-link > a { display: block; padding: @table-cell-padding-vertical @table-cell-padding-horizontal; } .uk-table-small .uk-table-link > a { padding: @table-small-cell-padding-vertical @table-small-cell-padding-horizontal; } /* Responsive table ========================================================================== */ /* Phone landscape and smaller */ @media (max-width: @breakpoint-small-max) { .uk-table-responsive, .uk-table-responsive tbody, .uk-table-responsive th, .uk-table-responsive td, .uk-table-responsive tr { display: block; } .uk-table-responsive thead { display: none; } .uk-table-responsive th, .uk-table-responsive td { width: auto !important; max-width: none !important; min-width: 0 !important; overflow: visible !important; white-space: normal !important; } .uk-table-responsive th:not(:first-child):not(.uk-table-link), .uk-table-responsive td:not(:first-child):not(.uk-table-link), .uk-table-responsive .uk-table-link:not(:first-child) > a { padding-top: round((@table-cell-padding-vertical / 3)) !important; } .uk-table-responsive th:not(:last-child):not(.uk-table-link), .uk-table-responsive td:not(:last-child):not(.uk-table-link), .uk-table-responsive .uk-table-link:not(:last-child) > a { padding-bottom: round((@table-cell-padding-vertical / 3)) !important; } .uk-table-justify.uk-table-responsive th, .uk-table-justify.uk-table-responsive td { padding-left: 0; padding-right: 0; } } // Hooks // ======================================================================== .hook-table-misc(); .hook-table() {} .hook-table-header-cell() {} .hook-table-cell() {} .hook-table-footer() {} .hook-table-caption() {} .hook-table-row-active() {} .hook-table-divider() {} .hook-table-striped() {} .hook-table-hover() {} .hook-table-small() {} .hook-table-large() {} .hook-table-misc() {} // Inverse // ======================================================================== @inverse-table-header-cell-color: @inverse-global-color; @inverse-table-caption-color: @inverse-global-muted-color; @inverse-table-row-active-background: fadeout(@inverse-global-muted-background, 2%); @inverse-table-divider-border: @inverse-global-border; @inverse-table-striped-row-background: @inverse-global-muted-background; @inverse-table-hover-row-background: @inverse-table-row-active-background; .hook-inverse() { .uk-table th { color: @inverse-table-header-cell-color; .hook-inverse-table-header-cell(); } .uk-table caption { color: @inverse-table-caption-color; .hook-inverse-table-caption(); } .uk-table > tr.uk-active, .uk-table tbody tr.uk-active { background: @inverse-table-row-active-background; .hook-inverse-table-row-active(); } .uk-table-divider > tr:not(:first-child), .uk-table-divider > :not(:first-child) > tr, .uk-table-divider > :first-child > tr:not(:first-child) { border-top-color: @inverse-table-divider-border; .hook-inverse-table-divider(); } .uk-table-striped > tr:nth-of-type(odd), .uk-table-striped tbody tr:nth-of-type(odd) { background: @inverse-table-striped-row-background; .hook-inverse-table-striped(); } .uk-table-hover > tr:hover, .uk-table-hover tbody tr:hover { background: @inverse-table-hover-row-background; .hook-inverse-table-hover(); } } .hook-inverse-table-header-cell() {} .hook-inverse-table-caption() {} .hook-inverse-table-row-active() {} .hook-inverse-table-divider() {} .hook-inverse-table-striped() {} .hook-inverse-table-hover() {} assets/uikit/src/less/components/placeholder.less000064400000002462151666572360016314 0ustar00// Name: Placeholder // Description: Component to create placeholder boxes // // Component: `uk-placeholder` // // ======================================================================== // Variables // ======================================================================== @placeholder-margin-vertical: @global-margin; @placeholder-padding-vertical: @global-gutter; @placeholder-padding-horizontal: @global-gutter; @placeholder-background: @global-muted-background; /* ======================================================================== Component: Placeholder ========================================================================== */ .uk-placeholder { margin-bottom: @placeholder-margin-vertical; padding: @placeholder-padding-vertical @placeholder-padding-horizontal; background: @placeholder-background; .hook-placeholder(); } /* Add margin if adjacent element */ * + .uk-placeholder { margin-top: @placeholder-margin-vertical; } /* * Remove margin from the last-child */ .uk-placeholder > :last-child { margin-bottom: 0; } // Hooks // ======================================================================== .hook-placeholder-misc(); .hook-placeholder() {} .hook-placeholder-misc() {} assets/uikit/src/less/components/cover.less000064400000003573151666572360015154 0ustar00// Name: Cover // Description: Utilities to let embedded content cover their container in a centered position // // Component: `uk-cover` // // Sub-object: `uk-cover-container` // // ======================================================================== /* ======================================================================== Component: Cover ========================================================================== */ /* * Works with iframes and embedded content * 1. Use attribute to apply transform instantly. Needed if transform is transitioned. * 2. Reset responsiveness for embedded content * 3. Center object * Note: Percent values on the `top` property only works if this element * is absolute positioned or if the container has a height */ /* 1 */ [uk-cover]:where(canvas, iframe, svg), [data-uk-cover]:where(canvas, iframe, svg) { /* 2 */ max-width: none; /* 3 */ position: absolute; left: 50%; top: 50%; --uk-position-translate-x: -50%; --uk-position-translate-y: -50%; transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y)); } iframe[uk-cover], iframe[data-uk-cover] { pointer-events: none; } [uk-cover]:where(img, video), [data-uk-cover]:where(img, video) { /* 3 */ position: absolute; top: 0; left: 0; width: 100%; height: 100%; box-sizing: border-box; object-fit: cover; object-position: center; } /* Container ========================================================================== */ /* * 1. Parent container which clips resized object * 2. Needed if the child is positioned absolute. See note above */ .uk-cover-container { /* 1 */ overflow: hidden; /* 2 */ position: relative; } // Hooks // ======================================================================== .hook-cover-misc(); .hook-cover-misc() {} assets/uikit/src/less/components/accordion.less000064400000005677151666572360016006 0ustar00// Name: Accordion // Description: Component to create accordions // // Component: `uk-accordion` // // Sub-objects: `uk-accordion-title` // `uk-accordion-content` // // States: `uk-open` // // ======================================================================== // Variables // ======================================================================== @accordion-item-margin-top: @global-margin; @accordion-title-font-size: @global-medium-font-size; @accordion-title-line-height: 1.4; @accordion-title-color: @global-emphasis-color; @accordion-title-hover-color: @global-color; @accordion-content-margin-top: @global-margin; /* ======================================================================== Component: Accordion ========================================================================== */ .uk-accordion { padding: 0; list-style: none; .hook-accordion(); } /* Item ========================================================================== */ .uk-accordion > * { .hook-accordion-item(); } .uk-accordion > :nth-child(n+2) { margin-top: @accordion-item-margin-top; } /* Title ========================================================================== */ .uk-accordion-title { display: block; font-size: @accordion-title-font-size; line-height: @accordion-title-line-height; color: @accordion-title-color; .hook-accordion-title(); } /* Hover */ .uk-accordion-title:hover { color: @accordion-title-hover-color; text-decoration: none; .hook-accordion-title-hover(); } /* Content ========================================================================== */ .uk-accordion-content { display: flow-root; margin-top: @accordion-content-margin-top; .hook-accordion-content(); } /* * Remove margin from the last-child */ .uk-accordion-content > :last-child { margin-bottom: 0; } // Hooks // ======================================================================== .hook-accordion-misc(); .hook-accordion() {} .hook-accordion-item() {} .hook-accordion-title() {} .hook-accordion-title-hover() {} .hook-accordion-content() {} .hook-accordion-misc() {} // Inverse // ======================================================================== @inverse-accordion-title-color: @inverse-global-emphasis-color; @inverse-accordion-title-hover-color: @inverse-global-color; .hook-inverse() { .uk-accordion > * { .hook-inverse-accordion-item(); } .uk-accordion-title { color: @inverse-accordion-title-color; .hook-inverse-accordion-title(); } .uk-accordion-title:hover { color: @inverse-accordion-title-hover-color; .hook-inverse-accordion-title-hover(); } } .hook-inverse-accordion-item() {} .hook-inverse-accordion-title() {} .hook-inverse-accordion-title-hover() {} assets/uikit/src/less/components/switcher.less000064400000001652151666572360015662 0ustar00// Name: Switcher // Description: Component to navigate through different content panes // // Component: `uk-switcher` // // States: `uk-active` // // ======================================================================== /* ======================================================================== Component: Switcher ========================================================================== */ /* * Reset list */ .uk-switcher { margin: 0; padding: 0; list-style: none; } /* Items ========================================================================== */ /* * Hide not active items */ .uk-switcher > :not(.uk-active) { display: none; } /* * Remove margin from the last-child */ .uk-switcher > * > :last-child { margin-bottom: 0; } // Hooks // ======================================================================== .hook-switcher-misc(); .hook-switcher-misc() {} assets/uikit/src/less/components/notification.less000064400000012200151666572360016507 0ustar00// Name: Notification // Description: Component to create notification messages // // Component: `uk-notification` // // Sub-objects: `uk-notification-message` // // Adopted: `uk-notification-close` // // Modifiers: `uk-notification-top-center` // `uk-notification-top-right` // `uk-notification-bottom-left` // `uk-notification-bottom-center` // `uk-notification-bottom-right` // `uk-notification-message-primary` // `uk-notification-message-success` // `uk-notification-message-warning` // `uk-notification-message-danger` // // ======================================================================== // Variables // ======================================================================== @notification-position: 10px; @notification-z-index: @global-z-index + 40; @notification-width: 350px; @notification-message-margin-top: 10px; @notification-message-padding: @global-small-gutter; @notification-message-background: @global-muted-background; @notification-message-color: @global-color; @notification-message-font-size: @global-medium-font-size; @notification-message-line-height: 1.4; @notification-close-top: @notification-message-padding + 5px; @notification-close-right: @notification-message-padding; @notification-message-primary-color: @global-primary-background; @notification-message-success-color: @global-success-background; @notification-message-warning-color: @global-warning-background; @notification-message-danger-color: @global-danger-background; /* ======================================================================== Component: Notification ========================================================================== */ /* * 1. Set position * 2. Dimensions */ .uk-notification { /* 1 */ position: fixed; top: @notification-position; left: @notification-position; z-index: @notification-z-index; /* 2 */ box-sizing: border-box; width: @notification-width; .hook-notification(); } /* Position modifiers ========================================================================== */ .uk-notification-top-right, .uk-notification-bottom-right { left: auto; right: @notification-position; } .uk-notification-top-center, .uk-notification-bottom-center { left: 50%; margin-left: (@notification-width / -2); } .uk-notification-bottom-left, .uk-notification-bottom-right, .uk-notification-bottom-center { top: auto; bottom: @notification-position; } /* Responsiveness ========================================================================== */ /* Phones portrait and smaller */ @media (max-width: @breakpoint-xsmall-max) { .uk-notification { left: @notification-position; right: @notification-position; width: auto; margin: 0; } } /* Message ========================================================================== */ .uk-notification-message { position: relative; padding: @notification-message-padding; background: @notification-message-background; color: @notification-message-color; font-size: @notification-message-font-size; line-height: @notification-message-line-height; cursor: pointer; .hook-notification-message(); } * + .uk-notification-message { margin-top: @notification-message-margin-top; } /* Close * Adopts `uk-close` ========================================================================== */ .uk-notification-close { display: none; position: absolute; top: @notification-close-top; right: @notification-close-right; .hook-notification-close(); } .uk-notification-message:hover .uk-notification-close { display: block; } /* Style modifiers ========================================================================== */ /* * Primary */ .uk-notification-message-primary { color: @notification-message-primary-color; .hook-notification-message-primary(); } /* * Success */ .uk-notification-message-success { color: @notification-message-success-color; .hook-notification-message-success(); } /* * Warning */ .uk-notification-message-warning { color: @notification-message-warning-color; .hook-notification-message-warning(); } /* * Danger */ .uk-notification-message-danger { color: @notification-message-danger-color; .hook-notification-message-danger(); } // Hooks // ======================================================================== .hook-notification-misc(); .hook-notification() {} .hook-notification-message() {} .hook-notification-close() {} .hook-notification-message-primary() {} .hook-notification-message-success() {} .hook-notification-message-warning() {} .hook-notification-message-danger() {} .hook-notification-misc() {} assets/uikit/src/less/components/leader.less000064400000003152151666572360015263 0ustar00// Name: Leader // Description: Component to create dot leaders // // Component: `uk-leader` // // ======================================================================== // Variables // ======================================================================== @leader-fill-content: ~'.'; @leader-fill-margin-left: @global-small-gutter; /* ======================================================================== Component: Leader ========================================================================== */ .uk-leader { overflow: hidden; } /* * 1. Place element in text flow * 2. Never break into a new line * 3. Get a string back with as many repeating characters to fill the container * 4. Prevent wrapping. Overflowing characters will be clipped by the container */ .uk-leader-fill::after { /* 1 */ display: inline-block; margin-left: @leader-fill-margin-left; /* 2 */ width: 0; /* 3 */ content: attr(data-fill); /* 4 */ white-space: nowrap; .hook-leader(); } /* * Hide if media does not match */ .uk-leader-fill.uk-leader-hide::after { display: none; } /* * Pass fill character to JS */ :root { --uk-leader-fill-content: @leader-fill-content; } // Hooks // ======================================================================== .hook-leader-misc(); .hook-leader() {} .hook-leader-misc() {} // Inverse // ======================================================================== .hook-inverse() { .uk-leader-fill::after { .hook-inverse-leader(); } } .hook-inverse-leader() {} assets/uikit/src/less/components/utility.less000064400000034223151666572360015535 0ustar00// Name: Utility // Description: Utilities collection // // Component: `uk-panel-*` // `uk-clearfix` // `uk-float-*` // `uk-overflow-*` // `uk-resize-*` // `uk-display-*` // `uk-inline-*` // `uk-responsive-*` // `uk-preserve-width` // `uk-object-*` // `uk-border-*` // `uk-box-shadow-*` // `uk-box-shadow-bottom` // `uk-dropcap` // `uk-logo` // `uk-blend-*` // `uk-transform-*` // `uk-transform-origin-*` // // States: `uk-disabled` // `uk-drag` // `uk-dragover` // `uk-preserve` // // ======================================================================== // Variables // ======================================================================== @panel-scrollable-height: 170px; @panel-scrollable-padding: 10px; @panel-scrollable-border-width: @global-border-width; @panel-scrollable-border: @global-border; @border-rounded-border-radius: 5px; @box-shadow-duration: 0.1s; @box-shadow-bottom-height: 30px; @box-shadow-bottom-bottom: -@box-shadow-bottom-height; @box-shadow-bottom-border-radius: 100%; @box-shadow-bottom-background: #444; @box-shadow-bottom-blur: 20px; @dropcap-margin-right: 10px; @dropcap-font-size: ((@global-line-height * 3) * 1em); @dropcap-line-height: 1; @logo-font-size: @global-large-font-size; @logo-font-family: @global-font-family; @logo-color: @global-emphasis-color; @logo-hover-color: @global-emphasis-color; @dragover-box-shadow: 0 0 20px rgba(100,100,100,0.3); /* ======================================================================== Component: Utility ========================================================================== */ /* Panel ========================================================================== */ .uk-panel { display: flow-root; position: relative; box-sizing: border-box; } /* * Remove margin from the last-child */ .uk-panel > :last-child { margin-bottom: 0; } /* * Scrollable */ .uk-panel-scrollable { height: @panel-scrollable-height; padding: @panel-scrollable-padding; border: @panel-scrollable-border-width solid @panel-scrollable-border; overflow: auto; resize: both; .hook-panel-scrollable(); } /* Clearfix ========================================================================== */ /* * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit * 2. `table` is used again with `::after` because `clear` only works with block elements. * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari */ /* 1 */ .uk-clearfix::before { content: ""; display: table-cell; } /* 2 */ .uk-clearfix::after { content: ""; display: table; clear: both; } /* Float ========================================================================== */ /* * 1. Prevent content overflow */ .uk-float-left { float: left; } .uk-float-right { float: right; } /* 1 */ [class*="uk-float-"] { max-width: 100%; } /* Overflow ========================================================================== */ .uk-overflow-hidden { overflow: hidden; } /* * Enable scrollbars if content is clipped */ .uk-overflow-auto { overflow: auto; } .uk-overflow-auto > :last-child { margin-bottom: 0; } /* Box Sizing ========================================================================== */ .uk-box-sizing-content { box-sizing: content-box; } .uk-box-sizing-border { box-sizing: border-box; } /* Resize ========================================================================== */ .uk-resize { resize: both; } .uk-resize-horizontal { resize: horizontal; } .uk-resize-vertical { resize: vertical; } /* Display ========================================================================== */ .uk-display-block { display: block !important; } .uk-display-inline { display: inline !important; } .uk-display-inline-block { display: inline-block !important; } /* Inline ========================================================================== */ /* * 1. Container fits its content * 2. Create position context * 3. Prevent content overflow * 4. Behave like most inline-block elements * 5. Force new layer without creating a new stacking context * to fix 1px glitch when combined with overlays and transitions in Webkit * 6. Clip child elements */ [class*="uk-inline"] { /* 1 */ display: inline-block; /* 2 */ position: relative; /* 3 */ max-width: 100%; /* 4 */ vertical-align: middle; /* 5 */ -webkit-backface-visibility: hidden; } .uk-inline-clip { /* 6 */ overflow: hidden; } /* Responsive objects ========================================================================== */ /* * Preserve original dimensions * Because `img, `video`, `canvas` and `audio` are already responsive by default, see Base component */ .uk-preserve-width, .uk-preserve-width canvas, .uk-preserve-width img, .uk-preserve-width svg, .uk-preserve-width video { max-width: none; } /* * Responsiveness * Corrects `max-width` and `max-height` behavior if padding and border are used */ .uk-responsive-width, .uk-responsive-height { box-sizing: border-box; } /* * 1. Set a maximum width. `important` needed to override `uk-preserve-width img` * 2. Auto scale the height. Only needed if `height` attribute is present */ .uk-responsive-width { /* 1 */ max-width: 100% !important; /* 2 */ height: auto; } /* * 1. Set a maximum height. Only works if the parent element has a fixed height * 2. Auto scale the width. Only needed if `width` attribute is present * 3. Reset max-width, which `img, `video`, `canvas` and `audio` already have by default */ .uk-responsive-height { /* 1 */ max-height: 100%; /* 2 */ width: auto; /* 3 */ max-width: none; } /* * Fix initial iframe width. Without the viewport is expanded on iOS devices */ [uk-responsive], [data-uk-responsive] { max-width: 100%; } /* Object ========================================================================== */ .uk-object-cover { object-fit: cover; } .uk-object-contain { object-fit: contain; } .uk-object-fill { object-fit: fill; } .uk-object-none { object-fit: none; } .uk-object-scale-down { object-fit: scale-down; } /* * Position */ .uk-object-top-left { object-position: 0 0; } .uk-object-top-center { object-position: 50% 0; } .uk-object-top-right { object-position: 100% 0; } .uk-object-center-left { object-position: 0 50%; } .uk-object-center-center { object-position: 50% 50%; } .uk-object-center-right { object-position: 100% 50%; } .uk-object-bottom-left { object-position: 0 100%; } .uk-object-bottom-center { object-position: 50% 100%; } .uk-object-bottom-right { object-position: 100% 100%; } /* Border ========================================================================== */ .uk-border-circle { border-radius: 50%; } .uk-border-pill { border-radius: 500px; } .uk-border-rounded { border-radius: @border-rounded-border-radius; } /* * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit */ .uk-inline-clip[class*="uk-border-"] { -webkit-transform: translateZ(0); } /* Box-shadow ========================================================================== */ .uk-box-shadow-small { box-shadow: @global-small-box-shadow; } .uk-box-shadow-medium { box-shadow: @global-medium-box-shadow; } .uk-box-shadow-large { box-shadow: @global-large-box-shadow; } .uk-box-shadow-xlarge { box-shadow: @global-xlarge-box-shadow; } /* * Hover */ [class*="uk-box-shadow-hover"] { transition: box-shadow @box-shadow-duration ease-in-out; } .uk-box-shadow-hover-small:hover { box-shadow: @global-small-box-shadow; } .uk-box-shadow-hover-medium:hover { box-shadow: @global-medium-box-shadow; } .uk-box-shadow-hover-large:hover { box-shadow: @global-large-box-shadow; } .uk-box-shadow-hover-xlarge:hover { box-shadow: @global-xlarge-box-shadow; } /* Box-shadow bottom ========================================================================== */ /* * 1. Set position. * 2. Set style * 3. Fix shadow being clipped in Safari if container is animated */ @supports (filter: blur(0)) { .uk-box-shadow-bottom { display: inline-block; position: relative; z-index: 0; max-width: 100%; vertical-align: middle; } .uk-box-shadow-bottom::after { content: ""; /* 1 */ position: absolute; bottom: @box-shadow-bottom-bottom; left: 0; right: 0; z-index: -1; /* 2 */ height: @box-shadow-bottom-height; border-radius: @box-shadow-bottom-border-radius; background: @box-shadow-bottom-background; filter: blur(@box-shadow-bottom-blur); /* 3 */ will-change: filter; .hook-box-shadow-bottom(); } } /* Drop cap ========================================================================== */ /* * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements * https://bugzilla.mozilla.org/show_bug.cgi?id=214004 * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height` * https://bugzilla.mozilla.org/show_bug.cgi?id=317933 */ .uk-dropcap::first-letter, /* 1 */ .uk-dropcap > p:first-of-type::first-letter { display: block; margin-right: @dropcap-margin-right; float: left; font-size: @dropcap-font-size; line-height: @dropcap-line-height; .hook-dropcap(); } /* 2 */ @-moz-document url-prefix() { .uk-dropcap::first-letter, .uk-dropcap > p:first-of-type::first-letter { margin-top: 1.1%; } } /* Logo ========================================================================== */ /* * 1. Style * 2. Required for `a` * 3. Behave like image but can be overridden through flex utility classes */ .uk-logo { /* 1 */ font-size: @logo-font-size; font-family: @logo-font-family; color: @logo-color; /* 2 */ text-decoration: none; .hook-logo(); } /* 3 */ :where(.uk-logo) { display: inline-block; vertical-align: middle; } /* Hover */ .uk-logo:hover { color: @logo-hover-color; /* 1 */ text-decoration: none; .hook-logo-hover(); } .uk-logo :where(img, svg, video) { display: block; } .uk-logo-inverse { display: none; } /* Disabled State ========================================================================== */ .uk-disabled { pointer-events: none; } /* Drag State ========================================================================== */ /* * 1. Needed if moving over elements with have their own cursor on hover, e.g. links or buttons * 2. Fix dragging over iframes */ .uk-drag, /* 1 */ .uk-drag * { cursor: move; } /* 2 */ .uk-drag iframe { pointer-events: none; } /* Dragover State ========================================================================== */ /* * Create a box-shadow when dragging a file over the upload area */ .uk-dragover { box-shadow: @dragover-box-shadow; } /* Blend modes ========================================================================== */ .uk-blend-multiply { mix-blend-mode: multiply; } .uk-blend-screen { mix-blend-mode: screen; } .uk-blend-overlay { mix-blend-mode: overlay; } .uk-blend-darken { mix-blend-mode: darken; } .uk-blend-lighten { mix-blend-mode: lighten; } .uk-blend-color-dodge { mix-blend-mode: color-dodge; } .uk-blend-color-burn { mix-blend-mode: color-burn; } .uk-blend-hard-light { mix-blend-mode: hard-light; } .uk-blend-soft-light { mix-blend-mode: soft-light; } .uk-blend-difference { mix-blend-mode: difference; } .uk-blend-exclusion { mix-blend-mode: exclusion; } .uk-blend-hue { mix-blend-mode: hue; } .uk-blend-saturation { mix-blend-mode: saturation; } .uk-blend-color { mix-blend-mode: color; } .uk-blend-luminosity { mix-blend-mode: luminosity; } /* Transform ========================================================================== */ .uk-transform-center { transform: translate(-50%, -50%); } /* Transform Origin ========================================================================== */ .uk-transform-origin-top-left { transform-origin: 0 0; } .uk-transform-origin-top-center { transform-origin: 50% 0; } .uk-transform-origin-top-right { transform-origin: 100% 0; } .uk-transform-origin-center-left { transform-origin: 0 50%; } .uk-transform-origin-center-right { transform-origin: 100% 50%; } .uk-transform-origin-bottom-left { transform-origin: 0 100%; } .uk-transform-origin-bottom-center { transform-origin: 50% 100%; } .uk-transform-origin-bottom-right { transform-origin: 100% 100%; } // Hooks // ======================================================================== .hook-utility-misc(); .hook-panel-scrollable() {} .hook-box-shadow-bottom() {} .hook-dropcap() {} .hook-logo() {} .hook-logo-hover() {} .hook-utility-misc() {} // Inverse // ======================================================================== @inverse-logo-color: @inverse-global-emphasis-color; @inverse-logo-hover-color: @inverse-global-emphasis-color; .hook-inverse() { .uk-dropcap::first-letter, .uk-dropcap p:first-of-type::first-letter { .hook-inverse-dropcap(); } .uk-logo { color: @inverse-logo-color; .hook-inverse-logo(); } .uk-logo:hover { color: @inverse-logo-hover-color; .hook-inverse-logo-hover(); } .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) { display: none; } .uk-logo-inverse { display: block; } } .hook-inverse-dropcap() {} .hook-inverse-logo() {} .hook-inverse-logo-hover() {} assets/uikit/src/less/components/column.less000064400000007003151666572360015323 0ustar00// Name: Column // Description: Utilities for text columns // // Component: `uk-column-*` // // Sub-objects: `uk-column-span` // // Modifiers: `uk-column-divider` // // ======================================================================== // Variables // ======================================================================== @column-gutter: @global-gutter; @column-gutter-l: @global-medium-gutter; @column-divider-rule-color: @global-border; @column-divider-rule-width: 1px; /* ======================================================================== Component: Column ========================================================================== */ [class*="uk-column-"] { column-gap: @column-gutter; } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { [class*="uk-column-"] { column-gap: @column-gutter-l; } } /* * Fix image 1px line wrapping into the next column in Chrome */ [class*="uk-column-"] img { transform: translate3d(0, 0, 0); } /* Divider ========================================================================== */ /* * 1. Double the column gap */ .uk-column-divider { column-rule: @column-divider-rule-width solid @column-divider-rule-color; /* 1 */ column-gap: (@column-gutter * 2); } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-column-divider { column-gap: (@column-gutter-l * 2); } } /* Width modifiers ========================================================================== */ .uk-column-1-2 { column-count: 2;} .uk-column-1-3 { column-count: 3; } .uk-column-1-4 { column-count: 4; } .uk-column-1-5 { column-count: 5; } .uk-column-1-6 { column-count: 6; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-column-1-2\@s { column-count: 2; } .uk-column-1-3\@s { column-count: 3; } .uk-column-1-4\@s { column-count: 4; } .uk-column-1-5\@s { column-count: 5; } .uk-column-1-6\@s { column-count: 6; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-column-1-2\@m { column-count: 2; } .uk-column-1-3\@m { column-count: 3; } .uk-column-1-4\@m { column-count: 4; } .uk-column-1-5\@m { column-count: 5; } .uk-column-1-6\@m { column-count: 6; } } /* Desktop and bigger */ @media (min-width: @breakpoint-large) { .uk-column-1-2\@l { column-count: 2; } .uk-column-1-3\@l { column-count: 3; } .uk-column-1-4\@l { column-count: 4; } .uk-column-1-5\@l { column-count: 5; } .uk-column-1-6\@l { column-count: 6; } } /* Large screen and bigger */ @media (min-width: @breakpoint-xlarge) { .uk-column-1-2\@xl { column-count: 2; } .uk-column-1-3\@xl { column-count: 3; } .uk-column-1-4\@xl { column-count: 4; } .uk-column-1-5\@xl { column-count: 5; } .uk-column-1-6\@xl { column-count: 6; } } /* Make element span across all columns * Does not work in Firefox yet ========================================================================== */ .uk-column-span { column-span: all; } // Hooks // ======================================================================== .hook-column-misc(); .hook-column-misc() {} // Inverse // ======================================================================== @inverse-column-divider-rule-color: @inverse-global-border; .hook-inverse() { .uk-column-divider { column-rule-color: @inverse-column-divider-rule-color; } } assets/uikit/src/less/components/icon.less000064400000015746151666572360014773 0ustar00// Name: Icon // Description: Component to create icons // // Component: `uk-icon` // // Modifiers: `uk-icon-image` // `uk-icon-link` // `uk-icon-button` // // States: `uk-preserve` // // ======================================================================== // Variables // ======================================================================== @icon-image-size: 20px; @icon-link-color: @global-muted-color; @icon-link-hover-color: @global-color; @icon-link-active-color: darken(@global-color, 5%); @icon-button-size: 36px; @icon-button-border-radius: 500px; @icon-button-background: @global-muted-background; @icon-button-color: @global-muted-color; @icon-button-hover-background: darken(@icon-button-background, 5%); @icon-button-hover-color: @global-color; @icon-button-active-background: darken(@icon-button-background, 10%); @icon-button-active-color: @global-color; /* ======================================================================== Component: Icon ========================================================================== */ /* * Note: 1. - 7. is required for `button` elements. Needed for Close and Form Icon component. * 1. Remove margins in Chrome, Safari and Opera. * 2. Remove borders for `button`. * 3. Remove border-radius in Chrome. * 4. Address `overflow` set to `hidden` in IE. * 5. Correct `font` properties and `color` not being inherited for `button`. * 6. Remove the inheritance of text transform in Edge, Firefox, and IE. * 7. Remove default `button` padding and background color * 8. Style * 9. Fill all SVG elements with the current text color if no `fill` attribute is set * 10. Let the container fit the height of the icon */ .uk-icon { /* 1 */ margin: 0; /* 2 */ border: none; /* 3 */ border-radius: 0; /* 4 */ overflow: visible; /* 5 */ font: inherit; color: inherit; /* 6 */ text-transform: none; /* 7. */ padding: 0; background-color: transparent; /* 8 */ display: inline-block; /* 9 */ fill: currentcolor; /* 10 */ line-height: 0; } /* Required for `button`. */ button.uk-icon:not(:disabled) { cursor: pointer; } /* * Remove the inner border and padding in Firefox. */ .uk-icon::-moz-focus-inner { border: 0; padding: 0; } /* * Set the fill and stroke color of all SVG elements to the current text color */ .uk-icon:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) { fill: currentcolor; } .uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) { stroke: currentcolor; } /* * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835 */ .uk-icon > * { transform: translate(0, 0); } /* Image modifier ========================================================================== */ /* * Display images in icon dimensions * 1. Required for `span` with background image * 2. Required for `image` */ .uk-icon-image { width: @icon-image-size; height: @icon-image-size; /* 1 */ background-position: 50% 50%; background-repeat: no-repeat; background-size: contain; vertical-align: middle; /* 2 */ object-fit: scale-down; max-width: none; } /* Style modifiers ========================================================================== */ /* * Link * 1. Allow text within link */ .uk-icon-link { color: @icon-link-color; /* 1 */ text-decoration: none !important; .hook-icon-link(); } .uk-icon-link:hover { color: @icon-link-hover-color; .hook-icon-link-hover(); } /* OnClick + Active */ .uk-icon-link:active, .uk-active > .uk-icon-link { color: @icon-link-active-color; .hook-icon-link-active(); } /* * Button * 1. Center icon vertically and horizontally */ .uk-icon-button { box-sizing: border-box; width: @icon-button-size; height: @icon-button-size; border-radius: @icon-button-border-radius; background: @icon-button-background; color: @icon-button-color; vertical-align: middle; /* 1 */ display: inline-flex; justify-content: center; align-items: center; .hook-icon-button(); } /* Hover */ .uk-icon-button:hover { background-color: @icon-button-hover-background; color: @icon-button-hover-color; .hook-icon-button-hover(); } /* OnClick + Active */ .uk-icon-button:active, .uk-active > .uk-icon-button { background-color: @icon-button-active-background; color: @icon-button-active-color; .hook-icon-button-active(); } // Hooks // ======================================================================== .hook-icon-misc(); .hook-icon-link() {} .hook-icon-link-hover() {} .hook-icon-link-active() {} .hook-icon-button() {} .hook-icon-button-hover() {} .hook-icon-button-active() {} .hook-icon-misc() {} // Inverse // ======================================================================== @inverse-icon-link-color: @inverse-global-muted-color; @inverse-icon-link-hover-color: @inverse-global-color; @inverse-icon-link-active-color: @inverse-global-color; @inverse-icon-button-background: @inverse-global-muted-background; @inverse-icon-button-color: @inverse-global-muted-color; @inverse-icon-button-hover-background: fadein(@inverse-icon-button-background, 5%); @inverse-icon-button-hover-color: @inverse-global-color; @inverse-icon-button-active-background: fadein(@inverse-icon-button-background, 10%); @inverse-icon-button-active-color: @inverse-global-color; .hook-inverse() { // // Link // .uk-icon-link { color: @inverse-icon-link-color; .hook-inverse-icon-link(); } .uk-icon-link:hover { color: @inverse-icon-link-hover-color; .hook-inverse-icon-link-hover(); } .uk-icon-link:active, .uk-active > .uk-icon-link { color: @inverse-icon-link-active-color; .hook-inverse-icon-link-active(); } // // Button // .uk-icon-button { background-color: @inverse-icon-button-background; color: @inverse-icon-button-color; .hook-inverse-icon-button(); } .uk-icon-button:hover { background-color: @inverse-icon-button-hover-background; color: @inverse-icon-button-hover-color; .hook-inverse-icon-button-hover(); } .uk-icon-button:active { background-color: @inverse-icon-button-active-background; color: @inverse-icon-button-active-color; .hook-inverse-icon-button-active(); } } .hook-inverse-icon-link() {} .hook-inverse-icon-link-hover() {} .hook-inverse-icon-link-active() {} .hook-inverse-icon-button() {} .hook-inverse-icon-button-hover() {} .hook-inverse-icon-button-active() {} assets/uikit/src/less/components/tooltip.less000064400000004377151666572360015533 0ustar00// Name: Tooltip // Description: Component to create tooltips // // Component: `uk-tooltip` // // Modifiers `uk-tooltip-top` // `uk-tooltip-top-left` // `uk-tooltip-top-right` // `uk-tooltip-bottom` // `uk-tooltip-bottom-left` // `uk-tooltip-bottom-right` // `uk-tooltip-left` // `uk-tooltip-right` // // States: `uk-active` // // ======================================================================== // Variables // ======================================================================== @tooltip-z-index: @global-z-index + 30; @tooltip-margin: 10px; @tooltip-max-width: 200px; @tooltip-padding-vertical: 3px; @tooltip-padding-horizontal: 6px; @tooltip-background: #666; @tooltip-border-radius: 2px; @tooltip-color: @global-inverse-color; @tooltip-font-size: 12px; /* ======================================================================== Component: Tooltip ========================================================================== */ /* * 1. Hide by default * 2. Position * 3. Remove tooltip from document flow to keep the UIkit container from changing its size when injected into the document initially * 4. Dimensions * 5. Style */ .uk-tooltip { /* 1 */ display: none; /* 2 */ position: absolute; z-index: @tooltip-z-index; --uk-position-offset: @tooltip-margin; --uk-position-viewport-offset: 10; /* 3 */ top: 0; /* 4 */ box-sizing: border-box; max-width: @tooltip-max-width; padding: @tooltip-padding-vertical @tooltip-padding-horizontal; /* 5 */ background: @tooltip-background; border-radius: @tooltip-border-radius; color: @tooltip-color; font-size: @tooltip-font-size; .hook-tooltip(); } /* Show */ .uk-tooltip.uk-active { display: block; } // Hooks // ======================================================================== .hook-tooltip-misc(); .hook-tooltip() {} .hook-tooltip-misc() {} assets/uikit/src/less/components/mixin.less000064400000001201151666572360015144 0ustar00// // Component: Mixin // Description: Defines mixins which are used across all components // // ======================================================================== // SVG // ======================================================================== .svg-fill(@src, @color-default, @color-new, @property: background-image) { @escape-color-default: escape(@color-default); @escape-color-new: escape("@{color-new}"); @data-uri: data-uri('image/svg+xml;charset=UTF-8', "@{src}"); @replace-src: replace("@{data-uri}", "@{escape-color-default}", "@{escape-color-new}", "g"); @{property}: e(@replace-src); } assets/uikit/src/images/components/overlay-icon.svg000064400000000273151666572360016567 0ustar00<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"> <rect x="19" y="0" width="1" height="40" /> <rect x="0" y="19" width="40" height="1" /> </svg> assets/uikit/src/images/components/spinner.svg000064400000000233151666572360015632 0ustar00<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" cx="15" cy="15" r="14" /> </svg> assets/uikit/src/images/components/slidenav-previous-large.svg000064400000000302151666572360020720 0ustar00<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547" /> </svg> assets/uikit/src/images/components/drop-parent-icon.svg000064400000000265151666572360017342 0ustar00<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5" /> </svg> assets/uikit/src/images/components/search-large.svg000064400000000416151666572360016514 0ustar00<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5" /> <line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30" /> </svg> assets/uikit/src/images/components/navbar-parent-icon.svg000064400000000265151666572360017647 0ustar00<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5" /> </svg> assets/uikit/src/images/components/search-medium.svg000064400000000415151666572360016701 0ustar00<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17" /> </svg> assets/uikit/src/images/components/close-large.svg000064400000000413151666572360016351 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19" /> <line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19" /> </svg> assets/uikit/src/images/components/slidenav-previous.svg000064400000000276151666572360017642 0ustar00<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23" /> </svg> assets/uikit/src/images/components/close-icon.svg000064400000000413151666572360016207 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13" /> </svg> assets/uikit/src/images/components/slidenav-next.svg000064400000000275151666572360016743 0ustar00<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1" /> </svg> assets/uikit/src/images/components/pagination-next.svg000064400000000255151666572360017265 0ustar00<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11" /> </svg> assets/uikit/src/images/components/search-icon.svg000064400000000400151666572360016343 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z" /> </svg> assets/uikit/src/images/components/slidenav-next-large.svg000064400000000301151666572360020021 0ustar00<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5" /> </svg> assets/uikit/src/images/components/navbar-toggle-icon.svg000064400000002423151666572360017635 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <style> .uk-navbar-toggle-icon svg > [class*='line-'] { transition: 0.2s ease-in-out; transition-property: transform, opacity; transform-origin: center; opacity: 1; } .uk-navbar-toggle-icon svg > .line-3 { opacity: 0; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-3 { opacity: 1; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-2 { transform: rotate(45deg); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-3 { transform: rotate(-45deg); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-1, .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-4 { opacity: 0; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-1 { transform: translateY(6px) scaleX(0); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-4 { transform: translateY(-6px) scaleX(0); } </style> <rect class="line-1" y="3" width="20" height="2" /> <rect class="line-2" y="9" width="20" height="2" /> <rect class="line-3" y="9" width="20" height="2" /> <rect class="line-4" y="15" width="20" height="2" /> </svg> assets/uikit/src/images/components/pagination-previous.svg000064400000000255151666572360020163 0ustar00<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11" /> </svg> assets/uikit/src/images/components/totop.svg000064400000000257151666572360015327 0ustar00<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9" /> </svg> assets/uikit/src/images/components/nav-parent-icon-large.svg000064400000000257151666572360020253 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4" /> </svg>assets/uikit/src/images/components/marker.svg000064400000000271151666572360015437 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="9" y="4" width="1" height="11" /> <rect x="4" y="9" width="11" height="1" /> </svg> assets/uikit/src/images/components/nav-parent-icon.svg000064400000000265151666572360017162 0ustar00<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5" /> </svg> assets/uikit/src/images/backgrounds/list-bullet.svg000064400000000205151666572360016530 0ustar00<svg width="6" height="6" viewBox="0 0 6 6" xmlns="http://www.w3.org/2000/svg"> <circle fill="#000" cx="3" cy="3" r="3" /> </svg>assets/uikit/src/images/backgrounds/form-select.svg000064400000000302151666572360016506 0ustar00<svg width="24" height="16" viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="12 1 9 6 15 6" /> <polygon fill="#000" points="12 13 9 8 15 8" /> </svg> assets/uikit/src/images/backgrounds/divider-icon.svg000064400000000253151666572360016647 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="2" cx="10" cy="10" r="7" /> </svg> assets/uikit/src/images/backgrounds/form-checkbox-indeterminate.svg000064400000000225151666572360021647 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <rect fill="#000" x="3" y="8" width="10" height="1" /> </svg>assets/uikit/src/images/backgrounds/form-checkbox.svg000064400000000241151666572360017017 0ustar00<svg width="14" height="11" viewBox="0 0 14 11" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="12 1 5 7.5 2 5 1 5.5 5 10 13 1.5" /> </svg> assets/uikit/src/images/backgrounds/form-datalist.svg000064400000000217151666572360017041 0ustar00<svg width="24" height="16" viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="12 12 8 6 16 6" /> </svg> assets/uikit/src/images/backgrounds/accordion-open.svg000064400000000225151666572360017172 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <rect fill="#000" width="13" height="1" x="0" y="6" /> </svg>assets/uikit/src/images/backgrounds/form-radio.svg000064400000000211151666572360016324 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <circle fill="#000" cx="8" cy="8" r="2" /> </svg>assets/uikit/src/images/backgrounds/accordion-close.svg000064400000000320151666572360017332 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <rect fill="#000" width="13" height="1" x="0" y="6" /> <rect fill="#000" width="1" height="13" x="6" y="0" /> </svg>assets/uikit/src/images/icons/file-edit.svg000064400000000650151666572360014747 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z" /> <polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5" /> </svg> assets/uikit/src/images/icons/chevron-up.svg000064400000000262151666572360015172 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13" /> </svg>assets/uikit/src/images/icons/pinterest.svg000064400000001446151666572360015126 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1" /> </svg>assets/uikit/src/images/icons/microphone.svg000064400000000715151666572370015253 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5" /> <line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6" /> </svg> assets/uikit/src/images/icons/grid.svg000064400000000776151666572370014044 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="2" y="2" width="3" height="3" /> <rect x="8" y="2" width="3" height="3" /> <rect x="14" y="2" width="3" height="3" /> <rect x="2" y="8" width="3" height="3" /> <rect x="8" y="8" width="3" height="3" /> <rect x="14" y="8" width="3" height="3" /> <rect x="2" y="14" width="3" height="3" /> <rect x="8" y="14" width="3" height="3" /> <rect x="14" y="14" width="3" height="3" /> </svg>assets/uikit/src/images/icons/print.svg000064400000000710151666572370014237 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5" /> <polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5" /> <rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5" /> <rect width="8" height="1" x="6" y="13" /> <rect width="8" height="1" x="6" y="15" /> </svg> assets/uikit/src/images/icons/refresh.svg000064400000000621151666572370014542 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5" /> <polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9" /> </svg>assets/uikit/src/images/icons/desktop.svg000064400000000470151666572370014557 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="8" y="15" width="1" height="2" /> <rect x="11" y="15" width="1" height="2" /> <rect x="5" y="16" width="10" height="1" /> <rect fill="none" stroke="#000" x="1.5" y="3.5" width="17" height="11" /> </svg> assets/uikit/src/images/icons/list.svg000064400000000564151666572370014065 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="6" y="4" width="12" height="1" /> <rect x="6" y="9" width="12" height="1" /> <rect x="6" y="14" width="12" height="1" /> <rect x="2" y="4" width="2" height="1" /> <rect x="2" y="9" width="2" height="1" /> <rect x="2" y="14" width="2" height="1" /> </svg> assets/uikit/src/images/icons/server.svg000064400000001417151666572370014416 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="3" y="3" width="1" height="2" /> <rect x="5" y="3" width="1" height="2" /> <rect x="7" y="3" width="1" height="2" /> <rect x="16" y="3" width="1" height="1" /> <rect x="16" y="10" width="1" height="1" /> <circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4" /> <rect x="3" y="10" width="1" height="2" /> <rect x="5" y="10" width="1" height="2" /> <rect x="9.5" y="14" width="1" height="2" /> <rect x="3" y="17" width="6" height="1" /> <rect x="11" y="17" width="6" height="1" /> <rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5" /> <rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5" /> </svg>assets/uikit/src/images/icons/mastodon.svg000064400000001460151666572370014732 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z" /> </svg> assets/uikit/src/images/icons/arrow-up.svg000064400000000362151666572370014662 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53" /> <polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8" /> </svg> assets/uikit/src/images/icons/plus.svg000064400000000270151666572370014067 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="9" y="1" width="1" height="17" /> <rect x="1" y="9" width="17" height="1" /> </svg>assets/uikit/src/images/icons/eye-slash.svg000064400000000714151666572370015001 0ustar00<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"> <path fill="none" stroke="#000" d="m7.56,7.56c.62-.62,1.49-1.01,2.44-1.01,1.91,0,3.45,1.54,3.45,3.45,0,.95-.39,1.82-1.01,2.44" /> <path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z" /> <line fill="none" stroke="#000" x1="2.5" y1="2.5" x2="17.5" y2="17.5" /> </svg>assets/uikit/src/images/icons/etsy.svg000064400000001063151666572370014071 0ustar00<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"> <path d="M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z" /> </svg> assets/uikit/src/images/icons/yelp.svg000064400000003000151666572370014047 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069 c-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276 c0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789 c-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025 c0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155 c-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351 c-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479 c0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421 c-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272 c0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749 C10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794 C2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667 c0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z" /> </svg> assets/uikit/src/images/icons/dribbble.svg000064400000001104151666572370014646 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.4" d="M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5" /> <path fill="none" stroke="#000" stroke-width="1.4" d="M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6" /> <path fill="none" stroke="#000" stroke-width="1.4" d="M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4" /> <circle fill="none" stroke="#000" stroke-width="1.4" cx="10" cy="10" r="9" /> </svg> assets/uikit/src/images/icons/whatsapp.svg000064400000001760151666572370014740 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9" /> </svg> assets/uikit/src/images/icons/mail.svg000064400000000360151666572370014026 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" points="1.4,6.5 10,11 18.6,6.5" /> <path d="M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z" /> </svg>assets/uikit/src/images/icons/instagram.svg000064400000001260151666572370015071 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z" /> <circle cx="14.87" cy="5.26" r="1.09" /> <path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z" /> </svg> assets/uikit/src/images/icons/hashtag.svg000064400000000662151666572370014530 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z" /> </svg>assets/uikit/src/images/icons/link-external.svg000064400000000504151666572370015661 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5" /> <line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99" /> <polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5" /> </svg> assets/uikit/src/images/icons/world.svg000064400000001141151666572370014231 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M1,10.5 L19,10.5" /> <path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5" /> <path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5" /> <path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z" /> <circle fill="none" stroke="#000" cx="10" cy="10.5" r="9" /> </svg> assets/uikit/src/images/icons/chevron-double-right.svg000064400000000413151666572370017132 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.03" points="10 6 14 10 10 14" /> <polyline fill="none" stroke="#000" stroke-width="1.03" points="6 6 10 10 6 14" /> </svg> assets/uikit/src/images/icons/vimeo.svg000064400000001525151666572370014227 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z" /> </svg> assets/uikit/src/images/icons/check.svg000064400000000260151666572370014160 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="4,10 8,15 17,4" /> </svg>assets/uikit/src/images/icons/question.svg000064400000000601151666572370014751 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9" /> <circle cx="9.99" cy="14.24" r="1.05" /> <path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35" /> </svg>assets/uikit/src/images/icons/microsoft.svg000064400000000313151666572370015107 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="m2,2h7.58v7.58H2V2Zm8.42,0h7.58v7.58h-7.58V2ZM2,10.42h7.58v7.58H2v-7.58Zm8.42,0h7.58v7.58h-7.58" /> </svg>assets/uikit/src/images/icons/comment.svg000064400000000357151666572370014554 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z" /> </svg>assets/uikit/src/images/icons/reddit.svg000064400000002243151666572370014361 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z" /> <path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z" /> <path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z" /> <path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z" /> </svg> assets/uikit/src/images/icons/happy.svg000064400000000522151666572370014225 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle cx="13" cy="7" r="1" /> <circle cx="7" cy="7" r="1" /> <circle fill="none" stroke="#000" cx="10" cy="10" r="8.5" /> <path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4" /> </svg> assets/uikit/src/images/icons/cloud-upload.svg000064400000000745151666572370015503 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3" /> <path fill="none" stroke="#000" d="M9.51,9.34v9" /> <polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85" /> </svg> assets/uikit/src/images/icons/rss.svg000064400000000733151666572370013717 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle cx="3.12" cy="16.8" r="1.85" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5" /> </svg>assets/uikit/src/images/icons/pencil.svg000064400000000527151666572370014363 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z" /> <path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148" /> </svg> assets/uikit/src/images/icons/git-branch.svg000064400000000615151666572370015125 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="m13.5,8c0,2.41-1.57,2.87-3.44,3.25-1.47.29-3.56.81-3.56,3.75V5" /> <circle fill="none" stroke="#000" cx="6.5" cy="3" r="1.79" /> <circle fill="none" stroke="#000" cx="13.5" cy="6" r="1.79" /> <circle fill="none" stroke="#000" cx="6.5" cy="17" r="1.79" /> </svg> assets/uikit/src/images/icons/phone.svg000064400000000526151666572370014221 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z" /> <circle cx="10.5" cy="16.5" r="0.8" /> </svg> assets/uikit/src/images/icons/play-circle.svg000064400000000410151666572370015304 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" stroke-width="1.1" points="8.5 7 13.5 10 8.5 13" /> <circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9" /> </svg> assets/uikit/src/images/icons/joomla.svg000064400000001613151666572370014367 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z" /> <path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8" /> <path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8" /> <path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7" /> </svg> assets/uikit/src/images/icons/download.svg000064400000000475151666572370014722 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09" /> <polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62" /> <line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5" /> </svg> assets/uikit/src/images/icons/tag.svg000064400000000710151666572370013656 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z" /> <circle cx="14" cy="6" r="1" /> </svg>assets/uikit/src/images/icons/receiver.svg000064400000000567151666572370014721 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611" /> </svg> assets/uikit/src/images/icons/yootheme.svg000064400000001224151666572370014735 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="m16.15,5.48c-1.37,0-2.45.61-3.11,1.54-.66-.93-1.74-1.54-3.11-1.54-1.75,0-3.03,1-3.57,2.41v-2.22h-2.01v4.45c0,.85-.31,1.35-1.18,1.35s-1.18-.5-1.18-1.35v-4.45H0v4.86c0,.7.17,1.33.53,1.82.34.49.88.85,1.6,1v3.16h2.1v-3.16c1.28-.28,1.96-1.17,2.1-2.35.52,1.44,1.81,2.48,3.59,2.48,1.37,0,2.45-.61,3.11-1.54.66.93,1.74,1.54,3.11,1.54,2.37,0,3.85-1.82,3.85-4s-1.49-4-3.85-4Zm-6.22,5.99c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Zm6.22,0c-1.11,0-1.85-.72-1.85-1.99s.74-1.99,1.85-1.99,1.85.72,1.85,1.99-.74,1.99-1.85,1.99Z" /> </svg> assets/uikit/src/images/icons/eye.svg000064400000000473151666572370013673 0ustar00<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"> <circle fill="none" stroke="#000" cx="10" cy="10" r="3.45" /> <path fill="none" stroke="#000" d="m19.5,10c-2.4,3.66-5.26,7-9.5,7h0,0,0c-4.24,0-7.1-3.34-9.49-7C2.89,6.34,5.75,3,9.99,3h0,0,0c4.25,0,7.11,3.34,9.5,7Z" /> </svg>assets/uikit/src/images/icons/settings.svg000064400000001137151666572370014747 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15" /> <ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15" /> <circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15" /> <rect x="1" y="3" width="3" height="1" /> <rect x="10" y="3" width="8" height="1" /> <rect x="1" y="9" width="8" height="1" /> <rect x="15" y="9" width="3" height="1" /> <rect x="1" y="15" width="3" height="1" /> <rect x="10" y="15" width="8" height="1" /> </svg>assets/uikit/src/images/icons/strikethrough.svg000064400000001226151666572370016010 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z" /> <rect x="3" y="10" width="15" height="1" /> </svg>assets/uikit/src/images/icons/location.svg000064400000000531151666572370014714 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z" /> <circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3" /> </svg> assets/uikit/src/images/icons/apple.svg000064400000001076151666572370014212 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="m17.23,6.93c-.1.08-1.95,1.12-1.95,3.43,0,2.67,2.35,3.62,2.42,3.64-.01.06-.37,1.29-1.24,2.55-.77,1.11-1.58,2.22-2.8,2.22s-1.54-.71-2.95-.71-1.87.73-2.99.73-1.9-1.03-2.8-2.29c-1.04-1.48-1.88-3.78-1.88-5.96,0-3.5,2.28-5.36,4.51-5.36,1.19,0,2.18.78,2.93.78s1.82-.83,3.17-.83c.51,0,2.36.05,3.57,1.79h0Zm-4.21-3.27c.56-.66.96-1.59.96-2.51,0-.13-.01-.26-.03-.36-.91.03-1.99.61-2.65,1.36-.51.58-.99,1.5-.99,2.44,0,.14.02.28.03.33.06.01.15.02.24.02.82,0,1.85-.55,2.44-1.28h0Z" /> </svg>assets/uikit/src/images/icons/search.svg000064400000000377151666572370014361 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z" /> </svg>assets/uikit/src/images/icons/info.svg000064400000001044151666572370014037 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z" /> <circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9" /> </svg>assets/uikit/src/images/icons/triangle-left.svg000064400000000203151666572370015635 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="12 5 7 10 12 15" /> </svg>assets/uikit/src/images/icons/bold.svg000064400000001017151666572370014024 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z" /> </svg>assets/uikit/src/images/icons/plus-circle.svg000064400000000477151666572370015337 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9" /> <line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14" /> <line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5" /> </svg> assets/uikit/src/images/icons/youtube.svg000064400000000620151666572370014577 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z" /> </svg> assets/uikit/src/images/icons/arrow-left.svg000064400000000362151666572370015170 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10" /> <polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84" /> </svg> assets/uikit/src/images/icons/crosshairs.svg000064400000000645151666572370015272 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" cx="10" cy="10" r="7.5" /> <line fill="none" stroke="#000" x1="10" x2="10" y2="8" /> <line fill="none" stroke="#000" x1="10" y1="12" x2="10" y2="20" /> <line fill="none" stroke="#000" y1="10" x2="8" y2="10" /> <line fill="none" stroke="#000" x1="12" y1="10" x2="20" y2="10" /> </svg>assets/uikit/src/images/icons/discord.svg000064400000001502151666572370014532 0ustar00<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"> <path d="M16.074,4.361a14.243,14.243,0,0,0-3.61-1.134,10.61,10.61,0,0,0-.463.96,13.219,13.219,0,0,0-4,0,10.138,10.138,0,0,0-.468-.96A14.206,14.206,0,0,0,3.919,4.364,15.146,15.146,0,0,0,1.324,14.5a14.435,14.435,0,0,0,4.428,2.269A10.982,10.982,0,0,0,6.7,15.21a9.294,9.294,0,0,1-1.494-.727c.125-.093.248-.19.366-.289a10.212,10.212,0,0,0,8.854,0c.119.1.242.2.366.289a9.274,9.274,0,0,1-1.5.728,10.8,10.8,0,0,0,.948,1.562,14.419,14.419,0,0,0,4.431-2.27A15.128,15.128,0,0,0,16.074,4.361Zm-8.981,8.1a1.7,1.7,0,0,1-1.573-1.79A1.689,1.689,0,0,1,7.093,8.881a1.679,1.679,0,0,1,1.573,1.791A1.687,1.687,0,0,1,7.093,12.462Zm5.814,0a1.7,1.7,0,0,1-1.573-1.79,1.689,1.689,0,0,1,1.573-1.791,1.679,1.679,0,0,1,1.573,1.791A1.688,1.688,0,0,1,12.907,12.462Z" /> </svg> assets/uikit/src/images/icons/sign-in.svg000064400000000455151666572370014455 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2" /> <line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5" /> <polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67" /> </svg> assets/uikit/src/images/icons/behance.svg000064400000001336151666572370014475 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z" /> <path d="M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z" /> <rect x="13" y="4" width="5" height="1.4" /> </svg> assets/uikit/src/images/icons/triangle-up.svg000064400000000203151666572370015327 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="5 13 10 8 15 13" /> </svg>assets/uikit/src/images/icons/uikit.svg000064400000000411151666572370014226 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3" /> <polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3" /> </svg> assets/uikit/src/images/icons/android.svg000064400000001005151666572370014521 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="m14.88,6.77l1.66-2.87c.09-.16.04-.37-.12-.46-.16-.09-.37-.04-.46.12l-1.68,2.91c-1.28-.59-2.73-.91-4.28-.91s-3,.33-4.28.91l-1.68-2.91c-.09-.16-.3-.22-.46-.12-.16.09-.22.3-.12.46l1.66,2.87C2.26,8.32.32,11.22,0,14.61h20c-.32-3.39-2.26-6.29-5.12-7.84h0Zm-9.47,5.03c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Zm9.18,0c-.46,0-.84-.38-.84-.84s.38-.84.84-.84.84.38.84.84c0,.46-.37.84-.84.84Z" /> </svg>assets/uikit/src/images/icons/database.svg000064400000001037151666572370014652 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <ellipse fill="none" stroke="#000" cx="10" cy="4.64" rx="7.5" ry="3.14" /> <path fill="none" stroke="#000" d="M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11" /> <path fill="none" stroke="#000" d="M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25" /> <path fill="none" stroke="#000" d="M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64" /> </svg>assets/uikit/src/images/icons/expand.svg000064400000000656151666572370014373 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52" /> <polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52" /> <polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97" /> </svg> assets/uikit/src/images/icons/user.svg000064400000000461151666572370014064 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2" /> </svg> assets/uikit/src/images/icons/history.svg000064400000000733151666572370014611 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10" /> <rect x="9" y="4" width="1" height="7" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625" id="Shape" /> </svg> assets/uikit/src/images/icons/ban.svg000064400000000410151666572370013640 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="4" y1="3.5" x2="16" y2="16.5" /> </svg>assets/uikit/src/images/icons/file-text.svg000064400000000715151666572370015011 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5" /> <line fill="none" stroke="#000" x1="6" x2="12" y1="12.5" y2="12.5" /> <line fill="none" stroke="#000" x1="6" x2="14" y1="8.5" y2="8.5" /> <line fill="none" stroke="#000" x1="6" x2="14" y1="6.5" y2="6.5" /> <line fill="none" stroke="#000" x1="6" x2="14" y1="10.5" y2="10.5" /> </svg> assets/uikit/src/images/icons/triangle-down.svg000064400000000202151666572370015651 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="5 7 15 7 10 12" /> </svg>assets/uikit/src/images/icons/calendar.svg000064400000000435151666572370014660 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z" /> <rect width="1" height="3" x="6" y="2" /> <rect width="1" height="3" x="13" y="2" /> </svg>assets/uikit/src/images/icons/lock.svg000064400000000445151666572370014040 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5" /> <path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8" /> </svg>assets/uikit/src/images/icons/laptop.svg000064400000000322151666572370014401 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect y="16" width="20" height="1" /> <rect fill="none" stroke="#000" x="2.5" y="4.5" width="15" height="10" /> </svg>assets/uikit/src/images/icons/quote-right.svg000064400000001377151666572370015365 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z" /> <path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z" /> </svg>assets/uikit/src/images/icons/bag.svg000064400000000443151666572370013637 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M7.5,7.5V4A2.48,2.48,0,0,1,10,1.5,2.54,2.54,0,0,1,12.5,4V7.5" /> <polygon fill="none" stroke="#000" points="16.5 7.5 3.5 7.5 2.5 18.5 17.5 18.5 16.5 7.5" /> </svg> assets/uikit/src/images/icons/nut.svg000064400000000402151666572370013707 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3" /> <circle fill="none" stroke="#000" cx="10" cy="10" r="3.5" /> </svg> assets/uikit/src/images/icons/cloud-download.svg000064400000000746151666572370016027 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3" /> <path fill="none" stroke="#000" d="M9.5,18.17v-10" /> <polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66" /> </svg> assets/uikit/src/images/icons/thumbnails.svg000064400000000616151666572370015256 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5" /> <rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5" /> <rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5" /> <rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5" /> </svg>assets/uikit/src/images/icons/telegram.svg000064400000001056151666572370014707 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z" /> </svg> assets/uikit/src/images/icons/twitter.svg000064400000001536151666572370014614 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74" /> </svg>assets/uikit/src/images/icons/arrow-down.svg000064400000000365151666572370015210 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48" /> <polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12" /> </svg> assets/uikit/src/images/icons/italic.svg000064400000000531151666572370014351 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z" /> </svg>assets/uikit/src/images/icons/facebook.svg000064400000000330151666572370014652 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z" /> </svg> assets/uikit/src/images/icons/foursquare.svg000064400000001757151666572370015313 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z" /> </svg>assets/uikit/src/images/icons/arrow-right.svg000064400000000373151666572370015355 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10" /> <polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16" /> </svg> assets/uikit/src/images/icons/file-pdf.svg000064400000001734151666572370014600 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect fill="none" stroke="#000" width="13" height="17" x="3.5" y="1.5" /> <path d="M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z" /> </svg> assets/uikit/src/images/icons/credit-card.svg000064400000000327151666572370015270 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect fill="none" stroke="#000" x="1.5" y="4.5" width="17" height="12" /> <rect x="1" y="7" width="18" height="3" /> </svg>assets/uikit/src/images/icons/table.svg000064400000000430151666572370014171 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="1" y="3" width="18" height="1" /> <rect x="1" y="7" width="18" height="1" /> <rect x="1" y="11" width="18" height="1" /> <rect x="1" y="15" width="18" height="1" /> </svg>assets/uikit/src/images/icons/bluesky.svg000064400000001237151666572370014566 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M9.993,9.149c-.772-1.495-2.865-4.288-4.813-5.662-1.866-1.317-2.58-1.09-3.043-.878-.54.246-.637,1.075-.637,1.563s.265,4.003.444,4.587c.579,1.939,2.628,2.595,4.519,2.382.096-.014.193-.029.294-.039-.096.014-.198.029-.294.039-2.768.41-5.233,1.418-2.001,5.011,3.55,3.675,4.866-.786,5.541-3.053.675,2.262,1.452,6.564,5.474,3.053,3.024-3.053.83-4.601-1.939-5.011-.096-.01-.198-.024-.294-.039.101.014.198.024.294.039,1.89.212,3.945-.444,4.519-2.382.174-.588.444-4.099.444-4.587s-.096-1.317-.637-1.563c-.468-.212-1.177-.439-3.043.878-1.963,1.379-4.056,4.167-4.827,5.662h0Z" /> </svg>assets/uikit/src/images/icons/camera.svg000064400000000713151666572370014336 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10.8" r="3.8" /> <path fill="none" stroke="#000" d="M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z" /> </svg> assets/uikit/src/images/icons/tablet.svg000064400000000523151666572370014360 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z" /> <circle cx="10.5" cy="16.3" r="0.8" /> </svg> assets/uikit/src/images/icons/more.svg000064400000000310151666572370014041 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle cx="3" cy="10" r="2" /> <circle cx="10" cy="10" r="2" /> <circle cx="17" cy="10" r="2" /> </svg>assets/uikit/src/images/icons/500px.svg000064400000006214151666572370013764 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z" /> <path d="M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z" /> <path d="M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z" /> <path d="M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z" /> </svg> assets/uikit/src/images/icons/file.svg000064400000000251151666572370014022 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect fill="none" stroke="#000" x="3.5" y="1.5" width="13" height="17" /> </svg> assets/uikit/src/images/icons/menu.svg000064400000000350151666572370014047 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="2" y="4" width="16" height="1" /> <rect x="2" y="9" width="16" height="1" /> <rect x="2" y="14" width="16" height="1" /> </svg>assets/uikit/src/images/icons/phone-landscape.svg000064400000000522151666572370016145 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z" /> <circle cx="3.8" cy="10.5" r="0.8" /> </svg> assets/uikit/src/images/icons/clock.svg000064400000000466151666572370014206 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9" /> <rect x="9" y="4" width="1" height="7" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625" /> </svg> assets/uikit/src/images/icons/trash.svg000064400000000614151666572370014227 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3" /> <polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4" /> <rect x="8" y="7" width="1" height="9" /> <rect x="11" y="7" width="1" height="9" /> <rect x="2" y="3" width="16" height="1" /> </svg>assets/uikit/src/images/icons/tv.svg000064400000000330151666572370013532 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="7" y="16" width="6" height="1" /> <rect fill="none" stroke="#000" x="0.5" y="3.5" width="19" height="11" /> </svg> assets/uikit/src/images/icons/linkedin.svg000064400000001255151666572370014705 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z" /> <path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z" /> </svg>assets/uikit/src/images/icons/minus.svg000064400000000211151666572370014232 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect height="1" width="18" y="9" x="1" /> </svg>assets/uikit/src/images/icons/future.svg000064400000000710151666572370014415 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline points="19 2 18 2 18 6 14 6 14 7 19 7 19 2" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10" /> <rect x="9" y="4" width="1" height="7" /> <path d="M13.018,14.197 L9.445,10.625" fill="none" stroke="#000" stroke-width="1.1" /> </svg> assets/uikit/src/images/icons/move.svg000064400000000654151666572370014060 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="4,5 1,5 1,9 2,9 2,6 4,6" /> <polygon points="1,16 2,16 2,18 4,18 4,19 1,19" /> <polygon points="14,16 14,19 11,19 11,18 13,18 13,16" /> <rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13" /> <rect x="1" y="11" width="1" height="3" /> <rect x="6" y="18" width="3" height="1" /> </svg> assets/uikit/src/images/icons/chevron-down.svg000064400000000261151666572370015515 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7" /> </svg>assets/uikit/src/images/icons/soundcloud.svg000064400000000656151666572370015273 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z" /> <rect x="6" y="6.5" width="1.5" height="8.5" /> <rect x="3" y="8" width="1.5" height="7" /> <rect y="10" width="1.5" height="5" /> </svg> assets/uikit/src/images/icons/github-alt.svg000064400000002206151666572370015145 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z" /> </svg>assets/uikit/src/images/icons/signal.svg000064400000003050151666572370014360 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z" /> </svg> assets/uikit/src/images/icons/comments.svg000064400000000510151666572370014726 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" points="2 0.5 19.5 0.5 19.5 13" /> <path d="M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z" /> </svg> assets/uikit/src/images/icons/upload.svg000064400000000505151666572370014371 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17" /> <polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64" /> <line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5" /> </svg> assets/uikit/src/images/icons/folder.svg000064400000000301151666572370014352 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" points="9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5" /> </svg>assets/uikit/src/images/icons/copy.svg000064400000000364151666572370014062 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16" /> <polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17" /> </svg> assets/uikit/src/images/icons/triangle-right.svg000064400000000202151666572370016017 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="8 5 13 10 8 15" /> </svg>assets/uikit/src/images/icons/android-robot.svg000064400000001733151666572370015654 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="m17.61,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z" /> <path d="m4.62,7.96v4.64c-.06,1.48-2.17,1.48-2.23,0v-4.64c.06-1.48,2.17-1.48,2.23,0Z" /> <path d="m12.78,2.85c-.11-.07-.23-.13-.34-.19.13-.23.65-1.17.79-1.42.07-.12-.05-.27-.18-.23-.04.01-.07.04-.09.08l-.79,1.43c-1.32-.6-2.98-.6-4.3,0-.13-.23-.65-1.18-.79-1.43-.04-.07-.14-.1-.21-.06-.08.04-.1.14-.06.21,0,0,.79,1.42.79,1.42-1.49.77-2.53,2.28-2.53,3.99-.02,0,9.93,0,9.93,0,.01-1.55-.87-2.98-2.19-3.8Zm-5.07,1.98c-.23,0-.41-.19-.41-.41.01-.27.21-.41.41-.41s.4.14.42.41c0,.22-.18.42-.41.41Zm4.58,0c-.23,0-.42-.19-.41-.41.01-.28.21-.41.41-.41s.4.14.41.41c0,.23-.19.41-.41.41Z" /> <path d="m14.97,7.03v7.2c0,.66-.54,1.2-1.2,1.2h-.8v2.46c-.06,1.48-2.16,1.48-2.23,0,0,0,0-2.46,0-2.46h-1.48v2.46c0,.61-.5,1.11-1.11,1.11s-1.11-.5-1.11-1.11v-2.46h-.8c-.66,0-1.2-.54-1.2-1.2,0,0,0-7.2,0-7.2h9.93Z" /> </svg>assets/uikit/src/images/icons/arrow-down-arrow-up.svg000064400000000625151666572370016761 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38" /> <polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76" /> <line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62" /> <polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24" /> </svg> assets/uikit/src/images/icons/play.svg000064400000000243151666572370014051 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" points="6.5,5 14.5,10 6.5,15" /> </svg> assets/uikit/src/images/icons/album.svg000064400000000407151666572370014206 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="5" y="2" width="10" height="1" /> <rect x="3" y="4" width="14" height="1" /> <rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11" /> </svg> assets/uikit/src/images/icons/close-circle.svg000064400000000517151666572370015454 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9" /> <line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18" /> <line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18" /> </svg> assets/uikit/src/images/icons/gitter.svg000064400000000506151666572370014404 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect x="3.5" y="1" width="1.531" height="11.471" /> <rect x="7.324" y="4.059" width="1.529" height="15.294" /> <rect x="11.148" y="4.059" width="1.527" height="15.294" /> <rect x="14.971" y="4.059" width="1.529" height="8.412" /> </svg> assets/uikit/src/images/icons/xing.svg000064400000001424151666572370014053 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z" /> <path d="M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z" /> </svg>assets/uikit/src/images/icons/chevron-left.svg000064400000000262151666572370015501 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4" /> </svg>assets/uikit/src/images/icons/cog.svg000064400000001414151666572370013655 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" cx="9.997" cy="10" r="3.31" /> <path fill="none" stroke="#000" d="M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z" /> </svg> assets/uikit/src/images/icons/paint-bucket.svg000064400000000766151666572370015504 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28" /> <path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z" /> <line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5" /> <polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55" /> </svg>assets/uikit/src/images/icons/google.svg000064400000001033151666572370014356 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z" /> </svg>assets/uikit/src/images/icons/flickr.svg000064400000000256151666572370014362 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle cx="5.5" cy="9.5" r="3.5" /> <circle cx="14.5" cy="9.5" r="3.5" /> </svg> assets/uikit/src/images/icons/tablet-landscape.svg000064400000000517151666572370016313 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z" /> <circle cx="3.7" cy="10.5" r="0.8" /> </svg> assets/uikit/src/images/icons/sorting.svg000064400000000625151666572370014575 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38" /> <polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76" /> <line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62" /> <polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24" /> </svg> assets/uikit/src/images/icons/shrink.svg000064400000000614151666572370014404 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6" /> <polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6" /> <polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4" /> </svg> assets/uikit/src/images/icons/wordpress.svg000064400000001675151666572370015146 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z" /> </svg> assets/uikit/src/images/icons/sign-out.svg000064400000000473151666572370014656 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2" /> <line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49" /> <polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66" /> </svg> assets/uikit/src/images/icons/chevron-double-left.svg000064400000000414151666572370016750 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.03" points="10 14 6 10 10 6" /> <polyline fill="none" stroke="#000" stroke-width="1.03" points="14 14 10 10 14 6" /> </svg> assets/uikit/src/images/icons/cart.svg000064400000000413151666572370014034 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle cx="7.3" cy="17.3" r="1.4" /> <circle cx="13.3" cy="17.3" r="1.4" /> <polyline fill="none" stroke="#000" points="0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5" /> </svg>assets/uikit/src/images/icons/tripadvisor.svg000064400000003621151666572370015455 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0 c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009 c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15 c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594 c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811 c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079 c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066 c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002 c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775 c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468 C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479 c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775 c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627 c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618 c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968 c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72 C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z" /> </svg> assets/uikit/src/images/icons/arrow-up-right.svg000064400000000365151666572370016000 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53" /> <polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5" /> </svg> assets/uikit/src/images/icons/reply.svg000064400000001056151666572370014242 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z" /> </svg>assets/uikit/src/images/icons/tiktok.svg000064400000000445151666572370014415 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z" /> </svg> assets/uikit/src/images/icons/more-vertical.svg000064400000000310151666572370015650 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle cx="10" cy="3" r="2" /> <circle cx="10" cy="10" r="2" /> <circle cx="10" cy="17" r="2" /> </svg>assets/uikit/src/images/icons/bookmark.svg000064400000000273151666572370014714 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" points="5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5" /> </svg>assets/uikit/src/images/icons/bell.svg000064400000001067151666572370014027 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.1" d="M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z" /> <path fill="none" stroke="#000" d="M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16" /> </svg>assets/uikit/src/images/icons/github.svg000064400000001632151666572370014371 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z" /> </svg>assets/uikit/src/images/icons/chevron-right.svg000064400000000261151666572370015663 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16" /> </svg>assets/uikit/src/images/icons/close.svg000064400000000360151666572370014211 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4" /> <path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16" /> </svg>assets/uikit/src/images/icons/unlock.svg000064400000000426151666572370014402 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10" /> <path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9" /> </svg> assets/uikit/src/images/icons/lifesaver.svg000064400000001770151666572370015072 0ustar00<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"> <circle fill="none" stroke="#000" cx="10" cy="10" r="9" /> <circle fill="none" stroke="#000" cx="10" cy="10" r="5" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89" /> </svg>assets/uikit/src/images/icons/git-fork.svg000064400000000666151666572370014637 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" cx="6" cy="3" r="1.79" /> <circle fill="none" stroke="#000" cx="14" cy="3" r="1.79" /> <circle fill="none" stroke="#000" cx="10" cy="17" r="1.79" /> <path fill="none" stroke="#000" d="m6,4.78v1.99c0,2.63,4,3.66,4,6.75,0,1.55.01,1.24.01,1.24,0-.18,0,.31,0-1.24,0-3.09,3.99-4.12,3.99-6.75v-1.99" /> </svg> assets/uikit/src/images/icons/home.svg000064400000000531151666572370014034 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65" /> <polygon points="15 4 18 4 18 7 17 7 17 5 15 5" /> <polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19" /> </svg>assets/uikit/src/images/icons/image.svg000064400000000610151666572370014164 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle cx="16.1" cy="6.1" r="1.1" /> <rect fill="none" stroke="#000" x="0.5" y="2.5" width="19" height="15" /> <polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14" /> <polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14" /> </svg> assets/uikit/src/images/icons/warning.svg000064400000000761151666572370014556 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle cx="10" cy="14" r="1" /> <circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9" /> <path d="M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z" /> </svg> assets/uikit/src/images/icons/pull.svg000064400000000523151666572370014061 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2" /> <polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5" /> <polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21" /> </svg> assets/uikit/src/images/icons/users.svg000064400000000716151666572370014252 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1" /> </svg> assets/uikit/src/images/icons/minus-circle.svg000064400000000367151666572370015505 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9" /> <line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5" /> </svg> assets/uikit/src/images/icons/x.svg000064400000000406151666572370013354 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="m15.08,2.1h2.68l-5.89,6.71,6.88,9.1h-5.4l-4.23-5.53-4.84,5.53H1.59l6.24-7.18L1.24,2.1h5.54l3.82,5.05,4.48-5.05Zm-.94,14.23h1.48L6,3.61h-1.6l9.73,12.71h0Z" /> </svg> assets/uikit/src/images/icons/forward.svg000064400000001043151666572370014547 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z" /> </svg>assets/uikit/src/images/icons/commenting.svg000064400000000470151666572370015246 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" points="1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5" /> <circle cx="10" cy="8" r="1" /> <circle cx="6" cy="8" r="1" /> <circle cx="14" cy="8" r="1" /> </svg>assets/uikit/src/images/icons/video-camera.svg000064400000000336151666572370015443 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" points="19.5 5.9 19.5 14.1 14.5 10.4 14.5 15.5 .5 15.5 .5 4.5 14.5 4.5 14.5 9.6 19.5 5.9" /> </svg>assets/uikit/src/images/icons/star.svg000064400000000400151666572370014050 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" stroke-width="1.01" points="10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27" /> </svg> assets/uikit/src/images/icons/social.svg000064400000001036151666572370014357 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8" /> <circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3" /> <circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3" /> <circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3" /> </svg> assets/uikit/src/images/icons/threads.svg000064400000002131151666572370014534 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z" /> </svg> assets/uikit/src/images/icons/tumblr.svg000064400000000770151666572370014416 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z" /> </svg> assets/uikit/src/images/icons/heart.svg000064400000000512151666572370014206 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z" /> </svg>assets/uikit/src/images/icons/push.svg000064400000000522151666572370014063 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1" /> <polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5" /> <polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88" /> </svg> assets/uikit/src/images/icons/twitch.svg000064400000000514151666572370014407 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M5.23,1,2,4.23V15.85H5.88v3.23L9.1,15.85h2.59L17.5,10V1Zm11,8.4L13.62,12H11L8.78,14.24V12H5.88V2.29H16.21Z" /> <rect x="12.98" y="4.55" width="1.29" height="3.88" /> <rect x="9.43" y="4.55" width="1.29" height="3.88" /> </svg> assets/uikit/src/images/icons/link.svg000064400000001101151666572370014033 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375" /> <path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975" /> </svg> assets/uikit/src/images/icons/bolt.svg000064400000000426151666572370014047 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path d="M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z" /> </svg> assets/uikit/src/images/icons/code.svg000064400000000412151666572370014014 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16" /> <polyline fill="none" stroke="#000" stroke-width="1.01" points="7,4 1,10 7,16" /> </svg> assets/uikit-themes/master-gravity-tower/styles/dark-green.less000064400000015205151666572370021051 0ustar00// // Global // @global-color: #EFF5F5; @global-emphasis-color: #EAF0F0; @global-inverse-color: #1B2421; @global-link-color: #EAF0F0; @global-muted-color: #8A9393; @global-background: #1B2421; @global-muted-background: #1D312C; @global-primary-background: #D3EA7B; @global-secondary-background: #1E4C43; @global-large-box-shadow: 0 14px 25px 0 rgba(20, 29, 27, 0.8); @global-medium-box-shadow: 0 5px 15px 0 rgba(20, 29, 27, 0.8); @global-small-box-shadow: 0 2px 4px 0 rgba(13, 18, 17, 0.77); @global-xlarge-box-shadow: 0 28px 50px 0 rgba(13, 20, 18, 0.9); // // Theme // @theme-page-container-color-mode: light; // // Badge // @badge-color: @global-muted-background; // // Button // @button-primary-color: #1B2421; @button-primary-hover-color: #FAF9F1; @button-secondary-color: #FAF9F1; @button-link-hover-color: #CBD8D8; // // Card // @card-badge-color: @global-muted-background; @card-default-color-mode: light; @card-primary-color: @global-secondary-background; @card-primary-color-mode: dark; // // Dropbar // @dropbar-color-mode: light; // // Dropdown // @dropdown-color-mode: light; // // Form // @form-select-disabled-icon-color: @global-primary-background; @form-range-thumb-background: @global-primary-background; @form-range-track-focus-background: @global-primary-background; @form-radio-checked-icon-color: @global-muted-background; // // Heading // @heading-divider-border: @global-primary-background; @heading-bullet-border: @global-primary-background; @heading-line-border: @global-primary-background; // // Inverse // @inverse-global-color: rgba(53, 53, 53, 0.7); @inverse-global-color-mode: dark; @inverse-global-emphasis-color: #313131; @inverse-badge-background: @global-secondary-background; @inverse-button-default-background: rgba(250, 249, 241, 0); @inverse-button-default-border: #373737; @inverse-button-default-color: #373737; @inverse-button-default-hover-border: rgba(55, 55, 55, 0.5); @inverse-button-default-hover-color: #373737; @inverse-button-default-active-border: #373737; @inverse-button-default-active-color: #373737; @inverse-button-primary-background: @global-secondary-background; @inverse-button-primary-hover-background: rgba(30, 76, 67, 0.8); @inverse-button-primary-hover-border: rgba(53, 53, 53, 0); @inverse-button-primary-hover-color: #EFF5F5; @inverse-button-primary-active-background: @global-secondary-background; @inverse-button-primary-active-border: rgba(250, 249, 241, 0); @inverse-button-primary-active-color: #EFF5F5; @inverse-button-secondary-background: #373737; @inverse-card-badge-background: @global-secondary-background; @inverse-label-background: @global-inverse-color; @inverse-label-color: @global-color; @inverse-navbar-nav-item-color: #353535; @inverse-navbar-nav-item-hover-color: #353535; @inverse-navbar-nav-item-line-hover-background: #353535; @inverse-navbar-nav-item-line-onclick-background: #353535; @inverse-navbar-nav-item-line-active-background: #353535; @inverse-search-color: #353535; @inverse-search-icon-color: #353535;@inverse-search-placeholder-color: #353535; @inverse-search-navbar-border: #353535; @inverse-search-navbar-focus-background: transparent; @inverse-search-navbar-focus-border: rgba(55, 55, 55, 0.5); @inverse-slidenav-color: @global-color; // // Label // @label-color: @global-muted-background; // // Marker // @marker-color: @global-secondary-background; // // Nav // @nav-default-item-color: #EAF0F0; @nav-primary-item-hover-color: fade(@global-primary-background, 80%); @nav-primary-item-active-color: @global-primary-background; @nav-primary-sublist-item-hover-color: fade(@global-primary-background, 80%); @nav-primary-sublist-item-active-color: @global-primary-background; @nav-secondary-item-hover-color: fade(@global-primary-background, 80%); @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-hover-color: fade(@global-primary-background, 80%); @nav-secondary-subtitle-active-color: @global-primary-background; // // Navbar // @navbar-color-mode: light; @navbar-nav-item-color: #EAF0F0; @navbar-nav-item-line-hover-background: #EAF0F0; @navbar-nav-item-line-onclick-background: #EAF0F0; @navbar-nav-item-line-active-background: #EAF0F0; @navbar-toggle-hover-color: rgba(211, 234, 123, 0.72); @navbar-dropdown-color-mode: light; @navbar-dropdown-nav-item-color: #EAF0F0; @navbar-dropdown-nav-item-active-color: #EAF0F0; @navbar-dropdown-nav-header-color: #EAF0F0; @navbar-dropdown-nav-sublist-item-active-color: #EAF0F0; // // Notification // @notification-message-background: lighten(@global-muted-background, 10%); // // Overlay // @overlay-default-color-mode: light; @overlay-primary-color-mode: dark; // // Search // @search-navbar-border: #EAF0F0; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; // // Subnav // @subnav-pill-item-hover-background: @global-primary-background; @subnav-pill-item-hover-color: @global-secondary-background; @subnav-pill-item-onclick-background: rgba(211, 234, 123, 0.6); @subnav-pill-item-onclick-color: #EFF5F5; @subnav-pill-item-active-color: @global-secondary-background; // // Theme // @theme-box-decoration-default-background: @global-primary-background; @theme-box-decoration-primary-background: @global-primary-background; @theme-box-decoration-secondary-background: @global-primary-background; // // Thumbnav // @thumbnav-item-hover-border: @global-primary-background; @thumbnav-item-active-border: @global-primary-background; // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: dark; // // Tooltip // @tooltip-color: @global-secondary-background; // // Totop // @totop-background: #D3EA7B; @totop-color: @global-secondary-background; @totop-hover-background: rgba(211, 234, 123, 0.9); // // Utility // @box-shadow-bottom-background: rgba(13, 20, 18, 0.9); assets/uikit-themes/master-gravity-tower/styles/light-yellow.less000064400000007251151666572370021454 0ustar00// // Global // @global-color: #615F54; @global-emphasis-color: #48463D; @global-inverse-color: #F8F7EC; @global-link-color: #CCBD10; @global-muted-color: #A59F87; @global-link-hover-color: #C4B356; @global-background: #EFEFEF; @global-muted-background: #D8D4C2; @global-primary-background: #E1DA9B; @global-secondary-background: #3D3F39; @global-border: rgba(156, 156, 111, 0.3); @global-large-box-shadow: 0 14px 25px 0 rgba(61, 63, 57, 0.35); @global-medium-box-shadow: 0 5px 15px 0 rgba(61, 63, 57, 0.3); @global-small-box-shadow: 0 1px 4px 0 rgba(61, 63, 57, 0.4); @global-xlarge-box-shadow: 0 28px 50px 0 rgba(61, 63, 57, 0.35); // // Badge // @badge-color: rgba(97, 95, 84, 0.75); // // Button // @button-default-hover-border: rgba(204, 189, 16, 0.89); @button-default-hover-color: @global-emphasis-color; @button-default-active-border: @global-link-color; @button-default-active-color: @global-emphasis-color; @button-primary-color: @global-emphasis-color; @button-secondary-hover-color: @global-emphasis-color; @button-secondary-active-color: @global-emphasis-color; @button-link-hover-color: rgba(35, 36, 33, 0.65); // // Card // @card-badge-color: @global-color; @card-primary-color: @global-color; @card-primary-color-mode: dark; // // Dotnav // @dotnav-item-background: rgba(97, 95, 84, 0.15); @dotnav-item-hover-background: #D0C989; @dotnav-item-onclick-background: #C9C488; // // Dropdown // @dropdown-nav-divider-border: rgba(225, 224, 216, 0.5); // // Inverse // @inverse-button-default-background: rgba(248, 247, 236, 0); @inverse-button-default-border: @global-inverse-color; @inverse-button-default-color: @global-inverse-color; @inverse-button-default-hover-border: rgba(248, 247, 236, 0.65); @inverse-button-default-hover-color: @global-inverse-color; @inverse-button-default-active-border: @global-inverse-color; @inverse-button-default-active-color: @global-inverse-color; @inverse-button-primary-hover-background: rgba(248, 247, 236, 0.7); @inverse-button-primary-hover-border: rgba(248, 247, 236, 0); @inverse-button-primary-hover-color: @global-color; @inverse-button-primary-active-background: @global-inverse-color; @inverse-button-primary-active-border: rgba(248, 247, 236, 0); @inverse-button-primary-active-color: @global-color; // // Label // @label-color: rgba(97, 95, 84, 0.75); // // Marker // @marker-color: @global-secondary-background; // // Nav // @nav-default-item-hover-color: @global-link-color; @nav-default-item-active-color: @global-link-color; // // Navbar // @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-toggle-color: @global-secondary-background; // // Overlay // @overlay-primary-color-mode: dark; // // Search // @search-color: darken(@global-emphasis-color, 10%); @search-navbar-focus-border: darken(@global-primary-background, 25%); // // Section // @section-primary-color-mode: dark; // // Slidenav // @slidenav-hover-color: @global-color; @slidenav-active-color: @global-color; // // Subnav // @subnav-item-hover-color: #C1BA49; @subnav-item-active-color: #C1BA49; @subnav-pill-item-onclick-background: rgba(225, 218, 155, 0.81); @subnav-pill-item-onclick-color: @global-color; @subnav-pill-item-active-color: @global-color; // // Text // @text-primary-color: #C1BA49; // // Tile // @tile-primary-color-mode: dark; // // Totop // @totop-hover-color: @global-color; @totop-active-color: @global-color; // // Utility // @box-shadow-bottom-background: rgba(61, 63, 57, 0.6); assets/uikit-themes/master-gravity-tower/styles/dark-blue.less000064400000013774151666572370020711 0ustar00// // Global // @global-color: #DEDEDE; @global-emphasis-color: #D7D7D7; @global-inverse-color: #171918; @global-link-color: #8BB6C0; @global-muted-color: #B0BDC0; @global-background: #171918; @global-danger-background: #E53E57; @global-muted-background: #222727; @global-primary-background: #8DA8AD; @global-secondary-background: #3B494B; @global-success-background: #2FB371; @global-warning-background: #FFA850; @global-border: rgba(239, 239, 239, 0.12); @global-large-box-shadow: 0 14px 25px 0 rgba(34, 39, 39, 0.16); @global-medium-box-shadow: 0 5px 15px 0 rgba(34, 39, 39, 0.08); @global-small-box-shadow: 0 1px 4px 0 rgba(34, 39, 39, 0.14); @global-xlarge-box-shadow: 0 28px 50px 0 rgba(34, 39, 39, 0.16); // // Theme // @theme-page-container-color-mode: light; // // Base // @base-ins-background: @global-color; @base-ins-color: #1B1F1F; @base-mark-background: @global-color; @base-mark-color: #1B1F1F; // // Button // @button-primary-hover-color: #FAF9F1; @button-secondary-color: #FAF9F1; @button-secondary-hover-color: #FAF9F1; @button-link-hover-color: rgba(215, 215, 215, 0.85); // // Card // @card-default-color-mode: light; @card-primary-color-mode: dark; // // Dropbar // @dropbar-color-mode: light; @dropbar-top-box-shadow: 0 10px 15px -3px rgba(5, 4, 4, 0.4); @dropbar-bottom-box-shadow: 0 -6px 4px -3px rgba(5, 4, 4, 0.4); @dropbar-left-box-shadow: 18px 0 10px -18px rgba(5, 4, 4, 0.4); @dropbar-right-box-shadow: -18px 0 10px -18px rgba(5, 4, 4, 0.4); // // Dropdown // @dropdown-color-mode: light; // // Inverse // @inverse-global-color: rgba(53, 53, 53, 0.7); @inverse-global-color-mode: dark; @inverse-global-emphasis-color: #313131; @inverse-theme-box-decoration-default-background: @global-primary-background; @inverse-theme-box-decoration-default-border: @global-secondary-background; @inverse-theme-box-decoration-primary-background: @global-primary-background; @inverse-theme-box-decoration-primary-border: @global-secondary-background; @inverse-theme-box-decoration-secondary-background: @global-primary-background; @inverse-theme-box-decoration-secondary-border: @global-secondary-background; @inverse-button-default-background: rgba(250, 249, 241, 0); @inverse-button-default-border: #3B494B; @inverse-button-default-color: #3B494B; @inverse-button-default-hover-border: rgba(55, 55, 55, 0.5); @inverse-button-default-hover-color: #3B494B; @inverse-button-default-active-border: #3B494B; @inverse-button-default-active-color: #3B494B; @inverse-button-primary-background: @global-secondary-background; @inverse-button-primary-hover-background: #8DA8AD; @inverse-button-primary-hover-border: rgba(53, 53, 53, 0); @inverse-button-primary-hover-color: #EFF5F5; @inverse-button-primary-active-background: @global-secondary-background; @inverse-button-primary-active-border: rgba(250, 249, 241, 0); @inverse-button-primary-active-color: #EFF5F5; @inverse-button-secondary-background: #3B494B; @inverse-card-badge-background: @global-secondary-background; @inverse-label-background: @global-inverse-color; @inverse-label-color: #EFF5F5; @inverse-navbar-nav-item-color: #222727; @inverse-navbar-nav-item-hover-color: #222727; @inverse-navbar-nav-item-line-hover-background: #222727; @inverse-navbar-nav-item-line-onclick-background: #222727; @inverse-navbar-nav-item-line-active-background: #222727; @inverse-search-color: #3B494B; @inverse-search-icon-color: #3B494B;@inverse-search-placeholder-color: #3B494B; @inverse-search-navbar-border: #3B494B; @inverse-search-navbar-focus-background: transparent; @inverse-search-navbar-focus-border: rgba(55, 55, 55, 0.5); @inverse-slidenav-color: @global-color; @inverse-totop-background: @global-background; @inverse-totop-color: @global-emphasis-color; @inverse-totop-hover-background: fade(@global-background, 70%); @inverse-totop-hover-color: @global-emphasis-color; @inverse-totop-active-background: @global-background; @inverse-totop-active-color: @global-emphasis-color; // // Nav // @nav-default-item-color: #D7D7D7; // // Navbar // @navbar-color-mode: light; @navbar-nav-item-color: @global-color; @navbar-nav-item-line-hover-background: @global-color; @navbar-nav-item-line-onclick-background: @global-color; @navbar-nav-item-line-active-background: @global-color; @navbar-toggle-color: @global-color; @navbar-toggle-hover-color: rgba(222, 222, 222, 0.91); @navbar-subtitle-color: rgba(222, 222, 222, 0.91); @navbar-dropdown-color-mode: light; @navbar-dropdown-nav-item-active-color: @global-color; @navbar-dropdown-nav-header-color: @global-color; @navbar-dropdown-nav-sublist-item-active-color: @global-color; // // Notification // @notification-message-background: lighten(@global-muted-background, 5%); // // Overlay // @overlay-default-color-mode: light; // // Search // @search-navbar-border: #DEDEDE; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; // // Table // @table-striped-row-background: rgba(59, 73, 75, 0.15); @table-hover-row-background: rgba(59, 73, 75, 0.07); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; assets/uikit-themes/master-gravity-tower/styles/light-blue.less000064400000002216151666572370021064 0ustar00// // Global // @global-color: #3F4851; @global-emphasis-color: #172130; @global-inverse-color: #F8F7EC; @global-link-color: #305E94; @global-muted-color: #AFAFB9; @global-link-hover-color: #305E94; @global-background: #F4F8FA; @global-muted-background: #ECF2F8; @global-primary-background: #305E94; @global-secondary-background: #1D3859; @global-border: #E0E0E6; @global-large-box-shadow: 0 14px 25px 0 rgba(48, 94, 148, 0.16); @global-medium-box-shadow: 0 5px 15px 0 rgba(47, 94, 146, 0.1); @global-small-box-shadow: 0 1px 4px 0 rgba(48, 94, 148, 0.13); @global-xlarge-box-shadow: 0 28px 50px 0 rgba(48, 94, 148, 0.16); // // Button // @button-disabled-background: #E4EAF3; @button-link-hover-color: rgba(16, 32, 51, 0.65); // // Heading // @heading-divider-border: @global-primary-background; @heading-bullet-border: @global-primary-background; @heading-line-border: @global-primary-background; // // Navbar // @navbar-background: rgba(236, 242, 248, 0.8); // // Notification // @notification-message-background: lighten(@global-muted-background, 3%); assets/uikit-themes/master-gravity-tower/styles/light-red.less000064400000002664151666572370020716 0ustar00// // Global // @global-color: #65645F; @global-emphasis-color: #242421; @global-inverse-color: #F8F7EC; @global-link-color: #DC6F4A; @global-muted-color: #A7A7A2; @global-background: #FAFAFA; @global-muted-background: #EDEDED; @global-primary-background: #DC6F4A; @global-secondary-background: #858072; @global-large-box-shadow: 0 14px 25px 0 rgba(133, 128, 114, 0.5); @global-medium-box-shadow: 0 5px 15px 0 rgba(133, 128, 114, 0.6); @global-small-box-shadow: 0 1px 4px 0 rgba(91, 85, 67, 0.6); @global-xlarge-box-shadow: 0 28px 50px 0 rgba(133, 128, 114, 0.44); // // Navbar // @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-nav-item-line-hover-background: @global-emphasis-color; @navbar-nav-item-line-onclick-background: @global-emphasis-color; @navbar-nav-item-line-active-background: @global-emphasis-color; @navbar-item-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-emphasis-color; @navbar-dropdown-color: @global-emphasis-color; @navbar-dropdown-nav-item-color: @global-emphasis-color; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; // // Utility // @box-shadow-bottom-background: rgba(98, 92, 78, 0.6); assets/uikit-themes/master-gravity-tower/images/divider-icon.svg000064400000000551151666572370021157 0ustar00<svg width="18" height="30" viewBox="0 0 18 30" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="m9.21846,0v14.30664l-4.60919,4.60925V0h4.60919Zm4.60919,0v9.69745l4.17235-4.36132V0h-4.17235ZM.00003,30h4.60925v-11.08412L.00003,23.52507v6.47493Zm9.21843,0h1.26461c1.84718,0,3.34458-1.4974,3.34458-3.34458V9.69745l-4.60919,4.60919v15.69336Z" /> </svg> assets/uikit-themes/master-gravity-tower/images/mask-default-image.svg000064400000000324151666572370022236 0ustar00<svg width="220" height="280" preserveAspectRatio="none" viewBox="0 0 220 280" xmlns="http://www.w3.org/2000/svg"> <path d="M0,0H220V219.91075c0,33.16416-26.92509,60.08925-60.08925,60.08925H0V0H0Z" /> </svg> assets/uikit-themes/master-gravity-tower/images/list-bullet.svg000064400000000251151666572370021040 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1" cx="5" cy="5" r="4" /> </svg> assets/uikit-themes/master-gravity-tower/icons/slidenav-previous-large.svg000064400000000454151666572370023222 0ustar00<svg width="35" height="17" viewBox="0 0 35 17" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.5" x1="34.99947" y1="8.5" x2="1.07462" y2="8.5" /> <path fill="none" stroke="#000" stroke-width="1.5" d="M8.91559,.65796L1.07355,8.5l7.84204,7.84204" /> </svg> assets/uikit-themes/master-gravity-tower/icons/slidenav-next.svg000064400000000444151666572370021233 0ustar00<svg width="35" height="17" viewBox="0 0 35 17" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.5" y1="8.5" x2="33.92485" y2="8.5" /> <path fill="none" stroke="#000" stroke-width="1.5" d="M26.08389,.65796l7.84204,7.84204-7.84204,7.84204" /> </svg> assets/uikit-themes/master-gravity-tower/icons/totop.svg000064400000000431151666572370017613 0ustar00<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"> <polygon points="23.3727 8.39305 14.99965 .02049 6.62758 8.39305 7.68812 9.4536 14.24965 2.89165 14.24965 29.99998 15.74965 29.99998 15.74965 2.89152 22.31215 9.4536 23.3727 8.39305" /> </svg> assets/uikit-themes/master-gravity-tower/icons/slidenav-previous.svg000064400000000454151666572370022132 0ustar00<svg width="35" height="17" viewBox="0 0 35 17" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.5" x1="34.99947" y1="8.5" x2="1.07462" y2="8.5" /> <path fill="none" stroke="#000" stroke-width="1.5" d="M8.91559,.65796L1.07355,8.5l7.84204,7.84204" /> </svg> assets/uikit-themes/master-gravity-tower/icons/slidenav-next-large.svg000064400000000444151666572370022323 0ustar00<svg width="35" height="17" viewBox="0 0 35 17" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.5" y1="8.5" x2="33.92485" y2="8.5" /> <path fill="none" stroke="#000" stroke-width="1.5" d="M26.08389,.65796l7.84204,7.84204-7.84204,7.84204" /> </svg> assets/uikit-themes/master-gravity-tower/_import.less000064400000053252151666572370017164 0ustar00@internal-fonts: 'Montserrat:400,500,600|Taviraj:200,300'; @global-font-family: Montserrat; @global-font-size: 16px; @global-line-height: 1.625; @global-2xlarge-font-size: 43px; @global-xlarge-font-size: 32px; @global-large-font-size: 28px; @global-medium-font-size: 24px; @global-small-font-size: 14px; @global-primary-font-family: Taviraj; @global-primary-font-weight: 200; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: Montserrat; @global-secondary-font-weight: 500; @global-secondary-text-transform: none; @global-secondary-letter-spacing: 0; @global-secondary-font-style: inherit; @global-color: #293945; @global-emphasis-color: #142131; @global-muted-color: #A7A69B; @global-link-color: #8C7154; @global-link-hover-color: lighten(@global-link-color, 15%); @global-inverse-color: #FAF9F1; @global-background: #FAF9F1; @global-muted-background: #F5F1E5; @global-primary-background: #A68563; @global-secondary-background: #293945; @global-success-background: #3DC372; @global-warning-background: #FF9E45; @global-danger-background: #E44E56; @global-border-width: 1px; @global-border: #E1E0D8; @global-border-radius: 0; @global-small-box-shadow: 0 1px 4px rgba(40,67,88,0.14); @global-medium-box-shadow: 0 5px 15px rgba(40,67,88,0.08); @global-large-box-shadow: 0 14px 25px rgba(40,67,88,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(40,67,88,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 20px; @global-small-gutter: 10px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-code-color: @global-emphasis-color; @base-em-color: @global-emphasis-color; @base-ins-background: darken(@global-muted-background, 3%); @base-mark-background: darken(@global-muted-background, 3%); @base-h2-line-height: 1.5; @base-h3-line-height: 1.3; @base-h4-line-height: 1.5; @base-h5-font-size: 21px; @base-h5-line-height: 1.5; @base-h6-line-height: 1.6; @base-blockquote-font-style: normal; @base-blockquote-footer-margin-top: @global-medium-margin; @base-selection-background: lighten(@global-secondary-background, 10%); @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 2px; @base-pre-padding: 10px; @base-pre-background: @global-background; @base-blockquote-footer-em-dash: false; @base-h2-font-weight: 300; @base-h3-font-weight: 300; @base-h4-font-weight: 300; @base-h5-font-weight: 300; @base-h6-font-weight: 600; @base-h6-text-transform: uppercase; @base-h6-letter-spacing: 1.5px; @base-blockquote-footer-letter-spacing: @global-secondary-letter-spacing; @base-code-border-width: @global-border-width; @base-code-border: @global-border; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @base-code-border-radius: 1px; @base-pre-border-radius: @global-border-radius; @inverse-base-link-hover-color: fade(@inverse-global-color, 70%); @inverse-base-code-border: @inverse-global-border; @heading-small-font-size: 44px; @heading-medium-font-size: 47px; @heading-large-font-size: 52px; @heading-xlarge-font-size: 67px; @heading-2xlarge-font-size: 97px; @heading-small-font-size-m: 55px; @heading-medium-font-size-m: 59px; @heading-large-font-size-m: 66px; @heading-xlarge-font-size-m: 90px; @heading-medium-font-size-l: 76px; @heading-xlarge-font-size-l: 124px; @heading-2xlarge-font-size-l: 180px; @heading-large-text-transform: uppercase; @heading-xlarge-text-transform: uppercase; @heading-2xlarge-text-transform: uppercase; @heading-3xlarge-text-transform: uppercase; @divider-icon-height: 30px; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-gravity-tower/images/divider-icon.svg"; @list-bullet-icon-color: darken(@global-border, 8%); @internal-list-bullet-image: "../../../../uikit-themes/master-gravity-tower/images/list-bullet.svg"; @table-row-active-background: fade(@global-secondary-background, 4%); @table-striped-row-background: fade(@global-secondary-background, 4%); @icon-button-background: @global-background; @icon-button-color: @global-color; @icon-button-hover-background: @global-background; @icon-button-hover-color: @global-primary-background; @icon-button-active-background: @global-primary-background; @icon-button-active-color: @global-inverse-color; @icon-button-border-width: @global-border-width; @icon-button-border: @global-border; @icon-button-hover-border: @icon-button-hover-color; @icon-button-active-border: @icon-button-active-background; @inverse-icon-button-background: transparent; @inverse-icon-button-color: @inverse-global-color; @inverse-icon-button-hover-background: transparent; @inverse-icon-button-hover-color: @inverse-global-emphasis-color; @inverse-icon-button-active-background: @inverse-global-primary-background; @inverse-icon-button-active-color: @inverse-global-inverse-color; @inverse-icon-button-border: @inverse-global-border; @inverse-icon-button-hover-border: fade(@inverse-global-color, 20%); @form-range-track-height: @global-border-width; @form-range-track-background: @global-border; @form-range-track-focus-background: @global-secondary-background; @form-range-thumb-height: 11px; @form-range-thumb-background: @global-secondary-background; @form-padding-horizontal: 0; @form-padding-vertical: 7px; @form-background: transparent; @form-focus-background: transparent; @form-disabled-background: transparent; @form-danger-color: @form-color; @form-success-color: @form-color; @form-radio-background: transparent; @form-radio-checked-background: darken(@global-primary-background, 10%); @form-radio-checked-focus-background: @global-primary-background; @form-stacked-margin-bottom: 5px; @form-multi-line-padding-horizontal: 12px; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-primary-background; @form-disabled-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @global-border; @form-radio-border-width: @global-border-width; @form-radio-border: darken(@global-border, 10%); @form-radio-focus-border: @global-primary-background; @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @inverse-global-primary-background; @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: @inverse-global-primary-background; @button-small-line-height: @global-control-small-height; @button-large-font-size: 17px; @button-small-padding-horizontal: 18px; @button-default-background: transparent; @button-default-hover-color: @global-primary-background; @button-default-active-color: darken(@global-primary-background, 3%); @button-primary-hover-background: @global-secondary-background; @button-primary-hover-color: @global-background; @button-primary-active-background: @global-secondary-background; @button-secondary-color: @global-background; @button-secondary-hover-background: @global-primary-background; @button-secondary-hover-color: @global-background; @button-secondary-active-background: @global-primary-background; @button-link-hover-color: darken(@global-secondary-background, 10%); @button-text-border-width: 2px; @internal-button-text-line-right: 60%; @button-border-width: 2px; @button-default-border: @global-emphasis-color; @button-default-hover-border: @global-primary-background; @button-default-active-border: darken(@global-primary-background, 3%); @button-border-radius: 500px; @button-small-border-radius: @button-border-radius; @button-large-border-radius: @button-border-radius; @inverse-button-default-background: @inverse-global-muted-background; @inverse-button-default-color: @inverse-global-color; @inverse-button-default-hover-background: transparent; @inverse-button-default-hover-color: @inverse-global-emphasis-color; @inverse-button-default-active-background: transparent; @inverse-button-default-active-color: @inverse-global-muted-color; @inverse-button-primary-hover-background: transparent; @inverse-button-primary-hover-color: @inverse-global-emphasis-color; @inverse-button-primary-active-background: transparent; @inverse-button-primary-active-color: @inverse-global-color; @inverse-button-secondary-hover-background: transparent; @inverse-button-secondary-hover-color: @inverse-global-emphasis-color; @inverse-button-secondary-active-background: transparent; @inverse-button-secondary-active-color: @inverse-global-color; @inverse-button-link-color: @inverse-global-color; @inverse-button-link-hover-color: @inverse-global-emphasis-color; @inverse-button-default-hover-border: @inverse-global-border; @inverse-button-default-active-border: @inverse-global-primary-background; @inverse-button-primary-hover-border: @inverse-global-border; @inverse-button-primary-active-border: @inverse-global-primary-background; @inverse-button-secondary-hover-border: @inverse-global-border; @inverse-button-secondary-active-border: @inverse-global-primary-background; @progress-height: 10px; @progress-border-radius: 0px; @card-default-hover-background: darken(@global-muted-background, 2%); @card-primary-hover-background: darken(@card-primary-background, 3%); @card-title-font-weight: 300; @marker-background: @global-primary-background; @marker-hover-background: @global-secondary-background; @totop-padding: 20px; @totop-color: @global-inverse-color; @totop-hover-color: @global-inverse-color; @totop-active-color: darken(@global-inverse-color, 3%); @totop-background: @global-secondary-background; @totop-hover-background: @global-primary-background; @totop-active-background: darken(@global-primary-background, 3%); @internal-totop-mode: animate; @totop-border-radius: 500px; @alert-background: @global-background; @alert-primary-background: @global-background; @alert-success-background: @global-background; @alert-warning-background: @global-background; @alert-danger-background: @global-background; @alert-border-width: @global-border-width; @alert-border: @global-border; @alert-primary-border: @global-primary-background; @alert-success-border: @global-success-background; @alert-warning-border: @global-warning-background; @alert-danger-border: @global-danger-background; @overlay-primary-background: fade(@global-primary-background, 80%); @comment-title-font-size: @global-font-size; @comment-title-line-height: @global-line-height; @search-color: darken(@global-primary-background, 10%); @search-placeholder-color: @global-emphasis-color; @search-icon-color: @global-emphasis-color; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-navbar-padding-horizontal: 18px; @search-navbar-background: transparent; @search-medium-padding-horizontal: 0; @search-medium-font-size: @global-medium-font-size; @search-medium-icon-padding: 5px; @search-large-padding-horizontal: 0; @search-large-font-size: @global-xlarge-font-size; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-primary-background; @search-navbar-font-family: @global-secondary-font-family; @search-navbar-font-weight: @global-secondary-font-weight; @search-navbar-text-transform: @global-secondary-text-transform; @search-navbar-letter-spacing: @global-secondary-letter-spacing; @search-navbar-font-style: @global-secondary-font-style; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-secondary-background; @search-default-focus-border: @global-primary-background; @search-navbar-border-width: 2px; @search-navbar-border: @global-secondary-background; @search-navbar-focus-border: @global-primary-background; @search-medium-border-mode: -bottom; @search-medium-border-width: @global-border-width; @search-medium-border: @global-secondary-background; @search-medium-focus-border: @global-primary-background; @search-large-border-mode: -bottom; @search-large-border-width: @global-border-width; @search-large-border: @global-secondary-background; @search-large-focus-border: @global-primary-background; @search-navbar-border-radius: 500px; @inverse-search-placeholder-color: fade(@inverse-global-color, 40%); @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-navbar-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-border: fade(@inverse-global-color, 40%); @inverse-search-navbar-focus-border: @inverse-global-color; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @inverse-global-primary-background; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @inverse-global-primary-background; @accordion-title-font-family: @global-secondary-font-family; @accordion-title-font-weight: @global-secondary-font-weight; @accordion-title-text-transform: @global-secondary-text-transform; @accordion-title-letter-spacing: @global-secondary-letter-spacing; @accordion-title-font-style: @global-secondary-font-style; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 5px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 5px)'; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-item-padding-vertical: 6px; @dropdown-nav-divider-margin-horizontal: -@dropdown-padding; @dropdown-nav-font-size: @global-small-font-size; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-box-shadow: @global-small-box-shadow; @dropbar-padding-top: 0; @dropbar-padding-bottom: 20px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 6px 4px -3px rgba(41,57,69,0.1); @dropbar-bottom-box-shadow: 0 -6px 4px -3px rgba(41,57,69,0.1); @dropbar-left-box-shadow: 18px 0 10px -18px rgba(41,57,69,0.1); @dropbar-right-box-shadow: -18px 0 10px -18px rgba(41,57,69,0.1); @tooltip-background: @global-primary-background; @countdown-item-font-family: @global-secondary-font-family; @countdown-item-font-weight: @global-secondary-font-weight; @countdown-item-text-transform: @global-secondary-text-transform; @countdown-item-letter-spacing: 0; @countdown-item-font-style: @global-secondary-font-style; @nav-header-font-size: 15px; @nav-default-font-size: 18px; @nav-default-item-color: @global-secondary-background; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-default-subtitle-font-size: @global-font-size; @nav-default-sublist-item-color: fade(@global-emphasis-color, 65%); @nav-default-sublist-item-hover-color: @global-link-color; @nav-default-sublist-item-active-color: @global-link-hover-color; @nav-primary-item-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-link-color; @nav-primary-item-active-color: @global-link-hover-color; @nav-primary-sublist-item-color: @global-emphasis-color; @nav-primary-sublist-item-hover-color: @global-link-color; @nav-primary-sublist-item-active-color: @global-link-hover-color; @nav-secondary-item-hover-color: @global-link-color; @nav-secondary-item-active-color: @global-link-hover-color; @nav-secondary-subtitle-color: @global-emphasis-color; @nav-secondary-subtitle-hover-color: @global-link-color; @nav-secondary-subtitle-active-color: @global-link-hover-color; @nav-secondary-sublist-item-color: fade(@global-emphasis-color, 65%); @nav-secondary-sublist-item-hover-color: @global-link-color; @nav-secondary-sublist-item-active-color: @global-link-hover-color; @nav-medium-font-size: 47px; @nav-medium-font-size-m: 59px; @nav-medium-font-size-l: 76px; @nav-large-font-size: 52px; @nav-large-font-size-m: 66px; @nav-xlarge-font-size: 67px; @nav-xlarge-font-size-m: 90px; @nav-xlarge-font-size-l: 124px; @nav-default-font-family: @global-primary-font-family; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: fade(@global-muted-background, 40%); @navbar-gap: 25px; @navbar-nav-item-color: @global-secondary-background; @navbar-nav-item-font-size: 18px; @navbar-toggle-color: @global-primary-background; @navbar-toggle-hover-color: @global-secondary-background; @navbar-subtitle-font-size: @global-font-size; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 30px; @navbar-dropdown-dropbar-large-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-nav-item-active-color: @global-secondary-background; @navbar-dropdown-nav-header-color: @global-secondary-background; @navbar-dropdown-nav-sublist-item-active-color: @global-secondary-background; @navbar-backdrop-filter: blur(40px); @navbar-padding-top: 0px; @navbar-padding-top-m: 15px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-position-mode: top; @navbar-nav-item-line-margin-vertical: 12px; @navbar-nav-item-line-margin-horizontal: ~'calc(50% - (@{navbar-nav-item-line-height} / 2))'; @navbar-nav-item-line-height: 6px; @navbar-nav-item-line-border-radius: 500px; @navbar-nav-item-line-hover-height: @navbar-nav-item-line-height; @navbar-nav-item-line-hover-background: @global-secondary-background; @navbar-nav-item-line-onclick-height: @navbar-nav-item-line-height; @navbar-nav-item-line-onclick-background: @global-secondary-background; @navbar-nav-item-line-active-height: @navbar-nav-item-line-height; @navbar-nav-item-line-active-background: @global-secondary-background; @navbar-dropdown-nav-font-size: @global-small-font-size; @navbar-mode: border; @navbar-mode-border-vertical: all; @subnav-item-color: @global-color; @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; @subnav-divider-border-height: 1em; @subnav-pill-item-padding-vertical: 7px; @subnav-pill-item-padding-horizontal: 14px; @subnav-pill-item-hover-background: @global-secondary-background; @subnav-pill-item-hover-color: @global-inverse-color; @subnav-pill-item-onclick-background: lighten(@global-secondary-background, 90%); @subnav-item-font-size: @global-small-font-size; @inverse-subnav-item-color: @inverse-global-color; @inverse-subnav-item-hover-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-hover-color: @inverse-global-emphasis-color; @pagination-margin-horizontal: 25px; @pagination-item-color: fade(@global-color, 50%); @pagination-item-font-size: 18px; @inverse-pagination-item-hover-color: @inverse-global-emphasis-color; @inverse-pagination-item-hover-border: @inverse-global-border; @inverse-pagination-item-active-border: @inverse-global-primary-background; @tab-item-color: @global-color; @tab-item-font-size: @global-small-font-size; @tab-item-line-height: 20px; @tab-border: transparent; @tab-item-hover-border: @global-border; @inverse-tab-item-hover-color: @inverse-global-muted-color; @inverse-tab-border: transparent; @inverse-tab-item-hover-border: @inverse-global-border; @slidenav-padding-vertical: 15px; @slidenav-padding-horizontal: 15px; @slidenav-color: @global-color; @slidenav-hover-color: @global-background; @slidenav-active-color: fade(@global-background, 96%); @slidenav-large-padding-vertical: 25px; @slidenav-large-padding-horizontal: 25px; @slidenav-background: @global-background; @slidenav-hover-background: @global-primary-background; @slidenav-active-background: darken(@global-primary-background, 5%); @slidenav-margin: 5px; @dotnav-margin-horizontal: 15px; @dotnav-item-width: 9px; @dotnav-item-hover-background: @global-primary-background; @dotnav-item-onclick-background: fade(@dotnav-item-hover-background, 20%); @dotnav-item-active-background: @dotnav-item-hover-background; @inverse-dotnav-item-onclick-background: @inverse-dotnav-item-background; @inverse-dotnav-item-active-background: @inverse-dotnav-item-hover-background; @thumbnav-item-background: fade(@global-secondary-background, 4%); @thumbnav-item-border-width: 1px; @thumbnav-item-hover-border: @global-secondary-background; @thumbnav-item-active-border: @global-secondary-background; @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-hover-border: @global-inverse-color; @inverse-thumbnav-item-active-border: @global-inverse-color; @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-muted-color; @iconnav-item-active-color: @global-emphasis-color; @text-lead-font-size: @global-medium-font-size; @text-large-font-size: @global-medium-font-size; @text-lead-font-weight: 400; @internal-text-background-color-gradient: linear-gradient(135deg, lighten(@global-primary-background, 15%), @global-primary-background); @background-secondary-background: @global-muted-background; @logo-font-size: @global-medium-font-size; @logo-font-family: @global-secondary-font-family; @logo-font-weight: @global-secondary-font-weight; @logo-text-transform: @global-secondary-text-transform; @logo-letter-spacing: @global-secondary-letter-spacing; @inverse-icon-link-color: @global-background; @inverse-icon-link-hover-color: @global-primary-background; @inverse-icon-link-active-color: @global-primary-background; @inverse-marker-hover-color: @global-background; @inverse-slidenav-color: fade(@global-secondary-background, 80%); @inverse-global-muted-color: fade(@inverse-global-color, 40%); @inverse-global-border: fade(@inverse-global-color, 10%); @inverse-marker-hover-background: @global-primary-background;assets/uikit-themes/master-juno/styles/white-blue.less000064400000004545151666572370017234 0ustar00// // Global // @global-color: #274c5e; @global-emphasis-color: @global-color; @global-link-color: #6caddc; @global-muted-color: #98a6ad; @global-link-hover-color: #a5cae5; @global-primary-background: #dbe9f4; @global-secondary-background: #cee0ee; // // Alert // @alert-primary-color: #78b4e8; @alert-success-background: #d3e9e2; @alert-success-color: #7ac597; // // Button // @button-default-hover-border: @global-link-hover-color; @button-default-active-background: @global-link-hover-color; @button-primary-border: @global-link-hover-color; @button-primary-hover-border: @global-link-hover-color; @button-primary-hover-color: @global-link-hover-color; @button-secondary-border: @global-link-color; @button-secondary-hover-border: @global-link-color; @button-secondary-hover-color: @global-link-color; @internal-button-primary-gradient: linear-gradient(90deg, transparent 50%, @global-link-hover-color 50%); @internal-button-secondary-gradient: linear-gradient(90deg, transparent 50%, @global-link-color 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, @global-link-hover-color 50%, transparent 50%); @internal-button-primary-hover-gradient: linear-gradient(90deg, transparent 50%, @global-link-hover-color 50%); @internal-button-secondary-hover-gradient: linear-gradient(90deg, transparent 50%, @global-link-color 50%); // // Card // @card-badge-background: @global-link-hover-color; @card-default-hover-background: #f5f5f5; @card-primary-color-mode: dark; @card-secondary-background: #bedbf2; // // Dropdown // @dropdown-nav-item-hover-color: #6caddc; // // Form // @form-success-border: #bde7da; @form-success-color: #7ac597; // // Marker // @marker-background: @global-link-color; @marker-color: #ffffff; @marker-hover-color: #ffffff; @marker-hover-background: @global-link-color; // // Nav // @nav-default-item-hover-color: #6caddc; @nav-default-item-active-color: #6caddc; @nav-primary-item-hover-color: #6caddc; @nav-primary-item-active-color: #6caddc; @nav-secondary-subtitle-color: fade(@global-color, 50%); // // Notification // @notification-message-primary-color: #ffffff; @notification-message-primary-color-mode: light; assets/uikit-themes/master-juno/styles/white-red.less000064400000004301151666572370017045 0ustar00// // Global // @global-color: #512645; @global-emphasis-color: @global-color; @global-link-color: #df405a; @global-muted-color: #b0a4ac; @global-link-hover-color: @global-color; @global-danger-background: #c20932; @global-primary-background: @global-link-color; @global-secondary-background: @global-color; @global-success-background: #52a771; @global-warning-background: #f39965; @global-large-box-shadow: 0 14px 25px 0 rgba(108, 67, 97, 0.3); @global-medium-box-shadow: 0 5px 15px 0 rgba(108, 67, 97, 0.15); @global-small-box-shadow: 0 2px 8px 0 rgba(108, 67, 97, 0.15); @global-xlarge-box-shadow: 0 28px 50px 0 rgba(108, 67, 97, 0.3); // // Alert // @alert-primary-background: #efe6ec; @alert-primary-color: @global-color; @alert-success-background: #ecf8f0; // // Base // @base-link-hover-color: #b05396; @base-code-color: #b05396; @base-em-color: #b05396; // // Button // @button-text-hover-color: #f79cac; @button-link-hover-color: #b05396; // // Card // @card-primary-color-mode: light; @card-secondary-color-mode: light; // // Dropdown // @dropdown-nav-item-hover-color: #df405a; // // Form // @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; // // Form Range // @form-range-thumb-background: @global-primary-background; // // Marker // @marker-background: @global-color; @marker-color: #ffffff; @marker-hover-background: @global-link-color; @marker-hover-color: #ffffff; // // Nav // @nav-default-item-hover-color: #df405a; @nav-default-item-active-color: #df405a; @nav-primary-item-hover-color: #df405a; @nav-primary-item-active-color: #df405a; @nav-secondary-subtitle-color: fade(@global-color, 60%); // // Notification // @notification-message-primary-color: #ffffff; @notification-message-primary-color-mode: light; // // Section // @section-primary-color-mode: light; @section-secondary-color-mode: light; // // Tile // @tile-primary-color-mode: light; @tile-secondary-color-mode: light; // // Utility // @box-shadow-bottom-background: rgba(108, 67, 97, 0.3); @dragover-box-shadow: 0 0 20px 0 rgba(108, 67, 97, 0.15); assets/uikit-themes/master-juno/styles/white-dove.less000064400000005320151666572370017232 0ustar00// // Global // @global-color: rgba(6, 113, 165, 0.7); @global-emphasis-color: #0671a5; @global-link-color: #7fc1dc; @global-muted-color: rgba(95, 134, 152, 0.5); @global-link-hover-color: #fdd594; @global-background: #fefefe; @global-muted-background: #f8f8f7; @global-primary-background: #8fcfe9; @global-secondary-background: @global-link-hover-color; @global-border: rgba(135, 154, 164, 0.15); @global-large-box-shadow: 0 14px 25px 0 rgba(7, 27, 37, 0.16); @global-medium-box-shadow: 0 5px 15px 0 rgba(7, 27, 37, 0.08); @global-small-box-shadow: 0 2px 8px 0 rgba(7, 27, 37, 0.08); @global-xlarge-box-shadow: 0 28px 50px 0 rgba(7, 27, 37, 0.16); // // Alert // @alert-primary-background: #e6f0f4; @alert-primary-color: rgba(6, 113, 165, 0.7); @alert-success-background: #e0f2e6; // // Base // @base-code-color: #da94fd; @base-em-color: #da94fd; @base-ins-background: #ddffe9; @base-mark-background: #ddffe9; // // Button // @button-default-active-background: darken(@button-default-border, 5%); @button-default-border: #3fa7da; @button-default-hover-border: @button-default-border; @button-text-hover-color: #14779f; @internal-button-default-gradient: linear-gradient(90deg, @button-default-border 50%, @button-default-background 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, @button-default-border 50%, @button-default-hover-background 50%); // // Card // @card-default-hover-background: #f5f5f4; @card-primary-color-mode: dark; @card-secondary-color-mode: dark; @card-secondary-hover-background: #f5cb86; // // Dotnav // // @dotnav-item-background: @global-muted-background; // // Form // @form-danger-border: #e78b8b; @form-success-border: #9dccae; // // Inverse // @inverse-global-color: rgba(255, 255, 255, 0.8); // // Marker // @marker-background: @global-primary-background; @marker-hover-background: @global-link-hover-color; // // Nav // @nav-secondary-subtitle-color: fade(@global-color, 50%); // // Notification // @notification-message-primary-color: #ffffff; @notification-message-primary-color-mode: light; // // Offcanvas // @offcanvas-overlay-background: rgba(73, 120, 142, 0.1); // // Section // @section-primary-color-mode: dark; @section-secondary-color-mode: dark; // // Text // @text-primary-color: @global-primary-background; // // Tile // @tile-primary-color-mode: dark; @tile-secondary-background: @global-link-hover-color; @tile-secondary-color-mode: dark; // // Utility // @box-shadow-bottom-background: rgba(21, 48, 63, 0.3); @dragover-box-shadow: 0 0 20px 0 rgba(7, 27, 37, 0.1); assets/uikit-themes/master-juno/styles/white-green.less000064400000001275151666572370017402 0ustar00// // Global // @global-color: #808682; @global-emphasis-color: #3f5347; @global-link-color: #8fbd8f; @global-muted-color: #b3b9ae; @global-link-hover-color: #aac986; @global-danger-background: #ec93a0; @global-muted-background: #f8faf3; @global-primary-background: #f5f6e0; @global-secondary-background: #dff6e2; @global-success-background: #9dd9c5; @global-warning-background: #f7c283; // // Form Range // @form-range-thumb-background: @global-link-color; // // Marker // @marker-background: @global-link-color; // // Nav // @nav-secondary-subtitle-color: @global-color; // // Text // @text-background-color: @global-emphasis-color; assets/uikit-themes/master-juno/styles/black-blue.less000064400000023311151666572370017160 0ustar00// // Global // @global-color: rgba(255, 255, 255, 0.6); @global-emphasis-color: #ffffff; @global-inverse-color: @global-background; @global-link-color: #599dff; @global-muted-color: rgba(255, 255, 255, 0.4); @global-link-hover-color: lighten(@global-link-color, 15%); @global-background: #000000; @global-danger-background: #ff4d4d; @global-muted-background: #212121; @global-primary-background: #0062ef; @global-secondary-background: #0151c3; @global-success-background: #42d778; @global-warning-background: #ff9d51; @global-border: rgba(255, 255, 255, 0.1); // // Theme // @theme-page-container-color-mode: light; @theme-toolbar-background: @global-background; @theme-toolbar-color-mode: light; @theme-box-decoration-default-background: @global-muted-background; @inverse-theme-box-decoration-default-background: fadein(@inverse-global-muted-background, 10%); // // Alert // @alert-primary-color: @global-emphasis-color; @alert-success-background: @global-muted-background; @alert-warning-background: @global-muted-background; @alert-danger-background: @global-muted-background; // // Badge // @badge-background: @global-primary-background; @badge-color: @global-emphasis-color; // // Base // @base-code-color: #cd957c; @base-ins-background: fade(@global-link-color, 15%); @base-ins-color: @global-link-color; @base-mark-background: fade(@global-link-color, 15%); @base-mark-color: @global-link-color; @base-selection-color: @global-emphasis-color; // // Button // @button-default-hover-border: @global-primary-background; @button-default-hover-color: @global-emphasis-color; @button-default-active-background: rgba(64, 142, 255, 0); @button-default-active-border: darken(@global-primary-background, 5%); @button-default-active-color: darken(@global-primary-background, 5%); @button-primary-border: @global-primary-background; @button-primary-color: @global-emphasis-color; @button-primary-hover-border: @global-primary-background; @button-primary-hover-color: @global-primary-background; @button-primary-active-border: darken(@global-primary-background, 5%); @button-primary-active-color: darken(@global-primary-background, 5%); @button-secondary-border: @global-secondary-background; @button-secondary-color: @global-emphasis-color; @button-secondary-hover-border: @global-secondary-background; @button-secondary-active-border: darken(@global-primary-background, 5%); @button-secondary-active-color: darken(@global-primary-background, 5%); @button-danger-color: @global-emphasis-color; @internal-button-default-gradient: linear-gradient(90deg, @global-primary-background 50%, transparent 50%); @internal-button-primary-gradient: linear-gradient(90deg, transparent 50%, @global-primary-background 50%); @internal-button-secondary-gradient: linear-gradient(90deg, transparent 50%, @global-secondary-background 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, @global-primary-background 50%, transparent 50%); @internal-button-primary-hover-gradient: linear-gradient(90deg, transparent 50%, @global-primary-background 50%); @internal-button-secondary-hover-gradient: linear-gradient(90deg, transparent 50%, @global-secondary-background 50%); @inverse-button-default-hover-color: fade(@inverse-global-inverse-color, 70%); @inverse-button-default-active-background: fade(@inverse-global-color, 10%); @inverse-button-default-active-color: fade(@global-inverse-color, 50%); // // Card // @card-badge-background: @global-primary-background; @card-badge-color: @global-emphasis-color; @card-default-hover-background: lighten(@card-default-background, 3%); @card-default-color-mode: light; @card-primary-color-mode: light; @card-primary-hover-background: darken(@card-primary-background, 4%); @card-secondary-color-mode: light; @card-secondary-hover-background: darken(@card-secondary-background, 4%); // // Dotnav // @dotnav-item-background: fade(@global-emphasis-color, 50%); @dotnav-item-hover-background: #fff; @dotnav-item-active-background: #fff; @dotnav-item-onclick-background: #fff; // // Dropbar // @dropbar-color-mode: light; // // Dropdown // @dropdown-color-mode: light; // // Form // @form-border: rgba(255, 255, 255, 0.2); @form-focus-border: rgba(255, 255, 255, 0.35); @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-radio-background: @global-muted-background; @form-radio-focus-background: lighten(@form-radio-background, 5%); @form-radio-checked-background: @global-primary-background; @form-radio-checked-focus-background: @global-link-color; @form-radio-background: rgba(255, 255, 255, 0.1); @form-radio-checked-focus-background: @global-primary-background; @form-radio-focus-background: rgba(255, 255, 255, 0.15); @form-radio-checked-background: @global-primary-background; @form-radio-disabled-background: rgba(255, 255, 255, 0.3); @inverse-form-radio-checked-background: @global-primary-background; @inverse-form-radio-checked-icon-color: @global-emphasis-color; @inverse-form-radio-checked-focus-background: @global-link-color; // // Form Range // @form-range-thumb-background: @global-primary-background; @form-range-track-background: @global-border; @form-range-track-focus-background: lighten(@global-border, 25%); // // Icon // @icon-link-color: @global-color; @icon-button-background: @global-primary-background; @icon-button-color: @global-emphasis-color; @icon-button-hover-background: darken(@icon-button-background, 5%); @icon-button-hover-color: rgba(255, 255, 255, 0.8); @icon-button-active-background: lighten(@icon-button-background, 5%); @icon-button-active-color: @global-emphasis-color; @inverse-icon-button-background: @global-primary-background; @inverse-icon-button-color: @global-emphasis-color; @inverse-icon-button-hover-background: darken(@inverse-icon-button-background, 5%); @inverse-icon-button-hover-color: rgba(255, 255, 255, 0.8); @inverse-icon-button-active-background: lighten(@inverse-icon-button-background, 5%); @inverse-icon-button-active-color: @global-emphasis-color; // // Inverse // @inverse-global-color-mode: dark; // // Label // @label-border: @global-link-color; @label-color: @global-link-color; // // Nav // @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-sublist-item-hover-color: @global-emphasis-color; // // Navbar // @navbar-background: @global-muted-background; @navbar-color-mode: light; @navbar-nav-item-color: rgba(255, 255, 255, 0.6); @navbar-nav-item-active-color: @global-emphasis-color; @navbar-toggle-color: @global-color; @navbar-toggle-hover-color: @global-link-color; @navbar-dropdown-color-mode: light; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; // // Notification // @notification-message-primary-color: #ffffff; @notification-message-primary-color-mode: light; @notification-message-success-color: #ffffff; @notification-message-success-color-mode: light; @notification-message-warning-color: #ffffff; @notification-message-warning-color-mode: light; @notification-message-danger-color: #ffffff; // // Offcanvas // @offcanvas-bar-background: @global-primary-background; @offcanvas-bar-color-mode: light; @offcanvas-overlay-background: rgba(0, 0, 0, 0.5); // // Overlay // @overlay-default-background: fade(@global-muted-background, 80%); @overlay-default-color-mode: light; @overlay-primary-background: fade(@global-primary-background, 80%); // // Search // @search-default-border: rgba(255, 255, 255, 0.2); @search-default-focus-border: rgba(255, 255, 255, 0.35); @search-navbar-background: darken(@global-muted-background, 2%); @search-medium-border: rgba(255, 255, 255, 0.2); @search-medium-focus-border: rgba(255, 255, 255, 0.35); @search-large-border: rgba(255, 255, 255, 0.2); @search-large-focus-border: rgba(255, 255, 255, 0.35); @search-toggle-color: @global-color; @search-toggle-hover-color: @global-link-color; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: light; @section-secondary-color-mode: light; // // Subnav // @subnav-pill-item-active-background: @global-primary-background; @subnav-pill-item-active-color: @global-emphasis-color; // // Table // @table-row-active-background: rgba(255, 255, 255, 0.2); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: light; @tile-secondary-color-mode: light; // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 10%); assets/uikit-themes/master-juno/_import.less000064400000046544151666572370015322 0ustar00@internal-fonts: 'Kanit:200|Nunito+Sans:300'; @global-font-family: 'Nunito Sans'; @global-font-size: 17px; @global-line-height: 1.58; // 27px @global-2xlarge-font-size: 46px; @global-xlarge-font-size: 38px; @global-large-font-size: 32px; @global-medium-font-size: 26px; @global-small-font-size: 14px; @global-primary-font-family: inherit; @global-primary-font-weight: 300; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: 300; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #5f5f63; @global-emphasis-color: #222328; @global-muted-color: #a7a7a7; @global-link-color: #e789ac; @global-link-hover-color: #7fcAc5; @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #fafafa; @global-primary-background: #f7eff2; @global-secondary-background: #e3f3f2; @global-success-background: #9dccae; @global-warning-background: #f7b683; @global-danger-background: #e78b8b; @global-border-width: 2px; @global-border: #eee; @global-border-radius: 0; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 30px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 65px; @global-xlarge-margin: 130px; @global-gutter: 25px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 65px; @global-control-height: 45px; @global-control-small-height: 30px; @global-control-large-height: 60px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-code-font-size: 13px; @base-code-color: @global-link-hover-color; @base-em-color: @global-link-hover-color; @base-h2-font-size: @global-xlarge-font-size * 0.9; @base-h5-font-size: 20px; @base-h6-font-size: @global-font-size; @base-hr-border-width: 1px; @base-blockquote-font-size: 20px; @base-blockquote-footer-margin-top: @global-medium-margin; @base-blockquote-footer-font-size: @global-font-size; @base-selection-background: @global-link-color; @base-code-padding-horizontal: 4px; @base-code-padding-vertical: 1px; @base-pre-padding: @global-small-margin; @base-pre-background: @global-muted-background; @base-blockquote-footer-em-dash: false; @base-blockquote-color: @global-color; @base-blockquote-footer-color: @global-emphasis-color; @base-code-border-width: 1px; @base-code-border: @global-border; @base-code-border-radius: 2px; @inverse-base-link-hover-color: @inverse-global-color; @link-heading-hover-color: @global-link-color; @heading-small-font-size-m: 56px; @heading-medium-font-size-l: 72px; @heading-divider-border-width: ~'calc(1px + 0.05em)'; @heading-bullet-border-width: ~'calc(2px + 0.05em)'; @heading-line-border-width: ~'calc(1px + 0.06em)'; @heading-medium-font-family: Kanit; @heading-medium-font-weight: 200; @heading-medium-text-transform: uppercase; @heading-large-font-family: Kanit; @heading-large-font-weight: 200; @heading-large-text-transform: uppercase; @heading-xlarge-font-family: Kanit; @heading-xlarge-font-weight: 200; @heading-xlarge-text-transform: uppercase; @heading-2xlarge-font-family: Kanit; @heading-2xlarge-font-weight: 200; @heading-2xlarge-text-transform: uppercase; @heading-3xlarge-font-family: Kanit; @heading-3xlarge-font-weight: 200; @heading-3xlarge-text-transform: uppercase; @divider-icon-line-border-width: 1px; @list-bullet-icon-color: @global-link-color; @list-divider-border-width: 1px; @description-list-divider-term-border-width: 1px; @description-list-term-font-weight: @global-primary-font-weight; @table-divider-border-width: 1px; @icon-link-color: @global-emphasis-color; @icon-link-hover-color: @global-link-color; @icon-link-active-color: @global-link-hover-color; @icon-button-background: darken(@global-muted-background, 3%); @icon-button-hover-background: @global-link-color; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: @global-link-hover-color; @icon-button-active-color: @global-inverse-color; @inverse-icon-link-color: @inverse-global-color; @inverse-icon-link-hover-color: @inverse-global-emphasis-color; @inverse-icon-link-active-color: @inverse-global-emphasis-color; @inverse-icon-button-hover-background: @inverse-global-primary-background; @inverse-icon-button-hover-color: @global-emphasis-color; @inverse-icon-button-active-background: fade(@inverse-global-primary-background, 80%); @inverse-icon-button-active-color: @global-emphasis-color; @form-range-track-height: 2px; @form-range-thumb-height: 12px; @form-range-thumb-background: @global-link-hover-color; @form-background: @global-background; @form-focus-background: @form-background; @form-large-font-size: @global-font-size; @form-radio-checked-background: @global-link-hover-color; @form-radio-checked-focus-background: @global-link-hover-color; @form-border-width: @global-border-width; @form-border: #f5f5f5; @form-focus-border: darken(@form-border, 5%); @form-danger-border: #ffecec; @form-success-border: @global-secondary-background; @form-blank-focus-border: darken(@form-border, 5%); @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-border: fadeout(@inverse-global-border, 10%); @inverse-form-focus-border: @inverse-global-border; @button-large-font-size: @global-font-size; @button-default-background: transparent; @button-default-hover-background: transparent; @button-default-hover-color: @global-inverse-color; @button-default-active-background: darken(@global-link-color, 5%); @button-default-active-color: @global-inverse-color; @button-primary-background: transparent; @button-primary-hover-background: transparent; @button-primary-hover-color: @global-link-color; @button-primary-active-background: transparent; @button-primary-active-color: darken(@button-primary-hover-color, 10%); @button-secondary-background: transparent; @button-secondary-hover-background: transparent; @button-secondary-hover-color: @global-link-hover-color; @button-secondary-active-background: transparent; @button-secondary-active-color: darken(@button-secondary-hover-color, 20%); @button-danger-background: transparent; @button-danger-hover-background: transparent; @button-danger-hover-color: @global-danger-background; @button-danger-active-background: transparent; @button-danger-active-color: darken(@button-danger-hover-color, 15%); @button-text-color: @global-color; @button-text-hover-color: @global-link-color; @button-link-hover-color: @global-link-hover-color; @button-transition-duration: 0.17s; @button-text-mode: ~''; @button-text-icon-mode: arrow; @button-border-width: @global-border-width; @button-default-border: @global-emphasis-color; @button-default-hover-border: @global-link-color; @button-primary-border: @global-link-color; @button-primary-hover-border: @global-link-color; @button-primary-active-border: darken(@button-primary-hover-border, 10%); @button-secondary-border: @global-link-hover-color; @button-secondary-hover-border: @global-link-hover-color; @button-secondary-active-border: darken(@button-secondary-hover-border, 20%); @button-danger-border: @global-danger-background; @button-danger-hover-border: @global-danger-background; @button-danger-active-border: darken(@button-danger-hover-border, 15%); @button-background-size: 200%; @button-background-position-x: 100%; @internal-button-default-gradient: linear-gradient(90deg, @global-link-color 50%, @button-default-background 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, @global-link-color 50%, @button-default-hover-background 50%); @internal-button-primary-gradient: linear-gradient(90deg, @button-primary-hover-background 50%, @global-link-color 50%); @internal-button-primary-hover-gradient: linear-gradient(90deg, @button-primary-hover-background 50%, @global-link-color 50%); @internal-button-secondary-gradient: linear-gradient(90deg, @button-secondary-hover-background 50%, @global-link-hover-color 50%); @internal-button-secondary-hover-gradient: linear-gradient(90deg, @button-secondary-hover-background 50%, @global-link-hover-color 50%); @internal-button-danger-gradient: linear-gradient(90deg, @button-danger-hover-background 50%, @global-danger-background 50%); @internal-button-danger-hover-gradient: linear-gradient(90deg, @button-danger-hover-background 50%, @global-danger-background 50%); @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-emphasis-color; @inverse-button-default-hover-background: @inverse-global-primary-background; @inverse-button-default-hover-color: darken(@inverse-global-inverse-color, 20%); @inverse-button-default-active-background: @inverse-global-color; @inverse-button-default-active-color: darken(@inverse-global-inverse-color, 50%); @inverse-button-primary-color: @global-emphasis-color; @inverse-button-primary-hover-background: transparent; @inverse-button-primary-hover-color: @inverse-global-primary-background; @inverse-button-primary-active-background: transparent; @inverse-button-primary-active-color: @inverse-global-color; @inverse-button-secondary-color: @global-emphasis-color; @inverse-button-secondary-hover-background: transparent; @inverse-button-secondary-hover-color: @inverse-global-primary-background; @inverse-button-secondary-active-background: transparent; @inverse-button-secondary-active-color: @inverse-global-color; @inverse-button-default-border: @inverse-global-primary-background; @inverse-button-primary-hover-border: @inverse-global-primary-background; @inverse-button-primary-active-border: @inverse-global-color; @inverse-button-secondary-hover-border: @inverse-global-primary-background; @inverse-button-secondary-active-border: @inverse-global-color; @progress-bar-background: @global-link-color; @section-primary-color-mode: dark; @section-secondary-color-mode: dark; @tile-primary-color-mode: dark; @tile-secondary-color-mode: dark; @card-badge-height: 27px; @card-badge-padding-horizontal: 12px; @card-badge-background: @global-link-color; @card-default-hover-background: @card-default-background; @card-primary-color: @global-emphasis-color; @card-primary-hover-background: darken(@card-primary-background, 2%); @card-primary-color-mode: dark; @card-secondary-color: @global-emphasis-color; @card-secondary-hover-background: darken(@card-secondary-background, 2%); @card-secondary-color-mode: dark; @close-color: @global-link-hover-color; @close-hover-color: @global-link-color; @marker-background: #e789ac; @marker-color: #f7eff2; @marker-hover-color: #f7eff2; @marker-hover-background: darken(@marker-background, 4%); @totop-color: @global-link-color; @totop-hover-color: @global-link-hover-color; @alert-primary-background: @global-primary-background; @alert-primary-color: @global-link-color; @alert-success-background: @global-secondary-background; @alert-success-color: #3bac64; @alert-warning-background: #fff5ee; @alert-warning-color: #f58933; @alert-danger-background: #ffecec; @alert-danger-color: #e51f1f; @badge-background: @global-link-color; @badge-font-size: 12px; @label-padding-horizontal: 8px; @label-background: transparent; @label-color: darken(@global-link-color, 10%); @label-success-background: transparent; @label-success-color: darken(@global-success-background, 15%); @label-warning-background: transparent; @label-warning-color: darken(@global-warning-background, 10%); @label-danger-background: transparent; @label-danger-color: darken(@global-danger-background, 15%); @label-border-width: @global-border-width; @label-border: @global-link-color; @label-success-border: @global-success-background; @label-warning-border: @global-warning-background; @label-danger-border: @global-danger-background; @overlay-primary-background: fade(@global-link-color, 80%); @article-meta-font-size: @global-font-size; @article-meta-link-color: @global-link-color; @article-meta-link-hover-color: @global-link-hover-color; @comment-title-font-size: @global-font-size; @search-default-background: transparent; @search-default-focus-background: transparent; @search-navbar-padding-horizontal: 15px; @search-navbar-background: @global-muted-background; @search-navbar-focus-background: darken(@global-muted-background, 3%); @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-link-color; @search-default-border-width: @global-border-width; @search-default-border: #f5f5f5; @search-default-focus-border: darken(@search-default-border, 5%); @search-medium-border-width: @global-border-width; @search-medium-border: #f5f5f5; @search-medium-focus-border: darken(@search-default-border, 5%); @search-large-border-width: @global-border-width; @search-large-border: #f5f5f5; @search-large-focus-border: darken(@search-default-border, 5%); @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-default-border: fadeout(@inverse-global-border, 10%); @inverse-search-default-focus-border: @inverse-global-border; @inverse-search-medium-border: fadeout(@inverse-global-border, 10%); @inverse-search-medium-focus-border: @inverse-global-border; @inverse-search-large-border: fadeout(@inverse-global-border, 10%); @inverse-search-large-focus-border: @inverse-global-border; @accordion-title-font-size: 20px; @accordion-title-hover-color: @global-link-color; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-padding: @global-gutter; @dropdown-nav-subtitle-font-size: 13px; @dropdown-nav-subtitle-color: @global-muted-color; @dropbar-padding-top: 25px; @modal-header-border-width: 1px; @modal-footer-border-width: 1px; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-overlay-background: fade(@global-emphasis-color, 20%); @leader-color: #ddd; @notification-message-primary-color: @global-color; @notification-message-primary-color-mode: dark; @tooltip-background: @global-color; @nav-divider-margin-vertical: 15px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-muted-color; @nav-default-subtitle-font-size: 13px; @nav-primary-font-size: @global-medium-font-size; @nav-primary-item-color: @global-color; @nav-primary-item-hover-color: @global-muted-color; @nav-primary-subtitle-font-size: 15px; @nav-primary-sublist-font-size: @global-font-size; @nav-secondary-subtitle-color: fade(@global-color, 80%); @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-sublist-font-size: @global-font-size; @nav-secondary-sublist-item-color: @global-color; @nav-secondary-sublist-item-hover-color: @global-link-color; @nav-secondary-sublist-item-active-color: @nav-secondary-sublist-item-hover-color; @nav-medium-font-size-l: 72px; @nav-dividers-margin-top: 7px; @nav-dividers-border-width: 1px; @nav-secondary-margin-top: 15px; @nav-default-subtitle-color: @global-muted-color; @nav-primary-subtitle-color: @global-muted-color; @nav-secondary-subtitle-line-height: 1.5; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-nav-item-height: 100px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-nav-item-onclick-color: @global-link-color; @navbar-nav-item-active-color: @global-link-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-link-color; @navbar-subtitle-font-size: 13px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 25px; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-active-color: @global-color; @navbar-dropdown-nav-subtitle-font-size: 13px; @navbar-nav-item-padding-horizontal-m: 0; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: 30px; @navbar-nav-item-line-transition-duration: 0.3s; @navbar-nav-item-line-hover-height: 2px; @navbar-nav-item-line-hover-background: @global-link-color; @navbar-nav-item-line-onclick-height: @navbar-nav-item-line-hover-height; @navbar-nav-item-line-onclick-background: @global-link-color; @navbar-nav-item-line-active-mode: false; @navbar-nav-item-line-active-height: 0; @navbar-nav-item-line-active-background: transparent; @navbar-primary-gap-m: 40px; @navbar-primary-nav-gap-m: 40px; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-line-height: 1.5; @navbar-primary-nav-item-font-size: 22px; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @inverse-navbar-nav-item-color: @inverse-global-color; @inverse-navbar-nav-item-hover-color: @inverse-global-emphasis-color; @inverse-navbar-toggle-color: @inverse-global-color; @inverse-navbar-toggle-hover-color: @inverse-global-emphasis-color; @subnav-divider-border-width: 1px; @subnav-pill-item-active-background: @global-link-color; @breadcrumb-item-color: @global-color; @breadcrumb-item-hover-color: @global-link-color; @breadcrumb-item-active-color: @global-emphasis-color; @breadcrumb-divider: "–"; @breadcrumb-divider-margin-horizontal: @global-small-margin; @breadcrumb-item-disabled-color: @global-muted-color; @inverse-breadcrumb-item-hover-color: @global-link-color; @inverse-breadcrumb-item-active-color: @global-inverse-color; @pagination-margin-horizontal: 16px; @pagination-item-padding-vertical: 0; @pagination-item-padding-horizontal: 2px; @pagination-item-active-color: @global-emphasis-color; @pagination-item-height: 29px; @pagination-item-border-mode: -bottom; @pagination-item-border-width: @global-border-width; @pagination-item-hover-border: @global-link-color; @inverse-pagination-item-active-color: @inverse-global-emphasis-color; @inverse-pagination-item-hover-border: @inverse-global-primary-background; @tab-border-width: 0; @tab-border: transparent; @tab-item-hover-border: @global-border; @tab-item-active-border: @global-link-color; @inverse-tab-item-hover-border: @inverse-global-muted-background; @slidenav-padding-vertical: 10px; @slidenav-padding-horizontal: 13px; @slidenav-color: fade(@global-color, 90%); @slidenav-active-color: @global-color; @slidenav-large-padding-vertical: 16px; @slidenav-margin: 5px; @slidenav-border-width: 1px; @slidenav-border: fade(@global-color, 60%); @slidenav-hover-border: @global-color; @slidenav-active-border: @global-color; @inverse-slidenav-border: fade(@global-inverse-color, 50%); @inverse-slidenav-hover-border: @global-inverse-color; @inverse-slidenav-active-border: @global-inverse-color; @dotnav-item-hover-background: @global-link-color; @dotnav-item-onclick-background: darken(@global-link-color, 10%); @dotnav-item-active-background: @global-link-color; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-link-color; @iconnav-item-active-color: @global-link-color; @text-lead-font-size: 20px; @text-lead-line-height: 1.4; @text-meta-line-height: 1.2; @text-large-font-size: 20px; @text-large-line-height: 1.4; @text-primary-color: @global-link-color; @text-secondary-color: @global-link-hover-color; @text-background-color: @global-link-color; @box-shadow-bottom-background: #716d87; @logo-font-size: 30px; @logo-text-transform: uppercase;assets/uikit-themes/master-juno/icons/slidenav-previous.svg000064400000000255151666572370020261 0ustar00<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="6,1 1,6 6,11" /> </svg> assets/uikit-themes/master-juno/icons/slidenav-next.svg000064400000000255151666572370017363 0ustar00<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="1,11 6,6 1,1" /> </svg> assets/uikit-themes/master-juno/icons/slidenav-previous-large.svg000064400000000257151666572370021353 0ustar00<svg width="11" height="18" viewBox="0 0 11 18" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="10,1 2,9 10,17" /> </svg> assets/uikit-themes/master-juno/icons/slidenav-next-large.svg000064400000000255151666572370020453 0ustar00<svg width="11" height="18" viewBox="0 0 11 18" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="1,17 9,9 1,4" /> </svg> assets/uikit-themes/master-juno/icons/nav-parent-icon-large.svg000064400000000304151666572370020666 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.5" points="1.195 4.597 8 11.403 14.805 4.597" /> </svg> assets/uikit-themes/master-yard/images/button-text-arrow.svg000064400000000401151666572370020336 0ustar00<svg width="22" height="14" viewBox="0 0 22 14" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M14.4 1l5.8 5.9-5.8 6" /> <path fill="#000" fill-rule="evenodd" d="M0 6h18.8v2H0z" clip-rule="evenodd" /> </svg> assets/uikit-themes/master-yard/images/divider-icon.svg000064400000000231151666572370017266 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <rect width="7" height="7" fill="#000" x="3.5" y="3.5" /> </svg> assets/uikit-themes/master-yard/icons/divider-icon.svg000064400000000413151666572370017136 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.1" x1="0" y1="0" x2="10" y2="10" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="10" y1="0" x2="0" y2="10" /> </svg> assets/uikit-themes/master-yard/icons/slidenav-previous.svg000064400000000402151666572370020237 0ustar00<svg width="20" height="14" viewBox="0 0 20 14" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M7.6 1L1.8 6.9l5.8 6" /> <path fill="#000" fill-rule="evenodd" d="M3.2 6h16v2h-16z" clip-rule="evenodd" /> </svg> assets/uikit-themes/master-yard/icons/close-large.svg000064400000000413151666572370016757 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.8" x1="1" y1="1" x2="19" y2="19" /> <line fill="none" stroke="#000" stroke-width="1.8" x1="19" y1="1" x2="1" y2="19" /> </svg> assets/uikit-themes/master-yard/icons/totop.svg000064400000000260151666572370015727 0ustar00<svg width="16" height="18" viewBox="0 0 16 18" xmlns="http://www.w3.org/2000/svg"> <polygon points="15.7,7.9 14.3,9.3 9,4 9,17.5 7,17.5 7,4 1.7,9.3 0.3,7.9 8,0" /> </svg> assets/uikit-themes/master-yard/icons/marker.svg000064400000000324151666572370016044 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="15,7.3 8.7,7.3 8.7,1 7.3,1 7.3,7.3 1,7.3 1,8.7 7.3,8.7 7.3,15 8.7,15 8.7,8.7 15,8.7" /> </svg> assets/uikit-themes/master-yard/icons/slidenav-next-large.svg000064400000000363151666572370020437 0ustar00<svg width="19" height="16" viewBox="0 0 19 16" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M10.2 1.5l7 6.5-7 6.5" /> <path fill-rule="evenodd" d="M0 7h16v2H0z" clip-rule="evenodd" /> </svg> assets/uikit-themes/master-yard/icons/close-icon.svg000064400000000413151666572370016615 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.8" x1="1" y1="1" x2="13" y2="13" /> <line fill="none" stroke="#000" stroke-width="1.8" x1="13" y1="1" x2="1" y2="13" /> </svg> assets/uikit-themes/master-yard/icons/slidenav-previous-large.svg000064400000000362151666572370021334 0ustar00<svg width="19" height="16" viewBox="0 0 19 16" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M8.8 1.5L1.8 8l7 6.5" /> <path fill-rule="evenodd" d="M3 7h16v2H3z" clip-rule="evenodd" /> </svg> assets/uikit-themes/master-yard/icons/nav-parent-icon-large.svg000064400000000260151666572370020653 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-yard/icons/slidenav-next.svg000064400000000401151666572370017340 0ustar00<svg width="20" height="14" viewBox="0 0 20 14" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M12.4 1l5.8 5.9-5.8 6" /> <path fill="#000" fill-rule="evenodd" d="M.8 6h16v2H.8z" clip-rule="evenodd" /> </svg> assets/uikit-themes/master-yard/styles/dark-orange.less000064400000013003151666572370017332 0ustar00// // Global // @global-color: rgba(255, 255, 255, 0.6); @global-emphasis-color: #ffffff; @global-inverse-color: #1e212c; @global-link-color: #ffa467; @global-muted-color: rgba(255, 255, 255, 0.8); @global-link-hover-color: #ffffff; @global-background: #1e212c; @global-danger-background: #ff6a5d; @global-muted-background: #222734; @global-primary-background: #ffb676; @global-secondary-background: #ffa467; @global-success-background: #64d94f; @global-warning-background: #fc9a64; @global-border: rgba(255, 255, 255, 0.12); // // Theme // @theme-page-container-color-mode: light; @theme-toolbar-background: @global-muted-background; // // Badge // @badge-color: @global-inverse-color; @inverse-badge-background: @global-inverse-color; // // Button // @button-default-background: #2c3143; @button-default-color: @global-emphasis-color; @button-default-hover-background: #2c3143; @button-default-hover-color: @global-emphasis-color; @button-primary-color: @global-inverse-color; @button-primary-hover-color: @button-primary-color; @button-primary-active-color: @button-primary-color; @button-secondary-hover-color: @global-inverse-color; @button-secondary-active-color: @button-primary-color; @internal-button-default-gradient: linear-gradient(90deg, #3e4357 50%, #2c3143 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, #2c3143 50%, #353a4d 50%); @internal-button-text-arrow-color: @global-emphasis-color; @internal-button-text-arrow-hover-color: @global-emphasis-color; @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-active-color: @global-inverse-color; @inverse-button-secondary-hover-color: @global-inverse-color; @inverse-button-secondary-active-color: @global-inverse-color; // // Card // @card-badge-color: @global-inverse-color; @inverse-card-badge-background: @global-inverse-color; @inverse-card-badge-color: @inverse-global-inverse-color; @card-default-color-mode: light; @card-primary-color-mode: light; @card-secondary-color: @global-emphasis-color; @card-secondary-color-mode: dark; // // Dotnav // @dotnav-item-background: rgba(255, 255, 255, 0.4); // // Dropbar // @dropbar-color-mode: light; @dropbar-background: @global-muted-background; // // Dropdown // @dropdown-color-mode: light; @dropdown-background: @global-muted-background; @dropdown-nav-item-color: @global-muted-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-header-color: @global-muted-color; @dropdown-nav-sublist-item-color: @global-muted-color; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Form // @form-border: rgba(255, 255, 255, 0.3); // // Form Range // @form-range-track-background: @global-border; // // Inverse // @inverse-global-color-mode: dark; @inverse-label-background: @global-inverse-color; @inverse-global-inverse-color: @global-emphasis-color; @inverse-marker-hover-background: fade(@global-background, 80%); // // List // @list-divider-border: rgba(255, 255, 255, 0.2); // // Nav // @nav-secondary-item-hover-background: lighten(@global-muted-background, 5%); // // Navbar // @navbar-color-mode: light; @navbar-nav-item-line-hover-background: @global-muted-background; @navbar-nav-item-line-onclick-background: @global-muted-background; @navbar-nav-item-line-active-background: @global-muted-background; @navbar-dropdown-background: @global-muted-background; @navbar-dropdown-color: @global-color; @navbar-dropdown-color-mode: light; @navbar-dropdown-nav-item-color: @global-muted-color; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-header-color: @global-muted-color; @navbar-dropdown-nav-sublist-item-color: @global-muted-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Overlay // @overlay-default-color-mode: light; @internal-overlay-default-gradient: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)); // // Offcanvas // @offcanvas-bar-color-mode: light; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; // // Slidenav // @slidenav-color: fade(@global-emphasis-color, 70%); @slidenav-hover-color: fade(@global-emphasis-color, 95%); @slidenav-active-color: fade(@global-emphasis-color, 70%); @slidenav-background: @global-secondary-background; @slidenav-hover-background: fade(@slidenav-background, 70%); // // Subnav // @subnav-item-color: @global-muted-color; @subnav-item-active-color: @global-primary-background; // // Text // @text-background-color: @global-muted-color; @text-meta-color: rgba(255, 255, 255, 0.7); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 10%); assets/uikit-themes/master-yard/styles/white-orange.less000064400000005036151666572370017540 0ustar00// // Global // @global-color: #666c78; @global-emphasis-color: #233a64; @global-link-color: #ffb348; @global-muted-color: #bfbfbf; @global-link-hover-color: #233a64; @global-danger-background: #ff4000; @global-muted-background: #f9f9f9; @global-primary-background: #ff9500; @global-secondary-background: #233a64; @global-success-background: #46d119; @global-warning-background: #ff7700; @global-border: #ededed; // // Accordion // @accordion-title-hover-color: @global-primary-background; // // Badge // @badge-color: @global-inverse-color; @inverse-badge-color: @global-inverse-color; // // Button // @button-default-hover-background: #284373; @button-default-active-color: rgba(255, 255, 255, 0.8); @button-primary-color: @global-inverse-color; @button-primary-active-color: rgba(255, 255, 255, 0.8); @button-secondary-hover-color: @global-inverse-color; @button-link-color: @global-emphasis-color; @internal-button-default-gradient: linear-gradient(90deg, #39527e 50%, #284373 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, #39527e 50%, #284373 50%); @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-active-color: @global-inverse-color; @inverse-button-secondary-hover-color: @global-inverse-color; @inverse-button-secondary-active-color: @global-inverse-color; // // Card // @card-badge-color: @global-inverse-color; @inverse-card-badge-color: @global-inverse-color; // // Dropdown // @dropdown-color: rgba(255, 255, 255, 0.7); @dropdown-nav-item-color: rgba(255, 255, 255, 0.7); @dropdown-nav-header-color: rgba(255, 255, 255, 0.7); @dropdown-nav-sublist-item-color: rgba(255, 255, 255, 0.7); // // Label // @inverse-label-color: @global-inverse-color; // // Marker // @marker-hover-background: @global-primary-background; @marker-hover-color: @global-inverse-color; // // Navbar // @navbar-dropdown-color: rgba(255, 255, 255, 0.7); @navbar-dropdown-nav-item-color: rgba(255, 255, 255, 0.7); @navbar-dropdown-nav-header-color: rgba(255, 255, 255, 0.7); @navbar-dropdown-nav-sublist-item-color: rgba(255, 255, 255, 0.7); // // Subnav // @inverse-subnav-pill-item-active-color: @global-inverse-color; // // Section // @section-primary-color-mode: light; @section-secondary-color-mode: light; // // Text // @text-primary-color: @global-primary-background; assets/uikit-themes/master-yard/styles/white-blue.less000064400000003225151666572370017212 0ustar00// // Global // @global-color: #272424; @global-emphasis-color: #272424; @global-link-color: #496df1; @global-link-hover-color: @global-color; @global-danger-background: #f0504a; @global-primary-background: #496df1; @global-secondary-background: #353535; @global-success-background: #73f149; @global-warning-background: #f1bb49; // // Badge // @badge-color: @global-inverse-color; @inverse-badge-color: @global-inverse-color; // // Button // @button-primary-color: @global-inverse-color; @button-secondary-hover-color: @global-inverse-color; @internal-inverse-button-text-arrow-color: @global-inverse-color; @internal-inverse-button-text-arrow-hover-color: @global-inverse-color; @button-link-hover-color: @global-muted-color; @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-active-color: @global-inverse-color; @inverse-button-secondary-hover-color: @global-inverse-color; @inverse-button-secondary-active-color: @global-inverse-color; // // Card // @card-badge-color: @global-inverse-color; @inverse-card-badge-color: @global-inverse-color; // // Label // @inverse-label-color: @global-inverse-color; // // Marker // @marker-color: #ffffff; @marker-hover-color: rgba(255, 255, 255, 0.8); // // Subnav // @inverse-subnav-item-active-color: lighten(@global-primary-background, 10%); @inverse-subnav-pill-item-active-color: @global-inverse-color; // // Section // @section-primary-color-mode: light; // // Text // @text-background-color: #6686fb; assets/uikit-themes/master-yard/styles/white-darkblue.less000064400000005066151666572370020061 0ustar00// // Global // @global-color: #727272; @global-emphasis-color: #464646; @global-link-color: #5799cd; @global-link-hover-color: #464646; @global-danger-background: #f14a3c; @global-primary-background: #326084; @global-secondary-background: #adb6a2; @global-success-background: #388746; @global-warning-background: #d58a0a; // // Badge // @badge-color: @global-inverse-color; @inverse-badge-color: @global-inverse-color; // // Button // @button-primary-color: @global-inverse-color; @button-secondary-color: @global-primary-background; @button-secondary-hover-color: @global-inverse-color; @internal-button-default-gradient: linear-gradient(90deg, #aeb6a5 50%, #b7bfad 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, #aeb6a5 50%, #b7bfad 50%); @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-hover-color: @global-inverse-color; @inverse-button-primary-active-color: @global-inverse-color; @inverse-button-secondary-hover-color: @global-inverse-color; @inverse-button-secondary-active-color: @global-inverse-color; @internal-inverse-button-text-arrow-color: @global-inverse-color; @internal-inverse-button-text-arrow-hover-color: @global-inverse-color; @inverse-nav-secondary-item-hover-background: fade(@global-inverse-color, 10%); // // Card // @card-badge-color: @global-inverse-color; @inverse-card-badge-color: @global-inverse-color; // // Dropdown // @dropdown-color: #e2e7dc; @dropdown-nav-item-color: #e2e7dc; @dropdown-nav-header-color: #e2e7dc; @dropdown-nav-sublist-item-color: #e2e7dc; // // Form // @inverse-form-radio-checked-icon-color: @global-inverse-color; // // Label // @inverse-label-color: @global-inverse-color; // // Marker // @marker-color: #ffffff; @marker-hover-color: rgba(255, 255, 255, 0.8); // // Navbar // @navbar-dropdown-color: #e2e7dc; @navbar-dropdown-nav-item-color: #e2e7dc; @navbar-dropdown-nav-header-color: #e2e7dc; @navbar-dropdown-nav-sublist-item-color: #e2e7dc; // // Overlay // @internal-overlay-default-gradient: linear-gradient(to bottom, rgba(173, 182, 162, 0.6), rgba(173, 182, 162, 0.8)); // // Subnav // @inverse-subnav-pill-item-active-color: @global-inverse-color; // // Section // @section-primary-color-mode: light; // // Text // @text-background-color: #387eb6; @text-primary-color: #4a87b6; assets/uikit-themes/master-yard/styles/white-red.less000064400000004256151666572370017042 0ustar00// // Global // @global-color: #727272; @global-emphasis-color: #403f3f; @global-link-color: #df654c; @global-link-hover-color: #403f3f; @global-muted-background: #f5f5f5; @global-primary-background: #ff8a65; @global-secondary-background: #ee6e53; @global-success-background: #a2ee53; @global-warning-background: #eeb353; // // Badge // @badge-color: @global-inverse-color; @inverse-badge-color: @global-inverse-color; // // Button // @button-default-background: @global-emphasis-color; @button-default-hover-background: @global-emphasis-color; @button-default-active-color: rgba(255, 255, 255, 0.8); @button-primary-color: @global-inverse-color; @button-primary-active-color: rgba(255, 255, 255, 0.8); @button-secondary-hover-color: @global-inverse-color; @button-secondary-active-color: rgba(255, 255, 255, 0.8); @internal-button-default-gradient: linear-gradient(90deg, @global-emphasis-color 50%, #535353 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, @global-emphasis-color 50%, #535353 50%); @internal-inverse-button-text-arrow-color: @global-inverse-color; @internal-inverse-button-text-arrow-hover-color: @global-inverse-color; @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-active-color: @global-inverse-color; @inverse-button-secondary-hover-color: @global-inverse-color; @inverse-button-secondary-active-color: @global-inverse-color; // // Card // @card-badge-color: @global-inverse-color; @inverse-card-badge-color: @global-inverse-color; // // Label // @inverse-label-color: @global-inverse-color; // // Marker // @marker-color: @global-inverse-color; @marker-hover-color: fade(@marker-color, 80%); // // Subnav // @inverse-subnav-item-active-color: lighten(@global-primary-background, 15%); @inverse-subnav-pill-item-active-color: @global-inverse-color; // // Section // @section-primary-color-mode: light; // // Text // @text-background-color: #a72d13; assets/uikit-themes/master-yard/_import.less000064400000062173151666572370015302 0ustar00@internal-fonts: 'Work+Sans:400,500|Karla'; @global-font-family: Karla; @global-font-size: 16.5px; @global-line-height: 1.7; @global-2xlarge-font-size: 44px; @global-xlarge-font-size: 38px; @global-large-font-size: 30px; @global-medium-font-size: 26px; @global-small-font-size: 14px; @global-primary-font-family: 'Work Sans'; @global-primary-font-weight: 500; @global-primary-text-transform: inherit; @global-primary-letter-spacing: -2px; @global-primary-font-style: inherit; @global-secondary-font-family: 'Work Sans'; @global-secondary-font-weight: inherit; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: -0.6px; @global-secondary-font-style: inherit; @global-color: rgba(0,0,0,0.6); @global-emphasis-color: #000; @global-muted-color: #b2b2b2; @global-link-color: #000; @global-link-hover-color: #727272; @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #f9f9f9; @global-primary-background: #f3c565; @global-secondary-background: #1f1f1f; @global-success-background: #00b572; @global-warning-background: #fa985a; @global-danger-background: #e54848; @global-border: #e5e5e5; @global-border-width: 1px; @global-border-radius: 0; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 2px 26px 52px 0 rgba(0,0,0,0.06); @global-large-box-shadow: 0 15px 55px rgba(0,0,0,0.08); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 30px; @global-small-margin: 20px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 20px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 50px; @global-control-small-height: 38px; @global-control-large-height: 62px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-ins-background: fade(@global-primary-background, 20%); @base-ins-color: darken(@global-primary-background, 15%); @base-mark-background: fade(@global-primary-background, 50%); @base-mark-color: @global-emphasis-color; @base-h3-line-height: 1.2; @base-h5-font-size: 20px; @base-h6-font-size: @global-font-size; @base-blockquote-font-size: 22px; @base-blockquote-line-height: 1.4; @base-blockquote-font-style: normal; @base-blockquote-footer-margin-top: 20px; @base-selection-background: fade(@global-primary-background, 70%); @base-pre-padding: 20px; @base-pre-background: @global-muted-background; @base-blockquote-footer-em-dash: false; @base-h1-letter-spacing: -1.5px; @base-h2-letter-spacing: -1px; @base-h3-letter-spacing: -0.75px; @base-h4-font-weight: 500; @base-h4-letter-spacing: -0.75px; @base-h5-font-weight: 500; @base-h5-letter-spacing: -0.5px; @base-h6-font-weight: 400; @base-blockquote-letter-spacing: -1px; @base-blockquote-footer-font-weight: 400; @base-blockquote-footer-letter-spacing: -0.6px; @inverse-base-link-hover-color: @inverse-global-muted-color; @heading-small-font-size-m: 52px; @heading-medium-font-size-l: 67px; @heading-large-font-size-l: 90px; @heading-xlarge-font-size-l: 120px; @heading-2xlarge-font-size-l: 170px; @heading-divider-border-width: ~'calc(0.2px + 0.04em)'; @heading-bullet-border: @global-primary-background; @heading-line-border-width: ~'calc(1px + 0.05em)'; @heading-line-border: @global-emphasis-color; @inverse-heading-bullet-border: @global-primary-background; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-yard/images/divider-icon.svg"; @divider-small-width: 54px; @divider-small-border-width: 3px; @divider-small-border: @global-primary-background; @inverse-divider-small-border: @global-primary-background; @list-margin-top: 2px; @list-bullet-icon-color: @global-emphasis-color; @list-striped-padding-horizontal: 16px; @list-large-striped-padding-horizontal: @global-margin; @description-list-term-margin-top: @global-gutter; @description-list-divider-term-margin-top: @global-gutter; @description-list-term-font-size: 17px; @description-list-term-font-weight: 400; @table-header-cell-font-size: (@global-font-size + 1); @table-header-cell-font-weight: 500; @table-header-cell-color: @global-emphasis-color; @table-row-active-background: @global-muted-background; @table-striped-row-background: #fdfdfd; @table-header-cell-font-family: @global-primary-font-family; @table-header-cell-text-transform: none; @table-header-cell-letter-spacing: -0.5px; @table-divider-header-border-width: 2px; @table-divider-header-border: @global-primary-background; @icon-link-color: @global-color; @icon-link-hover-color: @global-muted-color; @icon-button-background: @global-secondary-background; @icon-button-color: @global-inverse-color; @icon-button-hover-background: fade(@global-secondary-background, 80%); @icon-button-hover-color: @global-inverse-color; @icon-button-active-color: @global-inverse-color; @inverse-icon-button-background: @inverse-global-emphasis-color; @inverse-icon-button-color: @inverse-global-inverse-color; @inverse-icon-button-hover-background: fade(@inverse-global-emphasis-color, 70%); @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-color: @inverse-global-inverse-color; @form-range-track-height: 1px; @form-range-track-background: darken(@global-muted-background, 15%); @form-range-track-focus-background: @global-secondary-background; @form-range-thumb-height: 5px; @form-range-thumb-width: 14px; @form-range-thumb-border-radius: 0; @form-range-thumb-background: @global-secondary-background; @form-background: transparent; @form-focus-background: transparent; @form-danger-color: @form-color; @form-success-color: @form-color; @form-radio-background: transparent; @form-radio-checked-focus-background: darken(@form-radio-checked-background, 6%); @form-stacked-margin-bottom: 5px; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @form-focus-color; @form-disabled-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @global-border; @form-radio-border-width: @global-border-width; @form-radio-border: @global-border; @form-radio-focus-border: @global-primary-background; @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-focus-color: @inverse-global-emphasis-color; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: @inverse-global-muted-color; @inverse-form-focus-border: @global-primary-background; @inverse-form-radio-border: @inverse-global-muted-color; @inverse-form-radio-focus-border: @inverse-global-primary-background; @inverse-form-radio-checked-border: @inverse-global-primary-background; @button-font-size: (@global-font-size - 1); @button-small-font-size: 14px; @button-large-font-size: @global-font-size; @button-padding-horizontal: 35px; @button-small-padding-horizontal: 20px; @button-large-padding-horizontal: 40px; @button-default-background: lighten(@global-secondary-background, 4%); @button-default-color: @global-inverse-color; @button-default-hover-background: darken(@global-secondary-background, 15%); @button-default-hover-color: @global-inverse-color; @button-default-active-background: @button-default-background; @button-default-active-color: fade(@button-default-hover-color, 70%); @button-primary-color: @global-emphasis-color; @button-primary-hover-color: @button-primary-color; @button-primary-active-background: @button-primary-background; @button-primary-active-color: fade(@button-primary-hover-color, 70%); @button-secondary-background: transparent; @button-secondary-color: @global-emphasis-color; @button-secondary-hover-background: transparent; @button-secondary-hover-color: @global-emphasis-color; @button-secondary-active-background: lighten(@button-secondary-border, 10%); @button-secondary-active-color: fade(@button-secondary-hover-color, 70%); @button-danger-active-background: lighten(@button-danger-background, 5%); @button-danger-active-color: fade(@button-danger-hover-color, 80%); @button-text-hover-color: @global-color; @button-link-hover-color: @global-color; @button-transition-duration: 0.3s; @button-text-mode: ~''; @button-text-icon-mode: arrow; @internal-button-text-arrow-image: "../../../../uikit-themes/master-yard/images/button-text-arrow.svg"; @internal-button-text-arrow-padding: 20px; @internal-button-text-arrow-width: 26px; @internal-button-text-arrow-color: @global-primary-background; @internal-button-text-arrow-hover-color: @global-primary-background; @button-letter-spacing: -0.5px; @button-border-width: 2px; @button-secondary-border: @global-primary-background; @button-secondary-hover-border: @button-secondary-border; @button-secondary-active-border: @button-secondary-active-background; @button-background-size: 200%; @button-background-position-x: 100%; @internal-button-default-gradient: linear-gradient(90deg, @button-default-hover-background 50%, @button-default-background 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, @button-default-hover-background 50%, @button-default-background 50%); @internal-button-primary-gradient: linear-gradient(90deg, @button-primary-hover-background 50%, @button-primary-background 50%); @internal-button-primary-hover-gradient: linear-gradient(90deg, @button-primary-hover-background 50%, @button-primary-background 50%); @internal-button-secondary-gradient: linear-gradient(90deg, @button-secondary-border 50%, @button-secondary-background 50%); @internal-button-secondary-hover-gradient: linear-gradient(90deg, @button-secondary-border 50%, @button-secondary-background 50%); @internal-button-danger-gradient: linear-gradient(90deg, @button-danger-hover-background 50%, @global-danger-background 50%); @internal-button-danger-hover-gradient: linear-gradient(90deg, @button-danger-hover-background 50%, @global-danger-background 50%); @inverse-button-default-background: @global-inverse-color; @inverse-button-default-hover-background: darken(@inverse-button-default-background, 10%); @inverse-button-default-hover-color: @inverse-button-default-color; @inverse-button-default-active-background: @inverse-button-default-background; @inverse-button-primary-background: @global-primary-background; @inverse-button-primary-hover-background: desaturate(darken(@inverse-button-primary-background, 8%), 12%); @inverse-button-primary-hover-color: @inverse-button-primary-color; @inverse-button-primary-active-background: @inverse-button-primary-background; @inverse-button-secondary-background: transparent; @inverse-button-secondary-color: @inverse-global-emphasis-color; @inverse-button-secondary-hover-background: @inverse-global-primary-background; @inverse-button-secondary-active-background: fade(@inverse-button-secondary-hover-background, 80%); @inverse-button-text-hover-color: @inverse-global-color; @internal-inverse-button-text-arrow-color: @global-primary-background; @internal-inverse-button-text-arrow-hover-color: @global-primary-background; @inverse-button-secondary-border: fade(@inverse-global-primary-background, 40%); @section-primary-color-mode: dark; @card-title-font-size: 24px; @card-badge-height: 28px; @card-badge-padding-horizontal: 12px; @card-badge-color: @global-emphasis-color; @card-default-hover-background: @global-background; @card-primary-background: transparent; @card-primary-color: @global-color; @card-primary-title-color: @global-emphasis-color; @card-primary-color-mode: dark; @card-secondary-hover-background: lighten(@card-secondary-background, 4%); @card-title-letter-spacing: -1px; @card-primary-border-width: 3px; @card-primary-border: @global-primary-background; @card-primary-hover-border: fade(@card-primary-border, 70%); @close-color: @global-emphasis-color; @close-hover-color: @global-muted-color; @spinner-stroke-width: 2px; @marker-padding: 8px; @marker-background: @global-primary-background; @marker-color: @global-emphasis-color; @marker-hover-color: @global-color; @marker-hover-background: darken(@marker-background, 5%); @inverse-marker-background: transparent; @inverse-marker-color: @global-inverse-color; @inverse-marker-hover-background: @global-inverse-color; @inverse-marker-border: fade(@global-inverse-color, 35%); @totop-color: @global-emphasis-color; @totop-hover-color: @global-muted-color; @alert-primary-background: fade(@global-primary-background, 20%); @alert-primary-color: darken(saturate(@global-primary-background, 20%), 8%); @alert-success-background: fade(@global-success-background, 10%); @alert-warning-background: fade(@global-warning-background, 10%); @alert-danger-background: fade(@global-danger-background, 10%); @badge-color: @global-emphasis-color; @badge-font-size: 12px; @label-padding-horizontal: 8px; @label-background: @global-secondary-background; @label-warning-background: @global-primary-background; @overlay-default-background: transparent; @overlay-primary-background: fade(@global-primary-background, 80%); @internal-overlay-default-gradient: linear-gradient(to bottom, fade(@global-secondary-background, 0%), fade(@global-secondary-background, 40%)); @article-title-font-size-m: @global-xlarge-font-size; @article-title-line-height: 1.3; @article-meta-color: @global-color; @article-meta-link-color: @global-emphasis-color; @article-title-letter-spacing: -1.5px; @comment-title-font-size: 18px; @search-color: @global-emphasis-color; @search-default-padding-horizontal: 0; @search-default-background: @global-background; @search-default-focus-background: @global-background; @search-default-icon-padding: 15px; @search-navbar-padding-horizontal: 15px; @search-navbar-background: @global-muted-background; @search-navbar-focus-background: @global-background; @search-medium-padding-horizontal: 18px; @search-medium-background: @global-muted-background; @search-medium-font-size: @global-font-size; @search-medium-focus-background: @global-background; @search-large-padding-horizontal: 28px; @search-large-background: @global-muted-background; @search-large-focus-background: @global-background; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-muted-color; @search-default-font-family: @global-primary-font-family; @search-default-letter-spacing: -0.5px; @search-medium-font-family: @global-primary-font-family; @search-large-font-family: @global-primary-font-family; @search-large-letter-spacing: -2px; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @search-color; @search-navbar-border-width: @global-border-width; @search-navbar-focus-border: @global-border; @search-medium-border-width: @global-border-width; @search-medium-focus-border: @global-border; @search-large-border-width: @global-border-width; @search-large-focus-border: @global-border; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-navbar-background: fade(@global-inverse-color, 10%); @inverse-search-medium-background: fade(@global-inverse-color, 10%); @inverse-search-large-background: fade(@global-inverse-color, 10%); @inverse-search-toggle-color: @inverse-global-emphasis-color; @inverse-search-toggle-hover-color: @inverse-global-muted-color; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-focus-border: @inverse-global-border; @inverse-search-medium-focus-border: @inverse-global-border; @inverse-search-large-focus-border: @inverse-global-border; @accordion-item-margin-top: 18px; @accordion-title-font-size: 17px; @accordion-title-hover-color: @global-muted-color; @accordion-content-margin-top: 10px; @accordion-title-font-weight: 400; @accordion-title-letter-spacing: -0.7px; @accordion-item-border-width: 1px; @accordion-item-border: @global-border; @dropdown-padding: 30px; @dropdown-background: lighten(@global-secondary-background, 2%); @dropdown-color-mode: light; @dropdown-nav-item-color: fade(@global-inverse-color, 70%); @dropdown-nav-item-hover-color: @global-inverse-color; @dropdown-nav-header-color: fade(@global-inverse-color, 70%); @dropdown-nav-divider-border: fade(@global-border, 15%); @dropdown-nav-sublist-item-color: fade(@global-inverse-color, 70%); @dropdown-nav-sublist-item-hover-color: @global-inverse-color; @dropdown-nav-item-padding-vertical: 0; @dropdown-nav-subtitle-color: fade(@global-inverse-color, 70%); @dropdown-nav-subtitle-letter-spacing: -0.3px; @dropdown-nav-subtitle-line-height: 20px; @dropbar-background: lighten(@global-secondary-background, 2%); @dropbar-color-mode: light; @modal-title-font-size: @global-large-font-size; @offcanvas-bar-padding-vertical: 40px; @offcanvas-bar-padding-horizontal: 40px; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-overlay-background: fade(@global-secondary-background, 90%); @leader-color: @global-muted-color; @leader-letter-spacing: 2px; @tooltip-background: darken(@global-muted-background, 10%); @tooltip-color: @global-emphasis-color; @countdown-item-font-family: @global-primary-font-family; @nav-sublist-padding-left: 10px; @nav-header-font-size: @global-font-size; @nav-header-text-transform: none; @nav-divider-margin-vertical: 10px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-emphasis-color; @nav-default-sublist-item-color: @global-color; @nav-default-sublist-item-hover-color: @global-muted-color; @nav-primary-font-size: @global-medium-font-size; @nav-primary-line-height: 1.3; @nav-primary-item-color: @global-color; @nav-primary-item-hover-color: @global-emphasis-color; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-sublist-font-size: 20px; @nav-primary-sublist-item-color: @global-color; @nav-primary-sublist-item-hover-color: @global-muted-color; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-secondary-sublist-item-color: @global-color; @nav-secondary-sublist-item-hover-color: @global-muted-color; @nav-medium-font-size-l: 67px; @nav-large-font-size-l: 90px; @nav-xlarge-font-size-l: 120px; @nav-dividers-margin-top: 10px; @nav-secondary-margin-top: 1px; @nav-secondary-item-padding-vertical: 16px; @nav-secondary-item-padding-horizontal: 20px; @nav-secondary-item-hover-background: @global-muted-background; @nav-secondary-item-active-background: @nav-secondary-item-hover-background; @nav-header-font-weight: 500; @nav-default-letter-spacing: -0.6px; @nav-default-subtitle-color: @global-muted-color; @nav-default-subtitle-letter-spacing: -0.3px; @nav-default-subtitle-line-height: 20px; @nav-primary-font-weight: 400; @nav-primary-letter-spacing: -1px; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-letter-spacing: -0.3px; @nav-primary-subtitle-line-height: 1.5; @nav-secondary-subtitle-line-height: 1.5; @inverse-nav-default-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-subtitle-color: @inverse-global-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-item-hover-background: @inverse-global-muted-background; @inverse-nav-secondary-item-active-background: @inverse-nav-secondary-item-hover-background; @navbar-background: @global-background; @navbar-nav-item-height: 100px; @navbar-nav-item-font-family: @global-primary-font-family; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-item-color: @global-emphasis-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-muted-color; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-width: 250px; @navbar-dropdown-padding: 30px; @navbar-dropdown-background: lighten(@global-secondary-background, 2%); @navbar-dropdown-color: fade(@global-inverse-color, 70%); @navbar-dropdown-color-mode: light; @navbar-dropdown-grid-gutter-horizontal: 30px; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-color: fade(@global-inverse-color, 70%); @navbar-dropdown-nav-item-hover-color: @global-inverse-color; @navbar-dropdown-nav-item-active-color: @global-inverse-color; @navbar-dropdown-nav-header-color: fade(@global-inverse-color, 70%); @navbar-dropdown-nav-divider-border: fade(@global-border, 15%); @navbar-dropdown-nav-sublist-item-color: fade(@global-inverse-color, 70%); @navbar-dropdown-nav-sublist-item-hover-color: @global-inverse-color; @navbar-dropdown-nav-sublist-item-active-color: @global-inverse-color; @navbar-padding-top-m: 20px; @navbar-padding-bottom-m: 20px; @navbar-gap-m: 44px; @navbar-nav-gap-m: 44px; @navbar-nav-item-transition-duration: 0.2s; @navbar-subtitle-letter-spacing: -0.3px; @navbar-subtitle-line-height: 1.4; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-subtitle-letter-spacing: -0.3px; @navbar-dropdown-nav-subtitle-line-height: 1.4; @inverse-navbar-nav-item-hover-color: @inverse-global-emphasis-color; @inverse-navbar-toggle-color: @inverse-global-emphasis-color; @inverse-navbar-toggle-hover-color: @inverse-global-muted-color; @subnav-item-hover-color: @global-emphasis-color; @subnav-divider-border-height: 1em; @subnav-pill-item-padding-vertical: 6px; @subnav-pill-item-padding-horizontal: 14px; @subnav-pill-item-hover-background: transparent; @subnav-pill-item-hover-color: @global-emphasis-color; @subnav-pill-item-onclick-background: transparent; @subnav-pill-item-onclick-color: @global-muted-color; @inverse-subnav-item-color: @inverse-global-emphasis-color; @inverse-subnav-item-hover-color: @inverse-global-muted-color; @inverse-subnav-item-active-color: @global-primary-background; @breadcrumb-item-color: @global-color; @breadcrumb-item-hover-color: @global-emphasis-color; @breadcrumb-item-active-color: @global-emphasis-color; @breadcrumb-item-disabled-color: @global-muted-color; @inverse-breadcrumb-item-hover-color: @inverse-global-emphasis-color; @inverse-breadcrumb-item-active-color: @inverse-global-emphasis-color; @pagination-margin-horizontal: 20px; @pagination-item-padding-vertical: 2px; @pagination-item-padding-horizontal: 4px; @pagination-item-hover-color: @global-emphasis-color; @pagination-item-active-color: @global-emphasis-color; @pagination-item-min-width: 16px; @pagination-item-border-mode: -bottom; @pagination-item-border-width: 2px; @pagination-item-active-border: @global-primary-background; @tab-margin-horizontal: @global-gutter; @tab-item-padding-horizontal: 0; @tab-item-hover-color: @global-emphasis-color; @tab-vertical-item-padding-horizontal: 10px; @tab-item-line-height: 1; @tab-border-width: 0; @tab-item-border-width: 2px; @slidenav-padding-vertical: 21px; @slidenav-padding-horizontal: 18px; @slidenav-color: fade(@inverse-global-color, 70%); @slidenav-hover-color: fade(@inverse-global-color, 95%); @slidenav-active-color: fade(@inverse-global-color, 70%); @slidenav-large-padding-vertical: 38px; @slidenav-large-padding-horizontal: 36px; @slidenav-background: #000; @slidenav-hover-background: rgba(0,0,0, 0.7); @slidenav-active-background: @slidenav-hover-background; @inverse-slidenav-color: @global-emphasis-color; @inverse-slidenav-hover-color: @global-color; @inverse-slidenav-active-color: @global-muted-color; @inverse-slidenav-background: @global-background; @inverse-slidenav-hover-background: @global-background; @inverse-slidenav-active-background: @global-background; @dotnav-item-width: 22px; @dotnav-item-height: 5px; @dotnav-item-border-radius: 0; @dotnav-item-background: darken(@global-muted-background, 10%); @dotnav-item-hover-background: @global-primary-background; @dotnav-item-onclick-background: fade(@dotnav-item-hover-background, 30%); @dotnav-item-active-background: @global-primary-background; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-muted-color; @iconnav-item-active-color: desaturate(darken(@global-primary-background, 5%), 10%); @inverse-iconnav-item-color: @inverse-global-emphasis-color; @inverse-iconnav-item-hover-color: @inverse-global-muted-color; @inverse-iconnav-item-active-color: desaturate(darken(@inverse-global-primary-background, 5%), 10%); @lightbox-caption-padding-vertical: 20px; @lightbox-caption-padding-horizontal: 20px; @text-lead-font-size: 20px; @text-meta-font-size: @global-font-size; @text-large-font-size: 18px; @text-large-line-height: 1.7; @text-primary-color: darken(@global-primary-background, 5%); @text-lead-font-weight: 400; @text-lead-letter-spacing: @global-secondary-letter-spacing; @dropcap-font-size: ((@global-line-height * 2.7) * 1em); @logo-font-size: 28px; @logo-font-family: @global-primary-font-family; @dropcap-color: @global-emphasis-color; @logo-font-weight: 500; @inverse-dropcap-color: @inverse-global-emphasis-color; @inverse-marker-background: @global-inverse-color; @inverse-marker-color: @global-emphasis-color; @inverse-marker-hover-color: @global-emphasis-color; @inverse-global-inverse-color: @global-emphasis-color; @inverse-global-primary-background: @global-primary-background; @inverse-global-muted-background: fade(@global-inverse-color, 5%); @inverse-marker-hover-background: @global-muted-color;assets/uikit-themes/master-dennis-miller/images/styles/black-red/base-body-overlay.svg000064400000014476151666572370025230 0ustar00<svg width="1988" height="2480" viewBox="0 0 1988 2480" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#FF1414" points="995.5 495.5 871.5 495.5 871.5 371.5 995.5 371.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FF1414" x="747.5" y="495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FF1414" points="749.5 992.5 749.5 867.5 873.5 867.5 873.5 992.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FF1414" x="749.5" y="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="124.5" x2="1992" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="1364.5" x2="1988" y2="1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="744.5" x2="1988" y2="744.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="1984.5" x2="1988" y2="1984.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="1487.5" x2="1988" y2="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="874" y1="867.5" x2="1987" y2="867.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="2107.5" x2="1988" y2="2107.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="371.5" x2="1988" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="1611.5" x2="1988" y2="1611.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="874" y1="992.5" x2="1987" y2="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="2231.5" x2="1988" y2="2231.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="495.5" x2="1988" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="247.5" x2="1988" y2="247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="1735.5" x2="1988" y2="1735.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="874" y1="1115.5" x2="1987" y2="1115.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="1239.5" x2="1988" y2="1239.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="872" y1="619.5" x2="1988" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="1859.5" x2="1988" y2="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="1243.5" x2="1243.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="1367.5" x2="1367.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="1491.5" x2="1491.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="1615.5" x2="1615.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="1739.5" x2="1739.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="1863.5" x2="1863.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="1987.5" x2="1987.5" y2="2480" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FF1414" x="124.5" y="1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FF1414" points="124.5 371.5 248.5 371.5 248.5 495.5 124.5 495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FF1414" points="995.5 1859.5 871.5 1859.5 871.5 1735.5 995.5 1735.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#FF1414" x="747.5" y="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FF1414" x="248.5" y="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="124.5" y1="1612.5" x2="124.5" y2="1488.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FF1414" x="124.5" y="1611.5" shape-rendering="crispEdges" /> <rect width="124" height="123" fill="none" stroke="#FF1414" x="124.5" y="1364.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#FF1414" x="248.5" y="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="124.5" y1="1984.5" x2="124.5" y2="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FF1414" x="124.5" y="1984.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FF1414" points="248.5 1735.5 248.5 1859.5 124.5 1859.5 124.5 1735.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FF1414" points="124.5 992.5 124.5 1115.5 0 1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FF1414" points="0 1239.5 124.5 1239.5 124.5 1364.5 0 1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="2479.5" x2="1988" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="124.5" y1="2479.5" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="996" y1="2355.5" x2="1988" y2="2355.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="124.5" x2="124.5" y2="620" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" y1="124.5" x2="124" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" y1="371.5" x2="124" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" y1="495.5" x2="124" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" y1="619.5" x2="124" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" y1="247.55" x2="124" y2="247.55" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="995.5" x2="995.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" x1="1119.5" x2="1119.5" y2="2479.99" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FF1414" points="123.5 124.5 248.5 124.5 248.5 247.5 124.5 247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FF1414" y1="992.5" x2="125" y2="992.5" shape-rendering="crispEdges" /> </svg> assets/uikit-themes/master-dennis-miller/images/styles/colored-blue/base-body-overlay.svg000064400000014476151666572370025760 0ustar00<svg width="1988" height="2480" viewBox="0 0 1988 2480" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#19D3FF" points="995.5 495.5 871.5 495.5 871.5 371.5 995.5 371.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#19D3FF" x="747.5" y="495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#19D3FF" points="749.5 992.5 749.5 867.5 873.5 867.5 873.5 992.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#19D3FF" x="749.5" y="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="124.5" x2="1992" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="1364.5" x2="1988" y2="1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="744.5" x2="1988" y2="744.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="1984.5" x2="1988" y2="1984.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="1487.5" x2="1988" y2="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="874" y1="867.5" x2="1987" y2="867.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="2107.5" x2="1988" y2="2107.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="371.5" x2="1988" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="1611.5" x2="1988" y2="1611.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="874" y1="992.5" x2="1987" y2="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="2231.5" x2="1988" y2="2231.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="495.5" x2="1988" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="247.5" x2="1988" y2="247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="1735.5" x2="1988" y2="1735.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="874" y1="1115.5" x2="1987" y2="1115.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="1239.5" x2="1988" y2="1239.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="872" y1="619.5" x2="1988" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="1859.5" x2="1988" y2="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="1243.5" x2="1243.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="1367.5" x2="1367.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="1491.5" x2="1491.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="1615.5" x2="1615.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="1739.5" x2="1739.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="1863.5" x2="1863.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="1987.5" x2="1987.5" y2="2480" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#19D3FF" x="124.5" y="1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#19D3FF" points="124.5 371.5 248.5 371.5 248.5 495.5 124.5 495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#19D3FF" points="995.5 1859.5 871.5 1859.5 871.5 1735.5 995.5 1735.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#19D3FF" x="747.5" y="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#19D3FF" x="248.5" y="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="124.5" y1="1612.5" x2="124.5" y2="1488.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#19D3FF" x="124.5" y="1611.5" shape-rendering="crispEdges" /> <rect width="124" height="123" fill="none" stroke="#19D3FF" x="124.5" y="1364.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#19D3FF" x="248.5" y="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="124.5" y1="1984.5" x2="124.5" y2="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#19D3FF" x="124.5" y="1984.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#19D3FF" points="248.5 1735.5 248.5 1859.5 124.5 1859.5 124.5 1735.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#19D3FF" points="124.5 992.5 124.5 1115.5 0 1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#19D3FF" points="0 1239.5 124.5 1239.5 124.5 1364.5 0 1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="2479.5" x2="1988" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="124.5" y1="2479.5" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="996" y1="2355.5" x2="1988" y2="2355.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="124.5" x2="124.5" y2="620" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" y1="124.5" x2="124" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" y1="371.5" x2="124" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" y1="495.5" x2="124" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" y1="619.5" x2="124" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" y1="247.55" x2="124" y2="247.55" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="995.5" x2="995.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" x1="1119.5" x2="1119.5" y2="2479.99" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#19D3FF" points="123.5 124.5 248.5 124.5 248.5 247.5 124.5 247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#19D3FF" y1="992.5" x2="125" y2="992.5" shape-rendering="crispEdges" /> </svg> assets/uikit-themes/master-dennis-miller/images/styles/colored-yellow/base-body-overlay.svg000064400000014476151666572370026344 0ustar00<svg width="1988" height="2480" viewBox="0 0 1988 2480" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#FFF72C" points="995.5 495.5 871.5 495.5 871.5 371.5 995.5 371.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FFF72C" x="747.5" y="495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FFF72C" points="749.5 992.5 749.5 867.5 873.5 867.5 873.5 992.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FFF72C" x="749.5" y="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="124.5" x2="1992" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="1364.5" x2="1988" y2="1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="744.5" x2="1988" y2="744.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="1984.5" x2="1988" y2="1984.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="1487.5" x2="1988" y2="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="874" y1="867.5" x2="1987" y2="867.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="2107.5" x2="1988" y2="2107.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="371.5" x2="1988" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="1611.5" x2="1988" y2="1611.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="874" y1="992.5" x2="1987" y2="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="2231.5" x2="1988" y2="2231.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="495.5" x2="1988" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="247.5" x2="1988" y2="247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="1735.5" x2="1988" y2="1735.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="874" y1="1115.5" x2="1987" y2="1115.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="1239.5" x2="1988" y2="1239.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="872" y1="619.5" x2="1988" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="1859.5" x2="1988" y2="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="1243.5" x2="1243.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="1367.5" x2="1367.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="1491.5" x2="1491.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="1615.5" x2="1615.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="1739.5" x2="1739.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="1863.5" x2="1863.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="1987.5" x2="1987.5" y2="2480" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FFF72C" x="124.5" y="1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FFF72C" points="124.5 371.5 248.5 371.5 248.5 495.5 124.5 495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FFF72C" points="995.5 1859.5 871.5 1859.5 871.5 1735.5 995.5 1735.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#FFF72C" x="747.5" y="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FFF72C" x="248.5" y="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="124.5" y1="1612.5" x2="124.5" y2="1488.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FFF72C" x="124.5" y="1611.5" shape-rendering="crispEdges" /> <rect width="124" height="123" fill="none" stroke="#FFF72C" x="124.5" y="1364.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#FFF72C" x="248.5" y="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="124.5" y1="1984.5" x2="124.5" y2="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#FFF72C" x="124.5" y="1984.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FFF72C" points="248.5 1735.5 248.5 1859.5 124.5 1859.5 124.5 1735.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FFF72C" points="124.5 992.5 124.5 1115.5 0 1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FFF72C" points="0 1239.5 124.5 1239.5 124.5 1364.5 0 1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="2479.5" x2="1988" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="124.5" y1="2479.5" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="996" y1="2355.5" x2="1988" y2="2355.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="124.5" x2="124.5" y2="620" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" y1="124.5" x2="124" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" y1="371.5" x2="124" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" y1="495.5" x2="124" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" y1="619.5" x2="124" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" y1="247.55" x2="124" y2="247.55" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="995.5" x2="995.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" x1="1119.5" x2="1119.5" y2="2479.99" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#FFF72C" points="123.5 124.5 248.5 124.5 248.5 247.5 124.5 247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#FFF72C" y1="992.5" x2="125" y2="992.5" shape-rendering="crispEdges" /> </svg> assets/uikit-themes/master-dennis-miller/images/styles/black-green/base-body-overlay.svg000064400000014476151666572370025556 0ustar00<svg width="1988" height="2480" viewBox="0 0 1988 2480" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#D4ED17" points="995.5 495.5 871.5 495.5 871.5 371.5 995.5 371.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#D4ED17" x="747.5" y="495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#D4ED17" points="749.5 992.5 749.5 867.5 873.5 867.5 873.5 992.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#D4ED17" x="749.5" y="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="124.5" x2="1992" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="1364.5" x2="1988" y2="1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="744.5" x2="1988" y2="744.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="1984.5" x2="1988" y2="1984.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="1487.5" x2="1988" y2="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="874" y1="867.5" x2="1987" y2="867.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="2107.5" x2="1988" y2="2107.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="371.5" x2="1988" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="1611.5" x2="1988" y2="1611.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="874" y1="992.5" x2="1987" y2="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="2231.5" x2="1988" y2="2231.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="495.5" x2="1988" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="247.5" x2="1988" y2="247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="1735.5" x2="1988" y2="1735.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="874" y1="1115.5" x2="1987" y2="1115.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="1239.5" x2="1988" y2="1239.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="872" y1="619.5" x2="1988" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="1859.5" x2="1988" y2="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="1243.5" x2="1243.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="1367.5" x2="1367.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="1491.5" x2="1491.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="1615.5" x2="1615.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="1739.5" x2="1739.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="1863.5" x2="1863.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="1987.5" x2="1987.5" y2="2480" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#D4ED17" x="124.5" y="1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#D4ED17" points="124.5 371.5 248.5 371.5 248.5 495.5 124.5 495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#D4ED17" points="995.5 1859.5 871.5 1859.5 871.5 1735.5 995.5 1735.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#D4ED17" x="747.5" y="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#D4ED17" x="248.5" y="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="124.5" y1="1612.5" x2="124.5" y2="1488.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#D4ED17" x="124.5" y="1611.5" shape-rendering="crispEdges" /> <rect width="124" height="123" fill="none" stroke="#D4ED17" x="124.5" y="1364.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#D4ED17" x="248.5" y="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="124.5" y1="1984.5" x2="124.5" y2="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#D4ED17" x="124.5" y="1984.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#D4ED17" points="248.5 1735.5 248.5 1859.5 124.5 1859.5 124.5 1735.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#D4ED17" points="124.5 992.5 124.5 1115.5 0 1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#D4ED17" points="0 1239.5 124.5 1239.5 124.5 1364.5 0 1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="2479.5" x2="1988" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="124.5" y1="2479.5" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="996" y1="2355.5" x2="1988" y2="2355.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="124.5" x2="124.5" y2="620" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" y1="124.5" x2="124" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" y1="371.5" x2="124" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" y1="495.5" x2="124" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" y1="619.5" x2="124" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" y1="247.55" x2="124" y2="247.55" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="995.5" x2="995.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" x1="1119.5" x2="1119.5" y2="2479.99" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#D4ED17" points="123.5 124.5 248.5 124.5 248.5 247.5 124.5 247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#D4ED17" y1="992.5" x2="125" y2="992.5" shape-rendering="crispEdges" /> </svg> assets/uikit-themes/master-dennis-miller/images/styles/white-green/base-body-overlay.svg000064400000014476151666572370025622 0ustar00<svg width="1988" height="2480" viewBox="0 0 1988 2480" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#72755F" points="995.5 495.5 871.5 495.5 871.5 371.5 995.5 371.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#72755F" x="747.5" y="495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#72755F" points="749.5 992.5 749.5 867.5 873.5 867.5 873.5 992.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#72755F" x="749.5" y="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="124.5" x2="1992" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="1364.5" x2="1988" y2="1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="744.5" x2="1988" y2="744.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="1984.5" x2="1988" y2="1984.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="1487.5" x2="1988" y2="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="874" y1="867.5" x2="1987" y2="867.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="2107.5" x2="1988" y2="2107.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="371.5" x2="1988" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="1611.5" x2="1988" y2="1611.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="874" y1="992.5" x2="1987" y2="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="2231.5" x2="1988" y2="2231.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="495.5" x2="1988" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="247.5" x2="1988" y2="247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="1735.5" x2="1988" y2="1735.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="874" y1="1115.5" x2="1987" y2="1115.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="1239.5" x2="1988" y2="1239.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="872" y1="619.5" x2="1988" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="1859.5" x2="1988" y2="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="1243.5" x2="1243.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="1367.5" x2="1367.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="1491.5" x2="1491.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="1615.5" x2="1615.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="1739.5" x2="1739.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="1863.5" x2="1863.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="1987.5" x2="1987.5" y2="2480" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#72755F" x="124.5" y="1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#72755F" points="124.5 371.5 248.5 371.5 248.5 495.5 124.5 495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#72755F" points="995.5 1859.5 871.5 1859.5 871.5 1735.5 995.5 1735.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#72755F" x="747.5" y="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#72755F" x="248.5" y="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="124.5" y1="1612.5" x2="124.5" y2="1488.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#72755F" x="124.5" y="1611.5" shape-rendering="crispEdges" /> <rect width="124" height="123" fill="none" stroke="#72755F" x="124.5" y="1364.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#72755F" x="248.5" y="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="124.5" y1="1984.5" x2="124.5" y2="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#72755F" x="124.5" y="1984.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#72755F" points="248.5 1735.5 248.5 1859.5 124.5 1859.5 124.5 1735.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#72755F" points="124.5 992.5 124.5 1115.5 0 1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#72755F" points="0 1239.5 124.5 1239.5 124.5 1364.5 0 1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="2479.5" x2="1988" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="124.5" y1="2479.5" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="996" y1="2355.5" x2="1988" y2="2355.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="124.5" x2="124.5" y2="620" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" y1="124.5" x2="124" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" y1="371.5" x2="124" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" y1="495.5" x2="124" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" y1="619.5" x2="124" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" y1="247.55" x2="124" y2="247.55" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="995.5" x2="995.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" x1="1119.5" x2="1119.5" y2="2479.99" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#72755F" points="123.5 124.5 248.5 124.5 248.5 247.5 124.5 247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#72755F" y1="992.5" x2="125" y2="992.5" shape-rendering="crispEdges" /> </svg> assets/uikit-themes/master-dennis-miller/images/accordion-open.svg000064400000000230151666572370021414 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <rect width="13" height="1.5" fill="#000" x="0" y="6" /> </svg> assets/uikit-themes/master-dennis-miller/images/accordion-close.svg000064400000000325151666572370021565 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <rect width="13" height="1.5" fill="#000" x="0" y="6" /> <rect width="1.5" height="13" fill="#000" x="6" y="0" /> </svg> assets/uikit-themes/master-dennis-miller/images/divider-icon.svg000064400000000657151666572370021105 0ustar00<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M17.1472,0,16.1191,11.3106l-5.0806,2.9031L.7561,9.4358l2.722-4.6575,6.9555,5.0806,2.2379-1.27L11.7037.0605ZM.7561,20.565l10.2825-4.7784L16.1193,18.69,17.1472,30,11.7037,29.94l.9675-8.5281-2.2378-1.27-6.9555,5.08Zm25.766,3.8708-9.2539-6.5325V12.0967l9.2539-6.5325,2.7218,4.7179L21.3206,13.73v2.54l7.9232,3.4474Z" /> </svg> assets/uikit-themes/master-dennis-miller/images/section-title-image.svg000064400000000210151666572370022355 0ustar00<svg width="2" height="47" viewBox="0 0 2 47" xmlns="http://www.w3.org/2000/svg"> <rect width="2" height="47" fill="#000" /> </svg> assets/uikit-themes/master-dennis-miller/images/mask-default-image.svg000064400000000543151666572370022160 0ustar00<svg width="600" height="400" preserveAspectRatio="none" viewBox="0 0 600 400" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M7.4032,56.73c-29.26,58.5114,25.2494,184.803,216.7435,280.529C353.459,401.9,520.5582,429.0228,581.7512,357.7634c56.84-66.19-21.7454-199.8029-198.8642-291.6071C244.0666-5.7971,52.3318-33.113,7.4032,56.73Z" /> </svg> assets/uikit-themes/master-dennis-miller/images/box-decoration-secondary-image.svg000064400000000317151666572370024504 0ustar00<svg width="156" height="156" viewBox="0 0 156 156" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M25,54V25h29m77,29V25h-29m29,77v29h-29M25,102v29h29" /> </svg> assets/uikit-themes/master-dennis-miller/images/base-body-overlay.svg000064400000014476151666572370022061 0ustar00<svg width="1988" height="2480" viewBox="0 0 1988 2480" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#cd0000" points="995.5 495.5 871.5 495.5 871.5 371.5 995.5 371.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#cd0000" x="747.5" y="495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#cd0000" points="749.5 992.5 749.5 867.5 873.5 867.5 873.5 992.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#cd0000" x="749.5" y="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="124.5" x2="1992" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="1364.5" x2="1988" y2="1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="744.5" x2="1988" y2="744.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="1984.5" x2="1988" y2="1984.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="1487.5" x2="1988" y2="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="874" y1="867.5" x2="1987" y2="867.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="2107.5" x2="1988" y2="2107.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="371.5" x2="1988" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="1611.5" x2="1988" y2="1611.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="874" y1="992.5" x2="1987" y2="992.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="2231.5" x2="1988" y2="2231.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="495.5" x2="1988" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="247.5" x2="1988" y2="247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="1735.5" x2="1988" y2="1735.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="874" y1="1115.5" x2="1987" y2="1115.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="1239.5" x2="1988" y2="1239.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="872" y1="619.5" x2="1988" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="1859.5" x2="1988" y2="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="1243.5" x2="1243.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="1367.5" x2="1367.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="1491.5" x2="1491.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="1615.5" x2="1615.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="1739.5" x2="1739.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="1863.5" x2="1863.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="1987.5" x2="1987.5" y2="2480" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#cd0000" x="124.5" y="1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#cd0000" points="124.5 371.5 248.5 371.5 248.5 495.5 124.5 495.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#cd0000" points="995.5 1859.5 871.5 1859.5 871.5 1735.5 995.5 1735.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#cd0000" x="747.5" y="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#cd0000" x="248.5" y="1487.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="124.5" y1="1612.5" x2="124.5" y2="1488.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#cd0000" x="124.5" y="1611.5" shape-rendering="crispEdges" /> <rect width="124" height="123" fill="none" stroke="#cd0000" x="124.5" y="1364.5" shape-rendering="crispEdges" /> <rect width="124" height="125" fill="none" stroke="#cd0000" x="248.5" y="1859.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="124.5" y1="1984.5" x2="124.5" y2="1859.5" shape-rendering="crispEdges" /> <rect width="124" height="124" fill="none" stroke="#cd0000" x="124.5" y="1984.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#cd0000" points="248.5 1735.5 248.5 1859.5 124.5 1859.5 124.5 1735.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#cd0000" points="124.5 992.5 124.5 1115.5 0 1115.5" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#cd0000" points="0 1239.5 124.5 1239.5 124.5 1364.5 0 1364.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="2479.5" x2="1988" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="124.5" y1="2479.5" y2="2479.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="996" y1="2355.5" x2="1988" y2="2355.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="124.5" x2="124.5" y2="620" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" y1="124.5" x2="124" y2="124.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" y1="371.5" x2="124" y2="371.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" y1="495.5" x2="124" y2="495.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" y1="619.5" x2="124" y2="619.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" y1="247.55" x2="124" y2="247.55" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="995.5" x2="995.5" y2="2480" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" x1="1119.5" x2="1119.5" y2="2479.99" shape-rendering="crispEdges" /> <polyline fill="none" stroke="#cd0000" points="123.5 124.5 248.5 124.5 248.5 247.5 124.5 247.5" shape-rendering="crispEdges" /> <line fill="none" stroke="#cd0000" y1="992.5" x2="125" y2="992.5" shape-rendering="crispEdges" /> </svg> assets/uikit-themes/master-dennis-miller/images/box-decoration-default-image.svg000064400000002031151666572370024134 0ustar00<svg width="420" height="170" viewBox="0 0 420 170" xmlns="http://www.w3.org/2000/svg"> <rect width="2" height="46" fill="#000" x="22" y="124" /> <rect width="46" height="2" fill="#000" y="146" /> <rect width="2" height="46" fill="#000" x="22" /> <rect width="46" height="2" fill="#000" y="22" /> <rect width="2" height="46" fill="#000" x="146" /> <rect width="46" height="2" fill="#000" x="124" y="22" /> <rect width="2" height="46" fill="#000" x="146" y="124" /> <rect width="46" height="2" fill="#000" x="124" y="146" /> <rect width="2" height="46" fill="#000" x="271" y="124" /> <rect width="46" height="2" fill="#000" x="249" y="146" /> <rect width="2" height="46" fill="#000" x="271" /> <rect width="46" height="2" fill="#000" x="249" y="22" /> <rect width="2" height="46" fill="#000" x="395" /> <rect width="46" height="2" fill="#000" x="373" y="22" /> <rect width="2" height="46" fill="#000" x="395" y="124" /> <rect width="46" height="2" fill="#000" x="373" y="146" /> </svg> assets/uikit-themes/master-dennis-miller/styles/black-green.less000064400000015674151666572370021135 0ustar00// // Global // @global-color: #FFFFFF; @global-emphasis-color: #FFFFFF; @global-inverse-color: #111212; @global-link-color: #D4ED17; @global-muted-color: rgba(255, 255, 255, 0.7); @global-link-hover-color: #acc10d; @global-background: #111212; @global-danger-background: #FC4C4D; @global-muted-background: #1A1B1B; @global-primary-background: #D4ED17; @global-secondary-background: #FFFFFF; @global-success-background: #4acd4c; @global-warning-background: #FEAC50; @global-border: rgba(255, 255, 255, 0.1); @global-small-box-shadow: 2px 4px 16px rgba(0,0,0,0.5); @global-medium-box-shadow: 2px 12px 32px rgba(0,0,0,0.5); @global-large-box-shadow: 2px 18px 48px rgba(0,0,0,0.5); @global-xlarge-box-shadow: 2px 26px 56px rgba(0,0,0,0.5); // // Theme // @theme-page-container-color-mode: light; @theme-toolbar-background: @global-muted-background; // // Alert // @alert-primary-color: @global-inverse-color; @alert-success-color: @global-inverse-color; @alert-warning-color: @global-inverse-color; @alert-danger-color: @global-inverse-color; // // Badge // @badge-color: @global-inverse-color; // // Base // @base-code-color: @global-primary-background; @base-em-color: @global-primary-background; @base-ins-background: @global-primary-background; @base-ins-color: @global-background; @base-mark-background: @global-primary-background; @base-mark-color: @global-background; @internal-base-body-overlay-image: "../../master-dennis-miller/images/styles/black-green/base-body-overlay.svg"; @internal-base-body-overlay-opacity: 0.08; // // Button // @button-default-active-background: @global-primary-background; @button-primary-active-background: @global-primary-background; @button-secondary-active-background: @global-color; @button-danger-color: @global-inverse-color; @button-danger-hover-color: @global-inverse-color; @button-danger-active-color: @global-inverse-color; // // Card // @card-default-hover-background: lighten(@card-default-background, 3%); @card-default-color-mode: light; @card-primary-color-mode: dark; @card-secondary-color-mode: dark; // // Dropbar // @dropbar-background: @global-muted-background; @dropbar-color-mode: light; // // Dropdown // @dropdown-background: @global-muted-background; @dropdown-color-mode: light; @dropdown-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-header-color: @global-emphasis-color; @dropdown-nav-divider-border: @global-border; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Form Range // @form-range-track-background: @global-border; @form-range-track-focus-background: fade(@form-range-track-background, 70%); // // Form // @form-radio-background: fade(@global-border, 12%); // // Icon // @icon-button-background: @global-primary-background; @icon-button-color: @global-inverse-color; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: @global-primary-background; @icon-button-active-color: @global-inverse-color; // // Inverse // @inverse-global-border: fade(@global-inverse-color, 10%); @inverse-global-color-mode: dark; @inverse-section-title-dash-color: @global-primary-background; @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-hover-background: @global-background; @inverse-button-primary-hover-color: @inverse-global-inverse-color; @inverse-button-primary-active-background: @global-primary-background; @inverse-button-primary-active-color: @global-inverse-color; @inverse-button-secondary-hover-color: @global-inverse-color; @inverse-button-secondary-active-color: @global-inverse-color; @inverse-icon-button-color: @global-inverse-color; @inverse-icon-button-hover-background: @global-background; @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-color: @global-inverse-color; @inverse-marker-background: @global-background; @inverse-marker-color: @inverse-global-inverse-color; @inverse-marker-hover-background: @global-primary-background; @inverse-marker-hover-color: @global-inverse-color; @inverse-pagination-item-hover-color: @global-inverse-color; @inverse-pagination-item-active-color: @global-inverse-color; @inverse-slidenav-hover-background: @global-background; @inverse-slidenav-hover-color: @inverse-global-inverse-color; @inverse-slidenav-active-background: @global-primary-background; @inverse-slidenav-active-color: @inverse-global-inverse-color; @inverse-subnav-pill-item-active-color: @global-inverse-color; // // Lightbox // @lightbox-background: @global-background; // // Marker // @marker-color: @global-inverse-color; // // Navbar // @navbar-color-mode: light; @navbar-dropdown-background: @global-muted-background; @navbar-dropdown-color-mode: light; @navbar-dropdown-color: @global-color; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-header-color: @global-emphasis-color; @navbar-dropdown-nav-divider-border: @global-border; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-active-color: @global-emphasis-color; // // Notification // @notification-message-primary-color-mode: light; @notification-message-success-color-mode: light; @notification-message-warning-color-mode: light; @notification-message-danger-color-mode: light; // // Offcanvas // @offcanvas-bar-color-mode: light; @offcanvas-overlay-background: fade(@global-background, 40%); // // Overlay // @overlay-default-color-mode: light; @overlay-primary-color-mode: dark; // // Pagination // @pagination-item-hover-color: @global-inverse-color; @pagination-item-active-color: @global-inverse-color; // // Progress // @progress-background: @global-border; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; @section-secondary-color-mode: dark; // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: dark; @tile-secondary-color-mode: dark; // // Utility // @box-shadow-bottom-background: fade(darken(@global-background, 20%), 50%); @dragover-box-shadow: @global-small-box-shadow; // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 15%); assets/uikit-themes/master-dennis-miller/styles/colored-blue.less000064400000011366151666572370021331 0ustar00// // Global // @global-color: #FFFFFF; @global-emphasis-color: #FFFFFF; @global-inverse-color: #001C57; @global-link-color: #19D3FF; @global-muted-color: rgba(255, 255, 255, 0.6); @global-link-hover-color: #12A9CD; @global-background: #1458E4; @global-danger-background: #FF7D80; @global-muted-background: #2C70FF; @global-primary-background: #19D3FF; @global-secondary-background: #001C57; @global-success-background: #59E98F; @global-warning-background: #FFBA74; @global-border: rgba(255, 255, 255, 0.2); // // Theme // @theme-page-container-color-mode: light; @section-title-color: @global-color; // // Base // @base-ins-background: fade(@global-primary-background, 40%); @base-mark-background: fade(@global-primary-background, 40%); @internal-base-body-overlay-image: "../../master-dennis-miller/images/styles/colored-blue/base-body-overlay.svg"; // // Button // @button-default-border: @global-color; @button-default-active-background: darken(@button-default-hover-background, 5%); @button-primary-hover-color: @global-color; @button-primary-active-color: @global-color; @button-secondary-color: @global-color; @button-secondary-active-background: lighten(@button-secondary-hover-background, 12%); @button-secondary-active-color: @global-inverse-color; @button-danger-color: @global-color; @button-danger-hover-color: @global-color; @button-danger-active-color: @global-color; // // Card // @card-default-color-mode: light; @card-primary-color-mode: dark; @card-primary-hover-background: lighten(@card-primary-background, 15%); @card-secondary-color: @global-color; @card-secondary-hover-background: lighten(@card-secondary-background, 15%); // // Dropbar // @dropbar-background: @global-muted-background; // // Dropdown // @dropdown-background: @global-muted-background; @dropdown-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-header-color: @global-emphasis-color; @dropdown-nav-divider-border: @global-border; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Form // @form-radio-background: @global-border; @form-radio-focus-background: fade(@form-radio-background, 50%); @form-radio-disabled-background: fade(@form-radio-background, 10%); // // Form Range // @form-range-track-background: @global-border; @form-range-track-focus-background: fade(@global-border, 50%); // // Icon // @icon-button-hover-color: @global-color; @icon-button-active-background: lighten(@icon-button-background, 12%); // // Inverse // @inverse-global-color-mode: dark; @inverse-global-muted-background: fade(@global-inverse-color, 5%); @inverse-breadcrumb-item-hover-color: @inverse-global-muted-color; // // Marker // @marker-hover-color: @global-color; // // Navbar // @navbar-color-mode: light; @navbar-dropdown-background: @global-muted-background; @navbar-dropdown-color-mode: light; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-header-color: @global-emphasis-color; @navbar-dropdown-nav-divider-border: @global-border; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-active-color: @global-emphasis-color; // // Notification // @notification-message-primary-color-mode: light; @notification-message-success-color-mode: light; @notification-message-warning-color-mode: light; @notification-message-danger-color-mode: light; // // Offcanvas // @offcanvas-bar-background: @global-muted-background; @offcanvas-bar-color-mode: light; // // Overlay // @overlay-default-color-mode: light; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; // // Slidenav // @slidenav-hover-color: @global-color; @slidenav-active-background: fade(@slidenav-hover-background, 80%); @slidenav-active-color: @global-color; // // Subnav // @subnav-item-color: @global-color; // // Table // @table-row-active-background: fade(@global-muted-background, 50%); @table-striped-row-background: fade(@global-muted-background, 50%); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: dark; // // Tooltip // @tooltip-color: @global-color; // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 15%); assets/uikit-themes/master-dennis-miller/styles/black-red.less000064400000014763151666572370020605 0ustar00// // Global // @global-color: #FFFFFF; @global-emphasis-color: #FFFFFF; @global-inverse-color: #111212; @global-link-color: #CC0000; @global-link-hover-color: #B70000; @global-muted-color: rgba(255, 255, 255, 0.7); @global-background: #111212; @global-danger-background: #F03D3E; @global-muted-background: #1A1B1B; @global-primary-background: #FF1414; @global-secondary-background: #FFFFFF; @global-success-background: #41BA51; @global-warning-background: #fea12c; @global-border: #3C4040; @global-small-box-shadow: 2px 4px 16px rgba(0,0,0,0.5); @global-medium-box-shadow: 2px 12px 32px rgba(0,0,0,0.5); @global-large-box-shadow: 2px 18px 48px rgba(0,0,0,0.5); @global-xlarge-box-shadow: 2px 26px 56px rgba(0,0,0,0.5); // // Theme // @theme-page-container-color-mode: light; @theme-toolbar-background: @global-muted-background; // // Alert // @alert-primary-color: @global-color; @alert-success-color: @global-color; @alert-warning-color: @global-color; @alert-danger-color: @global-color; // // Badge // @badge-color: @global-color; // // Base // @base-ins-background: fade(@global-primary-background, 40%); @base-mark-background: fade(@global-primary-background, 40%); @internal-base-body-overlay-image: "../../master-dennis-miller/images/styles/black-red/base-body-overlay.svg"; // // Button // @button-primary-color: @global-color; @button-secondary-hover-color: @global-color; @button-secondary-active-color: @global-color; @button-danger-color: @global-color; @button-danger-hover-color: @global-color; @button-danger-active-color: @global-color; // // Card // @card-badge-color: @global-color; @card-default-color-mode: light; @card-primary-color: @global-color; @card-primary-hover-background: @global-muted-background; @card-secondary-color-mode: dark; @card-secondary-hover-background: darken(@card-secondary-background, 4%); // // Dropbar // @dropbar-background: @global-muted-background; @dropbar-color-mode: light; // // Dropdown // @dropdown-background: @global-muted-background; @dropdown-color-mode: light; @dropdown-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-header-color: @global-emphasis-color; @dropdown-nav-divider-border: @global-border; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Form Range // @form-range-track-background: @global-border; @form-range-track-focus-background: fade(@form-range-track-background, 70%); // // Form // @form-radio-background: @global-border; @form-radio-checked-icon-color: @global-color; @form-radio-disabled-background: fade(@form-radio-background, 10%); // // Icon // @icon-button-background: @global-primary-background; @icon-button-color: @global-color; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: @global-primary-background; @icon-button-active-color: @global-color; // // Inverse // @inverse-global-color-mode: dark; @inverse-section-title-dash-color: @global-primary-background; @inverse-badge-color: @global-color; @inverse-base-link-color: @global-primary-background; @inverse-base-link-hover-color: @global-link-hover-color; @inverse-button-primary-color: @global-color; @inverse-button-primary-hover-color: @global-color; @inverse-button-primary-active-color: @global-color; @inverse-button-secondary-hover-color: @global-color; @inverse-button-secondary-active-color: @global-color; @inverse-icon-button-color: @global-color; @inverse-icon-button-hover-color: @global-color; @inverse-icon-button-active-color: fade(@inverse-icon-button-hover-color, 85%); @inverse-marker-background: @global-background; @inverse-marker-hover-background: @global-primary-background; @inverse-pagination-item-hover-color: @global-color; @inverse-pagination-item-active-color: @global-color; @inverse-slidenav-color: @global-color; @inverse-slidenav-hover-color: @global-color; @inverse-slidenav-active-color: @global-color; @inverse-subnav-pill-item-active-color: @global-color; // // Label // @label-color: @global-color; @label-success-color: @global-color; @label-warning-color: @global-color; @label-danger-color: @global-color; // // Lightbox // @lightbox-background: @global-background; // // Marker // @marker-color: @global-color; // // Navbar // @navbar-color-mode: light; @navbar-dropdown-background: @global-muted-background; @navbar-dropdown-color-mode: light; @navbar-dropdown-color: @global-color; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-header-color: @global-emphasis-color; @navbar-dropdown-nav-divider-border: @global-border; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-active-color: @global-emphasis-color; // // Notification // @notification-message-primary-color-mode: light; @notification-message-success-color-mode: light; @notification-message-warning-color-mode: light; @notification-message-danger-color-mode: light; // // Offcanvas // @offcanvas-bar-color-mode: light; @offcanvas-overlay-background: fade(@global-background, 40%); // // Overlay // @overlay-default-color-mode: light; // // Pagination // @pagination-item-hover-color: @global-color; @pagination-item-active-color: @global-color; // // Progress // @progress-background: @global-border; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; @section-secondary-color-mode: dark; // // Slidenav // @slidenav-color: @global-color; // // Subnav // @subnav-pill-item-active-color: @global-color; // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-secondary-color-mode: dark; // // Utility // @box-shadow-bottom-background: fade(darken(@global-background, 20%), 50%); @dragover-box-shadow: @global-small-box-shadow; // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 15%); assets/uikit-themes/master-dennis-miller/styles/white-green.less000064400000001713151666572370021166 0ustar00// // Global // @global-color: #3A3B32; @global-emphasis-color: #3A3B32; @global-link-color: #959B6B; @global-link-hover-color: #888c6f; @global-danger-background: #F06576; @global-muted-background: #F5F5F5; @global-primary-background: #72755F; @global-secondary-background: #262626; @global-success-background: #8ACC8F; @global-warning-background: #F7BE6A; // // Base // @internal-base-body-overlay-image: "../../master-dennis-miller/images/styles/white-green/base-body-overlay.svg"; // // Button // @button-default-border: @global-border; @button-default-hover-background: @global-secondary-background; // // Form // @form-border: fade(@global-primary-background, 40%); // // Search // @search-default-border: fade(@global-primary-background, 40%); // // Table // @table-row-active-background: fade(@global-muted-background, 60%); @table-striped-row-background: fade(@global-muted-background, 60%); assets/uikit-themes/master-dennis-miller/styles/colored-yellow.less000064400000014173151666572370021714 0ustar00// // Global // @global-color: #FFFFFF; @global-emphasis-color: #FFFFFF; @global-inverse-color: #141415; @global-link-color: #FFF72C; @global-muted-color: rgba(255, 255, 255, 0.7); @global-link-hover-color: #E2DB17; @global-background: #DE4249; @global-danger-background: #ec575e; @global-muted-background: #ce3a40; @global-primary-background: #FFF72C; @global-secondary-background: #141415; @global-success-background: #42c65c; @global-warning-background: #FFC33E; @global-border: rgba(255, 255, 255, 0.2); // // Theme // @theme-page-container-color-mode: light; @section-title-color: @global-color; // // Alert // @alert-color: @global-color; @alert-success-color: @global-inverse-color; @alert-warning-color: @global-inverse-color; @alert-danger-color: @global-inverse-color; // // Base // @base-code-color: @global-primary-background; @base-em-color: @global-primary-background; @base-ins-background: @global-primary-background; @base-ins-color: @global-inverse-color; @base-mark-background: @global-primary-background; @base-mark-color: @global-inverse-color; @base-pre-color: @global-color; @internal-base-body-overlay-image: "../../master-dennis-miller/images/styles/colored-yellow/base-body-overlay.svg"; // // Button // @button-default-border: @global-color; @button-default-hover-background: @global-primary-background; @button-primary-hover-color: @global-color; @button-primary-active-background: @global-primary-background; @button-primary-active-color: @global-inverse-color; @button-secondary-color: @global-color; @button-secondary-active-background: @global-secondary-background; @button-secondary-active-color: @global-color; @button-danger-color: @global-inverse-color; @button-danger-hover-color: @global-inverse-color; @button-danger-active-color: @global-inverse-color; @button-disabled-color: @global-muted-color; // // Card // @card-default-color: @global-color; @card-default-color-mode: light; @card-primary-color-mode: dark; @card-primary-hover-background: @global-color; @card-secondary-color: @global-color; @card-secondary-hover-background: lighten(@card-secondary-background, 7%); // // Dropbar // @dropbar-background: @global-muted-background; // // Dropdown // @dropdown-background: @global-muted-background; @dropdown-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-header-color: @global-emphasis-color; @dropdown-nav-divider-border: @global-border; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Form // @form-danger-border: saturate(darken(@global-danger-background, 30%), 15%); @form-danger-color: saturate(darken(@global-danger-background, 30%), 15%); // // Heading // @heading-divider-border: @global-color; // // Icon // @icon-link-color: @global-color; @icon-button-hover-color: @global-color; // // Inverse // @inverse-global-color-mode: dark; @inverse-global-border: fade(@global-inverse-color, 10%); @inverse-base-link-color: @global-background; @inverse-base-link-hover-color: saturate(darken(@inverse-base-link-color, 15%), 15%); @inverse-card-badge-color: @global-inverse-color; @inverse-marker-background: @global-inverse-color; @inverse-marker-color: @global-color; @inverse-marker-hover-background: @inverse-global-primary-background; @inverse-marker-hover-color: @global-inverse-color; @inverse-text-primary-color: saturate(darken(@inverse-global-primary-background, 13%), 7%); @inverse-text-secondary-color: saturate(darken(@inverse-global-primary-background, 13%), 20%); // // Label // @label-success-color: @global-inverse-color; @label-warning-color: @global-inverse-color; @label-danger-color: @global-inverse-color; // // Marker // @marker-hover-color: @global-primary-background; // // Nav // @nav-default-item-color: @global-color; @nav-default-sublist-item-color: @global-color; @nav-primary-item-color: @global-color; @nav-primary-sublist-item-color: @global-color; // // Navbar // @navbar-color-mode: light; @navbar-dropdown-background: @global-muted-background; @navbar-dropdown-color-mode: light; @navbar-dropdown-color: @global-color; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-header-color: @global-emphasis-color; @navbar-dropdown-nav-divider-border: @global-border; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-active-color: @global-emphasis-color; @navbar-toggle-color: @global-color; // // Notification // @notification-message-primary-color-mode: light; @notification-message-success-color-mode: light; @notification-message-warning-color-mode: light; @notification-message-danger-color-mode: light; // // Offcanvas // @offcanvas-bar-color-mode: light; // // Overlay // @overlay-default-color-mode: light; @overlay-primary-color-mode: dark; // // Slidenav // @slidenav-hover-color: @global-color; @slidenav-active-color: @global-color; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; // // Table // @table-row-active-background: rgba(255, 255, 255, 0.1); @table-striped-row-background: rgba(255, 255, 255, 0.1); @inverse-table-row-active-background: fade(@inverse-global-muted-background, 3%); // // Text // @text-danger-color: saturate(darken(@global-danger-background, 35%), 15%); // // Tile // @tile-primary-color-mode: dark; @tile-default-color-mode: light; @tile-muted-color-mode: light; // // Tooltip // @tooltip-color: @global-color; assets/uikit-themes/master-dennis-miller/_import.less000064400000066235151666572370017110 0ustar00@internal-fonts: 'Archivo:400,500|Sora:600,700'; @global-font-family: Archivo; @global-font-size: 16px; @global-line-height: 1.6; @global-2xlarge-font-size: 42px; @global-xlarge-font-size: 32px; @global-large-font-size: 24px; @global-medium-font-size: 20px; @global-small-font-size: 14px; @global-primary-font-family: Sora; @global-primary-font-weight: 600; @global-primary-text-transform: uppercase; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: inherit; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #000; @global-emphasis-color: #000; @global-muted-color: #9D9D9D; @global-link-color: #F62423; @global-link-hover-color: #CE1B19; @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #F8F8F8; @global-primary-background: #F62423; @global-secondary-background: #1B1B1B; @global-success-background: #03B972; @global-warning-background: #ffc41e; @global-danger-background: #ff4141; @global-border-width: 1px; @global-border: #E6E6E6; @global-border-radius: 2px; @global-small-box-shadow: 2px 4px 16px rgba(0,0,0,0.08); @global-medium-box-shadow: 2px 12px 32px rgba(0,0,0,0.08); @global-large-box-shadow: 2px 18px 48px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 2px 26px 56px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 45px; @global-control-small-height: 35px; @global-control-large-height: 65px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-ins-background: fade(@global-primary-background, 10%); @base-mark-background: fade(@global-primary-background, 10%); @base-quote-font-style: normal; @base-h1-font-size: @global-xlarge-font-size; @base-blockquote-font-size: @global-large-font-size; @base-blockquote-line-height: 1.3; @base-blockquote-font-style: normal; @base-blockquote-footer-margin-top: @global-margin; @base-blockquote-footer-font-size: @global-font-size; @base-selection-background: @global-primary-background; @internal-base-body-mode: overlay; @internal-base-body-overlay-image: "../../master-dennis-miller/images/base-body-overlay.svg"; @internal-base-body-overlay-opacity: 0.12; @base-blockquote-padding-left: @global-medium-gutter; @base-pre-padding: @global-margin; @base-pre-background: @global-muted-background; @base-blockquote-footer-em-dash: false; @base-h4-font-family: @global-primary-font-family; @base-h4-font-weight: @global-primary-font-weight; @base-h4-text-transform: none; @base-h4-letter-spacing: @global-primary-letter-spacing; @base-h4-font-style: @global-primary-font-style; @base-h5-font-family: @global-primary-font-family; @base-h5-font-weight: @global-primary-font-weight; @base-h5-text-transform: none; @base-h5-letter-spacing: @global-primary-letter-spacing; @base-h5-font-style: @global-primary-font-style; @base-h6-font-family: @global-primary-font-family; @base-h6-font-weight: @global-primary-font-weight; @base-h6-text-transform: none; @base-h6-letter-spacing: @global-primary-letter-spacing; @base-h6-font-style: @global-primary-font-style; @base-blockquote-footer-font-family: @global-font-family; @base-blockquote-footer-font-weight: 400; @base-blockquote-footer-text-transform: none; @base-blockquote-border-mode: -left; @base-blockquote-border-width: 3px; @base-blockquote-border: @global-primary-background; .hook-base-body() { &::after { position: absolute; background-position: 50% 0; } } @inverse-base-link-hover-color: @inverse-global-color; @inverse-base-blockquote-border: @global-primary-background; @link-text-hover-color: @global-primary-background; @heading-divider-padding-bottom: ~'calc(4px + 0.02em)'; @heading-divider-border-width: ~'calc(0.4px + 0.09em)'; @heading-divider-border: @global-emphasis-color; @heading-bullet-border-width: ~'calc(2px + 0.1em)'; @heading-bullet-border: @global-primary-background; @heading-line-width: 200px; @heading-line-border-width: ~'calc(0.4px + 0.09em)'; @heading-line-border: @global-primary-background; @inverse-heading-divider-border: @global-primary-background; @inverse-heading-bullet-border: @global-primary-background; @inverse-heading-line-border: @global-primary-background; @divider-icon-width: 54px; @divider-icon-height: 30px; @divider-icon-color: @global-primary-background; @divider-icon-line-width: 40px; @divider-icon-line-border-width: 2px; @divider-icon-line-border: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-dennis-miller/images/divider-icon.svg"; @divider-small-width: 70px; @divider-small-border-width: 3px; @divider-small-border: @global-primary-background; @divider-vertical-height: 70px; @divider-vertical-border-width: 3px; @divider-vertical-border: @global-primary-background; @inverse-divider-icon-color: @global-primary-background; @inverse-divider-icon-line-border: transparent; @inverse-divider-small-border: @global-primary-background; @inverse-divider-vertical-border: @global-primary-background; @table-row-active-background: @global-muted-background; @inverse-table-row-active-background: fade(@inverse-global-primary-background, 7%); @icon-link-color: @global-emphasis-color; @icon-link-hover-color: @global-primary-background; @icon-link-active-color: @global-primary-background; @icon-button-size: 50px; @icon-button-background: @global-primary-background; @icon-button-color: @global-inverse-color; @icon-button-hover-background: @global-secondary-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-color: @global-inverse-color; @inverse-icon-link-color: @inverse-global-emphasis-color; @inverse-icon-button-background: @global-primary-background; @inverse-icon-button-color: @global-inverse-color; @inverse-icon-button-hover-background: darken(@global-primary-background, 10%); @inverse-icon-button-hover-color: @global-inverse-color; @form-range-track-height: 2px; @form-range-thumb-height: 12px; @form-range-thumb-background: @global-primary-background; @form-padding-horizontal: 0; @form-padding-vertical: 7px; @form-background: transparent; @form-disabled-background: transparent; @form-placeholder-color: @global-color; @form-icon-color: @global-color; @form-icon-hover-color: @global-muted-color; @form-multi-line-padding-horizontal: 10px; @form-border-mode: -bottom; @form-border-width: 2px; @form-border: @global-color; @form-focus-border: @global-primary-background; @form-disabled-border: fade(@form-border, 8%); @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @global-color; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-focus-color: @global-inverse-color; @inverse-form-border: @global-inverse-color; @inverse-form-focus-border: @global-primary-background; @button-large-font-size: @global-font-size; @button-small-padding-horizontal: 20px; @button-large-padding-horizontal: 50px; @button-default-background: transparent; @button-default-hover-background: @button-default-border; @button-default-hover-color: @global-inverse-color; @button-default-active-background: lighten(@button-default-hover-background, 10%); @button-default-active-color: @global-inverse-color; @button-primary-hover-background: @global-secondary-background; @button-primary-active-background: lighten(@button-primary-hover-background, 10%); @button-secondary-hover-background: @global-primary-background; @button-secondary-active-background: darken(@button-secondary-hover-background, 10%); @button-link-hover-color: @global-primary-background; @button-text-border-width: 2px; @button-text-border: @global-primary-background; @button-text-hover-border: @global-secondary-background; @internal-button-text-line-bottom: -4px; @internal-button-text-line-right: 25%; @button-font-family: Archivo; @button-font-weight: 500; @button-text-transform: inherit; @button-letter-spacing: inherit; @button-font-style: inherit; @button-border-width: 2px; @button-default-border: @global-secondary-background; @button-border-radius: 500px; @inverse-button-default-background: transparent; @inverse-button-default-color: @global-inverse-color; @inverse-button-default-hover-background: @global-inverse-color; @inverse-button-default-active-background: darken(@inverse-button-default-hover-background, 10%); @inverse-button-primary-background: @global-primary-background; @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-hover-background: @global-inverse-color; @inverse-button-primary-active-background: darken(@inverse-button-primary-hover-background, 10%); @inverse-button-secondary-background: @global-inverse-color; @inverse-button-secondary-hover-background: @global-primary-background; @inverse-button-secondary-hover-color: @global-inverse-color; @inverse-button-secondary-active-background: darken(@global-primary-background, 10%); @inverse-button-secondary-active-color: @global-inverse-color; @inverse-button-text-border: @global-primary-background; @inverse-button-default-border: @global-inverse-color; @progress-height: 6px; @card-badge-height: 24px; @card-badge-padding-horizontal: 12px; @card-badge-font-size: 11px; @card-default-hover-background: darken(@card-default-background, 3%); @card-primary-hover-background: lighten(@global-secondary-background, 3%); @card-secondary-hover-background: @global-primary-background; @card-badge-font-weight: 500; @card-badge-text-transform: uppercase; @card-badge-letter-spacing: 0.5px; @card-badge-border-radius: 500px; @close-color: @global-primary-background; @marker-background: @global-primary-background; @marker-hover-background: @global-secondary-background; @inverse-marker-background: @inverse-global-primary-background; @inverse-marker-color: @global-inverse-color; @inverse-marker-hover-color: @global-emphasis-color; @inverse-marker-hover-background: @global-inverse-color; @totop-color: @global-emphasis-color; @totop-hover-color: @global-primary-background; @totop-active-color: darken(@global-primary-background, 10%); @alert-primary-background: @global-primary-background; @alert-primary-color: @global-inverse-color; @alert-success-background: @global-success-background; @alert-success-color: @global-inverse-color; @alert-warning-background: @global-warning-background; @alert-warning-color: @global-inverse-color; @alert-danger-background: @global-danger-background; @alert-danger-color: @global-inverse-color; @inverse-badge-color: @global-inverse-color; @label-padding-vertical: 3px; @label-padding-horizontal: 8px; @label-font-size: 12px; @label-font-weight: 500; @label-text-transform: uppercase; @inverse-label-background: @inverse-global-emphasis-color; @overlay-padding-horizontal: calc(@global-gutter - 12px); @overlay-padding-vertical: calc(@global-gutter - 12px); @overlay-primary-background: fade(@global-primary-background, 80%); @comment-title-font-size: @global-font-size; @search-placeholder-color: @global-emphasis-color; @search-icon-color: @global-emphasis-color; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-default-icon-padding: 12px; @search-navbar-padding-horizontal: 20px; @search-navbar-background: transparent; @search-medium-padding-horizontal: 0; @search-large-padding-horizontal: 0; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-primary-background; @search-navbar-font-family: @global-primary-font-family; @search-navbar-font-weight: @global-primary-font-weight; @search-navbar-text-transform: @global-primary-text-transform; @search-navbar-letter-spacing: @global-primary-letter-spacing; @search-navbar-font-style: @global-primary-font-style; @search-default-border-mode: -bottom; @search-default-border-width: 2px; @search-default-border: @global-emphasis-color; @search-default-focus-border: @global-primary-background; @search-navbar-border-width: 2px; @search-navbar-border: @global-emphasis-color; @search-navbar-focus-border: @global-primary-background; @search-medium-border-mode: -bottom; @search-medium-border-width: 2px; @search-medium-border: @global-emphasis-color; @search-medium-focus-border: @global-primary-background; @search-large-border-mode: -bottom; @search-large-border-width: 2px; @search-large-border: @global-emphasis-color; @search-large-focus-border: @global-primary-background; @search-navbar-border-radius: 500px; @inverse-search-color: @inverse-global-emphasis-color; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-navbar-background: transparent; @inverse-search-navbar-focus-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-default-border: @global-inverse-color; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-border: @global-inverse-color; @inverse-search-navbar-focus-border: darken(@inverse-global-primary-background, 20%); @inverse-search-medium-border: @global-inverse-color; @inverse-search-medium-focus-border: @inverse-global-primary-background; @inverse-search-large-border: @global-inverse-color; @inverse-search-large-focus-border: @inverse-global-primary-background; @accordion-item-margin-top: 25px; @accordion-title-hover-color: @global-primary-background; @internal-accordion-icon-close-image: "../../../../uikit-themes/master-dennis-miller/images/accordion-close.svg"; @internal-accordion-icon-open-image: "../../../../uikit-themes/master-dennis-miller/images/accordion-open.svg"; @accordion-title-text-transform: none; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-padding: 30px; @dropdown-background: @global-secondary-background; @dropdown-color: @inverse-global-color; @dropdown-color-mode: light; @dropdown-nav-item-hover-color: @global-inverse-color; @dropdown-nav-subtitle-font-size: 13px; @dropdown-nav-header-color: @global-inverse-color; @dropdown-nav-divider-border: fade(@global-inverse-color, 7%); @dropdown-nav-sublist-item-hover-color: @global-inverse-color; @dropdown-nav-subtitle-line-height: 1.4; @dropbar-background: @global-secondary-background; @dropbar-color-mode: light; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-overlay-background: fade(@global-secondary-background, 30%); @leader-letter-spacing: -2px; @notification-message-background: @global-background; @notification-message-primary-color: @global-color; @notification-message-success-color: @global-color; @notification-message-warning-color: @global-color; @notification-message-danger-color: @global-color; @notification-message-primary-background: @global-background; @notification-message-success-background: @global-background; @notification-message-warning-background: @global-background; @notification-message-danger-background: @global-background; @notification-message-primary-color-mode: dark; @notification-message-success-color-mode: dark; @notification-message-warning-color-mode: dark; @notification-message-danger-color-mode: dark; @notification-message-border-width: 2px; @notification-message-border: @global-border; @notification-message-primary-border: @global-primary-background; @notification-message-success-border: @global-success-background; @notification-message-warning-border: @global-warning-background; @notification-message-danger-border: @global-danger-background; @tooltip-background: @global-secondary-background; @countdown-item-color: @global-primary-background; @countdown-item-font-family: @global-primary-font-family; @countdown-item-font-weight: 700; @countdown-item-letter-spacing: @global-primary-letter-spacing; @countdown-item-font-style: @global-primary-font-style; @countdown-label-color: @global-emphasis-color; @inverse-countdown-item-color: @global-primary-background; @nav-default-item-color: @global-emphasis-color; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-default-subtitle-font-size: 13px; @nav-default-sublist-item-color: @global-emphasis-color; @nav-default-sublist-item-hover-color: @global-primary-background; @nav-default-sublist-item-active-color: @global-primary-background; @nav-primary-item-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-sublist-font-size: @global-font-size; @nav-primary-sublist-item-color: @global-emphasis-color; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-secondary-font-size: 15px; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-subtitle-active-color: @global-primary-background; @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-secondary-sublist-item-color: @global-color; @nav-secondary-sublist-item-hover-color: @global-primary-background; @nav-secondary-sublist-item-active-color: @global-primary-background; @nav-dividers-margin-top: 10px; @nav-secondary-margin-top: 8px; @nav-header-font-weight: 500; @nav-default-subtitle-line-height: 1.4; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-text-transform: none; @nav-secondary-font-family: @global-primary-font-family; @nav-secondary-font-weight: @global-primary-font-weight; @nav-secondary-text-transform: inherit; @nav-secondary-letter-spacing: @global-primary-letter-spacing; @nav-secondary-font-style: @global-primary-font-style; @nav-secondary-subtitle-font-family: @global-font-family; @nav-secondary-subtitle-font-weight: normal; @inverse-nav-default-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-default-sublist-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-gap: 38px; @navbar-nav-gap: 38px; @navbar-nav-item-height: 90px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-font-size: 15px; @navbar-nav-item-font-family: @global-primary-font-family; @navbar-nav-item-hover-color: @global-primary-background; @navbar-nav-item-onclick-color: darken(@global-primary-background, 10%); @navbar-nav-item-active-color: @global-primary-background; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-primary-background; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 30px; @navbar-dropdown-background: @global-secondary-background; @navbar-dropdown-color: @global-inverse-color; @navbar-dropdown-color-mode: light; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-hover-color: @global-inverse-color; @navbar-dropdown-nav-item-active-color: @global-inverse-color; @navbar-dropdown-nav-subtitle-font-size: 13px; @navbar-dropdown-nav-header-color: @global-inverse-color; @navbar-dropdown-nav-divider-border: fade(@global-inverse-color, 15%); @navbar-dropdown-nav-sublist-item-hover-color: @global-inverse-color; @navbar-dropdown-nav-sublist-item-active-color: @global-inverse-color; @navbar-padding-top-m: 17px; @navbar-padding-bottom-m: 17px; @navbar-gap-m: 48px; @navbar-nav-gap-m: 48px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: (@navbar-nav-item-height / 3); @navbar-nav-item-line-height: 2px; @navbar-nav-item-line-background: @global-primary-background; @navbar-nav-item-line-transition-duration: 0.3s; @navbar-nav-item-line-hover-height: 2px; @navbar-nav-item-line-onclick-height: 2px; @navbar-nav-item-line-active-height: 2px; @navbar-primary-gap-m: 58px; @navbar-primary-nav-gap-m: 58px; @navbar-nav-item-font-weight: 700; @navbar-nav-item-text-transform: @global-primary-text-transform; @navbar-nav-item-letter-spacing: @global-primary-letter-spacing; @navbar-nav-item-font-style: @global-primary-font-style; @navbar-subtitle-font-family: @global-font-family; @navbar-subtitle-font-weight: 400; @navbar-subtitle-text-transform: none; @navbar-subtitle-line-height: 1.4; @navbar-primary-nav-item-font-size: 18px; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-dropdown-nav-subtitle-line-height: 1.4; @navbar-sticky-box-shadow: inset 0px 4px 0 0 @global-primary-background; @inverse-navbar-nav-item-color: @global-inverse-color; @inverse-navbar-nav-item-hover-color: @global-primary-background; @inverse-navbar-nav-item-onclick-color: @global-primary-background; @inverse-navbar-nav-item-active-color: @global-primary-background; @inverse-navbar-item-color: @global-inverse-color; @inverse-navbar-toggle-hover-color: @global-primary-background; @inverse-navbar-nav-item-line-background: @global-primary-background; @inverse-navbar-nav-item-line-hover-background: @global-primary-background; @inverse-navbar-nav-item-line-onclick-background: @global-primary-background; @inverse-navbar-nav-item-line-active-background: @global-primary-background; @subnav-item-color: @global-emphasis-color; @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; @subnav-divider-margin-horizontal: 24px; @subnav-divider-border-height: 0.9em; @subnav-pill-item-padding-horizontal: 17px; @subnav-pill-item-border-radius: 500px; @inverse-subnav-item-hover-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-hover-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-active-color: @inverse-global-emphasis-color; @breadcrumb-item-color: @global-color; @breadcrumb-item-hover-color: @global-primary-background; @breadcrumb-item-active-color: @global-emphasis-color; @breadcrumb-divider-margin-horizontal: @global-small-gutter; @breadcrumb-divider-color: @global-color; @breadcrumb-item-font-family: @global-font-family; @breadcrumb-item-font-weight: inherit; @breadcrumb-item-text-transform: none; @breadcrumb-item-letter-spacing: 0; @breadcrumb-item-font-style: inherit; @breadcrumb-item-disabled-color: @global-muted-color; @inverse-breadcrumb-item-color: @inverse-global-color; @inverse-breadcrumb-item-hover-color: @inverse-global-emphasis-color; @inverse-breadcrumb-item-disabled-color: @inverse-global-muted-color; @pagination-item-padding-vertical: 10px; @pagination-item-padding-horizontal: 18px; @pagination-item-color: @global-color; @pagination-item-hover-color: @global-inverse-color; @pagination-item-active-color: @global-inverse-color; @pagination-item-height: 47px; @pagination-item-hover-background: @global-secondary-background; @pagination-item-active-background: @global-primary-background; @pagination-item-font-size: 17px; @pagination-item-font-family: @global-primary-font-family; @pagination-item-font-weight: @global-primary-font-weight; @pagination-item-text-transform: @global-primary-text-transform; @pagination-item-letter-spacing: @global-primary-letter-spacing; @pagination-item-font-style: @global-primary-font-style; @inverse-pagination-item-color: @global-inverse-color; @inverse-pagination-item-hover-color: @global-inverse-color; @inverse-pagination-item-active-color: @global-inverse-color; @inverse-pagination-item-hover-background: @global-primary-background; @inverse-pagination-item-active-background: @global-primary-background; @tab-margin-horizontal: 0; @tab-item-padding-horizontal: 21px; @tab-item-padding-vertical: 10px; @tab-item-color: @global-color; @tab-item-hover-color: @global-emphasis-color; @tab-border-width: 2px; @tab-item-border-width: 3px; @tab-item-hover-border: @global-primary-background; @inverse-tab-item-hover-color: @inverse-global-emphasis-color; @inverse-tab-item-hover-border: @global-primary-background; @slidenav-padding-vertical: 10px; @slidenav-color: @global-inverse-color; @slidenav-hover-color: @global-inverse-color; @slidenav-active-color: @global-inverse-color; @slidenav-large-padding-vertical: 14px; @slidenav-large-padding-horizontal: 12px; @slidenav-background: @global-primary-background; @slidenav-hover-background: @global-secondary-background; @slidenav-active-background: fade(@global-secondary-background, 50%); @inverse-slidenav-color: @global-inverse-color; @inverse-slidenav-background: @global-primary-background; @inverse-slidenav-hover-background: darken(@global-primary-background, 10%); @inverse-slidenav-active-background: darken(@global-primary-background, 10%); @dotnav-item-width: 12px; @dotnav-item-background: @global-primary-background; @dotnav-item-hover-background: transparent; @dotnav-item-onclick-background: transparent; @dotnav-item-active-background: transparent; @dotnav-item-border-width: 2px; @dotnav-item-hover-border: @global-primary-background; @dotnav-item-onclick-border: darken(@global-primary-background, 10%); @dotnav-item-active-border: @global-primary-background; @inverse-dotnav-item-background: @global-primary-background; @inverse-dotnav-item-hover-background: transparent; @inverse-dotnav-item-onclick-background: transparent; @inverse-dotnav-item-active-background: transparent; @inverse-dotnav-item-hover-border: @global-primary-background; @inverse-dotnav-item-onclick-border: darken(@global-primary-background, 10%); @inverse-dotnav-item-active-border: @global-primary-background; @thumbnav-item-opacity: 0; @thumbnav-item-border-width: 3px; @thumbnav-item-hover-border: @global-primary-background; @thumbnav-item-active-border: @global-primary-background; @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-hover-border: @global-primary-background; @inverse-thumbnav-item-active-border: @global-primary-background; @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-primary-background; @iconnav-item-active-color: @iconnav-item-hover-color; @inverse-iconnav-item-color: @inverse-global-emphasis-color; @inverse-iconnav-item-hover-color: @global-primary-background; @inverse-iconnav-item-active-color: @inverse-iconnav-item-hover-color; @lightbox-background: @global-secondary-background; @lightbox-caption-background: fade(@lightbox-background, 30%); @text-lead-font-size: 18px; @text-large-font-size: @global-medium-font-size; @text-lead-font-family: @global-secondary-font-family; @text-lead-font-weight: @global-secondary-font-weight; @text-lead-text-transform: @global-secondary-text-transform; @text-lead-letter-spacing: @global-secondary-letter-spacing; @text-lead-font-style: @global-secondary-font-style; @inverse-text-lead-color: @inverse-global-emphasis-color; @box-shadow-bottom-background: fade(@global-secondary-background, 50%); @dropcap-font-size: 3.1em; @logo-font-family: @global-primary-font-family; @dragover-box-shadow: 0 0 20px 0 fade(@global-secondary-background, 16%); @logo-font-weight: @global-primary-font-weight; @logo-text-transform: uppercase; @logo-letter-spacing: @global-primary-letter-spacing; @inverse-dropcap-color: @inverse-global-emphasis-color; @inverse-global-color: fade(@global-inverse-color, 75%); @inverse-global-primary-background: @global-primary-background; @inverse-global-border: fade(@global-primary-background, 20%);assets/uikit-themes/master-dennis-miller/icons/close-icon.svg000064400000000413151666572370020420 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.6" x1="1" y1="1" x2="13" y2="13" /> <line fill="none" stroke="#000" stroke-width="1.6" x1="13" y1="1" x2="1" y2="13" /> </svg> assets/uikit-themes/master-dennis-miller/icons/pagination-previous.svg000064400000000463151666572370022375 0ustar00<svg width="21" height="13" viewBox="0 0 21 13" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M7.1755,11.9l-5.4-5.4,5.4-5.4" /> <line fill="none" stroke="#000" stroke-width="1.2" x1="21" y1="6.499" x2="1.8025" y2="6.499" /> </svg> assets/uikit-themes/master-dennis-miller/icons/pagination-next.svg000064400000000453151666572370021476 0ustar00<svg width="21" height="13" viewBox="0 0 21 13" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M13.8245,1.1l5.4,5.4-5.4,5.4" /> <line fill="none" stroke="#000" stroke-width="1.2" y1="6.501" x2="19.1975" y2="6.501" /> </svg> assets/uikit-themes/master-dennis-miller/icons/slidenav-previous-large.svg000064400000000461151666572370023137 0ustar00<svg width="45" height="13" viewBox="0 0 45 13" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M6.756,11.9l-5.4-5.4,5.4-5.4" /> <line fill="none" stroke="#000" stroke-width="1.2" x1="45" y1="6.499" x2="1.383" y2="6.499" /> </svg> assets/uikit-themes/master-dennis-miller/icons/close-large.svg000064400000000330151666572370020560 0ustar00<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="24,1.4 22.6,0 12,10.6 1.4,0 0,1.4 10.6,12 0,22.6 1.4,24 12,13.4 22.6,24 24,22.6 13.4,12" /> </svg> assets/uikit-themes/master-dennis-miller/icons/slidenav-next.svg000064400000000500151666572370021143 0ustar00<svg width="45" height="13" viewBox="0 0 45 13" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M38.244,1.1l5.4,5.4-5.4,5.4" /> <line fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1.2" y1="6.501" x2="43.617" y2="6.501" /> </svg> assets/uikit-themes/master-dennis-miller/icons/slidenav-next-large.svg000064400000000451151666572370022240 0ustar00<svg width="45" height="13" viewBox="0 0 45 13" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M38.244,1.1l5.4,5.4-5.4,5.4" /> <line fill="none" stroke="#000" stroke-width="1.2" y1="6.501" x2="43.617" y2="6.501" /> </svg> assets/uikit-themes/master-dennis-miller/icons/slidenav-previous.svg000064400000000461151666572370022047 0ustar00<svg width="45" height="13" viewBox="0 0 45 13" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M6.756,11.9l-5.4-5.4,5.4-5.4" /> <line fill="none" stroke="#000" stroke-width="1.2" x1="45" y1="6.499" x2="1.383" y2="6.499" /> </svg> assets/uikit-themes/master-dennis-miller/icons/navbar-parent-icon.svg000064400000000337151666572370022060 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-dennis-miller/icons/nav-parent-icon-large.svg000064400000000304151666572370022455 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2.4" points="1.059 4.529 8 11.471 14.941 4.529" /> </svg> assets/uikit-themes/master-woolberry/_import.less000064400000062765151666572370016376 0ustar00@internal-fonts: 'Open+Sans:400|Work+Sans:400,500,600'; @global-font-family: 'Open Sans'; @global-font-size: 16px; @global-line-height: 1.5; @global-2xlarge-font-size: 42px; @global-xlarge-font-size: 32px; @global-large-font-size: 22px; @global-medium-font-size: 18px; @global-small-font-size: 14px; @global-primary-font-family: 'Work Sans'; @global-primary-font-weight: 500; @global-primary-text-transform: inherit; @global-primary-letter-spacing: -0.018em; @global-primary-font-style: inherit; @global-secondary-font-family: 'Work Sans'; @global-secondary-font-weight: 500; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #2C2C2C; @global-emphasis-color: #000000; @global-muted-color: #999999; @global-link-color: #DE3155; @global-link-hover-color: darken(@global-link-color, 20%); @global-inverse-color: #FFF; @global-background: #FFF; @global-muted-background: #F8F8F8; @global-primary-background: #DE3155; @global-secondary-background: #121314; @global-success-background: #32D296; @global-warning-background: #FAB15A; @global-danger-background: #EB573E; @global-border-width: 1px; @global-border: #E3E3E3; @global-border-radius: 2px; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-code-color: @global-primary-background; @base-em-color: @global-primary-background; @base-ins-background: fade(@global-primary-background, 12%); @base-mark-background: fade(@global-primary-background, 12%); @base-blockquote-font-style: normal; @base-selection-background: @global-primary-background; @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 2px; @base-code-background: @global-muted-background; @base-pre-padding: 10px; @base-pre-background: @global-background; @base-blockquote-footer-font-family: @global-primary-font-family; @base-blockquote-footer-font-weight: @global-primary-font-weight; @base-blockquote-footer-text-transform: @global-primary-text-transform; @base-blockquote-footer-letter-spacing: @global-primary-letter-spacing; @base-blockquote-footer-font-style: @global-primary-font-style; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @base-pre-border-radius: 3px; @inverse-base-link-color: @inverse-global-muted-color; @inverse-base-link-hover-color: fade(@inverse-base-link-color, 30%); @inverse-base-code-background: @inverse-global-muted-background; @inverse-base-blockquote-border: @inverse-global-color; @heading-bullet-top: ~'calc(-0.1 * 0.9em)'; @heading-bullet-height: ~'calc(4px + 0.8em)'; @heading-bullet-border-width: ~'calc(4px + 0.1em)'; @heading-bullet-border: @global-secondary-background; @heading-small-font-weight: 600; @heading-small-text-transform: uppercase; @heading-medium-font-weight: 600; @heading-medium-text-transform: uppercase; @heading-large-font-weight: 600; @heading-large-text-transform: uppercase; @heading-xlarge-font-weight: 600; @heading-xlarge-text-transform: uppercase; @heading-2xlarge-font-weight: 600; @heading-2xlarge-text-transform: uppercase; @heading-3xlarge-font-weight: 600; @heading-3xlarge-text-transform: uppercase; @inverse-heading-bullet-border: @global-inverse-color; @divider-icon-width: 40px; @divider-icon-height: 9px; @divider-icon-color: @global-secondary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-woolberry/images/divider-icon.svg"; @divider-small-border-width: 4px; @divider-small-border: @global-secondary-background; @divider-vertical-border-width: 4px; @divider-vertical-border: @global-secondary-background; @list-striped-border: @global-border; @inverse-list-striped-border: @inverse-global-border; @description-list-term-font-size: @global-small-font-size; @description-list-term-text-transform: uppercase; @table-header-cell-font-weight: @global-primary-font-weight; @table-row-active-background: @global-muted-background; @table-header-cell-font-family: @global-primary-font-family; @table-header-cell-text-transform: @global-primary-text-transform; @table-header-cell-letter-spacing: @global-primary-letter-spacing; @table-header-cell-font-style: @global-primary-font-style; @table-striped-border: @global-border; @icon-link-color: @global-color; @icon-link-hover-color: @global-muted-color; @icon-button-size: 45px; @icon-button-background: @global-background; @icon-button-color: @global-color; @icon-button-hover-background: @global-secondary-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: darken(@icon-button-hover-background, 10%); @icon-button-active-color: @global-inverse-color; @icon-button-border-width: @global-border-width; @icon-button-border: @global-secondary-background; @icon-button-hover-border: @global-background; @inverse-icon-button-background: transparent; @inverse-icon-button-color: @inverse-global-color; @inverse-icon-button-hover-background: transparent; @inverse-icon-button-active-background: transparent; @inverse-icon-button-border: @inverse-global-emphasis-color; @inverse-icon-button-hover-border: fade(@inverse-icon-button-border, 70%); @inverse-icon-button-active-border: fade(@inverse-icon-button-border, 50%); @form-range-track-focus-background: @global-emphasis-color; @form-range-thumb-background: @global-secondary-background; @form-range-thumb-border-width: @global-border-width; @form-range-thumb-border: @global-color; @inverse-form-range-track-focus-background: @inverse-global-muted-color; @form-padding-horizontal: 0; @form-padding-vertical: 10px; @form-background: transparent; @form-focus-background: transparent; @form-disabled-background: transparent; @form-placeholder-color: lighten(@global-color, 40%); @form-radio-background: transparent; @form-radio-checked-background: @global-secondary-background; @form-radio-checked-focus-background: @global-secondary-background; @form-stacked-margin-bottom: 5px; @form-icon-width: 20px; @form-icon-color: @global-color; @form-multi-line-padding-horizontal: 12px; @form-label-font-size: @global-small-font-size; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-secondary-background; @form-focus-border: @global-primary-background; @form-disabled-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @global-border; @form-radio-border-width: @global-border-width; @form-radio-border: @global-color; @form-radio-focus-border: @global-secondary-background; @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-placeholder-color: @inverse-global-color; @inverse-form-radio-background: transparent; @inverse-form-border: darken(@inverse-global-color, 53%); @inverse-form-focus-border: @global-inverse-color; @inverse-form-radio-border: @inverse-global-color; @inverse-form-radio-focus-border: @global-inverse-color; @inverse-form-radio-checked-border: @inverse-global-primary-background; @button-font-size: @global-small-font-size; @button-large-font-size: @global-font-size; @button-padding-horizontal: 24px; @button-large-padding-horizontal: 34px; @button-default-background: transparent; @button-default-hover-background: @global-secondary-background; @button-default-hover-color: @global-inverse-color; @button-default-active-background: darken(@global-muted-background, 2%); @button-default-active-color: @global-color; @button-primary-background: @global-secondary-background; @button-primary-hover-background: transparent; @button-primary-hover-color: @global-secondary-background; @button-primary-active-background: darken(@global-muted-background, 2%); @button-primary-active-color: @global-secondary-background; @button-secondary-background: @global-primary-background; @button-secondary-hover-background: transparent; @button-secondary-hover-color: @global-primary-background; @button-secondary-active-background: darken(@global-muted-background, 2%); @button-secondary-active-color: @global-primary-background; @button-danger-hover-background: transparent; @button-danger-hover-color: darken(@global-danger-background, 10%); @button-danger-active-background: darken(@global-muted-background, 2%); @button-danger-active-color: darken(@global-danger-background, 10%); @internal-button-text-line-bottom: -4px; @internal-button-text-line-right: 0; @internal-button-text-line-hover-right: 100%; @button-border-width: @global-border-width; @button-default-border: @global-secondary-background; @button-default-active-border: @global-secondary-background; @button-primary-hover-border: @global-secondary-background; @button-primary-active-border: @global-secondary-background; @button-secondary-hover-border: @global-primary-background; @button-secondary-active-border: @global-primary-background; @button-danger-hover-border: @global-danger-background; @button-danger-active-border: @global-danger-background; @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-emphasis-color; @inverse-button-default-hover-background: @inverse-global-color; @inverse-button-default-hover-color: @global-secondary-background; @inverse-button-default-active-background: transparent; @inverse-button-default-active-color: @inverse-global-color; @inverse-button-primary-hover-background: transparent; @inverse-button-primary-hover-color: @inverse-global-color; @inverse-button-secondary-background: @global-primary-background; @inverse-button-secondary-color: @inverse-global-color; @inverse-button-secondary-hover-background: transparent; @inverse-button-secondary-hover-color: @inverse-global-color; @inverse-button-secondary-active-color: @inverse-global-color; @inverse-button-default-border: @inverse-global-emphasis-color; @inverse-button-default-hover-border: fade(@inverse-button-default-border, 70%); @inverse-button-default-active-border: @inverse-global-color; @inverse-button-primary-hover-border: @inverse-global-color; @inverse-button-secondary-hover-border: @inverse-global-color; @progress-height: 5px; @progress-background: darken(@global-muted-background, 5%); @progress-bar-background: @global-secondary-background; @container-small-max-width: 980px; @card-badge-padding-horizontal: 5px; @card-default-hover-background: darken(@global-muted-background, 2%); @card-primary-hover-background: darken(@global-primary-background, 5%); @card-secondary-hover-background: darken(@global-secondary-background, 5%); @card-badge-text-transform: uppercase; @close-color: @global-secondary-background; @close-hover-color: fade(@global-secondary-background, 50%); @inverse-close-color: @global-inverse-color; @inverse-close-hover-color: darken(@global-inverse-color, 25%); @marker-padding: 0; @marker-background: rgba(@global-background, 0.3); @marker-color: @global-emphasis-color; @marker-hover-background: @global-emphasis-color; @marker-border-width: @global-border-width; @marker-border: @global-emphasis-color; @marker-border-radius: 0; @inverse-marker-background: transparent; @inverse-marker-color: @global-inverse-color; @inverse-marker-hover-color: @global-emphasis-color; @inverse-marker-hover-background: @global-inverse-color; @inverse-marker-border: @global-inverse-color; @totop-padding: 0; @totop-color: @global-color; @totop-hover-color: @global-muted-color; @internal-totop-mode: animate; @inverse-totop-color: @inverse-global-color; @alert-primary-background: @global-secondary-background; @alert-primary-color: @global-inverse-color; @alert-success-background: @global-success-background; @alert-success-color: @global-inverse-color; @alert-warning-background: @global-warning-background; @alert-warning-color: @global-inverse-color; @alert-danger-background: @global-danger-background; @alert-danger-color: @global-inverse-color; @badge-size: 20px; @badge-background: @global-secondary-background; @badge-font-size: 13px; @label-padding-horizontal: 5px; @label-background: @global-secondary-background; @label-font-family: @global-primary-font-family; @label-font-weight: @global-primary-font-weight; @label-text-transform: none; @label-letter-spacing: inherit; @label-font-style: @global-primary-font-style; @overlay-default-background: fade(@global-background, 60%); @overlay-default-backdrop-filter: blur(8px); @overlay-primary-backdrop-filter: blur(8px); @article-meta-font-family: @global-font-family; @article-meta-font-weight: 400; @article-meta-text-transform: inherit; @article-meta-letter-spacing: inherit; @article-meta-font-style: inherit; @search-placeholder-color: @global-color; @search-icon-color: @global-color; @search-default-padding-horizontal: 16px; @search-default-focus-background: @global-background; @search-navbar-padding-horizontal: 16px; @search-navbar-background: @global-muted-background; @search-navbar-focus-background: @global-background; @search-medium-padding-horizontal: 20px; @search-medium-background: @global-muted-background; @search-medium-focus-background: transparent; @search-large-padding-horizontal: 30px; @search-large-background: @global-muted-background; @search-large-focus-background: transparent; @search-toggle-color: @global-color; @search-navbar-font-size: 15px; @search-default-border-width: @global-border-width; @search-default-focus-border: @global-border; @search-navbar-border-width: @global-border-width; @search-navbar-focus-border: @global-border; @search-medium-border-width: @global-border-width; @search-medium-focus-border: @global-border; @search-large-border-width: @global-border-width; @search-large-focus-border: @global-border; @search-default-border-radius: 500px; @search-navbar-border-radius: 500px; @search-medium-border-radius: 500px; @search-large-border-radius: 500px; @inverse-search-placeholder-color: @inverse-global-color; @inverse-search-icon-color: @inverse-global-color; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-navbar-focus-background: fadein(@inverse-search-navbar-background, 10%); @inverse-search-medium-background: @inverse-global-muted-background; @inverse-search-medium-focus-background: fadein(@inverse-search-navbar-background, 10%); @inverse-search-large-background: @inverse-global-muted-background; @inverse-search-large-focus-background: fadein(@inverse-search-navbar-background, 10%); @inverse-search-default-border: @inverse-global-color; @inverse-search-default-focus-border: @global-primary-background; @inverse-search-navbar-focus-border: @inverse-global-color; @inverse-search-medium-focus-border: @inverse-global-color; @inverse-search-large-focus-border: @inverse-global-color; @accordion-item-margin-top: 25px; @internal-accordion-icon-close-image: "../../../../uikit-themes/master-woolberry/images/accordion-close.svg"; @internal-accordion-icon-open-image: "../../../../uikit-themes/master-woolberry/images/accordion-open.svg"; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-margin: 25px; @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 5px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 5px)'; @dropdown-nav-font-size: @global-small-font-size; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-box-shadow: @global-medium-box-shadow; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 7px 10px -7px rgba(0,0,0,0.08); @dropbar-bottom-box-shadow: 0 -7px 10px -7px rgba(0,0,0,0.08); @dropbar-left-box-shadow: -7px 0 10px -7px rgba(0,0,0,0.08); @dropbar-right-box-shadow: 7px 0 10px -7px rgba(0,0,0,0.08); @modal-background: fade(@global-secondary-background, 48%); @modal-backdrop-filter: blur(3px); @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-overlay-background: fade(@global-secondary-background, 48%); @offcanvas-overlay-backdrop-filter: blur(3px); @notification-message-primary-color: @global-emphasis-color; @notification-message-success-color: @global-emphasis-color; @notification-message-warning-color: @global-emphasis-color; @notification-message-danger-color: @global-emphasis-color; @notification-message-primary-background: lighten(@global-primary-background, 35%); @notification-message-success-background: lighten(@global-success-background, 45%); @notification-message-warning-background: lighten(@global-warning-background, 30%); @notification-message-danger-background: lighten(@global-danger-background, 35%); @notification-message-primary-color-mode: dark; @notification-message-success-color-mode: dark; @notification-message-warning-color-mode: dark; @notification-message-danger-color-mode: dark; @notification-message-border-width: 2px; @notification-message-border: @global-border; @notification-message-primary-border: @global-primary-background; @notification-message-success-border: @global-success-background; @notification-message-warning-border: @global-warning-background; @notification-message-danger-border: @global-danger-background; @tooltip-background: @global-secondary-background; @tooltip-border-radius: 0; @countdown-item-font-family: @global-primary-font-family; @countdown-item-font-weight: @global-primary-font-weight; @countdown-item-text-transform: @global-primary-text-transform; @countdown-item-letter-spacing: @global-primary-letter-spacing; @countdown-item-font-style: @global-primary-font-style; @nav-header-padding-vertical: 12px; @nav-header-font-size: @global-font-size; @nav-header-text-transform: none; @nav-default-item-color: @global-color; @nav-default-item-active-color: @global-muted-color; @nav-default-sublist-item-color: @global-color; @nav-default-sublist-item-hover-color: @global-muted-color; @nav-default-sublist-item-active-color: @global-muted-color; @nav-primary-font-size: 1.5rem; @nav-primary-item-color: @global-color; @nav-primary-item-active-color: @global-muted-color; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-sublist-item-color: @global-color; @nav-primary-sublist-item-hover-color: @global-muted-color; @nav-primary-sublist-item-active-color: @global-muted-color; @nav-secondary-item-color: @global-color; @nav-secondary-item-hover-color: @global-muted-color; @nav-secondary-item-active-color: @global-muted-color; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-muted-color; @nav-secondary-subtitle-active-color: @global-muted-color; @nav-secondary-sublist-item-color: @global-color; @nav-secondary-sublist-item-hover-color: @global-muted-color; @nav-secondary-sublist-item-active-color: @global-muted-color; @nav-default-item-mode: line; @nav-primary-item-mode: line; @nav-primary-item-line-height: 2px; @nav-header-font-weight: 500; @nav-default-font-weight: 400; @nav-default-subtitle-color: @global-color; @nav-primary-font-weight: 400; @nav-primary-subtitle-color: @global-color; @nav-secondary-font-weight: 400; @inverse-nav-default-item-color: @inverse-global-color; @inverse-nav-primary-item-color: @inverse-global-color; @navbar-background: @global-background; @navbar-nav-gap: 16px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-font-size: @global-small-font-size; @navbar-nav-item-font-family: @global-primary-font-family; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-toggle-color: @global-emphasis-color; @navbar-dropdown-margin: 1px; @navbar-dropdown-width: 260px; @navbar-dropdown-padding: 25px; @navbar-dropdown-background: @global-background; @navbar-dropdown-dropbar-padding-bottom: 25px; @navbar-dropdown-nav-item-color: @global-color; @navbar-dropdown-nav-item-hover-color: @global-muted-color; @navbar-dropdown-nav-item-active-color: @global-muted-color; @navbar-dropdown-nav-sublist-item-color: @global-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-muted-color; @navbar-dropdown-nav-sublist-item-active-color: @global-muted-color; @navbar-gap-m: 40px; @navbar-nav-gap-m: 40px; @navbar-nav-item-padding-horizontal-m: 2px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: center; @navbar-nav-item-line-margin-vertical: -1px; @navbar-nav-item-line-height: 2px; @navbar-nav-item-line-transition-duration: 0.3s; @navbar-nav-item-line-hover-height: @navbar-nav-item-line-height; @navbar-nav-item-line-hover-background: @global-secondary-background; @navbar-nav-item-line-onclick-height: @navbar-nav-item-line-height; @navbar-nav-item-line-onclick-background: @global-secondary-background; @navbar-nav-item-line-active-height: @navbar-nav-item-line-height; @navbar-nav-item-line-active-background: @global-secondary-background; @navbar-dropdown-nav-item-padding-vertical: 4px; @navbar-nav-item-font-weight: @global-primary-font-weight; @navbar-nav-item-text-transform: uppercase; @navbar-nav-item-letter-spacing: inherit; @navbar-nav-item-font-style: @global-primary-font-style; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-text-transform: none; @navbar-dropdown-nav-font-weight: 400; @navbar-mode: border; @navbar-border-width: @global-border-width; @navbar-border: @global-border; @navbar-dropdown-box-shadow: @global-medium-box-shadow; @subnav-margin-horizontal: 18px; @subnav-item-color: @global-color; @subnav-item-hover-color: @global-muted-color; @subnav-item-active-color: @global-muted-color; @subnav-divider-margin-horizontal: 20px; @subnav-divider-border-height: 1em; @subnav-pill-item-padding-vertical: 6px; @subnav-pill-item-padding-horizontal: 18px; @subnav-pill-item-active-background: @global-secondary-background; @subnav-item-font-weight: 400; @breadcrumb-item-color: @global-secondary-background; @breadcrumb-item-hover-color: @global-muted-color; @breadcrumb-item-active-color: @global-muted-color; @breadcrumb-divider-margin-horizontal: 7px; @breadcrumb-item-font-family: @global-font-family; @breadcrumb-item-font-weight: 400; @breadcrumb-item-text-transform: inherit; @breadcrumb-item-letter-spacing: inherit; @breadcrumb-item-font-style: inherit; @inverse-breadcrumb-item-color: @inverse-global-color; @inverse-breadcrumb-item-active-color: @inverse-global-muted-color; @pagination-margin-horizontal: 16px; @pagination-item-padding-horizontal: 6px; @pagination-item-color: @global-color; @pagination-item-transition-duration: 0.2s; @pagination-item-height: 40px; @pagination-item-next-previous-color: @global-color; @internal-pagination-item-next-previous-mode: animate; @pagination-item-font-size: @global-medium-font-size; @pagination-item-border-mode: -bottom; @pagination-item-border-width: 2px; @pagination-item-hover-border: @global-emphasis-color; @pagination-item-active-border: @global-emphasis-color; @inverse-pagination-item-next-previous-color: @inverse-global-color; @inverse-pagination-item-hover-border: @inverse-global-color; @inverse-pagination-item-active-border: @inverse-global-color; @tab-margin-horizontal: 30px; @tab-item-padding-horizontal: 0; @tab-item-color: @global-emphasis-color; @tab-vertical-item-padding-horizontal: 15px; @tab-item-font-family: @global-primary-font-family; @tab-item-font-weight: 400; @tab-item-text-transform: none; @tab-item-letter-spacing: @global-primary-letter-spacing; @tab-item-font-style: @global-primary-font-style; @tab-item-border-width: 2px; @tab-item-hover-border: @global-emphasis-color; @tab-item-active-border: @global-emphasis-color; @tab-item-mode: line; @tab-item-line-left: 50%; @slidenav-color: @global-secondary-background; @slidenav-hover-color: fade(@slidenav-color, 50%); @dotnav-margin-horizontal: 6px; @dotnav-margin-vertical: 12px; @dotnav-item-width: 30px; @dotnav-item-height: 3px; @dotnav-item-border-radius: 0; @dotnav-item-background: fade(@global-secondary-background, 20%); @dotnav-item-hover-background: @global-secondary-background; @dotnav-item-onclick-background: fade(@global-secondary-background, 40%); @dotnav-item-active-background: @global-secondary-background; @inverse-dotnav-item-border: fade(@inverse-global-color, 90%); @thumbnav-item-background: transparent; @thumbnav-item-border-width: 3px; @thumbnav-item-hover-border: @global-secondary-background; @thumbnav-item-active-border: @global-secondary-background; @thumbnav-item-gradient: none; @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-hover-border: @global-inverse-color; @inverse-thumbnav-item-active-border: @global-inverse-color; @iconnav-margin-horizontal: 15px; @iconnav-item-color: @global-color; @iconnav-item-hover-color: @global-muted-color; @iconnav-item-active-color: @global-emphasis-color; @inverse-iconnav-item-color: @global-inverse-color; @inverse-iconnav-item-hover-color: fade(@inverse-iconnav-item-color, 50%); @inverse-iconnav-item-active-color: fade(@inverse-iconnav-item-color, 50%); @lightbox-background: @global-background; @lightbox-color-mode: dark; @lightbox-caption-background: @global-background; @lightbox-caption-color: @global-color; @text-lead-font-size: 20px; @text-lead-font-family: @global-font-family; @text-lead-font-weight: 400; @text-lead-text-transform: inherit; @text-lead-letter-spacing: inherit; @text-lead-font-style: inherit; @internal-text-background-color-gradient: linear-gradient(80deg, #F5973A 0%, #DA1C44 50%, #9706D8 100%); @logo-font-family: @global-primary-font-family; @logo-font-weight: @global-primary-font-weight; @logo-text-transform: @global-primary-text-transform; @logo-letter-spacing: @global-primary-letter-spacing; @inverse-global-color: @global-inverse-color;assets/uikit-themes/master-woolberry/styles/white-blue.less000064400000000534151666572370020277 0ustar00// // Global // @global-link-color: #0464D1; @global-primary-background: #0464D1; // // Button // @button-primary-background: @global-primary-background; @button-secondary-background: @global-secondary-background; // // Text // @internal-text-background-color-gradient: linear-gradient(80deg, #01BE99 0%, #0264D1 50%, #BB05C3 100%); assets/uikit-themes/master-woolberry/styles/light-red.less000064400000001152151666572370020106 0ustar00// // Global // @global-link-color: #A6031F; @global-background: #FFFDFA; @global-muted-background: #F8F4ED; @global-primary-background: #800829; // // Base // @base-code-color: #BC0527; @base-em-color: #BC0527; // // Button // @button-primary-background: @global-primary-background; @button-secondary-background: @global-secondary-background; // // Notification // @notification-message-primary-background: #EDD1D9; // // Text // @text-primary-color: #A50624; @internal-text-background-color-gradient: linear-gradient(80deg, #A50B26 0%, #990BA5 50%, #0B6B8E 100%); assets/uikit-themes/master-woolberry/styles/white-green.less000064400000000722151666572370020447 0ustar00// // Global // @global-link-color: #277B67; @global-primary-background: #277B67; @global-secondary-background: #15221A; // // Button // @button-primary-background: @global-primary-background; @button-secondary-background: @global-secondary-background; // // Notification // @notification-message-primary-background: #D3EBE3; // // Text // @internal-text-background-color-gradient: linear-gradient(80deg, #C3BB02 0%, #277B67 50%, #00C8E2 100%); assets/uikit-themes/master-woolberry/styles/white-darkblue.less000064400000001243151666572370021137 0ustar00// // Global // @global-color: #1A2B3F; @global-emphasis-color: #032B51; @global-link-color: #0C4D79; @global-primary-background: #0A3458; @global-secondary-background: #011825; // // Base // @base-code-color: #034C8C; @base-em-color: #034C8C; // // Button // @button-primary-background: @global-primary-background; @button-secondary-background: @global-secondary-background; // // Notification // @notification-message-primary-background: #B9CCE2; // // Text // @text-primary-color: #014C7C; @internal-text-background-color-gradient: linear-gradient(80deg, #BF0979 0%, #12548E 50%, #0CA28C 100%); assets/uikit-themes/master-woolberry/styles/white-orange.less000064400000000634151666572370020624 0ustar00// // Global // @global-link-color: #EF934C; @global-primary-background: #F68E43; // // Button // @button-primary-background: @global-primary-background; @button-secondary-background: @global-secondary-background; // // Text // @text-primary-color: #EF8032; @internal-text-background-color-gradient: linear-gradient(80deg, #31C1F5 0%, #F453BC 25%, #F49753 50%, #EA3434 100%); assets/uikit-themes/master-woolberry/icons/overlay-icon.svg000064400000000475151666572370020266 0ustar00<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1.4" x1="0" y1="19.99" x2="40" y2="20.01" /> <line fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1.4" x1="20" y1="40" x2="20.03" /> </svg> assets/uikit-themes/master-woolberry/icons/nav-parent-icon-large.svg000064400000000257151666572370021746 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="1 4 7 9 13 4" /> </svg> assets/uikit-themes/master-woolberry/icons/close-icon.svg000064400000000413151666572370017702 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="13" y2="13" /> <line fill="none" stroke="#000" stroke-width="1.4" x1="13" y1="1" x2="1" y2="13" /> </svg> assets/uikit-themes/master-woolberry/icons/slidenav-next.svg000064400000000250151666572370020427 0ustar00<svg width="7" height="13" viewBox="0 0 7 13" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.4" d="M1,12.5l5-6L1,.5" /> </svg> assets/uikit-themes/master-woolberry/icons/marker.svg000064400000000375151666572370017137 0ustar00<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <path id="b" fill="none" stroke="#000" stroke-width="1.2" d="M12,5.5v13" /> <path id="c" fill="none" stroke="#000" stroke-width="1.2" d="M18.5,12H5.5" /> </svg> assets/uikit-themes/master-woolberry/icons/totop.svg000064400000000255151666572370017020 0ustar00<svg width="18" height="9" viewBox="0 0 18 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="1 8 9 1 17 8" /> </svg> assets/uikit-themes/master-woolberry/icons/slidenav-previous-large.svg000064400000000247151666572370022423 0ustar00<svg width="9" height="17" viewBox="0 0 9 17" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.4" d="M8,.5L1,8.5l7,8" /> </svg> assets/uikit-themes/master-woolberry/icons/pagination-next.svg000064400000000250151666572370020753 0ustar00<svg width="7" height="13" viewBox="0 0 7 13" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.8" d="M1,12.5l5-6L1,.5" /> </svg> assets/uikit-themes/master-woolberry/icons/slidenav-previous.svg000064400000000247151666572370021333 0ustar00<svg width="7" height="13" viewBox="0 0 7 13" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.4" d="M6,.5L1,6.5l5,6" /> </svg> assets/uikit-themes/master-woolberry/icons/pagination-previous.svg000064400000000247151666572370021657 0ustar00<svg width="7" height="13" viewBox="0 0 7 13" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.8" d="M6,.5L1,6.5l5,6" /> </svg> assets/uikit-themes/master-woolberry/icons/navbar-parent-icon.svg000064400000000265151666572370021342 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="1 3.5 6 7.5 11 3.5" /> </svg> assets/uikit-themes/master-woolberry/icons/slidenav-next-large.svg000064400000000250151666572370021517 0ustar00<svg width="9" height="17" viewBox="0 0 9 17" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.4" d="M1,16.5l7-8L1,.5" /> </svg> assets/uikit-themes/master-woolberry/icons/drop-parent-icon.svg000064400000000265151666572370021035 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="1 3.5 6 7.5 11 3.5" /> </svg> assets/uikit-themes/master-woolberry/icons/nav-parent-icon.svg000064400000000265151666572370020655 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="1 3.5 6 7.5 11 3.5" /> </svg> assets/uikit-themes/master-woolberry/images/accordion-close.svg000064400000000255151666572370021051 0ustar00<svg width="18" height="9" viewBox="0 0 18 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="17 1 9 8 1 1" /> </svg> assets/uikit-themes/master-woolberry/images/accordion-open.svg000064400000000255151666572370020705 0ustar00<svg width="18" height="9" viewBox="0 0 18 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="1 8 9 1 17 8" /> </svg> assets/uikit-themes/master-woolberry/images/totop.svg000064400000000255151666572370017152 0ustar00<svg width="18" height="9" viewBox="0 0 18 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="1 8 9 1 17 8" /> </svg> assets/uikit-themes/master-woolberry/images/divider-icon.svg000064400000000205151666572370020354 0ustar00<svg width="9" height="9" viewBox="0 0 9 9" xmlns="http://www.w3.org/2000/svg"> <rect width="9" height="9" fill="#000" /> </svg> assets/uikit-themes/master-jack-baker/images/box-decoration-secondary-image.svg000064400000000313151666572370023730 0ustar00<svg width="90" height="90" viewBox="0 0 90 90" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M10.5 29.5v-19h19M29.5 79.5h-19v-19M79.5 60.5v19h-19M60.5 10.5h19v19" /> </svg> assets/uikit-themes/master-jack-baker/images/box-decoration-default-image.svg000064400000000334151666572370023370 0ustar00<svg width="90" height="90" viewBox="0 0 90 90" xmlns="http://www.w3.org/2000/svg"> <path fill="none;" stroke="#000" d="M60.5 0v19M71 29.5h19M71 60.5h19M0 29.5h19M0 60.5h19M29.5 0v19M60.5 71v19M29.5 71v19" /> </svg> assets/uikit-themes/master-jack-baker/images/box-decoration-primary-image.svg000064400000000735151666572370023434 0ustar00<svg width="90" height="90" viewBox="0 0 90 90" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M15.5 6C20 6 24 10 24 14.5S20 23 15.5 23 7 19 7 14.5 11 6 15.5 6zm0-6v30M0 14.5h30M75.5 6C80 6 84 10 84 14.5S80 23 75.5 23 67 19 67 14.5 71 6 75.5 6zm0-6v30M60 14.5h30M15.5 66c4.5 0 8.5 4 8.5 8.5S20 83 15.5 83 7 79 7 74.5s4-8.5 8.5-8.5zm0-6v30M0 74.5h30M75.5 66c4.5 0 8.5 4 8.5 8.5S80 83 75.5 83 67 79 67 74.5s4-8.5 8.5-8.5zm0-6v30M60 74.5h30" /> </svg> assets/uikit-themes/master-jack-baker/icons/pagination-previous.svg000064400000000372151666572370021624 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5" /> <line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5" /> </svg> assets/uikit-themes/master-jack-baker/icons/pagination-next.svg000064400000000373151666572370020727 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5" /> <line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5" /> </svg> assets/uikit-themes/master-jack-baker/icons/slidenav-previous-large.svg000064400000000260151666572370022364 0ustar00<svg width="17" height="30" viewBox="0 0 17 30" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="15,2 2,15 15,28" /> </svg> assets/uikit-themes/master-jack-baker/icons/nav-parent-icon-large.svg000064400000000277151666572370021716 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points=".97 3.74 6.5 9.26 12.03 3.74" /> </svg> assets/uikit-themes/master-jack-baker/icons/slidenav-next.svg000064400000000257151666572370020404 0ustar00<svg width="10" height="16" viewBox="0 0 10 16" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="1,15 8,8 1,1" /> </svg> assets/uikit-themes/master-jack-baker/icons/marker.svg000064400000000212151666572370017073 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <circle fill="#000" cx="5" cy="5" r="3" /> </svg> assets/uikit-themes/master-jack-baker/icons/slidenav-previous.svg000064400000000257151666572370021302 0ustar00<svg width="10" height="16" viewBox="0 0 10 16" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points="9,1 2,8 9,15" /> </svg> assets/uikit-themes/master-jack-baker/icons/slidenav-next-large.svg000064400000000257151666572370021474 0ustar00<svg width="17" height="30" viewBox="0 0 17 30" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="2,28 15,15 2,2" /> </svg> assets/uikit-themes/master-jack-baker/_import.less000064400000047575151666572370016346 0ustar00@internal-fonts: 'Poppins:400,600'; @global-font-family: Poppins; @global-font-size: 16px; @global-line-height: 1.5; @global-2xlarge-font-size: 46px; @global-xlarge-font-size: 40px; @global-large-font-size: 28px; @global-medium-font-size: 22px; @global-small-font-size: 13px; @global-primary-font-family: Poppins; @global-primary-font-weight: normal; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: inherit; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #181818; @global-emphasis-color: #000; @global-muted-color: #949494; @global-link-color: #ef463e; @global-link-hover-color: #181818; @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #f3f3f3; @global-primary-background: #ef463e; @global-secondary-background: #181818; @global-success-background: #00b572; @global-warning-background: #faa05a; @global-danger-background: #CE241B; @global-border: #e4e4e4; @global-border-width: 1px; @global-border-radius: 0; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08); @global-large-box-shadow: 0 15px 55px rgba(0,0,0,0.08); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 40px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-h1-font-size: @base-h1-font-size-m * 0.82; @base-blockquote-font-style: normal; @base-blockquote-footer-margin-top: 20px; @base-selection-background: fade(@global-primary-background, 70%); @base-blockquote-footer-em-dash: false; @inverse-base-link-hover-color: @inverse-global-muted-color; @heading-small-font-size-m: 50px; @heading-large-font-size-l: 86px; @heading-xlarge-font-size-l: 130px; @heading-2xlarge-font-size-l: 168px; @heading-medium-line-height: 1.2; @heading-divider-border-width: ~'calc(0.2px + 0.04em)'; @heading-bullet-border-width: ~'calc(2px + 0.1em)'; @heading-bullet-border: @global-color; @heading-line-border-width: ~'calc(2px + 0.02em)'; @heading-line-border: @global-emphasis-color; @heading-xlarge-font-weight: 600; @heading-2xlarge-font-weight: 600; @heading-3xlarge-font-weight: 600; @divider-small-width: 54px; @divider-small-border-width: 3px; @divider-small-border: @global-emphasis-color; @inverse-divider-small-border: @inverse-global-emphasis-color; @list-striped-padding-horizontal: 16px; @list-large-striped-padding-horizontal: @global-margin; @description-list-term-margin-top: @global-gutter; @description-list-divider-term-margin-top: @global-gutter; @table-row-active-background: darken(@global-muted-background, 2%); @icon-link-color: @global-color; @icon-link-hover-color: @global-muted-color; @icon-button-background: @global-secondary-background; @icon-button-color: @global-inverse-color; @icon-button-hover-background: fade(@global-secondary-background, 80%); @icon-button-hover-color: @global-inverse-color; @icon-button-active-color: @global-inverse-color; @inverse-icon-button-background: @inverse-global-primary-background; @inverse-icon-button-color: @global-emphasis-color; @inverse-icon-button-hover-background: fade(@inverse-global-primary-background, 80%); @inverse-icon-button-hover-color: @global-emphasis-color; @inverse-icon-button-active-color: @global-emphasis-color; @form-range-track-height: @global-border-width; @form-range-track-background: @global-border; @form-range-track-focus-background: @global-emphasis-color; @form-range-thumb-height: 5px; @form-range-thumb-width: 14px; @form-range-thumb-border-radius: 0; @form-range-thumb-background: @global-secondary-background; @form-height: 46px; @form-background: transparent; @form-focus-background: transparent; @form-large-height: 70px; @form-large-font-size: 16px; @form-radio-background: transparent; @form-radio-checked-background: @global-secondary-background; @form-radio-checked-focus-background: @global-secondary-background; @form-label-font-size: @global-small-font-size; @form-border-width: 1px; @form-border: @global-border; @form-focus-border: @form-focus-color; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @form-focus-color; @form-radio-border-width: 1px; @form-radio-border: @global-border; @form-radio-focus-border: @form-focus-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-focus-color: @inverse-global-emphasis-color; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @inverse-global-primary-background; @inverse-form-radio-border: @inverse-global-muted-color; @inverse-form-radio-focus-border: @inverse-global-primary-background; @inverse-form-radio-checked-border: @inverse-global-primary-background; @button-line-height: 43px; @button-large-line-height: 66px; @button-font-size: 13px; @button-small-font-size: 11px; @button-large-font-size: 14px; @button-padding-horizontal: 30px; @button-default-background: lighten(@global-secondary-background, 2%); @button-default-color: @global-inverse-color; @button-default-hover-background: lighten(@global-secondary-background, 2%); @button-default-hover-color: @global-inverse-color; @button-default-active-background: lighten(@global-secondary-background, 8%); @button-default-active-color: @global-inverse-color; @button-primary-background: transparent; @button-primary-color: @global-primary-background; @button-primary-hover-background: @button-primary-border; @button-primary-active-background: transparent; @button-primary-active-color: @global-primary-background; @button-secondary-background: transparent; @button-secondary-color: @global-color; @button-secondary-hover-background: lighten(@global-secondary-background, 2%); @button-secondary-active-background: lighten(@global-secondary-background, 8%); @button-secondary-active-color: @button-secondary-hover-color; @button-text-hover-color: @global-muted-color; @internal-button-mode: strikethrough; @button-text-mode: ~''; @button-text-icon-mode: dash; @button-text-border-width: 1px; @button-text-transform: uppercase; @button-border-width: 1px; @button-primary-border: @global-primary-background; @button-primary-hover-border: @global-primary-background; @button-primary-active-border: @global-primary-background; @button-secondary-border: lighten(@global-secondary-background, 2%); @inverse-button-default-hover-background: @inverse-button-default-background; @inverse-button-primary-background: transparent; @inverse-button-primary-color: @inverse-global-emphasis-color; @inverse-button-primary-hover-color: @inverse-global-emphasis-color; @inverse-button-primary-active-color: @inverse-global-emphasis-color; @inverse-button-secondary-background: transparent; @inverse-button-secondary-color: @inverse-global-emphasis-color; @inverse-button-secondary-hover-color: @inverse-global-emphasis-color; @inverse-button-secondary-active-color: @inverse-global-emphasis-color; @inverse-button-text-hover-color: @inverse-global-color; @inverse-button-primary-border: @inverse-global-primary-background; @inverse-button-primary-hover-border: @inverse-global-primary-background; @inverse-button-primary-active-border: @inverse-global-primary-background; @inverse-button-secondary-border: @inverse-global-primary-background; @inverse-button-secondary-hover-border: @inverse-global-primary-background; @inverse-button-secondary-active-border: @inverse-global-primary-background; @container-large-max-width: 1450px; @card-badge-height: 25px; @card-badge-background: @global-secondary-background; @card-badge-font-size: 12px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-primary-background: @global-background; @card-primary-color: @global-color; @card-primary-title-color: @global-emphasis-color; @card-primary-color-mode: dark; @card-secondary-hover-background: lighten(@card-secondary-background, 4%); @card-badge-text-transform: uppercase; @card-primary-border-width: 3px; @card-primary-border: fade(@global-secondary-background, 8%); @card-primary-hover-border: fade(@global-secondary-background, 4%); @card-hover-box-shadow: @global-xlarge-box-shadow; @card-default-box-shadow: @global-medium-box-shadow; @card-default-hover-box-shadow: @global-large-box-shadow; @marker-padding: 3px; @marker-background: transparent; @marker-color: @global-secondary-background; @marker-hover-background: @global-secondary-background; @marker-border-width: 2px; @marker-border: fade(@global-secondary-background, 15%); @inverse-marker-background: transparent; @inverse-marker-color: @global-inverse-color; @inverse-marker-hover-background: @global-inverse-color; @inverse-marker-border: fade(@global-inverse-color, 35%); @badge-background: @global-secondary-background; @label-padding-vertical: 2px; @label-padding-horizontal: 8px; @label-background: @global-secondary-background; @label-font-size: 12px; @label-text-transform: uppercase; @overlay-default-background: fade(@global-background, 90%); @overlay-primary-background: fade(@global-secondary-background, 90%); @article-title-font-size-m: @global-xlarge-font-size; @article-title-font-size: @article-title-font-size-m * 0.75; @comment-title-font-size: @global-font-size; @search-placeholder-color: fade(@global-color, 50%); @search-icon-color: @global-color; @search-default-background: transparent; @search-navbar-background: transparent; @search-toggle-color: @global-color; @search-toggle-hover-color: @global-muted-color; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-color; @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: @global-color; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-color; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-color; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-navbar-background: transparent; @inverse-search-navbar-focus-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-color; @inverse-search-navbar-border: @inverse-global-border; @inverse-search-navbar-focus-border: @inverse-global-color; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @inverse-global-color; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @inverse-global-color; @accordion-item-margin-top: 10px; @accordion-title-font-size: 20px; @accordion-title-hover-color: @global-link-color; @accordion-item-border-width: 1px; @accordion-item-border: @global-color; @dropdown-padding: 30px; @dropdown-background: lighten(@global-secondary-background, 2%); @dropdown-color: @global-inverse-color; @dropdown-color-mode: light; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 6px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 6px)'; @dropdown-nav-item-hover-color: @global-inverse-color; @dropdown-nav-subtitle-font-size: 12px; @dropdown-nav-header-color: @global-muted-color; @dropdown-nav-divider-border: fade(@global-border, 15%); @dropdown-nav-sublist-item-hover-color: @global-inverse-color; @dropdown-nav-item-padding-vertical: 0; @dropdown-nav-font-size: 14px; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-nav-subtitle-font-family: @global-font-family; @dropdown-nav-subtitle-font-weight: normal; @dropdown-nav-subtitle-text-transform: none; @dropbar-padding-top: 30px; @dropbar-background: lighten(@global-secondary-background, 2%); @dropbar-color: @inverse-global-color; @dropbar-color-mode: light; @modal-body-padding-horizontal: 30px; @modal-body-padding-vertical: 30px; @slider-container-margin-top: -25px; @slider-container-margin-bottom: -78px; @slider-container-margin-left: -50px; @slider-container-margin-right: -50px; @offcanvas-bar-padding-vertical: 40px; @offcanvas-bar-padding-horizontal: 40px; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-overlay-background: fade(@global-secondary-background, 90%); @tooltip-background: @global-secondary-background; @nav-sublist-padding-left: 10px; @nav-divider-margin-vertical: 10px; @nav-default-font-size: 14px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-muted-color; @nav-default-item-active-color: @global-muted-color; @nav-default-subtitle-font-size: 12px; @nav-default-sublist-item-color: @global-color; @nav-default-sublist-item-hover-color: @global-muted-color; @nav-default-sublist-item-active-color: @global-muted-color; @nav-primary-font-size: @global-medium-font-size; @nav-primary-item-color: @global-color; @nav-primary-item-hover-color: @global-muted-color; @nav-primary-item-active-color: @global-muted-color; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-sublist-font-size: 18px; @nav-primary-sublist-item-color: @global-color; @nav-primary-sublist-item-hover-color: @global-muted-color; @nav-primary-sublist-item-active-color: @global-muted-color; @nav-secondary-font-size: 14px; @nav-secondary-sublist-font-size: 14px; @nav-medium-line-height: 1.2; @nav-large-font-size-l: 86px; @nav-xlarge-font-size-l: 130px; @nav-dividers-margin-top: 7px; @nav-secondary-margin-top: 15px; @nav-default-subtitle-color: @global-muted-color; @nav-default-subtitle-font-family: @global-font-family; @nav-default-subtitle-font-weight: normal; @nav-default-subtitle-text-transform: none; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-font-weight: normal; @nav-primary-subtitle-text-transform: none; @inverse-nav-default-item-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-nav-item-height: 100px; @navbar-nav-item-color: @global-color; @navbar-nav-item-font-size: 14px; @navbar-toggle-color: @global-color; @navbar-toggle-hover-color: @global-muted-color; @navbar-subtitle-font-size: 12px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-width: 250px; @navbar-dropdown-padding: 30px; @navbar-dropdown-background: lighten(@global-secondary-background, 2%); @navbar-dropdown-color: @global-muted-color; @navbar-dropdown-color-mode: light; @navbar-dropdown-grid-gutter-horizontal: 30px; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-hover-color: @global-inverse-color; @navbar-dropdown-nav-item-active-color: @global-inverse-color; @navbar-dropdown-nav-subtitle-font-size: 12px; @navbar-dropdown-nav-header-color: @global-muted-color; @navbar-dropdown-nav-divider-border: fade(@global-border, 15%); @navbar-dropdown-nav-sublist-item-hover-color: @global-inverse-color; @navbar-dropdown-nav-sublist-item-active-color: @global-inverse-color; @navbar-padding-top-m: 20px; @navbar-padding-bottom-m: 20px; @navbar-gap-m: 60px; @navbar-nav-gap-m: 60px; @navbar-nav-item-padding-horizontal-m: 0; @navbar-nav-item-transition-duration: 0.2s; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: 50%; @navbar-nav-item-line-margin-horizontal: -4px; @navbar-nav-item-line-transition-duration: 0.3s; @navbar-nav-item-line-hover-background: @navbar-nav-item-hover-color; @navbar-nav-item-line-onclick-background: @navbar-nav-item-onclick-color; @navbar-nav-item-line-active-background: @navbar-nav-item-active-color; @navbar-nav-item-text-transform: uppercase; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-font-family: @global-font-family; @navbar-subtitle-font-weight: 400; @navbar-subtitle-text-transform: none; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-font-size: 14px; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-dropdown-nav-subtitle-font-family: @global-font-family; @navbar-dropdown-nav-subtitle-font-weight: 400; @navbar-dropdown-nav-subtitle-text-transform: none; @inverse-navbar-nav-item-hover-color: @inverse-global-emphasis-color; @inverse-navbar-toggle-hover-color: @inverse-global-emphasis-color; @subnav-item-color: @global-color; @subnav-item-hover-color: @global-muted-color; @subnav-item-active-color: @global-muted-color; @subnav-divider-border-height: @global-border-width; @subnav-divider-border-width: 22px; @subnav-divider-border: @global-color; @subnav-pill-item-padding-vertical: 6px; @subnav-pill-item-padding-horizontal: 14px; @subnav-pill-item-hover-background: transparent; @subnav-pill-item-onclick-background: @global-primary-background; @subnav-pill-item-onclick-color: @global-inverse-color; @subnav-pill-item-border-width: @global-border-width; @subnav-pill-item-hover-border: @global-color; @inverse-subnav-item-color: @inverse-global-emphasis-color; @inverse-subnav-item-active-color: @inverse-global-color; @breadcrumb-divider: "—"; @breadcrumb-divider-margin-horizontal: 13px; @pagination-margin-horizontal: 20px; @pagination-item-padding-vertical: 8px; @pagination-item-padding-horizontal: 8px; @pagination-item-color: @global-color; @pagination-item-hover-color: @global-muted-color; @pagination-item-min-width: 39px; @pagination-item-font-size: 14px; @pagination-item-border-width: 1px; @pagination-item-active-border: @global-color; @tab-margin-horizontal: 0; @tab-item-padding-horizontal: 24px; @tab-border-width: 0; @tab-item-border-width: 2px; @tab-item-hover-border: @global-color; @tab-item-active-border: @global-color; @slidenav-padding-vertical: 10px; @slidenav-padding-horizontal: 12px; @slidenav-color: @global-inverse-color; @slidenav-hover-color: @slidenav-color; @slidenav-active-color: @slidenav-color; @slidenav-large-padding-vertical: 16px; @slidenav-large-padding-horizontal: 20px; @slidenav-background: @global-secondary-background; @slidenav-hover-background: fade(@global-secondary-background, 80%); @slidenav-active-background: fade(@global-secondary-background, 60%); @inverse-slidenav-color: @global-emphasis-color; @inverse-slidenav-hover-color: @inverse-slidenav-color; @inverse-slidenav-active-color: @inverse-slidenav-color; @inverse-slidenav-background: @global-inverse-color; @inverse-slidenav-hover-background: fade(@global-inverse-color, 80%); @inverse-slidenav-active-background: fade(@global-inverse-color, 60%); @dotnav-item-width: 12px; @dotnav-item-background: transparent; @dotnav-item-hover-background: @global-color; @dotnav-item-onclick-background: @global-secondary-background; @dotnav-item-active-background: @global-secondary-background; @dotnav-item-border-width: 1px; @dotnav-item-border: @global-secondary-background; @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-border: @global-inverse-color; @inverse-dotnav-item-active-border: @global-inverse-color; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @lightbox-caption-padding-vertical: 20px; @lightbox-caption-padding-horizontal: 20px; @text-lead-font-size: 20px; @text-lead-line-height: 1.4; @inverse-text-primary-color: @inverse-global-emphasis-color; @logo-font-size: @global-medium-font-size; @dropcap-color: @global-emphasis-color; @logo-text-transform: uppercase;assets/uikit-themes/master-jack-baker/styles/red-black.less000064400000014021151666572370020020 0ustar00// // Global // @global-color: rgba(24, 24, 24, 0.75); @global-emphasis-color: @global-primary-background; @global-inverse-color: #fff; @global-link-color: #6c1b1b; @global-link-hover-color: darken(@global-link-color, 25%); @global-muted-color: rgba(24, 24, 24, 0.5); @global-background: #ef463e; @global-muted-background: desaturate(darken(@global-background, 4%), 8%); @global-primary-background: #181818; @global-secondary-background: desaturate(darken(@global-background, 6%), 14%); @global-success-background: #2d5545; @global-warning-background: #ff9e48; @global-danger-background: #712334; @global-border: rgba(24, 24, 24, 0.1); @global-large-box-shadow: 0 15px 55px 0 rgba(126, 5, 5, 0.15); @global-medium-box-shadow: 0 5px 15px 0 rgba(126, 5, 5, 0.15); @global-small-box-shadow: 0 2px 8px 0 rgba(126, 5, 5, 0.15); @global-xlarge-box-shadow: 0 28px 50px 0 rgba(126, 5, 5, 0.15); // // Alert // @alert-primary-background: @global-primary-background; @alert-primary-color: @global-background; @alert-success-background: @global-primary-background; @alert-success-color: saturate(lighten(@global-success-background, 25%), 10%); @alert-warning-background: @global-primary-background; @alert-warning-color: saturate(lighten(@global-warning-background, 15%), 10%); @alert-danger-background: @global-primary-background; @alert-danger-color: saturate(lighten(@global-danger-background, 25%), 10%); // // Badge // @badge-background: @global-primary-background; // // Base // @base-link-text-decoration: underline; @base-code-color: #f5e29e; @base-ins-background: rgba(255, 255, 255, 0.1); @base-ins-color: @global-primary-background; @base-mark-background: rgba(255, 255, 255, 0.1); @base-mark-color: @global-primary-background; // // Button // @button-default-background: @global-primary-background; @button-default-hover-background: @global-primary-background; @button-default-active-background: rgba(24, 24, 24, 0.7); @button-primary-active-color: @global-primary-background; @button-secondary-hover-color: @global-emphasis-color; @button-secondary-active-background: rgba(255, 255, 255, 0.8); @button-link-hover-color: @global-color; @inverse-button-link-hover-color: @inverse-global-color; // // Card // @card-badge-background: @global-primary-background; @card-primary-border: fade(@global-secondary-background, 50%); @card-primary-hover-border: @global-secondary-background; @card-secondary-color: @global-emphasis-color; @card-secondary-color-mode: dark; @card-secondary-hover-background: darken(@card-secondary-background, 2%); // // Dotnav // @dotnav-item-border: @global-primary-background; @dotnav-item-onclick-background: @global-primary-background; @dotnav-item-active-background: @global-primary-background; @inverse-dotnav-item-border: @global-inverse-color; // // Dropbar // @dropbar-color: @global-color; @dropbar-color-mode: dark; // // Dropdown // @dropdown-background: @global-muted-background; @dropdown-color: @global-color; @dropdown-color-mode: dark; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Form // @form-radio-checked-background: @global-primary-background; @form-radio-checked-focus-background: @global-primary-background; @form-radio-border: rgba(24, 24, 24, 0.2); // // Form Range // @form-range-thumb-background: @global-primary-background; @form-range-track-background: @global-border; // // Icon // @icon-button-background: @global-primary-background; @icon-button-hover-background: fade(@global-primary-background, 80%); // // Label // @label-background: @global-primary-background; @label-success-background: @global-primary-background; @label-success-color: saturate(lighten(@global-success-background, 25%), 10%); @label-warning-background: @global-primary-background; @label-warning-color: @global-warning-background; @label-danger-background: @global-primary-background; @label-danger-color: saturate(lighten(@global-danger-background, 25%), 10%); // // Nav // @nav-primary-item-hover-color: @global-emphasis-color; @nav-primary-item-active-color: @global-emphasis-color; @nav-primary-sublist-item-hover-color: @global-emphasis-color; @nav-primary-sublist-item-active-color: @global-emphasis-color; // // Navbar // @navbar-dropdown-color-mode: dark; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-active-color: @global-emphasis-color; // // Overlay // @overlay-primary-color-mode: dark; // // Section // @section-secondary-color-mode: dark; // // Slidenav // @slidenav-color: @global-inverse-color; @slidenav-hover-color: @slidenav-color; @slidenav-active-color: @slidenav-color; @slidenav-background: @global-primary-background; @slidenav-hover-background: fade(@slidenav-background, 50%); @slidenav-active-background: fade(@slidenav-background, 50%); @inverse-slidenav-color: @global-emphasis-color; @inverse-slidenav-hover-color: @slidenav-color; @inverse-slidenav-active-color: @slidenav-color; @inverse-slidenav-background: #fff; @inverse-slidenav-hover-background: fade(@inverse-slidenav-background, 50%); @inverse-slidenav-active-background: fade(@inverse-slidenav-background, 50%); // // Text // @text-primary-color: @global-link-color; @text-secondary-color: @global-link-color; // // Tile // @tile-secondary-color-mode: dark; // // Tooltip // @tooltip-background: @global-primary-background; // // Theme // @theme-toolbar-color-mode: dark; // // WooCommerce // @woocommerce-rating-background-color: fade(@global-border, 30%); @woocommerce-rating-color: @global-primary-background; assets/uikit-themes/master-jack-baker/styles/dark-turquoise.less000064400000015753151666572370021170 0ustar00// // Global // @global-color: #858eaf; @global-emphasis-color: #e6e7ff; @global-inverse-color: #1a1c2b; @global-muted-color: #565775; @global-link-color: @global-primary-background; @global-link-hover-color: darken(@global-link-color, 10%); @global-background: #1a1c2b; @global-muted-background: lighten(@global-background, 5%); @global-primary-background: #34c6b0; @global-secondary-background: darken(@global-background, 3%); @global-success-background: #8beca0; @global-warning-background: #ffb881; @global-danger-background: #fa8a84; @global-border: #2c2e40; @global-small-box-shadow: 0 2px 8px rgba(5,5,12, 0.2); @global-medium-box-shadow: 0 5px 15px rgba(5,5,12, 0.22); @global-large-box-shadow: 0 15px 55px rgba(5,5,12, 0.23); @global-xlarge-box-shadow: 0 28px 50px rgba(5,5,12, 0.25); // // Theme // @theme-page-container-color-mode: light; // // Alert // @alert-primary-background: @global-muted-background; @alert-success-background: @global-muted-background; @alert-warning-background: @global-muted-background; @alert-danger-background: @global-muted-background; // // Badge // @badge-background: @global-primary-background; // // Base // @base-code-color: #43bbad; @base-ins-background: rgba(255, 255, 255, 0.1); @base-ins-color: #e6e7ff; @base-mark-background: @base-ins-background; @base-mark-color: @base-ins-color; // // Button // @button-default-background: @global-primary-background; @button-default-color: @global-inverse-color; @button-default-hover-background: @button-default-background; @button-default-hover-color: @button-default-color; @button-default-active-background: fade(@button-default-background, 70%); @button-default-active-color: @button-default-color; @button-primary-active-color: @global-primary-background; @button-secondary-border: @global-muted-background; @button-secondary-color: @global-color; @button-secondary-hover-background: @global-muted-background; @button-secondary-hover-color: @global-emphasis-color; @button-secondary-active-background: lighten(@global-muted-background, 5%); @button-secondary-active-color: @global-emphasis-color; @button-link-hover-color: @global-color; @inverse-button-link-hover-color: @inverse-global-color; // // Card // @card-badge-background: @global-primary-background; @card-default-color-mode: light; @card-primary-color-mode: light; @card-primary-border: @global-muted-background; @card-primary-hover-border: lighten(@card-primary-border, 5%); @card-secondary-color-mode: light; @card-secondary-color: @global-color; @card-secondary-title-color: @global-emphasis-color; @card-secondary-hover-background: darken(@card-secondary-background, 1%); // // Dotnav // @dotnav-item-border: rgba(255,255,255, 0.8); @dotnav-item-hover-border: #fff; @dotnav-item-active-border: #fff; @dotnav-item-hover-background: #fff; @dotnav-item-onclick-background: #fff; @dotnav-item-active-background: #fff; // // Dropbar // @dropbar-color: @global-emphasis-color; // // Dropdown // @dropdown-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Form // @form-radio-checked-background: @global-color; @form-radio-checked-focus-background: @global-color; @inverse-form-border: @inverse-global-border; // // Form Range // @form-range-thumb-background: @global-primary-background; @form-range-track-background: @global-border; @form-range-track-focus-background: @global-primary-background; // // Icon // @icon-button-background: @global-primary-background; @icon-button-color: @global-inverse-color; @icon-button-hover-background: @global-primary-background; @icon-button-hover-color: fade(@icon-button-color, 70%); @icon-button-active-background: fade(@icon-button-background, 70%); @icon-button-active-color: @icon-button-color; // // Inverse // @inverse-global-color-mode: dark; @inverse-global-border: #e4e4e4; // // Label // @label-background: @global-primary-background; // // Marker // @marker-border: rgba(255, 255, 255, 0.15); @marker-color: @global-emphasis-color; @marker-hover-background: @global-emphasis-color; @marker-hover-color: @global-inverse-color; // // Nav // @nav-default-item-hover-color: @global-emphasis-color; @nav-default-item-active-color: @global-emphasis-color; @nav-default-sublist-item-hover-color: @global-emphasis-color; @nav-default-sublist-item-active-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-emphasis-color; @nav-primary-item-active-color: @global-emphasis-color; @nav-primary-sublist-item-hover-color: @global-emphasis-color; @nav-primary-sublist-item-active-color: @global-emphasis-color; // // Navbar // @navbar-color-mode: light; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-emphasis-color; @navbar-dropdown-color-mode: light; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Offcanvas // @offcanvas-bar-color-mode: light; // // Overlay // @overlay-default-color-mode: light; @overlay-primary-color-mode: light; // // Search // @search-toggle-hover-color: @global-emphasis-color; @inverse-search-default-border: @inverse-global-border; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; @section-secondary-color-mode: light; // // Subnav // @subnav-item-hover-color: @global-emphasis-color; @subnav-item-active-color: @global-emphasis-color; // // Slidenav // @slidenav-background: @global-emphasis-color; @slidenav-hover-background: fade(@slidenav-background, 80%); @slidenav-active-background: fade(@slidenav-background, 60%); @inverse-slidenav-background: @global-background; @inverse-slidenav-hover-background: fade(@inverse-slidenav-background, 80%); @inverse-slidenav-active-background: fade(@inverse-slidenav-background, 60%); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Text // @text-secondary-color: darken(@global-primary-background, 10%); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: dark; @tile-secondary-color-mode: light; // // Tooltip // @tooltip-background: @global-primary-background; // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 10%); @woocommerce-rating-color: @global-primary-background; assets/uikit-themes/master-jack-baker/styles/white-black.less000064400000012705151666572370020375 0ustar00// // Global // @global-color: #555; @global-emphasis-color: @global-primary-background; @global-muted-color: fade(@global-emphasis-color, 50%); @global-link-color: #000; @global-link-hover-color: fade(@global-link-color, 60%); @global-background: #ffffff; @global-muted-background: @global-secondary-background; @global-primary-background: #111111; @global-secondary-background: #f5f5f5; @global-border: fade(@global-primary-background, 10%); @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.04); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.04); @global-large-box-shadow: 0 15px 55px rgba(0,0,0,0.04); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.06); // // Alert // @alert-primary-background: lighten(@global-secondary-background, 2%); @alert-success-background: lighten(@global-secondary-background, 2%); @alert-warning-background: lighten(@global-secondary-background, 2%); @alert-danger-background: lighten(@global-secondary-background, 2%); // // Badge // @badge-background: @global-primary-background; // // Base // @base-link-text-decoration: underline; // // Button // @button-default-color: @global-emphasis-color; @button-default-hover-color: @global-emphasis-color; @button-default-hover-background: darken(@global-secondary-background, 2%); @button-default-active-background: darken(@global-secondary-background, 5%); @button-default-active-color: @global-emphasis-color; @button-secondary-border: fade(@global-primary-background, 20%); @button-secondary-color: fade(@global-primary-background, 50%); @button-secondary-hover-background: @global-primary-background; @button-secondary-active-background: fade(@global-primary-background, 80%); // // Card // @card-badge-background: @global-primary-background; @card-primary-border: @global-border; @card-primary-hover-border: fade(@global-primary-background, 14%); @card-secondary-color: @global-color; @card-secondary-color-mode: dark; @card-secondary-hover-background: @global-muted-background; @card-secondary-title-color: @global-emphasis-color; // // Dotnav // @dotnav-item-border: fade(@global-primary-background, 25%); @dotnav-item-hover-background: fade(@global-primary-background, 25%); @dotnav-item-onclick-background: @global-primary-background; @dotnav-item-active-background: @global-primary-background; // // Dropbar // @dropbar-color: @global-color; @dropbar-color-mode: dark; // // Dropdown // @dropdown-background: darken(@global-background, 2%); @dropdown-color: @global-color; @dropdown-color-mode: dark; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Form // @form-radio-checked-focus-background: @global-primary-background; @form-radio-checked-background: @global-primary-background; // // Form Range // @form-range-thumb-background: @global-primary-background; @form-range-track-background: @global-border; // // Icon // @icon-button-color: @global-emphasis-color; @icon-button-hover-color: @global-color; @icon-button-active-background: fade(@global-secondary-background, 60%); @icon-button-active-color: @global-emphasis-color; @inverse-icon-button-background: @inverse-global-muted-background; @inverse-icon-button-color: @global-inverse-color; @inverse-icon-button-hover-background: fadeout(@inverse-global-muted-background, 3%); @inverse-icon-button-hover-color: @inverse-global-color; @inverse-icon-button-active-background: @inverse-global-muted-background; @inverse-icon-button-active-color: @global-inverse-color; // // Label // @label-color: @global-emphasis-color; // // Marker // @marker-border: fade(@global-muted-color, 30%); @marker-color: @global-primary-background; @marker-hover-background: @global-primary-background; // // Nav // @nav-primary-item-hover-color: @global-emphasis-color; @nav-primary-item-active-color: @global-emphasis-color; @nav-primary-sublist-item-hover-color: @global-emphasis-color; @nav-primary-sublist-item-active-color: @global-emphasis-color; // // Navbar // @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-background: darken(@navbar-background, 2%); @navbar-dropdown-color-mode: dark; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-emphasis-color; // // Overlay // @overlay-primary-color-mode: dark; @overlay-default-background: fade(@global-background, 70%); @overlay-primary-background: fade(@global-secondary-background, 70%); // // Search // @search-toggle-hover-color: @global-emphasis-color; // // Section // @section-secondary-color-mode: dark; // // Slidenav // @slidenav-background: @global-primary-background; @slidenav-hover-background: rgba(0, 0, 0, 0.8); @slidenav-active-background: rgba(0, 0, 0, 0.6); // // Tile // @tile-secondary-color-mode: dark; // // Tooltip // @tooltip-background: @global-primary-background; // // Toolbar // @theme-toolbar-color-mode: dark; // // WooCommerce // @woocommerce-rating-color: @global-primary-background; assets/uikit-themes/master-jack-baker/styles/white-brown.less000064400000001511151666572370020441 0ustar00// // Global // @global-color: #8e8986; @global-inverse-color: #f7f1e7; @global-emphasis-color: #78706a; @global-link-color: #b86654; @global-muted-color: #afa7a1; @global-danger-background: #e78580; @global-muted-background: #f5f5f5; @global-primary-background: #b9afa6; @global-secondary-background: #3b3836; @global-success-background: #8bc98f; @global-warning-background: #f7b581; // // Alert // @alert-primary-background: #faf9f9; @alert-success-background: #f2f9f2; @alert-warning-background: #fbf6f1; @alert-danger-background: #fcf7f7; // // Badge // @inverse-badge-color: darken(@global-emphasis-color, 30%); @inverse-badge-hover-color: darken(@global-emphasis-color, 30%); // // Woocommerce // @woocommerce-rating-color: darken(@global-emphasis-color, 10%); assets/uikit-themes/master-jack-baker/styles/black-red.less000064400000014443151666572370020030 0ustar00// // Global // @global-color: #aaaaaa; @global-emphasis-color: #ffffff; @global-inverse-color: @global-background; @global-muted-color: fade(@global-emphasis-color, 50%); @global-link-hover-color: lighten(@global-link-color, 9%); @global-background: #111; @global-danger-background: #e43751; @global-muted-background: #191919; @global-secondary-background: #000; @global-border: #292929; @global-large-box-shadow: 0 15px 55px 0 rgba(0,0,0, 0.7); @global-medium-box-shadow: 0 5px 15px 0 rgba(0,0,0, 0.7); @global-small-box-shadow: 0 2px 8px 0 rgba(0,0,0, 0.7); @global-xlarge-box-shadow: 0 28px 50px 0 rgba(0,0,0, 0.7); // // Theme // @theme-page-container-color-mode: light; @theme-page-border: @global-muted-background; // // Alert // @alert-primary-background: @global-muted-background; @alert-success-background: @global-muted-background; @alert-warning-background: @global-muted-background; @alert-danger-background: @global-muted-background; // // Badge // @badge-background: @global-emphasis-color; // // Base // @base-code-color: #43bbad; @base-ins-background: rgba(255, 255, 255, 0.1); @base-ins-color: @global-emphasis-color; @base-mark-background: rgba(255, 255, 255, 0.1); @base-mark-color: @global-emphasis-color; // // Button // @button-default-background: @global-emphasis-color; @button-default-hover-background: fade(@button-default-background, 90%); @button-default-active-background: fade(@button-default-background, 80%); @button-primary-active-color: @global-primary-background; @button-secondary-color: @global-emphasis-color; @button-secondary-border: @global-emphasis-color; @button-secondary-hover-border: @global-emphasis-color; @button-secondary-hover-background: @global-emphasis-color; @button-secondary-active-background: fade(@button-secondary-hover-background, 80%); @button-link-hover-color: @global-color; @inverse-button-link-hover-color: @inverse-global-color; // // Card // @card-badge-background: #fff; @card-default-color-mode: light; @card-primary-color-mode: light; @card-primary-border: @global-muted-background; @card-primary-hover-border: lighten(@card-primary-border, 5%); @card-secondary-color: @global-color; @card-secondary-title-color: @global-emphasis-color; @card-secondary-hover-background: lighten(@card-secondary-background, 10%); // // Divider // @divider-small-border: @global-border; // // Dotnav // @dotnav-item-border: fade(@global-emphasis-color, 80%); @dotnav-item-hover-background: fade(@global-emphasis-color, 10%); @dotnav-item-onclick-background: fade(@global-emphasis-color, 70%); @dotnav-item-active-background: @global-emphasis-color; // // Dropbar // @dropbar-color: @global-emphasis-color; // // Dropdown // @dropdown-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Form // @form-radio-checked-background: @global-emphasis-color; @form-radio-checked-focus-background: @global-emphasis-color; @inverse-form-border: @inverse-global-border; // // Form Range // @form-range-thumb-background: @global-emphasis-color; @form-range-track-background: @global-border; // // Heading // @heading-line-border: @global-border; // // Icon // @icon-button-background: @global-emphasis-color; @icon-button-hover-background: fade(@icon-button-background, 80%); // // Inverse // @inverse-global-color-mode: dark; @inverse-global-border: #e4e4e4; // // Label // @label-background: @global-emphasis-color; // // Marker // @marker-border: rgba(255, 255, 255, 0.15); @marker-color: @global-emphasis-color; @marker-hover-background: @global-emphasis-color; @marker-hover-color: @global-background; // // Nav // @nav-default-item-hover-color: @global-emphasis-color; @nav-default-item-active-color: @global-emphasis-color; @nav-default-sublist-item-hover-color: @global-emphasis-color; @nav-default-sublist-item-active-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-emphasis-color; @nav-primary-item-active-color: @global-emphasis-color; @nav-primary-sublist-item-hover-color: @global-emphasis-color; @nav-primary-sublist-item-active-color: @global-emphasis-color; // // Navbar // @navbar-color-mode: light; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-emphasis-color; @navbar-dropdown-color-mode: light; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Offcanvas // @offcanvas-bar-color-mode: light; // // Overlay // @overlay-default-background: fade(@global-background, 70%); @overlay-default-color-mode: light; @overlay-primary-background: fade(@global-secondary-background, 70%); @overlay-primary-color-mode: light; // // Search // @search-toggle-hover-color: @global-emphasis-color; @inverse-search-default-border: @inverse-global-border; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; @section-secondary-color-mode: light; // // Slidenav // @slidenav-background: @global-emphasis-color; @slidenav-hover-background: fade(@slidenav-background, 80%); @slidenav-active-background: fade(@slidenav-background, 60%); // // Tab // @tab-item-active-border: @global-emphasis-color; // // Text // @text-secondary-color: lighten(@global-primary-background, 5%); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: dark; @tile-secondary-color-mode: light; // // Tooltip // @tooltip-background: @global-emphasis-color; // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 15%); @woocommerce-rating-color: #fff; assets/uikit-themes/master-fuse/icons/nav-parent-icon-large.svg000064400000000260151666572370020656 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.6" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-fuse/styles/white-red.less000064400000003376151666572400017041 0ustar00// // Global // @global-color: #212121; @global-emphasis-color: #000000; @global-link-color: @global-primary-background; @global-muted-color: #8e9094; @global-link-hover-color: #2d2f32; @global-background: #ffffff; @global-danger-background: #ff6658; @global-muted-background: #f4f6f8; @global-primary-background: #fc5b68; @global-secondary-background: #2e435c; @global-border: #dce0e1; // // Article // @article-meta-color: #afb3ba; @article-meta-link-color: @global-color; @article-meta-link-hover-color: #b4b5ba; // // Breadcrumb // @breadcrumb-item-color: @global-color; @breadcrumb-item-hover-color: #b7b7b7; @breadcrumb-item-disabled-color: #b7b7b7; // // Button // @button-default-background: #f5f0f0; @button-default-hover-border: #626971; @button-default-active-border: #626971; // // Card // @card-hover-border: #c4ccd6; @card-default-hover-border: #c4ccd6; // // Divider // @divider-icon-color: @global-muted-color; // // Dropdown // @dropdown-nav-item-hover-color: #fc5b68; // // Heading // @heading-bullet-border: #f06672; // // Inverse // @inverse-marker-hover-background: @global-primary-background; @inverse-marker-hover-color: @global-background; // // Marker // @marker-color: @global-background; // // Nav // @nav-default-item-color: #aaaaaa; @nav-default-item-hover-color: #fc5b68; @nav-default-item-active-color: #fc5b68; @nav-primary-item-hover-color: #fc5b68; @nav-primary-item-active-color: #fc5b68; // // Navbar // @navbar-nav-item-color: #adafb2; @navbar-dropdown-background: @global-background; // // Subnav // @subnav-item-color: #aaaaaa; @subnav-pill-item-hover-background: #dee2e9; assets/uikit-themes/master-fuse/styles/dark-brown.less000064400000013374151666572400017216 0ustar00// // Global // @global-color: #8a7468; @global-emphasis-color: #bca090; @global-inverse-color: #232222; @global-link-color: #cfaa92; @global-muted-color: fade(@global-color, 40%); @global-link-hover-color: #ffffff; @global-background: #232222; @global-danger-background: #973e42; @global-muted-background: #1f1f1f; @global-primary-background: #6d5549; @global-secondary-background: #1d1d1d; @global-success-background: #338353; @global-warning-background: #a76d38; @global-border: #423a35; // // Theme // @theme-page-container-color-mode: light; @theme-box-decoration-default-border: @global-primary-background; @theme-box-decoration-primary-border: @global-primary-background; @theme-box-decoration-secondary-border: @global-primary-background; @inverse-theme-box-decoration-default-border: fadein(@inverse-global-muted-background, 15%); @inverse-theme-box-decoration-primary-border: fadein(@inverse-global-muted-background, 15%); @inverse-theme-box-decoration-secondary-border: fadein(@inverse-global-muted-background, 15%); // // Article // @article-meta-color: #7d6960; @article-meta-link-color: #c2a395; @article-meta-link-hover-color: @global-link-hover-color; // // Badge // @badge-color: lighten(@global-emphasis-color, 30%); @inverse-badge-color: #BCA090; // // Base // @base-ins-background: rgba(64, 56, 52, 0.71); @base-mark-background: rgba(64, 56, 52, 0.71); // // Button // @button-default-background: #372f2c; @button-default-active-background: @global-primary-background; @button-default-active-border: rgba(38, 33, 30, 0); @button-default-active-color: @global-link-hover-color; @button-primary-color: @global-link-hover-color; @button-primary-hover-color: #8c7364; @button-secondary-background: #1a1a1a; @button-secondary-color: @global-color; @button-secondary-hover-border: @global-color; @button-secondary-hover-color: @global-color; @button-secondary-active-border: @global-color; @button-secondary-active-color: @global-color; @button-danger-color: @global-link-hover-color; @inverse-button-primary-color: @global-emphasis-color; @inverse-button-secondary-color: @global-emphasis-color; // // Card // @card-badge-background: lighten(@global-primary-background, 4%); @card-badge-color: lighten(@global-emphasis-color, 30%); @card-hover-border-width: 2px; @card-default-background: @global-background; @card-default-color-mode: light; @card-default-border-width: 2px; @card-default-hover-background: @global-background; @card-primary-color: #c3ab9e; @card-secondary-background: @global-muted-background; @card-secondary-color: @global-color; @card-secondary-hover-background: #1b1b1b; // // Dotnav // @dotnav-item-background: fade(@global-color, 40%); @dotnav-item-hover-background: @global-primary-background; @inverse-dotnav-item-background: fade(@inverse-global-color, 20%); // // Dropdown // @dropdown-color-mode: light; // // Dropbar // @dropbar-color-mode: light; @dropbar-top-box-shadow: 0 6px 4px -3px fade(@global-secondary-background, 60%); @dropbar-bottom-box-shadow: 0 -6px 4px -3px fade(@global-secondary-background, 60%); @dropbar-left-box-shadow: 6px 0 4px -3px fade(@global-secondary-background, 60%); @dropbar-right-box-shadow: -6px 0 4px -3px fade(@global-secondary-background, 60%); // // Form // @form-radio-checked-icon-color: @global-emphasis-color; @form-radio-checked-focus-background: lighten(@global-primary-background, 5%); @form-radio-border: @global-primary-background; @form-radio-focus-border: lighten(@global-primary-background, 5%); @inverse-form-radio-checked-icon-color: @global-emphasis-color; // // Form Range // @form-range-track-focus-background: @global-emphasis-color; @form-range-thumb-background: @global-emphasis-color; // // Heading // @heading-bullet-border: @global-emphasis-color; // // Icon // @inverse-icon-button-active-color: @global-emphasis-color; // // Inverse // @inverse-global-color-mode: dark; // // Label // @label-color: lighten(@global-emphasis-color, 30%); @label-success-color: @label-color; @label-warning-color: @label-color; @label-danger-color: @label-color; @inverse-label-color: #BCA090; // // List // @list-striped-background: rgba(31, 31, 31, 0.37); @list-bullet-icon-color: @global-color; // // Marker // @marker-background: #fff; @marker-hover-background: #fff; @marker-hover-color: @global-inverse-color; // // Navbar // @navbar-color-mode: light; @navbar-dropdown-color-mode: light; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; // // Notification // @notification-message-primary-color: #ffffff; @notification-message-success-color: #ffffff; @notification-message-warning-color: #ffffff; @notification-message-danger-color: #ffffff; // // Offcanvas // @offcanvas-bar-background: #1e1e1e; @offcanvas-overlay-background: rgba(33, 33, 33, 0.71); // // Overlay // @overlay-default-color-mode: light; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; // // Subnav // @inverse-subnav-pill-item-active-color: @global-emphasis-color; // // Text // @text-muted-color: #574a45; @text-secondary-color: @global-primary-background; // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; // // WooCommerce // @woocommerce-rating-background-color: fade(@global-primary-background, 35%); @woocommerce-rating-color: lighten(@global-primary-background, 5%); assets/uikit-themes/master-fuse/styles/light-green.less000064400000006262151666572400017353 0ustar00// // Global // @global-color: rgba(41, 32, 26, 0.7); @global-emphasis-color: #29201a; @global-inverse-color: #f1efed; @global-link-color: @global-primary-background; @global-muted-color: #aba6a0; @global-background: #fafafa; @global-muted-background: #ebe8e5; @global-primary-background: #37a95d; @global-secondary-background: @global-emphasis-color; @global-success-background: #a2d32e; @global-border: #dddad6; // // Alert // @alert-success-color: #97c529; // // Article // @article-meta-link-color: #423a35; @article-meta-link-hover-color: @global-muted-color; // // Button // @button-default-background: #ffffff; @button-default-active-color: @global-emphasis-color; // // Card // @internal-card-default-gradient: url("../../master-fuse/images/section-background-image-noise.png"); // // Divider // @divider-icon-color: @global-muted-color; // // Dotnav // @dotnav-item-background: fade(darken(@global-color, 2%), 20%); @dotnav-item-hover-background: @global-primary-background; // // Dropbar // @dropbar-background: @navbar-dropdown-background; // // Dropdown // @dropdown-dropbar-margin: @dropdown-margin; @dropdown-dropbar-padding-top: @dropdown-padding; @dropdown-dropbar-large-padding-top: @dropdown-large-padding; // // Form // @form-background: transparent; // // Inverse // @inverse-global-border: rgba(241, 239, 237, 0.1); @inverse-global-color: rgba(241, 239, 237, 0.4); @inverse-marker-hover-background: @global-primary-background; @inverse-marker-hover-color: @global-inverse-color; // // Marker // @marker-color: @global-inverse-color; // // Nav // @nav-default-item-color: rgba(41, 32, 26, 0.6); @nav-default-item-hover-color: #1b130e; @nav-default-item-active-color: #1b130e; @nav-default-sublist-item-hover-color: #1b130e; @nav-primary-item-hover-color: #1b130e; @nav-primary-item-active-color: #1b130e; @nav-primary-sublist-item-hover-color: #1b130e; // // Navbar // @navbar-background: @global-inverse-color; @navbar-dropdown-background: @global-inverse-color; // // Section // @internal-section-default-image: "../../master-fuse/images/section-background-image-noise.png"; @internal-section-muted-image: "../../master-fuse/images/section-background-image-noise.png"; @internal-section-primary-image: "../../master-fuse/images/section-background-image-noise.png"; @internal-section-secondary-image: "../../master-fuse/images/section-background-image-noise.png"; // // Subnav // @subnav-item-color: rgba(41, 32, 26, 0.43); @subnav-item-active-color: @global-primary-background; @subnav-pill-item-hover-background: #d7d2cd; // // Table // @table-row-active-background: #e5e0dc; // // Tile // @internal-tile-default-image: "../../master-fuse/images/section-background-image-noise.png"; @internal-tile-muted-image: "../../master-fuse/images/section-background-image-noise.png"; @internal-tile-primary-image: "../../master-fuse/images/section-background-image-noise.png"; @internal-tile-secondary-image: "../../master-fuse/images/section-background-image-noise.png"; assets/uikit-themes/master-fuse/styles/white-bordeaux.less000064400000001315151666572400020067 0ustar00// // Global // @global-color: #212121; @global-emphasis-color: #000000; @global-link-color: @global-primary-background; @global-primary-background: #ca5254; @global-secondary-background: #181824; @global-border: #dce0e1; // // Dropdown // @dropdown-nav-item-hover-color: #ca5254; // // Inverse // @inverse-marker-hover-background: @global-primary-background; @inverse-marker-hover-color: #fff; // // Marker // @marker-color: #fff; // // Nav // @nav-default-item-hover-color: #ca5254; @nav-default-item-active-color: #ca5254; @nav-primary-item-hover-color: #ca5254; @nav-primary-item-active-color: #ca5254; // // Subnav // @subnav-item-color: #aaaaaa; assets/uikit-themes/master-fuse/styles/dark-yellow.less000064400000013474151666572400017403 0ustar00// // Global // @global-color: #a9a6b3; @global-emphasis-color: #ffb830; @global-link-color: @global-emphasis-color; @global-muted-color: fade(@global-color, 60%); @global-link-hover-color: #ffffff; @global-inverse-color: #1d1c2b; @global-background: #1d1c2b; @global-muted-background: #1a1927; @global-primary-background: #e1a32f; @global-secondary-background: #161521; @global-warning-background: #fe6b45; @global-border: #2e2e3d; // // Theme // @theme-page-container-color-mode: light; @theme-box-decoration-default-border: @global-primary-background; @theme-box-decoration-primary-border: @global-primary-background; @theme-box-decoration-secondary-border: @global-primary-background; @inverse-theme-box-decoration-default-border: fadein(@inverse-global-muted-background, 15%); @inverse-theme-box-decoration-primary-border: fadein(@inverse-global-muted-background, 15%); @inverse-theme-box-decoration-secondary-border: fadein(@inverse-global-muted-background, 15%); // // Article // @article-meta-link-color: @global-link-hover-color; @article-meta-link-hover-color: @global-emphasis-color; // // Base // @base-ins-background: @global-emphasis-color; @base-ins-color: @global-link-hover-color; @base-mark-background: @global-emphasis-color; @base-mark-color: @global-link-hover-color; @base-blockquote-color: @global-link-hover-color; // // Button // @button-default-background: #232237; @button-default-hover-border: @global-emphasis-color; @button-default-active-border: @global-emphasis-color; @button-default-active-color: @global-emphasis-color; @button-secondary-color: @global-color; @button-secondary-hover-border: @global-emphasis-color; @button-secondary-hover-color: @global-emphasis-color; @button-secondary-active-border: @global-emphasis-color; @button-secondary-active-color: @global-emphasis-color; @inverse-button-primary-color: @global-emphasis-color; @inverse-button-secondary-color: @global-emphasis-color; // // Card // @card-default-color-mode: light; @card-primary-background: #e3a61e; @card-primary-color-mode: dark; @card-secondary-color: @global-color; @card-secondary-color-mode: light; @inverse-card-badge-color: @global-emphasis-color; // // Divider // @divider-icon-color: @global-muted-color; // // Dotnav // @dotnav-item-background: fade(@global-color, 40%); @dotnav-item-hover-background: @global-primary-background; @inverse-dotnav-item-background: fade(@inverse-global-color, 20%); // // Dropbar // @dropbar-background: @navbar-dropdown-background; @dropbar-color-mode: light; @dropbar-top-box-shadow: 0 6px 4px -3px fade(@global-secondary-background, 30%); @dropbar-bottom-box-shadow: 0 -6px 4px -3px fade(@global-secondary-background, 30%); @dropbar-left-box-shadow: 6px 0 4px -3px fade(@global-secondary-background, 30%); @dropbar-right-box-shadow: -6px 0 4px -3px fade(@global-secondary-background, 30%); // // Dropdown // @dropdown-dropbar-margin: @dropdown-margin; @dropdown-dropbar-padding-top: @dropdown-padding; @dropdown-dropbar-large-padding-top: @dropdown-large-padding; @dropdown-color-mode: light; // // Form // @form-radio-border: #6e6e80; @inverse-form-radio-checked-icon-color: @global-emphasis-color; // // Form Range // @form-range-track-focus-background: @global-emphasis-color; @form-range-thumb-background: @global-emphasis-color; // // Heading // @heading-bullet-border: @global-emphasis-color; // // Icon // @inverse-icon-button-active-background: @global-primary-background; // // Inverse // @inverse-global-color-mode: dark; // // Marker // @marker-background: #fff; @marker-hover-background: #fff; @marker-hover-color: @global-inverse-color; // // Nav // @nav-primary-item-hover-color: @global-emphasis-color; @nav-primary-sublist-item-hover-color: @global-emphasis-color; @nav-secondary-subtitle-color: @global-color; // // Navbar // @navbar-color-mode: light; @navbar-dropdown-background: #222132; @navbar-dropdown-color-mode: light; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Notification // @notification-message-primary-color: #ffffff; @notification-message-success-color: #ffffff; @notification-message-warning-color: #ffffff; @notification-message-danger-color: #ffffff; // // Offcanvas // @offcanvas-overlay-background: rgba(22, 21, 33, 0.48); // // Overlay // @overlay-default-color-mode: light; @overlay-primary-color-mode: dark; // // Search // @search-navbar-background: darken(@global-muted-background, 2%); // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-background: #e3a61e; @section-primary-color-mode: dark; // // Subnav // @subnav-pill-item-hover-background: #2f2d42; @inverse-subnav-pill-item-active-color: @global-emphasis-color; // // Tab // @tab-item-hover-border: @global-emphasis-color; @tab-item-hover-color: @global-emphasis-color; @tab-item-active-border: @global-emphasis-color; // // Table // @table-row-active-background: @global-muted-background; // // Text // @text-lead-color: @global-link-hover-color; @text-secondary-color: desaturate(lighten(@global-secondary-background, 50%), 10%); // // Tile // @tile-primary-color-mode: dark; @tile-default-color-mode: light; @tile-muted-color-mode: light; // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 10%); @woocommerce-widget-active-filters-background: darken(@global-inverse-color, 3%); @woocommerce-widget-active-filters-hover-background: darken(@global-inverse-color, 8%); assets/uikit-themes/master-fuse/_import.less000064400000047014151666572400015274 0ustar00@internal-fonts: 'Montserrat:500|PT+Serif:400,400i,700|Playfair+Display'; @global-font-family: 'PT Serif'; @global-font-size: 16px; @global-line-height: 1.625; // 26px @global-2xlarge-font-size: 42px; @global-xlarge-font-size: 36px; @global-large-font-size: 28px; @global-medium-font-size: 20px; @global-small-font-size: 13px; @global-primary-font-family: 'Playfair Display'; @global-primary-font-weight: inherit; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: Montserrat; @global-secondary-font-weight: 500; @global-secondary-text-transform: uppercase; @global-secondary-letter-spacing: 2px; @global-secondary-font-style: inherit; @global-color: #6C6D74; @global-emphasis-color: #2D2E33; @global-muted-color: #B4B5BA; @global-link-color: #2D2E33; @global-link-hover-color: darken(@global-link-color, 15%); @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #F7F7F7; @global-primary-background: #303033; @global-secondary-background: #242427; @global-success-background: #3DC372; @global-warning-background: #FF9E45; @global-danger-background: #E44E56; @global-border-width: 1px; @global-border: #E5E5E7; @global-border-radius: 0; @global-small-box-shadow: 0 1px 4px rgba(0,0,0,0.14); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 20px; @global-small-gutter: 10px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-code-font-size: 11px; @base-code-color: @global-emphasis-color; @base-em-color: @global-emphasis-color; @base-h1-font-size: @global-2xlarge-font-size * 0.87; // 36px @base-h2-font-size: @global-xlarge-font-size * 0.89; // 32px @base-h6-font-size: 11px; @base-blockquote-font-style: normal; @base-blockquote-footer-margin-top: @global-medium-margin; @base-blockquote-footer-font-size: 11px; @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 2px; @base-pre-padding: 10px; @base-pre-background: @global-background; @base-blockquote-footer-em-dash: false; @base-blockquote-footer-letter-spacing: @global-secondary-letter-spacing; @base-code-border-width: @global-border-width; @base-code-border: @global-border; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @base-code-border-radius: 1px; @base-pre-border-radius: @global-border-radius; @inverse-base-link-hover-color: fade(@inverse-global-color, 70%); @inverse-base-code-border: @inverse-global-border; @heading-small-font-size-m: 48px; @heading-divider-border-width: ~'calc(0.5px + 0.03em)'; @heading-line-border-width: ~'calc(0.6px + 0.03em)'; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-fuse/images/divider-icon.svg"; @list-bullet-icon-color: darken(@global-border, 8%); @internal-list-bullet-image: "../../../../uikit-themes/master-fuse/images/list-bullet.svg"; @description-list-term-font-size: 11px; @icon-button-background: @global-background; @icon-button-color: @global-color; @icon-button-hover-background: @global-background; @icon-button-hover-color: @global-primary-background; @icon-button-active-background: @global-primary-background; @icon-button-active-color: @global-inverse-color; @icon-button-border-width: @global-border-width; @icon-button-border: @global-border; @icon-button-hover-border: @icon-button-hover-color; @icon-button-active-border: @icon-button-active-background; @inverse-icon-button-background: transparent; @inverse-icon-button-color: @inverse-global-color; @inverse-icon-button-hover-background: transparent; @inverse-icon-button-hover-color: @inverse-global-emphasis-color; @inverse-icon-button-active-background: @inverse-global-primary-background; @inverse-icon-button-active-color: @inverse-global-inverse-color; @inverse-icon-button-border: @inverse-global-border; @inverse-icon-button-hover-border: fade(@inverse-global-color, 20%); @form-range-track-height: @global-border-width; @form-range-track-background: @global-border; @form-range-track-focus-background: @global-secondary-background; @form-range-thumb-height: 11px; @form-range-thumb-background: @global-secondary-background; @form-background: @global-background; @form-focus-background: @global-background; @form-danger-color: @form-color; @form-success-color: @form-color; @form-radio-background: transparent; @form-radio-checked-background: darken(@global-primary-background, 10%); @form-radio-checked-focus-background: @global-primary-background; @form-stacked-margin-bottom: 5px; @form-label-font-size: 11px; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-primary-background; @form-disabled-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @global-border; @form-radio-border-width: @global-border-width; @form-radio-border: darken(@global-border, 10%); @form-radio-focus-border: @global-primary-background; @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @inverse-global-primary-background; @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: @inverse-global-primary-background; @button-font-size: 11px; @button-small-font-size: 11px; @button-large-font-size: 11px; @button-default-color: @global-color; @button-default-hover-background: transparent; @button-default-active-background: transparent; @button-default-active-color: @global-color; @button-primary-hover-background: transparent; @button-primary-hover-color: @global-primary-background; @button-primary-active-background: transparent; @button-primary-active-color: fade(@button-primary-hover-color, 80%); @button-secondary-hover-background: transparent; @button-secondary-hover-color: @global-secondary-background; @button-secondary-active-background: transparent; @button-secondary-active-color: fade(@button-secondary-hover-color, 80%); @button-danger-hover-background: transparent; @button-danger-hover-color: @global-danger-background; @button-danger-active-background: transparent; @button-danger-active-color: fade(@button-danger-hover-color, 80%); @button-link-color: @global-color; @button-link-hover-color: @global-emphasis-color; @button-border-width: @global-border-width; @button-default-hover-border: @global-border; @button-default-active-border: darken(@global-border, 10%); @button-primary-hover-border: @global-primary-background; @button-primary-active-border: fade(@global-primary-background, 60%); @button-secondary-hover-border: @global-secondary-background; @button-secondary-active-border: fade(@global-secondary-background, 60%); @button-danger-hover-border: @global-danger-background; @button-danger-active-border: fade(@global-danger-background, 60%); @inverse-button-default-background: @inverse-global-muted-background; @inverse-button-default-color: @inverse-global-color; @inverse-button-default-hover-background: transparent; @inverse-button-default-hover-color: @inverse-global-emphasis-color; @inverse-button-default-active-background: transparent; @inverse-button-default-active-color: @inverse-global-muted-color; @inverse-button-primary-hover-background: transparent; @inverse-button-primary-hover-color: @inverse-global-emphasis-color; @inverse-button-primary-active-background: transparent; @inverse-button-primary-active-color: @inverse-global-color; @inverse-button-secondary-hover-background: transparent; @inverse-button-secondary-hover-color: @inverse-global-emphasis-color; @inverse-button-secondary-active-background: transparent; @inverse-button-secondary-active-color: @inverse-global-color; @inverse-button-link-color: @inverse-global-color; @inverse-button-link-hover-color: @inverse-global-emphasis-color; @inverse-button-default-hover-border: @inverse-global-border; @inverse-button-default-active-border: @inverse-global-primary-background; @inverse-button-primary-hover-border: @inverse-global-border; @inverse-button-primary-active-border: @inverse-global-primary-background; @inverse-button-secondary-hover-border: @inverse-global-border; @inverse-button-secondary-active-border: @inverse-global-primary-background; @card-badge-height: 26px; @card-badge-padding-horizontal: 8px; @card-badge-font-size: 11px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-primary-hover-background: lighten(@card-primary-background, 2%); @card-secondary-hover-background: lighten(@card-secondary-background, 2%); @card-hover-border-width: @global-border-width; @card-hover-border: @global-border; @card-default-border-width: @global-border-width; @card-default-border: @global-border; @card-default-hover-border: @global-primary-background; @marker-color: @global-color; @marker-hover-background: @global-primary-background; @totop-color: @global-emphasis-color; @totop-hover-color: fadeout(@global-emphasis-color, 40%); @totop-active-color: @global-muted-color; @alert-background: @global-background; @alert-primary-background: @global-background; @alert-success-background: @global-background; @alert-warning-background: @global-background; @alert-danger-background: @global-background; @alert-border-width: @global-border-width; @alert-border: @global-border; @alert-primary-border: @global-primary-background; @alert-success-border: @global-success-background; @alert-warning-border: @global-warning-background; @alert-danger-border: @global-danger-background; @label-padding-vertical: 2px; @label-padding-horizontal: 5px; @label-font-size: 10px; @overlay-primary-background: fade(@global-primary-background, 80%); @article-title-font-size: @article-title-font-size-m * 0.87; // 36px @article-meta-font-size: 11px; @comment-title-font-size: @global-font-size; @comment-title-line-height: @global-line-height; @comment-meta-font-size: 11px; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-default-icon-padding: 12px; @search-navbar-background: @global-muted-background; @search-navbar-focus-background: transparent; @search-medium-padding-horizontal: 0; @search-medium-font-size: @global-medium-font-size; @search-large-padding-horizontal: 0; @search-large-font-size: @global-xlarge-font-size; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-muted-color; @search-navbar-font-family: @global-secondary-font-family; @search-navbar-font-weight: @global-secondary-font-weight; @search-navbar-text-transform: @global-secondary-text-transform; @search-navbar-letter-spacing: @global-secondary-letter-spacing; @search-navbar-font-style: @global-secondary-font-style; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-primary-background; @search-navbar-border-width: @global-border-width; @search-navbar-focus-border: @global-border; @search-medium-border-mode: -bottom; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-primary-background; @search-large-border-mode: -bottom; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-primary-background; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-navbar-focus-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-focus-border: @inverse-global-primary-background; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @inverse-global-primary-background; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @inverse-global-primary-background; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 6px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 6px)'; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-subtitle-font-size: 12px; @dropdown-nav-item-padding-vertical: 6px; @dropdown-nav-divider-margin-horizontal: -@dropdown-padding; @dropdown-nav-font-size: 11px; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-nav-subtitle-text-transform: none; @dropdown-nav-subtitle-letter-spacing: normal; @dropdown-box-shadow: @global-small-box-shadow; @dropbar-padding-top: 0; @dropbar-padding-bottom: 20px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 6px 4px -3px fade(@global-secondary-background, 10%); @dropbar-bottom-box-shadow: 0 -6px 4px -3px fade(@global-secondary-background, 10%); @dropbar-left-box-shadow: 18px 0 10px -18px fade(@global-secondary-background, 10%); @dropbar-right-box-shadow: -18px 0 10px -18px fade(@global-secondary-background, 10%); @countdown-item-font-family: @global-secondary-font-family; @countdown-item-font-weight: @global-secondary-font-weight; @countdown-item-text-transform: @global-secondary-text-transform; @countdown-item-letter-spacing: 0; @countdown-item-font-style: @global-secondary-font-style; @nav-item-padding-vertical: 8px; @nav-header-font-size: 11px; @nav-divider-margin-vertical: 15px; @nav-default-font-size: 11px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-emphasis-color; @nav-default-subtitle-font-size: 12px; @nav-default-header-color: @global-muted-color; @nav-primary-subtitle-font-size: 15px; @nav-secondary-font-size: 12px; @nav-secondary-subtitle-font-size: 14px; @nav-secondary-subtitle-color: fade(@global-color, 60%); @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-dividers-margin-top: 10px; @nav-secondary-margin-top: 10px; @nav-default-subtitle-color: @global-muted-color; @nav-default-subtitle-font-family: @global-font-family; @nav-default-subtitle-text-transform: none; @nav-default-subtitle-letter-spacing: normal; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-text-transform: none; @nav-primary-subtitle-letter-spacing: normal; @nav-secondary-subtitle-font-family: @global-font-family; @nav-secondary-subtitle-text-transform: none; @nav-secondary-subtitle-letter-spacing: normal; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-gap: 20px; @navbar-nav-gap: 20px; @navbar-nav-item-font-size: 11px; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-muted-color; @navbar-subtitle-font-size: 12px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 25px; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-dropbar-padding-top: 20px; @navbar-dropdown-dropbar-padding-bottom: (@navbar-dropdown-dropbar-padding-top + 10px); @navbar-dropdown-nav-subtitle-font-size: 12px; @navbar-nav-item-line-active-mode: false; @navbar-primary-gap: 30px; @navbar-primary-nav-gap: 30px; @navbar-primary-gap-m: 40px; @navbar-primary-nav-gap-m: 40px; @navbar-dropdown-nav-item-padding-vertical: 6px; @navbar-dropdown-nav-divider-margin-vertical: 8px; @navbar-subtitle-text-transform: none; @navbar-subtitle-letter-spacing: normal; @navbar-primary-nav-item-font-size: @global-font-size; @navbar-dropdown-nav-font-size: 11px; @navbar-dropdown-nav-subtitle-text-transform: none; @navbar-dropdown-nav-subtitle-letter-spacing: normal; @navbar-dropdown-box-shadow: @global-small-box-shadow; @subnav-item-color: @global-color; @subnav-item-hover-color: @global-emphasis-color; @subnav-divider-border-height: 1em; @subnav-pill-item-padding-vertical: 7px; @subnav-pill-item-padding-horizontal: 14px; @subnav-item-font-size: 11px; @inverse-subnav-item-color: @inverse-global-color; @inverse-subnav-item-hover-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-hover-color: @inverse-global-emphasis-color; @breadcrumb-item-font-size: 11px; @pagination-margin-horizontal: 16px; @pagination-item-padding-vertical: 0; @pagination-item-padding-horizontal: 2px; @pagination-item-color: @global-color; @pagination-item-hover-color: @global-primary-background; @pagination-item-active-color: @global-emphasis-color; @pagination-item-font-size: 11px; @pagination-item-letter-spacing: 0; @pagination-item-border-mode: -bottom; @pagination-item-border-width: @global-border-width; @pagination-item-hover-border: @global-border; @pagination-item-active-border: @global-primary-background; @inverse-pagination-item-hover-color: @inverse-global-emphasis-color; @inverse-pagination-item-hover-border: @inverse-global-border; @inverse-pagination-item-active-border: @inverse-global-primary-background; @tab-item-color: @global-color; @tab-item-font-size: 11px; @tab-item-line-height: 20px; @tab-border: transparent; @tab-item-hover-border: @global-border; @inverse-tab-item-hover-color: @inverse-global-muted-color; @inverse-tab-border: transparent; @inverse-tab-item-hover-border: @inverse-global-border; @dotnav-margin-horizontal: 15px; @dotnav-item-width: 9px; @dotnav-item-hover-background: @global-secondary-background; @dotnav-item-onclick-background: fade(@dotnav-item-hover-background, 20%); @dotnav-item-active-background: @dotnav-item-hover-background; @inverse-dotnav-item-onclick-background: @inverse-dotnav-item-background; @inverse-dotnav-item-active-background: @inverse-dotnav-item-hover-background; @thumbnav-item-background: transparent; @thumbnav-item-border-width: 3px; @thumbnav-item-hover-border: @global-color; @thumbnav-item-active-border: @global-color; @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-hover-border: @global-inverse-color; @inverse-thumbnav-item-active-border: @global-inverse-color; @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-muted-color; @iconnav-item-active-color: @global-emphasis-color; @text-lead-font-size: @global-medium-font-size; @text-meta-font-size: 11px; @text-large-font-size: @global-medium-font-size; @text-lead-font-weight: normal; @internal-text-background-color-gradient: linear-gradient(135deg, lighten(@global-primary-background, 15%), @global-primary-background); @logo-font-size: @global-medium-font-size; @logo-font-family: @global-secondary-font-family; @logo-font-weight: @global-secondary-font-weight; @logo-text-transform: @global-secondary-text-transform; @logo-letter-spacing: @global-secondary-letter-spacing; @inverse-global-muted-color: fade(@inverse-global-color, 40%); @inverse-global-inverse-color: @global-secondary-background; @inverse-global-primary-background: @inverse-global-emphasis-color; @inverse-global-border: fade(@inverse-global-color, 10%);assets/uikit-themes/master-fuse/images/section-background-image-noise.png000064400000012763151666572400022665 0ustar00�PNG IHDRddp�TgAMA���a�IDATx��#G�D{?}"�I��5t]BGӦ��P/A$[f�3��Q�������Z���۷�z]iו���o��D#|����o�O?�D>#<p�n��x}���_;?�Y���?�Ně�9���}[<�z��ၧ�p�ڼ�|?�8�l`�wm�qt��Z���M���?�����<x�y>c��<bx�����a�r4D�Dp�ī�MH��e���z��n|6�^o��������p��硼��x������Y˭&��9�����by�)қmrO��)�3��W��ϕ ߽�4�[���|[�`���Ƿ�5𨜏1���9 u"�-7`��ܲ�?rOc�R��5�[���e�`��<XF�q�L͋-�Ѷ����q��7RM��U}�擧�0]������.>p�s�߭����s�x�A{t�m�ɽD��&y8x8�h��G��� L����|�p�>�k~�>��c_�7'y���h{>NjO3p�ć�u���f����"�ĭ,�S�Ÿs�УƇ����[����$�Z�a3�C�k/u����ۆMz�6��1���zr���ҭ��'����OYy����ISܼi���:c~""8��_�G�yy�ǁý��̘0"Ʈ�II���6�}|'��z�/�"�#��]WS}��N8�Ozz�Ōg�͒�B�gN�I��n�_���Q?i�����Goz'��+x������>ym�;I�z���j��f?�cg5�JR�*�?c<��8 �ͫ\k�����p��!M ��?qn��p��~���v�� m���O��&��!i�k��o>�ӼFy��>pt���wF�D����{� ��u�.�#y�j�Ʀ��8s��2&��u��O���ИO��/-�h��hM��`�xv+�DŽX��K���>E�O��,�S�6�NΦ �aݜ����#�M�zƢ�Ȣ9�\'/����6?���[��ȁ.�V�C·5$W��Ǥv��{g�GR}t��/���M�!~�M���NL�Y��܃���ƛ��7L�#����h��k����e-�;�v���%g����H� ���[�r��+N�t�)3=�3/�������#]ih���4~�� �_2t"���!��7�4g�x,�&�i��?���Omys�Ln�����S��^��bi�� �m�ߵ�0 ���LT<�E�O?z���3�7�9}����G���ZoM�s;�%��9o !l"0�o??��<�H�?>��xO>����h��P'��k_zz|M.5-18�����%�&>��Cq�)�|���5�9����,|�ī�uv��3ױ>�0#"�|F�}z��C=8ub�S��J�7<�U�i :"zj"��{�Dx���_�#Dc!�c�Vo��msO��#���Юq<����Y�?��{��|O���M���E4�<�ķ�0�q��ԅ~�;�����מG���Q3�[}���}�z�?��f\L���+p���^5F����9��"�c���BJ�@�ޜ�^dz<��<�ٟu�s� �ǧ�>����a��̉q���Ixּ� �p0�p��r]i�;��O�1G.u"�٣���P���k���>́N�,�nyi�y���{1�4��~���o\]����Z'�>���{�x��j4�n�Z�����ܼ:��f~@� Ơ?k��k�\}h�u�]���-�3�pg~�f]�,s����@�� �B-�9���k���ݷ��wo<*�w_@<��(kZsk�Cb=�o����mAnL�P?ct_�Gi.���|��Q�����؈H�I}��F�s�f� �A��B_��ȉ֢���q�)�p~;�#�����Mo�����o}5=���{�O.����o����;��|�����jx�1�i|U}擷�h}�X{,n�8��!wD7�7�9}t[��'�}���P�}V�U1jL��0W���9Μ�Ŧ#�GNKm,x�{��cz��|�����z�,�}�_ ��^p�s�Io�U2���O��g,1��s���{�wLz�����J�G�1+�'���̮��Lj�IC����c>_"Z�$'��}�ݙ�����J��c>�z� �\��˓;���Eu�Kߍ2B�,�>�Z�H�c�����ua�~�E�ό�{˷o|��`M�齘_���2Xb����f�|����S~d��7��[�G��*�M����<cOy�_�x�1�gΝ>�o� o��@4 g��#��o��G���]���q�����o���7,�F�� w�s�w�=���:� 6z�c���ql���F��O婗Wzs�����!����`z�%f��<�X��6�&+�W�~�;y��D�`�nq�<�֕�_�P�},���<�~�mR���l*��Ǽ�� �x�ُ����3?xk�b���O���d��CO��6z56���,��.����D��劶n��X��=rb�p�M�*Ǵ��e"_(���mњZ�9���`F���k������о����ϼ5�n���T�;���318/0Gr83�'�?�>��{�ЦS��뉖G!{�9�/uU�>tD�O�8�~��>�xGll�����f�ۈ����M�G8���qE�@�ȩ;� gx�ux�+<<�K�Q�q_���^���.2���ܘ9u�6>+��+2��[�ެ'7���[O�7�G����Q�5 �Gv�W�X9��W�+WW �U�� ^�E� 8�[��|��c#~�Ꮧ���c���ϳOd1L��=�6-s�9��l<y�q����2��+���䵇/p�6g\���w�k��;�y��X�=Ov��Gs�w,{[������X�~�ԫ�&��S�xeL��_������ϪMW���O�l�ƁϚ�q�\��Ww��7��{���c�1��̋ |�YÛz�����]5B�B��yzn��Kl���~����k�<����=4��P?��%f_�y"h�ࠣ.! &����J�����p=/��H?Ï��j��oL��9h��ҥ�#wo��u.�1�-��qr>�n��Z���|�<k���_�6:�m}KY��yp�����;����W� ���Lo����T�� ���Ɉ����>i�AO7��v��C��c���O�̏U=g�V��m.�u��+1�=��X��e�s4�M���5�G~�X��5�����9G;뚓�;�Q5�Q�'�������s��yͷf�[=�Ԟ�Mf^z�Ic�-��� ~�N�:I�U���z �xZ� K����+˜���ȧ8�G���I����|�p�>�9��8)��'`�"��O�����!ҷ3��G�'�l2�ęS{�`��ȉ`���w���5�*VC�U�� +��#s�g�7�1�����VkË]rj��3�w�N�j�rp�������k��Z�8���XL�1�z��C�J�y�z�gb ]��+��ox�g��z����B�]nn��������@p�\Wh�[����Bĵa�0̟�B�q�]`q�g����h2���k/��{���x�'�c��f24�R�z�x��3���d83��fj�������q��Y�>q��0]�D�c�9sjbL�y'�W��pk�fr��zrG{���NF�A �w����O�^OZE�k�����KVz�Eh�����~qW���?x�������n���=a>xԷ��-�{?�u�ͽ��&�F�px�4f.���D{$�4�S�N��q����H�yc��Q��Գ���J9�=���ӱ�n=��`"^��'�/�N6|������I����4i�y��@mڦ� ''O��)N <��?�p���h�e����^4���t�=+/�U�m��uOuu�a�_�Q�c��z�3�'n�� %��~u��h�C�ExviR�3>���i��.s��7�|��L�|�o�S�ms[��O�e2n!��9g�}���V�m��9�8���f'���zr�@����xk�����< L!���O�=b�*�y�gF��by複������2���g��?��oE�&�CL=:b��9��?��^�zy>��W�4o|��<p��0���y��^5/�j�Y^��1H�c�>\�s�YO�>���h�s�����cf Dx����%��"������`FO�tu�������2� ?sL�YO|�U_���ւGįxg ��]G�a��^�Iz�1I �3^���>������G�U����'�1z��N-����@������������+�_!8�rS�p��c�;�=�yNr��'�ǹ��:�$M���s��'�2��s��6��@�+�z���)��['Q�J�7w��~ʏ�킳�y���7\w<�<�5I�?'|�����2 ��6q����%�D�ж�'��<����)ڇ.�l��W�qқ�� XG��|����G�q�w5���U$��ZX�G1�_o��W5�`{N�bx��P�,�6�����V�ԛ>��������Mt&��f������ }ùc⧫�y�/n��0���a����ל��e��N�n����J���|�x��Dm<9�ñ�5��pcΧn��7�<�����Wׅ �.���\e�J�q�Ϝ����y�0X����_.��1�x� /"=��s�O��'>��ü���;��?�o�[��=�u�˅^��h�������0��dGt�l�����8`��y����&wn(��I>������/=j��9�93�%�`��s���\`�}�Z���0�����|�Ot7�}�/}�Yt�M^��Q�?D C7�pr�F�19�hjl���w4��"<�4��KA�ɏ6�7ѷ,N�g<zs/9zs&��i�C�W練��s�����k��F����������kb6�*��p$�<Jtt�KsN4>D��x��\�O~��|��h���{!��=��/�8���'�Tۄ���=��YC]���U�7�oEl�crFm��+�J���zDp"xG����ќ O��p�SO�k�An�`���[�\77�5R{Po<���5�q���G?X��-ǣ��图L����������:�O�_x'a���'ֆKғ�+i��&�Il��u�W��]U�GG��'Dp<�<�x�õ�{:&������/����<����g���.�>t�/�<�^3|�ד�Z���Gko{�p��B=�����O>5}������ǹ�Y��@��q�Ԑ�1�ڏ�q���Ñ~�%����oWؗ����ČG�z�h�x�{d���p�%�As�Ԝɛ��=������>Z��x$N���Y[�.��ܚ�� ������9ø�.�,IEND�B`�assets/uikit-themes/master-fuse/images/list-bullet.svg000064400000000251151666572400017151 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1" cx="5" cy="5" r="4" /> </svg> assets/uikit-themes/master-fuse/images/divider-icon.svg000064400000000413151666572400017265 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.1" x1="0" y1="0" x2="10" y2="10" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="10" y1="0" x2="0" y2="10" /> </svg> assets/uikit-themes/master-yoko/images/divider-icon.svg000064400000000317151666572400017307 0ustar00<svg width="18" height="15" viewBox="0 0 18 15" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" stroke-width="2" points="9 13.01 5.5 7.01 2 1 9 1 16 1 12.5 7.01 9 13.01" /> </svg> assets/uikit-themes/master-yoko/images/box-decoration-primary-image.svg000064400000000256151666572400022413 0ustar00<svg width="240" height="240" viewBox="0 0 240 240" xmlns="http://www.w3.org/2000/svg"> <polygon points="0 0 145.04 0 240 94.96 240 240 92.87 240 0 147.13 0 0" /> </svg> assets/uikit-themes/master-yoko/images/box-decoration-default-image.svg000064400000000260151666572400022347 0ustar00<svg width="240" height="240" viewBox="0 0 240 240" xmlns="http://www.w3.org/2000/svg"> <polygon points="240 0 240 145.04 145.04 240 0 240 0 92.87 92.87 0 240 0" /> </svg> assets/uikit-themes/master-yoko/images/box-decoration-secondary-image.svg000064400000000260151666572400022712 0ustar00<svg width="240" height="240" viewBox="0 0 240 240" xmlns="http://www.w3.org/2000/svg"> <polygon points="0 240 0 94.96 94.96 0 240 0 240 147.13 147.13 240 0 240" /> </svg> assets/uikit-themes/master-yoko/_import.less000064400000042702151666572400015312 0ustar00@internal-fonts: 'Montserrat:400,500,600'; @global-font-family: Montserrat; @global-font-size: 17px; @global-line-height: 1.5; @global-2xlarge-font-size: 45px; @global-xlarge-font-size: 32px; @global-large-font-size: 25px; @global-medium-font-size: 20px; @global-small-font-size: 15px; @global-primary-font-family: inherit; @global-primary-font-weight: 500; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: inherit; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #777; @global-emphasis-color: #373737; @global-muted-color: #A1A1A1; @global-link-color: #EF454A; @global-link-hover-color: #0072C9; @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #F3F3F3; @global-primary-background: #EF454A; @global-secondary-background: #0072C9; @global-success-background: #60DC1A; @global-warning-background: #ffc741; @global-danger-background: #f13054; @global-border-width: 1px; @global-border: #E2E2E2; @global-border-radius: 2px; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.12); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 44px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-quote-font-style: normal; @base-h1-line-height: 1.1; @base-h2-line-height: 1.2; @base-h3-line-height: 1.3; @base-h4-line-height: 1.3; @base-blockquote-line-height: 1.4; @base-blockquote-footer-margin-top: @global-margin; @base-pre-padding: @global-gutter; @base-pre-background: @global-muted-background; @base-h4-font-weight: 500; @base-h5-font-weight: 500; @base-h6-font-weight: 500; @base-blockquote-footer-font-style: normal; @base-pre-border-radius: 3px; @inverse-base-link-hover-color: @inverse-global-color; @link-heading-hover-color: @global-color; @inverse-link-heading-hover-color: fade(@global-inverse-color, 85%); @heading-xlarge-font-size-l: 110px; @heading-bullet-border: @global-primary-background; @heading-large-font-weight: 600; @heading-xlarge-font-weight: 600; @heading-2xlarge-font-weight: 600; @heading-3xlarge-font-weight: 600; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-yoko/images/divider-icon.svg"; @divider-small-border-width: 3px; @divider-small-border: @global-primary-background; @divider-vertical-border-width: 3px; @table-row-active-background: lighten(@global-secondary-background, 58%); @icon-link-color: @global-emphasis-color; @icon-link-hover-color: @global-secondary-background; @icon-link-active-color: @global-secondary-background; @icon-button-background: @global-secondary-background; @icon-button-color: @global-inverse-color; @icon-button-hover-color: @global-inverse-color; @icon-button-active-color: @global-inverse-color; @inverse-icon-link-color: @inverse-global-color; @inverse-icon-link-hover-color: @inverse-global-emphasis-color; @inverse-icon-link-active-color: @inverse-global-emphasis-color; @inverse-icon-button-background: @inverse-global-primary-background; @inverse-icon-button-color: @inverse-global-inverse-color; @inverse-icon-button-hover-background: fade(@inverse-icon-button-background, 80%); @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-background: fade(@inverse-icon-button-background, 70%); @inverse-icon-button-active-color: @inverse-global-inverse-color; @form-range-track-focus-background: @global-secondary-background; @form-range-thumb-height: 13px; @form-range-thumb-background: @global-background; @form-range-thumb-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1); @form-background: @global-background; @form-focus-background: @global-muted-background; @form-radio-background: @global-background; @form-radio-focus-background: @global-muted-background; @form-danger-focus-background: fade(@global-danger-background, 5%); @form-success-focus-background: fade(@global-success-background, 5%); @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-radio-border-width: @global-border-width; @form-radio-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: fade(@global-inverse-color, 25%); @inverse-form-focus-color: @global-inverse-color; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: fade(@global-inverse-color, 25%); @inverse-form-border: @inverse-global-muted-color; @inverse-form-radio-border: @inverse-global-muted-color; @button-padding-horizontal: 24px; @button-large-padding-horizontal: 36px; @button-default-background: @global-background; @button-default-hover-background: @button-default-background; @button-default-active-background: @button-default-background; @button-default-active-color: lighten(@global-color, 8%); @button-link-hover-color: @global-secondary-background; @button-text-mode: border-bottom; @button-text-border-width: 2px; @button-text-border: fade(@global-muted-color, 15%); @button-text-hover-border: @global-secondary-background; @button-border-radius: 3px; @button-default-box-shadow: @global-small-box-shadow; @button-default-hover-box-shadow: @global-medium-box-shadow; @button-primary-box-shadow: @global-small-box-shadow; @button-primary-hover-box-shadow: @global-medium-box-shadow; @button-secondary-box-shadow: @global-small-box-shadow; @button-secondary-hover-box-shadow: @global-medium-box-shadow; @button-danger-box-shadow: @global-small-box-shadow; @button-danger-hover-box-shadow: @global-medium-box-shadow; @inverse-button-secondary-background: @inverse-global-muted-color; @inverse-button-secondary-color: @inverse-global-color; @inverse-button-secondary-hover-color: @inverse-global-color; @inverse-button-secondary-active-color: @inverse-global-color; @inverse-button-link-hover-color: @inverse-global-color; @inverse-button-text-border: @inverse-global-emphasis-color; @inverse-button-text-hover-border: @inverse-global-color; @card-badge-height: 26px; @card-badge-font-size: 14px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-title-font-family: @global-secondary-font-family; @card-title-font-weight: @global-secondary-font-weight; @card-title-text-transform: @global-secondary-text-transform; @card-title-letter-spacing: @global-secondary-letter-spacing; @card-title-font-style: @global-secondary-font-style; @card-hover-box-shadow: @global-medium-box-shadow; @card-default-box-shadow: @global-small-box-shadow; @card-default-hover-box-shadow: @global-medium-box-shadow; @marker-hover-background: @global-primary-background; @inverse-marker-hover-background: fade(@inverse-global-primary-background, 80%); @alert-success-background: lighten(@global-success-background, 40%); @alert-success-color: darken(@global-success-background, 10%); @alert-warning-background: lighten(@global-warning-background, 24%); @alert-warning-color: darken(@global-warning-background, 18%); @alert-danger-background: lighten(@global-danger-background, 38%); @alert-danger-color: darken(@global-danger-background, 8%); @badge-background: @global-secondary-background; @badge-font-size: 12px; @badge-font-weight: @global-primary-font-weight; @badge-font-family: @global-primary-font-family; @badge-font-style: @global-primary-font-style; @label-padding-vertical: 1px; @label-padding-horizontal: 8px; @label-font-size: 13px; @overlay-default-background: fade(@global-background, 90%); @overlay-primary-background: fade(@global-secondary-background, 90%); @article-title-font-size-m: @global-xlarge-font-size; @article-title-font-family: @global-secondary-font-family; @article-title-font-weight: @global-secondary-font-weight; @article-title-text-transform: @global-secondary-text-transform; @article-title-letter-spacing: @global-secondary-letter-spacing; @article-title-font-style: @global-secondary-font-style; @inverse-article-meta-color: @inverse-global-color; @comment-title-font-size: @global-font-size; @comment-primary-background: lighten(@global-muted-background, 2%); @comment-primary-border-radius: 4px; @search-default-background: @global-background; @search-navbar-background: @global-muted-background; @search-navbar-focus-background: darken(@search-navbar-background, 5%); @search-toggle-color: darken(@global-muted-color, 15%); @search-toggle-hover-color: @global-secondary-background; @search-navbar-color: @global-emphasis-color; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-medium-border-mode: -bottom; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-large-border-mode: -bottom; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-navbar-border-radius: @global-border-radius; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: fade(@global-inverse-color, 15%); @inverse-search-medium-focus-background: fade(@global-inverse-color, 15%); @inverse-search-large-focus-background: fade(@global-inverse-color, 15%); @inverse-search-navbar-color: @global-inverse-color; @inverse-search-default-border: @inverse-global-muted-color; @inverse-search-medium-border: @inverse-global-muted-color; @inverse-search-large-border: @inverse-global-muted-color; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-padding: @global-gutter; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 5px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 5px)'; @dropdown-nav-item-color: @global-emphasis-color; @dropdown-nav-item-hover-color: @global-secondary-background; @dropdown-nav-subtitle-font-size: 13px; @dropdown-nav-sublist-item-hover-color: @global-secondary-background; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-box-shadow: @global-medium-box-shadow; @dropbar-padding-top: 0; @dropbar-padding-bottom: 15px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 10px 15px -12px rgba(0,0,0,0.12); @dropbar-bottom-box-shadow: 0 -10px 15px -12px rgba(0,0,0,0.12); @dropbar-left-box-shadow: 15px 0 15px -15px rgba(0,0,0,0.12); @dropbar-right-box-shadow: -15px 0 15px -15px rgba(0,0,0,0.12); @slider-container-margin-top: -10px; @slider-container-margin-bottom: -20px; @slider-container-margin-left: -15px; @slider-container-margin-right: -15px; @tooltip-background: @global-secondary-background; @nav-default-item-color: @global-emphasis-color; @nav-default-item-hover-color: @global-secondary-background; @nav-default-item-active-color: @global-secondary-background; @nav-default-subtitle-font-size: 13px; @nav-default-sublist-item-color: @global-color; @nav-default-sublist-item-hover-color: @global-secondary-background; @nav-default-sublist-item-active-color: @global-secondary-background; @nav-primary-item-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-secondary-background; @nav-primary-item-active-color: @global-secondary-background; @nav-primary-subtitle-font-size: 13px; @nav-primary-sublist-item-hover-color: @global-secondary-background; @nav-primary-sublist-item-active-color: @global-secondary-background; @nav-secondary-font-size: @global-small-font-size; @nav-secondary-item-hover-color: @global-secondary-background; @nav-secondary-item-active-color: @nav-secondary-item-hover-color; @nav-secondary-subtitle-font-size: 14px; @nav-secondary-subtitle-hover-color: @global-secondary-background; @nav-secondary-subtitle-active-color: @nav-secondary-subtitle-hover-color; @nav-secondary-sublist-item-hover-color: @global-secondary-background; @nav-secondary-sublist-item-active-color: @nav-secondary-sublist-item-hover-color; @nav-xlarge-font-size-l: 110px; @nav-secondary-margin-top: 10px; @nav-default-subtitle-color: @global-muted-color; @nav-primary-subtitle-color: @global-muted-color; @nav-secondary-font-weight: @global-primary-font-weight; @nav-secondary-subtitle-font-weight: normal; @nav-secondary-subtitle-line-height: 1.6; @inverse-nav-default-item-color: @inverse-global-color; @inverse-nav-default-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-default-sublist-item-color: @inverse-global-color; @inverse-nav-default-sublist-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-primary-item-color: @inverse-global-color; @inverse-nav-primary-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-primary-sublist-item-color: @inverse-global-color; @inverse-nav-primary-sublist-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-nav-item-height: 90px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-hover-color: @global-secondary-background; @navbar-nav-item-onclick-color: @global-secondary-background; @navbar-nav-item-active-color: @global-secondary-background; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-secondary-background; @navbar-subtitle-font-size: 13px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: @global-gutter; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-hover-color: @global-secondary-background; @navbar-dropdown-nav-item-active-color: @global-secondary-background; @navbar-dropdown-nav-subtitle-font-size: 13px; @navbar-dropdown-nav-sublist-item-hover-color: @global-secondary-background; @navbar-dropdown-nav-sublist-item-active-color: @global-secondary-background; @navbar-padding-top-m: 60px; @navbar-padding-bottom-m: 30px; @navbar-gap-m: 48px; @navbar-nav-gap-m: 48px; @navbar-primary-gap-m: 48px; @navbar-primary-nav-gap-m: 48px; @navbar-item-font-size: @global-font-size; @navbar-subtitle-color: @global-muted-color; @navbar-primary-nav-item-font-size: 28px; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-dropdown-box-shadow: @global-medium-box-shadow; @inverse-navbar-nav-item-hover-color: @global-inverse-color; @subnav-item-color: darken(@global-muted-color, 15%); @subnav-item-hover-color: @global-secondary-background; @subnav-item-active-color: @global-secondary-background; @breadcrumb-divider: "–"; @breadcrumb-item-disabled-color: lighten(@global-muted-color, 14%); @pagination-margin-horizontal: @global-small-margin; @pagination-item-padding-vertical: 7px; @pagination-item-padding-horizontal: 16px; @pagination-item-color: @global-emphasis-color; @pagination-item-hover-color: @global-inverse-color; @pagination-item-active-color: @pagination-item-hover-color; @pagination-item-height: 35px; @pagination-item-background: @global-muted-background; @pagination-item-hover-background: @global-secondary-background; @pagination-item-active-background: @global-secondary-background; @pagination-item-font-size: 14px; @pagination-item-border-radius: @global-border-radius; @tab-item-border-width: 2px; @slidenav-padding-vertical: 12px; @slidenav-color: @global-inverse-color; @slidenav-hover-color: @global-inverse-color; @slidenav-active-color: @global-inverse-color; @slidenav-large-padding-vertical: 20px; @slidenav-large-padding-horizontal: 18px; @slidenav-background: @global-secondary-background; @slidenav-hover-background: darken(@global-secondary-background, 5%); @slidenav-active-background: darken(@global-secondary-background, 8%); @inverse-slidenav-color: @global-emphasis-color; @inverse-slidenav-hover-color: @global-emphasis-color; @inverse-slidenav-active-color: @global-emphasis-color; @inverse-slidenav-background: @inverse-global-primary-background; @inverse-slidenav-hover-background: fade(@inverse-global-primary-background, 80%); @inverse-slidenav-active-background: fade(@inverse-global-primary-background, 70%); @dotnav-item-width: 12px; @dotnav-item-background: transparent; @dotnav-item-hover-background: @global-secondary-background; @dotnav-item-active-background: @global-primary-background; @dotnav-item-border-width: 2px; @dotnav-item-border: lighten(@global-muted-color, 20%); @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: darken(@global-muted-color, 15%); @iconnav-item-hover-color: @global-secondary-background; @iconnav-item-active-color: @global-secondary-background; @text-lead-font-size: @global-medium-font-size; @text-small-font-size: 13px; @text-small-line-height: 1.4; @text-large-font-size: @global-medium-font-size; @text-lead-font-weight: @global-secondary-font-weight; @inverse-text-meta-color: @inverse-global-color; @logo-font-size: 28px; @logo-font-family: @global-primary-font-family; @logo-font-weight: @global-primary-font-weight; @logo-text-transform: uppercase; @inverse-global-inverse-color: @global-emphasis-color;assets/uikit-themes/master-yoko/styles/white-red.less000064400000004430151666572400017050 0ustar00// // Global // @global-link-color: @global-primary-background; @global-link-hover-color: darken(@global-link-color, 10%); @global-primary-background: #EB2443; @global-secondary-background: #2E2F33; // // Theme // @theme-page-container-background: #f1f1f1; // // Badge // @badge-background: @global-primary-background; // // Button // @button-link-hover-color: @global-primary-background; // // Form Range // @form-range-track-focus-background: @global-primary-background; // // Nav // @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-default-sublist-item-hover-color: @global-primary-background; @nav-default-sublist-item-active-color: @global-primary-background; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-primary-sublist-item-active-color: @global-primary-background; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-sublist-item-hover-color: @global-primary-background; // // Navbar // @navbar-nav-item-hover-color: @global-primary-background; @navbar-nav-item-onclick-color: @global-primary-background; @navbar-nav-item-active-color: @global-primary-background; @navbar-toggle-hover-color: @global-primary-background; // // Subnav // @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; // // Table // @table-row-active-background: #F9F9F9; @table-hover-row-background: #F9F9F9; assets/uikit-themes/master-yoko/styles/white-darkblue.less000064400000003744151666572400020076 0ustar00// // Global // @global-emphasis-color: #1C1C1C; @global-link-color: @global-primary-background; @global-link-hover-color: darken(@global-link-color, 10%); @global-primary-background: #3C42E5; @global-secondary-background: #15D1E3; // // Button // @button-link-hover-color: @global-primary-background; // // Nav // @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-default-sublist-item-hover-color: @global-primary-background; @nav-default-sublist-item-active-color: @global-primary-background; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-primary-sublist-item-active-color: @global-primary-background; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-sublist-item-hover-color: @global-primary-background; // // Navbar // @navbar-nav-item-hover-color: @global-primary-background; @navbar-nav-item-onclick-color: @global-primary-background; @navbar-nav-item-active-color: @global-primary-background; // // Subnav // @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; // // Table // @table-row-active-background: #F9F9F9; @table-hover-row-background: #F9F9F9; assets/uikit-themes/master-yoko/styles/white-turquoise.less000064400000002261151666572400020336 0ustar00// // Global // @global-link-color: @global-primary-background; @global-link-hover-color: darken(@global-link-color, 10%); @global-primary-background: #01707E; @global-secondary-background: #004853; // // Theme // @theme-page-container-background: #f7f7f7; // // Badge // @badge-background: @global-primary-background; // // Button // @button-link-hover-color: @global-primary-background; // // Form Range // @form-range-track-focus-background: @global-primary-background; // // Nav // @nav-default-item-color: @global-color; @nav-primary-item-color: @global-color; // // Subnav // @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; // // Table // @table-row-active-background: #F9F9F9; @table-hover-row-background: #F9F9F9; assets/uikit-themes/master-yoko/styles/white-yellow.less000064400000005245151666572400017616 0ustar00// // Global // @global-emphasis-color: #1C1C1C; @global-link-color: @global-emphasis-color; @global-link-hover-color: #777; @global-primary-background: #FFF514; @global-secondary-background: #2B2B2B; // // Theme // @theme-page-container-background: #fafafa; // // Alert // @alert-primary-color: #8E856A; // // Button // @button-primary-color: @global-emphasis-color; @button-primary-hover-background: @global-secondary-background; @button-primary-active-background: @global-secondary-background; @button-link-hover-color: @global-muted-color; // // Card // @card-badge-color: @global-emphasis-color; @card-primary-color: @global-emphasis-color; @card-primary-color-mode: dark; // // Divider // @divider-icon-color: @global-emphasis-color; @divider-small-border: @global-emphasis-color; // // Dotnav // @dotnav-item-active-background: @global-secondary-background; // // Form // @form-radio-checked-icon-color: @global-emphasis-color; @form-radio-checked-focus-background: darken(@global-primary-background, 6%); // // Label // @label-background: #2B2B2B; // // Nav // @nav-default-item-color: #808080; @nav-default-sublist-item-color: #808080; @nav-primary-item-color: #808080; @nav-primary-sublist-item-color: #808080; // // Navbar // @navbar-nav-item-color: #808080; @navbar-toggle-color: #808080; @navbar-toggle-hover-color: @global-emphasis-color; // // Section // @section-primary-color-mode: dark; // // Subnav // @subnav-pill-item-active-color: @global-secondary-background; // // Table // @table-row-active-background: #F9F9F9; @table-hover-row-background: #F9F9F9; // // Text // @text-primary-color: #FFEE09; // // Tile // @tile-primary-color-mode: dark; // // Woocommerce // @woocommerce-rating-color: @global-secondary-background; assets/uikit-themes/master-yoko/styles/white-blue.less000064400000004262151666572400017230 0ustar00// // Global // @global-emphasis-color: #2B2B2B; @global-link-color: @global-primary-background; @global-link-hover-color: @global-secondary-background; @global-background: #fff; @global-primary-background: #367FF3; @global-secondary-background: #33353B; // // Theme // @theme-page-container-background: @global-emphasis-color; // // Button // @badge-background: @global-primary-background; // // Button // @button-link-hover-color: @global-primary-background; // // Form Range // @form-range-track-focus-background: @global-primary-background; // // Nav // @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-default-sublist-item-hover-color: @global-primary-background; @nav-default-sublist-item-active-color: @global-primary-background; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-primary-sublist-item-active-color: @global-primary-background; // // Navbar // @navbar-nav-item-hover-color: @global-primary-background; @navbar-nav-item-onclick-color: @global-primary-background; @navbar-nav-item-active-color: @global-primary-background; @navbar-toggle-hover-color: @global-primary-background; // // Subnav // @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; // // Table // @table-row-active-background: #F9F9F9; @table-hover-row-background: #F9F9F9; assets/uikit-themes/master-yoko/icons/pagination-previous.svg000064400000000372151666572400020605 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5" /> <line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5" /> </svg> assets/uikit-themes/master-yoko/icons/slidenav-previous.svg000064400000000462151666572400020261 0ustar00<svg width="25" height="20" viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10,19,2,10l8-9" /> <path fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" d="M3,10H23" /> </svg> assets/uikit-themes/master-yoko/icons/nav-parent-icon-large.svg000064400000000260151666572400020667 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-yoko/icons/slidenav-previous-large.svg000064400000000462151666572400021351 0ustar00<svg width="25" height="20" viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10,19,2,10l8-9" /> <path fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" d="M3,10H23" /> </svg> assets/uikit-themes/master-yoko/icons/slidenav-next.svg000064400000000460151666572400017361 0ustar00<svg width="25" height="20" viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15,1l8,9-8,9" /> <path fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" d="M22,10H2" /> </svg> assets/uikit-themes/master-yoko/icons/pagination-next.svg000064400000000373151666572400017710 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5" /> <line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5" /> </svg> assets/uikit-themes/master-yoko/icons/slidenav-next-large.svg000064400000000460151666572400020451 0ustar00<svg width="25" height="20" viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15,1l8,9-8,9" /> <path fill="none" stroke="#000" stroke-linecap="round" stroke-width="2" d="M22,10H2" /> </svg> assets/uikit-themes/master-yoko/icons/totop.svg000064400000000371151666572400015746 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="10.5,4 15.37,9.4 14.63,10.08 10.5,5.49 6.37,10.08 5.63,9.4" /> <line fill="none" stroke="#000" x1="10.5" y1="16" x2="10.5" y2="5" /> </svg> assets/uikit-themes/master-florence/_import.less000064400000066172151666572400016135 0ustar00@internal-fonts: 'Montserrat:500|Roboto:300,300i,700|Tenor+Sans'; @global-font-family: Roboto; @global-font-size: 16px; @global-line-height: 1.625; // 26px @global-2xlarge-font-size: 48px; @global-xlarge-font-size: 42px; @global-large-font-size: 34px; @global-medium-font-size: 24px; @global-small-font-size: 14px; @global-primary-font-family: 'Tenor Sans'; @global-primary-font-weight: inherit; @global-primary-text-transform: inherit; @global-primary-letter-spacing: -0.5px; @global-primary-font-style: inherit; @global-secondary-font-family: Montserrat; @global-secondary-font-weight: 500; @global-secondary-text-transform: uppercase; @global-secondary-letter-spacing: 3px; @global-secondary-font-style: inherit; @global-color: #333; @global-emphasis-color: #222; @global-muted-color: #999; @global-link-color: #C99C88; @global-link-hover-color: darken(@global-link-color, 15%); @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #f8f8f8; @global-primary-background: #EADBD4; @global-secondary-background: #222; @global-success-background: #8fcda7; @global-warning-background: #f7b77c; @global-danger-background: #eb787e; @global-border-width: 1px; @global-border: rgba(0,0,0,0.06); @global-border-radius: 0; @global-small-box-shadow: 1px 2px 5px rgba(0,0,0,0.03), 3px 8px 20px rgba(0,0,0,0.05); @global-medium-box-shadow: 2px 3px 6px rgba(0,0,0,0.03), 5px 15px 32px rgba(0,0,0,0.05); @global-large-box-shadow: 2px 3px 10px rgba(0,0,0,0.03), 8px 20px 45px rgba(0,0,0,0.05); @global-xlarge-box-shadow: 2px 4px 12px rgba(0,0,0,0.03), 8px 28px 56px rgba(0,0,0,0.05); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 20px; @global-small-gutter: 10px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 50px; @global-z-index: 1000; @base-body-font-weight: 300; @base-strong-font-weight: 700; @base-code-font-size: 11px; @base-code-color: @global-emphasis-color; @base-em-color: @global-emphasis-color; @base-h1-font-size: @base-h1-font-size-m * 0.84; // 40px @base-h1-line-height: 1.3; @base-h2-font-size: @base-h2-font-size-m * 0.86; // 36px @base-h3-line-height: 1.3; @base-h4-line-height: 1.3; @base-h5-font-size: 12px; @base-h5-line-height: 1.3; @base-h6-font-size: 11px; @base-h6-line-height: 1.3; @base-blockquote-footer-font-size: 11px; @base-pre-font-size: 11px; @base-selection-background: @global-primary-background; @base-selection-color: @global-emphasis-color; @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 2px; @base-pre-padding: 10px; @base-pre-background: @global-background; @base-h4-font-family: @global-primary-font-family; @base-h4-font-weight: @global-primary-font-weight; @base-h4-text-transform: @global-primary-text-transform; @base-h4-letter-spacing: @global-primary-letter-spacing; @base-h4-font-style: @global-primary-font-style; @base-code-border-width: @global-border-width; @base-code-border: @global-border; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @base-code-border-radius: @global-border-radius; @base-pre-border-radius: @global-border-radius; @inverse-base-link-hover-color: fade(@inverse-global-color, 70%); @inverse-base-code-border: @inverse-global-border; @link-heading-hover-color: @global-link-color; @heading-medium-font-size: @heading-medium-font-size-m * 0.86; // 48px @heading-small-font-size-m: 56px; @heading-large-font-size-l: 90px; @heading-small-line-height: 1.3; @heading-medium-line-height: 1.3; @heading-large-line-height: 1.3; @heading-xlarge-line-height: 1.3; @heading-2xlarge-line-height: 1.3; @heading-bullet-height: ~'calc(6px + 0.7em)'; @heading-bullet-margin-right: ~'calc(4px + 0.2em)'; @heading-bullet-border-width: ~'calc(2px + 0.1em)'; @heading-bullet-border: @global-primary-background; @heading-line-border: @global-primary-background; @heading-small-letter-spacing: -1px; @heading-medium-letter-spacing: -1.25px; @heading-large-letter-spacing: -1.50px; @heading-xlarge-letter-spacing: -1.75px; @heading-2xlarge-letter-spacing: -2px; .hook-heading-line() { display: none; } .hook-heading-misc() { .uk-heading-line > * { display: block; margin-bottom: -1.1em; } .uk-heading-line::after { content: ""; display: inline-block; width: ~'calc(10% + 3em)'; height: 0.3em; background: @heading-line-border; } } .hook-inverse() { .uk-heading-line::after { background: @inverse-global-border; } } @divider-icon-color: @global-secondary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-florence/images/divider-icon.svg"; @divider-small-width: 160px; @divider-small-border: @global-secondary-background; @list-bullet-icon-color: fade(@global-emphasis-color, 80%); @internal-list-bullet-image: "../../../../uikit-themes/master-florence/images/list-bullet.svg"; @description-list-term-font-size: 11px; @table-header-cell-font-size: 11px; @table-header-cell-font-weight: @global-secondary-font-weight; @table-row-active-background: fade(@global-primary-background, 40%); @table-striped-row-background: @table-row-active-background; @table-header-cell-font-family: @global-secondary-font-family; @table-header-cell-text-transform: @global-secondary-text-transform; @table-header-cell-letter-spacing: @global-secondary-letter-spacing; @table-header-cell-font-style: @global-secondary-font-style; @icon-link-color: @global-emphasis-color; @icon-link-hover-color: fade(@icon-link-color, 50%); @icon-link-active-color: fade(@icon-link-color, 80%); @icon-button-color: @global-color; @icon-button-hover-background: lighten(@global-muted-background, 1%); @icon-button-hover-color: @global-emphasis-color; @icon-button-active-background: darken(@global-muted-background, 3%); @icon-button-active-color: fade(@global-emphasis-color, 70%); @inverse-icon-link-color: @inverse-global-emphasis-color; @inverse-icon-link-active-color: @inverse-global-muted-color; @inverse-icon-button-color: @inverse-global-emphasis-color; @inverse-icon-button-hover-background: fade(@inverse-global-muted-background, 5%); @inverse-icon-button-active-background: @inverse-global-muted-background; @inverse-icon-button-active-color: @inverse-global-emphasis-color; @form-range-track-height: 1px; @form-range-track-background: darken(@global-muted-background, 15%); @form-range-track-focus-background: @global-secondary-background; @form-range-thumb-height: 7px; @form-range-thumb-width: 15px; @form-range-thumb-border-radius: 0; @form-range-thumb-background: @global-secondary-background; @form-background: transparent; @form-focus-background: transparent; @form-danger-color: @form-color; @form-success-color: @form-color; @form-radio-background: transparent; @form-radio-checked-background: @global-secondary-background; @form-radio-checked-focus-background: darken(@global-secondary-background, 6%); @form-stacked-margin-bottom: 5px; @form-label-font-size: 11px; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-secondary-background; @form-disabled-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @form-focus-border; @form-radio-border-width: @global-border-width; @form-radio-border: fade(@global-secondary-background, 20%); @form-radio-focus-border: @global-secondary-background; @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-checked-background: fade(@global-inverse-color, 80%); @inverse-form-radio-checked-focus-background: @global-inverse-color; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @inverse-global-emphasis-color; @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: @inverse-global-emphasis-color; @button-font-size: 11px; @button-small-font-size: 11px; @button-large-font-size: @global-small-font-size; @button-large-padding-horizontal: 30px; @button-default-background: transparent; @button-default-color: @global-color; @button-default-hover-background: @button-default-background; @button-default-active-background: @button-default-background; @button-default-active-color: fade(@button-default-hover-color, 80%); @button-primary-background: transparent; @button-primary-color: @global-emphasis-color; @button-primary-hover-background: @button-primary-background; @button-primary-hover-color: @button-primary-color; @button-primary-active-background: @button-primary-background; @button-primary-active-color: fade(@button-primary-hover-color, 80%); @button-secondary-hover-background: lighten(@button-secondary-background, 4%); @button-secondary-hover-color: fade(@button-secondary-color, 70%); @button-secondary-active-background: darken(@button-secondary-background, 4%); @button-secondary-active-color: @button-secondary-color; @button-danger-hover-background: lighten(@button-danger-background, 4%); @button-danger-hover-color: fade(@button-danger-color, 70%); @button-danger-active-background: darken(@button-danger-background, 4%); @button-danger-active-color: @button-danger-color; @button-text-border-width: 5px; @button-text-border: @global-primary-background; @internal-button-text-line-bottom: 2px; @button-letter-spacing: 3px; @button-background-size: 160%; @button-background-position-x: ~'calc(100% + 1px)'; @internal-button-default-gradient: linear-gradient(90deg, fade(@global-secondary-background, 5%) 62.5%, transparent 62.5%); @internal-button-default-hover-gradient: linear-gradient(90deg, fade(@global-secondary-background, 5%) 62.5%, transparent 62.5%); @internal-button-default-active-gradient: linear-gradient(90deg, fade(@global-secondary-background, 8%) 62.5%, transparent 62.5%); @internal-button-primary-gradient: linear-gradient(90deg, @global-primary-background 62.5%, transparent 62.5%); @internal-button-primary-hover-gradient: linear-gradient(90deg, @global-primary-background 62.5%, transparent 62.5%); @internal-button-primary-active-gradient: linear-gradient(90deg, darken(@global-primary-background, 4%) 62.5%, transparent 62.5%); @inverse-button-default-background: @inverse-global-muted-background; @inverse-button-default-color: @inverse-global-color; @inverse-button-default-hover-background: fade(@global-inverse-color, 12%); @inverse-button-default-hover-color: @inverse-global-emphasis-color; @inverse-button-default-active-background: fade(@global-inverse-color, 15%); @inverse-button-default-active-color: @inverse-global-muted-color; @inverse-button-primary-background: fade(@global-inverse-color, 90%); @inverse-button-primary-hover-background: @global-inverse-color; @inverse-button-primary-active-background: @global-inverse-color; @inverse-button-primary-active-color: fade(@inverse-global-inverse-color, 70%); @inverse-button-secondary-background: darken(@global-secondary-background, 5%); @inverse-button-secondary-color: @global-inverse-color; @inverse-button-secondary-hover-background: darken(@global-secondary-background, 8%); @inverse-button-secondary-hover-color: @inverse-global-color; @inverse-button-secondary-active-background: darken(@global-secondary-background, 3%); @inverse-button-secondary-active-color: fade(@inverse-global-color, 70%); @section-primary-background: lighten(@global-primary-background, 6%); @section-primary-color-mode: dark; @internal-section-default-image: "../../master-florence/images/section-light-background.svg"; @internal-section-muted-image: "../../master-florence/images/section-light-background.svg"; @internal-section-primary-image: "../../master-florence/images/section-light-background.svg"; @internal-section-secondary-image: "../../master-florence/images/section-dark-background.svg"; @internal-section-default-background-repeat: repeat-y; @internal-section-muted-background-repeat: repeat-y; @internal-section-primary-background-repeat: repeat-y; @internal-section-secondary-background-repeat: repeat-y; @container-small-max-width: 1020px; @container-large-max-width: 1360px; @container-xlarge-max-width: 1500px; @tile-primary-color-mode: dark; @card-badge-right: 0; @card-badge-height: 28px; @card-badge-color: @global-emphasis-color; @card-badge-font-size: 11px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-primary-background: lighten(@global-primary-background, 6%); @card-primary-color: @global-color; @card-primary-title-color: @global-emphasis-color; @card-primary-hover-background: darken(@card-primary-background, 3%); @card-primary-color-mode: dark; @card-secondary-hover-background: lighten(@card-secondary-background, 4%); @card-badge-letter-spacing: 1px; @card-hover-box-shadow: @global-xlarge-box-shadow; @card-default-box-shadow: @global-xlarge-box-shadow; @card-default-hover-box-shadow: @global-medium-box-shadow; @marker-hover-color: fade(@global-inverse-color, 60%); @inverse-marker-hover-color: fade(@global-color, 50%); @totop-color: @global-emphasis-color; @totop-hover-color: fadeout(@global-emphasis-color, 40%); @totop-active-color: @global-muted-color; @alert-background: @global-background; @alert-primary-background: @global-background; @alert-primary-color: darken(@global-primary-background, 30%); @alert-success-background: @global-background; @alert-success-color: darken(@global-success-background, 15%); @alert-warning-background: @global-background; @alert-warning-color: darken(@global-warning-background, 15%); @alert-danger-background: @global-background; @alert-danger-color: darken(@global-danger-background, 15%); @alert-border-mode: -left; @alert-border-width: 2px; @alert-border: @global-secondary-background; @alert-primary-border: @global-primary-background; @alert-success-border: @global-success-background; @alert-warning-border: @global-warning-background; @alert-danger-border: @global-danger-background; @alert-box-shadow: @global-medium-box-shadow; @badge-background: @global-secondary-background; @badge-font-size: 10px; @badge-font-weight: @global-secondary-font-weight; @label-padding-vertical: 3px; @label-padding-horizontal: 9px; @label-background: @global-secondary-background; @label-font-size: 10px; @label-letter-spacing: 1px; @label-box-shadow: @global-small-box-shadow; @label-success-box-shadow: @global-small-box-shadow; @label-warning-box-shadow: @global-small-box-shadow; @label-danger-box-shadow: @global-small-box-shadow; @article-meta-font-size: 11px; @comment-title-font-size: @global-font-size; @comment-meta-font-size: 11px; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-medium-padding-horizontal: 0; @search-medium-font-size: @global-medium-font-size; @search-large-padding-horizontal: 0; @search-large-font-size: @global-xlarge-font-size; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-link-color; @search-default-font-family: @global-primary-font-family; @search-default-font-weight: @global-primary-font-weight; @search-default-text-transform: @global-primary-text-transform; @search-default-letter-spacing: @global-primary-letter-spacing; @search-default-font-style: @global-primary-font-style; @search-navbar-font-family: @global-secondary-font-family; @search-navbar-font-weight: @global-secondary-font-weight; @search-navbar-text-transform: @global-secondary-text-transform; @search-navbar-letter-spacing: @global-secondary-letter-spacing; @search-navbar-font-style: @global-secondary-font-style; @search-medium-font-family: @global-primary-font-family; @search-medium-font-weight: @global-primary-font-weight; @search-medium-text-transform: @global-primary-text-transform; @search-medium-letter-spacing: @global-primary-letter-spacing; @search-medium-font-style: @global-primary-font-style; @search-large-font-family: @global-primary-font-family; @search-large-font-weight: @global-primary-font-weight; @search-large-text-transform: @global-primary-text-transform; @search-large-letter-spacing: @global-primary-letter-spacing; @search-large-font-style: @global-primary-font-style; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-secondary-background; @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: @search-navbar-border; @search-medium-border-mode: -bottom; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-secondary-background; @search-large-border-mode: -bottom; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-secondary-background; @inverse-search-default-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @global-inverse-color; @inverse-search-navbar-border: @inverse-global-border; @inverse-search-navbar-focus-border: @inverse-global-border; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @global-inverse-color; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @global-inverse-color; @accordion-title-hover-color: @global-link-color; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 6px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 6px)'; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-subtitle-font-size: 13px; @dropdown-nav-item-padding-vertical: 6px; @dropdown-nav-divider-margin-horizontal: -@dropdown-padding; @dropdown-nav-font-size: 11px; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-nav-subtitle-font-family: @global-font-family; @dropdown-nav-subtitle-font-weight: normal; @dropdown-nav-subtitle-text-transform: none; @dropdown-nav-subtitle-letter-spacing: normal; @dropdown-box-shadow: @global-small-box-shadow; @dropbar-padding-top: 25px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 4px 6px -5px rgba(0,0,0,0.09), 0 20px 32px -25px rgba(0,0,0,0.1); @dropbar-bottom-box-shadow: 0 -4px 6px -5px rgba(0,0,0,0.09), 0 -20px 32px -25px rgba(0,0,0,0.1); @dropbar-left-box-shadow: 9px 0 10px -12px rgba(0,0,0,0.09), 20px 0 32px -30px rgba(0,0,0,0.1); @dropbar-right-box-shadow: -9px 0 10px -12px rgba(0,0,0,0.09), -20px 0 32px -30px rgba(0,0,0,0.1); @modal-dialog-box-shadow: @global-xlarge-box-shadow; @slider-container-margin-top: -25px; @slider-container-margin-bottom: -65px; @slider-container-margin-left: -37px; @slider-container-margin-right: -53px; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-overlay-background: fade(@global-background, 70%); @offcanvas-bar-box-shadow: @global-medium-box-shadow; @notification-message-background: @global-background; @notification-message-box-shadow: @global-xlarge-box-shadow; @tooltip-background: @global-secondary-background; @countdown-item-font-family: @global-secondary-font-family; @countdown-item-font-weight: @global-secondary-font-weight; @countdown-item-text-transform: @global-secondary-text-transform; @countdown-item-letter-spacing: 0; @countdown-item-font-style: @global-secondary-font-style; @nav-item-padding-vertical: 8px; @nav-header-font-size: 11px; @nav-divider-margin-vertical: 15px; @nav-default-font-size: 11px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-link-color; @nav-default-item-active-color: @global-link-color; @nav-default-subtitle-font-size: 13px; @nav-default-header-color: @global-muted-color; @nav-primary-font-size: @global-medium-font-size; @nav-primary-line-height: 1.3; @nav-primary-item-color: @global-color; @nav-primary-item-hover-color: @global-link-color; @nav-primary-item-active-color: @global-link-color; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-header-color: @global-muted-color; @nav-primary-sublist-font-size: 20px; @nav-primary-sublist-line-height: 1.4; @nav-primary-sublist-item-hover-color: @global-link-color; @nav-secondary-font-size: 11px; @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-sublist-font-size: 11px; @nav-medium-font-size: @heading-medium-font-size-m * 0.86; // 48px @nav-large-font-size-l: 90px; @nav-secondary-margin-top: 10px; @nav-default-subtitle-color: @global-muted-color; @nav-default-subtitle-font-family: @global-font-family; @nav-default-subtitle-font-weight: normal; @nav-default-subtitle-text-transform: none; @nav-default-subtitle-letter-spacing: normal; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-font-weight: normal; @nav-primary-subtitle-text-transform: none; @nav-primary-subtitle-letter-spacing: normal; @nav-primary-subtitle-line-height: 1.5; @nav-secondary-letter-spacing: 1.5px; @nav-secondary-subtitle-font-family: @global-font-family; @nav-secondary-subtitle-text-transform: none; @nav-secondary-subtitle-letter-spacing: normal; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-nav-item-color: @global-color; @navbar-nav-item-font-size: 11px; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-nav-item-onclick-color: @global-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-link-color; @navbar-subtitle-font-size: 13px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-width: 240px; @navbar-dropdown-padding: 25px; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-subtitle-font-size: 13px; @navbar-padding-top-m: 20px; @navbar-padding-bottom-m: 20px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: 33px; @navbar-nav-item-line-height: 5px; @navbar-nav-item-line-transition-duration: 0.25s; @navbar-nav-item-line-hover-height: @navbar-nav-item-line-height; @navbar-nav-item-line-onclick-height: @navbar-nav-item-line-height; @navbar-nav-item-line-onclick-background: lighten(@global-primary-background, 4%); @navbar-nav-item-line-active-height: @navbar-nav-item-line-height; @navbar-primary-gap-m: 40px; @navbar-primary-nav-gap-m: 40px; @navbar-dropdown-nav-item-padding-vertical: 6px; @navbar-dropdown-nav-divider-margin-vertical: 8px; @navbar-nav-item-letter-spacing: 1.5px; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-font-family: @global-font-family; @navbar-subtitle-font-weight: 400; @navbar-subtitle-text-transform: none; @navbar-subtitle-letter-spacing: normal; @navbar-primary-nav-item-font-size: @global-small-font-size; @navbar-dropdown-nav-font-size: 11px; @navbar-dropdown-nav-letter-spacing: @navbar-nav-item-letter-spacing; @navbar-dropdown-box-shadow: @global-small-box-shadow; @inverse-navbar-nav-item-color: @inverse-global-color; @inverse-navbar-nav-item-hover-color: @inverse-global-emphasis-color; @inverse-navbar-nav-item-onclick-color: @inverse-global-color; @inverse-navbar-nav-item-line-hover-background: fade(@global-primary-background, 20%); @inverse-navbar-nav-item-line-onclick-background: @inverse-navbar-nav-item-line-hover-background; @inverse-navbar-nav-item-line-active-background: @inverse-navbar-nav-item-line-hover-background; @subnav-item-color: @global-color; @subnav-item-hover-color: fade(@subnav-item-color, 70%); @subnav-divider-border-height: 1em; @subnav-pill-item-padding-vertical: 7px; @subnav-pill-item-padding-horizontal: 14px; @subnav-pill-item-active-color: @global-emphasis-color; @subnav-item-font-size: 11px; @subnav-item-letter-spacing: 1.5px; @inverse-subnav-item-color: @inverse-global-color; @inverse-subnav-item-hover-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-hover-color: @inverse-global-emphasis-color; @breadcrumb-item-font-size: 11px; @breadcrumb-divider-margin-horizontal: 15px; @pagination-margin-horizontal: 20px; @pagination-item-padding-vertical: 2px; @pagination-item-padding-horizontal: 4px; @pagination-item-color: @global-color; @pagination-item-hover-color: @global-link-color; @pagination-item-active-color: @global-emphasis-color; @pagination-item-min-width: 16px; @pagination-item-height: 26px; @pagination-item-font-size: 12px; @pagination-item-letter-spacing: 0; @pagination-item-border-mode: -bottom; @pagination-item-border-width: 3px; @pagination-item-hover-border: @global-primary-background; @pagination-item-active-border: @global-primary-background; @inverse-pagination-item-hover-color: @inverse-global-emphasis-color; @inverse-pagination-item-hover-border: @inverse-global-border; @inverse-pagination-item-active-border: @inverse-global-primary-background; @tab-item-color: @global-color; @tab-item-hover-color: fade(@tab-item-color, 70%); @tab-item-font-size: 11px; @tab-item-line-height: 24px; @tab-item-letter-spacing: 1.5px; @tab-border: transparent; @tab-item-border-width: 3px; @tab-item-hover-border: @global-primary-background; @inverse-tab-item-hover-color: @inverse-global-muted-color; @inverse-tab-border: transparent; @inverse-tab-item-hover-border: @inverse-global-border; @dotnav-item-width: 13px; @dotnav-item-background: transparent; @dotnav-item-hover-background: @global-emphasis-color; @dotnav-item-onclick-background: fade(@global-emphasis-color, 60%); @dotnav-item-active-background: @global-emphasis-color; @dotnav-item-border-width: 1px; @dotnav-item-border: @global-emphasis-color; @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-active-background: @inverse-global-emphasis-color; @inverse-dotnav-item-border: @inverse-global-emphasis-color; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-link-color; @iconnav-item-active-color: @global-link-color; @text-lead-font-size: 18px; @text-meta-font-size: 11px; @text-large-font-size: 18px; @text-primary-color: darken(@global-primary-background, 30%); @text-success-color: darken(@global-success-background, 15%); @text-warning-color: darken(@global-warning-background, 15%); @text-danger-color: darken(@global-danger-background, 15%); @text-lead-font-weight: normal; @internal-text-background-color-gradient: linear-gradient(135deg, @global-link-color, darken(@global-link-color, 15%)); @logo-font-family: @global-primary-font-family; @logo-font-weight: @global-primary-font-weight; @logo-text-transform: @global-primary-text-transform; @logo-letter-spacing: @global-primary-letter-spacing; @inverse-global-color: fade(@global-inverse-color, 60%); @inverse-global-muted-color: fade(@inverse-global-color, 40%); @inverse-global-inverse-color: @global-emphasis-color; @inverse-global-border: fade(@global-inverse-color, 10%);assets/uikit-themes/master-florence/styles/white-orange.less000064400000011003151666572400020357 0ustar00// // Global // @global-muted-color: #ABA6A2; @global-link-color: darken(@global-primary-background, 15%); @global-muted-background: #f6f4f0; @global-primary-background: #f1b896; @global-secondary-background: #fbf7f1; // // Theme // @theme-toolbar-color-mode: dark; // // Badge // @badge-background: lighten(@global-primary-background, 10%); @badge-color: @global-emphasis-color; // // Button // @internal-button-default-gradient: linear-gradient(90deg, darken(@global-secondary-background, 3%) 62.5%, transparent 62.5%); @internal-button-default-hover-gradient: linear-gradient(90deg, darken(@global-secondary-background, 3%) 62.5%, transparent 62.5%); @internal-button-default-active-gradient: linear-gradient(90deg, darken(@global-secondary-background, 6%) 62.5%, transparent 62.5%); @internal-button-primary-gradient: linear-gradient(90deg, fade(@global-primary-background, 50%) 62.5%, transparent 62.5%); @internal-button-primary-hover-gradient: linear-gradient(90deg, fade(@global-primary-background, 50%) 62.5%, transparent 62.5%); @internal-button-primary-active-gradient: linear-gradient(90deg, fade(@global-primary-background, 70%) 62.5%, transparent 62.5%); @button-secondary-background: darken(@global-secondary-background, 3%); @button-secondary-color: @global-emphasis-color; @button-secondary-hover-background: darken(@button-secondary-background, 4%); @button-secondary-active-background: darken(@button-secondary-background, 6%); @button-text-border: fade(@global-primary-background, 70%); @inverse-button-secondary-color: @inverse-global-inverse-color; // // Card // @card-secondary-color: @global-color; @card-secondary-title-color: @global-emphasis-color; @card-secondary-color-mode: dark; @card-secondary-hover-background: desaturate(darken(@card-secondary-background, 3%), 2%); // // Divider // @divider-small-border: @global-primary-background; // // Dropdown // @dropdown-nav-subtitle-color: darken(@global-muted-color, 10%); // // Form // @form-focus-border: @global-primary-background; @form-radio-checked-background: @global-primary-background; @form-radio-checked-focus-background: @global-primary-background; @form-radio-border: rgba(0,0,0,0.1); @form-radio-focus-border: @global-primary-background; @inverse-form-radio-checked-icon-color: @global-emphasis-color; // // Form Range // @form-range-thumb-background: @global-emphasis-color; @form-range-track-focus-background: @global-emphasis-color; // // Heading // @heading-bullet-border: fade(@global-primary-background, 70%); @heading-line-border: fade(@global-primary-background, 70%); // // Icon // @icon-button-hover-background: lighten(@global-muted-background, 2%); // // Iconnav // @iconnav-item-hover-color: desaturate(lighten(@global-primary-background, 5%), 10%); @iconnav-item-active-color: desaturate(lighten(@global-primary-background, 5%), 10%); // // Label // @label-background: @global-primary-background; @label-color: @global-emphasis-color; // // Marker // @marker-background: @global-primary-background; @marker-color: @global-emphasis-color; @marker-hover-background: darken(@global-primary-background, 8%); @marker-hover-color: fade(@global-emphasis-color, 70%); // // Nav // @nav-default-subtitle-color: darken(@global-muted-color, 10%); @nav-primary-subtitle-color: darken(@global-muted-color, 10%); // // Navbar // @navbar-nav-item-line-hover-background: fade(@global-primary-background, 70%); @navbar-nav-item-line-onclick-background: @navbar-nav-item-line-hover-background; @navbar-nav-item-line-active-background: @navbar-nav-item-line-hover-background; @navbar-toggle-hover-color: desaturate(lighten(@global-primary-background, 5%), 10%); @navbar-subtitle-color: darken(@global-muted-color, 10%); @navbar-dropdown-nav-subtitle-color: darken(@global-muted-color, 10%); // // Overlay // @overlay-primary-color-mode: dark; // // Search // @search-default-focus-border: @global-primary-background; @search-toggle-hover-color: desaturate(lighten(@global-primary-background, 5%), 10%); @search-medium-focus-border: @global-primary-background; @search-large-focus-border: @global-primary-background; // // Section // @section-secondary-color-mode: dark; // // Tile // @tile-secondary-color-mode: dark; // // Tooltip // @tooltip-color: @global-emphasis-color; // // Woocommerce // @woocommerce-rating-color: @global-primary-background; assets/uikit-themes/master-florence/styles/light-pink.less000064400000003540151666572400020043 0ustar00// // Global // @global-color: #4e4241; @global-emphasis-color: #422c2a; @global-muted-color: #9c807e; @global-link-color: #9c807e; @global-background: #f1e7e4; @global-muted-background: desaturate(darken(@global-background, 3%), 4%); @global-primary-background: #e6d6d3; @global-secondary-background: #4b3c3b; @global-success-background: #45a34c; @global-warning-background: #e89029; @global-danger-background: #c1433b; // // Button // @internal-button-default-gradient: linear-gradient(90deg, lighten(@global-background, 3%) 62.5%, transparent 62.5%); @internal-button-default-hover-gradient: linear-gradient(90deg, lighten(@global-background, 3%) 62.5%, transparent 62.5%); @internal-button-default-active-gradient: linear-gradient(90deg, lighten(@global-background, 5%) 62.5%, transparent 62.5%); @internal-button-primary-gradient: linear-gradient(90deg, @global-primary-background 62.5%, transparent 62.5%); @internal-button-primary-hover-gradient: linear-gradient(90deg, @global-primary-background 62.5%, transparent 62.5%); @internal-button-primary-active-gradient: linear-gradient(90deg, darken(@global-primary-background, 3%) 62.5%, transparent 62.5%); @button-text-border: darken(@global-primary-background, 6%); // // Card // @card-default-background: lighten(@global-background, 2%); @card-default-hover-background: lighten(@card-default-background, 4%); @card-primary-background: @global-primary-background; // // Divider // @divider-small-border: @global-primary-background; // // Dropdown // @dropdown-background: lighten(@global-background, 2%); // // Navbar // @navbar-nav-item-line-hover-background: darken(@global-primary-background, 6%); @navbar-dropdown-background: lighten(@global-background, 2%); // // Section // @section-primary-background: @global-primary-background; assets/uikit-themes/master-florence/styles/white-beige.less000064400000005127151666572400020171 0ustar00// // Global // @global-color: #4d4c50; @global-emphasis-color: #2b2a2e; @global-muted-color: #aeacb4; @global-link-color: darken(@global-primary-background, 5%); @global-primary-background: #b69485; @global-secondary-background: #8c87a8; // // Base // @inverse-base-link-color: fade(@global-emphasis-color, 70%); @inverse-base-link-hover-color: @global-emphasis-color; // // Button // @internal-button-default-gradient: linear-gradient(90deg, fade(@global-secondary-background, 15%) 62.5%, transparent 62.5%); @internal-button-default-hover-gradient: linear-gradient(90deg, fade(@global-secondary-background, 15%) 62.5%, transparent 62.5%); @internal-button-default-active-gradient: linear-gradient(90deg, fade(@global-secondary-background, 25%) 62.5%, transparent 62.5%); @internal-button-primary-gradient: linear-gradient(90deg, fade(@global-primary-background, 35%) 62.5%, transparent 62.5%); @internal-button-primary-hover-gradient: linear-gradient(90deg, fade(@global-primary-background, 35%) 62.5%, transparent 62.5%); @internal-button-primary-active-gradient: linear-gradient(90deg, fade(@global-primary-background, 50%) 62.5%, transparent 62.5%); @button-text-border: fade(@global-primary-background, 30%); // // Card // @card-badge-color: @global-inverse-color; @card-primary-color-mode: light; @inverse-card-badge-background: @global-inverse-color; // // Form // @inverse-form-radio-checked-icon-color: @global-emphasis-color; // // Heading // @heading-bullet-border: fade(@global-secondary-background, 40%); @heading-line-border: fade(@global-secondary-background, 40%); // // Iconnav // @iconnav-item-hover-color: darken(@global-secondary-background, 5%); @iconnav-item-active-color: darken(@global-secondary-background, 5%); // // Inverse // @inverse-global-color: fade(@global-inverse-color, 80%); @inverse-global-muted-color: fade(@inverse-global-color, 40%); @inverse-global-inverse-color: @global-emphasis-color; // // Navbar // @navbar-nav-item-line-hover-background: fade(lighten(@global-primary-background, 15%), 70%); @navbar-nav-item-line-onclick-background: @navbar-nav-item-line-hover-background; @navbar-nav-item-line-active-background: @navbar-nav-item-line-hover-background; @navbar-toggle-hover-color: darken(@global-secondary-background, 5%); // // Search // @search-toggle-hover-color: darken(@global-secondary-background, 5%); // // Section // @section-primary-color-mode: light; // // Subnav // @subnav-pill-item-active-color: @global-inverse-color; // // Tile // @tile-primary-color-mode: light; assets/uikit-themes/master-florence/styles/dark-brown.less000064400000020472151666572400020046 0ustar00// // Global // @global-color: fade(@global-emphasis-color, 50%); @global-emphasis-color: #fff3e6; @global-inverse-color: #0f0c0b; @global-link-color: #AE8F88; @global-link-hover-color: lighten(@global-link-color, 15%); @global-muted-color: fade(@global-emphasis-color, 30%); @global-background: #2c2929; @global-danger-background: #b45a5f; @global-muted-background: fade(lighten(@global-background, 6%), 70%); @global-primary-background: #88635b; @global-secondary-background: #282525; @global-success-background: #6e9c7f; @global-warning-background: #d19f7b; @global-border: rgba(209, 182, 177, 0.1); @global-large-box-shadow: 2px 3px 10px 0 rgba(25, 20, 17, 0.35); @global-medium-box-shadow: 2px 3px 6px 0 rgba(25, 20, 17, 0.35); @global-small-box-shadow: 1px 2px 5px 0 rgba(25, 20, 17, 0.35); @global-xlarge-box-shadow: 2px 4px 12px 0 rgba(25, 20, 17, 0.35); // // Theme // @theme-page-container-color-mode: light; // // Alert // @alert-background: @global-muted-background; @alert-primary-color: lighten(@global-primary-background, 15%); @alert-primary-background: @global-muted-background; @alert-success-color: lighten(@global-success-background, 15%); @alert-success-background: @global-muted-background; @alert-warning-color: lighten(@global-warning-background, 15%); @alert-warning-background: @global-muted-background; @alert-danger-color: lighten(@global-danger-background, 15%); @alert-danger-background: @global-muted-background; // // Badge // @badge-background: @global-primary-background; @badge-color: @global-emphasis-color; // // Base // @base-ins-background: fade(@global-primary-background, 20%); @base-mark-background: fade(@global-primary-background, 20%); // // Button // @internal-button-default-gradient: linear-gradient(90deg, @global-muted-background 62.5%, transparent 62.5%); @internal-button-default-hover-gradient: linear-gradient(90deg, @global-muted-background 62.5%, transparent 62.5%); @internal-button-default-active-gradient: linear-gradient(90deg, @global-muted-background 62.5%, transparent 62.5%); @button-secondary-color: @global-emphasis-color; @button-secondary-hover-background: desaturate(darken(@button-secondary-background, 2%), 2%); @button-secondary-active-background: darken(@button-secondary-hover-background, 4%); @button-text-border: fade(@global-primary-background, 50%); @inverse-button-primary-color: @global-emphasis-color; @inverse-button-primary-hover-color: @global-emphasis-color; @inverse-button-primary-active-color: fade(@global-emphasis-color, 70%); @inverse-button-secondary-color: @global-emphasis-color; @inverse-marker-background: @global-primary-background; @inverse-marker-color: @global-emphasis-color; @inverse-marker-hover-color: fade(@global-emphasis-color, 80%); @inverse-button-secondary-hover-color: @global-emphasis-color; @inverse-button-secondary-active-color: fade(@global-emphasis-color, 70%); // // Card // @card-hover-background: @global-muted-background; @card-default-background: @global-muted-background; @card-default-color-mode: light; @card-default-hover-background: @global-muted-background; @card-default-box-shadow: @global-medium-box-shadow; @card-default-hover-box-shadow: @global-xlarge-box-shadow; @card-primary-background: @global-primary-background; @card-primary-color-mode: light; @card-primary-box-shadow: @global-medium-box-shadow; @card-primary-hover-box-shadow: @global-xlarge-box-shadow; @card-secondary-color: @global-color; @card-secondary-title-color: @global-emphasis-color; @card-secondary-hover-background: desaturate(darken(@card-secondary-background, 2%), 2%); // // Divider // @divider-icon-color: @global-primary-background; @divider-small-border: @global-border; // // Dropdown // @dropdown-color-mode: light; // // Dropbar // @dropbar-color-mode: light; @dropbar-top-box-shadow: 0 4px 6px -5px rgba(0,0,0,0.2), 0 20px 32px -25px rgba(0,0,0,0.25); @dropbar-bottom-box-shadow: 0 -4px 6px -5px rgba(0,0,0,0.2), 0 -20px 32px -25px rgba(0,0,0,0.25); @dropbar-left-box-shadow: 4px 0 6px -5px rgba(0,0,0,0.2), 20px 0 32px -25px rgba(0,0,0,0.25); @dropbar-right-box-shadow: -4px 0 6px -5px rgba(0,0,0,0.2), -20px 0 32px -25px rgba(0,0,0,0.25); // // Form // @form-focus-border: fade(@form-border, 60%); @form-radio-checked-background: @global-primary-background; @form-radio-checked-focus-background: @global-primary-background; @form-radio-border: fade(@global-border, 30%); @form-radio-focus-border: fade(@form-radio-border, 60%); @inverse-form-radio-checked-icon-color: @global-emphasis-color; // // Form Range // @form-range-thumb-background: @global-emphasis-color; @form-range-track-background: fade(lighten(@global-background, 15%), 70%); @form-range-track-focus-background: @global-emphasis-color; // // Icon // @icon-button-hover-background: fade(lighten(@global-background, 6%), 50%); // // Inverse // @inverse-global-color-mode: dark; // // Label // @label-background: @global-muted-background; @label-color: @global-emphasis-color; // // Marker // @marker-background: #FFFFFF; @marker-color: #000000; @marker-hover-color: rgba(0, 0, 0, 0.3); // // Navbar // @navbar-color-mode: light; @navbar-dropdown-color-mode: light; // // Notification // @notification-message-primary-color: #ffffff; @notification-message-success-color: #ffffff; @notification-message-warning-color: #ffffff; @notification-message-danger-color: #ffffff; // // List // @list-bullet-icon-color: @global-primary-background; // // Offcanvas // @offcanvas-bar-color-mode: light; // // Overlay // @overlay-default-color-mode: light; // // Search // @search-default-focus-border: darken(@global-primary-background, 10%); @inverse-search-default-focus-background: transparent; @search-medium-focus-border: darken(@global-primary-background, 10%); @search-large-focus-border: darken(@global-primary-background, 10%); // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-background: @global-primary-background; @section-primary-color-mode: light; @internal-section-default-image: "../../master-florence/images/styles/dark-brown/section-dark-background.svg"; @internal-section-muted-image: "../../master-florence/images/styles/dark-brown/section-dark-background.svg"; @internal-section-primary-image: "../../master-florence/images/styles/dark-brown/section-dark-background.svg"; @internal-section-secondary-image: "../../master-florence/images/styles/dark-brown/section-dark-background.svg"; // // Table // @table-row-active-background: fade(@global-primary-background, 20%); // // Text // @text-primary-color: lighten(@global-primary-background, 15%); @text-secondary-color: desaturate(lighten(@global-secondary-background, 50%), 10%); @text-success-color: lighten(@global-success-background, 15%); @text-warning-color: lighten(@global-warning-background, 15%); @text-danger-color: lighten(@global-danger-background, 15%); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: light; @internal-tile-default-image: "../../master-florence/images/styles/dark-brown/background-noise.png"; @internal-tile-muted-image: "../../master-florence/images/styles/dark-brown/background-noise.png"; @internal-tile-primary-image: "../../master-florence/images/styles/dark-brown/background-noise.png"; @internal-tile-secondary-image: "../../master-florence/images/styles/dark-brown/background-noise.png"; // // Tooltip // @tooltip-background: @global-primary-background; @tooltip-color: @global-emphasis-color; // // WooCommerce // @woocommerce-rating-color: @global-primary-background; @woocommerce-rating-background-color: lighten(@global-muted-background, 15%); @woocommerce-widget-active-filters-hover-background: darken(@global-muted-background, 2%); assets/uikit-themes/master-florence/styles/white-red.less000064400000004611151666572400017665 0ustar00// // Global // @global-link-color: darken(@global-primary-background, 15%); @global-primary-background: #ee4752; @global-secondary-background: #4f3a50; @global-danger-background: #e45541; // // Button // @internal-button-default-gradient: linear-gradient(90deg, fade(@global-secondary-background, 10%) 62.5%, transparent 62.5%); @internal-button-default-hover-gradient: linear-gradient(90deg, fade(@global-secondary-background, 10%) 62.5%, transparent 62.5%); @internal-button-default-active-gradient: linear-gradient(90deg, fade(@global-secondary-background, 20%) 62.5%, transparent 62.5%); @internal-button-primary-gradient: linear-gradient(90deg, fade(@global-primary-background, 20%) 62.5%, transparent 62.5%); @internal-button-primary-hover-gradient: linear-gradient(90deg, fade(@global-primary-background, 20%) 62.5%, transparent 62.5%); @internal-button-primary-active-gradient: linear-gradient(90deg, fade(@global-primary-background, 30%) 62.5%, transparent 62.5%); @button-text-border: fade(@global-secondary-background, 20%); // // Card // @card-badge-background: fade(@global-primary-background, 20%); @card-primary-color-mode: light; @inverse-card-badge-background: fade(@global-inverse-color, 80%); // // Divider // @divider-small-border: fade(@global-secondary-background, 15%); // // Form // @form-focus-border: @global-primary-background; @form-radio-focus-border: @global-primary-background; @form-radio-checked-background: @global-primary-background; @form-radio-checked-focus-background: lighten(@global-primary-background, 6%); // // Heading // @heading-bullet-border: fade(@global-secondary-background, 15%); @heading-line-border: fade(@global-secondary-background, 15%); // // Inverse // @inverse-global-color: fade(@global-inverse-color, 80%); @inverse-global-muted-color: fade(@inverse-global-color, 40%); // // Navbar // @navbar-nav-item-line-hover-background: fade(@global-secondary-background, 15%); @navbar-nav-item-line-onclick-background: @navbar-nav-item-line-hover-background; @navbar-nav-item-line-active-background: @navbar-nav-item-line-hover-background; // // Section // @section-primary-color-mode: light; // // Subnav // @subnav-pill-item-active-color: @global-inverse-color; // // Table // @table-row-active-background: @global-muted-background; // // Tile // @tile-primary-color-mode: light; assets/uikit-themes/master-florence/icons/totop.svg000064400000000371151666572400016562 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="10.5,4 15.37,9.4 14.63,10.08 10.5,5.49 6.37,10.08 5.63,9.4" /> <line fill="none" stroke="#000" x1="10.5" y1="16" x2="10.5" y2="5" /> </svg> assets/uikit-themes/master-florence/icons/nav-parent-icon-large.svg000064400000000301151666572400021477 0ustar00<svg width="18" height="18" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.9" points="1.021 5.01 9 12.99 16.979 5.01" /> </svg> assets/uikit-themes/master-florence/icons/pagination-next.svg000064400000000373151666572400020524 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5" /> <line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5" /> </svg> assets/uikit-themes/master-florence/icons/navbar-toggle-icon.svg000064400000002422151666572400021072 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <style> .uk-navbar-toggle-icon svg > [class*='line-'] { transition: 0.2s ease-in-out; transition-property: transform, opacity,; transform-origin: center; opacity: 1; } .uk-navbar-toggle-icon svg > .line-3 { opacity: 0; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-3 { opacity: 1; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-2 { transform: rotate(45deg); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-3 { transform: rotate(-45deg); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-1, .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-4 { opacity: 0; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-1 { transform: translateY(6px) scaleX(0); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-4 { transform: translateY(-6px) scaleX(0); } </style> <rect class="line-1" width="20" height="1" y="3" /> <rect class="line-2" width="20" height="1" y="9" /> <rect class="line-3" width="20" height="1" y="9" /> <rect class="line-4" width="20" height="1" y="15" /> </svg> assets/uikit-themes/master-florence/icons/pagination-previous.svg000064400000000372151666572400021421 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5" /> <line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5" /> </svg> assets/uikit-themes/master-florence/images/section-dark-background.svg000064400000000415151666572400022246 0ustar00<svg width="1440" height="40" viewBox="0 0 1440 40" xmlns="http://www.w3.org/2000/svg"> <g fill="#FFF" fill-rule="evenodd" opacity=".06"> <path d="M0-13h1v5011H0zM360-13h1v5011h-1zM719-13h1v5011h-1zM1080-13h1v5011h-1zM1439-13h1v5011h-1z" /> </g> </svg> assets/uikit-themes/master-florence/images/list-bullet.svg000064400000000251151666572400020004 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1" cx="5" cy="5" r="4" /> </svg> assets/uikit-themes/master-florence/images/section-light-background.svg000064400000000415151666572400022434 0ustar00<svg width="1440" height="40" viewBox="0 0 1440 40" xmlns="http://www.w3.org/2000/svg"> <g fill="#000" fill-rule="evenodd" opacity=".06"> <path d="M0-13h1v5011H0zM360-13h1v5011h-1zM719-13h1v5011h-1zM1080-13h1v5011h-1zM1439-13h1v5011h-1z" /> </g> </svg> assets/uikit-themes/master-florence/images/styles/dark-brown/section-dark-background.svg000064400001222777151666572400025661 0ustar00<svg width="2560" height="110" viewBox="0 0 2560 110" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <title> section-dark-background </title> <defs> <pattern id="g" width="512" height="512" x="-512" y="-512" patternUnits="userSpaceOnUse"> <use xlink:href="#a" /> </pattern> <image xlink:href="data:image/png;base64,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" id="a" width="512" height="512" /> <path id="b" d="M0 0h1v110H0z" /> <mask id="h" width="1" height="110" fill="#fff" x="0" y="0"> <use xlink:href="#b" /> </mask> <path id="c" d="M360 0h1v110h-1z" /> <mask id="i" width="1" height="110" fill="#fff" x="0" y="0"> <use xlink:href="#c" /> </mask> <path id="d" d="M719 0h1v110h-1z" /> <mask id="j" width="1" height="110" fill="#fff" x="0" y="0"> <use xlink:href="#d" /> </mask> <path id="e" d="M1080 0h1v110h-1z" /> <mask id="k" width="1" height="110" fill="#fff" x="0" y="0"> <use xlink:href="#e" /> </mask> <path id="f" d="M1439 0h1v110h-1z" /> <mask id="l" width="1" height="110" fill="#fff" x="0" y="0"> <use xlink:href="#f" /> </mask> </defs> <g fill="none" fill-rule="evenodd"> <path fill="url(#g)" fill-opacity=".029" d="M0 0h2560v110H0z" /> <g opacity=".131" stroke="#D8B3AD" stroke-dasharray="4,7" stroke-width="2" transform="translate(560)"> <use xlink:href="#b" mask="url(#h)" /> <use xlink:href="#c" mask="url(#i)" /> <use xlink:href="#d" mask="url(#j)" /> <use xlink:href="#e" mask="url(#k)" /> <use xlink:href="#f" mask="url(#l)" /> </g> </g> </svg> assets/uikit-themes/master-florence/images/styles/dark-brown/background-noise.png000064400000015456151666572400024371 0ustar00�PNG IHDRddp�TsRGB����IDATx���d� D���9#c䌌�34F�W]�:�j�D&������B���������������ؽ#���U����G��{�����������O���s=�K��g����JK�X��o=���\��W���?:���⩨�a�g��D��.�@���u��r���|�����қ�w��5���??i�%lQX����"�;[~:i=5��44�A�kF�qk�_�|w��s7�w���<- o ���f����Չc�3.�w�������c5��7?O��(i��X�<�L&� [�;\/����t��^\���/Oo�;?��zy�)�_ϭ�|��t�f7j7ڑ������D\�:��ʇտw����9,1���* Pݰ˵ݗ{kq������;�8¬?z��U+�YΏ �[\@�w �PH�x����Q��d�FwXLCp��8��N/||ai������ӡ�����}�}�`��`H$��"�B�1pf!oG?�8�����ꅱ�<��[L7�yy��nq��/_x={�V=��ݫ�O�]��k�*�����+ ��Z'�e{�X���;��aap�[]���[ ���@���)��8�"^�^��������uo�\`�ug�X� ����Z���dЀ�p���7����m���zϣ^�ěO����s�����0�G�篹D�Z����x��`��H9���T_�����^�a�8,&�VCM���C��lq�ߘ�K�� �~��0\b�L��qǷ�[����{c,�|���]1��GTm����Y���S�lb����Yl ���L��ٺl52�{�#ߝf}�0� 6�~�7V�_�jo��ty�w_� ��/�C�+�����KV$����=��3����??jk��> n� C���Պ~(�*s�һ�x�w��?��b���W��/@�!MH��B�|8K�[,W�j�kypE���o��;�l�wQ��|�Ѩ�_��������T�f�����ڝ�S�s8���b`b�k.��oXu��-Ϩ(�@���[͐�f)y㾱�,����2��b�C�\�g���D���V0|����.���b��~�h����������t��7�"<;z��]^��K�nzi}���'R� D����aG1A��S|g$|\��ۡ��ţ�b�jp�,�<?�?E��4��{�����:��}a�����wdŚ��՟M��O���a6wM��Ղ W���v��[ђ| 9�z��+���|�����=M'^���=j����`��Y�;LXf���[�s���h��@˿��_��zyR�ŬqޏTO��`���x��#�9ü9��3�A�ma��r�� |��a���V�k�pq����,�=9���ƛ�r�����t����x���T���5K��$�DDa:�뭧�����[l��/���۾�X�0�X�0W�.7<Nq��q�7�����?6���ڒtO��w`���Q[^=ūo�b��ja;��{9�Ŵ�wp�/�{���z���l<� _m���)��� �7"��D�NxI-)�j�E�;P�8v�w�E\�i���{o.|��j�^��G�=��?ojE���=|}�=�L2H��|�����G������4|o�!</�j����y߹��[��������Y����KSM�0�j V{�}pt��������x�)��Y<��S>���Y�QN^�/ʉ���i����AR���t�P�/�Ȱ��'~9f������"=�� r���]~���+�;=��V�u{̑�'�KQ��f!��`�n����덿\'<Ë�+�+~��X���p��_��҂�)�����X_ws�7��,p��E �!�0����W��S�����ª����Vq���ZXow�>�<y�,�W�bq?r[ ���-g�w�z����H��0�����q����s�a�m�����|�)�q{�ΧܷE��[�a�yU�`9��˯���+�h-B�.( ��G>�[���-:������[����n=]�w����K�Bo��6ћP��.DM>���;��R����m��?O�w��|�K_�n�롷}��w~��?���#�*v/2ƔXNN�3�g���]��۠ն���ῷ��n�E�����!o���aõoj�X2�� �G��_�Gn�wq����������']Z樆#�zOw���zz/����Z^��E���{_3���o1��']=[g�Z���RO9CDžW��^=��v���|W�����YD<v� Q��EV��a���}��O���ԋ|��1@�8��w�ap���o�w}> �b�H㧞0��9�R��AD��(�wԋ�`r+/.�Gfr�u�p.Og{�蘥��S_�ͅϋ�j�M^zw�g.�q�)ׇ+�}�~�%-�<QW�%�&|��ݞ0��z���^�߾��Y��zS���v�>���Z.|z�N���q�����j��p0�uo�"^����u�[��|ح���|�#��_�zT�'O�o����Tϓys�0O�Ͽz"*�0#g�h�����E�a�X�=�O}{`V�}9�w����~�z��P���[���ݩ�,꽻�+_���� �@9�W��މ,O���5�_ �f�r-H���]�n﷏��.������/_����A�?��m"�ײ��#'�KR�� �I�`�^���hH�_F�Yzw�K�W�x�/����Ͽ=���^��g=��<��Q�k�9#�� y�f� �"��EC�2�äkaxh��N�<�^�h�0e�4�n�C����������$�8�"��K��pˋi�'����}y���{>v\���;�x�q��;nX��i�ky��~��� �PS�j�.f��.����!�aqĿf��$�ij~�i�Z�w��K��S/�|�_^a���W_�]���x���;�P�*w�˯9C�{1i��x� -�C�_-��r,~=�wV?�f\�0qّ��E�|\�}�8̘�3~�:��\s�6"��E�Z�r�+2���O��Y_�,4�l�r,�7]=b}�����c�'����{��q8�4?�_�=[1BD� �vE�v�^\�� ~}�./���b,������{9W�}�|�S>L��p�_:Kd,��Gi��uO�� �/�ry3�s�W��w,��{w�E��|�;y���V߅��o=��ԝ->>��z�IB��K}W/�;\��1Zkt���0��z�V�裖��շ%OzvΟ�a�.�����i c1>�w`G.L�O�o�w1Lܼ%���O9[w�#����o�"�z˻���W�r����ы�~-��5"c��_ȃpDq�W��"|Ctߏ�&��q._�E,����_��N��^�˿sU+���{~�O��kڥ��o�n���1!�]�ꆀ�Sm� �o����C�O_���J=8�D<�o�z\q���?.�U���ib�{?�텏�|�ކ[3T-���y�'���߅�߾�7�z�Ӯ�����E�z5u���P�Q� ��Lv�2�h��%�Y�w��"p��v��;�xw������z��b�w=�E���{���]�yė�5���X�v�/��HwE#pe���WS�j8�"~j�����m;�ˏ�{�Y��;N�n��xh<�G�H#ʐ��Rd����}{�[���x ��t:�.��\�E���I���˷;S�\���N�wy~v���s1 ���HHN��]&��0�5a�8�z/�b^��k���/���]-=�6����!y��^��r�?k_�JC��H��jT/6�����x1Nˤep�y+שo���-��;�:ޫg����~}�{�g��|���{p�QdņA���� �|��e�7=�f5x[�HKO��6_�Ղm�4����,gw�Z�0�N|�r<��䚙��2#DzE�,A5=8��GS���]�x��{qq�]�p9o�V��Zo|����b�i��$��h���W'��z`�>p���r,F�\ڽ��Sl�����w�������.��;�N1�,G�O�_�B��!ؼ{1vu�� _OXu1�KR+�_��r�æ�>��{�������gc}�����>��N�<�_��g���H���Qo}�����W3��W��r|գ����a�z�����y��8��z�w���o5<�uGZ��H��w�[L��3��1\�A}"��>~�<�:��<���w��JKoq{��K3\���նgq���G�T��֨l5fV����/�aq�Q���v��?�Eo�{���[���lm�� �����dM ��������oi����Hc��m�w95��q������¼��M�O����1��y�����#���, &0�����=�,�|���ը���}�<�?]s,L���S~wA/��^n�����+�A�!)^QFn��wÕ˘%�ӹC\����W~?j�Nڗ��zq�t��ryY��;x�� ���|�5�nqC����>Hy�^��8z�Z�j��[������W�����p��G���;��$O<���A.#��x���Wt���nLw�f��ś�w��Z��Ͷ^�l���#��g�3�oC$�C��mh}�4��{w���{5�n|�K�zw<�˭�{�cc��8xS��_>?�_8a������$�4���F���kt���r鴀]t�N����c�o_���Z�����w�f��X��W#L���i�5G�?��V!s�A�ۻ�j�lu:��V����x�ú���g59�y��'��8���+扯�[�OO��|g�nNj�Ţ-Q~���:#a��\3���S��.�0����Q�|�Է��y�~=���=���\��x����xxg��;��b��-o�3�qH���|�;��b�a�b9�&ߛ�֪;拧����S��[?���+�G_;-�S��ߖjf>К�]���f�b�p� �>n���=8���p�CzӠ�N�իF�^�Պ��y�ya��^�|,o�g����Z�_E��� ��k�{�jݯICX�W���7�a��ç{�����oa�=����p�&}�x�&��/Y���Y\���e|{���n�rz�1,��r��w��R�ޏ�g���G#���+V��~u���}� a�w��L�� �W�;�r|���r�����+_���#wu��w�x��Z:>��Ǐ�K`�YJ����a�Ջ���� ��p��j�>>�x��q���s����`�O3�˻�_V��/���`���{�{��)ڴ���/�Y.�b��;l��|���8zף�w�:��v����ů�z��x���R��60(�GGQ_�%�����^t��۷���O�{�h���?���/_����,Vߞ��S}5~��-d� ��H-�|�+ {�z3�]�h�]�z| a;��|l��.W93�W3?�g��&��W�z�嘵H�3��s� ��eH�F�bD>n�j�E}ݿ�e/G�oqs��ֻ3��?}~V�{<f �ޜ4භ�zX}�Ͽ��k p?�;Sk�^テgv��Q�Z�ɰ�m-o��~��ꍯS�����9�C��X?�b5].��O��?�K�^tg���ܛ�]��5�Ow=�#>����Q�����s�&��w�lq�n�x�N����/��BL2T4$s0w�ޙ�|=�{���zy�u���Q_�t.G��XO-u�a/�^����ۡ[��T}5��o����_-5b �!C�蚵�rk�|�e2#̇S-�EoK���f�����L�ǫv{�S�;o�W{=�I#<��ڏ|�X��2ӻ�5T.�z��逸S=~<���]��[����{��z��!gY����E��\�=^>�Q�N�]|@d��wXu� ��-&�ӿу��;=�"��۷5>��lq\0i5w���ņ�Я����Î���&wY���D��&�Q����oh�z�ޡ�0�`8�/�>��{�7o}��6�x��oO�˟{��:Y�_��;�"\�[`��n�p��8��`wx�.���Ð3�z�^��Moy�q���JN�[~>������U���ar G&Zníay��X|�����d���Нr��S���-���ka���O�ڻH/�;g�aX EM���a�a�|w�x`��\x<k�;^��%�����3�\��s��<�����_����v��v�v���~����X@����H�/,;�:C0���Y�4y�~آ��f���7N>�ȇu/Ƌkw4�z��>�#�x @�6x|�bE�.��⨦��\�4�av��z˹�-W|8蘩�\}��ͺ=f��(n�w������}�g�{!F��@k�{�P������T�g o^�;\�q�8�i�W�G}z��-��������������rt������k�m&$������O|�����%�f:a-��{��G��Eo�#�#�S����a��Ο{��/��{�oRL0O����K8�y^��.��ݾ�v�UNo~���0���+�kFy�o�7�������\�&�f� �-SM_�+L��a��qQ�W��g��+���T[�{���/.�0���oˡ�5��23��_��IEND�B`�assets/uikit-themes/master-florence/images/divider-icon.svg000064400000000413151666572400020120 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.1" x1="0" y1="0" x2="10" y2="10" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="10" y1="0" x2="0" y2="10" /> </svg> assets/uikit-themes/master-paladin/icons/nav-parent-icon-large.svg000064400000000260151666572400021316 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.6" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-paladin/icons/slidenav-next-large.svg000064400000000265151666572400021103 0ustar00<svg width="13" height="21" viewBox="0 0 13 21" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="2,20.5 12,10.5 2,0.5" /> </svg> assets/uikit-themes/master-paladin/icons/slidenav-previous.svg000064400000000263151666572400020707 0ustar00<svg width="8" height="11" viewBox="0 0 8 11" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.5" points="6,0.5 1,5.5 6,10.5" /> </svg> assets/uikit-themes/master-paladin/icons/totop.svg000064400000000353151666572400016375 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" points="4.5,9.5 10,3 15.5,9.5" /> <line fill="none" stroke="#000" x1="10" y1="18" x2="10" y2="4" /> </svg> assets/uikit-themes/master-paladin/icons/pagination-next.svg000064400000000350151666572400020332 0ustar00<svg width="12" height="9" viewBox="0 0 12 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" points="7,0.5 11,4.5 7,8.5" /> <line fill="none" stroke="#000" x1="11" y1="4.5" x2="0" y2="4.5" /> </svg> assets/uikit-themes/master-paladin/icons/slidenav-next.svg000064400000000263151666572400020011 0ustar00<svg width="8" height="11" viewBox="0 0 8 11" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.5" points="2,10.5 7,5.5 2,0.5" /> </svg> assets/uikit-themes/master-paladin/icons/slidenav-previous-large.svg000064400000000266151666572400022002 0ustar00<svg width="13" height="21" viewBox="0 0 13 21" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="11,0.5 1,10.5 11,20.5" /> </svg> assets/uikit-themes/master-paladin/icons/pagination-previous.svg000064400000000347151666572400021236 0ustar00<svg width="12" height="9" viewBox="0 0 12 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" points="5,8.5 1,4.5 5,0.5" /> <line fill="none" stroke="#000" x1="1" y1="4.5" x2="12" y2="4.5" /> </svg> assets/uikit-themes/master-paladin/images/button-text-arrow.svg000064400000000351151666572400021005 0ustar00<svg width="16" height="11" viewBox="0 0 16 11" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" points="10,1 15,5.5 10,10" /> <line fill="none" stroke="#000" x1="0" y1="5.5" x2="15" y2="5.5" /> </svg> assets/uikit-themes/master-paladin/images/styles/light-darkblue/section-background-image.png000064400000102777151666572400026446 0ustar00�PNG IHDR���X�� IDATx^|��dg�����%K�,X�`�yBOǻ-���s�K]2��;=�����/��>���������/���?��Ϗ~���o���?������g�y��������]������k6���x{o���_�������~z>�{����k�ݷq6�1v����{o?o���8�Z�ϵ�|�m�����������1{�]��ܿ��]oM����}{k��_�����7������ֳܵ}�g�ol���|����?<�ݘ�����}s�ڭa�o���߾}{����M�3�lͻ���b{+��ͻ�vﮟ�S����T����~�����>f�`�O���ݷ1�潿=��ݳ����������.��o1���~.6ٮ�Bg`�l��7�3�ٵs���u�~����r�������>�=��3G���s����V &�%��K�l�8՚������X[���m���p���u/h��}f��e��=Sr�ف�����H<�����\���<��}��'�ov�ۻX�߽�'��_v 0���~{�ʎ��>���/E\(+� �` a��'�:o�Pv��}�c��Pv�!0X��\[6,����k,Ia=� �,Q��;&��N�������`�s�� ѷ_� w���Q�o�2���z��@ r/8$_��ٵ���]o �nc��u�.�n<s 콚�������#o^��$���#9��by�}���O_*�H�f��gt(�a�^�\4@�3`T�q��{�������K��r`���???���9ɂ��bA��2��?��-+Ev���uϙ[[�'�$�}HL �{I*F��.�*���o�a�2�x�<��a�%�D�m� �Ę�aen���q��* Q+�w�� �R��(B�[&؆8��r2І�����,��Ȼ����6$)ȑ�����[K��9��9�"5��`�r�l/Xl��7k���ؚ*[�>��Ne�w5�y/�����#�lU@O�I��z�5����a�֕�Ԭc��|xm���������`�*�2��?���`�A�8N@mB �X����9���5�%��j�/ '�w �1Ⱥ��"G�0ڽ����tP楛7�.��T�+\9I�@Su��A?�*� �=��o�G��;���[�k5f*��Uj���(���lJ�c�'����e��<�"&Z�P@�a����HW�U�M�?BzM)�1�^[S�qy5��t ݩR#f�4���ir�%���I{Wnm-Q��J����w���QWA]�>v l>�asA����k[�m5�7��6���U5���}�F�b>+�Vb���m�t\�JPs���m�+�Z�>��=l�=bA��0#b�lA,�������2�w�k"K��ׂ�U.�=�K��n�s f�HЌ��xN��v!�W.AK&��!�$���'�ؑL�]۞��������'�;�BNV�5�g/���n�f�����6%$��ֺb��B� 5/5 A�.��,\��oT����A��N�nU�-A�v��u�Pzշ�+2[|[}�=�v[��e�>�-T�@ N��nsJr��L�Y�@��E��� %}kD6 `{��!�d��\r�<�5���3e�@��'}H1 X�}ϭnm��M�#���bKNJ<bO~W/ߛ�M⍽��@P�q%�Hh��M2�H���!�I�+(��~oX`CI!����.��l7��g��W�#x���ۉ���J��}�PPA�]SfZ����c;q�@����%��K�>�;a��Գ�����l���-|�����,��Bl�c'�I����g�Z�>ԁdo̓6S�kl�B�V��l�Wb�\bck���_�.TCAE}���_IA^�b��X��6g���І�%#�\�� hzÀ�s�/�H*�ZD�yi0$�b�~��96'�2���\�cOm���d�Ƭζui� �=@�}^���!��U ����m�$������Y�Z�2�_�����SM��{����v�9@^�(1n���P�X���hw��il�=�i���l��v�z��6��H%�F�C��#�^M.����;�,�h�V��'�s�����]�ܺDC� �ҳC�JR�-�䕉�5�\J���#3ґ? ���f�%.yۘ"�o����:w�$��sKb�K��[�zZ�I��ž���X�t�`�鷠"� ��fm�ҖȮ���Yh��tC��`�<�p���^ѪT�9�5V�M"p 1w� ����S�!�$�l����[;_����6�U��~v=�K�2�o�"���i3B3`1@�Q:TX�$ֶW��M|�^^ňF��V�L�j�Qy�$�މu��m��S�ql�?�1����{2\m#�0 ����?2�2�9=�}�^=�֞��!)��"eFx9����XA} ���>�ͮ�+��u(�ٵ�yv���=ГD�:wXrT E�0���F�L��;�/A��$_}��Z�`I1#n�OzoMm��6_�M���b��۷o/��âCu(��4ׂ��T@�"�6!T�2��Q�{l��дR���b�+S��Wpn>ת��!R#N���r��/[+�_��=�K/��#/=lU|Cd�6���7{��� %�%w�-�%aI����rx��#� ��J�JV�i���p� �@m���U���iG���|�tS��p*Vp�A��"K�F�Щ���`��ݸ�k���p,ԆV�l{��PAV�4�a�Lj��s����Mz�,����e𢩽V���>���ip�K��O�H���^�ܤj+XأQ�7�o���X$�f i��ڽ�0�Z��q\x�.�%�{��H7 ��b@U��X�睶��D��T`�";�/B�-^�� �.�VSh�u�v�0��X����[��D@BuA�ޓ\���#����X�����N$�3��a[�BCgQ���l�փV�l*�Ln�O7H ���Hk7�>�tC�(M��S�l����->�|c�u�*��2�����%�}}�젾صP�4?�?���BK��f��5�V%m����~9IuJ�RG"Y�y8��`|�'�h��4�1��ݩ��8�*��>��`��X]���Y{%U���)���m�C6u���~)K"�D�@�-n�]�l��31�z���mk���/ȏ��S�Tv\jc,���hy�Q�L��Fh�Ϙ�$(j/�qD;C��c!<J/��j��A�hCsc�p�͐��b�j]u�S��dg5:�)�h�ټ����MڭU�hH�6I4�����.�� v�����N� h2��+e��LP��� ���̯�p%���>l��GMtq$���n������2��� �H5$͈B�8c0B�~��$��9l� �{�,1� �$��=���FRϴ_*�쒚,�� ̼W{m���`+�C��uk'?%��|�p���GR�"�$�P�O��#(�1=�� ����'�h^8��~ֺ$�Цf����������$H[��I!�7Q�}�!����Hh��&iס�#�K�eoI.��Cgs��Hd��h�~�U (z�z!�c��{��/º-d=<���6{`��=9_�%���+��a%fh�yb���r��Pg�y\����lV���Oq���ݗ�� @Jb�ξ�����C���.A8��٢�����-w}�{�Uﵽ9�)����� ���P2��a|E�b A�vϰꇄݛ=T �5Oh�j�q�O��Ƿ�X��=nMd��V�50HZ�jNj�!�֊�I�2��i�P���J�H�*��@3lS��ͨ��N-x�+Sr�:t�_�D]��>� &�I��/�hPH��Zn� �(C�K����Rt 轒B�i{S��$i��:Y���s�X�o]��0[A��%Q�F�a)u�N{-_ �y�;ȕ��l(ʳ'��@�������X�aW�c@��Κ�ic�m{�c�&����1w�mhl~*�M��aEȠ��Ŋ!C1���d�6�Q�s���%�=Y��� d�1+�� u�$�(�+�0�s��b�E �P`c�ퟦ%5���N(�]��Ԯqh�~� A�*���_�G���v�*[���7�u8��М]H���10a��={�}"��;�U]���:�SM��Wj@�S6�5�%����n��tno���)�W-���nF�t�YA#+C�݃x��n|��j���"�uC�m����C��Q�j+���I<F�w.5GmNz���M`�E{�I!����~����e[�d��̞�{4>�!@V��-�ō�@ �K�ծY��kk ��tO�����A;�u�Z�����1~V��4;t�����"���N�Y r(+�uy(��)�\�^*U+4�����dp�@��7f�s�����v�dsv�g?И\�Y��69vQ�]Er��1���^�?�z4����d�_���㵣Ňۓ��g�:��� ����ԩs��@T���%K���|$V[��P�W��`2S�ʶ>g$(mZ�3����icA/`�w��7N:ij�j4� �� ? ��[��ө5�iP4��!�l�-����V"�Ԋ=��쐄�$l���俲ۓ��0�}�@|C��M�eQD��F��JB�DV5RH�.&H1�'6ŁS��jlѢL�1!��GfA��w��Q��D�:�A""-�&�G�i�|��6V%���D&�v F0�C�G�K����v��,�$ZeP]G�T�E�{t��r������ �p0�Z h\{�y;x���^�nc���U���ҫؙ���}�� eA�ϦO�T"w�f��A�( ��k��&o'h��$�ҥM<$��m?���/���q$��X�� ��t�$��sG�@7hwY����WWo���"i*�����`�H���uc)�/+x&ʼj9{ �*���~�2��K> \�sH��S{[��I�AR l���R�R�V��ߝ�� �B�S��}O��(�ݫ+0c��*o�w�+�HO&AC��� �dmWf�A6�r�5x['���\��&sFr�8��ķ? 0'����p~H�8��d���:e��ӯ� *�'p�:�t>��d�GjbN�J<�0&�O�.�H��C���i��M�n%�����БL�L,�c�z}��t�d�rCӲ� ���Ef���!gTC=k!hs�,w�Aɂe���f���eD��۞|'c����q����y��̀��pDbj�b�#y+%I� �`K�j��_�(h[���Ӑ�r�?�&ƃ�X��T�Hf>@��P%���i�i�`�]��j� e�{���ӵ���f���ݤ��ډ0&���eL�A��%8���������5cٓ.�y�:]��A&��_o��t���W.����Ϸ(ٯ��.��c�+���!��[8�q��� ��/(k0X��e��<۸�!9ض��>����96��@���6�$ه�EC:]��^���0@5z�{=iJn�k�[RD�MkB�{r^�49�@`��6.{mz���`� 8�O��@`=��>�������/|G��_Aw �"��L}�C�`�j�I�X��C��[U�����k�����-s�$��&yW�]�y�����_�4�uj�6�VCk١��_Y ��>E�LE�����X�آ�'�E�ж� b�R�.����N����>me 0��7-� ��SJ�U��ƕ.����(PP�c>l%���:o�v��r�)�^gRB�g~��t?hв;���j�I���7�1f-Mpl.)%�����|:��M6FBN����N��g�$� Ыy����'�Mq��.�"�rg#j+�O�r�j�".�|�>�O�V�n��#k�zTSa�C��O������m��.h��j!���{�9��+�k��<|�}�#��:�u�^�Krɹy) `�䯺isH-���uwc=E:4m�ݧN[$n�V�<���B)싌�-�Zy%�[�b�*�(��7�)8����mG��6�5K&"���g?����(|�z�bN�#l�@^P��ڮ���.� =��; ����$Q�>�Zm\�I���|P�/kl���u�>T�U�MY���*��[�H��g�L�e�އ^����E�2r�lqN�!>���F�]��qH7��ˠ��:�۽$)�� �DX��ޮ��W�_kNJM9�z�UR��ҹG� N���u�^gc}�) �-��ױ�`�@�Vؙϰ��%(��u=�ҭS��hOک7�#*���1:�&g�3�b�J7�A�<�h�!*�6x �A� 2���-�6�nq팠G����Di"�eE�@`���s��iZl�[�Q{5��W�T�@�]�q o��}�~�_ �[�z�:�+5�v$|�~���qv#��"1�yt�����q1'�= ��?�HH�Hւ���t�T�,��_ ,͇l�� �>c�>��� .��w(gs��E�2Fh�(/SlssG����'�����{��j�c�=k4���x�Is��l#��lm�I8���vr\$2�����E����* �����<� �}=�$�Hh�ks�9�xsX��iB-�+�6�:��d'���b]V�& �k�;(D�=�����!)ʷH���_َ�x�*av[�E ד}[�s^�>s[���3���1Z|��HbJ���1�Y �u�X�&Z<n���9�T����y���Æe>�lM�Tj+5�V���a����_�wsS%�;��m^P.��ekC�O,�v=R�)F����l�u=���I��<4Q7�V�6�x�.P�N��#a���c�� ȥ6�XDƓN�ɵv����m������Rj�3G8C��>'6Զ&�}�W�omWZ�:ej��_y��$� $���9%�۸-h)uV�aS�������$�{�[�z��`�ۆ5��� ~��mw5���Iz5��i+Vw�r ������[Ӕ����v�*o���\rOe�7�@>�C�=vI�Bt{�I3���u�G�[k���H �sN��!�- �q�E���o�1��U�Ah^�ݸ�X�Z�N���H�ao�ײ�@�u��*�����d�и�<m�vU�3��=Bغt���P���O� |z{�)��0��H��@d !���K�m-BW�\��v�]��T�ٰ@��4k�E�ق3i�^d�30U^�5OW�<�{�\�;�ؚ6[��N��bsc`��I���Zг�Q�¸�5n�~��T�m��* 6{똺�_�Ϯ!��k��>S��zIT2Rܑ�j2� 6�#��6��aC2�c�|ƞ��TZY�y�-�g�pQ]�`Zu�,LF�����}=T�*���=���31�DR۴fk�dn��٬-Q{&�8�z*�Z�y_�ݳ�͡�X{�`�(I�B�.� ?P%�$�8RG�>�;�����8b�Ok��HX��o2��U���c� �uf]op��W���p�b��K�#+�L��KМ���<=-W����&��2#$SX�w�́H�Dz�A�ԎƼ�MШY��Z���j�o�3i��/��w�"U�p| I��.��U���3�ߖ��HI��H'~���#�ί>k}j��H<����M�'At�686!-h�.ǡ���.@�d�-�w=�H� RȮ¨�u�:�r?c��#�����U�Ѥ�Ԃȓ��ڂ�6I���z��p=m��[�{ؒ���p����V��K��J͇@���z��ek-���$��(�}�M;O}D���l��k��¿�mvxg B&JmL��aEY��{`�W=H�C`�Z�}��4�Z �qf,�S�@�&�k�,h����sV3��H�������w�lO J�I�Ɣ���b�Th_��6vȕ� IDAT�D���5�H�u�P�umM�`I�Ǖ\�F>���;�R{��5�_���[�����߭�qƩ3��]�URx��\'It*�V�?�W�Q�A@(g����P��D��#5��ECb��$L��B��8ak')��~�g� ��k=�g��R�XIB�ݡ$?B{8,�1���-j��6�n05��G��q6����?I9��1�����[��6�Z��C�=����bAQ���oChm��K�$�$!�,@��ޯ�@�4��U� RZ�<�a���_t�d�h����zL}�W��'����W����P������ Id����5��NɊA$�@Jt�TIk��V�L2�zl�Vpb@��.g�������u���j���F%��l?��h�-�d�@�P��#��ޟa���FklTɁZ{-j!���ne��$+8J���S�Y�F��m�+W䖌t���Y��IR�+P����#qth0.����_��Ř@Rn����<V�p5?���,��$��b�{&�}�z��8Wd/ ���%�>?_O7�Z���rk �d�����5� D2D�D�c������&a�l�l� v�+h�)h�{սuz �a`�Zڕ~���v�kS�8�?�����QL�6;�[�IR�ˆ�����c���'�2����d��Z�1U���۶ߺ�X��%���2nk����?P�WnQ��� [m�~:�b�-��vRv� 18 �B�B��)$�Ze�p�u���ceK��-���v���$4p g��˾j����~�����kct]- �[��vm\Z�u���Q��t$�ng��}�b%����_E� .L�m�)<V�3����@}6$�� �iA�Z�^!��A�tfQ�$P�8������iT�8�L�R�1*C��<ګu����Ƿ���]RI�4qG@F�26�}�Ё��[�@u���R<�7Q���� �9�*�(�ٚ/��`([p#s��5��N���p4?��/�\��J0`~R��(��`#��IJ���I���"og������_u0��N�l�$�6���h��H�t(IJ�M�����%@���m-�8�v����г�_{qlOt���(�NƭV*sGn��@G�J��N��8~�Jb��s�ۍ��C�"�����"�Fl��O�oM�t�#I�>��������Ev�o6t����ƶ�R:e��^%��,���NK���!����rd�}���܌��o=!@�Y�#���F�C�uKx��1$�#��IB��1PYšm'z����9a�{�J-�����5�(qn�u�[�F�9���3*���W���'�^/�������~t�:�Z��uLH�lnI-nz��%״���ʌ�{��hn ������T&i�@dT��sA�q�1�f(�A�u���S7.�"����pe`k���c��L���W��E©1� l�CBg/$M���`�erI�m�lc�6)0m���7;%hS��|�^[��p��kԠ�ůX_��ao | �\�ݽb����j��mTm��_w�M=0Xu��Q�k���̤��}Թ���@�vjHkҕ�|��I�B[rnl_���z�;m��u rN�6r����ЎD��3I���R��l��1�!xh��(�i��@�h[I����%�[�����>z(;;�w��6�����|;pk��:���z�Ob���}�Ba y9��A�l��!车�; k�F!5=})�i��" �GI2��D�Ă��[�Op@X5 �lQ��I<�d���RC�\��/(���]�;Pc�+�̥ !��$�dpmۯ�j/�#G��#0`�_��x��Hh��X�<���%��+�$�)Xfa��p�-�ʃl�� y�1�dQ�CK��$Z���w���QY8��/j�z�L:G���kX3MJ>��� �@4�YE�-�7��+�(�+����r�I:���ݺ�����J }`i�چ����dg��~W�n�ء��� ���z �p�}m�tu��î{�uwh�$6[���w�ǀ�J��B�>b��t8���|h��k�a��v�r�6��i[5$���B�����썱�أ��Yp�`8��]*p��I ck� ��osIY�Cz��hp�8�C����i-���#�=]!�+�G����F��ڥI�9%�{�p"f��^+���ژ�ĂھVپr�+u����i� s__��}����g�.�0�UtV�B�p�,)����6M�Y�o�K �c��.�Qm6�8�r7��I�~ߚtN�J𭫲�����@ ��b;���"�F�su+Iۇ"��_7�bS�Zݸ1t��^�$20P7j�Hd�xw�=<k��#��E@�J�C]���� ����%�m�IX'��ּ�h�6�6N����W��7])��A[�M�ĄH�S}�w]�tD&iH`m@բ���F��u�.�,�_A�)"(H7@����6l���@o_��g?��z��Z7��L#�ʚ�;n߳��w@�د据$;����J�<� (�aiBu�&l��.\�U��(�C�:��PV�c����OP��k�eV��&:�����a칵jh��>��z�6/F�l�q���_�o,V��\M��_bhE����k�=�?͌J���*G�}K��M����a� ĝ$ڽ�)��{DM8�=a2Q+[c���a�FͷހDjNm7�^}t���K��a�h�Ar�(�1t`��k��Ns"���3���Y���jA�1o Nɥ�@ZH�j�� li����_.�I9�mk[��S�����m0�N��- I,6��� |�3~�O�a60��@gﳑPQ9�4����bVc���sY����o��:IW�Z(#c�v��E6�XX��2�E�>��Y�#f��@� $���:���Ŗ���A���6�ʙ���Zܽ藁�N��L���& ng$��c�X�w��v�6�ڏ�� ���IW B���-E�(�(��|�]Pؼ�h��j �kk��H���Z�N�m<,IN���7��9I��] AI��I�� �h|Ƅ4�E�l<�u*c�Ѐu�bP�@�J���J�-��'�4�yȆ�BW���K�{��)p�~��((NՎl�w6l� ��Ii������|!��/����rP~{"�Ȃ�D����'�[cZg�w�u�O�,#Q%8j[�(��=�.H�u���X��s?�箭di������"Qg�3u���5�L ��`:�Z�� Wt�$��a:.�� ��� �}� ���]��k�����n�&�`��6G��a �i����7I�qH��"{�8t��~L%�$��X��|��L�JI�F���1�`+c�>ݿ]�0���=����Z�Vkq6���9���3�����E�'CexY���3--1��b��Դ��ܿ�����bk�[+c@s��5��oArbI�=�[�����9��&E��,(h6���oʷ��[��KN���vVGh�����]�W��wuƑ UA�;L-_m^H�� ���,��UHT�M� |�l�����N�nN��8M �MZ�Ƥ?+!+�cYD�`��6�5uG�U[�^���")ᰠ�ҁ� sty�lGw�q�`˲x�� .�|���T��آM���>����f�3{� +V�+@��)ԙ���#��J2�'6�KiB�֧CA}Jgm���{����9g�kkPӴW���i�FAhI�n ��m�r0��$����!I�;�i��ȁ]�_2h�,�m~�H�S�A�ٳx��چ�*# J2P�W�Fi�#�0���lk�s1�*F����j���w¸��jm���[� �}�|���`�&��W2��z_1eݘB�Kl]�R<��|PV@ �/�9�J�9�:V��+��ɺ%��B�,��4�^ۥ��z[�o�9��^0��i��k�Y��(�6��������O��5�Nf;� y�P=N�-<iM�؏8�d��I�D������B3�ղjFs���"�8A�s:�/�T�a�M�7c�F���:AS�IoY���R�S����:u�Aa��}^ ��V�ɜ�[�zc���4 �<��{��6i�Mu���2�omL�BZӣ1P���{ ������J���F9��ٸe�>���u[7��q�vxP?�eT}z���9c�ŵ��p�ڵ�߆����鹺��u�j����ꫬ������7&mW�^O;l���o|��:J;Z�[��l�c�&��j�\"�gs�c�4H�o Z���f=�>|�6:��ٴ����~ �O�H>�El�@X������+�bs��l�h����ڏ/�r�,H��ܠ��m�s�"���nK��:��wHVe�����m�$�Px�������Z�7N%E��\�a�:��g����Ǥ��Jq��1�5 V2q�K~:&�zH��k%y��4"�߃��b�X��リ�IU��.�I�C�f�7 [�(�i�m�����PsF)}�؞\m2u�2�u� 5Z7���gǦ7�����Lp;P�PYrBd��=o��L�@�Ha&A�5p���/��<�G�`���P[ �v�z/i�:��5XF�bR�_�%��Ae_A��ͣ�.)1�C�@}ko�DUHN6j]�)IU]0�!�7�s��[�@��m~�H��Z�v��w�h�4r�P��\��q -)�2�����Wq��M�_���xj�K��o룽�ͳ���^�߉њ&q6�G�&���mN�]�~h��� Br�����S ��o�W� l���0iU�o]l�˭ik���G@�6s���l�ـ+@ؽ���|45�Z�2Nۦ$إ��q���48�T�`��[O�֕`���7V�L�,�Q�W�Ts��b�,X��Awe��ک�T٢j7R� @+Ι�]�q��$bF!�$_��7{��o��l+ڷ[�c2u��F����䜸�mń����L�+=Qq�6%Z0�F�R���7��-"(��7���N�&a�����t��TV�W�"/+0�N E���n��j�U2�Mk,4)�b��hI�Mق�ij�:X\� ��m-��c�-�%�&�#6ԩ[�J�{&p�Y@����$�<U-���aHU� ���+����}�t������>�bd�$���b����[��6Vkt�kZ��:�I����t��i�� r��Pt��ڶ+h�����.��5<�W�I6��n�%��u���FnwG���?�|�_�R=1�3���b�|���\��{d�d�h�U���b�a�)�Ov{�R ��*6Z�l�Gby�I���i�^�dN�ru�$I�i��C��:Le#$t��}�4 \h�W�^�뼔mc�ah�!�y :@��%�سĸO$@i]�����'�l&A$�A�d�e��ֽ���#�ձ��s� C��}I#��,�'����r_���I���vf�ګ�SU�S��|} �=��۷o�p���契:�b�E�n�S��HWpK �!�l=2>�2�ƃ��k�UK�|�i�}��{�,L!A6&��=�3ؠ%���l�\����9�7�����9u�����ެW���Sj��H2���/#S{���rrG���M�۸����b�?Y���y� ��BPO�p� �� ��(9�WE���wo�7f�+����|���"��0�b�c�.{O�K���hBՠ��Z��/�o���jk�2��ԡ���z(Y��H)�d#jMŏ[�#5p�w�#� z=�V�s�$0�*��_��]��_@N�o>�`k�d�i�` C�b/U�wv}�xu� ��-Xfx�@n��vhڦv=��A���6N� ��уGݒ���:VKH5��e�CW�C�n ~�I��s6��Y`,+y�Ǻ7�d�|�UrA��S�ye~�gC��d��x��~MLh-��[�=6.�g~��q��Vv��0��l��A�g#=W�,�%7B��-��ݦ~S�t��w�~V�pF'��x hؠ��m�X�sA�֩.����G�����>����j�H�"�k p�O[��Z�Wm�=�Z�b��m, 4��W�:e'~&I�c �.�a*���@�l-#���[5S�$���=��Z�� �`�D{}�#�2V1 ��Fۍ�"�gDq�I�،%(*k��ZM���8l�>�)ѫ9!��f�,��&�����кgOΐ�e.�rP���7}̧A��o|�K 졥LcKhɼ��7��q�@��{�GƸ�@��8�J�o��K�'O.*��3����}�G~c�����%�H\1IMy}}��M6(m㛼-2��sJD�1�q7�C!�!��` >O#20�i+T0A�a �X"0X�/C�&����V�����ֲ���z$���rvﳳ�*��No�|�eO D�B��S;J������m�e��EQ���A[� %�Ȳ�Z��h�/6)�Q:|JE���?�6�7۶aZ��6�E2^� ���E�11 ��k�I20���Q5��c����쾭C�]����6P,{m���eݘz߂_1*� ��8=yw���p�e�� �nl�j�s��;@��(������ƽ��m�'��{�BLI,���~$�Hfum3G2�����_�Q����~�����F:���-�<.AC�8u���1�}�K`��;�V�C^����j��ct N��g�(�����C+��jb���T{C~")�����*mM�eI��<�ʊmN`0���ߺ��K2H�Z�37!��ْ-�N���ܚ���رLO�#֩Z7�6v/%�5t�$'�&y�z� �����PTݿ'[Ǔ.�IfQ{�c�����g�������&(��N'l�*A�&Zُ�ig�T I6�!j3C�f�%��Cl����D�r������`x�u[�:��܍�^}�!�%�H���R��e� �&U5u�{?��ٓ��Is�ߟ?����B��,�1.¶#Q��th%��N��$�-�tlee ��"6��� A�^��j���K���V�{�QB �:�Z%t�#S��1��m��L�nR�Km�����F$7���w_"�TJYwc:/276To,%lU@�ek ��u�J�9��)%���Q��X�-��w�х�E���vW�$�i�b�ш�W�XZ�3}� ��'ҤG;DH���7�x�i�. hi�T� V�hC+B�-H�ԐWb�)�(\����$�;���q�{IN��j6��|�9����:w��⫪8���'9�� �%���c{l� ��~o����bA���*���(��0�߁�~�l�@��0 ��3�x�#�y ��vm�>�(�qZ"���ZtV�i�#@P,ȑ�X�{mQ��J8�G[�����N�;��L��XTCK�%��6�o�i�X�Cb�'��,��.����*'%�>��C2�-iLPİ�`zD�;t!'�V20#��I�3��v�I�IH�K�t#ռm����<�%����S���ak���^� �D�I �nl��̱����cii^�0�OmF�c�2�d�X�T���>��Ǯ+����&��$�=a�]�A�=�Q�c�Ԛ�\/ۋa�z(�����d��=���y���݅-�w��s/��.Ɩj ����`e`]%s 6�-�� ��K����l� ���v�=wе#���l���d���R�mb�MlA �%#�{�]ǭM�� �M�NC2[��z�X��v�&������+#��U(����(��������p� $U����`@ "H���AmA�<�hE��G�C�:c�i @J��%�S���$�k{JX����2W�b9{����l��i*H]���6�/���u�},9�6oG�!$D��$ �����Fb�us�u�c�jͣͯ�obS�Pjw��� IDAT��Ng���+���I��\�6,�J_�B��A�o;4EhA��j�1��t���S���7��v%�$0����oM��n��h��Àd{"/+U؆s�L0��l,��M�뒥��N�;��6��~�X_�u�rЫ�K��B�{!��`�ګ�0%�+���a>�}�^����[I�7��H|��?=ZIP��PC 9��N� 3bO�h�q�Ff `j�P�mw�<��ޮܻ� �w=}݄�t�D��(�_l�۲ߡ].H�Q��� ��:~�m�XC�J��.谛dD{�� ���+���ٺb>yW`7v��z��|�?c�w����s��Q����?�\�ƒ���������Bژ6�A���3mEy9�!ZT�r:C����/=�y�P����I�S��Y]]��E>H���++�Y�-�P��`��A�և]���\$6����k��w�:c{�4e�]c��:{�%���eA�2�pi�^�b������ R%d��oGQ�^��� �R/��� m �ph)I ���EV� f����R2�0���s�()((�~�p%b���x��H��쉾�!�qʾ�_�ڣz��SO�%���X ��t������)���y���~o݈�$m%�FiVz=$���v�a >*�I,1 $�� �G@Y����4����ntX�ߵ"k|�U�#Ɂ%�Bɦ��-�+mZ�1@��biB�:�ӣ��)c�n���x-]G�:�s0���u���t(3�S��]��AA����g�g?C�]�0��k�5~ұ�k>@[p�l�B�ߘN���s�L�b�Z�"r�>_�ꉥzR��}aP�]tv)y��H��{ �mf?� f��Elt�x�W��k�b;aCbl���ीjwn���2��(ړ��l�fHL�A���An�О6���F���&��&�����~� "�%����V����l�^@ 1f���n��1���o$��#i*^%�F�}?_�%IPBL�-2V�ؐ�F� PI��@���c.[�P`k�&f���ښ��`�]#H�8 \�����X�Hx�T\!3-����$��2 �N���.��G�v1����0d �C��L�Ƙ�5$� ��^�V%��Ϧ[�'�դ�n|T�ծ�lHŭ����i≕�p��7va�@��_����#?d���M���9R\���3䂦(\��Q��"�-�NIx�����dk�[�窬����h��Ǝ����FQt�w^!����������h��= `�5l�"���+�_��_Z��pZ���Z��e*I�~��,����]*�ʀJ��M��� �=�$���4�Afr�hJ����i<&!Od/�պx�����87�& �d��<��H��}��k�(���>�n��F N*@���`��MCA�(0���;��Od�����okٽ�����$b;���.&��j�v"�Z��/N�, ���M��3`�q1!�>�>5Hs�L�����JmD�T��%4ڂ�@���!������m�'y�&C�ȍ�� N�W_Ա~�6��I� ̲G�f��r-`�V{kte������ q1�$��j �k#�,�>�HB�����f�M��A�n���k,��m=T������83���=�s%�����s�N�w�:!��Eт���:b{�蹄��A�����t�c�m�� 9�X�$8}���67��fLZ�̈́�3 7)��6��P{v�x#��X� Pv�L"�%�~����{���ۛ��g� O�'@����[�de������8mcCv��M$5{�eH�ݿ����S�o��_Z�.�:�F�R�$d�Ht�XЯI BE��I$�� j��<�\��e�v�0�[3�m��|�ңO�B0R�(݂�UOB@!�7�&Je �!��=i�9� a�jxIĖ8�&�%y��ojO�!�ծ��A�W<�}���w�y�[a��-,c������Ê���I�-�>���D�t:M9Gl��Юo{R�D0\h����ƭ־�Cp�uЙ{�tp>�=(�ɓ�A"���@ؤ�3�� �ޫ��a{�u G�m��j�������l�ۣW��d�YjMS�'�$���`��$8�Tjb��-��1�x�oHzq��|�肏�{j��eE`�z����)�b���is%D�2*p �L/��-�E����������}p��9ɧ�F핉�U���=��eO��h�h�+��aOAT[�(5��X����RS�I k m���PZ�`^��8B���ŗ��3������r�1����G��qsl�����(U'e���d���[�;�:� �"���B�=� ���-~u]8����Ԏ�=n\T찭]�J�ڢO�#]L��H�|�����$GH�{�T���^��=Ҫ������f Zm[h\�i}�]��s?o=�Qͷ15�U�]S��a�$�z�,)�]�D����a�]���_�y��x2Z����VP̀Ec�@�9^�N��18�(�6P�(N;j����k0�~5����M��E���`�>&�K�P��=�(��) 8��OW��.l]���Y;m�xV�G �%�m�Z�� ��h�گ_�f���j��!��B{kh� �C�,��H�K��.���9!z��+��T-�.c��;0��Dv�'�L�@r����Ĺ�i��=�k�lo�W�p��^����HR�g0�Z��C�L���W�cג��qݭ!$��^ ���_�ƙP���j,�����������jKqæMɽ�(s��T �?E���nԥ�hB�"��hPD-��UWtԮK��#C$q%�^���b�z@�)�u��AHW��Yh�������d�t��l� �Y�@��Apa�GF�@ 1z��51t��d��䔌��>b@r��M��>6e5s&Lb�?�i!�� e�in;��a-�{���q���1���- ��X����Jd�i��2K��oHTE�9�ږ���$���b��d�^�T���@�I>�(9Rpa�2Q�h��pL�fn���,b�t,;4�,�پ���K쳶�{C}IƆmؐ4-����{��2[�����S]��� ���z��в��R� % =X %�d���㺩��}s6���}Ԡ�<0:Fc3<�D"���:�#�$�r|���4�+>7��n�P6���4d-�o2�3����~���>�ӂ� �{fOO� 6�m��m�6&�F]�>X(�%������}���XRS������c��|�HW싧ݳ5�ڼ*{(��@��! Y�K�O����m�N��P��̛C�X�{�Br1�$�cuA����_��� ��&p%�6b��v�,��î'��>��=���dU�p ��Dv�9�{uw?p�O���ZKl}��>�z@���T�U�l|oM�O��T�o1��\���}:NV3��hV�g�^��o�C�1��d[�Z��hk{� �C�r���Ƃ�B"1�����<j��f�UA�s(W �FLs��b�w� I�Ep���}�I����T&%ߑ��>nOO�l_ۃﴰ�^[��/�1$@ �&���GUX_���� ��I����w��>ұ�������<E7����gW��=�h��=�Vϸg��j���2���$�`�z���]� X WC��7�6�>�6��بM~���ۿy��}�� H*(�[cA�~����K69�"�ي}[;t|>�^�s��i��Wm��:ټ@[b�A ڢ��*���Z�H�][}�B��l-��sm>�0�אsp�FS{@�RøX��������GN@���O���s6��>���!X�ܜ��c���u���S�0��g�3�� 2�Į��>s���_�ڜ��cM`&I�z�lb-T�xj���|�N�݇�Q6.�Ҥ��}�eE��I-H9xAߕUf�-H�@��n�Cf�PR舘[�<���y@��Q�v�'�+�� 1fDPi� �ۦ�1�(���N�� �����r�'��C5 F'I$&Fr�k�b�M�2VAe?��~�:{��#A=S�}�@�`T�kjKq"����9��n*C-9�NA�M�*(���l�?ā�� ��Z��'������� � :ВMr���~ njc~�Q��y�g� ��� �yu�Hʭ��ܐ�C%K�����k�2�e��iILA�v_���a�b����PR9w����_�]��`������(`��mvغ�7�+1������>-�:h�m2��,A�mZ���fk�N��r�)e>$ݫ��H�v|\GG;g��ݵ���T��ºrTq)fp ���jA� ���ɲ��}�����d��a_5c�.P�����+�S $p��S��_eV����|%��{k�օe�>�H�lkm툭+���XPXwd�� �Җ��6՞�~�4�r��e$��.�����I��D��j�ݏM8�X���s<D�H�k\��:&P�7�����e+� q5��#�0�?�Č�Nc��.� m7K-���ZmZ��@��tۮ������ObX�N$]U�������.?�E���ۺg;�Z�}%H��B����L�b�߂�5A��!�-zv ��j�S������B�6�zEkY�!�{���0Ʈ[@�ﳍG`0'�H��mC��&�+����i�N!�W��쾽���n�_��nP"HV�-'�e�JVH�/�U�#s*��8�v&��;rL�b�́�t�����$�}y+�!���$`ݢv� ��k1���^=��)�����W��}V&P�1䂡ϡ��fsc<`�ęЬ�p�A�B=�Ł�}��^��"'��js�*�R��]��6ڷ��YG����z}�ClE��n�dL�*�c|�h������H|(m��u5*��aE�WO"�NK�V���3��O/�%�Q�����jm�a�m� ���u�(Y#@h,`���H�����W�t�##� V����p���Z0��q��ق�\h��Z�2��w~?���T;Y���>v����g���%oc��ث�W����vuak��1ؚfۧHG/"˶ɢ��F1v7���u� 5K1� @0r K0��B��OMQvc�>ƈ��%��.���I�����h��ȕv�$ �a I=[�JaZ]��]�E.q(v�)"KH,2V�������1H|��6��l�>�׆ի��# t�_P�Y%pe7uAJV���N�L6n��s���>:�"A.�n�CH���Kh%�m�4�r۽hZB��ڶ�j�ա!�hz]���A,h�$��(]M�-$�}`��� ��˸������9����4:��D{�T�[��k��䮜sF��h+�|{l�ߊm�W��%��:Ҟ�l�p�V�w���@Y�~/�4��f�jN��1���9ɽ�e�{��I�^ɸ�igR�]�<�Bk������q��i˲�$�#g$+侇w��>�sI���Q{.����Z�6*8vUg�� ]6q@�~�N�$ fiS���64�RAP��l�HJgc�T ��uwө���AD��B����}�KX�d���֧/:�D��b���H*�����cM6�^��I��o�p�1�!I'IC.m^�#��UhK�b�ͣ�"M؟��M�D7K"~�О�q٤�,$U��67F���� �%����p�S�~ϛM�z��l��| AlspŁF��+�%����π�bx����e]�v`,h�n���)��mh�o�+�`��9��o��!�!����]�=A��%�=��5ѣ��� {p�`�蜶W����,�I�v���u�u��E#{��1�>~��7����-ۧ�Zd���Q�B�tØ�#��E�qc@���aKv�Nv��@�ڭ=��[3��}��u�9)d"�N�B�K��s� �Ȣ6=mlz�_�؋b�c7��s�4C�@��)�Q�I�JcaG�T�$尓�a獭��^�����}��� �J"In�C�1ܷq�Mr��3��GcH[v�-$��W�+��s��Y�w-��d@``���3�|�o��BO�@ŏ��-~��ش͊=6a�Q&�qP��] C��{��(��!�s٢�~ߣ�Dk�㑅{U��D4��T�M5:���Ni ��I�2m���]��B�x�%��MW�Tꩱi1�e���c'�|�I}����q%���F1F[�p �eŦ}�sߵ��~$�l�� BWNM��ӎ�&���.�c@�c�U�l|�t��:BgC K�]Cra��I��&}�|�'۲�-���supk2`Q�07���V ���1߮��}N��y�'Yn�V��\$t���C���l�F�5$�9ɡ�ѺX ���[�o�9�!��;0ڸ�Y�K-C.����-t���k��$�`��-� '�ChAǡ U��H�e$��&�� h���|��y)s�P��lU��x��[�B�S��2�p�,I6��°lۄk�]� ��y��ư�έ(��=[��&9d���w �R'S!mM���G�3�,���j�v�p�y�B�����$T������F[��ź�&�Т>��!�� )|���8��H�"��&t=`��� M%��+*������V�skV��j�j�slbv�FP�&�X� J�;��mc�"��k��z�ؾ�`YQ�\��3;ۓ�D�m��,�k{��փ�]�A`^̳��h-�)��V���!�jp{$�I@E�oq���zQ�[@�_�� [H��K*��M���h��EIC�(�%�\����ܶ������&�~5[����X@�.���}�^��D-���l��LP8` ၀�H����^v���l��G�M'Q�l��yՖ=�"ɳ��"��m�Hj�)6�X��z�цvt�_���� ڢ�2L@T�)�v$��8L�C�ͻM�v/P9�~��@�$G���bqד] ��2S2�w�L�b]+5P��, !�� �/`�lr�yc`����P��RT;(�d:a�IL�E�D�YA�_������=��~�?����k�'��z�H�\�������'e��=N:$����"�EPET���<�YA pw}u�M �R�dC� y�:��ч1��/��g:������s���.����d��v�J;o��Qy �$�����˫� ,�1�z�����}S�/��hǺm���{�nɇ�Hu`��Ӽ�f@H��4_{���w]��O@j�ؿr�m�JBF�F��tc��9� HZKlM�f�(i$쮇`b !���l?kn��E@��Fs&6VL �&;:en[}��m��3�Q��Nb�I����S����������T|te=_�sW��C�J�bM��$��{�V�A��};OA����Be�K2�YЂ�-��mXx;>��2�`�:$�X�U[K⢵$)� ��ً�����;����`�&��Sn�jѪM ?�! gc����'����dTF߸�8����6�0;�vQ�X����褵C t%��$�G����Ū4o⾞� ��ETr�[�w�wP�]�J�9�>թ�k V�@:��#Ҫ}�R����[�Sg,Eb�0���mj�>�t�7�!de��\M�#h=��\ Wz�+z%3�0|n��ǿrvXL�г�e�ր��Q��PT� ܽך�(�b�. ��q�����Iڍ�!)��ٟ6��i;�4)�Қ���k���D�V3@�!�E �ʮv|��v��{e ƥ�I9 ���B��$�}b&rf�6x� ��:R�cK��Qу+k�lG�ً�G�`�v��Ip� �~k�,�Hr�a�n���+>�:���'�)y �:��#�{�d�K�)̻{�~�Z!����t��Ga�Bj4p9|�nA)� 3y�v"��6-uo.�L"5�u=ڕ���(� IDATNQ kH1G��&�t}T:�'PT�Ht�i� W�C",P����G���(&BM"�K�۩:W����EY�U��*ɿ���61�۳,@f��o��8��$�|ȩ�:���?�Z���n�J�.9%ؠ����6{d�6݇���@������*kJ�e7A�h��a�o�A+Cɞs�^���=4UKN2�~k3����X8ܢ�A�:��d������S�4$ ;�:Rk������"mʎn���c�_�$_�N��=�&�"��;�.���~��ϣ&EDG?���-|��&��m�T�Pʵ�ְɽ��*1�m�r���`��tj�C(N9�=�ǒ���L`,�R�Z7K����TR��+q=fcOj���8�������ڰ@�kK�@ǧ�e;v��֢�����AM2�x�D7M�c������S����Sෝ�=k�>�B&7f6&�T�s�"bP6�[���Cnc&�Ͱ@�m��#Ɛ0twQp﹗�/������>E}�H��5��F��E�U���!8Z����`�MKC}��d٘�]«Q܇�_��inH�&Q�K���|�Y�V9�����*��(ք�666�H��^�7~�f�ґ����c�7Vg��qwAS���&W4 �)t���B�0վ���yj ����Q����N��h- ,f�7�P>�.�c��'�BQ�uKdc��CEK5;�[�M�����F��(F$ �1����'2�,��bǍ�K]��]Tؼ Z���V jk�wq����u�����8�o ���v����+_P���Vq\AGzm��^'�a�:�ơ`���}���[�ҭ�;K�X������ٰl���@�5��،�4�a�0�2I@J]P�8�![���$}����:[߱ۓ�����\U.��i�l�W�oeC�$�*s�$|��CR>5j�r�cJ�t��5�%�$�.���J��� ,-��g��1L;9�e�P딐���l?�kc�s��$uM[�tpQ�c���86��9_�bF6ؤfm%��otqm���^��uw���{��j����V��Ż� ;ؚ�X$��1��)�� r�г����r��4a��Sh4��bi��9� `,HPѢ��-'5t��i�� \� �T�Zѭ���� ���1� �������a%gG����K�t�qo�o lz���zl�B��@U>�"�X�Q[z6b���'n��*9ԟ�@Bq�#�V۶{Y��@�6Qʚ�&P��Z����.P6�[&�^�d�ų=�^����6D�AxȾkI2�s�eH ���N5� �D �=!�I�+�$����c ����R�֪��?!�nw�-{��>��W�a rPPX#� �1�;�C�2��'I6��E�s1��Ps��6/��Sl�&j��ϖ�ò��kB��=��l-����&ng�C�dIC�C|ƾ�� hr�'̂� ��l����:83���E1ZE��̡�g��Zo�ޚkcIlR�c%!����4(� 4��� ��#��u;`EzI@�ɳ6\�tk���ڗ��A�o��dn���Z�a���<M�]T����^� m<�!��U�"�(�F��� �Zd��лE���4z�5��ЖPB�Y�$�܂��[��@�z�'���F-~����֤}K����*��2�����Ҷ� 8��f' `ؠ ��_�����fjb�&d� l�8��z��1�hk��:h�`X�cQ��d�^���F!4l��(�\Y��A�Y� �Z��G�g�Y�^�%i�0=�1�����:>j�ֵ_kQ�Uϓ.�*�6@�%7�n�AgFR` �{�O�ӷ(���ilQ������P߳�>�n���Q����7G�SӉ!�+`��+�4 ����-��~][v~ ���ur�h݃�[�YȆ-��`�b��(�I�ط)��a6��U�J����9�cTr(�yA�A�ihiL�����-����7ءx���@Ck�=Y&!+/[�J�[���ֶ� ��b�8P탙���0�OLH@{�#KdX����Ϙ�~�N�Yi��cI�J�I����n`z��C?6����rc�ʗ��eQ��x��|�����:T�2��M�JA� �0�����ʰ��!!��JT�|�V"c?���Y���X-b%���Q��&d(1*/$�ޫ_HF��^i�����H\�b�}7_%9�X��u�˿� ��SW�L�b,v��X�?�}����Ad~ۄ]�I�6*�$$ E�����ȶii�>\�!4�Z /�J�ͥ�αN�!���G�9�w���B ��{�(��l�`����˂�g2������ut��DB�2��W-��w?b@# K� ZK�* �l�k�̎����e)~3�$�G�i=Cؓ��U\���|��2I� ��P�S=�g$�o���}F�X��ύ�&�sm;^=C�6������Z�$U�F����嶊�!�!&К��������B�փE�>n��**qٶ�y͕@���W;��ޖ;��47YӖ8���;쀳�'��6u�O�4�*�e_�"]�-Hh�m���e���W����1�R�t�*De0�VL7á���6�=�A8E`��vA���Up`�$�z&�s�N�5ں���3���J�=o�du��&�^� ~��k���!q�讹�{�Bc�J&��ώa��-�[H|�օa0���H�b��[�g����� i�[� <���j2l0�<=O7�1�c�.,�(������v��V�w)�y��V���ߵ9#&�Z$����ɴ�*{e"�G��PQ��e;�C����L��m;u��e}A�� <�m�-W�+�a]�C@SX��:ZG�j��}n�;I'��~ub�I.(��k���gK��%�d��킛a�]m�y�|� �Z1��+%kO �j@��Or�E bmۤ����dT��\B�sR�{%Qe��z�e��˞�֭�����~o}���QՊ� \�G*T C�>9����&���n�9av\[(�)��V�֮տ����n{�8�O `�r�E��{ŀؗ���X|�h�~q)SF����(~�ؤEs��o��k�n��%�_ƅ�-��@��j!6=,p�@�"��@qN�����n�� ��k�7y��W' �xjyc�ۨւzj�6�%?��z'����\�yd��I|����7$�8p���� Yd�HrP2)���E�b@g,MڪMu�^���Q���Ȍ��H�I"�]l�lhѣp�s�!R���5>td<*NP�0L���^���� vȻ��9������Rc�qm�8�3��7�h� ��� j *y�Lڭ����o���K�w���u�^���o����1��0��f��s�2kk������\y��'�l�!���M��]�ߌ-2�>?U6j�|B��s�p$��S�n�o�L�\�-�������כ|l�����[P�{h ZK��d���2��%�@���E2�x@�@�/t+�f%��jϘ�zl�Q� ����ϒ�D�vqď{�j8�<衱dʌ'A8~��Kf���{� ��1����� T�Q�i�����al�AB���!H�:iFs2�}��d�H .h�$ޮQ�������l��ib-H�� �u�\Ag�N�`�Ѹv�4X��T��#h7vk���HV���>���.�]��X� �m[J��� �n���&a�2fN�I �Z�(b�����o6Dl,��:��]�Ba�IڹլP���]�G1��Kh�����"�5���Z R�)��V��$�����s"x؋���%N��ө�8�����g؟�2o��+����p�5#S�w�����<��-�G�>���XA�� �2��������� �Mܧ+����[-YMyP%��o���C��AH[J�K���4ఎ�!�ft���2�V�egD���,�Ih#H<��ϱ$ԫ��\X�LC:�LW�ɷSpRg�9Y����?Vnc�J^��:B�T.J(�D%���Z�:dyAL�S������ͭE�&��0�36�}.q{�tF�t�0��ئ Ro�-�u)�ʼn��u�u����d��0 $$�~u�~�Hݫ������ �.]��H���Ԟ�f��7�!��s�nݘ0@Z{�[��vͻ/� H�w�J�o�����,�&, ���N�i���� c����M��6��(�R�PE�^�߭oݳu��Y,��6(p6`���ܠֺe�Yt�@ݵ��Qsioc�K�pE���T&���7��,��y%�ѰD�k��&���Dd���]c�Sh�RW��^v��Gt6�e�$�ڵ|���uK&����o�<��3U�O��!�Z�Z#-YHJ�ѦN돂�~�����K���g�{�t�I�mZmcz�d�n���_�8\�(�ܑB�>I�Z����o1���8A����7v������W!��E6��2ER�얏U�H � $úaԩ{����{�D %y1�kV=n�q��9�~�n%jSPl���D��`M��*�ߵ5Q4�z��*Q�n��MB��%HF��бUI�u怜k�U�S�k�X��6 �0��$^�PO�q`eр��H��c� �P��{��*%8�_��X8���ǫw�ӿ��=�}ۯ�VG��6 X�>=P@J8 K��_��$�� �SnP��β �6bc��*��g�1��yb��)x�Ra�]S�̼�oW�Zsq�u91��]{q�8��h���5�E�ex�u��@��P{��c�Z&h{%oJ�I�n'; ��]�����@?��e}�g�]���}���&��W�Z#l�����N�O��E���[�i��&�M�Z�ږ��`P���;�Mm��g� �(cj��^��PXV���ݧ�fm����2v��t]J'1�lB�ߟ�<��\�D��@ ���b�� ��V"�h�v�vkv�bX�V"7��'0p`M��c�*T�Y�P���ನ��U�j�F3��o��S�����˟����\����=�t,s�������P�.v�Y8� �:p�v�J�� 1+��ڇ^=/v�w�ʰ�jJ����U܄�Q��wu�(�b7d750ٺ��MNAɮ���ӳ:<6���y�y�Ş�x�l���~t?-L�(���gð���nȼ���ﯱ�r9�?Ck8u���W�.��P�]���%�}ǒ#9ּ��g�D�i�K�����ڽţ�����=4v�-aK&OAx5���� ����/}|�����vdk��h�.�&-�E1y�D��ZPڂU�)耴ࢢT�E2��Y=�V)ť&,�cNUJ ͷ��[l�`�CkU7 H�?(2[����M� L�V����Q��Pw�`��7BM���Z�ޚ;K��_]�68�h��>�n|�����7�'G� �Xܵ��E0���+�;��5�`�$��T�ߝsc���ޗ�-d����_0�� ��,�ؔ �@�+ioF-���D�Պ�� K$��n�56^�d������O3�k�[�W.n��uUڱk��C ��B������OA�9��-^[��9� ��[�M�b��vu�C�-��b�r���,��~�uo�x��sk�24��vP��;�`g5�[z�S��5`y[��X:;�K �������ü̷��]79�� �x,���������mX��mҰ��T���v��w����I'�ш]P� ���Ln)GYu� f������"I�8�r�V,c�p�UJ[���믱*����ݿ�15���iZ&{?��kR�vY�L@�� �iğ�l<��5�بZ��j�|�m����,;�}���{k��1k��8z㢹�d�K�I�@!��x�X^�(rݘׯ��b����}W�-�h%_@�0I'^6����&`Y������삲a�GI���[Կ�E��#>�]�w6�,*��9�G�%�Z�L[��nb�F[S�%˯o�����z˼{}�Ug����P���~?o�ݡ7g�CL���� ���<>���{����}�{5�M�l�c�� ��]0���R��,�X`�{Q ��lJ Pɧ��RR+۸_�L~�2x=3��+X�Ď�tT�k'yj�ٱ��m�}�z���xK���P�Jt�#7��Qr��svS��Pͩց�ok�8�MIֵ�,�M��k[�y;�B��49l}ۋ@i$�][�������څk)>u@�[�;l����T�T�5�Ʃ�t3`�:�9X7�E�kͳ]-T{��v�mRH�>��s7��[I��K�*�b��`���|� �mc�D:~��(���/�Q�ւ�DL�@i�!s)jK��qT>wͮ+L#Q�Eq��_1� ^˛�j���[_`����3̂�Y���l`2H8�5h��� @N�6,K$�����2�Dص��\�Wm6���6��g�+^�i��Rݼ���q��LL�m�n,NU��͋�{�}�J����ixPdU��X˷ʹk�8� �i�Ÿ$8�^rc�Ď_l� �`J��:I��TN��ɒ�� X�� �ݶ�~�H��dT{�O�hDRvsG`��J�v��|�ޣ*�l,�S!އ��2�yV�l&���ߗ���b��Z;;���h�u����GI(&�*b{c�L{�T�KC�/~U�6�k�u�/��DVPk��!Ż�e��4�y����F1$|���}D`N\�7o �x��q�qw��ȕ}e6���X��(0�3�?��� 皿�E��#(`�i���1�����IuO�]Dc�K�~�`q%���n��q��>�\�T�@ظŁ�ja-��8%ϭ�Ǝ],$�ۀ�X���}�=.�j.�㍗�v���v�W1ű]��j�_�R������1!��W���n$d��f��X��&��\o�D�]B`"����ME���$y��>��5�����\�@����ža.������5)��`<�����\���J:�)IXV��8�m*�u�m�[<S��g�v4���g�k�k��qIQ�r�ۨe�9��x���r\�eG0�d�4 1�k˪&��WO�]��]�±2���ҚXN�:����b@�56��ڀ��2�� bq�ޫ��,U���3j���f���t�)p�����%/�d!�X2O�>��I���%W-��"S�Zg��(x�$i�Ƶ볻��C�^����tA�ӛ��K�(�ʖn���ݱwFP����/�V���VRl̾'����r�8@��d�"oB�l�uX%���b�}�������ϐ�D�ņ��jO�@�S��/yw?��D٫}�n����kP<O����:lk��R��J�>�d�mjz/)(䮥�G�;�=�KR�-�w��_�_b"`�,�&��@�l �1�2��0誜�b��s�Z�;�c�%��5>Ur(��M�uذ|�vN�b�k��Jo��>A}�jilLbH,<;fM$"���@�GC4=�9@R�f����c��iTI(�e�Hb�h�K��\ପ"6:\����|��A��H2�0�ʿs�H��z�"�eOn��"�E��g,��ݻ�Ī�VU�Y%ۘM�Gm�st�s�Rk<�r�7����~��qP+~ٚ�_z�l}ی��H��-Ƌ%�hȅQW�:T��#���w��ķ@�a&[�Nk��Ũ���]�ͥ���P��g�X`�2��u@����m��H3��Ε��VPkGX&�]��z؞=q �E�bt5�������(�ۘ�n�������ҹ���Q��C���V�D�ݫ�� j6�>�X'����-���h�[�b�,�L#�-[L�֞�*!!��5�p6�w�x���0���� ����F��d��<0P�,���Mֽ�rh�I0�s��x����U�Z(�6H���&��\)� (廝�e[-�z_�U�/��"�6�Aj9�IDATp�٤����v 1��J�T%��8POj/~����[o�19�`o Cٺ9(�j��k#d�z�i㱷#y�GT��8m i�+Z+����A�(�H�h,���b"���nFH낝C����q����u�(�o��P������@��&��"${�bT�(�+F�P0!-�Z�k���WR��X��@�6i"�ray|oX_����k���hug�ݥ6�5ٜj �z����YS�Q7�R���m�)�S���J��k7�ʂd��\b=ld�,�jmL���}�C�"�ƵkP��b)�چV��b��4϶4� �UZ���=��W�J���QPu�H�v�"[S��J �bZ���8Vn��\��~����55��h�y�]����v�j��M��K3� 4�����T��GMj xx�ѭ� ��F �-\k�5u´c���3 ��<�@�6�L?�-%c���D�BI,t���:�x��@{fL�˗g���YU`?� �k3�����<2Y����OSӖ�JT=�y[��(V����Q�Z˝kӲ�YE`���§}���� � ��[l6G8���}9��_w�)1�N*��D�8�c��y���&mOPI߂)a��<=�Z�s>ê��0#vw-ɳ��E�B� %�ײ�y" DdY�TG=���� < �]ۯT ##qh���ߗٜo�D◌��K�7?|�&�D�ڄ@�u5mY_�Pk��J��� WT7�멧�l����h}8Y���Z�X�Av+6�� j�+�k���y���F�v}]%@,�[<��dI�k7��}�Iڒj qi���k�d�vm̍�Y)���%�i�ȵP�P�"�����y)�.,R�O,�Y��tp�q�fF�c��G�1_��m5���QL�Y�$L��ae6�`������Խ��Fl��&�@�S:�={��k ����b;�Q�/@ �?ݸ�k�Qq��i�v-k,������n�`���%[Ԏ��f����^�Z�q���m�[_��d���{\�?V ΐ��/�,6��>�u�^��� � �[;X���Nt��*�H2�� *�߄b%�]�1أ�#�*�}�^�@n��ɞ�8�kI�E�>Q1���Y�hB�V�41�گ\"�$�+�q;�*�|��kW�=IXRD���2�dgm�:����"A�~� SU�OXKV��^[c�vS�g�ܼ�ɢ��nlSi�U� ����9�,��X��^����>�cE���2=�c���Ҏ�}���.�����`�$7V�� +�ʒ�=���c�Ɠ�3g����>k�Hw����@(�nB"�ū�7�\�Z�~�M[ @*y��>��@��i�#���ح8��{ݘ�'�V3����IEND�B`�assets/uikit-themes/master-paladin/images/styles/light-red/section-background-image.png000064400000052736151666572400025426 0ustar00�PNG IHDR��}Ծ�5iCCPAdobe RGB (1998)(����J�P��EšV��p'QPl��I[� X�C��IC��$�\��!�:���N������S������p8?0*v�ie�Z���t=_ο2�t�,�[�#�8�#�#���mםӱ�Jc`�e!� п֩1̠�j�����5�@���;P r�J�|߀�s=��r_L�h�Z��E�\˪eY��&A$O����<��D�������/���ܨZ�攽'�z�������"+/�՟ co�\����̎�l��`��֫Pށ��/³O�{��E pHYs���iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 6.0-c002 79.164460, 2020/05/12-16:04:17 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/" xmp:CreatorTool="Adobe Photoshop CC 2015 (Macintosh)" xmp:CreateDate="2016-01-03T17:20:59+01:00" xmp:ModifyDate="2020-08-04T11:44:48+02:00" xmp:MetadataDate="2020-08-04T11:44:48+02:00" xmpMM:InstanceID="xmp.iid:ca67f06e-d03f-447f-9aff-b7de521dfd5d" xmpMM:DocumentID="adobe:docid:photoshop:f2034016-f742-844b-bc88-56e5ee972366" xmpMM:OriginalDocumentID="xmp.did:1DE51888AA5A11E5BF48F7A3CB923BEA" dc:format="image/png" photoshop:ColorMode="3" photoshop:ICCProfile="Adobe RGB (1998)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:1DE51885AA5A11E5BF48F7A3CB923BEA" stRef:documentID="xmp.did:1DE51886AA5A11E5BF48F7A3CB923BEA"/> <xmpMM:History> <rdf:Seq> <rdf:li stEvt:action="saved" stEvt:instanceID="xmp.iid:99dfcb67-8567-4ad7-88c5-9f4f504a8f9c" stEvt:when="2020-08-04T11:44:48+02:00" stEvt:softwareAgent="Adobe Photoshop 21.2 (Macintosh)" stEvt:changed="/"/> <rdf:li stEvt:action="saved" stEvt:instanceID="xmp.iid:ca67f06e-d03f-447f-9aff-b7de521dfd5d" stEvt:when="2020-08-04T11:44:48+02:00" stEvt:softwareAgent="Adobe Photoshop 21.2 (Macintosh)" stEvt:changed="/"/> </rdf:Seq> </xmpMM:History> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��|MtIDATx��גe7���}|�r�b��f�IvO�(ft��ѭ�t�E(RLw�,���sv����Ed��s��YXXX�3�6�?9鐷�r߿�ϳHz_v�3�ߵ-W��#�Y�����5�;����� ����`[I�>����]i�2��u^<��~���(K$�ɩg���Y�:����q�aw/)��<��&�n���C�m��EXK�T枓k[� �v�� ��Z?��P����n#�#����]H��GB��'��t���mM��VH����s�EX,��� h�s��$z,l0m�p�p� �C��.�����;��O��N���*B<������mo�~�v��#+&� �A|� ��^ODj�� x�����W�?w��e������tP�� ��5��j�5�uP�BB���3Q�Uu�� ���3��Q����_��w�����N���&� �B�!h�lB��������!��qQ���\��� �%��"]{�W����ɘr]P����[-.���jo������s��A� ��4��k�3�Y|Ol��F����-���x�Ի)��ԋF�~��:?5�G���9ưm�P�/�\?�_��K�kWM��h�3�ܣ��j��,Wǔ��L��ޡH��@�'�8dI6�=�4� C[R)`���Jx��@��ʈ��n&}ÏB?~������Y����%�������<�����s�k:P�f�%�5�z�2;.J%�|3��l�p���1R� �W ���~�!�<�����<ߐm���v��;����|�{LbNj)#�qQ*$Ϗ���]��n��F��*V��tl����W2CKI�|�D-�Sv0ߘ-�Z%��E��<Zsr�3�s���jg���� ��su��NV��M�Q ycc�li�r�pc�ř�)$�O)�� �]�s?�(�;69L���̥�+��݂�TZBgR���ps�#�JX��"�JYT.1��#����q���� ʃ�4.& qG����(���o<���%���&����o�_vJ�4��#�s�����;`�·�~��yۖ6�r�>��դ�I�g�����6�K6��~[�x7���5�s��m�i&���uo�����b��C�& p����^@�:�o�4 �S<sW�`�,JS��� �X�_{��|̆�gR2A?{.�1Ӆ��3+�y�+\C�r=�I��?���dH�z�zʍ�\@9&�0�d|����W�γjB�g<C��df�T��� ��>���?�4�J���Ư���N��O�b#�BT���Ԏŕ��5\��j��s"Qˁ�5ubz~.e��fA>��ν��Q/R�����v�B���?�:��yn�<i�V���\Pj�PN1�q&��R��)�"Ea�DJyʳ}8��O�<��{��I}e:���c�8B-$����u�`�l�& ^����SR�zu�#1�| �v0���}lzA�]l�)�����w�f��d�dZ�tn�v���~@�v����g�ʼ��*$)vuk�E �K��EF����(6��ҡ��c��X�U|�*����!3bil��M��%��Y��N�Q|�UZhSnt���NnKL�b�!��K��c� k�h��%��U*��Y܋G �ʃ�<'�J�Cx��� ,bCu���A�h);IJ`��W�-���{�#����^C68Y:�a6:���V��t��m�*�����x0D��'�0u��ϸ�.���8� i�Ol��l��L3Ln�Mܒ35��t���Z����㽵���c�����d#��qV�s � j��)gL�����q��C��ԱzU}��4t���@�t>|Dž�kx�����[�SH���v��)�1��qJŸ�^z�k�<@ɒ�z�1�|��oq�H�=i�6i� BĒ�9�|�,Cr�]����+���*�OV-Bbџ�����J�N��Z4'��%�i���uU�-�Ql؆����*��X��2���k<�Ϝ#�i�&g�ꇩ��UqH�rT#�"Y+�} �OP!Q�ױ�b�p���������ʔ�4EF����HXL��D'i�S{��_A)��1��UV��P�5�n���w��`�Ä����R3��Ŗ-�U0[�ƗP�f$,�I>6�Sj/`�5�7.� �aL`��<���9�*�?�C%yiK&�[���1wIrta�3`)���;����Z�Q'���@��Q:�&�8R k��$y���3���7�HsU\�]�_��1}�h�[��0��OJYА���h��6�tk� :[T�w�{Ԗ�a:.Fh��7į�]��@r��9Gs(`]If8Mr?/�A��X��sD�~�Pt!$��F�k�|�����ؑ.�c�v�㮟&���#�g8�!'[��-cq�)��D�b�'!$8W� y�� 1%�e�F�!D!�Ɛ6еU�3�a�+�K ������r�KH0Jt�IA���^n�l*��i�sG<-��D.�t?Ͱ��3i��Ϛ�]���L+�R-�|��!f�uHY�N'��1�v�Ӗ�a�V/�X;���=�M2$��f�/�#^�[��i�+���Z2���xj����%I7P�|�XL�I��p!��u� ���p'�6�3�Ԝfԇ���r�����n)���XB�,�E��U�#@��V�2�H전A�1�=^;�������9k>�fʖ"�<GiP�%�V# ��eÅ�"��F{ �\��C���uU��Q�t��\p�|醈տ�i��g �R����Ԯ�X����k�7+��� (B��@�8W}/���U� IM�&m�E��k,��K�9�J�zjr� �Tiñ�wɍ[���P��M!��t0�j�Jp��3ɱ�/Q����iXE��s{��?�j���_��A�%!"L*#���oNl�hBYYj�T��`���7�c�K��_R�K?�\�jG�r���6�*� �-�YC�*)c; !2������Z�����H�?��n�V��y]Ik�3����t�T�sm�r�ґ6NH�����&�?�k0���1-J?����kLc �0?��"([<�%��SS�� IL �+�g���)�r-a$/�q��3�&�o�٫���&掘�m"�\�]h���Tj���w 1_b;���4�;{�������oՒ�a���z�m���L��1�.�*qŞc�:�L9BR)/��K"|�e�V�lR�_$��9b �G�4�� &�p c�ܢz"�1�|j���b�l���v�s)5C���o�GR�yb[��A�B�JXs� �d� A�lK5%tc�u� (ԗp1 �*�*BÖ-T�� ���r�h玜��t*�RM�n@3W�Լ@�������ƁI�2#�m����{p��ۏ�g�(eB%�ub�>�{���byAS��@���Z� �Zڸ��t� �"5@(���4;�L�E�lH=�:(E'e�J�#���D����~��v�(]�uH{�\H�Ok��w�ئ��l�X(���%�y�e�x$�cR��{�;2�t�h��DG�#�S�(=)�QlX��o�a�z�Uz�s�dwV���O���B�N��>d���va9�i,rI�!PY�%U�Rq���:�Ƚ���=N��1�B;.�s��5�&�YᔨPϹ���>���⓯�� 8 W~���_2?�Iha�K�j�%ͩI� w�Y�0ˌ��C���f�w����A6�WKf �m�yl��9�*��]�/C��Y;����|�܅��d&˽>@��p�2�����w�$% VW�#�Y[;@ٴ���w`�s��J �x� �ð��F�p��J����'��Oa�e��B�r�j�cr����P�w�ۆ�(�������k�r?DdV�OaI�S�|� 8%�Orl%;VhǙE�)�>k�\���lilp�&�\@�+I�c܃�`�0�U �#��B,a!]�qV�[�u���4�ш��K9��B��%�`��%�blM�K�����;$��~L�2!��ӡuT��bL���j���vف�/�;P�G$1ib�4�����A�y�Q~�!��Bx��m�|L� �{�S�1�A��=Գ�q�Sxhj$�mTL����`�r�g��r.�$�3 �|�taF�˛��Rر"b�,=sJ%���y ��TH�H���[�:o����!�����{��q*��*��dj���"J���3T\�cJ��H���������>�J��;oP���Q>��08 _"�� ',Ɇ7) �K:��g�`�:@�3s��"$��G�g���FZh '%ɉ��P���m�ZܥUn�"p>����ܫ}B�Q�PW�͘�S r���ѫ������J���k���vR:w�ίu���m����^X~������z� �g�6&$4�������JF�wn%��R��I|�0^l�;�3�w�_�Ҋ�r��c�v�D���,u<l�w�q�āT����+(��/RB��dRv���������{B���'����8�Ȥ�~)!��R ���3O9����٩t�|�<����B�ι�-�W��:G��(�i�g:��yƥ=t����}b�K�C$��ˁ���$��LЩK?;~���x$�3{6~�k�y��0��Z��c}�ߟ�W2þ+�}��^к�۸:n�[�v^cٹ��oQP�;`�.�g@l���oPώ�j�� u ���s�>���0T��Rm迫V�ñ��}6Ƽ��֯�����^ES��O�k�YC�_B�kH��#��;WZR��� ��Gǃ {(� ڥ�HN/��{�� L;.�/!����Q��D^)HUrL�8(d�X(GA�-��[!���\�UnBr�L\�!u�s�:�I��B�s�@������c uB p"J(p�E���HBj*!Ă��~6%��ӓ:SU�>�"U�'�0��.%��.a%��E�ް�t�����>�=t�rA&Y�y<����e�[�w"f��ڍ��[��K��'�E Щ� rVbY _�DP�hĎ5�� ��J��H��S*��p5�2v���6���T�~+� Ի�^#v�K�(G���Ib_����x e�*�/k7�/�|�Z�d2B5�N0��Vp�,9:��WZ����5��{��r�L�B� T�:bN)J�VJ?���s��4Fc/�G�`�u.�s�!d��+��~��k�Z�9:)�Txa6H�;_A�Ef�G���Hk"u��`�C�P�-�W;S�#f����K�T��$�r��7�~/���a�)8�Hn�E�6)1ƾ�Uvp6�r?Db�� kl!�yHE�X݅2m�$}^��� ��N�HA+�-�݁��Ρ�j����3�YC��uH�"ZB!ͣ��°��LLJP�.�m�V� n��GZ��~�3����S���v�=���yR7RM�gPs�6��$� x��%1V� ����a����Pa7+��I��Z%0�v+��j�*�;q�$��{D)����ݘ��<�>B��c�]�m ��i����a�>9L��NQx��$�)�W�6м�����V������h:�w���s������!#کTjB������]��)D�5;�H����ڡ))w1���^>�8;�����\ �Gtd�:#)�Η,��1��&<�C����j�^�vP����&ױ�5�7���O�1��#�s�-�`�iu\�~�>�� km ���1`��tYп>�;fe#_��X~g�Gox朐���MѾ�a��-�_r?�$R��۬��9���1���4c���S�� ��ֳ ���j��A[6)�/��f�X�҄и2LҒ��m�Ow�w��,�� J��.T�.<a��l`�� �0��8����Σ@�(%g;YA�����s���I8��������p�ᢦ��:�*�=��:����:��>�� �enb�<G�]^R� �.�8�d���«�|�*�C���@�J�-2'�\)A��pw9���~;,��p^ F��QU���3����A ��jh!��D�Q�O���B�8KP����9�[�ۖ1Qr&� -�;(�d���\!ݙ�ih#g<خ���Y'9�kɄΣ]r̶d�"X��2O��� ���K�=�� eSs+eN<ض�� �pW�e3td��1q�9B� �D��S���h���sʜJޏ{��5e�_�H�gT����YS�OA����ܔT�c ネ���8=$���s"� D�UX���i������2r{�2�?%a�+p�*���%{��wA@zg;R )Ί� �Ad"iu��l�2D��aIz�Ђh�2�C�������I��r��8}Y��GL��Ayd�F����.ގ(���� �5�s���3]���q6�G;�9��|v���#ރ�M�8��R頔��PzWz�Pf��Хr=�V.��oJ��XA��uMTn��6I&N�!u��9r��}�\���j��&�5����H#&[����������p�=�9��,�k-�?R���(%��G#�H���*i��;rN���2,f�:~9� !�тg�fĚI��P~(5+W�(��5��!*!̿5p_h����Խ�r� �A��s�b:�:V�w(%z�8L�{7ĸ���D�6]x��{������1L���BJe������,He�5���P!r5�uƶ��N0Kv��yߪ\�J��P �{2� �<�!+��K�u�r���r�rz�B�K0Hԙ� iz� [x�z�u�����ҟ�5�6��01�Ą܂`�B�J�7;�P������~|�^�S��ܜӊ�vaw�S�{�ީ1u�b�u��O\BJ�����;�Vt�a��ݯ�_+_*XB!M1�T�A�i��B!U�3^Id�|^drB$ӂ�K ؎u!��d)P7��"�W7��.C:��9��f�9VC�{W$�� 76I���,]��VH�,et�IK��$צD�[�خ�3`#�:тK'�(Q��-r?H-/R�����K*)ۛ�����+I�h�{Ul�Ċ.P�/I�T)v���:�XR�T���_r?!1������'wS���H����*�}��`P�B�l�r[�H0̇�@%M�5̕�H� �g"��Ic���f�1���穄��x�_� �,����9G�y͎��9ƝD�PJ6���4sb� ʅ�b�s��ⲫu�p��i�Vbjƥ��h�%)�5��<��"��h�p� ƕ�6�JU��������N�s �b ��$AO�3LOJB�#a���u�����,kL�8�fl[�yuv<��9��/!��=T�B�r�r`0M��!���{ߡ�]eI�h�T���'���e�_@�叱�m�����o�8n��`ۉ%����yu�"�0�y��}��s�-����K;��#��g��e��H"hb!�r�Թ��H_^n ���9�=u5��m?��ϡ�,�6�P}����O��e'��Z�;�B9����`�2�,�Svx�;n���k�&�A��L�S�Y{��<j)����+�_7��A/�D)� ��J���� ja�����O�����4I���I<֘v �A}1�7�}>�c���MdΒ�P�ND%�� ��W`��JKIN���n ��A-��)��ϑ}X�=�+!D)�_�{��7Py�%��7�'LwPR戦r�K�i���[��Ft�]:X���Q[��tv�����k����e��:���Y� U�Ag�'�)`�� �,���;��+�[(箐�8�X�C����v���&�7��9tڜś<g���ǟ=��צ,!QS�Ҕ/`����>opu�ᤫ��R=^i㩃R�;ص���7�~���}M������Pȡ����ؽu�ߋ&m�4�N;5�:3���x6���s7���֥12d��ԙt�H��pJN��Ozҩ�c�L&!� 'oo p�� ���O��f�~�Ya��r������B9��f��:�A-��k�>-Д����%GH(�jߒyhR=����'T[��L[mw���'79zH�Qր������hoy(+�H"��Yr��5��㏗��^A9P1lpiN��4w�OY!�/@�6O�d�~�q��x9x�%Ɯ�!���$A��|������`mڝ�=�߅Nt���&f�;_B*���R��9@yR�V2W�o�]�;��CJ�5�+Bj��Rs��/ #�m7nM�qJ�`C_�V���r� q��sl*�%�7I�I�ϕ��_����E}��:�L3�� 1��U���BYҖ�� ��D$��B 0RR��ϒ��@e� }ߥ�M)�}�{��I�opZ��j�X��n�5(_��/�lZ�D���9�sP�}&t�E��C+ �Xa�����g�9R�?�I��v#q鏛Xch��b6��9�����.R�Y8h�])�Iz�S���!i��r�'0YJf���>���uk'vr\L���[�FZ�b�x�#V�Q�Έ�C�K�S�LF�'))a����j�q\ǥ�c��D!�bMՋ��Uk&�lՓ�pB���j�H7��*�r��>��o��7uv�:1��������k�F�s��j�W���:��g% �%t���k�>���0�q�@� ��Y�����P�Ɣ�A9٦����%yI�ڊ�ײ�����s�To�<_�n�jBR�g�Q��U�N��c��U���ʻLHH�#�/!��RRL���Ҥ�5�n�3 }�J~���x|���qr�J��?��!Ǣ��f �O���9HE�^1��M�� n��Ω��Y̔[��νEz�S��?�6�G&�t�m���{�8@μ�TYJ�5k�WE�'1A�EɅP�Z;<��K g�ȴT:�Ѓ�&)�����>lB��4e[�N2�$54� fqy����uٔVW4��ҳŜs6Ukb����n�����f��IFďZ��k%�9�k0�,eG|��l`~��:(G��㳖C�Z ��ڱq�)Q�^B�W )Cq�i'�2�mL�C�P�f�;I�������d[)�a�2��k��tJ�n�s(�T�|7o��K]pB�ˌ+�])Q����(Y��f�{�"F�`Fq�`��[���.2��?#�]L�U�|l}Q�M���&��D���+�T�g��;^!NoP��<v(g�cP'q��lI�K���փ�T�U��l�ڨ�Z��O������Z:ƦM:���0���=Z�Nݿ��H �$w��+��3gnBj�2W��:x��X#�;̵� �Sn�F��HH�;�:ؠi�B �Z)M��`�EJj<ƤG��}w�N��B�$i�>GL+M�R&���G6����K�AP� =�\ma'�:w��sX'�XA������l��~�J�a��=9������fN ����go��_�MV� ��h;?��8-��r}�����j��.ۘ�8Yz�P2F�y'P��!���@�`��M���k�ZUs�p���m�8�%��P�!p��9��;�ˆ�hL<��NX6�N.��s�&�T6~��d B�ۛ4�p���e��N$x>/"�@SD��j�Wc� R.s�<�r_��Sg����^�#$t���K�v,m�2�%�6&M�����A *�NBb�S��`ړ�u�z�6U��u�6҂dD�&O��%<[/G�?�w�%e�K�h#�!4���aN#��$fr*e��2���� �m/c�H�jO����=����y-�R��{�="��i�<�q��(`�G�[�.Y�"1�����gA �ܠ�"<���H3e�<��g֤r[0!!���a��զ��$� ċ)A�Jɹ�G�N�+/r?���1kI�l�.�xS�ŹF��I��.ucs?�����5}EfrV�B�V��%$24˔�O�]a)8�L����J"3�S�X�<�5Ҟ�DX*ZF+����v@!v���O=�M�u����F�v�?���Mv��@��l��lχj�����^�v�� d'D�qĐ����ų�{'!�0���3�$�l�����~(w ��YXZ���Yx������%�G�Ri��OēR����J�*՞�v?���4Q��� ;�z�saV[o {L�J��;��;h����F"�����O�pr����`N`���/1˞:�k*LۋR,&� )��c{N��ùl�ΡΉK�ߦ�������g�pK�!+Z��&����lS���)���ҿ��olp*�X �z#��ŵ9��S{3�x;|��7L��1P�V^���-sFN����jGD&y��[�^����5���CBJ�$o}�=�z��Q��)���c�L�hAfO�O��Q���M���TxN��$&��`�EV�w;"�U���%���a��w -c���h�Я�B%���� ����g�����=&�ʶ �fDŽ=���Z�-)`@֊oH)Bb��ƞ=�"ЅJh��� }>�� �O�=�cp�r�_Bɺ���S��wi<j��m T��A��A�E�j�'���wh��M�����uy�Q&5�T����B ����_LJ=�D�\��H�v U�/Ǣ�͐�"�q�Ƈ7��&�W�}���A�0?�y��젞����J�����V�q�cshKg�:I����ffm�L�wwP�l�� R8�up���R�ؖKmtP_%[>��Ը\���4�y�U溅k����Q��K�y��P7���:��Lͻ%�|�,wW� T8O-��8ɖ�cP;\�އ��KӬqJ�:+���"f�&�q�9�� �3�W�M)�������r��_Ȅ|.�3|��c+g�1w���r���=⽆�����|�d=��Kh���n;O���&DnN�͕(�ݯ�������m�0bT��У��X�W%OZQ���Vs����P.��kt�>I��P�Tl�G�z>"���R¶u�C*��?��57P�;U��� (t�ϥ��J���K�Φ�+�i�sU�W*�:5�DX˒�B .A�|K�A���Sbn�b{K�cY���y���|�xR�*��ێ9�IjP�J�y쪬/� W�I�K�S۠��j�g����o�=$X�RQ[!�\$� he`B�� 0�9�O��(�yuN8��X��=����xN�>{Nr#B��zwך����� �{������1Upax}}��R坖Ʒ/ɜF�)`��R���!��%�T��WP�]�� ~^�äS^���{��#L�xC��=̽w�Q��u�� ��HS�������["u�K+N>� ��Tx�5�2���\.�!Tr��P1�!�I+�1�ߏ��J �U�FF�fH"��d��2D��G�$'���)k��5�w��#�h��}�qaA���>���<=��l!��R�S��yb�k��v��� j~��G��������m�_�E��TD�iq�D�I�@;����C���P�� ��!O��.���&��Jo��E%rT�zFk;`���a���w���`T3W�ᥜcn��%*`%���p$>"&����+ܱ�Y1�0>�P����$ :!��A2�v�~N*OIR/��*��{�N=��T���3lP�f�xR���mş.���v?l.R�-%�����;(姟���?��i�6>��L"b��L�h��$ ѱ��W#����ygx]�WZ���d��SE����I�Q��D�� ʷ���7�w���Zǎ鼨��G��IȐ�&!#�R��� �5����$�B���S�.Xڻ��u���V�>�:d�2Z��B�I� ��r?)�ZVjx�Īq��ʃ������3a�\��8�Js�x�������]-P2OIX���\���?�s� 'aL�ɽ���]��{�Z��l��"��u�l1 Z����)?@)�_@%����2�uP�~;�����v��u�]���kHc��Ͱ��G)m1Q#��O�=[��V-�K�D.J.W�F?���wi�c����=�O`:5R�nr?�#wP>�ڰ>&�5N�1�� �/��$�.��rr�D��a�}�P1�$?���9\w�ڔ�G+�R������0u�<��Ӱk�-��" �1��0e�0�q�����8@A̹?�P����[�g���L��P��O�����P[��>-a�c`�4ɀb���#_�wr��aj�C���"�̘�_��tqj"��x9��7�M�]2�HSxҞg�3��;&h,���w�����r��5�$�?�y��ts�JX0Q!�{���L���J�ɯ�3MvBk��tk�P���j�v��j t9ѐ���%G��(��5�;��� ۬--�q���6�V,�����=zЗ��2S ��ʦ��U:ox ߝ�j��g��#���/�s���[T"��c�>J��������s��l���o���-�2v����*&��s�p�Q7���3�Z��`�;p�3�Y�ˋO�g�J��S�t0{�P����](E������q�r�{���O-�c)�1�ÈL�B��ה��eT1�+ĸܟ 8?[�h*6�Ƿ������ǿ��>(�֒b����!H\��P�Չ�~ �\�ؠ�����)���x�?�ε��ݡ�]���E� �N���q�����N��1���ҭ�H�Uʢ�BDS��X!�1�)cY�VPɘ6��[���Sf��T�9)NԶѻ+�N2Ҙ��&����o��)�$�����疐jɱe���I.8���45$y�O{�1�M�R̰��Th� 5(^��z��|��4�2�3��;�m�~�CXJ_����!�w��:6c�E��r��b֜bi��K������T���t�̀�Ĩ4�g,c\@e�<qO�S�M�}��3��JY ���; C�6�拯B+��s���/]�7w��*�@�"%D�䲰��/>0�ٹ߷�a_����^LL旎�,��9&�0!$&�����J���D�6_c|!����!%*_�6-%&�����< �y��ᚩ�?��,���b��|��]bXͨ�\��m�b��F7��sfI0dE._���d/D�m���J�}p��n����S�K��d�c��)�6.�e3w��K��P�_�(��J$���)�e��[���;�+<-�ן���o?�wi��kְ�&�>^��*`�NƱ4~�&5�{::�io��e2e>M9����lj��\q�P�#̞�~�.���`�]h�P��t��O��vuqF����r㣜L��'�j]��{^g��ͥY)���9n'���� ��r*�s��|9qU�.cfl�k���8������D���AؘY�%B&F0)�����mq�;���W�!Ĝ1�s���5��r/���JN��ec�� ���Ц�>C�h��w�f��V������&mR49���w�g��ߕ�������G-���F!����N��v�w����Z��2~7��.�]H��P���q�}R;:<�uR� VkY�å� !C��35��%��4��&$�d���g���O1��O����;��VVh�G˃�ŧ�Z��v��k���b��t{���t�5�f�4�Ʋ_��g��0m:�eyG2��CHm�)�z�zW&m�>� ��[�~6��|��ᘩ~����8UI���1�v���hU�ե.-)���K�þc��������C�C�c-�J�Ϛ���Y귱y�_�Bx�v�9��X#Ę�w�_\|�%ɦ����.!/_s��=�#���92f� sG)ͪB ��3����S29�F� -�L))��cf~ʹ�!�ܗNZ�c==1ڼ�~<�s�e}�B""��!�Q��v!�#��w�o����.BH�>0�-=-"�M|56�`��tN1�>ob���>;�Tw�kՋ�v��Hbp�iC��Ґ��]�,{�K6�Y�78�A\��:Ɣ��7�Y?]8l &,Ee����JL1俭�w�gHRŨV$�4�H�Jh .�j�5�a�q=�;\� j���-+TL]G����[a,3X-gф��:�S*`N�2H�O��'�!�����Sd{��$%��uH����L�'����DJ�Q�Z6�ę2�]���ծ�Y��@���ϧ�o��\;B9靇z�HĖ�}TŘ?G[;�>�:�Z��R�w�m<��\�%�.S� ��3�\ cy�kψ�'}7T:!�4H:|�,U/9Ƥz��[��L�X���O�9��*e���#��p�&�Q��TAH@|�[%*���A��s3�l�v��_�G�w��y�m-��[5S͏-�-º���w�r9�:B�.������;��Ə����.cbj�����o������ks����]�a�u�� `'JG/�Ρ�]�I{�XQ[����)���6G���mrծsm4�P���N' �*���Ǵ���؏q8J7+H�����������'�[�3$.r��U�Gp���o�w���g� �PsV/�p:��7}=�c�S���ξ���_�;���\�Є����!M�D)=}~���«�Gs���~~�w?��T�/-�>�O�Q�%8w�������T���w\ιg �3"�:3ن[�}~ ����]z���_�p��v���_mW.��dxq�D�7��'��\��;}�K�k�P[�� �6��g��Ms���_�Ti��V�DI�@f�ɑ�|�k��ρ����6N���䩕��L�a�8�!hD9U62D�k�1�A������` ���l�&�=S�Li�i����ôM�!+)�h�>Oyߩ��s�^�PFB��J^���K�]�{�"�]K;v�Y��V�L�ǵ�Ԡ䴩�jN��=��{�v��Er6�d! ��J���t����/<�0�O�����i��ok���N6�*d�Ԅ[�J�,S��`k���T�EP� }%��s?������A ��D�r�,;Sg6"���e���f郆�0�Kd�����wk2�qrM�&p���'�c�I�v¯�b>Ը��.!��=�w��߇����r�[��'��R���H��4ՖPJ�i��-��=R:KZ�g��Ѩ�w�%��o65_J�-��o�)�Z8��,��fR��^#m�TYh��*���l,Ɣ��w��A��~e~6�v�!sH��}��v��vP��6����oo�լrᲣ���5��+�U�{?B���?����|�;�a��!+*�2W��ts�y� ]\A�ܞLF�p�ДIJ&���g�1��A�1�^{�$=�WP��-)1�|�S+�#�����ݸ�L�}7ɫ�s��375hBBkǴ�*{i�\���1ڞ�#���OM��V���al�Qr�>��������ZC�B�cS����!3�m�iNj�U�\�� $����k��)��g�W]g�"#��0tٗ�^U��G1��Irɉn�t�+0� cf���@-�:<��9^�< d����;4�J'�,rk{�1S��C���"�j�M��#/v�;��ߏ,������(wq� 6��ZC9l�<��ΛXs�6α���O�&�R�b�F��;9;~��� m��u��k&u�fI��d �R��}U�#�Ն�JR-�I$e%M�2$��pC�CBf�t�;D���� uc딶d:��hm�z���ڸ܍��%T���1���: r�?���a爵��|L���8wG�����1��=����O��Xy�Csj�㭭�����,:D��P��^�QB?���.T6�P;�)�c-�/�y�w5@�$Y�;�yt���%(ld��R�S;�ic�o�%�=S�-��%A�:��>�d(���9&��D�0!$'���B^&:#��ʜB"��/)�BH�p�P�t�ڣ�g W�m���$����3$t��O���p\`<2 �"��Y?ko6���e��L9g��� �ùLx��q������u �1�A}c"�L��'J�KJ��| Ue �'�b)��Sב\���s�P�B��r���y��m�r,e�!�"ݢ�E&'2!�AY~B�AI}�O9i��} �t���R���T��bO�`�zR�ٵ�ˍ<��>���c�ǩ^�.��'T�$&�C�1��% 9}�WʮHb���|<���w����J:*���Qޏ ���� �m�A��b�'&���>f~SJ�%PCAic#K{�8�I*E��&��[(���l&� -�;72�K��y7�#1VP��&��!���l���R¥b������H!�1�o�RBH�P1��*`BHCp�JBr�T���P&����_A��s��VPuuC��/�:C��N^�5�XuC��'!y�J{ �"�S�d8(ISv58�ԄKI6R�gL�H�x$$k�SP���\����J')5��f36�N��X[;}�JBO�c 5�]M�p�+��:���K�m^�f UC��Ru��a����j��I+��_l�����|)R;�d��p�B#�Ab�r��*<����cY�Pv����.�ط��9�i��!V�E���?ۧ��7Pw�����u�bn�y�"�O6P; 2�',{���<|e��*��l1� ����a3���C��^�������kkxSVP��J�G��� J�Km��V+&{��T�E����vB�c�sP[\�BM��|�Z%���(��I��nK�d|���sLo�v�!��F�NmUxp�&�,Z�fsj�Ю%BIi"[c�q�.�V�d.��B/�Z0�K~��+�E�1\��MȒ_�s�:��i��D����,����f�vL͡w~T��]�eqɍ���+��*5�E��L�L$>4�O�A ���-�=ڲ���GKN�k,+i ������G$:e������&��<�0��s�"w� �p��fx}K6,-�C�fᚷ>��> >���לݤR���MU� e�6bq��+ti�Vc�r�;NbG�s�xN���c;�����Dn�E�$>�R�&�Pf�O��Gd¬#����3sϳ����L]��YA�k��n��=K�b��%!$".U����c���+%x'��RQ���R�LZ�@*���H^vP��%�� j� ��Q׆ߏ�4w� ��P�)�i�Q-��@t�Ni�Cэ��������z�Ǩ�c��wP�>V�J��@�%/�9�P�g� UX@�4��� ��=�=��ltGΣ�KMF��l���{����6z����2&�]�W�B�VZ_��F� ���bjN�qs���O��<!^��BP����Zɔ"�B��$8�{r��R�#��#-`⒖V��u� N�b-R(a�J2q�v���{Kc��֜#c~_�E+���&�2 �XA��K�UKZ݇�e7�by;��p,2��EH��;�9V��v��<;&D��HEH���D��'6�}e��jUU�&�tI�:4�2z@)h;���V �&��LVk�v�u�r1G?��US�K)cbiA:! !�8c7{���\����L�D�Љ�v�d�R��$���p��8"h��ľ��)����=B�Rj�-�yn��#$>%�}�L��J�_"/s?I���� �Y����j^D7�?%r��URSZ��F�ݞC��nj�B䣽�Sˊ�c� !�����ߑJ��i��P�$"�p02�;`B�R��ϔ��2y?����������\A�bH8:�[4��dV{�=�T45N��;�,9�ϰ��qnGZ9��K%.Lы1Z !Q��$k�R8�/Mc��g~nH:���/�dVP ��q�V��])��H[6(�{���#���y�I�м�%!v����B;�m���D8+(o�{���AR�H,����p�-�j��!�/y�ʫru��)���?����_{�J[�������/W�fM"�T��W����ZB!D$�P�@-�B������!�l��!��H��3�)�҄��z�Z�Ǭ���$�� �ڂ �L��!t����!ك��MB��*q�8B��^���KN����|9Wj(s�o�X�P�ZrɇҘ�prb%˼��v:����; T�O�5�n�W�̌#E���Z�� K��>� +�Amn���c���dx���C�I\�����"9�Ib|xJ�#%Fq 3�8>�`�����ĝ�!Hk��OJ��E�����lA1w���:�[�J�+0�҇�� �n+���RX�*՜Ly�P��.��''���B:,!�s;>B�'��I� �L���f���5�<�Q9�-���搨�NO: �B̹��l��t�>i�08�(G���ʒ�Q��Bﬧv�5�d���Qr�3��JT��=�QnV�?w��JqY]qU�����[@wH�������-̒m|D�P�B �j����WJ�+�'o���x� =i �g�%��.�Y��\C��m���ص ��_�<�����]�©Lh���徂z�k<?/�Y ��.(�Q�"�t�VH��7�|���a֘#��`N���裞�c{��s�3�.x ���R����I��Kl��#=�'uUJ�fJ�(����A*` %8�s?H��]NI�8�=5 �� *��N ��Ϥ�2r�</���(��3R%�H�웬��>�@��:��!;�b��aX!��G��]M�!V�\a?'T����!̖��|�#�2��Q !�TD�:* C�S��B������.!/1L,�p�A�����:�!,!�r�Y ��UA���'�$ D �!�R 5c�%��AG9B�C�No^i���+pq@HB��� ���/���3T�Ej[�7ƕ�ã�J�!2�Q��6%/!���e�k!�J�rW�1ѻ��w�����cCCȉ��4 ���89Ώ��U���Kv���CxgMb�����߄���V"�����[�jW���f���I�K�N�2�+����aj��&D��d�Ne�fB���Y[������Xؒ��B���;��!���X��!�b��zA����b�\ \��B��8�r���6l���B���M�Ut~�6�u�8������� �/���GBH#��#vIG!� �0H�m�.�0+�8w�Z+D��*�:�]찬��a����*?!�� !D��I�X!O,�%�C��BH�|�i�k��&�k�`�����EK�s�u���&$9�=�N!�ɪf~�`�vԐ��C����9�{?�B��\��."j0�IEND�B`�assets/uikit-themes/master-paladin/images/divider-icon.svg000064400000000314151666572400017733 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <rect width="7.07" height="7.07" fill="#000" x="1.46" y="1.46" transform="translate(-2.07 5) rotate(-45)" /> </svg> assets/uikit-themes/master-paladin/images/list-bullet.svg000064400000000214151666572400017616 0ustar00<svg width="3" height="3" viewBox="0 0 3 3" xmlns="http://www.w3.org/2000/svg"> <circle fill="#000" cx="1.5" cy="1.5" r="1.5" /> </svg> assets/uikit-themes/master-paladin/styles/white-orange.less000064400000000574151666572400020205 0ustar00// // Global // @global-color: #616367; @global-emphasis-color: #1A1B1D; @global-link-color: #FF2D0A; @global-primary-background: #FF6320; @global-secondary-background: #02182D; @global-danger-background: #E21C4A; @global-success-background: #1FD562; @global-warning-background: #FFAE18; @global-border: #EEE; // // Alert // @alert-primary-background: #FFFB00; assets/uikit-themes/master-paladin/styles/light-turquoise.less000064400000000635151666572400020757 0ustar00// // Global // @global-color: #3E4A4F; @global-emphasis-color: #10345C; @global-link-color: #0D5EE0; @global-background: #FBFCFC; @global-primary-background: #00C9F2; @global-secondary-background: #040F21; @global-danger-background: #D11A46; @global-success-background: #2EAF5B; @global-warning-background: #F1982C; @global-border: #E8E8E8; // // Alert // @alert-primary-background: #FF9725; assets/uikit-themes/master-paladin/styles/light-red.less000064400000002570151666572400017471 0ustar00// // Global // @global-color: #5A5448; @global-emphasis-color: #403C32; @global-inverse-color: #FFFCF5; @global-link-color: #E93F3F; @global-muted-color: #98928E; @global-background: #F7F3E9; @global-muted-background: #F0EDE6; @global-primary-background: #E93F3F; @global-secondary-background: #1D1B15; @global-danger-background: #C7284F; @global-success-background: #44B66C; @global-warning-background: #ED9A35; @global-border: #A0968D; // // Alert // @alert-primary-background: #EBD485; // // Dotnav // @dotnav-item-border: #B3B2B2; // // Form // @form-focus-border: fade(@global-secondary-background, 90%); @form-radio-focus-border: fade(@global-secondary-background, 90%); // // Progress // @progress-background: #E4E4DA; // // Search // @search-default-focus-border: fade(@global-secondary-background, 90%); @search-navbar-focus-border: fade(@global-primary-background, 90%); // // Section // @internal-section-default-image: "../../master-paladin/images/styles/light-red/section-background-image.png"; @internal-section-muted-image: "../../master-paladin/images/styles/light-red/section-background-image.png"; @internal-section-primary-image: "../../master-paladin/images/styles/light-red/section-background-image.png"; @internal-section-secondary-image: "../../master-paladin/images/styles/light-red/section-background-image.png"; assets/uikit-themes/master-paladin/styles/light-green.less000064400000000633151666572400020015 0ustar00// // Global // @global-color: #4C524C; @global-emphasis-color: #121812; @global-link-color: #52C74E; @global-background: #FBFCFC; @global-primary-background: #139B0E; @global-secondary-background: #081607; @global-danger-background: #E21C4A; @global-primary-background: #0EB314; @global-success-background: #1FD562; @global-border: #EEE; // // Alert // @alert-primary-background: #FFF35A; assets/uikit-themes/master-paladin/styles/light-blue.less000064400000000676151666572400017653 0ustar00// // Global // @global-color: #3E4A4F; @global-emphasis-color: #07385C; @global-link-color: #0D5EE0; @global-background: #FBFCFC; @global-primary-background: #186EAD; @global-secondary-background: #040F21; @global-danger-background: #D11A46; @global-success-background: #2EAF5B; @global-warning-background: #F1982C; @global-border: #E8E8E8; // // Alert // @alert-primary-background: #FF9725; @alert-primary-color: #FFF; assets/uikit-themes/master-paladin/styles/light-darkblue.less000064400000002403151666572400020503 0ustar00// // Global // @global-color: #55616D; @global-emphasis-color: #31373D; @global-muted-color: #A5ABAE; @global-link-color: #2863FA; @global-muted-color: #8E9FA4; @global-background: #F5F7F9; @global-muted-background: #E9ECEF; @global-primary-background: #2C52B0; @global-secondary-background: #1C2227; @global-danger-background: #E51B4B; @global-success-background: #3BCB6E; @global-warning-background: #F59A21; @global-border: #D5DDE4; // // Alert // @alert-primary-background: #CC0B25; @alert-primary-color: #FFF; // // Dotnav // @dotnav-item-border: #8693B6; // // Dropdown // @dropdown-dropbar-margin: @dropdown-margin; @dropdown-dropbar-padding-top: @dropdown-padding; @dropdown-dropbar-large-padding-top: @dropdown-large-padding; // // Section // @internal-section-default-image: "../../master-paladin/images/styles/light-darkblue/section-background-image.png"; @internal-section-muted-image: "../../master-paladin/images/styles/light-darkblue/section-background-image.png"; @internal-section-primary-image: "../../master-paladin/images/styles/light-darkblue/section-background-image.png"; @internal-section-secondary-image: "../../master-paladin/images/styles/light-darkblue/section-background-image.png"; assets/uikit-themes/master-paladin/_import.less000064400000064346151666572400015751 0ustar00@internal-fonts: 'Cormorant+Garamond:500|Nunito+Sans:300,400,600'; @global-font-family: 'Nunito Sans'; @global-font-size: 16px; @global-line-height: 1.5; @global-2xlarge-font-size: 36px; @global-xlarge-font-size: 28px; @global-large-font-size: 24px; @global-medium-font-size: 20px; @global-small-font-size: 14px; @global-primary-font-family: 'Cormorant Garamond'; @global-primary-font-weight: 500; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: 'Nunito Sans'; @global-secondary-font-weight: 400; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-tertiary-font-family: inherit; @global-tertiary-font-weight: inherit; @global-color: #666; @global-emphasis-color: #111; @global-muted-color: #999; @global-link-color: #CC0B24; @global-link-hover-color: darken(@global-link-color, 5%); @global-inverse-color: #FFF; @global-background: #FFF; @global-muted-background: #f8f8f8; @global-primary-background: #CC0B24; @global-secondary-background: #111; @global-success-background: #4BCA78; @global-warning-background: #FFA63B; @global-danger-background: #DA2550; @global-border-width: 1px; @global-border: #EDEDED; @global-border-radius: 3px; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.07); @global-medium-box-shadow: 0 4px 15px rgba(0,0,0,0.07); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.1); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.12); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 37px; @global-control-small-height: 30px; @global-control-large-height: 48px; @global-z-index: 1000; @base-body-font-weight: 300; @base-code-font-size: 12px; @base-code-color: @global-color; @base-em-color: @global-emphasis-color; @base-ins-color: @global-emphasis-color; @base-mark-color: @global-emphasis-color; @base-h1-font-size: 34px; @base-h2-font-size: 30px; @base-h5-font-size: 17px; @base-h6-font-size: 12px; @base-blockquote-font-size: 26px; @base-pre-font-size: 12px; @base-selection-background: #ACD5EA; @base-selection-color: @global-emphasis-color; @base-code-padding-horizontal: 4px; @base-code-padding-vertical: 2px; @base-code-background: @global-muted-background; @base-pre-padding: 10px; @base-pre-background: @global-muted-background; @base-blockquote-footer-em-dash: false; @base-h4-font-family: @global-primary-font-family; @base-h4-font-weight: @global-primary-font-weight; @base-h4-text-transform: @global-primary-text-transform; @base-h4-letter-spacing: @global-primary-letter-spacing; @base-h4-font-style: @global-primary-font-style; @base-h5-font-family: @global-primary-font-family; @base-h5-font-weight: @global-primary-font-weight; @base-h5-text-transform: @global-primary-text-transform; @base-h5-letter-spacing: @global-primary-letter-spacing; @base-h5-font-style: @global-primary-font-style; @base-h6-font-weight: 600; @base-h6-text-transform: uppercase; @base-h6-letter-spacing: 1px; @base-blockquote-footer-color: @global-muted-color; @base-blockquote-footer-font-weight: 300; @base-code-border-width: @global-border-width; @base-code-border: @global-border; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @base-code-border-radius: @global-border-radius; @base-pre-border-radius: @global-border-radius; @link-text-hover-color: @global-link-hover-color; @link-heading-hover-color: @global-color; @inverse-link-heading-hover-color: @inverse-global-color; @heading-small-font-size-m: 52px; @heading-medium-font-size-l: 67px; @heading-large-font-size-l: 90px; @heading-xlarge-font-size-l: 120px; @heading-2xlarge-font-size-l: 170px; @heading-medium-line-height: 1.2; @heading-large-line-height: 1.2; @heading-xlarge-line-height: 1.2; @heading-2xlarge-line-height: 1.2; @heading-3xlarge-line-height: 1.2; @divider-icon-width: 40px; @divider-icon-height: 10px; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-paladin/images/divider-icon.svg"; @divider-small-width: 80px; @divider-small-border-width: 3px; @divider-small-border: @global-secondary-background; @inverse-divider-icon-color: @inverse-global-emphasis-color; @list-bullet-icon-color: @global-secondary-background; @internal-list-bullet-image: "../../../../uikit-themes/master-paladin/images/list-bullet.svg"; @description-list-term-font-size: @global-medium-font-size; @description-list-term-font-family: @global-primary-font-family; @description-list-term-font-weight: @global-primary-font-weight; @description-list-term-text-transform: @global-primary-text-transform; @description-list-term-letter-spacing: @global-primary-letter-spacing; @description-list-term-font-style: @global-primary-font-style; @table-header-cell-font-size: 12px; @table-header-cell-font-weight: 600; @table-header-cell-color: @global-emphasis-color; @table-header-cell-letter-spacing: 1px; @icon-link-color: @global-emphasis-color; @icon-link-active-color: @global-muted-color; @icon-button-size: 30px; @icon-button-border-radius: @global-border-radius; @icon-button-background: @global-secondary-background; @icon-button-color: @global-inverse-color; @icon-button-hover-background: transparent; @icon-button-hover-color: @global-emphasis-color; @icon-button-active-background: transparent; @icon-button-border-width: @global-border-width; @icon-button-hover-border: @global-secondary-background; @icon-button-active-border: @global-color; @inverse-icon-button-background: @inverse-global-primary-background; @inverse-icon-button-color: @global-emphasis-color; @inverse-icon-button-hover-background: transparent; @inverse-icon-button-hover-color: @inverse-global-emphasis-color; @inverse-icon-button-active-background: transparent; @inverse-icon-button-hover-border: @inverse-global-primary-background; @inverse-icon-button-active-border: fade(@inverse-global-primary-background, 70%); @form-range-track-height: @global-border-width; @form-range-track-background: darken(@global-muted-background, 15%); @form-range-track-focus-background: @global-emphasis-color; @form-range-thumb-height: 12px; @form-range-thumb-background: @global-background; @form-range-thumb-border-width: @global-border-width; @form-range-thumb-border: @global-emphasis-color; @form-background: @global-background; @form-focus-background: @global-background; @form-large-font-size: @global-font-size; @form-radio-background: @global-background; @form-radio-focus-background: @global-background; @form-radio-checked-focus-background: lighten(@global-primary-background, 10%); @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: lighten(@global-secondary-background, 40%); @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @form-focus-border; @form-radio-border-width: @global-border-width; @form-radio-border: @global-border; @form-radio-focus-border: lighten(@global-secondary-background, 40%); @form-border-radius: @global-border-radius; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: fade(@inverse-global-primary-background, 70%); @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: fade(@inverse-global-primary-background, 70%); @button-font-size: @global-small-font-size; @button-small-font-size: 13px; @button-large-font-size: @global-font-size; @button-padding-horizontal: 20px; @button-large-padding-horizontal: 25px; @button-default-background: transparent; @button-default-hover-background: transparent; @button-default-active-background: transparent; @button-default-active-color: lighten(@button-default-hover-color, 25%); @button-primary-hover-background: transparent; @button-primary-hover-color: @global-primary-background; @button-primary-active-background: transparent; @button-primary-active-color: lighten(@button-primary-hover-color, 25%); @button-secondary-background: transparent; @button-secondary-color: @global-emphasis-color; @button-secondary-hover-background: @global-secondary-background; @button-secondary-active-background: lighten(@button-secondary-hover-background, 10%); @button-danger-background: transparent; @button-danger-color: @global-danger-background; @button-danger-hover-background: @global-danger-background; @button-danger-active-background: lighten(@button-danger-hover-background, 5%); @button-text-mode: ~''; @button-text-icon-mode: arrow; @internal-button-text-arrow-image: "../../../../uikit-themes/master-paladin/images/button-text-arrow.svg"; @button-border-width: @global-border-width; @button-default-border: @global-border; @button-default-hover-border: @global-secondary-background; @button-default-active-border: lighten(@button-default-hover-border, 25%); @button-primary-hover-border: @global-primary-background; @button-primary-active-border: lighten(@button-primary-hover-border, 25%); @button-secondary-border: @global-secondary-background; @button-danger-border: @global-danger-background; @button-border-radius: @global-border-radius; @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-emphasis-color; @inverse-button-default-hover-color: @inverse-global-emphasis-color; @inverse-button-default-active-color: @inverse-global-color; @inverse-button-primary-color: @global-emphasis-color; @inverse-button-primary-hover-background: transparent; @inverse-button-primary-hover-color: @inverse-global-emphasis-color; @inverse-button-primary-active-background: transparent; @inverse-button-primary-active-color: @inverse-global-color; @inverse-button-secondary-background: transparent; @inverse-button-secondary-color: @inverse-global-emphasis-color; @inverse-button-secondary-hover-background: @inverse-global-primary-background; @inverse-button-secondary-hover-color: @global-emphasis-color; @inverse-button-secondary-active-background: fade(@inverse-global-primary-background, 90%); @inverse-button-default-border: @inverse-global-border; @inverse-button-default-hover-border: @inverse-global-primary-background; @inverse-button-default-active-border: fade(@inverse-button-default-hover-border, 70%); @inverse-button-primary-hover-border: @inverse-global-primary-background; @inverse-button-primary-active-border: fade(@inverse-button-primary-hover-border, 70%); @inverse-button-secondary-border: @inverse-global-primary-background; @card-badge-height: 25px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-primary-hover-background: lighten(@card-primary-background, 3%); @card-secondary-hover-background: lighten(@card-secondary-background, 5%); @card-badge-border-radius: @global-border-radius; @card-hover-box-shadow: @global-small-box-shadow; @card-default-box-shadow: @global-small-box-shadow; @card-default-hover-box-shadow: @global-large-box-shadow; @card-primary-box-shadow: @global-small-box-shadow; @card-primary-hover-box-shadow: @global-large-box-shadow; @card-secondary-box-shadow: @global-small-box-shadow; @card-secondary-hover-box-shadow: @global-large-box-shadow; @close-color: inherit; @close-hover-color: @close-color; @totop-color: @global-emphasis-color; @totop-active-color: @global-muted-color; @inverse-totop-color: @inverse-global-emphasis-color; @inverse-totop-active-color: @inverse-global-muted-color; @alert-color: @global-emphasis-color; @alert-primary-background: #FFF631; @alert-primary-color: @global-emphasis-color; @alert-success-background: @global-success-background; @alert-success-color: @global-inverse-color; @alert-warning-background: @global-warning-background; @alert-warning-color: @global-inverse-color; @alert-danger-background: @global-danger-background; @alert-danger-color: @global-inverse-color; @alert-close-opacity: 1; @badge-size: 20px; @badge-font-size: 12px; @badge-font-weight: 600; @label-padding-vertical: 1px; @label-padding-horizontal: 9px; @label-border-radius: @global-border-radius; @overlay-default-background: fade(@global-background, 30%); @overlay-primary-background: fade(@global-secondary-background, 30%); @comment-primary-border-radius: @global-border-radius; @search-default-padding-horizontal: 0; @search-default-background: @global-background; @search-default-focus-background: @global-background; @search-navbar-background: transparent; @search-medium-padding-horizontal: 0; @search-medium-focus-background: @global-background; @search-large-padding-horizontal: 0; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: lighten(@global-secondary-background, 40%); @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: lighten(@global-secondary-background, 40%); @search-medium-border-mode: -bottom; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: lighten(@global-secondary-background, 40%); @search-large-border-mode: -bottom; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: lighten(@global-secondary-background, 40%); @search-navbar-border-radius: @global-border-radius; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-navbar-background: transparent; @inverse-search-navbar-focus-background: transparent; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: fade(@inverse-global-primary-background, 70%); @inverse-search-navbar-border: @inverse-global-border; @inverse-search-navbar-focus-border: fade(@inverse-global-primary-background, 70%); @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: fade(@inverse-global-primary-background, 70%); @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: fade(@inverse-global-primary-background, 70%); @accordion-title-font-size: @global-large-font-size; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 5px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 5px)'; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-box-shadow: @global-small-box-shadow; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 2px 0 -1px @global-border; @dropbar-bottom-box-shadow: 0 -2px 0 -1px @global-border; @dropbar-left-box-shadow: 2px 0 0 -1px @global-border; @dropbar-right-box-shadow: -2px 0 0 -1px @global-border; @offcanvas-bar-padding-vertical: 30px; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-bar-padding-vertical-s: 40px; @offcanvas-overlay-background: fade(@global-secondary-background, 15%); @notification-message-background: @global-background; @notification-message-color: @global-emphasis-color; @notification-message-primary-color: @global-primary-background; @notification-message-success-color: @global-success-background; @notification-message-warning-color: @global-warning-background; @notification-message-danger-color: @global-danger-background; @notification-message-primary-background: @global-background; @notification-message-success-background: @global-background; @notification-message-warning-background: @global-background; @notification-message-danger-background: @global-background; @notification-message-primary-color-mode: dark; @notification-message-success-color-mode: dark; @notification-message-warning-color-mode: dark; @notification-message-danger-color-mode: dark; @notification-message-border-width: @global-border-width; @notification-message-border: @global-secondary-background; @notification-message-primary-border: @global-primary-background; @notification-message-success-border: @global-success-background; @notification-message-warning-border: @global-warning-background; @notification-message-danger-border: @global-danger-background; @notification-message-border-radius: @global-border-radius; @notification-message-box-shadow: @global-medium-box-shadow; @tooltip-background: @global-secondary-background; @nav-header-font-size: 12px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-primary-font-size: @global-xlarge-font-size; @nav-primary-line-height: 1.3; @nav-primary-item-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-header-color: @global-primary-background; @nav-primary-sublist-item-color: @global-color; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-secondary-item-color: @global-color; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-subtitle-active-color: @global-primary-background; @nav-secondary-sublist-font-size: @global-font-size; @nav-medium-line-height: 1.2; @nav-medium-font-size-l: 67px; @nav-large-line-height: 1.2; @nav-large-font-size-l: 90px; @nav-xlarge-line-height: 1.2; @nav-xlarge-font-size-l: 120px; @nav-secondary-margin-top: 15px; @nav-header-font-weight: 600; @nav-header-letter-spacing: 1px; @nav-default-subtitle-color: @global-muted-color; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-line-height: 1.5; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-nav-item-height: 60px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-hover-color: @global-primary-background; @navbar-nav-item-onclick-color: lighten(@global-primary-background, 10%); @navbar-nav-item-active-color: @global-primary-background; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-primary-background; @navbar-dropdown-margin: @navbar-dropdown-border-width; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-width: 250px; @navbar-dropdown-padding: @global-gutter; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-color: @global-color; @navbar-dropdown-nav-item-hover-color: @global-primary-background; @navbar-dropdown-nav-sublist-item-hover-color: @global-emphasis-color; @navbar-gap-m: 60px; @navbar-nav-gap-m: 60px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: -2px; @navbar-nav-item-line-height: 0; @navbar-nav-item-line-background: @global-primary-background; @navbar-nav-item-line-hover-height: 2px; @navbar-nav-item-line-onclick-height: 2px; @navbar-nav-item-line-onclick-background: lighten(@global-primary-background, 10%); @navbar-nav-item-line-active-height: 2px; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-line-height: 1.4; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-mode: rail; @navbar-border-width: 2px; @navbar-border: @global-border; @navbar-dropdown-border-width: @global-border-width; @navbar-dropdown-border: @global-border; .hook-navbar() when (@navbar-mode = rail) and not (@navbar-border-width = 0) { // Smaller border .tm-header .tm-headerbar-top + * & { border-top-width: @global-border-width; } } .hook-navbar-nav-item() when (@navbar-nav-item-line-mode) { z-index: @drop-z-index + 1; } @inverse-navbar-nav-item-color: @inverse-global-color; @inverse-navbar-nav-item-hover-color: @inverse-global-emphasis-color; @inverse-navbar-nav-item-onclick-color: @inverse-global-color; @inverse-navbar-nav-item-line-onclick-background: fade(@inverse-global-primary-background, 60%); @inverse-navbar-border: @inverse-global-border; @subnav-margin-horizontal: 25px; @subnav-item-hover-color: @global-primary-background; @subnav-divider-margin-horizontal: 15px; @subnav-pill-item-padding-horizontal: 15px; @subnav-pill-item-color: @global-emphasis-color; @subnav-pill-item-hover-background: transparent; @subnav-pill-item-hover-color: darken(@subnav-pill-item-color, 10%); @subnav-pill-item-onclick-background: transparent; @subnav-pill-item-active-background: transparent; @subnav-pill-item-active-color: @global-primary-background; @subnav-pill-item-border-width: @global-border-width; @subnav-pill-item-border: @global-border; @subnav-pill-item-hover-border: fade(@global-emphasis-color, 70%); @subnav-pill-item-onclick-border: fade(@global-emphasis-color, 30%); @subnav-pill-item-active-border: @global-primary-background; @subnav-pill-item-border-radius: @global-border-radius; @subnav-pill-margin-horizontal: 15px; .hook-subnav-misc() { .uk-subnav-pill > * { padding-left: @subnav-pill-margin-horizontal; } } @inverse-subnav-pill-item-hover-background: transparent; @inverse-subnav-pill-item-onclick-color: @inverse-global-muted-color; @inverse-subnav-pill-item-active-background: transparent; @inverse-subnav-pill-item-active-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-border: @inverse-global-border; @inverse-subnav-pill-item-hover-border: fade(@inverse-global-primary-background, 90%); @inverse-subnav-pill-item-onclick-border: fade(@inverse-global-primary-background, 60%); @inverse-subnav-pill-item-active-border: @inverse-global-primary-background; @breadcrumb-divider: "∙"; @breadcrumb-divider-margin-horizontal: 10px; @pagination-margin-horizontal: 16px; @pagination-item-padding-vertical: 0; @pagination-item-padding-horizontal: 2px; @pagination-item-active-color: @global-emphasis-color; @pagination-item-font-size: @global-small-font-size; @pagination-item-border-mode: -bottom; @pagination-item-border-width: @global-border-width; @pagination-item-active-border: @pagination-item-active-color; @inverse-pagination-item-active-border: @inverse-global-primary-background; @tab-margin-horizontal: @global-gutter; @tab-item-padding-horizontal: 0; @tab-vertical-item-padding-horizontal: @global-gutter; @tab-vertical-item-padding-vertical: 8px; @tab-item-font-size: 12px; @tab-item-font-weight: 600; @tab-item-text-transform: uppercase; @tab-item-letter-spacing: 1px; @tab-item-active-border: @global-secondary-background; @slidenav-padding-vertical: 12.5px; @slidenav-padding-horizontal: 14px; @slidenav-color: fade(@global-emphasis-color, 90%); @slidenav-hover-color: @global-emphasis-color; @slidenav-active-color: @global-emphasis-color; @slidenav-large-padding-vertical: 20px; @slidenav-large-padding-horizontal: 24px; @slidenav-background: fade(@global-secondary-background, 5%); @slidenav-hover-background: fade(@global-secondary-background, 20%); @slidenav-active-background: fade(@global-secondary-background, 15%); @slidenav-border-width: @global-border-width; @slidenav-border: fade(@global-secondary-background, 50%); @slidenav-hover-border: fade(@global-secondary-background, 70%); @slidenav-active-border: fade(@global-secondary-background, 65%); @slidenav-border-radius: 50%; @inverse-slidenav-color: fade(@inverse-global-emphasis-color, 90%); @inverse-slidenav-hover-color: @inverse-global-emphasis-color; @inverse-slidenav-active-color: @inverse-global-emphasis-color; @inverse-slidenav-background: fade(@inverse-global-primary-background, 20%); @inverse-slidenav-hover-background: fade(@inverse-global-primary-background, 30%); @inverse-slidenav-active-background: fade(@inverse-global-primary-background, 25%); @inverse-slidenav-border: fade(@inverse-global-primary-background, 60%); @inverse-slidenav-hover-border: @inverse-global-primary-background; @inverse-slidenav-active-border: fade(@inverse-global-primary-background, 70%); @inverse-slidenav-active-border: fade(@inverse-global-primary-background, 65%); @dotnav-item-background: transparent; @dotnav-item-hover-background: fade(@global-secondary-background, 5%); @dotnav-item-onclick-background: @global-secondary-background; @dotnav-item-active-background: @global-secondary-background; @dotnav-item-border-width: @global-border-width; @dotnav-item-border: #DDD; @dotnav-item-hover-border: @global-secondary-background; @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-hover-background: fade(@inverse-global-primary-background, 40%); @inverse-dotnav-item-onclick-background: @inverse-global-primary-background; @inverse-dotnav-item-border: @inverse-global-primary-background; @inverse-dotnav-item-hover-border: @inverse-global-primary-background; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-primary-background; @iconnav-item-active-color: @iconnav-item-hover-color; @text-lead-font-size: 22px; @text-lead-line-height: 1.45; @text-lead-color: @global-color; @text-large-font-size: @global-medium-font-size; @inverse-text-lead-color: @inverse-global-emphasis-color; @dropcap-margin-right: 12px; @dropcap-font-size: ((@global-line-height * 3.4) * 1em); @dropcap-line-height: 0.89; @logo-font-size: @global-2xlarge-font-size; @logo-font-family: @global-primary-font-family; @dropcap-color: @global-emphasis-color; @dropcap-font-family: @global-primary-font-family; @dropcap-font-weight: @global-primary-font-weight; @dropcap-text-transform: uppercase; @dropcap-letter-spacing: @global-primary-letter-spacing; @dropcap-font-style: @global-primary-font-style; @inverse-dropcap-color: @inverse-global-emphasis-color; @inverse-global-color: fade(@global-inverse-color, 80%); @inverse-global-muted-color: fade(@global-inverse-color, 60%); @inverse-global-inverse-color: @global-emphasis-color;assets/uikit-themes/master-design-escapes/_import.less000064400000065552151666572400017233 0ustar00@internal-fonts: 'Heebo:400,500,600|IBM+Plex+Sans:400,500'; @global-font-family: 'IBM Plex Sans'; @global-font-size: 16px; @global-line-height: 1.75; @global-xxlarge-font-size: 40px; @global-xlarge-font-size: 32px; @global-large-font-size: 26px; @global-medium-font-size: 22px; @global-small-font-size: 14px; @global-primary-font-family: Heebo; @global-primary-font-weight: 600; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: Heebo; @global-secondary-font-weight: 500; @global-secondary-text-transform: uppercase; @global-secondary-letter-spacing: 2px; @global-secondary-font-style: inherit; @global-color: #666; @global-emphasis-color: #000; @global-muted-color: #999; @global-link-color: #008776; @global-link-hover-color: darken(@global-link-color, 8%); @global-inverse-color: #FFF; @global-background: #FFF; @global-muted-background: #F8F8F8; @global-primary-background: #008776; @global-secondary-background: #000; @global-success-background: #34B277; @global-warning-background: #F5D161; @global-danger-background: #E53F5F; @global-border-width: 1px; @global-border: #E8E8E8; @global-border-radius: 0; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.06); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.06); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.06); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.06); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 44px; @global-control-small-height: 34px; @global-control-large-height: 50px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-ins-background: fade(@global-primary-background, 10%); @base-ins-color: @global-emphasis-color; @base-mark-background: fade(@global-primary-background, 10%); @base-mark-color: @global-emphasis-color; @base-h5-font-size: 17px; @base-h6-font-size: 13px; @base-selection-background: @global-primary-background; @base-h4-font-family: @global-primary-font-family; @base-h4-font-weight: @global-primary-font-weight; @base-h4-text-transform: @global-primary-text-transform; @base-h4-letter-spacing: @global-primary-letter-spacing; @base-h4-font-style: @global-primary-font-style; @base-h5-font-family: @global-primary-font-family; @base-h5-font-weight: @global-primary-font-weight; @base-h5-text-transform: @global-primary-text-transform; @base-h5-letter-spacing: @global-primary-letter-spacing; @base-h5-font-style: @global-primary-font-style; @inverse-base-link-hover-color: @inverse-global-color; @link-text-hover-color: @global-emphasis-color; @inverse-link-text-hover-color: @global-inverse-color; @heading-bullet-border: @global-primary-background; @inverse-heading-bullet-border: @inverse-global-primary-background; @divider-icon-color: @global-emphasis-color; @internal-divider-icon-image: "../../../../uikit-themes/master-design-escapes/images/divider-icon.svg"; @divider-small-width: 70px; @divider-small-border-width: 2px; @divider-small-border: @global-primary-background; @inverse-divider-icon-color: @global-inverse-color; @inverse-divider-small-border: @global-inverse-color; @list-bullet-icon-color: @global-primary-background; @list-divider-margin-top: 12px; @inverse-list-bullet-icon-color: @global-inverse-color; @description-list-term-font-family: @global-primary-font-family; @description-list-term-font-weight: @global-primary-font-weight; @description-list-term-text-transform: @global-primary-text-transform; @description-list-term-letter-spacing: @global-primary-letter-spacing; @description-list-term-font-style: @global-primary-font-style; @table-header-cell-font-weight: 500; @table-header-cell-color: @global-emphasis-color; @table-row-active-background: fade(@global-primary-background, 5%); @icon-link-color: @global-emphasis-color; @icon-link-hover-color: @global-primary-background; @icon-link-active-color: darken(@global-primary-background, 5%); @icon-button-size: 38px; @icon-button-background: transparent; @icon-button-color: @global-primary-background; @icon-button-hover-background: @global-primary-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: darken(@global-primary-background, 5%); @icon-button-active-color: @global-inverse-color; @icon-button-border-width: @global-border-width; @icon-button-border: @global-primary-background; @inverse-icon-link-color: @global-inverse-color; @inverse-icon-link-active-color: @inverse-global-muted-color; @inverse-icon-button-background: transparent; @inverse-icon-button-color: @inverse-global-primary-background; @inverse-icon-button-hover-background: @inverse-global-primary-background; @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-background: darken(@inverse-global-primary-background, 10%); @inverse-icon-button-active-color: @inverse-global-inverse-color; @inverse-icon-button-border: @inverse-global-primary-background; @form-range-thumb-height: 13px; @form-range-thumb-background: @global-primary-background; @form-padding-horizontal: 20px; @form-focus-color: @global-emphasis-color; @form-small-padding-horizontal: 10px; @form-large-padding-horizontal: 25px; @form-select-icon-color: @global-emphasis-color; @form-select-option-color: @global-emphasis-color; @form-datalist-icon-color: @global-emphasis-color; @form-icon-width: 40px; @form-icon-color: @global-color; @form-icon-hover-color: @global-emphasis-color; @form-label-font-size: 13px; @form-border-width: @global-border-width; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-border-radius: 500px; @form-multi-line-border-radius: 0; @inverse-form-focus-background: fade(@global-inverse-color, 20%); @inverse-form-focus-color: @global-inverse-color; @inverse-form-icon-color: @inverse-global-color; @inverse-form-icon-hover-color: @global-inverse-color; @button-small-font-size: 13px; @button-large-font-size: 17px; @button-default-background: transparent; @button-default-color: @global-primary-background; @button-default-hover-background: @global-primary-background; @button-default-hover-color: @global-inverse-color; @button-default-active-background: darken(@global-primary-background, 10%); @button-default-active-color: @global-inverse-color; @button-primary-hover-background: darken(@button-primary-background, 10%); @button-primary-active-background: darken(@button-primary-background, 15%); @button-secondary-background: transparent; @button-secondary-color: @global-emphasis-color; @button-secondary-hover-background: @global-secondary-background; @button-secondary-active-background: lighten(@global-secondary-background, 20%); @button-text-hover-color: @global-primary-background; @button-link-color: @global-primary-background; @button-link-hover-color: @global-emphasis-color; @button-transition-duration: 0.2s; @button-text-mode: ~''; @button-text-icon-mode: dash; @button-text-border-width: 2px; @button-text-border: @global-primary-background; @button-text-hover-border: @button-text-border; @button-font-family: @global-primary-font-family; @button-font-weight: @global-primary-font-weight; @button-text-transform: @global-primary-text-transform; @button-letter-spacing: @global-primary-letter-spacing; @button-font-style: @global-primary-font-style; @button-border-width: @global-border-width; @button-default-border: @global-primary-background; @button-secondary-border: @global-border; @button-border-radius: 500px; @inverse-button-default-background: transparent; @inverse-button-default-color: @global-inverse-color; @inverse-button-default-hover-background: @inverse-global-primary-background; @inverse-button-default-active-background: darken(@inverse-global-primary-background, 10%); @inverse-button-secondary-background: transparent; @inverse-button-secondary-color: @global-inverse-color; @inverse-button-secondary-hover-background: @inverse-global-primary-background; @inverse-button-secondary-active-background: darken(@inverse-global-primary-background, 10%); @inverse-button-text-color: @global-inverse-color; @inverse-button-text-hover-color: @global-inverse-color; @inverse-button-link-hover-color: @inverse-global-color; @inverse-button-default-border: @inverse-global-primary-background; @inverse-button-secondary-border: fade(@global-inverse-color, 40%); @progress-height: 6px; @progress-bar-background: @global-secondary-background; @card-badge-height: 26px; @card-badge-padding-horizontal: 12px; @card-badge-font-size: 12px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @card-default-background; @card-secondary-background: @global-background; @card-secondary-color: @global-color; @card-secondary-title-color: @global-emphasis-color; @card-secondary-hover-background: @card-secondary-background; @card-secondary-color-mode: dark; @card-badge-letter-spacing: 1px; @card-secondary-border-width: @global-border-width; @card-secondary-border: @global-border; @card-secondary-hover-border: @global-secondary-background; @card-badge-border-radius: 500px; @card-hover-box-shadow: @global-medium-box-shadow; @card-default-box-shadow: @global-medium-box-shadow; @card-default-hover-box-shadow: @global-large-box-shadow; @close-color: @global-emphasis-color; @inverse-close-color: @global-inverse-color; @marker-padding: 10px; @marker-background: @global-primary-background; @marker-hover-background: @global-secondary-background; @inverse-marker-background: @global-inverse-color; @inverse-marker-color: @global-emphasis-color; @inverse-marker-hover-color: @global-emphasis-color; @inverse-marker-hover-background: fade(@global-inverse-color, 70%); @totop-padding: 20px; @totop-color: @global-inverse-color; @totop-hover-color: @global-inverse-color; @totop-active-color: @global-inverse-color; @totop-background: @global-secondary-background; @totop-hover-background: @global-primary-background; @totop-active-background: darken(@global-primary-background, 5%); @totop-border-radius: 500px; @inverse-totop-color: @inverse-global-inverse-color; @inverse-totop-hover-color: @inverse-global-inverse-color; @inverse-totop-active-color: @inverse-global-inverse-color; @inverse-totop-background: @global-inverse-color; @inverse-totop-hover-background: fade(@global-inverse-color, 90%); @inverse-totop-active-background: fade(@global-inverse-color, 70%); @alert-primary-background: @global-primary-background; @alert-primary-color: @global-inverse-color; @alert-success-background: @global-success-background; @alert-success-color: @global-inverse-color; @alert-warning-background: @global-warning-background; @alert-warning-color: @global-inverse-color; @alert-danger-background: @global-danger-background; @alert-danger-color: @global-inverse-color; @badge-size: 20px; @badge-font-size: 12px; @badge-font-weight: @global-primary-font-weight; @badge-font-family: @global-primary-font-family; @badge-font-style: @global-primary-font-style; @label-padding-horizontal: 12px; @label-line-height: 1.9; @label-font-size: 12px; @label-letter-spacing: 1px; @label-border-radius: 500px; @overlay-default-background: fade(@global-background, 30%); @overlay-primary-background: fade(@global-primary-background, 30%); @overlay-primary-color-mode: dark; @article-meta-font-family: @global-font-family; @article-meta-font-weight: 400; @article-meta-text-transform: none; @article-meta-letter-spacing: 0; @article-meta-font-style: inherit; @comment-title-font-size: 17px; @comment-meta-font-family: @global-font-family; @comment-meta-font-weight: 400; @comment-meta-text-transform: none; @comment-meta-letter-spacing: 0; @comment-meta-font-style: normal; @search-color: @global-emphasis-color; @search-default-padding-horizontal: 16px; @search-navbar-padding-horizontal: 16px; @search-navbar-background: @global-muted-background; @search-navbar-focus-background: darken(@search-navbar-background, 2%); @search-medium-padding-horizontal: 20px; @search-large-padding-horizontal: 30px; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-primary-background; @search-default-border-radius: 500px; @search-navbar-border-radius: 500px; @search-medium-border-radius: 500px; @search-large-border-radius: 500px; @accordion-item-margin-top: 25px; @accordion-title-font-size: 1.15rem; @accordion-title-hover-color: @global-primary-background; @accordion-icon-color: @global-emphasis-color; @internal-accordion-icon-close-image: "../../../../uikit-themes/master-design-escapes/images/accordion-close.svg"; @internal-accordion-icon-open-image: "../../../../uikit-themes/master-design-escapes/images/accordion-open.svg"; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @inverse-accordion-icon-color: @global-inverse-color; @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 6px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 6px)'; @dropdown-nav-item-color: @global-emphasis-color; @dropdown-nav-item-hover-color: @global-primary-background; @dropdown-nav-subtitle-font-size: 13px; @dropdown-nav-sublist-item-color: @global-emphasis-color; @dropdown-nav-sublist-item-hover-color: @global-primary-background; @dropdown-nav-sublist-padding-left: 12px; @dropdown-nav-font-family: @global-primary-font-family; @dropdown-nav-font-weight: 400; @dropdown-nav-text-transform: @global-primary-text-transform; @dropdown-nav-letter-spacing: @global-primary-letter-spacing; @dropdown-nav-font-style: @global-primary-font-style; @dropdown-box-shadow: @global-medium-box-shadow; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 17px 22px -14px rgba(0, 0, 0, 0.06); @dropbar-bottom-box-shadow: 0 -17px 22px -14px rgba(0, 0, 0, 0.06); @dropbar-left-box-shadow: 17px 0 22px -14px rgba(0, 0, 0, 0.06); @dropbar-right-box-shadow: -17px 0 22px -14px rgba(0, 0, 0, 0.06); @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-overlay-background: rgba(0, 0, 0, 0.6); @notification-message-background: @global-background; @notification-message-color: @global-emphasis-color; @notification-message-primary-color: @global-primary-background; @notification-message-success-color: @global-success-background; @notification-message-warning-color: @global-warning-background; @notification-message-danger-color: @global-danger-background; @notification-message-primary-background: @global-background; @notification-message-success-background: @global-background; @notification-message-warning-background: @global-background; @notification-message-danger-background: @global-background; @notification-message-box-shadow: @global-medium-box-shadow; @tooltip-padding-vertical: 4px; @tooltip-padding-horizontal: 8px; @tooltip-background: @global-secondary-background; @countdown-item-font-weight: 500; @nav-sublist-item-padding-vertical: 4px; @nav-header-font-size: 13px; @nav-divider-margin-vertical: 9px; @nav-default-line-height: 1.5; @nav-default-item-color: @global-emphasis-color; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @nav-default-item-hover-color; @nav-default-header-color: @global-primary-background; @nav-default-sublist-item-color: @global-emphasis-color; @nav-default-sublist-item-hover-color: @global-primary-background; @nav-default-sublist-item-active-color: @nav-default-sublist-item-hover-color; @nav-primary-font-size: 20px; @nav-primary-line-height: 1.4; @nav-primary-item-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @nav-primary-item-hover-color; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-header-color: @global-primary-background; @nav-primary-sublist-font-size: @global-font-size; @nav-primary-sublist-line-height: 1.4; @nav-primary-sublist-item-color: @global-emphasis-color; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-primary-sublist-item-active-color: @nav-primary-sublist-item-hover-color; @nav-secondary-line-height: 1.4; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-header-color: @global-primary-background; @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-secondary-sublist-line-height: 1.5; @nav-secondary-sublist-item-color: @global-emphasis-color; @nav-secondary-sublist-item-hover-color: @global-primary-background; @nav-secondary-sublist-item-active-color: @global-primary-background; @nav-dividers-margin-top: 9px; @nav-primary-item-padding-vertical: 7px; @nav-secondary-margin-top: 15px; @nav-header-font-weight: @global-primary-font-weight; @nav-default-font-family: @global-primary-font-family; @nav-default-font-weight: 400; @nav-default-text-transform: @global-primary-text-transform; @nav-default-letter-spacing: @global-primary-letter-spacing; @nav-default-font-style: @global-primary-font-style; @nav-default-subtitle-font-family: @global-font-family; @nav-default-subtitle-line-height: 1.5; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-font-weight: 400; @nav-primary-subtitle-line-height: 1.5; @nav-secondary-text-transform: none; @nav-secondary-letter-spacing: normal; @nav-secondary-subtitle-font-family: @global-font-family; @nav-secondary-subtitle-font-weight: 400; @nav-secondary-subtitle-text-transform: none; @nav-secondary-subtitle-letter-spacing: normal; @nav-secondary-subtitle-line-height: 1.5; @inverse-nav-default-item-color: @inverse-global-color; @inverse-nav-default-item-hover-color: @global-inverse-color; @inverse-nav-default-sublist-item-color: @inverse-global-color; @inverse-nav-default-sublist-item-hover-color: @global-inverse-color; @inverse-nav-primary-item-color: @inverse-global-color; @inverse-nav-primary-item-hover-color: @global-inverse-color; @inverse-nav-primary-sublist-item-color: @inverse-global-color; @inverse-nav-primary-sublist-item-hover-color: @global-inverse-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-font-family: @global-primary-font-family; @navbar-nav-item-hover-color: @global-primary-background; @navbar-nav-item-onclick-color: @navbar-nav-item-hover-color; @navbar-nav-item-active-color: @navbar-nav-item-hover-color; @navbar-item-color: @global-emphasis-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-primary-background; @navbar-subtitle-font-size: 0.775rem; @navbar-dropdown-margin: 1px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 25px; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-dropbar-padding-top: 25px; @navbar-dropdown-dropbar-large-padding-top: 70px; @navbar-dropdown-nav-item-color: @global-emphasis-color; @navbar-dropdown-nav-item-hover-color: @global-primary-background; @navbar-dropdown-nav-item-active-color: @navbar-dropdown-nav-item-hover-color; @navbar-dropdown-nav-subtitle-font-size: 13px; @navbar-dropdown-nav-sublist-item-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-primary-background; @navbar-dropdown-nav-sublist-item-active-color: @navbar-dropdown-nav-sublist-item-hover-color; @navbar-gap-m: 40px; @navbar-nav-gap-m: 40px; @navbar-nav-item-padding-horizontal-m: 0; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: -1px; @navbar-nav-item-line-height: 3px; @navbar-nav-item-line-background: @global-primary-background; @navbar-nav-item-line-transition-duration: 0.3s; @navbar-nav-item-line-hover-height: 3px; @navbar-nav-item-line-onclick-height: 3px; @navbar-nav-item-line-active-height: 3px; @navbar-primary-gap-m: 45px; @navbar-primary-nav-gap-m: 45px; @navbar-dropdown-nav-divider-margin-vertical: 10px; @navbar-dropdown-nav-sublist-padding-left: 12px; @navbar-nav-item-font-weight: 400; @navbar-nav-item-text-transform: @global-primary-text-transform; @navbar-nav-item-letter-spacing: @global-primary-letter-spacing; @navbar-nav-item-font-style: @global-primary-font-style; @navbar-primary-nav-item-font-size: 19px; @navbar-dropdown-nav-font-family: @global-primary-font-family; @navbar-dropdown-nav-font-weight: 400; @navbar-dropdown-nav-text-transform: @global-primary-text-transform; @navbar-dropdown-nav-letter-spacing: @global-primary-letter-spacing; @navbar-dropdown-nav-font-style: @global-primary-font-style; @navbar-mode: border; @navbar-border-width: @global-border-width; @navbar-border: @global-border; @navbar-dropdown-box-shadow: 1px 10px 20px 0 rgba(0, 0, 0, 0.03); @inverse-navbar-nav-item-color: @inverse-global-color; @inverse-navbar-nav-item-hover-color: @global-inverse-color; @inverse-navbar-nav-item-line-background: @inverse-global-primary-background; @subnav-margin-horizontal: 15px; @subnav-item-color: @global-emphasis-color; @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; @subnav-divider-border-height: 0.8em; @subnav-pill-item-padding-horizontal: 18px; @subnav-pill-item-background: @global-muted-background; @subnav-pill-item-color: @global-emphasis-color; @subnav-pill-item-hover-background: darken(@global-muted-background, 5%); @subnav-pill-item-hover-color: darken(@global-emphasis-color, 10%); @subnav-item-font-size: 15px; @subnav-item-font-family: @global-primary-font-family; @subnav-item-font-weight: @global-primary-font-weight; @subnav-item-text-transform: @global-primary-text-transform; @subnav-item-letter-spacing: @global-primary-letter-spacing; @subnav-item-font-style: @global-primary-font-style; @subnav-pill-item-border-radius: 500px; @inverse-subnav-item-color: @inverse-global-color; @inverse-subnav-item-hover-color: @global-inverse-color; @inverse-subnav-item-active-color: @global-inverse-color; @inverse-subnav-pill-item-background: @inverse-global-muted-background; @inverse-subnav-pill-item-color: @global-inverse-color; @inverse-subnav-pill-item-hover-background: fade(@global-inverse-color, 20%); @inverse-subnav-pill-item-hover-color: @global-inverse-color; @breadcrumb-item-hover-color: @global-primary-background; @breadcrumb-item-active-color: @global-emphasis-color; @breadcrumb-divider: "·"; @breadcrumb-divider-margin-horizontal: @global-small-margin; @breadcrumb-item-font-family: @global-font-family; @breadcrumb-item-font-weight: 400; @breadcrumb-item-text-transform: none; @breadcrumb-item-letter-spacing: 0; @breadcrumb-item-font-style: inherit; @pagination-margin-horizontal: @global-small-margin; @pagination-item-padding-vertical: 4px; @pagination-item-color: @global-emphasis-color; @pagination-item-hover-color: @global-emphasis-color; @pagination-item-active-color: @global-inverse-color; @pagination-item-min-width: 40px; @pagination-item-height: 40px; @pagination-item-hover-background: @global-muted-background; @pagination-item-active-background: @global-primary-background; @pagination-item-font-family: @global-primary-font-family; @pagination-item-font-weight: 400; @pagination-item-text-transform: @global-primary-text-transform; @pagination-item-letter-spacing: @global-primary-letter-spacing; @pagination-item-font-style: @global-primary-font-style; @pagination-item-border-radius: 500px; @inverse-pagination-item-color: @global-inverse-color; @inverse-pagination-item-hover-color: @global-inverse-color; @inverse-pagination-item-active-color: @inverse-global-inverse-color; @inverse-pagination-item-hover-background: @inverse-global-muted-background; @inverse-pagination-item-active-background: @inverse-global-primary-background; @tab-item-padding-horizontal: 15px; @tab-item-padding-vertical: 10px; @tab-item-color: @global-emphasis-color; @tab-item-hover-color: @global-primary-background; @tab-item-active-color: @global-primary-background; @tab-vertical-item-padding-horizontal: 15px; @tab-vertical-item-padding-vertical: 10px; @tab-item-font-family: @global-primary-font-family; @tab-item-font-weight: @global-primary-font-weight; @tab-item-text-transform: @global-primary-text-transform; @tab-item-letter-spacing: @global-primary-letter-spacing; @tab-item-font-style: @global-primary-font-style; @tab-border-width: 0; @tab-item-border-width: 2px; @inverse-tab-item-color: @inverse-global-color; @inverse-tab-item-hover-color: @inverse-global-emphasis-color; @slidenav-padding-vertical: 10px; @slidenav-color: @global-emphasis-color; @slidenav-hover-color: @global-inverse-color; @slidenav-active-color: @global-inverse-color; @slidenav-large-padding-vertical: 14px; @slidenav-background: fade(@global-secondary-background, 7%); @slidenav-hover-background: @global-primary-background; @slidenav-active-background: darken(@global-primary-background, 5%); @slidenav-border-radius: 500px; @inverse-slidenav-color: @global-inverse-color; @inverse-slidenav-hover-color: @global-inverse-color; @inverse-slidenav-background: fade(@inverse-global-primary-background, 30%); @inverse-slidenav-hover-background: @global-primary-background; @inverse-slidenav-active-background: lighten(@global-primary-background, 3%); @dotnav-margin-horizontal: 8px; @dotnav-margin-vertical: 10px; @dotnav-item-width: 34px; @dotnav-item-height: 5px; @dotnav-item-border-radius: 0; @dotnav-item-background: fade(@global-secondary-background, 20%); @dotnav-item-hover-background: fade(@global-secondary-background, 60%); @dotnav-item-onclick-background: fade(@global-secondary-background, 20%); @dotnav-item-active-background: @global-secondary-background; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-primary-background; @iconnav-item-active-color: @global-primary-background; @text-lead-font-size: 1.25rem; @text-large-font-size: @global-medium-font-size; @text-meta-link-color: @global-link-color; @text-meta-link-hover-color: @global-link-hover-color; @text-meta-font-family: @global-font-family; @text-meta-font-weight: 400; @text-meta-text-transform: none; @text-meta-letter-spacing: 0; @text-meta-font-style: inherit; @border-rounded-border-radius: 7px; @box-shadow-bottom-background: rgba(0,0,0,0.2); @logo-font-size: 20px; @logo-font-family: @global-primary-font-family; @logo-color: @global-primary-background; @logo-hover-color: @logo-color; @dragover-box-shadow: 0 10px 20px 0 rgba(100,100,100,0.06); @dropcap-color: @global-emphasis-color; @logo-font-weight: 400; @logo-text-transform: @global-primary-text-transform; @logo-letter-spacing: @global-primary-letter-spacing; @transition-scale: 1.02; @inverse-global-inverse-color: @global-emphasis-color; @inverse-global-muted-background: fade(@global-inverse-color, 15%);assets/uikit-themes/master-design-escapes/images/divider-icon.svg000064400000000333151666572400021216 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="10 4.3 5.7 4.3 5.7 0 4.3 0 4.3 4.3 0 4.3 0 5.7 4.3 5.7 4.3 10 5.7 10 5.7 5.7 10 5.7 10 4.3" /> </svg> assets/uikit-themes/master-design-escapes/images/accordion-open.svg000064400000000230151666572400021536 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <rect width="13" height="1.5" fill="#000" x="0" y="6" /> </svg> assets/uikit-themes/master-design-escapes/images/accordion-close.svg000064400000000325151666572400021707 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <rect width="13" height="1.5" fill="#000" x="0" y="6" /> <rect width="1.5" height="13" fill="#000" x="6" y="0" /> </svg> assets/uikit-themes/master-design-escapes/icons/close-icon.svg000064400000000413151666572400020542 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.8" x1="1" y1="1" x2="13" y2="13" /> <line fill="none" stroke="#000" stroke-width="1.8" x1="13" y1="1" x2="1" y2="13" /> </svg> assets/uikit-themes/master-design-escapes/icons/nav-parent-icon-large.svg000064400000000260151666572400022600 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-design-escapes/icons/totop.svg000064400000000265151666572400017661 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="13.7 5.9 12.3 7.3 9 4 9 16 7 16 7 4 3.7 7.3 2.3 5.9 8 0 13.7 5.9" /> </svg> assets/uikit-themes/master-design-escapes/icons/slidenav-previous-large.svg000064400000000255151666572400023262 0ustar00<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M12,7,3,15l9,8m16-8H3" /> </svg> assets/uikit-themes/master-design-escapes/icons/marker.svg000064400000000333151666572400017771 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="12 5.3 6.7 5.3 6.7 0 5.3 0 5.3 5.3 0 5.3 0 6.7 5.3 6.7 5.3 12 6.7 12 6.7 6.7 12 6.7 12 5.3" /> </svg> assets/uikit-themes/master-design-escapes/icons/close-large.svg000064400000000413151666572400020704 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.8" x1="1" y1="1" x2="19" y2="19" /> <line fill="none" stroke="#000" stroke-width="1.8" x1="19" y1="1" x2="1" y2="19" /> </svg> assets/uikit-themes/master-design-escapes/icons/slidenav-next.svg000064400000000255151666572400021274 0ustar00<svg width="22" height="22" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M13,17l6-6L13,5m6,6H2" /> </svg> assets/uikit-themes/master-design-escapes/icons/slidenav-previous.svg000064400000000254151666572400022171 0ustar00<svg width="22" height="22" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M9,5,3,11l6,6m11-6H3" /> </svg> assets/uikit-themes/master-design-escapes/icons/slidenav-next-large.svg000064400000000255151666572400022364 0ustar00<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M18,23l9-8L18,7m9,8H2" /> </svg> assets/uikit-themes/master-design-escapes/styles/white-red.less000064400000000511151666572400020755 0ustar00// // Global // @global-emphasis-color: #111111; @global-link-color: #F06161; @global-danger-background: #ec3c3c; @global-primary-background: #F06161; @global-secondary-background: #111111; @global-success-background: #43C989; @global-warning-background: #FFD03B; @global-danger-background: #F77D53; assets/uikit-themes/master-design-escapes/styles/white-darkgreen.less000064400000000324151666572400022147 0ustar00// // Global // @global-color: #565F5C; @global-emphasis-color: #122D25; @global-link-color: #1D4E3F; @global-primary-background: #1D4E3F; @global-secondary-background: #122D25; assets/uikit-themes/master-design-escapes/styles/light-blue.less000064400000002313151666572400021123 0ustar00// // Global // @global-color: #707272; @global-emphasis-color: #444444; @global-link-color: darken(@global-primary-background, 10%); @global-inverse-color: #FCFCFB; @global-background: #FCFCFB; @global-muted-color: #9B9F9F; @global-danger-background: #E75371; @global-muted-background: #F2F4F4; @global-primary-background: #7EB4C2; @global-secondary-background: #444444; @global-success-background: #67C79A; @global-warning-background: #F5C161; @global-danger-background: #EF5775; @global-border: #EBEBED; // // Nav // @nav-default-item-hover-color: darken(@global-primary-background, 10%); @nav-default-sublist-item-hover-color: darken(@global-primary-background, 10%); // // Navbar // @navbar-nav-item-hover-color: darken(@global-primary-background, 10%); @navbar-dropdown-nav-item-hover-color: darken(@global-primary-background, 10%); @navbar-dropdown-nav-sublist-item-hover-color: darken(@global-primary-background, 10%); // // Notification // @notification-message-primary-color: darken(@global-primary-background, 10%); // // Utility // @logo-color: darken(@global-primary-background, 10%); assets/uikit-themes/master-design-escapes/styles/white-darkblue.less000064400000000560151666572400022000 0ustar00// // Global // @global-color: #62707F; @global-emphasis-color: #243D57; @global-link-color: #4C75A0; @global-muted-background: #F6F9FC; @global-primary-background: #4C75A0; @global-secondary-background: #243D57; @global-success-background: #5ABC8E; @global-warning-background: #F5C161; @global-danger-background: #EB5974; assets/uikit-themes/master-design-escapes/styles/white-green.less000064400000001741151666572400021311 0ustar00// // Global // @global-emphasis-color: #444444; @global-link-color: darken(@global-primary-background, 10%); @global-danger-background: #DC526E; @global-primary-background: #92B095; @global-secondary-background: #444444; @global-success-background: #8ACD8F; @global-warning-background: #F6BF69; @global-danger-background: #F16376; // // Nav // @nav-default-item-hover-color: darken(@global-primary-background, 10%); @nav-default-sublist-item-hover-color: darken(@global-primary-background, 10%); // // Navbar // @navbar-nav-item-hover-color: darken(@global-primary-background, 10%); @navbar-dropdown-nav-item-hover-color: darken(@global-primary-background, 10%); @navbar-dropdown-nav-sublist-item-hover-color: darken(@global-primary-background, 10%); // // Notification // @notification-message-primary-color: darken(@global-primary-background, 10%); // // Utility // @logo-color: darken(@global-primary-background, 10%); assets/uikit-themes/master-vibe/styles/dark-yellow.less000064400000016673151666572400017372 0ustar00// // Global // @global-color: rgba(255, 255, 255, 0.77); @global-inverse-color: #16161a; @global-link-color: #f3fc3a; @global-muted-color: rgba(183, 183, 195, 0.5); @global-link-hover-color: #dee740; @global-background: #151517; @global-muted-background: #252629; @global-primary-background: #efff3f; @global-secondary-background: #bcc428; @global-border: rgba(237, 240, 245, 0.09); @global-large-box-shadow: 0 12px 50px 0 rgba(26, 26, 28, 0.21); @global-medium-box-shadow: 0 8px 45px 0 rgba(26, 26, 28, 0.21); @global-small-box-shadow: 0 5px 25px 0 rgba(26, 26, 28, 0.21); @global-xlarge-box-shadow: 0 18px 70px 0 rgba(26, 26, 28, 0.21); // // Theme // @internal-box-decoration-default-border-gradient: linear-gradient(135deg, @global-primary-background, #dde21b); @internal-box-decoration-secondary-box-shadow: -2px -2px 0 @global-primary-background, 2px 2px 0 #dde21b; // // Animation // @internal-glitch-text-shadow-color-1: fade(@global-primary-background, 30%); @internal-glitch-text-shadow-color-2: fade(@global-secondary-background, 30%); // // Badge // @badge-color: @global-inverse-color; // // Base // @base-body-background: #17171b; @base-em-color: #d9e36c; @base-ins-background: @global-link-color; @base-h6-color: @global-link-color; @base-selection-color: @global-inverse-color; // // Button // @button-default-border: @global-primary-background; @button-default-color: #faf84f; @button-default-hover-border: #bcbf13; @button-default-hover-color: #e7e54d; @button-default-active-color: #b4bd4f; @button-primary-color: @global-inverse-color; @button-primary-hover-background: #d4e049; @button-primary-active-background: #bcbf13; @button-secondary-border: #f6f7e9; @button-secondary-color: #ffffff; @button-secondary-hover-border: @global-primary-background; @button-secondary-hover-color: #faf84f; @button-secondary-active-color: #bcbf13; @internal-button-default-border-gradient: linear-gradient(135deg, @global-primary-background, #dde21b); @internal-button-primary-gradient: linear-gradient(135deg, @global-primary-background, #dde21b); @internal-button-secondary-border-gradient: linear-gradient(135deg, #fff, #f6f7e9); @internal-button-default-hover-border-gradient: linear-gradient(185deg, #bcc929, #bcbf13); @internal-button-primary-hover-gradient: linear-gradient(185deg, #d4e049, #c8cb1d); @internal-button-secondary-hover-border-gradient: linear-gradient(135deg, @global-primary-background, #dde21b); @internal-button-default-active-border-gradient: linear-gradient(90deg, #bcc929, #bcbf13); @internal-button-primary-active-gradient: linear-gradient(90deg, #bcc929, #bcbf13); @internal-button-secondary-active-border-gradient: linear-gradient(185deg, #d4e049, #c8cb1d); @button-link-color: #faf84f; @button-link-hover-color: #e7e54d; // // Card // @card-badge-color: @global-inverse-color; @card-default-background: #232426; @card-default-box-shadow: inset 1px 1px 0 0 rgba(255, 255, 255, 0.03); @card-default-hover-background: #2e2f32; @card-primary-background: @global-primary-background; @card-primary-hover-background: #d4e049; @card-secondary-background: #080809; @card-secondary-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); @card-secondary-color: @global-link-color; @card-secondary-hover-background: @global-background; @card-secondary-hover-box-shadow: 1px 1px 15px 0 rgba(0, 0, 0, 0.6); @card-secondary-color-mode: light; @internal-card-default-gradient: linear-gradient(135deg, #2f3133, #232426); @internal-card-primary-gradient: linear-gradient(135deg, @global-primary-background, #dde21b); @internal-card-secondary-gradient: linear-gradient(135deg, #080809, #000); @internal-card-default-hover-gradient: linear-gradient(135deg, #3a3c3e, #2e2f32); @internal-card-primary-hover-gradient: linear-gradient(185deg, #d4e049, #c8cb1d); @internal-card-secondary-hover-gradient: linear-gradient(155deg, @global-background, #101012); @internal-card-badge-gradient: linear-gradient(135deg, @global-primary-background, #dde21b); // // Dotnav // @dotnav-item-hover-background: #fff; @dotnav-item-onclick-background: #fff; @dotnav-item-active-background: #fff; @inverse-dotnav-item-hover-background: @global-background; @inverse-dotnav-item-active-background: @global-background; @inverse-dotnav-item-onclick-background: @global-background; // // Heading // @heading-small-text-shadow: -2px -2px 0 fade(@global-secondary-background, 30%), 2px 2px 0 fade(@global-primary-background, 30%); // // Icon // @icon-button-color: @global-inverse-color; @icon-button-hover-background: #d4e049; @icon-button-active-background: #bcc929; @internal-icon-button-gradient: linear-gradient(135deg, @global-primary-background, #dde21b); @internal-icon-button-hover-gradient: linear-gradient(185deg, #d4e049, #c8cb1d); @internal-icon-button-active-gradient: linear-gradient(90deg, #bcc929, #bcbf13); @inverse-icon-button-color: @global-inverse-color; @inverse-icon-button-hover-color: fade(@inverse-icon-button-color, 70%); @inverse-icon-button-active-color: @inverse-icon-button-color; // // Label // @label-border: @global-primary-background; @label-color: @global-primary-background; // // Marker // @marker-color: @global-inverse-color; @marker-hover-color: @global-inverse-color; // // Navbar // @navbar-background: rgba(42, 42, 45, 0.95); @internal-navbar-gradient: linear-gradient(180deg, rgba(27, 27, 29, 0.95) 10%, rgba(42, 42, 47, 0.15) 100%); // // Overlay // @overlay-primary-color-mode: dark; // // Search // @search-navbar-background: fade(@global-inverse-color, 60%); // // Section // @section-default-background: #111518; @section-muted-background: #1b1e26; @section-primary-background: #9db13c; @section-primary-color-mode: light; @section-secondary-background: #18181b; @internal-section-default-gradient: linear-gradient(#111518, #0a0c11); @internal-section-muted-gradient: linear-gradient(#1b1e26, #15171a); @internal-section-primary-gradient: linear-gradient(135deg, #ccd251, #9db13c); // // Subnav // @subnav-pill-item-active-color: @global-inverse-color; @internal-subnav-pill-item-active-gradient: linear-gradient(135deg, @global-primary-background, #dde21b); // // Tab // @internal-tab-item-active-border-gradient: linear-gradient(135deg, @global-primary-background, #dde21b); // // Text // @text-secondary-color: @global-secondary-background; // // Tile // @tile-primary-color-mode: dark; @internal-tile-primary-gradient: linear-gradient(135deg, @global-primary-background, #dde21b); @internal-tile-secondary-gradient: linear-gradient(135deg, #080809, #000); // // Tooltip // @tooltip-color: @global-inverse-color; // // Utility // @box-shadow-bottom-blur: 45px; @box-shadow-bottom-background: linear-gradient(270deg, fade(@global-secondary-background, 30%), fade(@global-primary-background, 10%)); assets/uikit-themes/master-vibe/styles/dark-red.less000064400000014767151666572400016633 0ustar00// Style variables // ======================================================================== // // Global // @global-color: rgba(255, 255, 255, 0.86); @global-link-color: #bb022e; @global-muted-color: rgba(255, 255, 255, 0.45); @global-link-hover-color: @global-primary-background; @global-background: #111111; @global-danger-background: #fe6c6e; @global-primary-background: #d02144; @global-secondary-background: #000004; @global-success-background: #a3ffa4; @global-warning-background: #fdbf8f; @global-border: rgba(255, 255, 255, 0.1); @global-large-box-shadow: 0 12px 50px 0 rgba(0, 0, 0, 0.6); @global-medium-box-shadow: 0 8px 45px 0 rgba(0, 0, 0, 0.6); @global-small-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.6); @global-xlarge-box-shadow: 0 18px 70px 0 rgba(0, 0, 0, 0.6); // // Theme // @theme-box-decoration-secondary-box-shadow: -2px -2px 0 @global-primary-background, 2px 2px 0 @global-link-color; @internal-theme-page-border-gradient: linear-gradient(135deg, #f56d52, @global-link-color); @internal-box-decoration-default-border-gradient: linear-gradient(135deg, #f56d52, @global-link-color); @internal-box-decoration-secondary-box-shadow: -2px -2px 0 #f56d52, 2px 2px 0 @global-link-color; // // Alert // @alert-background: @global-muted-background; @alert-primary-background: @global-muted-background; @alert-success-background: @global-muted-background; @alert-warning-background: @global-muted-background; @alert-danger-background: @global-muted-background; @alert-border: rgba(255, 255, 255, 0); @alert-primary-border: rgba(208, 33, 68, 0); @alert-success-border: rgba(163, 255, 164, 0); @alert-warning-border: rgba(253, 191, 143, 0); @alert-danger-border: rgba(254, 108, 110, 0); // // Animation // @internal-glitch-text-shadow-color-1: fade(@global-primary-background, 80%); @internal-glitch-text-shadow-color-2: fade(@global-primary-background, 30%); // // Base // @base-body-background: #121212; @base-link-color: @global-link-color; @base-link-hover-color: #f65667; @base-em-color: @global-link-color; @base-ins-background: #2b2b2b; @base-ins-color: #efefef; @base-h6-color: #f56d52; // // Button // @button-default-color: #d93c41; @button-default-hover-color: #f3778c; @button-secondary-border: #c9c9c9; @button-secondary-color: #c9c9c9; @button-secondary-hover-border: #ffffff; @button-secondary-hover-color: #ffffff; @button-secondary-active-border: #ffffff; @button-secondary-active-color: #ffffff; @button-text-hover-color: #fc6766; @internal-button-default-border-gradient: linear-gradient(135deg, #f56d52, @global-link-color); @internal-button-primary-gradient: linear-gradient(135deg, #f56d52, @global-link-color); @internal-button-secondary-border-gradient: ~''; @internal-button-default-hover-border-gradient: linear-gradient(135deg, #f09685, #c0173f); @internal-button-primary-hover-gradient: linear-gradient(135deg, #f68069, #c50230); @internal-button-secondary-hover-border-gradient: ~''; @internal-button-default-active-border-gradient: linear-gradient(135deg, #f09685, #c0173f); @internal-button-primary-active-gradient: linear-gradient(135deg, #f68069, #c50230); @internal-button-secondary-active-border-gradient: ~''; @button-link-color: #d93c41; @button-link-hover-color: #f3778c; // // Card // @card-default-background: #1f1f1f; @card-default-hover-background: #232323; @card-primary-color: rgba(255, 255, 255, 0.86); @card-primary-color-mode: light; @card-secondary-color: rgba(255, 255, 255, 0.86); @card-secondary-color-mode: light; @internal-card-default-gradient: ~''; @internal-card-primary-gradient: linear-gradient(135deg, #f56d52, @global-link-color); @internal-card-secondary-gradient: linear-gradient(135deg, #444141, #2d2d2d); @internal-card-default-hover-gradient: ~''; @internal-card-primary-hover-gradient: linear-gradient(135deg, #f68069, #c50230); @internal-card-secondary-hover-gradient: linear-gradient(135deg, #484545, #323232); @internal-card-badge-gradient: linear-gradient(135deg, #f56d52, @global-link-color); // // Countdown // @countdown-label-color: rgba(255, 255, 255, 0.55); // // Heading // @heading-small-text-shadow: -2px -2px 0 fade(@global-primary-background, 80%), 2px 2px 0 fade(@global-primary-background, 30%); // // Icon // @internal-icon-button-gradient: linear-gradient(135deg, #f56d52, @global-link-color); @internal-icon-button-hover-gradient: linear-gradient(135deg, #f68069, #c50230); @internal-icon-button-active-gradient: linear-gradient(135deg, #f68069, #c50230); // // Label // @label-border: @global-link-color; @label-color: @global-link-color; // // List // @list-striped-background: rgba(0, 0, 0, 0.5); // // Marker // @marker-color: @global-color; @marker-hover-color: @global-emphasis-color; // // Nav // @nav-secondary-subtitle-color: @global-muted-color; // // Navbar // @internal-navbar-gradient: linear-gradient(180deg, #1B1B1B 0.5%, #121213 100%); // // Overlay // @internal-overlay-primary-gradient: linear-gradient(135deg, rgba(245, 82, 103, 0.3), rgba(187, 2, 64, 0.3)); // // Search // @search-navbar-background: fade(darken(@global-primary-background, 90%), 35%); // // Section // @section-default-background: #0d0d0d; @section-muted-background: #2a2a2a; @section-secondary-background: #121212; @internal-section-default-gradient: linear-gradient(#000, #0d0d0d); @internal-section-muted-gradient: linear-gradient(#202020, #161616); @internal-section-primary-gradient: linear-gradient(135deg, #f56d52, @global-link-color); // // Subnav // @internal-subnav-pill-item-active-gradient: linear-gradient(135deg, #f56d52, @global-link-color); // // Tab // @internal-tab-item-active-border-gradient: linear-gradient(135deg, #f56d52, @global-link-color); // // Table // @table-row-active-background: rgba(0, 0, 0, 0.5); // // Text // @text-secondary-color: #f56d52; // // Tile // @internal-tile-primary-gradient: linear-gradient(135deg, #f56d52, @global-link-color); @internal-tile-secondary-gradient: linear-gradient(135deg, #444141, #2d2d2d); assets/uikit-themes/master-vibe/styles/dark-blue.less000064400000015750151666572400017001 0ustar00// // Global // @global-color: rgba(207, 232, 255, 0.7); @global-link-color: @global-primary-background; @global-muted-color: rgba(96, 193, 255, 0.52); @global-link-hover-color: #7acbff; @global-background: #16355f; @global-danger-background: #ee7777; @global-muted-background: #123b65; @global-primary-background: #47aef0; @global-secondary-background: #0d345f; @global-success-background: #bcfee0; @global-warning-background: #fbbd8c; @global-border: rgba(73, 158, 213, 0.3); @global-large-box-shadow: 0 12px 50px rgba(11, 27, 60, 0.6); @global-medium-box-shadow: 0 8px 45px rgba(11, 27, 60, 0.6); @global-small-box-shadow: 0 5px 25px rgba(11, 27, 60, 0.6); @global-xlarge-box-shadow: 0 18px 70px rgba(11, 27, 60, 0.6); // // Theme // @theme-box-decoration-secondary-box-shadow: -2px -2px 0 @global-primary-background, 2px 2px 0 #2668B2; @internal-box-decoration-default-border-gradient: linear-gradient(135deg, @global-primary-background, #2668B2); @internal-box-decoration-secondary-box-shadow: -2px -2px 0 @global-primary-background, 2px 2px 0 #2668B2; // // Alert // @alert-warning-color: @global-warning-background; // // Animation // @internal-glitch-text-shadow-color-1: fade(@global-primary-background, 70%); @internal-glitch-text-shadow-color-2: fade(@global-secondary-background, 30%); // // Badge // @badge-background: darken(@global-primary-background, 10%); // // Base // @base-body-background: #15335b; @base-em-color: @global-primary-background; @base-ins-background: rgba(17, 49, 93, 0.5); @base-ins-color: @global-primary-background; @base-h6-color: #ffffff; // // Button // @button-default-color: @global-primary-background; @button-default-hover-color: #99d3f8; @button-default-active-color: #99d3f8; @button-secondary-color: #2f85c8; @button-secondary-active-color: #2c7bb7; @button-danger-border: #e84a4a; @button-danger-hover-border: #f97171; @button-disabled-background: #11315d; @internal-button-default-border-gradient: linear-gradient(135deg, @global-primary-background, #2668B2); @internal-button-primary-gradient: linear-gradient(135deg, @global-primary-background, #2668B2); @internal-button-secondary-border-gradient: linear-gradient(135deg, #2870A7, #1960AF); @internal-button-danger-hover-border-gradient: ~''; @internal-button-default-hover-border-gradient: linear-gradient(155deg, #58B3ED, #3F7EC3); @internal-button-primary-hover-gradient: linear-gradient(155deg, #58B3ED, #3F7EC3); @internal-button-secondary-hover-border-gradient: linear-gradient(155deg, #2F85C8, #1865BA); @internal-button-default-active-border-gradient: linear-gradient(155deg, #58B3ED, #3F7EC3); @internal-button-primary-active-gradient: linear-gradient(155deg, #58B3ED, #3F7EC3); @internal-button-secondary-active-border-gradient: linear-gradient(155deg, #225F8E, #0E3D71); @button-link-color: @global-primary-background; @button-link-hover-color: #99d3f8; // // Card // @card-default-background: #0b345f; @card-default-hover-background: #0f3a69; @card-primary-color: rgba(255, 255, 255, 0.7); @card-primary-color-mode: light; @card-secondary-color: rgba(255, 255, 255, 0.7); @card-secondary-color-mode: light; @card-default-box-shadow: inset 1px 1px 0 rgba(102, 121, 187, 0.1), @global-medium-box-shadow; @card-default-hover-box-shadow: inset 1px 1px 0 rgba(102, 121, 187, 0.1), @global-large-box-shadow; @card-primary-box-shadow: inset 1px 1px 0 rgba(185, 230, 255, 0.1), @global-medium-box-shadow; @card-primary-hover-box-shadow: inset 1px 1px 0 rgba(185, 230, 255, 0.1), @global-large-box-shadow; @card-secondary-box-shadow: inset 1px 1px 0 rgba(185, 230, 255, 0.1), @global-medium-box-shadow; @card-secondary-hover-box-shadow: inset 1px 1px 0 rgba(185, 230, 255, 0.1), @global-large-box-shadow; @internal-card-default-gradient: ~''; @internal-card-primary-gradient: linear-gradient(135deg, @global-primary-background, #2668B2); @internal-card-secondary-gradient: linear-gradient(135deg, #1C4C72, @global-secondary-background); @internal-card-default-hover-gradient: ~''; @internal-card-primary-hover-gradient: linear-gradient(155deg, #58B3ED, #3F7EC3); @internal-card-secondary-hover-gradient: linear-gradient(155deg, #225F8E, #0E3D71); @internal-card-badge-gradient: linear-gradient(135deg, @global-primary-background, #2668B2); // // Countdown // @countdown-label-color: rgba(255, 255, 255, 0.6); // // Heading // @heading-small-text-shadow: -2px -2px 0 fade(@global-primary-background, 70%), 2px 2px 0 fade(@global-secondary-background, 30%); // // Form // @form-border: lighten(fade(@global-border, 30%), 10%); @form-radio-border: lighten(fade(@global-border, 30%), 10%); // // Icon // @icon-button-color: rgba(255, 255, 255, 0.8); @icon-button-hover-color: #ffffff; @icon-button-active-color: #ffffff; @internal-icon-button-gradient: linear-gradient(135deg, @global-primary-background, #2668B2); @internal-icon-button-hover-gradient: linear-gradient(155deg, #58B3ED, #3F7EC3); @internal-icon-button-active-gradient: linear-gradient(155deg, #58B3ED, #3F7EC3); // // Label // @label-border: @global-primary-background; @label-color: @global-primary-background; // // Marker // @marker-color: @global-color; @marker-hover-color: @global-emphasis-color; // // Nav // @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-emphasis-color; // // Navbar // @internal-navbar-gradient: linear-gradient(#0E284B, #0F3A69); // // Section // @section-default-background: #00429c; @section-primary-background: #0ba0ff; @section-secondary-background: #15335b; @internal-section-default-gradient: linear-gradient(#0e5eb3, #064aa7); @internal-section-muted-gradient: linear-gradient(135deg, #1770cc, #006ad8); @internal-section-primary-gradient: linear-gradient(135deg, #0ba0ff, #086ee1); // // Subnav // @internal-subnav-pill-item-active-gradient: linear-gradient(135deg, @global-primary-background, #2668B2); // // Tab // @internal-tab-item-active-border-gradient: linear-gradient(135deg, @global-primary-background, #2668B2); // // Table // @table-row-active-background: rgba(10, 30, 58, 0.2); // // Text // @text-secondary-color: darken(@global-primary-background, 10%); // // Tile // @internal-tile-primary-gradient: linear-gradient(135deg, @global-primary-background, #2668B2); @internal-tile-secondary-gradient: linear-gradient(155deg, #225F8E, #0E3D71); // // Woocommerce // @woocommerce-rating-background-color: fade(@global-border, 50%); assets/uikit-themes/master-vibe/styles/dark-green.less000064400000015760151666572400017153 0ustar00// // Global // @global-color: rgba(223, 255, 236, 0.7); @global-emphasis-color: #eaffed; @global-inverse-color: #0b2e1e; @global-link-color: #a0f9a4; @global-muted-color: rgba(185, 242, 213, 0.54); @global-link-hover-color: #55daa2; @global-background: #111d19; @global-danger-background: #f05b71; @global-primary-background: #9aee89; @global-secondary-background: #46e8c1; @global-success-background: #30c27c; @global-warning-background: #f19851; @global-border: rgba(224, 255, 236, 0.1); @global-large-box-shadow: 0 12px 50px 0 rgba(4, 18, 10, 0.53); @global-medium-box-shadow: 0 8px 45px 0 rgba(4, 18, 10, 0.53); @global-small-box-shadow: 0 5px 25px 0 rgba(4, 18, 10, 0.53); @global-xlarge-box-shadow: 0 18px 70px 0 rgba(4, 18, 10, 0.53); // // Theme // @internal-box-decoration-default-border-gradient: linear-gradient(135deg, #88da77, #03a27d); @internal-box-decoration-secondary-box-shadow: -2px -2px 0 #88da77, 2px 2px 0 #03a27d; // // Animation // @internal-glitch-text-shadow-color-1: fade(@global-primary-background, 80%); @internal-glitch-text-shadow-color-2: fade(@global-secondary-background, 30%); // // Badge // @badge-color: @global-inverse-color; // // Base // @base-body-background: @global-background; @base-code-color: #eb9170; @base-em-color: @global-primary-background; @base-ins-background: rgba(202, 255, 201, 0.19); @base-ins-color: #aaffc7; @base-h6-color: @global-primary-background; // // Button // @button-default-border: #88da77; @button-default-color: @global-primary-background; @button-default-hover-border: #6abf59; @button-default-active-border: #4ea13e; @button-default-active-color: #6ac258; @button-primary-background: #88da77; @button-primary-color: #e4ffe0; @button-primary-hover-background: #6abf59; @button-primary-hover-color: #bdfb9c; @button-primary-active-background: #4ea13e; @button-primary-active-color: #89e684; @button-secondary-border: #4ca791; @button-secondary-color: #59bba1; @button-secondary-hover-border: #206259; @button-secondary-hover-color: #8dd7c3; @button-secondary-active-border: #19584f; @button-secondary-active-color: #559c89; @internal-button-default-border-gradient: linear-gradient(135deg, #88da77, #03a27d); @internal-button-primary-gradient: linear-gradient(135deg, #88da77, #03a27d); @internal-button-secondary-border-gradient: linear-gradient(135deg, #4ca791, #206259); @internal-button-default-hover-border-gradient: linear-gradient(55deg, #6abf59, #0a8b6d); @internal-button-primary-hover-gradient: linear-gradient(55deg, #6abf59, #0a8b6d); @internal-button-secondary-hover-border-gradient: linear-gradient(25deg, #4ca791, #206259); @internal-button-default-active-border-gradient: linear-gradient(90deg, #4ea13e, #0d715a); @internal-button-primary-active-gradient: linear-gradient(90deg, #4ea13e, #0d715a); @internal-button-secondary-active-border-gradient: linear-gradient(90deg, #3b8e7a, #19584f); @button-link-color: @global-primary-background; // // Card // @card-default-background: #1a2b22; @card-default-hover-background: #25412c; @card-primary-background: #03a27d; @card-primary-color: rgba(255, 255, 255, 0.7); @card-primary-color-mode: light; @card-primary-hover-background: #03a27d; @card-secondary-background: #206259; @card-secondary-color: rgba(255, 255, 255, 0.7); @card-secondary-color-mode: light; @card-secondary-hover-background: #4ca791; @internal-card-default-gradient: linear-gradient(135deg, #223928, #1a2b22); @internal-card-primary-gradient: linear-gradient(135deg, #88da77, #03a27d); @internal-card-secondary-gradient: linear-gradient(135deg, #4ca791, #206259); @internal-card-default-hover-gradient: linear-gradient(155deg, #25412c, #1a2b22); @internal-card-primary-hover-gradient: linear-gradient(25deg, #88da77, #03a27d); @internal-card-secondary-hover-gradient: linear-gradient(25deg, #4ca791, #206259); @internal-card-badge-gradient: linear-gradient(135deg, #88da77, #03a27d); // // Countdown // @countdown-label-color: rgba(235, 255, 186, 0.6); // // Heading // @heading-small-text-shadow: -2px -2px 0 fade(@global-primary-background, 80%), 2px 2px 0 fade(@global-secondary-background, 30%); // // Icon // @icon-button-background: #88da77; @icon-button-color: #dfffd1; @icon-button-hover-background: #03a27d; @icon-button-hover-color: #1b5432; @icon-button-active-background: #078f6f; @icon-button-active-color: #082614; @internal-icon-button-gradient: linear-gradient(135deg, #88da77, #03a27d); @internal-icon-button-hover-gradient: linear-gradient(25deg, #88da77, #03a27d); @internal-icon-button-active-gradient: linear-gradient(90deg, #7bc86b, #078f6f); // // Label // @label-border: @global-primary-background; @label-color: @global-primary-background; // // Marker // @marker-color: @global-inverse-color; @marker-hover-color: @global-inverse-color; // // Navbar // @internal-navbar-gradient: linear-gradient(180deg, #03130c 10%, rgba(3, 19, 7, 0.15) 100%); // // Overlay // @overlay-primary-color-mode: dark; // // Search // @search-navbar-background: fade(darken(@global-primary-background, 90%), 35%); // // Section // @section-secondary-background: @global-background; @internal-section-default-gradient: linear-gradient(#1e4e3c, #0b2f1e); @internal-section-muted-gradient: linear-gradient(#22614E, #0b3c2e); @internal-section-primary-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); // // Subnav // @subnav-pill-item-active-background: #88da77; @internal-subnav-pill-item-active-gradient: linear-gradient(135deg, #88da77, #03a27d); // // Tab // @tab-item-active-border: #88da77; @internal-tab-item-active-border-gradient: linear-gradient(135deg, #88da77, #03a27d); // // Table // @table-row-active-background: rgba(10, 21, 12, 0.56); // // Tile // @tile-primary-background: #88da77; @tile-secondary-background: #4ca791; @internal-tile-primary-gradient: linear-gradient(135deg, #88da77, #03a27d); @internal-tile-secondary-gradient: linear-gradient(135deg, #4ca791, #206259); // // Tooltip // @tooltip-color: @global-inverse-color; // // Utility // @box-shadow-bottom-background: linear-gradient(270deg, rgba(70, 232, 193, 0.6), rgba(154, 238, 137, 0.3)); // // Woocommerce // @woocommerce-rating-background-color: desaturate(lighten(@global-muted-background, 25%), 8%); assets/uikit-themes/master-vibe/styles/dark-turquoise.less000064400000012051151666572400020101 0ustar00// // Global // @global-color: rgba(255, 255, 255, 0.7); @global-link-color: @global-primary-background; @global-muted-color: rgba(255, 255, 255, 0.45); @global-link-hover-color: #ffffff; @global-background: #11151d; @global-danger-background: #b94e7b; @global-primary-background: #1dcc8f; @global-secondary-background: #00b1be; @global-success-background: #007c67; @global-warning-background: #dd731f; @global-border: rgba(255, 255, 255, 0.08); @global-large-box-shadow: 0 12px 50px 0 rgba(13, 12, 21, 0.6); @global-medium-box-shadow: 0 8px 45px 0 rgba(13, 12, 21, 0.6); @global-small-box-shadow: 0 5px 25px 0 rgba(13, 12, 21, 0.6); @global-xlarge-box-shadow: 0 18px 70px 0 rgba(13, 12, 21, 0.6); // // Theme // @internal-box-decoration-default-border-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); @internal-box-decoration-secondary-box-shadow: -2px -2px 0 @global-primary-background, 2px 2px 0 #00B1BE; // // Badge // @badge-background: darken(@global-primary-background, 10%); // // Base // @base-body-background: #121620; @base-em-color: @global-primary-background; @base-h6-color: @global-primary-background; // // Button // @button-default-color: @global-primary-background; @button-secondary-color: #209698; @internal-button-default-border-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); @internal-button-primary-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); @internal-button-secondary-border-gradient: linear-gradient(135deg, #209698, #1A4A79); @internal-button-default-hover-border-gradient: linear-gradient(25deg, @global-primary-background, #00B1BE); @internal-button-primary-hover-gradient: linear-gradient(25deg, @global-primary-background, #00B1BE); @internal-button-secondary-hover-border-gradient: linear-gradient(25deg, #209698, #1A4A79); @internal-button-default-active-border-gradient: linear-gradient(-25deg, @global-primary-background, #00B1BE); @internal-button-primary-active-gradient: linear-gradient(-25deg, @global-primary-background, #00B1BE); @internal-button-secondary-active-border-gradient: linear-gradient(-25deg, #209698, #1A4A79); @button-link-color: @global-primary-background; // // Card // @card-default-background: #222939; @card-primary-color: rgba(255, 255, 255, 0.7); @card-primary-color-mode: light; @card-secondary-color: rgba(255, 255, 255, 0.7); @card-secondary-color-mode: light; @internal-card-default-gradient: linear-gradient(135deg, #222939, #1a1f2b); @internal-card-primary-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); @internal-card-secondary-gradient: linear-gradient(135deg, #209698, #1A4A79); @internal-card-default-hover-gradient: linear-gradient(25deg, #222939, #1a1f2b); @internal-card-primary-hover-gradient: linear-gradient(25deg, @global-primary-background, #00B1BE); @internal-card-secondary-hover-gradient: linear-gradient(25deg, #209698, #1A4A79); @internal-card-badge-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); // // Countdown // @countdown-label-color: rgba(255, 255, 255,0.65); // // Icon // @internal-icon-button-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); @internal-icon-button-hover-gradient: linear-gradient(25deg, @global-primary-background, #00B1BE); @internal-icon-button-active-gradient: linear-gradient(-25deg, @global-primary-background, #00B1BE); // // Label // @label-border: @global-primary-background; @label-color: @global-primary-background; // // Navbar // @internal-navbar-gradient: linear-gradient(180deg, #030C13 10%, rgba(3, 13, 19, 0.15) 100%); // // Search // @search-navbar-background: lighten(@global-background, 3%); // // Section // @section-secondary-background: #121620; @internal-section-default-gradient: linear-gradient(#0f1a38, #060e23); @internal-section-muted-gradient: linear-gradient(#1d2946, #1b253e); @internal-section-primary-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); // // Subnav // @internal-subnav-pill-item-active-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); // // Tab // @internal-tab-item-active-border-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); // // Table // @table-row-active-background: rgba(8, 11, 19, 0.75); // // Text // @text-secondary-color: @global-secondary-background; // // Tile // @internal-tile-primary-gradient: linear-gradient(135deg, @global-primary-background, #00B1BE); @internal-tile-secondary-gradient: linear-gradient(135deg, #209698, #1A4A79); // // Tooltip // @tooltip-color: @global-inverse-color; // // Utility // @box-shadow-bottom-background: linear-gradient(270deg, fade(@global-secondary-background, 60%), fade(@global-primary-background, 30%)); assets/uikit-themes/master-vibe/_import.less000064400000101633151666572400015255 0ustar00@internal-fonts: 'Fira+Sans+Condensed:300,300i,400,400i|Josefin+Sans:300,300i,600,600i,700,700i|Fira+Mono'; @global-font-family: 'Fira Sans Condensed'; @global-font-size: 15px; @global-line-height: 1.73; @global-2xlarge-font-size: 42px; @global-xlarge-font-size: 32px; @global-large-font-size: 24px; @global-medium-font-size: 20px; @global-small-font-size: 14px; @global-primary-font-family: 'Josefin Sans'; @global-primary-font-weight: 700; @global-primary-text-transform: uppercase; @global-primary-letter-spacing: 4px; @global-primary-font-style: italic; @global-secondary-font-family: 'Josefin Sans'; @global-secondary-font-weight: 700; @global-secondary-text-transform: uppercase; @global-secondary-letter-spacing: 2px; @global-secondary-font-style: italic; @global-color: fade(#DEDFFF, 70%); @global-emphasis-color: #FFF; @global-muted-color: fade(#DEDFFF, 45%); @global-link-color: #F43482; @global-link-hover-color: #7370FF; @global-inverse-color: #08091e; @global-background: #211b46; @global-muted-background: desaturate(lighten(@global-background, 5%), 4%); @global-primary-background: #F43482; @global-secondary-background: #3234FF; @global-success-background: #53DA71; @global-warning-background: #FFA055; @global-danger-background: #FC4B4E; @global-border: rgba(225,219,255,0.1); @global-border-width: 2px; @global-border-radius: 0; @global-small-box-shadow: 0 5px 25px rgba(14,15,37,0.6); @global-medium-box-shadow: 0 8px 45px rgba(14,15,37,0.6); @global-large-box-shadow: 0 12px 50px rgba(14,15,37,0.6); @global-xlarge-box-shadow: 0 18px 70px rgba(14,15,37,0.6); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 80px; @global-xlarge-margin: 140px; @global-gutter: 20px; @global-small-gutter: 10px; @global-medium-gutter: 40px; @global-large-gutter: 80px; @global-control-height: 40px; @global-control-small-height: 25px; @global-control-large-height: 55px; @global-z-index: 1000; @base-body-background: darken(@global-background, 2%); @base-body-font-weight: 400; @base-code-font-size: 12px; @base-code-color: #68C6A7; @base-em-color: #7370FF; @base-ins-background: #FBFFC9; @base-ins-color: #7B3715; @base-mark-background: @base-ins-background; @base-mark-color: @base-ins-color; @base-small-font-size: 90%; @base-h5-font-size: 15px; @base-h6-font-size: 13px; @base-hr-border-width: 2px; @base-blockquote-footer-font-size: 12px; @base-selection-background: fade(@global-primary-background, 90%); @base-selection-color: @global-emphasis-color; @internal-base-body-mode: overlay; @internal-base-body-overlay-image: "../../master-vibe/images/base-body-overlay.gif"; @internal-base-body-overlay-opacity: 0.05; @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 2px; @base-pre-padding: 10px; @base-pre-background: @global-muted-background; @base-h2-font-weight: 600; @base-h3-font-weight: 600; @base-h4-letter-spacing: @base-heading-letter-spacing; @base-h5-letter-spacing: @base-heading-letter-spacing; @base-h6-color: #7370FF; @base-h6-letter-spacing: @base-heading-letter-spacing; @base-blockquote-text-transform: none; @base-blockquote-letter-spacing: 0; @base-blockquote-footer-color: @global-emphasis-color; @base-blockquote-footer-font-family: @global-primary-font-family; @base-blockquote-footer-text-transform: @global-primary-text-transform; @base-blockquote-footer-letter-spacing: @global-primary-letter-spacing; @base-code-border-width: @global-border-width; @base-code-border: @global-border; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @base-code-border-radius: 3px; @base-pre-border-radius: 3px; @inverse-base-code-border: @inverse-global-border; @heading-small-font-size-m: @heading-medium-font-size-l * 0.72; @heading-medium-font-size-l: 76px; @heading-medium-line-height: 1.2; @heading-divider-padding-bottom: ~'calc(5px + 0.05em)'; @heading-divider-border-width: ~'calc(1px + 0.04em)'; @heading-bullet-border: @global-primary-background; @heading-line-border-width: ~'calc(1.2px + 0.05em)'; @heading-line-border: @global-primary-background; @internal-heading-medium-mode: glitch; @internal-heading-large-mode: glitch; @internal-heading-xlarge-mode: glitch; @internal-heading-2xlarge-mode: glitch; @internal-heading-3xlarge-mode: glitch; @heading-small-text-shadow: -2px -2px 0 @global-secondary-background, 2px 2px 0 @global-primary-background; @divider-icon-width: 30px; @divider-icon-height: 17px; @divider-icon-color: @global-primary-background; @divider-icon-line-border-width: 0; @internal-divider-icon-image: "../../../../uikit-themes/master-vibe/images/divider-icon.svg"; @divider-small-width: 45px; @divider-small-border-width: 2px; @divider-small-border: @global-primary-background; @list-bullet-icon-color: @global-primary-background; @internal-list-bullet-image: "../../../../uikit-themes/master-vibe/images/list-bullet.svg"; @description-list-term-font-size: 12px; @table-header-cell-font-size: 12px; @table-header-cell-font-weight: @global-secondary-font-weight; @table-header-cell-color: @global-primary-background; @table-row-active-background: rgba(22,15,46,0.35); @table-divider-border: rgba(225,219,255,0.05); @table-striped-row-background: @table-row-active-background; @table-header-cell-font-family: @global-secondary-font-family; @table-header-cell-text-transform: @global-secondary-text-transform; @table-header-cell-letter-spacing: @global-secondary-letter-spacing; @table-header-cell-font-style: @global-secondary-font-style; @icon-link-color: @global-link-color; @icon-link-hover-color: @global-link-hover-color; @icon-link-active-color: @global-emphasis-color; @icon-button-background: @global-primary-background; @icon-button-color: @global-emphasis-color; @icon-button-hover-background: @icon-button-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: @global-primary-background; @icon-button-active-color: @global-inverse-color; @internal-icon-button-gradient: linear-gradient(135deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-icon-button-hover-gradient: linear-gradient(25deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-icon-button-active-gradient: linear-gradient(-25deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @icon-button-box-shadow: @global-medium-box-shadow; @icon-button-hover-box-shadow: @global-small-box-shadow; @inverse-icon-button-background: @inverse-global-primary-background; @inverse-icon-button-color: @inverse-global-inverse-color; @inverse-icon-button-hover-color: fade(@inverse-global-inverse-color, 90%); @inverse-icon-button-active-color: @inverse-global-inverse-color; @form-range-track-height: @global-border-width; @form-range-track-background: fade(@global-border, 20%); @form-range-track-focus-background: @global-primary-background; @form-range-thumb-height: 6px; @form-range-thumb-width: 16px; @form-range-thumb-border-radius: 0; @form-range-thumb-background: @global-primary-background; @form-background: transparent; @form-focus-background: transparent; @form-focus-color: @global-emphasis-color; @form-radio-background: transparent; @form-label-font-size: 12px; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-primary-background; @form-disabled-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @global-border; @form-radio-border-width: @global-border-width; @form-radio-border: fade(@global-border, 20%); @form-radio-focus-border: darken(@global-primary-background, 10%); @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-radio-checked-background: @global-primary-background; @inverse-form-radio-checked-icon-color: @global-inverse-color; @inverse-form-radio-checked-focus-background: darken(@global-primary-background, 10%); @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @global-primary-background; @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: @global-primary-background; @button-font-size: 12px; @button-small-font-size: 10px; @button-large-font-size: @global-font-size; @button-padding-horizontal: 30px; @button-small-padding-horizontal: 15px; @button-large-padding-horizontal: 40px; @button-default-background: transparent; @button-default-color: mix(@global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%), 50%); @button-default-hover-background: transparent; @button-default-hover-color: lighten(@button-default-color, 15%); @button-default-active-background: transparent; @button-default-active-color: @global-primary-background; @button-primary-color: @global-emphasis-color; @button-primary-hover-background: darken(spin(@button-primary-background, -7%), 6%); @button-primary-active-background: darken(spin(@button-primary-background, -7%), 17%); @button-secondary-background: transparent; @button-secondary-color: lighten(mix(#8333C1, #3C2F9F), 12%); @button-secondary-hover-background: transparent; @button-secondary-hover-color: lighten(@button-secondary-color, 10%); @button-secondary-active-background: transparent; @button-secondary-active-color: lighten(#3C2F9F, 15%); @button-danger-background: transparent; @button-danger-color: mix(@global-danger-background, #FC524B, 50%); @button-danger-hover-background: transparent; @button-danger-hover-color: lighten(@button-danger-color, 5%); @button-danger-active-background: transparent; @button-danger-active-color: @global-danger-background; @button-text-color: @global-link-color; @button-text-hover-color: @global-link-hover-color; @button-link-color: mix(@global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%), 50%); @button-link-hover-color: lighten(@button-default-color, 15%); @button-border-width: @global-border-width; @button-default-border: #8333C1; @button-default-hover-border: #503ED7; @button-default-active-border: @button-default-hover-border; @button-secondary-border: @global-primary-background; @button-secondary-hover-border: darken(@button-secondary-border, 10%); @button-secondary-active-border: @button-secondary-active-background; @button-danger-border: @global-danger-background; @button-danger-hover-border: darken(@button-danger-border, 10%); @button-danger-active-border: @button-danger-active-background; @internal-button-default-border-gradient: linear-gradient(135deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-button-default-hover-border-gradient: linear-gradient(25deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-button-default-active-border-gradient: linear-gradient(-25deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-button-secondary-border-gradient: linear-gradient(135deg, #8333C1, #503ED7); @internal-button-secondary-hover-border-gradient: linear-gradient(25deg, #8333C1, #503ED7); @internal-button-secondary-active-border-gradient: linear-gradient(-25deg, #8333C1, #503ED7); @internal-button-danger-border-gradient: linear-gradient(135deg, #FC524B, darken(@global-danger-background, 10%)); @internal-button-danger-hover-border-gradient: linear-gradient(25deg, #FC524B, darken(@global-danger-background, 10%)); @internal-button-danger-active-border-gradient: linear-gradient(-25deg, #FC524B, darken(@global-danger-background, 10%)); @internal-button-primary-gradient: linear-gradient(135deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-button-primary-hover-gradient: linear-gradient(25deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-button-primary-active-gradient: linear-gradient(-25deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @button-primary-box-shadow: @global-medium-box-shadow; @button-primary-hover-box-shadow: @global-small-box-shadow; @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-color; @inverse-button-default-hover-background: transparent; @inverse-button-default-hover-color: @global-inverse-color; @inverse-button-default-active-background: transparent; @inverse-button-default-active-color: @global-inverse-color; @inverse-button-primary-background: fade(@inverse-global-primary-background, 7%); @inverse-button-primary-color: @inverse-global-color; @inverse-button-primary-hover-background: fade(@inverse-global-primary-background, 15%); @inverse-button-primary-hover-color: @global-inverse-color; @inverse-button-primary-active-background: fade(@inverse-global-primary-background, 20%); @inverse-button-primary-active-color: @global-inverse-color; @inverse-button-secondary-background: transparent; @inverse-button-secondary-color: @inverse-global-emphasis-color; @inverse-button-secondary-hover-background: fade(@inverse-global-primary-background, 3%); @inverse-button-secondary-hover-color: @inverse-global-muted-color; @inverse-button-secondary-active-background: fade(@inverse-global-primary-background, 6%); @inverse-button-secondary-active-color: @inverse-global-emphasis-color; @inverse-button-text-hover-color: @inverse-global-color; @inverse-button-link-color: @inverse-global-color; @inverse-button-link-hover-color: @inverse-global-emphasis-color; @inverse-button-default-border: fade(@global-inverse-color, 15%); @inverse-button-default-hover-border: fade(@global-inverse-color, 20%); @inverse-button-default-active-border: fade(@global-inverse-color, 30%); @inverse-button-secondary-border: fade(@inverse-global-primary-background, 5%); @inverse-button-secondary-hover-border: fade(@inverse-global-primary-background, 10%); @inverse-button-secondary-active-border: fade(@inverse-global-primary-background, 15%); @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-background: #612A50; @section-secondary-background: darken(@global-background, 1%); @internal-section-default-gradient: linear-gradient(saturate(@section-default-background, 55%), saturate(@section-default-background, 55%)); @internal-section-muted-gradient: linear-gradient(lighten(saturate(@section-muted-background, 35%), 5%), lighten(saturate(@section-muted-background, 35%), 5%)); @internal-section-primary-gradient: linear-gradient(135deg, #ab2054, #7c228a); @internal-section-default-image: "../../master-vibe/images/section-background-image.avif"; @internal-section-muted-image: "../../master-vibe/images/section-background-image.avif"; @internal-section-primary-image: "../../master-vibe/images/section-background-image.avif"; @internal-section-default-mode: blend; @internal-section-muted-mode: blend; @internal-section-primary-mode: blend; @container-max-width: 1080px; @container-small-max-width: 960px; @tile-default-color-mode: light; @tile-muted-color-mode: light; @internal-tile-primary-gradient: linear-gradient(135deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-tile-secondary-gradient: linear-gradient(135deg, #8333C1, #503ED7); @card-title-font-size: 18px; @card-badge-height: 28px; @card-badge-padding-horizontal: 12px; @card-badge-color: @global-emphasis-color; @card-badge-font-size: 12px; @card-hover-background: fade(lighten(@global-background, 4%), 95%); @card-default-background: @global-background; @card-default-hover-background: @card-default-background; @card-default-color-mode: light; @card-primary-hover-background: darken(spin(@button-primary-background, -7%), 6%); @card-primary-color-mode: dark; @card-secondary-hover-background: lighten(@card-secondary-background, 3%); @card-secondary-color-mode: dark; @card-badge-font-family: @global-font-family; @card-badge-font-weight: 600; @card-badge-text-transform: uppercase; @card-badge-letter-spacing: 2px; @internal-card-badge-gradient: linear-gradient(135deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-card-default-gradient: linear-gradient(135deg, #494C8A, #362C61); @internal-card-default-hover-gradient: linear-gradient(155deg, #494C8A, #362C61); @internal-card-primary-gradient: linear-gradient(135deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-card-primary-hover-gradient: linear-gradient(155deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @internal-card-secondary-gradient: linear-gradient(135deg, #8333C1, #503ED7); @internal-card-secondary-hover-gradient: linear-gradient(155deg, #8333C1, #503ED7); @card-hover-box-shadow: @global-large-box-shadow; @card-default-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05), @global-medium-box-shadow; @card-default-hover-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05), @global-large-box-shadow; @card-primary-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.1), @global-medium-box-shadow; @card-primary-hover-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.1), @global-large-box-shadow; @card-secondary-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.07), @global-medium-box-shadow; @card-secondary-hover-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.07), @global-large-box-shadow; @inverse-card-badge-color: fade(@inverse-global-inverse-color, 100%); @close-hover-color: @global-emphasis-color; @marker-background: darken(@global-primary-background, 5%); @marker-color: @global-color; @marker-hover-color: @global-color; @totop-color: fadeout(@global-color, 50%); @totop-hover-color: @global-emphasis-color; @totop-active-color: @global-primary-background; @alert-background: @global-background; @alert-color: @global-emphasis-color; @alert-primary-background: @global-background; @alert-success-background: @global-background; @alert-warning-background: @global-background; @alert-danger-background: @global-background; @alert-border-width: @global-border-width; @alert-border: @global-border; @alert-primary-border: @global-primary-background; @alert-success-border: @global-success-background; @alert-warning-border: @global-warning-background; @alert-danger-border: @global-danger-background; @alert-box-shadow: @global-medium-box-shadow; @placeholder-border-radius: @global-border-radius; @badge-color: @global-emphasis-color; @badge-font-weight: bolder; @badge-font-family: @global-font-family; @badge-font-style: normal; @label-padding-vertical: 2px; @label-padding-horizontal: 10px; @label-background: transparent; @label-font-size: 12px; @label-color: #7370FF; @label-success-background: transparent; @label-success-color: @global-success-background; @label-warning-background: transparent; @label-warning-color: @global-warning-background; @label-danger-background: transparent; @label-danger-color: @global-danger-background; @label-font-family: @global-font-family; @label-font-weight: 600; @label-text-transform: uppercase; @label-letter-spacing: 1px; @label-font-style: normal; @label-border-width: @global-border-width; @label-border: #7370FF; @label-success-border: @global-success-background; @label-warning-border: @global-warning-background; @label-danger-border: @global-danger-background; @label-border-radius: 500px; @overlay-default-color-mode: light; @internal-overlay-default-gradient: linear-gradient(135deg, fade(lighten(@global-background, 10%), 70%), fade(lighten(@global-background, 2%), 70%)); @internal-overlay-primary-gradient: linear-gradient(135deg, fade(@global-primary-background, 70%), fade(@global-secondary-background, 70%)); @article-meta-font-size: 12px; @comment-title-font-size: @global-font-size; @comment-meta-font-size: 12px; @comment-primary-border-radius: @global-border-radius; @search-color: @global-emphasis-color; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-default-focus-background: transparent; @search-navbar-padding-horizontal: 15px; @search-navbar-background: fade(@global-inverse-color, 20%); @search-navbar-focus-background: @global-background; @search-medium-padding-horizontal: 0; @search-medium-font-size: @global-medium-font-size; @search-large-padding-horizontal: 0; @search-large-font-size: @global-xlarge-font-size; @search-large-icon-padding: 15px; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-link-color; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-primary-background; @search-navbar-border-width: 2px; @search-navbar-focus-border: @global-primary-background; @search-medium-border-mode: -bottom; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-primary-background; @search-large-border-mode: -bottom; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-primary-background; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-navbar-background: fade(@global-inverse-color, 15%); @inverse-search-navbar-focus-background: fade(@global-inverse-color, 10%); @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @global-primary-background; @inverse-search-navbar-focus-border: fade(@global-inverse-color, 20%); @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @global-primary-background; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @global-primary-background; @accordion-title-hover-color: @global-link-color; @accordion-title-font-weight: 600; @dropdown-padding: 25px; @dropdown-background: lighten(@global-background, 3%); @dropdown-color-mode: light; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-subtitle-font-size: 14px; @dropdown-nav-header-color: @global-primary-background; @dropdown-nav-sublist-item-hover-color: @global-primary-background; @dropdown-nav-font-size: 12px; @dropdown-nav-subtitle-font-family: @global-font-family; @dropdown-nav-subtitle-font-weight: 400; @dropdown-nav-subtitle-text-transform: none; @dropdown-nav-subtitle-letter-spacing: normal; @dropdown-nav-subtitle-line-height: 1.4; @dropdown-nav-subtitle-font-style: normal; @dropdown-box-shadow: @global-medium-box-shadow; @dropbar-padding-top: 25px; @dropbar-color-mode: light; @modal-background: fadeout(@global-background, 60%); @modal-dialog-background: lighten(@global-background, 6%); @modal-dialog-box-shadow: @global-large-box-shadow; @slider-container-margin-top: -62px; @slider-container-margin-bottom: -65px; @slider-container-margin-left: -62px; @slider-container-margin-right: -62px; @offcanvas-bar-background: @global-background; @offcanvas-bar-box-shadow: @global-large-box-shadow; @notification-message-background: fade(darken(@global-background, 2%), 95%); @tooltip-background: @global-primary-background; @tooltip-color: @global-emphasis-color; @countdown-number-font-size-s: 3.6rem; @countdown-number-font-size-m: 5rem; @countdown-separator-line-height: 1.2; @countdown-separator-font-size: 1.3333rem; @countdown-separator-font-size-s: 2.4rem; @countdown-separator-font-size-m: 3.3333rem; @countdown-item-font-family: 'Fira Mono'; @countdown-item-font-weight: 400; @countdown-item-text-transform: none; @countdown-item-letter-spacing: 0; @countdown-item-font-style: normal; @countdown-label-font-size: 10px; @countdown-label-font-size-s: 12px; @countdown-label-color: rgba(222, 223, 255, 0.55); @countdown-label-font-family: @global-secondary-font-family; @countdown-label-font-weight: @global-secondary-font-weight; @countdown-label-text-transform: @global-secondary-text-transform; @countdown-label-letter-spacing: 0; @countdown-label-letter-spacing-s: @global-secondary-letter-spacing; @countdown-label-font-style: @global-secondary-font-style; @nav-header-font-size: 12px; @nav-default-font-size: 12px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-emphasis-color; @nav-default-item-active-color: @global-primary-background; @nav-primary-font-size: @global-medium-font-size; @nav-primary-line-height: 1.4; @nav-primary-item-color: @global-color; @nav-primary-item-hover-color: @global-emphasis-color; @nav-primary-item-active-color: @global-primary-background; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-sublist-font-size: @global-font-size; @nav-secondary-font-size: 13px; @nav-secondary-line-height: 1.4; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-subtitle-active-color: @global-primary-background; @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-secondary-sublist-item-color: @global-color; @nav-secondary-sublist-item-hover-color: @global-emphasis-color; @nav-secondary-sublist-item-active-color: @global-primary-background; @nav-medium-line-height: 1.2; @nav-medium-font-size: 54px; @nav-medium-font-size-m: 66px; @nav-medium-font-size-l: 70px; @nav-large-font-size: 64px; @nav-large-font-size-m: 76px; @nav-xlarge-font-size: 76px; @nav-xlarge-font-size-m: 90px; @nav-dividers-margin-top: 12px; @nav-primary-item-padding-vertical: 8px; @nav-secondary-margin-top: 15px; @nav-default-subtitle-font-family: @global-font-family; @nav-default-subtitle-font-weight: 400; @nav-default-subtitle-text-transform: none; @nav-default-subtitle-letter-spacing: normal; @nav-default-subtitle-line-height: 1.4; @nav-default-subtitle-font-style: normal; @nav-primary-font-style: @global-secondary-font-style; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-font-weight: 400; @nav-primary-subtitle-text-transform: none; @nav-primary-subtitle-letter-spacing: normal; @nav-primary-subtitle-line-height: 1.4; @nav-primary-subtitle-font-style: normal; @nav-secondary-subtitle-font-family: @global-font-family; @nav-secondary-subtitle-font-weight: 400; @nav-secondary-subtitle-text-transform: none; @nav-secondary-subtitle-letter-spacing: normal; @nav-secondary-subtitle-line-height: 1.5; @nav-secondary-subtitle-font-style: normal; @navbar-background: fade(lighten(@global-background, 4%), 95%); @navbar-color-mode: light; @navbar-nav-item-color: @global-color; @navbar-nav-item-font-size: 12px; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-link-color; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 25px; @navbar-dropdown-background: fade(lighten(@global-background, 4%), 98%); @navbar-dropdown-color-mode: light; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-hover-color: @global-primary-background; @navbar-padding-top-m: 30px; @navbar-padding-bottom-m: 30px; @navbar-nav-item-transition-duration: 0.2s; @internal-navbar-nav-item-hover-mode: glitch; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: 25px; @navbar-nav-item-line-margin-horizontal-m: @navbar-nav-item-padding-horizontal; @navbar-nav-item-line-height: @global-border-width; @navbar-nav-item-line-hover-background: transparent; @navbar-nav-item-line-onclick-background: transparent; @navbar-primary-gap-m: 50px; @navbar-primary-nav-gap-m: 50px; @navbar-item-font-size: @global-font-size; @navbar-item-font-family: @global-font-family; @navbar-subtitle-font-family: @global-font-family; @navbar-subtitle-font-weight: 400; @navbar-subtitle-text-transform: none; @navbar-subtitle-letter-spacing: normal; @navbar-subtitle-line-height: 1.4; @navbar-subtitle-font-style: normal; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-primary-nav-item-font-weight: 700; @navbar-dropdown-nav-font-size: 12px; @navbar-dropdown-nav-subtitle-font-family: @global-font-family; @navbar-dropdown-nav-subtitle-font-weight: 400; @navbar-dropdown-nav-subtitle-text-transform: none; @navbar-dropdown-nav-subtitle-letter-spacing: normal; @navbar-dropdown-nav-subtitle-line-height: 1.4; @navbar-dropdown-nav-subtitle-font-style: normal; @internal-navbar-gradient: linear-gradient(180deg, lighten(#17183D, 4%) 10%, fade(#8333C1, 15%) 100%); @navbar-sticky-box-shadow: @global-small-box-shadow; @navbar-dropdown-box-shadow: @global-medium-box-shadow; @inverse-navbar-nav-item-color: fade(@inverse-global-emphasis-color, 70%); @inverse-navbar-nav-item-hover-color: @inverse-global-emphasis-color; @inverse-navbar-nav-item-onclick-color: @inverse-global-muted-color; @inverse-navbar-toggle-color: @inverse-global-emphasis-color; @inverse-navbar-nav-item-line-hover-background: transparent; @inverse-navbar-nav-item-line-onclick-background: transparent; @inverse-navbar-nav-item-line-active-background: @inverse-global-muted-color; @subnav-item-color: @global-color; @subnav-item-hover-color: @global-emphasis-color; @subnav-item-active-color: @global-primary-background; @subnav-divider-border-height: 0.9em; @subnav-pill-item-padding-vertical: 6px; @subnav-pill-item-padding-horizontal: 18px; @subnav-pill-item-hover-color: @global-primary-background; @subnav-pill-item-onclick-color: @global-emphasis-color; @subnav-pill-item-active-color: @global-emphasis-color; @subnav-item-font-size: 12px; @subnav-pill-item-border-radius: 500px; @internal-subnav-pill-item-active-gradient: linear-gradient(135deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @subnav-pill-item-onclick-box-shadow: @global-small-box-shadow; @subnav-pill-item-active-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.1), @global-small-box-shadow; @breadcrumb-item-font-size: 12px; @breadcrumb-item-active-color: @global-emphasis-color; @breadcrumb-divider-margin-horizontal: 15px; @breadcrumb-divider-color: fade(@global-muted-color, 35%); @pagination-margin-horizontal: 10px; @pagination-item-padding-vertical: 3px; @pagination-item-padding-horizontal: 6px; @pagination-item-hover-color: @global-emphasis-color; @pagination-item-active-color: @global-primary-background; @pagination-item-min-width: 25px; @internal-pagination-item-hover-mode: glitch; @pagination-item-letter-spacing: 0; @pagination-item-border-mode: -bottom; @pagination-item-hover-border: @global-border; @pagination-item-active-border: @global-primary-background; @tab-item-padding-horizontal: 20px; @tab-item-padding-vertical: 10px; @tab-item-color: @global-color; @tab-item-hover-color: @global-emphasis-color; @tab-item-font-size: 12px; @tab-item-line-height: 20px; @internal-tab-item-active-border-gradient: linear-gradient(90deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @slidenav-active-color: @global-emphasis-color; @dotnav-item-width: 12px; @dotnav-item-border-radius: 0; @dotnav-item-background: transparent; @dotnav-item-hover-background: @global-primary-background; @dotnav-item-onclick-background: @global-primary-background; @dotnav-item-active-background: @global-primary-background; @dotnav-item-border-width: 2px; @dotnav-item-border: fade(@global-color, 60%); @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-hover-background: @global-primary-background; @inverse-dotnav-item-onclick-background: @global-primary-background; @inverse-dotnav-item-active-background: @global-primary-background; @inverse-dotnav-item-border: fade(@global-background, 60%); @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-link-color; @iconnav-item-active-color: @global-link-color; @text-lead-font-size: @global-medium-font-size; @text-lead-line-height: 1.4; @text-lead-color: @global-primary-background; @text-meta-font-size: 12px; @text-large-font-size: @global-medium-font-size; @text-secondary-color: @global-link-hover-color; @internal-text-background-color-gradient: linear-gradient(135deg, @global-primary-background, desaturate(darken(spin(@global-primary-background, -45%), 15%), 25%)); @inverse-text-lead-color: @inverse-global-emphasis-color; @border-rounded-border-radius: @global-border-radius; @box-shadow-bottom-height: 100%; @box-shadow-bottom-bottom: -15%; @box-shadow-bottom-border-radius: 0; @box-shadow-bottom-background: linear-gradient(270deg, @global-secondary-background, @global-primary-background); @box-shadow-bottom-blur: 60px; @logo-font-family: @global-primary-font-family; @logo-font-weight: 600; @logo-text-transform: @global-primary-text-transform; .hook-box-shadow-bottom() { transform: scale(0.85); } @inverse-global-color-mode: dark; @inverse-global-border: fade(@inverse-global-color, 8%);assets/uikit-themes/master-vibe/icons/slidenav-next.svg000064400000000256151666572400017330 0ustar00<svg width="10" height="14" viewBox="0 0 10 14" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" stroke-width="1.4" points="1,12 8,7 1,2" /> </svg> assets/uikit-themes/master-vibe/icons/slidenav-previous-large.svg000064400000000257151666572400021317 0ustar00<svg width="17" height="26" viewBox="0 0 17 26" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" stroke-width="2" points="15,3 2,13 15,23" /> </svg> assets/uikit-themes/master-vibe/icons/nav-parent-icon-large.svg000064400000000243151666572400020634 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="2.011 6.006 17.989 6.006 10 13.994 2.011 6.006" /> </svg> assets/uikit-themes/master-vibe/icons/nav-parent-icon.svg000064400000000217151666572400017545 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="5 7 15 7 10 12" /> </svg> assets/uikit-themes/master-vibe/icons/slidenav-previous.svg000064400000000256151666572400020226 0ustar00<svg width="10" height="14" viewBox="0 0 10 14" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" stroke-width="1.4" points="9,2 2,7 9,12" /> </svg> assets/uikit-themes/master-vibe/icons/navbar-parent-icon.svg000064400000000217151666572400020232 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="5 7 15 7 10 12" /> </svg> assets/uikit-themes/master-vibe/icons/slidenav-next-large.svg000064400000000256151666572400020420 0ustar00<svg width="17" height="26" viewBox="0 0 17 26" xmlns="http://www.w3.org/2000/svg"> <polygon fill="none" stroke="#000" stroke-width="2" points="2,23 15,13 2,3" /> </svg> assets/uikit-themes/master-vibe/images/base-body-overlay.gif000064400001001565151666572400020200 0ustar00GIF89a������\[`]a��ժ��*+����մ���������L��nL�մ��m���,���հ���n���մ��NՐ�ִճ�n����J�n��Kմ�o�g�'��լ�'��m*ݨ����n�J���Ԓ���(��L��n����ک)'�_�\*������n��Mյnմմn��K���K���N�n��ֶK����NԳn��֑Ց��nm��K�m�m�m�n�K'aN֑���ը,��N��-�I������ֳL�L�,c���m�L�Ր���o���nճ��n������%��IM��^,��nm�M��Nn�K֓����n��*��n���oI�n���mno�K��LnВ��n��nג��noNҴN�K�Բ�JKMҴ�mLՏm��d�,��K�K�oԑI���LJ��Րmo�I�n��O��N��n�o��K���o�n�l����nn�ՒJ�G)�^0c��N��a*Ln�J����I�+�m�n�N�nm�ֳonmN�L�Lԑ��oJ�����Hm�K�OH3]][4�Yc4��o�n��mLL����n���Mo�NM��K�nM�o�K�o�-^I��K��\6f�Nm��I��n��mo��n���n��L��K�l�l���o���oL�O����I�IH���O�5�4k�Jm��������M�m�opH���NK��I��n�Ko�)6�p��P����5�-+5�)7�:=^3G5T14�<1+"3������������������������������������������������������3D�!�NETSCAPE2.0!�XMP DataXMP<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c132 79.159284, 2016/04/19-13:13:40 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:b858dd68-8c8a-4818-b1c6-4f8c4a308103" xmpMM:DocumentID="xmp.did:9B8E49A00B0411E79483E72AA23EB614" xmpMM:InstanceID="xmp.iid:9B8E499F0B0411E79483E72AA23EB614" xmp:CreatorTool="Adobe Photoshop CC 2015.5 (Macintosh)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:e0fd5419-5bb3-4cfc-bca9-8d0fa15b1342" stRef:documentID="adobe:docid:photoshop:a33570cb-536e-117a-976c-925b5ca0bff4"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�������������������������������������������������������������������������������������������������������������������������������~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"! !� �,����-�G� 8�����;:Ĝ@�P�̔6�X1��â�TX�aΔ\^"y��C���HB�((d0p' �`�P�3��$�`�@�� l.�qW����.H���9 p�� AR�4,yW?r�'�H�C�K�~�jP�\�(�@� R����FRZ<��!ԙ��Ş�*��X�`�i]�$��j�? ���cޕR���@�iG.��$*��|>\����!r�BA��C�{�I� �`�v^�F�;i E�#��/H<R�P���}�q�d���B�"��(���p��9T4E��C<$`A��#�N,'<��/r|�'~�!E6��SO R����CIv�� �@6�H��;<s� �@��<�`q�3qh�;\SKh#O=;�T�J���P��"m��Y�S>�,���AV���A ��CGLh#���`� ��?<�;���I�p���>ȡ�0}P;�(� z,���C �N�DBG+H�Cx�2�%4�CO5�@.����<0�}�Њ^�� �$�@ ��A$z��D)^4�C ~tae�!�XS�CC8|���{`�p҃h�H�0DFd� ��S P�� �X�G*��"E(�LqD;X�C��!C�� ����<��0�� �|�q��\��p@K �Ћ(0�����p�M9���7�!� d��� l�S�"��aF�X�D�C�"f#CXA�x�CNX�@!P��<F��d�D#�����,�[�Ap\�� � `ЀN���<�s�" ���<�h`F0;t�4�<O���<��I> L��*�����SR )@MC�� a , ah���-�,�恂(l��C0 M����N#�cR�(��8����A�� p�e�|���(@�#��U�@>�q`�!P��1Pb�����,D� i�8�@b�A �X�7 ��b 'p� X�)0���#�h��P3@��� `h e�@(�ȣ,�>�!p/�G�RqZ����B�:���x�l���w�>���#P����#�6K�� F0:� o�(B���AH`ԡ W�B5��>��S���a8�9��X�>dbL�@?� ���C�@&��EX T H��|� ��7l D�MY"��!쉁h�G��@�?�`��>�8p��B�$�R�B H0��`}�h��UHa� �7X�d��(�,������⡁ � � $"(��>Ɛxa=�C*�a�8�+���L0!^��:��_L����j����9f1�"����<���@b��6��>�������@MxGVP>�@8��L�=�1�O���#��8�� 0H!�`A6DЋz,���X`P�8�30���耸h;��C���BЃ;xa>hB���@��*�� ?,�yH�&�F���2��R�h�.�@�'�*`��a�ai�@>����r H,������#�������%LBS��@�#`�؈2p�L�a &�B*R ��!�(�P N�� ��(p�q�!^����PR��U�8�|��U�8��$�dX�"!�Y�b R�F3H��� ��!5��3@V�#�&��=� O�B>j1�'0� p�#�a���r(@<|�E���(��!G?�" x���>�' �0�3X�0����H#��.��!<���R� d��&Vᅩ��~��"�� #��x@(@S�j@A��40 >�`�`��-8��^�ڥE/��1��� ,�:h�( �1d��`�>�$��@�q`�K�(|�,�� �3t����.:� ���ā�p|� =ȃ.z� �h�4`���in�F|�"hA�� `{x��Q x��P� �1�}$�����)�u��6���V``;�fd@��=R@�H��,�ю<� �2��T�Hn�4"���*�0n�`=�r0X 8';��r.��H)���%0�^��@�`9�]<E�Y����,`w� t�x�1� �p e� p``�8p>p[0S��� &���P�0F��p�v@��@��!�pD7G�0��"p$M�@>���� �>�H��X��:���p��'���G�#��� c0��2�p7������� � f 8 ��P��e��7p��=�o�Q�Q)�pN�� ����z�x`�&�� ��� �P�4p��`:`�@O@ )p��� 7f�^P %`i�@@a����p]4 S �0�x�B��� ��2BB�:� ��V���o[�'�DP'`����U��0����M�p���6P� ��K@3�0����P�`��0� ������P Y y0��"L�xp���P VP6n���8 W� �)�P�D��B� ��2�f�O�;@ 0o�0p�� P�P �k��]p����� q`% ���G�"��-��0�0��p5`�-�> �4�uP P�P���p� 0�w V@[����p @`@ �eP>��N ��`�K0w�O���P�_��6` %@���p����e�$p�P`�� ���P �� ʀ�P�>�$p� 5��w���� H"� |� ���� � %P$P �`��p ������3�b�"�ɰ ����ڰ��'0��ܠa��7���.A������^� op&2$P>Y@�1'"`Y�V���pN0R���V�`-0 ߖ�P�K �� �� `��`�j�9p;P^@ �ʐ����PB��d`)` P��Y@s�60 FP P^��6��("p���� 6"W�X�dI�~� ߰A��J�`K>pp@�v���� 9�0 bpO���PT` ���0٠ �����(`-� �c`�� � pTj�� ^p@P�iA�L@�pS�p���p�6A�W� ��7 ���gp�� ;@ APp��;p��_i@W@�l� a�.��� � `t` l`@7`y0 �� z�p �0��pO��h�T ��@{0IP/P�?��`�H��e��e ^�0;�"��sP��G`.P@V�6�z���b|�V8p�p��c� Ɛ �Y0� S0K� ���&`c� [0ӰQ�`���0 �P ڻJ���H`~�6� 4�>�� �@8�`8�>�F��\� P:PP Pr`�0� +P ��2@�0� ET�J���� ~��0�� F��b� �0��0]`H@�@�� ��p���ģ����`{�{0 � m�A};p@�jp���F��-pR� i�� ��l���q�.�^p�b�)�uJP4ppL2�I0,0�"�spKp}pX�@�v`Op?����� Y��"��P ��-������r�����B�z� �e�� .� f ͐/P (�)��p<� �`r�� ��+=p #��G��`IP��� Z�F��PG��������`D���c��f,����� p ��= �Z�p�<k��N <�k^�6p��x��@�E��G�� S0� �F[ bpv@l)��[0��2�=i @�� ��(����2�p>` �� <T0���1P��|��p����z ����p��Fi� �7��<�pM L���$m�<b@ �p7"0L�x�� OP��i�m0�0������mY �`q`!;b� ��O`g���R���0� �7z@0I��a.P�� ��2�&�`�@�`���!�0-k P@���9��y���A@ q09 {��@�a� � ^��pfP �� ��7P@�� p^���x� ���p�)z�d A���P� /0� ��������wP�C�G�����E� �P����0mb@A0��Ԁ wP >� p�p"��# B��@? G�b��;Pi`#�aL8�L�1� z0Yp=�.0<m��pa�E7� ��ˠ �p������wpx��P�P$�N���\p�J`АS u�����8�ȉY��p�S%�X�{�`��`� �`m7���^c���Q�"�@�P�J ��`� ��W(`�� ~S` ��ٰzp@�V���Pn5P���� #�ɠ$(NP�[�07��S�����\����2��`��<`@SQ � W`O��y`�S� ��;�� 4� �`��t� �P��`�P���) �`��0���0W9~]�B�@�LQ8�@&gdg�-/�(,8rG�"� ��B�u��у�'�UI�ȷ#@� t�40`��zD�x��_�=Lx�s4���8�7h��O�JD��!�K��`@�&Z,�Hq��� ��X� � @���\3D8�K�>V$��Дj�F��g@��%y05(��\�en���MZ�.=�L�V@ �8(f�s�����BA�B�G���-�`@�6�,h#���(�*D ɇ&rp��R(x`�_������B)1$��A�A� �E���"�ƀ+FXņEvx^2�"�*�@ �I�3�ig�X��#hh`L��"��J�a d�dp�� !�?.8��� ��D�Wl``�'�3z�#.H�`�A<�9��f � ��أ� 胀�h��w�0@� h�.D�����A�W ��o*Ha�/�i�'�l48��,��� 2 :�S4!�,� B�#�P�Z��Pd;D�G�$�v�Af���|���� G8�������Dn�njP00a�%���F��fh�lژ"Al�e|�Q�y���1� d�I��|���L9nj�'HH�+\�A���`8((�9@����A�>�y�/@Y �,pG*b��@HD��H�ѧA���L�F'�h���ǂL�������X`� ���(E4�2��x(�,�hcx8a�:�G����cW��f�zXb�>����<�����Dgx� ��`0�� Zx��� A�С��@���/�P�?�*��1>h�<D��i��%�(8��a �D�z�c�x��d8tp��[��cM������\��%.h(�<!���4|��R���Є;�p�=��8>�$�?�B�@�&��wi�7j� #<�<(�HІBP���P#D�����ALC��Z`<�p�� g@� �h�?H�O� ���`���B�"@�yl`m<�� 7a�� �p1\ :�B�nh��8�q6�!7p���7�=PB��#�� !��-��l(G#�!�@I�NA /�`Lx��� � �p�}�b +@/ �4�_� :p�$���7�0���� ��P�rp�b ��P�X`�@!@1܃�B�Ax�c � � `�x,� �D0�|���D( �JT�쐄H��\�b���F�P���0@� (BVo0@���#����B�တ`��(� :�w(��8 Xp�4@,�� H� ` L`�a�{��P0� �)$ �C;�+����*P!�$���ȇ(�`/,�`@;ځ�@�0�#N�!D���@h��8�c�H��@��C61��VM ��vx`h�;�0�T�@!j� ���pF*.�w�` ~��R �L���[;� ���A�6,��0 0�*�"�XB�A�&X� 8�� a���0hZ�b^���`� ,� ���,�� s����"4�����q� #"pC � �@+��*j��[��Xr�����@��(�cKD�����#�X$�����{�� � �\�0�&�`5D�:`5<(�I�!�x'ЎX�tx���O0�Ct@�&@v��u�|��PP� `>� ֝�U(�9v�6����. ��2�������,"U�� ��d@"�C2�` �a�`G P�y��hD!� �7�aVI�p�ȣ �%V�#�`�`�,ʝrx�n�/���G/�1aX���}�a��h�;�V� <���}��$��6�@{�>4p��-#`HP��#�� Љ�.�3�1�F�c {��& �H�#�ф7@��br��(� !��&*�[�t�,��@U��$\L����8 �6�u���� t�(�8Zq0� z �1)h2�) 9�����8<u'$#�pv(p�y�!8�*��PrX��� ��Pb��p0@���|c�G�B�8���,vxAT8@4 3`( Ї<P��,P����h��`)P�Ѐ"*H�h�U8b>�5r��#y @�+�� ѸX� h`i0 ��L��8HH�9)���Q@8�'��!Ȕ'��X ����EȄU��zȀ��8�F�K��o�W�=��o��p�0�1�&ԀF��eM�=h�8X�|8F�����C�J���w���Cx'�M�jсZ�xw��D��r���[�� p���nӀ ؇1H>}P%��O�[��=��(` �w8�0�h}p���b���J�9x�7�0��P @JȆ=�{� ЃKH�(f8�5P�o��%�K�<b��i�Hx��>h� =��[�|�h��2� �=('�/=@wx. �y�P�3p0�H�4�X�wX8px'� ��$`)�(1�,���!�p/�?ȅ�8���Ʌh����� "����x�S��P��C��[`��x(�r�P�n|h��(� �Nh0f8���f��28�XN(`�xp�0�%�5�|(F�H pZ��)�SH�]7#P��)�wX�Z@�sȄX�d��%xw`�ЀP��6�`�=G@�z���%��� 4p@�"h� H�h|�p�-�)�=@�'؇xhCp,�??��mH�+@�%�;h�P]H`+H�?��ǩ����a��Pv����]��C�8�o��1��>��z`�E6�(����%P�xx1M��VہLX�@�x0�H�7��g�@�(?!��v��/x����mc�38WЄ�4��X���� �8�X���q��`vp�@��Hh#}h�gP������N8�Z�@���?��p$�pVH P{8��(�B@���&=�B`U�xh&�����n� Ȃ:Ȇ�� �Ȃ�� ��<`��P��y�8�����(:�H��GX�� W�} �h&8��&(�8�CP����ph��]��(�6��:��6P�h����&�_� �JXE����,H��L���A00� �=�/J0�����0x��,�-�^�vS`�*��U�J�w�`�XE���I���0�y8 ��p�Є2��<`.X�p�kȂ߫'X�18@H�!hv�U�� O�b�[�b0�P0g���!Hۻ�:p�#jHF���0�i��l؆8(/0x��e�y�p��(�r��0��x�,�(mXR��l`��`��x�Z�%p�+��E��Ȁx�s�8@�q�Ѐx�P V}�E�*�, ��x�Zg��x� �G��Z0b]a�y������{��`��Np�-�����P�<Ѐ;��a�`�3H=h�S��aH�E�0@u�*x�!�v@�6p+x+�T��3x�x ��!�1x�v���88� �О8 �y8Yp�I�A0�d��h7<ha�<� �T eH��@�_Y�D�{F��@�+_0��9��,��&�x )`�2��Z4��S�������w�8� 8�Nt1�}8��T|8dh��3�F�����J8�8�5��!0�+q�X�6�r0�f���<�a8h���\�D�p�x�X�G,��e�h�"��8��4��H�K��C �>�Y(�-p�% �8�!��z�}ȇ��}���(=px2�K9824 ���c�wЇ&��Yx ����P���}I�Dx�[�.@&�+80�v`;@��N�|�P�gp�*�H�8Q�/��B`?��2x=ܵ�l�fh�%X� yh7����ys+�at��[�`�K` �p��l�/�|\`�#ȇ"8:KHR�-`�9�{��+��1hH�=p^8�� �(�>(�@@0� ��T���4�����F0� �%�W��?ȁ)�9��\ �<�!�U����z�e- ��&?��4H��W�� 5X�����P��Y�+�!L��X� �FX�#pQ(?�<hZ3[P�ȃ!2_�S+Ѐ03`�u�&�EM�mX���!�K$hD/p�Upp�v�@��h�gۀ"��lx�10Tp �p�5Ѓ�#��0&@P$��b��.�=��v�T�I��c)��J�H#ȀK�|H��9h�ː��`�a�i� ���m��}8�g��9x9�*�����_����,`V�/��(�W��:��{8<�h!�<oȄ�z��gH7X�A,P�+Ȁ��R��:�xQ K����(�|� -8�R�]P'PX*� ��P��%(�+�P� �U� ��'��'�E��<���U�H^�R�>� ��.���<�,�{��Px�7ȀG�Tf(#<�"ЁDh�8�T0��,��@�B����0f��C(M�ȁ$��LH�6(]8�/� Ѐ��R� ��S� ��w�����[�? z@�x�7�$� �`���]�P4ȁ h�v`�Lv���k0�0�0��H�z�&��N0��y����%�+���O��H`�z�*��'�`P`�9~WV���P@Q�(w`�ÄH������jX� 0�6`��(E�p'@Q0x8 `�x~�8!Z1�R �B ���Â�� x����]D6:$��JN&@l!� �)n\�%�vAÍ&�1�<"2��X�#y@�1i"'yR4��Q!�m��A�2`�Zy�r�[0#S\�Hd#�F�p� �Z�N]��h��;0t`Y�c &Q����-�8�rp����c5� �s F9�h�цđ;3eU�AEO�a6��p�H+|$�8;�9k\̰ʇ+�����ɞa&�ip��xT9`�F�Ho"E#�%��Y�����G �lZ���/l�@� �3�/���rH 8����(Q�K4�� �T��$d �e�G=j̰�E��8p� >��5�SH0 �P(��{d��t��8J+�@P5$A�T\��$Q�=�Ȑ�C�� =@2.H2�?(�A� �-k�0�&�S�>�#E<P@�'��0�)A��w�}����0�Y�SI�@`n� �����a�A?j��Cq,Q�p�+�x�00@��C"|@*�Ԓ�(��c�8�a >@�%��F ��^�a>�t���PF0D�F�, H(c�9� 9�1���D�1�)��G= $ �$��$hlO r� J$mH��d�� �jPH9\��̤���"xs�H�9��>;�s�δR�#�J%�8c�<C�C�7C��L� A�]�� ���! �,�1�7�s�3�H�� v���h���Q�)���%܃�`hn�N�q�<FD$�cِS�.4�C�R��%\p%���G�0H);8c����uHCJ;��7��r�l������ؠS��=,��v��o\�����XD�N; (�� Ag�`s��p��`\x�B �Db���0�,����!�`%�xB-���h�H��!��X���!� P A���fP`8��2`��� ��!���_8�V!z(��@��"�8|� �8�A!&wZ�t8 N��_<��x�LC;� PP�� %x�S�P�3�"���Zȣ�Z0�4��Sx�B����h���хT,B��A�0�(P�� ��� �� vL ah�4~1(d {(��x�����v0�X�a���4N�)��hDv�A|��B��|(c�pG��d�s�! ����ؑ�6�@���q2 �����`&P�����\x�79�)���!W 62 �;DcH�*�0� p�T�XD��p���?L�x�f0�w� 0�r��xx(9xC4 �x�#�x��P�@@�)� Ѐ�0l0>�A�����%4!8����b �>`1�^�A�V g��x@H�Q�(�������Cs� � D#b��0��^4©l���@��$T�@"ΰ�04q�G�����8������; Ix�a �@�q�#��Bp�^08�BT #.j /��x��7"!�z``���,�[�bS�Ln�?�A�x�:@�[D� �C"�VT� ��p�c�Bl{x�>�P�d<�<s����@;@�t�H��N0�9 �Dp! �>0�D8 h@��[\��ZЪ�#(:�� bH��@�9D��X���wL�GEr� X@�xGla-f�c���v(b�t� tB��$�x@Ȁ2�0�J@� ���<���+�6�A�����`�>x�A���o6p��) !�8�0p�������М,4Z8�`����Їv�NX�Y`A� �D~����l`1x�P�=�"N,@��B��t�2 /("^x�t��G@YhA*�_^@BƠ|�A�&Ђ|��@B-Π�Wl��<�����Ѓр ��� �E�C 0A 4$�.�L�P` ~�l 4����)Al�pF8x t�"P�P �Ф�6l@��$�� `En�p�I<@A Tp�آѸ�0|��8�"V(�ǐ5D x�CNp��l���T��b` feF(R@����FG�@ �C� ��� �`�;<Y�k�9h��v�a&0���\���� A �<���-�M��0�0<@*�!h�>H+@A4@"�@��<t���>H@ 4@\�.@)�܃| @/���B�]����A���C|�5D���C4�������#��@<x�.� H���C;$�^)<�2̃hBx,�/(��=$��0T ȃw��!�@��x/\�=D,� �A.@ ��=,A�H*��|B 0T��@��q��4�<�� �>�C�44@?P�d@ $ ����&���C�"�;��Y�;�� ?�!�� ��<x���B��zԃ;ЂP�ȁCe@HC�A ��,PBW�7��x`@"@<��B%��xA@���6��A�B5<*�i� h�"�@t�� `�!L�pF��+5�;�%��TA�HCd�>p��=�@5`H�0@'8���=4��B���DB0� d�/ Bd�4�C�D�)98�<��h��l>�u�<�B�\@ �=���B��@$��@�q�B��A6��<P�0x_5�v�<@�L�3�B!�Bu� 0�����0�(��2l� ��CL�p�)PA!\���<8@0�@�"�A<�*,�@�����#��0@!<�A4�*��<�6�B��6DB�m�A(d�p<���4@d�*���Ad�!̃�p@@�$��6D ���\@*�B<X�lX�"���&0*��X̓�A�0�`b��m@ @�A��l�<<�C|�=��;DBx�%�6��$�1,A)8E�� �L@'��A<A0�C?���0d��,�(D@t@�C4C��A`5���L�%�>$��A(�/����@BT�<�O,�@ � H���/h��>����\@�@���6�L���`�(4�<�L�PCXx����0@?�C(Pi0�<���2=��K-=X�q�'̃%T4(4�x8@�� ���&XBp�)< �p�<H�"�$�$�P@�Bl�t �@ �X�>�}�.d�tl�\|���0A� <&�"�����@����4��(�3@ȁ|�3�@x><��������4 \A��'dC.(�2�=$���<܃!ăd��A��7���<�6 � �t�����@*���p8B�� l�!��h�|@���&���B!<��3�<Ԃ:h���<8$@�@6�0K-�y��\��F@ԁ�0�@dC�f�3��B���C.��8��p�AA��60 �<� ��<�0�=�2��0�@�X,1�@AP�2�8��C>�@<�B=�-l]d�<C+4� �$���;�B$��$� �LB����AH�!��X����@���,�h�D�+�Ab�E���d��� ��@C�"��>��3�x� �L W�$@ �dpE݀�i�<�� � ���C @P��R �!PA6����A&�B0����<����tA�>A�0�B\�$>�A#��h��� hB��/���7��<�=4H����+�A���@�]1t���*!�Cא�>�n)��^@(��p>d�0�$�B�.8CP�<A6��3<h.<L������|��3�|C (�A&p4<�<� �\�<T��@/4>,�L<�=�\f@8��5�I`���!|)8 �t;<��@�>��;��� 8ؚt���$���h@t�<�t�4�<�E���@8X$4Ib�.�A0����d�Hqd���c�C�@���l�<0�� <��=x�@��)<A|C�AE�,��� Dm7��>���� @�.,���%L��"|@�A��-@��&�9�(H� � ���?�C�3@�A< @D@�C �fЃd$���v���������,@����F�t�����F� �C;�D� EcC ��`\"���<(�/A*<�)��\|) �C�9�/,�A�4TAe�50�"�!�@(������,�3��dA8� � X�T��(� ����n�4P�|>��;܁`BR~�p� �,��\4,A$�l��;�^<-X���*��r���$�<0���C ������(E�@,h@�|@!<��x���W�(@*P�B-H;� 0�@lA Ԃ/�" �� �;��'l��Ղ�-��,��ӂ$)p/��0�$� �C>�.@B3� '�0��CL�D���;���&��7-��;$�>P�*���CP@��C),�;��ԃP5<�i�@B,�H�<�P�0pA $�5|C���ā�iC8a5�@�B���-��&xP�;|@%@���-Ѐ�1A(�v.�A��<�A���%�����-�=h1�B!������ �(7�$�;�<0��l��|�T@$�,�S�� $�'��J<$3P.<:�p<����?�@����L�A$܀`/.��dB6��X�|�<��#l��4\��*���]l�;h�0�. ��'4 ̃C�-8���0�3��Ђ��T�?��6İT����N/��<L�`�l�l�>�>ԁ�A@U.Tȍ2�8��I�y�x�@F �9����,=��1H�'�RP��M� ���c��؞y+ǝ� ���)�x��"FY𧏍�\~�p���˼+�<D���zD� Ea�FP`t��Y�Ң���F ?�ېA�*xq�Qڰaۅf� "��_��@���0|����A|��0�<G�H�`���]��YZp�\��u@f��%tvRF�G���2�a�!��=Z�d��IH���8 Z�����\ �mX�<�q�'�ŋh@�`�1��" ����� hN�g� *�b b2�f x$8D��9f��m�g�(��!y��0X�\�AMH���+�şL(=fq�;�`y"�1�X$�i�(>�Æ::��lL�e3|��|NP`�#�`�0�M��5ؑG� z���wPȡ��Hěk䰂|��/|�'�%,�A��8��^� ��-Ҡ"�{���D����]h8yR`� &��E�4x�m��G "�#�6^���������J�$ ��OlX�w(��>���G��DV4� y��E�`�� R�x�I G�x���{�pȀ$.���z�g�!>`��LV�N������$����y\���P�C�&9@�v*���%�q�2>pf�@� ��O.�D�H蠎a��#2ɧ�2���Fi�:�i�N�e1�B���a� (���$�y*�B~�I��Q���&����E62X \8H"#@�g��Ia�F�� v�G�K`%7|b�2ؑd fj���,\��}��@����Y`���X�) E�Z�+D9` M@��;�q�Ҁg�|"�ddp /��-*@��pG�Њ>\A���N0J���� �� �@�hG " X�0(@�����Z0y�`&� ^��o����1���bD<VA�Xx 0�p1�D�ш#�ApX�*$�vܣ�`q�.w�G��9��hGH�w�A�[����#� ��B� �I� � , �B�����)�A \��@8�)�����*�$ �A"��a��0�`�a|�ɸ�GzI����A>�Јx�C8p��a�c�GP��#�� (p� F�w,���4p���`$�#��@>.��@��E�@�p�� ��0*�����,\ `�p-1@��E @���c^��|��YD�u`� ����A't@M|��X�b�AE ��E?�@;艏!X@ X@*^І'H��)�\ �x�@�}� 4��7���,������}�!)��&v�~D]���q�B0 ��\!��@B$rp������l@i�p��u@e��>�A(�?8H�\C �q h�P���T\!�+�&��D�t��,���**�3���z�'$� -��A <���:�q �#m���@X���x�>�"Rp��&� �"&�+|���B,�*�2���$� ��� �Kx��c)��@C<4a !��Vq |�h�.p P�!-6��(���c����qP�����>�'8� ��`1*4`7��p�PH�"�d0� ��3Lq'��"��3v��3��(�-��j� ��J.<B��t���C�� (p�$�p�@�;�/��`�!����&>� z8@��� ��:�H��1��!�Ȇ/p0!� � ��A|x��w��^0����� �h�<""?���hE|@o@ ;p;� /��U����Yt�$L�����8�>*� ^| ��A�Q;H����� $"8P(�;�C��.�`�3@ tHD���L��x�>D@ a�a��(���4 �-��!z���)�(xC� h@N�XE.z�p� ��������C�� XpA�䑁 p���RP�y�`�C)��2�� 0�|��q`@�Yx� nq�H������V��GA�.x�+�B��9p��@ ���\�����#x���$I� ��`� �a �X�� �`� ��P�*!D`L��!���(`,a�`�N(@�a�� L�h]6@���@a���V�� (� X�v�� F���� x�����A����#\�& ��$����n� ��ʮ0���z�nbl$�@!�@�`� !l�a��4A�`Z@�Aԁ\a@ �������`�a �v � �!^J � �� �N�N&�d� ��������A �xW���� � v�p��`�B��q��P P A�aBA�@����@�`�| ta<�u�ah�R �� �`4���&X` �@zA�G���@`��@Z� � 2��V@ V`���*@ ��\��`��&�±>B��az@�V�j��`n�>� ����XA�@�@��`����!��܁�A���)@ �v�`��!n |�8�P��p�����ʀ� z�o p�@��a�r��`b`����'� �p�@��F���A�� �!D|��!������`�@�8��4!� z���`�� �@�al�����*�^ v��d $�����`r�8�Bҡ *)��V` �!�@ӁP���T`�~NO�`�������]�aB�z��\A�a � �A���n�8���VL!����zA�!��&[�l�ʀ����!��}�� qrA2`�A���@�h���a �D Sa N���&`@ X��!@�,X��@����� n 4a(>�!� �`�!4A� ��zC� �A"!� � �� ���Za��ހD�(P��N���fD�Ja� MI�> X���`�@ ��r�n��N� ��n����A �����`� ������(\�(@&���z���T��8��`���X�D��Q$��` f!@ d���D�@���a�:z� �� h��� ���� �(�����P` @a�H�|a����@��l��a��b ����a��<av���"���p�D�$�� �`�� ���`�D �@�a:�~�Ta�`n ���@��� & @ ��,`ްxa ��-�AT D� p� ����d�Z��A�4a. ����8X/�5�@ . �h x!B�|��������` � � �!�@�Q�4a�A�`` ހt�,&@B�>��T����R���A�`g"`@<�h@ tf� .@ �` �HN �v�� r�&���l�� p�T��`�`N��D`D��a� n��,��&�@���4�L`h�&�*� ~� &���%����$`���`�8��!$0h���`�A�� ����R�b��d� �!���@�ࠟn�H��`�5�����:������� ���bA*`� R�(@@ d@�|` R��)8�0���@!.@\�������`�a�h�B��@8 g�t�J@ �N!����@H �D���Z@�n �����^I �`@^� $�,a>!����z� �$ށv V� \��� :'N`�!x��>��|�@ ��[�����h�"@6�dl�, >`�tD���D�@�h� @�& ��X��" �6v� �� "����@a l8"��!x��Ah�&a����aLa�I���@J���8aD�� ��@6��!h�����M� �2@���Aՠ�&�,�n���cZAra b�@V!�.xAdX�:F���`a�@��z�xg�n��@����50��6q��d��@p�h� ha $�"!TA� L!��`�@>@"�f ���`(@��f6�h�P�� �u�`�bn`��%,!B l� H����`�` r�ạa�A����aL�Z����� �/�@x<��l ����l��` �l`� $�`2 �`�r��`���a��` �� ��4���a����>�� ��& �>|@��� �P`t�4�@2��i�h=S���f``�v�$� x���@t`y3@�+(`Рbq �@2���h�6�b��!^L� ��|`,���N �@D�x�/@�2���ظa$�4�*�n�|��� �᧲��d�j�! A����@�(�� 2��#`����Yx \����@�X�a܁?~��l�3;�� �` ���@ ��|n�� !.�Һ���`�a?�@GW �`.^�@��d`f�d�����h�t�� \�F`������ �`vA\( ������J����@8�f���V�Cb�./g��� �4:��y�J��HT�2��:Hi�!��P�JDx=Y��M�Y��X��J�'���7A=q�C� "i`�^��1 T�%�t�h@�VI)��b#�`(�J����'QQ�xzЂB�j��l0`O��<�H�0�8�0�ѐ�B�_n�8s<�l�`G�~l��a�$�=���`� ��p�F�#;��C�e �2O�-��.w��1d�U�v?N�۰%K��i`e�)N��p#�6K�8�C�D�X�8P��#�;D0D�xH����Cp��=|���`��آ 7O`�C �,p �D2!�`��Ȑ�PO$�=��dG� Gs��!Ci;�!�^�"��C�zT@�`�;�ЀE��0�@p@#{4 � :��Zh0��0�;Y���2<�@�� \�< ��A9�# <�� 0���S�x�C��d�C\@�M4qD���Jg�B!�p2s p�$(p�'�`�u A���O�sA�T�A����A<N�1��A@ |D�`�� �<=|��<�D���G�p�6��*?�@�=)�K@��Y|C�,�=h0p�(=dq����A��>��Gȳ�*i�j8�4bh"�"�>ܴ2�se�2L)x�@�U�A����y�)����a 'b��YL"�<�$A�)^BE$��B;3I�L 2T��e$�H<�1A0�&"� �0��58��� (�v�9�q@�PP/w���&L��N�A�h������$�AWl!/̔�t0�0��p�$�x!�'����<�� =P���2�RP5����܁�n���� L��g��C�q ��7X��;�aW��� �&Rl��h�L!�,�`���!p��Y,Cq�00��`�&�;d@}P��0�0`�0�HA?<�-p3��D��W@�dp�.h��<��\B����xL Y��$"�P#� >�v0�C��`W�!R�1���`��<8��ԣ�B>��0� GЀ@A/�$>����#�aH�� �|���5��$�#LD�� �c�C<���{��<�0����A\��A��� ?!� �?�`u� ��4�Ip�@,02h@$��@�À����8@ �0R�� �@�-j���}�C�xg4��l�ȁ�y�����lЅL��;�!������������;H�Od@�H�Q���r�0n��OF0�T܂<Cj� 3a"h�2� ��;HD��<���r�|#9��`"{��1�aS�F|�.� ���h ��_�j�! �E) ��# �p���2<C@B� ��������K� n`�� d��� xЃ6�M�ء�9�!>0�2B� U�AX�?�d ��!� 9�A�(G��?�B]�@��7�����p������/!�r<"�yX@Hx�:��9� ��A*�b th�v�̴��GF�tx��%�\��T �o a�����<�����#x�8�6�0��3�BZ1 d@�G#�0�'٠:`��4�#><�W��8�p|�"��@0{�Ch@;�`\!}�X� 6��� ���� �02� \`���+�'<�!��@7��l��5�ІE���N�C��Vh@��+�,(�@�L���p@�|P�0Z�!��ZF>P�E$�����z4�'P@���D�`�dP`�h�ʰ�)��8���s0�3*�� `��[��(�|�����^���PE,`�|�E7x6\@ �@;R��Dp9H�lqP!(�~�X�` ����*T�ګ�.� �������|�cl0A<T�w��L`�%��TCX�x�V��(��B�@=lt�ܣ�� ���H�ޠ�`���w5��>4�4���B��E`�V��$`ńF�A���-���{��7�-�`L��0@;�i�� 2�G&�m'pA� � �p��L�����`x�w��P+�k� �>�D����f�6�%�$� �P 4�F@(�D@=0 wu۠��аP�`�*�Y�PE �P ��O e�`��E�8��-����O �B@�` �p@���0��݀P�c01�p� pU�G�z�K@%A��Ppz` H�c��cPP^�M�� �`@@@��v��M� ��� ��"w ��` ��P3����@;�cPt0ux >��� ��ʀ�090A�pI�o@֠ ^� � b�����7������n0{fP���V`"0����A0���`Y�����$��P'Wp8�2p�@0 �p�p�I0r"p�p$����B�9P��73�7�������PĐ��� R�)��d���g��P4�^@��I ��L�q09pK` i� ���P"� �!p���� ��@g�7�hp��pe` �pv 8�in���R@`�H�� wp� m��)`� ��W�P����~p��X s�`�;�*���S��a��T��� ��{�0�1f� �����L�6�=�� p� !�\��P|f��3� Kp ^@i�`�h����"@�p`�@M0g�׃��@��%� u �� f]�=`�U��6`��&�=0@R�e9@���P�f��0o�z��~--��|�Tp��`I��m`KP�;wOp�eV��� uS5��pP p$�`�>�� 4�0���_�Ah �� � G� Ð�0P��� p�o� ��z� 6��:Sp :�7p�@~����!v��pRp0� ����q�r�R�20-`& p�� �a��0 �� �A����`�0&�G�;�;��@v�z�~@�{�t�P% ��� �@f��`� [@ {��Ev�� 3���(0j ����P��W�p'P p:��p� ���`C�)@6` �pYp~�`�0ذ$0�"'.@ z �.�"O�{0������L� >� 4@����<�4b @J� @u ���@ �.��:��pn�@�Z0��� �K�����@�)�� � {p�`F�Bp:!���p>� ��O 0 �� $ ��� PT�F)�@P K!�@�P��@/6��@`?� ��9'�0����p ~`Y` B �� a `��!��P>���=p���p��Rp����O�@�`B@��K�9�;|p !ppA� 0pL� w�4��@����"��PAp"�0>@?�!@^���PO���� ��*�e�;0 ` p\� `��q`Vd�"pP5@U�� �@�@�`:@ r�B@#� \�z� %�npjEt� �P d�@3��4|�p�`��P}�J1�Qz���G*���!p �G;$�$p��4� ��17�t�S�����G/z� K�^�.���$h�r$�nX��a 60� � Ѡ�G � ���o�p^ :PF�VRP*���` X ��n�� �`O3�]���� �� �`=���{� �p�P[��B��@ � =s�;���Ы� s�g�����@� �S���0X�^0�u@���p�F�� D\0��� �0�v,9�|���G��H0Vp1%@�p>��� P �����5`Ere29�����a/PY�X���P0w�9��\c�F@>^`M [@�0 �6BPP�.@��0 ��~��3` �cpo�u0�� ` h��y�pK����R`Gp| ;�'�r����@�}a R���������9��� �g`�0ؠ ų�d2� F� -H�08P*0��} S ��V��\p;P(� e�[ °��+i� �p@��P���7y���4��p@��k�p@~)0�p'`(���Pnr0(����3����pu�f 5T:`"p��� s��@��Pf����p�"K�k� �����`u`�FP ��� @��`�0�B ��y(xLp��t�p ����Ы� c�;�8P 6��%y��| X0 7�S )0���^pF� {9�U�e��"� �Pk T0�8�ApT�f�Pp�P�0�� {� `��P]� ����d���0�P��p W� v3� �f�ˀ� � �%uM�r0 ��p��� �� �]pK�p��|� P�@V�l�������0a �@�s�� x ��^P z`ip F`~�qIX� <��p u����y ð����B%��b� �`�� �� p@U�pq��9��+���b�0%b�/s�L�`ŏ ��C�k6R���`̀ ��$�ƀC���a�ꈬ )p�A[�\ؑ��*@� ��R;�����+wB�c@�4� �" �n8�G� v���çNJ=+f���K�� �@)�R�-�SaL�o2�3�\���!��-����q6��@Kkc>P���N�BAR�ȗh�]��h��� h@*�0 KR��T���i�zZ�j��E��Xqp`�B����N����9� y�����!00"�9���DB�"�\qł@�����%h���=Z��4ɥ�{����'�� H�A�%�X��Gl��;���v��� �a��Q����!4��:�`�Ĺe� lȀ�Ĕ���A��d>h��#̈a3"ᣖ���ql��P.� =~ɣy�� �I��G(��D��J !��0B����q�n�D�|�I�,��C�"�g��� �V�x�ÀZ�bM<��� � �Q�� �A�5 ���:.X�V 9�����`�)��'�" ?�Ф 1� �1V��pp� |xE���&�0��*4��j�c��I�HZ�&9r��~Th'�&>��cR�f�C �Xŀ�F#J�e�t�����&k>Ѓw�g��� 9���>�xbO &�O� �8ŏ#�ოy���#��e�%�aGT|�Dž�Mp�g�=��% р� *��$�!Ayh��nct��G�� ��f� �IFl$����Ƌ@p�2B��ƀ����:��x2pc�|�CJ����R, � P�h�P9�0���5М�y&iI�`�>ZЃ|<`iX@��P� �8�&�Xc��A���e� ���8D�`IL� A &�z8`va��`��N`�,�V���` ��x<6�@|� ���P �@(��1�'LcAA���3�c,�0@�`�<�rp�3R �@�G;:��q�G�B.@�8` ���=|!֠�P#hA�\�Hd���(b ~P��p,8J��@�ȁ桁ID��h�"��Z|�@x�)<�w,���F t@&7��`��ޑ��c����` t`�H� �4 0��J`+a7�����x��C40�t�H�����#6X�� |��(��A�����J���B���7��#�N��743�b���`$:���&^����R`�X����@�D D���D���� � {��.P�x48�nЃD�a�X@ā�%�a�<>p�G<�@��H�E8aS��%�|H��(� ���������G8��Ѓ"x�� v�(X��[�D��v�'�4n�{0d��Ј��� ��ЃIP�Th2�K8�b5H�a�c��9 �h�@q��h�oh��Q&�b �@+��D�A��B���H�� �`�A�@&�@�0�^ȁ�p�0x��!�a�'�c�Dv����X@`@�0S�� ��t����{�:��00�!t���q�?�钇;��d���@f��, "�C� �*@"xF@�p��ء� �� "4�ex�,d�|@�@1�0�ppp����4�!��,���Pl�'��,�b�C^X�=�pwaa��t�)�����Q �BY�!��``�҃E�`��A4��<���@?2��W�Ѳ��`�#�A z�.��*����G?�Y�\�;(�4 ���6���� �"3`@( �p���G`�#z��#�`��c��$8�ee�\M̢�^��0!��C>fp�!���BĀ���j�C<�B �v�B30A��7A��/ؑ�{�#�d� �p�2�2�Aj@Y�k�E� v������H� �# �`��/��a��8�8��9L�=��N`u ���Vq �B,hA��,�S+"�4�"XB&��ġ� �+p�g��� ��_�B��`�*Pw(�Y�@XЏ �@�8��>��<��c�Y5 h0�Z`��x ��(���y�X�np0X���=��HhF��m�.w@{py؇1`�v� �x���Np��T�. �;�@�F({�f�=��[H���Q�6�2�p0�O8�tp��` �xЇ�'�:P�'p�p��Xx��# ��`�Y�x��� ����� p�)�x ��b�,ȁxH�[h��QXK��XЂ.`�1�>x6(P+x�[0GP���O0i�����#hp0�a� ���i`������s|X6�wxP���|X�+h�}P�G�`���6��{��F��|�p���x�F)��>�>( � �F�a����x -��F��P��3���B@((3�� �1�:���g��+�8�w�!>��3 �`�(P�|��)2V��o82 �{`X�<z�2��H��E��o(�s0/��;`�g|��q�� x Nt�9��Y8�T`|x�h�� �`�8�qb�`�<09���Ȁv �H�&�3���(��|ЀWȁ�e��v�Ђ��a8a8u�L(�L0�6H�2�+�:X�U�6�&8�̩;��'�0� 8OYȁBx��|x 0 ��i��ɛ!Pw���.`��8��PY�?���@Ȃ~P�H�aP��S0�.H�&�M�(Iy�:>�J�A8�w[1k�x�y�P��Py� e��e!x[p�,ah�`�$��(�{��}��p3��2�{�|��>�h�1̅8$��iāU|X�h�{��s�a�TE��p���x�x��38mXKЅ�� � �R��'��Ƭ�x�>8Ppx�[� X�(�<p�]ȃƂ�7��S�<����!�@�؆;�0����?�Y��x� �J�� p��9?��h�y,@�\Ѕ|�!�0�ȼ�h �R�#$hZ�9W8�� (�x� ��#,`�$�'� �#��3 �y x@����y� `h��`��&��`��_��'��� �5T`y X�����d(���D��4�*�{@U@�4p�f��e�'=80w�����8�J��x���=���I��{ �x��\`� x��x8y�&)b��� ��1x���H��[�yx��y�P�x��e� ��3�q��.`�d�.(�Y8n�h��p�,� ��x`(�R��x���PN�wX=��&H�X.p�b0S�%)�Y��#ҁ�{��P@�Q��,�&P`�H8��P��} �0@(9�&���5� � �D�'p ��&P�1 �}�}� I��4�{��7i����e��(�pʂ���X�j�6h�<�&�x�D�]���ȅkxm؇z`|��TH�}��B �|�� �!p� �p/�̥@�zȂء� �%�X�(:Hh�� ��g�>:dy�,;�!`� P�x�w�$r�J��hN�x���`M��F���M��*<Є!�� 0聍�&�8� 8�8Fh hy�8�,`��:9*BحQ�a` ��4�.��#��zh5`Q�vX���%9�+h�Yh�K�$��e�%���U��P�5=&�g��� �~@y0����.�Sx� ���#�1NH���x�y�~�2pHX�x[ah���J8[ �=�`�;�����%X�m(�]�B]��9�=�+h� ����� h�xH�p�Cp�;�~�7I�0Nȃo�#h��`�;@�8��y9�m��z���\Hm��%xy(%H|0 �:�d�x��;8�B�����b�x��u��0Q��3XZ(+(�L� I����H�8�[��0�00�%�� �2x�|��\Z�86x�g�[@�)x�-��:�F@�y��f)�_��`�k�?�S��Qz�a��)8x�Y�.P��5 �+؆8x�I8�� ����oH�3X�`h�H�%�:ȃ=��2>�*����.??C��'���P8�_Ѓw{�V(Z���%�0�H��:h� �+�H����$/0 Sp�X'x�$8�;x�0f�p� ��1���<��HȄZ8[8V�?p1P;hV@p,`�t���3�RP�Kp��l�<�!��_��<�? &��=�X�H� �p�3��E�-hH���8 H(+�(?�_p�n�����B@5*�/�/h!�"@�U�(��:@<������R��� ��i��%�;��4U��# �%�ǁEXOx, �8�M��\�+Q@�R0+p��l0tP)8�>�I; h��Oȁl��vU8`��p�h�p�X�#� � h�Ux^0���1h��=��H���7Ƃ`�+�6`�Ā�i���JK0� 8��B�@��7��E�`�8X�00&�F���=h�����9�K��,�GW��ܤ,h.@�'�n��}8$Є#HO�X�$�'��<�0Z��`���dGyܙ3OKz�̳�Fع3���r�ݘ2��$��yS�0R�(܅|�D��C!ß/L����Ƃ�h��郄��[% ��-I�u�q�1j �z�c w�*ث��� dH��7�P�1�I�,,�P�a�*��6�&$�(� AlXQԨO'�<mِ�=y'p��ń�|�� e�1_J�8P��G���7I�1b��`��T d��8F�Y@ �So�YO���#gv�\x��� 0��q�8U�@�b�� �V-қ!���/G����@��0G�CH >��.̸���)�$r��� �!<���������"�Q�,��pA0�|ӈ+{� � <".��C XD������������`�=�LA��l@�S̳HKPB��s�<:�E"L,�'��R/bx��A,R+/��N`��>���ю;<s>z��0��0G`���ࢇ'9,I��;��o� ��6��&������3P<���Tpf�$,X��=2�0LH�b� ���O$����<Ҁ�0O8�5t��Ą#>"4��K`R����E5�0p�XA��p�8�xAJt�}�0�UԲ�2�D(`���C4�\pD����x�>��Gē��p�8��0�$A$���NAA�<�@J�"��0�KLE�0@�:��=\p�l��<|����TБiā�8��e�J#8�GU����`{A����=�C�?�S�;��0� �̣�Ј2�<zB�4����'�A,�~���o,��'w�2E1,D����M �qA ������P����<)0P��3�0�n@�>�p8�A ���+���A�@2�����3x@xp��*T@����适��-0� �z�_�D�D�a�b�cY�A��� %�0�A��3vP���(�"��)�C��8P�v����1t� X�G?�1 P �'��8���Rp�;@��`���� �@���(�0 |��x�!b� 3��C �=�a 8@2� ���@� �p���D��=�� h'�Ax``L�BF��%�x���V��r�A10��g#l�;H0�|4�hE+� ��Sȅ=(�=$��`�� b�'������\� �hC��R� ��B-H�8&hA-L�p����(`T�c� 0Nt�[�6�cTa2��?T1�1,X�p�<�>����XB)@x|�9�� p���0���28�w��"��u��9 O���B)�yd!�H�� �xpW8�`E0���A8|p�D�C�����;H���opCL(��� >�� �q�% 6X�t�`�-��'B��a����(�/�#P�<�� ��(%�1y@ �;�@9�l��,`p�g�A`@���, 5��Tt�o<#e`�p0��=��)l���,t�8�!���ap�<L!� ��< ��f��;X8��H�@/�P�y0?���� o�P F� 8�m(�����31y�`F��!18x�wh� 8�x���XE��HE����c HA0���#��<���tc��,�F4!���(�{�7�A � ������p�_Xbv�Np�DB^�R� h ��:�٠(p�A�����(�m���`E<�q��s@�P (�]�*������qy<CN��@�I�"SH��R���y���dT�)�$pF�E�O�0�m�;4"x���B@�@�(���C`#�؇�p}�\�Bhk5��zX<�/���E������ � gpu�B#*0�$q�Ȁ �6D@�A0r��,h@�8�6!"�"x�)�7�����B�< ��\`(O��&T����``�B�d���E,�T�u�C\p 0�G �^a� *��@8�y �q��R� �!ox�;��,L@���@3@k�E�Q��bX0�'p#*P�=�@�=�@ �.��h�p��dI�; (�3|�"��&�!��+��0���7h<�3|� ���� �9���� ��*<��� �<p����L`�� ��5$�4HB |�F�L--����\@������ ��=���@T�� 8@��C<,A8;x#\��B:�Bx܃h����G�<tO&ȁ5��CT�<�/���m�<�B`���%'�{|(�P�)� �?�-@��C,��-��h-�&X�4�-P��)��>����A$`A l@�%h���A(�l������A&��6�!@��d�x���%8���C`�8�F�@�A:��7܀$|�$��`� ��.����d�/@$0D�=�@x�H|Y!��=� �_� tc !�B%�)p���H�;D �A\�-�BDBLA��4�.PT���t4��)�B&�@'�C,��h�����`��C=�0��$��/���H�l�D�h�;0D!x�p1d�;(��4�L�<̃,3,�>��@@,�� ����@�C�B(50�h�%PC�Cx��̂��4�<4@�h@-0�<B,;<)����6�><\!;�p�tM\R=T@�+��-p�!P'4@����.�B��>��4��T��W\�P�p@Ȁ���1��@(��<����@"����;��<�'�����j��T#8GL�H��;����!<����� ��#C&P���;�! p@�C0��14@\A$H�|'D��|t�5�����3���B)X��/�#<A(��@C�h�`$(7`����|�<p;�7��hBx>@���#���*$>AHP.��7L�p�0��*��;܃p@�$�8>����@����X�l`/J��L�@,�$�BK�Z�`�#,A2������C� �A< �xA�����@�&�2�\B�.@D@>�����-���d�<�,L_d���B�<��}����3��"@x� �@ ����A#���C?��@/��P�@,T� 4� �X�vV�T@<�A�L�(�PAT�@����B80�0$`@2����� �&�*�+d7�@ �h���(&�2���Gu�$�,�B�4� @ր%��7��<<�5D'�����x���`��*p�%C�0��A�����c0��dA%�CL�B Ad��<���8J>����̢��@�B<�@ �3|���&� � �B%T�ĭ��@��A,�-h����P��d*p�Ѐ\�ëy�BT�@P�AB�� @\�L��M2�!��n��l�<��D�(��d�9`�6d�BT���(����A!��X��|B_�C�b�H��0�@7��ȁ��3p7`�����Ԃ(C� P@ Dp;������T� ��X�����B �C�7�����4�lC�D� ��Ѓ�<���A_�"��3��3!<��;��`�,� ��;\(@ {�pB 40@��?Ѓ��<�$, \����E 4��B�� �@0�5�R%�(�9��CTA"q�"A;���7��<,��4�-�(A���t����!<�3� �@�dp��\�`���<� d�'4�@�����C8����3Ȃ��#����@ O�|�&�B�L@�M��-�:��<�< �ԃ/�C<� �7Ĝ|�8 H)����3�A\�',��@>L�-x�pB�l� �d(�Ap�gaV�� D��A1��C4�@,Ȃ�;��( �d�$�����h��@,�)�l"�@%�C�D�� `��qC#�$4�9�A!�A!���A�0�HB'`�-%x���ڀ4�A?��X��@�0�A� �"��(��&x��C�\��P�6� B.�����Ap���C���',A��=�$�7P3�'X��P&���NB��@t���d@�<��䁏#B�AX@>`�;��+TA0;σ�4@3�H�C<�@;ȃx܉�#�$�� 00A�!l�tm�>H�T���=lU��A��1p��8�����`���)���8�,h@=��(�@@��4�X�1�dG!� ��$���A܂&�� �>���D$�B.���C=�@=�Cx�"� �7�=�\��@L�����",���#�A1�i�J�T��2<@��-�N>��p��$0X�P���t�B�Ѓ���(D��<���<H�A�~@1���@��<��il�?8F=�<x��� �7,��<���vXC�A"P��|$���>��/��BdAdB6�C;�<�Cd(���,A<H�J�Ԁ�@ �hB�m�4��0��9|���t��c�,;\�XA�x �>��� |@ �4P� 0�@*� @�tA�$p���BЀ�B�nQ ��-�h��N�.\A ,�4 "��H���[Y���BtpC��>B%��l���<�C�K;�?��.*BvT��1�g�p����"@�B4��P_@�@��������)|X��O�|1â�F<e ����˹sr�,��, �����д�e� �D���R�H���,��� eC2m� 6Vfd9�h��.D�A���E,"X�@aI�y� X��ԮV!|��h� A��`$D�{80l`�N^�7.��i^��3n�!� �ްV ��f���1����Prl ԡBM����!��=P����^���t0�ׂ Z4,�� 1�g�̙x�QY�Mx�8���AJl4�2�F@p�i��.���;|8�z,�bL��@�4��F�s�1%�#��f����� �y@?"h��,��P����#H|����� �IB��i��h�y�(xhaw��$����%�f�il�dd�`"��`�8��XÔ�8�Hd�t(��.�a��b/���#�@�g�[��'�b��>�� 2��Ā �{c`�9������yp�K�i!3P�!#`0���c'�d����|���<��(�f�L��d����}`���>P@��UAфB�p��x႙+���B��2Hw":p�jƏg,�a$L���!���&�)a� D�'.=�`�g2y��$��}�f��v��(�iLy�/�Y��4���A:���TtA��'�1��H�a��P�����\����yt`z�9 �x��� ء!w2�C0�X�|\H�R/ �`�IHr���Z� �es@r�#FI���x�`z0� <X`d9F�x�y\@�蹀��8�2����y�xd}�a�:�2�#���:`�q䙀 а��|��\�`��>��@�"Bp�Zp��/y��5��h�7�G0^pȂ rX��`Kx�`���K�U��8D�"� q� ���A�A�{��|���Q��.�B"V`�Up� X ����Cy�x�,�0�1z�\���G& !�7�cy�R��3h"r���Іh�h��a�v��Bd�2c#��<�! ����������!���P� @��/� ���;�1�� t���,��!1ȅ$֢4�P�ẓ�0��,B`�&���{L�(H!Q,D�������@�F<�0���/PĶ,��6̣�p�`5�ar�&܁ ��;�0 yd!��>R�0c �` ��"�h�@�kLC�|��!SЃ=gW:�`^(�"z��@��f��$D�B8ň�npx�h�<�b�oPB@B���0��� �0��A�l ����hd`U�C;4@ �a��=�Q /0� ���)� �@d�BpЀ �� >�`�4B��D�0 :X�x�X�� �� 1�k�:��ǀW 8�4�%܁~��R�Y��>�8��x�E�@���8ZL0 ���36B�3��7p����U,a�(��7����F�0Md4x�$@&��� �(V���-ȃ�"�W�TЁ,Pa�#P�1h�1�;�� e�G��t�o�D�9x�"hn0���Uq*�l0� ,�>>`8�B��l` �@ ���qd<������3�#���9t���V��4`b����,�C)D�w����c�)L�%0��|����;���`�D��@��e>�Q����@ Q�4���@@�$a F!�ЋH�`"��U���x���4� ���A%0��,�]�`a�=�" ��0\� �E0�c ��4�e�'�+�#�`E���@H�$��,���Cb �na��q�1�8�(�W�*�<P�L!^b>�l����>��8`:4�&��xB+ ��x���'4P�i�Ө�>F������j������� � �F�B` '�q8��0���ccm@BQ!bpp`��S@(C3&`{D�'p�/�Amx�p�U��K8�졅�F�0h� 6����C�Y֫C��/��03&�|@Gh�j���x���| �`� �@V� n���������@A���a�Ҡt���@�*AJ��j�`Z���a��A��a�`Z���o`(�* F�D$�a,���ځҮr`l �`��0 s ���.��V�D@\�� ¡��a ����r`>�Yz������A�@!��2� ��� :���n@�na4@�a v�/^�t`� �8@ `��~�`�@r@ڠA��@v :'�`�`��� ��a�!xb��A� ��A<��l �8 |@���!���*�����V��al��`�����A���@� ����> 6`��� G�` v ���,L "� ,`n!��!��@�h!n�`�a� �� �A4��� �4�~�� "a �X��|�� aZH�`R� 8a,@�!R�~a��^��@�a���` ` $���R����@|a� ������xJ��.b:�4 ���@�@��� N��n�v����ؠd�h��ҠZ �� 8`�L@��&�aO"4` �h����` ��6 ����Z�8@�0��ܡ�����P�h\����,�D!D�LA 8!6��-4�~�4a� l`&a���K^A ��H &��a L @�}` |��A:`^� !Ȁ��� q�@z��2*� A�a~fa�A��� 츁����� l��a �z�DX`�j\`d��r�� @ ���a��R�v`�С��P���> V@:�,s �J�PC��`,!Pʍ4@����T#� z���@z�.� �� ��D� �@h�WV���V� 0 $d, `��&�@+�`�@�� R%4� �@6-�<A)_��`�Z��� �`�!��v��h �D@6T`���� ���`x``�vR`�`����n�A��!R�8-��8�ny�`�V`H�ap������"@S���&@ �A �!4�4=��E��D� ���������Z�&���`�`"Ab�� �� �@f�r�� ��� ���`�AN��I��F� .a� �`��� � j�6!�ԡ��*�<@�G|a �<�ة�!�@ T �D D �����}`��@���`�.{'v��` �3��:a,&�x�� �������!���� �j�A��� ��D� a ����ޠ/�!H2��.��~ D@`J nD���o��An��a`!|�@ ��a>�H����B�!Na0�>��Aa���^��@��� ,���^�@��`��@�|!��`��|�x���@�r��@?2|���E0�l��"Xl (��Ƞ �S����|���>��@�`,�`R@>�|����`�Z�f��H *@(0A H��A�`�� J�2�S��b@�n�*�8���@*��� !D� �`\�r���aBAv!$@ va����c!��^��`J`��\��l���8�Q���� �A(��� �@J�MZp�pA�!LA/�^�� � 6��NG0�@��{h��R��!X� J��Z` � (DN� t8 �n��A�!� ����B}A�����V�tڡ� ��F@ �"��� aZ *`$��a�4�$�� P�R��ABؠ��������Z[e�� ʡl�@�a <��`$��; F����@ ������F���`�" �a"��Q���!Dja�z����@�@��,@�.`��)9��� Ja��z�,�@�aN��h`����>� N�^�4?��j���"��V�$��!���@�`�K�va�����D4��"��� 6�H��!���+���F��@@/0���n jR�@#F���l �aD�E���a�r�����!aR���@���f���4`���� �a�� ��-���@�� (�bA~`B7�ځ=*���`�!�!�N�a�6!\� F� "������`@�Z�� � �!�P�Ɓv`�@���@r`� ��|&��>�����sn���*aT��o !� A�q�� N�z���>��a&�b�����pـ�<@j��@@V��!� z������z�H�/p!:a������ ����&� � H�!A�A*`\� H@����� J� R!^���������a@�D��� � <@�T��n�6�!&at`*�X�mr@` <AA�� >-RA�� �@&�8` � ���A �1�` (!zaxe�����z`���6�l (\���<ɦ���8F P�pf`A�^��Ń���(u����G��6o2P��pkBt`�OC�9Fz������|8f&Bz ���Q�ƃ%��q%�G``d`@�čgK⤡�?����v�* lF�Z�;|�8�iE�����A�(H!�р ��(�>�h� ���(#N��7O}�+6�0a�mW��83���-H���&/Kv� t� ��dp��A>J���x~P�vm��r����H�"�f��d��hp7oZ�����qALv�����>�2A\���#K@���4��T���<R@8<�F8�p�� ~0��>Ӂ%��@(XA�H8�G � 0�+r�#���1�4`L�<��A����t ԐA%���/\�A$~L��< �CA�0� �E��`�"t�Q���Bx�4�s�)��"X�G�`�́@=����/ܡ�4�O,>�Q �4Pzа�<C\@%\b���r�"L �q�+�� P�b�.�h �f7�Hӊ2�0��"4@C�ıC "0�37D��'������=���Jrd�,���K8�@��p� ��0�W�������K<5�YA���T�-=3�䓈�`����� $H O ����r>rd�0��Ӂc<��clN��q��$B ܱ�6���G!f�QG>\AA<F�� 2�s��J�.,��M�3"~�Ezd��>$�H �QF�̳@z�G�L��8�E&��I��'�<�ʾp�,��OȐ��]�;����a�S�Ex��B�����L#A``D$P@�^`���!�+�a�5����\"}A�Yp 1%R��K�@=R�>�@'D�p/�9��p��PD*�|tA@�у��G,�M�v� `�:�c�`r��0D!�;,q�����`���pC%��/<��8A �F ?�Ё \�+̠H��6|`�r�c��,�.8@�=~@Q4����VQ�<��%�1r�y����D~q�(a��Al�� �Cz�PH��p� ��<���\':��K�)�A' �w��ҺC2@\�1��@%(u`{���0 TO`��qh� C0F=`�y���� �aM�"O��q�#�!r�V���;���� �!6�0 0�� J�w���0N�2�#s@� � �#Y��=̐�;`@K�AR!`a =�|�n�aAH��PT#���j� J� �(�1 r�hc�q��(!�8c���,ʱ9,��(J0�o�b#HD?J� ��H��Ї,�A�8n�18a0��q �l�x��G@g*���]�`=0���츁� �Kd� SxD �.\`e�����F�:h��a�l�p�!��x<�@�G$Rd 4p�@\ �3f�\���fP�!�CHA;�;�}��-����[�`D� �h�zP�@P L0�"��@12�Ct���>�=�q=��H�x!�7�C��D!�{�ĦCk�E ��C��8.ЃQ<��x���,��B-�P�2x�%0�"�0`>���m�����H��H� ��` 0�4�p4� ����\�����d@`q�p!Hag� �c@ lІ@� ]�C/�� @��(C��P�h�����AO�C���1� "�<�,�=��<�p�t =�8�p���4��mA9� Bp�*h��H�;�Ё�#Ѩ�&`y�A F���T���B*p�� fЄ/4q��9�8��q�P� �XB*�Q S�b��;�peL�{� ��ATC�tG,<�� �0B<&� 9X�/��2�R� �ȅ .1%�`0@<p� .B�A�0�P ��,�@�`�x`�O��!��}�b �x�p��-l����<��H"W��02Xa�kG�� \ �`�i��= ^�cV� ��B@ �n��l!��!4������U.\� xl�p�5��H�0�6�@ ed@<��@l@�`����x�@0�� >��`G�`$����� �`q�İ:�� `x���@��)p�F�p���P�"P(��p�v� ӀpP ���pX`0�;�20�0 B�Y��TA0�60>� zpE�������ЀF� `� �� �9@R�~p-��p6�|`pE>�p ��@L��� ��& ���F� �p ��&��`�K��{ �@)0�@�:PS \R$��� � v|��pQ�����p�p�F �� ;�s��P >��( k���p��S0���� �@�JC7�L�|��$4PA��P4X v��v P��0V,`p1�A��2�p��pe��&�[P�ѐup>��PnY�" 5e� g�[`� �� W�"� �GP ������0 F� @$&pBp�s��Q��������� O�JU�P����� �Wt�r��`��p|` 6�Y��@��aTϡA`^�r` �ZF5��{����� �O�_)��x:��0���T ����L�� ���|Ze���(�{(��`S�: �� ��p�0 x@��E)��p� `�p�����L� P-��u0�@��hu�����v��aQ@�PV��*� 0cp��p0�9��9p�@ �p���P;�r0@�� 8���^P h���ē @LA�9� ���F 0$�=B@a�eD��`��_@�� 4� ��^�� ��:�=� P'0 ۀ �p�`0�s� KPC)�� 0��P z�@{��p�H�`ŀ ݀�I���4�|�� S�@��,�FЬp�g�θ�� �@4�2�lh�� �Pz� ��0 . ��`.�� �pP 8�ؠ `� �4@�� `@ S���4���@� ���"@ m0�� p`�eop���� >�n`0�� ���Ip��A��0 ���)� �� ����] #�B@�P}���HU�~����� o��� �P ��Bp<`�P 0k Y4��� Ӡ�� O��p�PF�hP>p����0�0�����P�� OppP���"p`@\��PE`;Ch Ұ�pJ{ �X0PS� `1)��`Р�@ ��� ��PP �z�@^@," �&�����p�T @I��G0�p�4@ ��� ��bpo{�P���@f�r��epo��@ �` @W�@Np���k�mY���{P��0$pR�GH�@b`Xp0�8 ?`���� n���@^` 0 �@79�S70� V��@$��0@8 �� ܀WI�' ,PKp'�� 6� �.��� PPP�������� ʐ} � ��Y�p�` Ѡ ;��{0 ~�F�� P�L` r0S �� �4 �4���цA�}@�Y ��%� ��y ���P|�20���0 ���!5��-�0�4 ��3 " ����\�p4���!A�8 @� ]0 0��0 c��@0 A;�Pp���@�^�\ iS�+``��^,�����nB� ����c��P�� P03�� �64�A�`��" ��@6P��U�}�m� y� �����} ee ���Ġ ��V��N;� �@� � � �<�K�K@40�e �J@i�`�^���0 ��:p�� ذ7 � ��Ѐsc]�L@��� ��d����0���Z8��)��xm`�� r���`�qi@^@�` �����CP�H��# �P�\PB�;p���pp��@��@|0��{�T�k`��|@rp��`k!l(70V��� q����������.�"���'p�к�C��@8�p@�02p���P0X��9�" �(�`�ip���r�0>m)0<p�t0�P������ p LݰSpW@ 9�q0�p�0�Pr�^�e��<p���w0&�d�o@�@� �c�� ��� �� �0r�*b�@``�6����9�Y�pn�=8r��P �aK� p`�p5P�rU � ��!ʀ 0�0��>@�0���PpXG@ tWy�)��pN�����`j�� �0[��Y�@X0�`�V�]�����7Ԡ��`0Y �j�0�w �p���Py`/.�p�P� �@� �to����N�2<�T��Р1\���pErE4L@KuTp���0v@�p�)�~@0Y�?�O� ����x�E�5�0R6�YFx ?��-� o�*�1p����C ����c�pG��b�S��PF����NK�u������mK��U���'�������0%�P���*!��ȇ�ۛn(4rr�Q�XQ�e��> U������\�,�, ��XY�K�{`�ܰТ��7�H �Em�$xwv9�7�4Bp�CuA��L @HQ��9��,������B �0�x+tD�u\hȇ`�-�b�T�4Y���D���YPoL�=r��PhI��.<xw��.6Z���D*�\ r�+ ����2dQ�sa��0;�SAoF->8�` v@��)N�#R�yx� Z�bf��8%�s��p��j�X�3,�' � @�@"��C�|D�'�B ��y�c�*��|yb�Ez�C��X� | ��>�&f�(�>����C����R�C�����;���ZHa�}6��w���a%|j��=:h[�19�x�jL�#.��cT>�#�w�1���� ��e�����&�a�!*�\� &��7\Y��`���eX���1�I&�B��1 �e#D�cҘ�Fi``��&9 p�� ��&�E���� ��4���xn� ;(E�Ly��v(`$����J���)`��#��$� ���N��<��aQ�Ǎ��D������K:����Ǎ2��d�DDl@!�1 I�����~6�Ɯ�`}�.%������0��)Ȩ��v$�0���7�x�@%&9 ��hǁ �p�.�ic 5(ً�� ���( �0�g�g�X` @�a��x�č�� `�1! *��;d9�&�`"t�x���)#�%� %��(f�Ɂ v9Č{ް!�(��xP�%�,�@�R��T��;��,�� �`�i� 0@0�l�z0�@��3�B'JNta@`%��0�v����=8�>�������h�p��6���(І3��L0��/�@X@4�Yh�p������G�lD J��p�� ]�@t��0� H0� G�@ `��!XH�>�p�;���%�q8 ������x�<h`*� R`�>b��vh���@�q#p�-�[��\�@�q�P̣�H�/n��F<`0A'FP�6A�`#��-�&PC=�,�!�h�*�2@E �@.��X�47���p�1�ABhC ~�^,a:�j �A�!��>��(�ذ�a�:d� p�Ef@v���%��CH�]�D*l=�� �C&V�$�"_2���QyL���%(M����X��������D<��<n<� �8(� =�"���Q(T�8���7����G Ԁ�(�c6��3� 4���`Q���x�'\����Z�aN` ���o�a.�F,p��H >h�4��j�� HA�Q��`y@��6,W7�� .�)�@h@�@�\ 0&�<A�P�`���R��`RS�����p��aL��0�4"A�AP!��18�c����- ���<"�>d���>@���8#ı��r�ǀ���8�����B0�D��h��:� 8H�=l�$8��@;Ԁ ġ� �Mx�^h�ΰ��x�`��y�o>�@)N<�r��*�1aĀ8�R�@x�93|�RL�o�{��U�@��d,��`�+n�=c���Q��`\�B4�|"E$ސ�K�A= ��A�{@�0�AY��0A ��� ��(���!@��=�q��)h�A#8� �z,'@C$�Q����C$hA�x@�q`p�����0�~�@�0b�c1����l���"���=�Q@��.p ��)��.�A�,����H1�<x�Y�F<�B�� (q�!��G<b!�d�A(�n��0@ �s@Rx��a8Xax��+ T� \�X��Q�@<�p�&����_s�� J�,���@⠤# !��!O �@��K̠�*=��a��Bz��TT�7o�<�P$!Q�tW��`��4�8'�@3���G*p�Wx�M�%�S�S��p#0�>P�����$�(8�J,���+��.���4��pp7hhȇR8��2���P� �vx��\��x$8YxpG���^��|���x�hȅ�Ӈw0Y��#�:�h�@�r���0�=�]$0�H�/��.����/(-���8.$�)4�0��X�Y�y��U8 h�0y��W��^X�K��C�`V��6�zV����2������|��0����P���a��Zh�5���H8�1\��KȂ��Wx �}�(ȇȄ���,V?(x�Wwh�|���P~����Z����`A��MH�3�[`�@(�)h�H�n��|�>b�Q1�*h�(�tx���:����78����i���9 |�p8F@��?�X�8�} �� ��(V�&�~��9誄J��W�6���V��H��8��g�H�,�Kp y����<��K�H('x�h�B`�D�a@/(s����y��@�y����!;��R��I�=X� Ђx�)x�&��x�I0bІ�ۇJ�h��؆A�#��d�6hM��p�x���W��A�XHC�X��5�ܲ����t{;X�Z0 Rh��-Їaz*X�$��&ȁB�R��H� P�$P��#��H(��5pA00p�'��@�X�Q��"�#hy��#�7h@0%���K�μ�w(yH7�pXn�����W�L(HȄ5�ЀE��4�a�Lhh�7(���j�D1p�O�7 �Hp1�+�L��:@�*��`ؐ��B�0!Ȁ(��! �K`�c0dx�����'X��P�X�U�p� �/@�0��!� �,���#�(�b�vB�x`�B�h!&����[��K�P�+& ���-6�eO��^��-��2p1�M���C�4�`@� ��S� I�;j$@���>��ȣ�&b"�#���AP�ɉ��%Lx���Γ.�����J���;$XĹ�@ǥvd,�щP 0��?�@�1�E�qf�X�8(W$�`E���'�5j����j�bI#ߴ�ȅ�+)�Y���"X�e*��8\���琶B����;��L�}�1Pj *u"4M�a�S�� �@�ă �A i �B?\�Bo�4�g�� |����b<� `>��R�Hd M��c�L��4@r�t�s|0�'������<�-��Ӂ<@Ge��C?�Edq�/"��?�آ;�`LQ�#�;|�����K���+U("�=m��q��ed�N>0� >��}�Ç^l�IXt� A*�� I,0J(�� ���KPp0�L��#3̃��mH��q�B>��C�0<51�\�a@���T���0F�資�8O==h��w�SN+�q��\p��r%�h�OTr ��>=0�J Z�D=�8C��4�N �0A�xr6��n��N3�\�B" ��B$���t@>�s�\�>h��+D�B,PC �SH!��PM Y�Ѓ�d�E#\FD�p�?�4�0��PS��A���m#B$B�|��)Y�I?��C�6�\�� ~��e1�SMT�#����,q�=���<7�<��cO�(� �E ��`c�<(�><a�>m�����))0��[������w�O�r�|��A.Xp�,0>��Ad`��!�y�)"�� �@��8��p���/Jl��@�!�%�""�{P�XB�P %�������p� ��/䐍B,@��*|L�)Ѕ7vx��x@v��3�b����p�E�nE�B+(!40� ��4������E:rl� ��R�|��<�FT ��B�V���H����8�5��ц%@��@�v�p! P�Db���!�d�3P ހ�� �XA������@�L�a�`���%�Ch@*`�cA��>`��:��f��.4 �� �1�آ\@B��H��p("~UUx�X������7���3�1JA�.�z���A�qAP�F4�0Q�@K(?�| ��/�@��-��(�b(C!�� �0�h� �8��@����i�$�%��0` �Є0>p�1$H�B1 )P�<�?\�J����G~q��!�p�/8�}��1������/Dpv��aJP�pd`���\q�����7��*�G����� �p0XcO��6P%�aAE)l� Ĩ�� <�LX�tP0�x1�6�B8a y@�@�;PPH�a��G�4�T��*�z�cVX�x��Z�&x�p�;H�fX�v �(#V��⁃#,����@ l���P�Q,#+p�`ap�� dAI���l�/dc� �$ 0+ЁT�@H` �`��A�Ђy�C!�� j���"����@�4����)�8`@��+����7 �[9�$&� أ9Djɀ�`�8��0 <@ 2=��p�R����6 8�ޠK�X�.��"<�uX`�#���'\�}��,�����PSp0l`w����7�A�`>0���c��GR`�E�Q�@.0�w��H���t�hPk�6�B��x;q&��� ��}�c�X�&n ��>p��`�`^���tau��(p�6 ��A�@$t�c�C��A�h� ���R��T\bh�-\7�)�#88���d���t`%`���B�� �bWFu��@�0�A�����,���G�� �c�Z`�|��4�88I��Ո�y� ��(n� �C9�<t��[\ABp��p`�9��T� #��vȅ~�/pa\�������`��*���{pc�o`, ��C`q�W� ��pU0�� �ʢ���Pp� �� >��� ��b�İL � 4e�8@c�7��0��� ��~�ZK�xp�f "�A�!��QQ������@����]`�C[��W�Y������N���A�aP��6 ^0�G� ct�c���HK� \����b���0>����� �| /p��0 � #���0q ]��P p0t �p�P ��e�0��`9�`b���'pd�OP���@ 0���ڰ�ܷ&`�� S���C�` SP/9>p8@ ��-`���a� ��j����f�@�`�������V���zP @;�]�̀�@�@��0x "��0@GT�H�^� ـ�w�Up�π� �p��{�R�<ɐ�8�PU�{� ����� PY�{pK�L�mP@��` Xx`.�ߠ�c$� <0 @�����A0���P�p�00p ^�>� b�:��@8p'`.@`�+`� O�o�pS���E�n���Q�� � ��E� P� =�U� ��%�Px�$��� {pO�Ґl��@��/�A�����F03�"p� �p�0�@C�x r�B@<�K� |�I~� ���`���&�60� ��>��9b�o�@���@ �ny@�p� pW�p�P7S�DS��0@R�8� a��@ �p� K0 ������ x�F��0�p�GPg�b�*p�� � ,) � @��;�?��Vp� `"�@��w�.��0J` &J�� R�g��� #p ��6@z߀��^Q�� p@�`� � O���9� �`:�#�B V���@�P��-p"�4p�0q"00���� �@��>� � �@q@ ��np'�@�`�z@o A�T�*�0����L%��Pl��������`��)WC�0,�<>���\`c N �P {��ʠq�z@5�$p:�>��020q��p !4�r0|��r� � ��>� �<Ҁ�v^�p`0 H� ʰ~�/ �Xpy R��P �'�`p� �B]��� �����np� &�'�"����~0G`x'�R0��@�.P�� 0V���- ^�� � �P "�Ap|@�]�D������<��t@I��@R� �`6��}��@O�f s s�.`�2`h����� ��@c��p"p� p:�}i��� ��� �x�Yp` ��4` k�� �@�@9�=� �PP�y�T0��<.0L@G� � �/Q����� ��p��( i`���@�5@��א�@�p�L+� ��@u�) �����@=� �`M�eP ����� �7�}v���p�p�Pp*@��� `�p2 �����i0v0Pπr+���6`�p�|���ye�$��`�� �� %`�<c�����p)�ov@9�c��0=�K@V���`�P P >�e@�� A@zй�Rs�L�26��� ��& t�L�X�R�X�����E`���� \Z�j gp�8���0-��Jp>@�PUPmP ��E-PȠf�`���c X0P��0��p��EB��9�X� ��`��np��p� ��mB� ����G�k�����+����9e��p��\P>�y�܅�^ m@j ^� ���0� ���� ���Ϡ u��p� � �� �t� �|�t���0�p6�Y�)@�"�Ƴ|]�g� AP���=R�>�ŠC�B0+�:��?u੶pK���0 ��a�6�\Ϧ0<P&P�`�.�k>6 �`VPnS@����08� �]�� f A� г � ���?���V�+|p�� ���7 �k k� ��T:�И���!�� ې � t�� �@�`����$r;npl�� �"� 0{ |`TP ��6ذ(`?��� 0)���t=��� �P���"�P0�<��@?0��@9�p ` �� �8�P��%@z�I�5!3A� p��W:�t= w�=I� p�xc� 4�@����d��b�P�:�r�m DB0iL `�L@_�3��d@"���� }H`�@^����� �pp ��t�U`Zp[� +��%��@�>��' �p�p��@z��0'`�&�0@!� @ <������\0S� p�%;M����I0|�p��M�!s�>P����pP 8���K A`& ��` � �J� L�'.�L�:� ^���|��N\�ð��c���1��`�ǘ+>t��#{�� �슞�� ��k�YV��#�Og�U㴣L�ZXx�' .�(��W`O$V�L]�B�F����`C �xa�D�iL�c���AZ�# DW� ��"ו)pp��L4����ɖ�T @���"����@,;s��uV�c|�11R&l��"N�,� ����`ft��F��/�rDb�A��{v|x�p�E$�]���ˑ6�Ĺ`k�>BA�� :`~���`b��2�Pi��N��#p�P� oH�\ q��t�A�x�z#Y8 ���Ô7��/���`�p���2��m� ��p�0�0q���#,�iI|P��%zȢ�=�y��I�I�Dθ��=>��:fx� Z`�I���Ur�YP�!`�(�=�Ч�4�X��?�1�G��c��0#�P�FHx!$�P���o,�`��A�U2Y!e��a '�h�(� ����p���Q��HH��BhC/�9D� h6R9��K���H���"��[B�E@�g��B�[��C �Q$�J*��+��&/j�GyZp�. �*�Hu��&]@�� " lx`�B�@�ina��8��H��� &� Ɓ&�q��V�/�y��O2��q�%�c<�A��nq��k�!�Rx��Pf��&>P���i��&�أ����=>�F�E^1����b� ~�����g�;rD��q���`�)�"|� �>(�K��a�� �&܈�x��|yb$�A�$0�E61����X��;��A�a�{&xAS�����@��PO����{�Þ�Y�>ΰ#�p� x�D(�� @0!'"�A�!A*6���c��-^�b�h��0�!:h�0Џ�m�(�� �l�`��D�0��!���5�Q��ژB*��f�A^�D�q�#��s-2���l ٠@1D0�8D��p>1�Y��\=���q\eH`>�@@D*^���!�� ��la �@�x���� Q8�$a�W�B��<`����PF(���|��L(4 S��X�$A\�v��7Kt w��P�B0���+g��,!\ @3����� �!4���#�~�4�S�'����o 2`��R8�R�#��@`�L!@��9K���́\�h��A7�� D�i5D�'���P<� xA����@/����@ �� @b"X)��48b�0B&�>4 ;@�R�a� L@�������р@ f��yt�� ���$�$��B|�>hf�!5+���)� 7�B�@D`�w@��/� 4���%(@xAVP�&��8���p�l�:x�v� �'���䇪 �A4`�@ �� ��}�#=��4�4` %(@�a��cS��5b�� �6�@6��L�� L��_�"Th �09P����v��Єt�I8�6��Ja�{`A0E�`��c��������Ѕ<� y0�x�=�S$��� 4�T�(p�*������`�W�b ���!�� �c�h;jp�����X�0 J8A�G�(���21�J��wHA�1̣vOX �p^��gX@4QML����i����.2��P@w`� ���"��<�,�c:H��`�Rp�X��� �C(!�E0����8�"Ƞ~�@�FЃ�`��C( R7 &���Bp� X���=@���P��a��@�%�p��:�<�p�sXn8�^�#��'�a�� ըx�N P�E��'�?t� P`�0�"na�X�)��2@ q@���!�G�����=h�xE0��UP@0�< �XB��1�Yø�%����]��0m��O��%6p� ���B��0�=T0�R,��x�P�0�p^�0HF�dX���;L`� Rh�>��ǣ���$����P����`�>�Ap�0�c�R�D��>��R��|@���D�57P����� 9�u�zpCH��t@���F����z�� hx���.0/Є2�Px�%`�Z������y�Ё0@AX�#(�Fh���&���#��)@�5H*��]H �^n�[|�%x�S��`�H��x�s 0�dK�4�3m8��8H�#HM`(�.��/�=�� �2p����� �1ЃH�d��}�Ȃ"���X����m������2��Z0Z��6ȀZ`�4��U��6�1��O��Ѐ2|�^�$ � �_X[p.(�J�2H�`� @�>� �#�Y�J@�>����)8�KH�x�-��l�eȁ8���j�k`�}x0�28�C���~�P`>��;���W��H� ���8xoC)��1�!�<�P`0\ �|��SxH�X���7`�фO�}�j���3��!�'��L��h��-P��@�5 |���\h�0�m��d`l�g`��%����E��X�V�>X�,Xa8��V�*�U�wЇ�i�Bԅ+&����N�6x�wh���pHi�#x��%H)?�*xH�'��a��p:f��R��� p|0� ZE8�`�18�}`\�hXY�a��(�'��F�i��:�=�� T83���K�o`�\�0�2`Vz�]P#Ѕ�5US���~x *���J�ܡ#���W�%؈�Hp�_��x�F�`���Ths�XЁ>��\p���H� 0�� �1��y�`�`p���zP�<] �4��*Єk�?X� �O�RP/�I��'�1�8b��i����!(�x��e$�T��d��p�yh���3�J� ��[�P|8��v�.X�%�>0q�xp���9x�Pp�H(�� �y���L� �}�$�`��]� {��4��Fx+xw8�OȅZ�;��H�)_�m`�Jb$��x�[ȅx$���M �(�\ ���1�!��(H�p�:xN��y��%�i��o���%�Ex��%�c�H��h �4�:H���|��2x�y@�'���d��Dȇ �px x �� ��/�ZH=h�7�9�2�T�e�����m��P � h�I��8d��ȆT1X�0w`�����m�8�� �v@h���E����|q��Lh���L((8�k���]��/h��xȂQ@�0�fX���%�+X��(0/�� ��4h����'p�[����T�:(=0�\�<���=����y��#���`-8��IЇ��ppJP ��n��\�zX$��(.�`�8��`0� 0p�8�x���p�@��].�z�5�:I.���9���4P�z�MІ,�<X=@� 8���:0�Z0�����s�_��*;7� Ѐ8��G��e��<mX�_x`C� ��㊇xȀK�H�@0�p0g�V�+�y0xh=صF0O��e�`��x/�`�^(��Pxi�"BЀ�h�9�I�$`��+�(�:p��4.���H�!臾 �W<(�0�8���ЀY0�~(�z(�І�{� ���gЃV��h���l5('�6�8�q�Mh��� ���l�Km��<�Q���8;H�x��@�����A@�*8� �#�7`���^�nH���V��@À#�D��T�*�Tq�a'���e�)��78e�W�=0���v�� ���H�Z�0.�;(:h�YX8z�3ȁah"<hX�D���0�%��`��tD�((�_Mv��ˆ0�%�?��G0�e8���H6L�hp<� �)@�B8|�@�v`�p�t�'h�qw�Y�����<�q��L��kX��3�i�����L �i8���ʏ>��-��Yh�k6��P�d/��7��RX�8n�_صo<�K݁Lhr(�6��+8x��#��|@�?�*�9� �yHV�*�8�(� �9��"�U�xDH3�Y&/�@�9��m��0g0�-�&����%�)x$��$i�� �3���� \X�ȇG�x���p�Ob�ȁp��+0YHH��B���} �=��Z��_p��ځ�U��yh�.P �$��7�8?�e{���`�.�2m@�\�Ȃf�`��5ȡD�y�=��`�j� H�S����`��[O��"-�ho(d��8�!��` �M(�v�=��k�&�%Xb0`�P����k:�h�WX�6*@���}�3���J��Z��lX*��<��Q�c��5h�1��wGu�^�EP(��wҁ{Ȃn�'��Ɓp��#0�dp;P��H��U0�+(�@��&�(��U�Ipk6��8�)�1��:�/�/8�%��ȁ>����+�x � ��>@Mx<�$�,����0�T�F����!ȁ#���-$=E���3@�>�%�%MH�$Ȁ�"�&@���Z`�>!����h�EXн�=�<�\8�`@�5��8Ȃ��B�*@��|�`h��h��V��B�p�z ���/�'� p9Ȃ1P�3kM�{0�p??` �U[x����Q��R�� �D�6��+x$����C��̋���vӬ���<� y�p%&2xR�D�L6(|�jQ�F��L@#E��J:�8"EHIi�u�Ԡ� )�`;���a`�4b� �|����J�l!|0��,F���<���ý�̀�c�>�@LyrA_�~~=���˥n���Ku�W�N�B20!y �8�cF#�.`�슋K���K�ǀT����y)����a�v�-��@L Ka���<�����M�CL(-�ӥ^�3�4�ӑ��3�lD�A�&^, h�:x��=��C�78���[�Ѐ5�R��|@���J!`� a� 2�P� ��# >mH��*m���3.�P�"w�]ؠL >p0@ <0.G�#�%�0�0t�#�*������=\���P����� 1��̃�m��L@�K̐�oأ����;p�����h�9J��M)H��-e�D>Tp����<-@�4�L�L!������EA<�N=�$��47�` !B,�t*$�E( X0�10� ��*�����L �@a]�jӀ� \1��>4\�oL�B<��El��"�P!��� ���%Ȣ��B�>Gp38�q�S�p�@�\13��)\ ���@;4cщ F�0C���$1A�0��,�d@�� +tq�8@b�����;G��G>H�O? P�[��A#ô� �I��@�����(3�=>�҃g`1�;pA>��F=���-c�B('(0Oט�r�@ k�`@z���A����>D >qdT� a��L��+�\3�;�A�O�C�8�@�%���x@��4P� ����S�a����p`�8�2O(����р &�8�� ���xhA�P��Ѐ��f��;P7ȅpp{�����)<�"p�)!�z��`=���#B����8`c�.�(aK(G�14`A�B��;D�@�E�&��6� 8a�;H�;��;��!c�<"J���h��` ��B *!�4 Z�r@�� }h@&��c f��@ �C̘� �aP���� �@�>��w� ��#db��<t� �p�)V�$!@`��A�#�TX��p�1a�A���}̠vN�7^��x������| ���W�"������-8`^���`D�"��� �C�aC�`:@�R��H��f�J�������+#�C�Ѐ|L� �&l��XDB�|$`ƈ���b�a��=�H�}0E(Ѓeр���^�SDCw��,l�3T�zHC 0�d�xC<l�����@?�$�)��t��/ @�7����G>��DLc9��%�\���@�5"A?�n����&`�!�Cu�'�� N<��hC�������(��a\��K0B���e,/������`F=`jԁ�h¤�ktX��1�=�� <�A'\�tbհ���`\��Ѐ� �&�>(<P +�"6�����I�c� ��`CH��)� �%��P%�pIPb0A'p��Kh�H��A��V�"�.U-l�p� �hAp��;<"TK��9lp�Z̢��"�q�Y���B7���.| @�)4QW@�p �0�A�q��.Z��},` JXA�p|���� ��� ��rQ�,h�:�� �a������p&,��D4j��=�9�B8ڰ�1p�W�;4@�#����@W�#�g4�G�@ x�z�� &��x��L��(�0�CL50j�%�A���,�kK�DD�z�A��F �@�CX�=TP���|�<�!�]d ^ �+�v0`X�����4��H�dQZ�@����d��K��A�ȴ��E ���� ��5r0���$j`6������!�"�8B��=@�H�<��Db���J��Z$��;f0�Q��0�zp8t@FX0�q�1Ģ A�4�� � @�@�Q����hq�8@ x�7�!�` exB�S�|�"�3l��[\@�RpK�����>@�x|� ب�2 ����� �n<GȀ � ��-8~a�3! �}�1İ4$daHa�$L�� �,@�3B%� �;8�B<�,�$TX�����&�Et��8��C%(�$LP+d�A��< �,.�4�|��� ����p�d��6�� l@�C��Q(hµ!� X���=��=�A(��=,���.h1<�,T#�C�5>HQ,��@!� 8@`;�@ż��L�@B�8�Ё �,��B���ȃ \�A(��' >��@܀3p���",A�A��� ��<�BL�-��@�5<����lC �A\4�LB�,\�C.�@0<�3�,A!��@4x�/L�C>��P���R! ��>�Cd�=��@�-� @�C�$���8H���[ $�?�C�@��!A��T�&ht��)�*��$L@3�3��H ��$p8@h@2�@2�C���s<@(�,@ �)܀h���),��&�L�l<D������@8@��B&A��>@LA��6��8� l�H4@*�����|@|�P�3��/�4@ ��D�"���0'�C d�2`�%�a�$�<)��9��Ĉx�)���-ԁ4�$�'h�$B<@?�C�@0h� �(�� ��A�C�� ����@��#A �0�q��C��)P��C;��W �C/�A-��j��A�C{XXЂ0�4>����'���<�C��p�9�B+<�;�\�t�,�0�AxB h@���.� �$��&<����<�T��;$-lCh�������&n��xA+����y��3�C<0�Ȉ@6x�3l�*�@'A$� �@�;�@>�(����`@w��,����������@)����@%��G����<$`�P�Ё;Ѓ��̀��H�������(A�A�C��܂Y�-��,�@=��At�H� A �d�"p;$Q0DB��ȃ<8�2hL�ȁ���(� x<Ԃ,�#4�5��@<��1LC5�B>0�,'�x�i��>P�(� �8� ���`.(��CL�ؒ1���7�B|0�C��<�������@��\�0��x�2a� ��=�S0��A �@4A(�� �<���@@��@d���̃���A�@� �0�<@��M>A �X��,A��'\-d@�G��>x�H���@��4F�������p ��+B���,1��4T08�>����܃@@+āP�&��@ �l�/D���������-����-�C��� DA\A�$>H�A��DB1��>P�/H�p@ �DP�>����'X��C�A{̀� �.d.� �($@�8��L�_�@z%BH��u��ë�=X�\A��7X�- ��ԃ��<<A7L�.�-�-\�"0A��?��L�>Ȗ�%XC���Cpd@ �7D\���2��$� �;d``�)�((A2�<5�A3�dBd�1�A�?h�B�܁&PP��<�\��C���$@4��BP�;d@1̀ �;t�̊ [?X��0��,��0� d@��A H;�<$4B4`�(�\��h��8��hx.Ԃ%h�&��$Ё|��B �B�<��@&@�2��6�T@� �0��8��P�+@�\=X!t�<Pp� T���H]43DB��B�1�6<��x>pC&<H��,h��B=An4.p@ȃ;�|�;���A@H@%���-4@h��x�&0�҃��A\�(���<2�8n��30�&P�C T�Z�;$���=����@!���$���$�܁/��$�\��)�@��b��3�;��>��1�����>���P�i�̃<>��-��;D�܌/4�@+��"`܂0@���A;�@8���;�*�W��~� ���T����J���>��0+@ @Ԁ��*���?��,D� ��"TB;�8�,@$����8d�<<�Ё�4��2�A �!@A @�1h@F�3��A*�AD��b��"��� A#@"��&|C#�8`C6�0� ����*�C������D��A���`0@���tC�-<A<H@�C���0��HB,�74�'�� �̂��*h�3�@T0��.P9A/���$�=�8��,�<4�4��4�@��3�A�2��N@`�a�C����/tA>��'tT�X�0t�7����"pB� %���>B�C>\�<���Aǃ�r;D��B<�C�^.(�;�ɾ����*��h%(B�+��^`6��/f"ԁ0�0��BP���� Al�<��=@��4,�%�@��0v�0,��C>�������@Xk���)j0P�?C!p�/��� X�"dA@B0,�p�(A�����)TB*�@=`ֹh���<*�dM�2��4��h��B��9D�,�<B�] �=T� D��T� �C<,��)�Q�*/@.-,���<�@;�2�<�/����� h��$���X�č&0�� 2R�J�`�+P:������{v�"v��yj�D�O�0�Ц��0H#K� \�� �_��{Re��i���a�� ����aX��"�B�n���lHbӥ*��iPkQ>{�h�9Ҩˎi�<��%�O`l0�Gd�/W�]�`��h�86 À1ZD:c�'���@Ӂy f�wf�8����!��p�A��G�� P�� n<8ф�<�DY�0�� y�e�Ԧ�<q�jB��v:ݸfc ^8�40��/.� T�@F����� ���&�h��H��(!�:b����QD�G0Pb�A$��a&@�` yt���,,(����=.��&h�@���!�>�A{�ك�x�h�O�� fv@b� \�Aa�`�9`�'@��P��х�ql�#wn�b��R�H�"��x���{���gh)b���p��&l��;p`G���Lf� d���a�H�&"�v�;��.(b�R��' b|�Ev顔'"��@���j��7i��!�a�4B�#���~@`�y���l����!��{�8��Dž b9� � &h� HE�[(a �gʀ`:4�vB����x �ƀ�y�h�>�A� B1�:�LJK�ɂT�!�n���/t��\*8��x�&�wLH�Kz��C|8����*� �E��Bp��ch@B o)�@!��q9@Ҙ�2x���bM,��E�8�ei��ÇqÎ% ��#p��Bx� _�Q�y:H��`���IZ���Ƙ'���!���y�>�x$ xX@��q � ��d|� �E"�4t�$>�Id���<"�(�a ��>�QE ����)ڠ #B��� J�B�p�b�Z$C��(\��Ȁ����r�A�q�6��A耂"���C.r�/�"�� �a h�S��@Q2@��� h���q�2CXȅ�� nPEP��<l��p�Æ�8B�P�\�E->0$��=�x�R� @�(��T�g��#v>�B(�)n4L ��.��i��v�G�P�� G��* � b����{���(� �&��8���3D��PD0���|(�Dg<�e0�.��y�@K��2b���-�X��c��D�6���Bq�3�b p�BQ-�cg ��0���v�G*�v�bU�� ��������2-����p ^A |���Pg|@9��)0I�b �@l�u�c ���І}��;�-�a6� �I0(��P Ř �� AƛZ�C�c|�&4�N�A���<,`�p�.=���h�i+�3,�@�Q+P��(�4�#�0��<p f��v�� l@;(q(���iP�7�P�Ap �!�CP�Ľ�H�aP�>؆� �X��{h� �WԢ@;���_Q�6@|0J�� ]`�(��[����/xIX��i�A4���v$�.�;���8tx�+@�h�>:�L"�⡋;h���"��(����#Q<�A��@�K��H��>�8� V��4�P#�� 0��q�a|a"8�@ЮJ�@Us-��0��x�(0G0�r`�0�|��8�'Q� $�RЗ ��@KJ(�E�,a/���� �S,#�kCB�_��pG >@�%� }@�6�0����{�@z���B�p��<�,<���6�������8zЂyd c` ���a����7�E(1��@Bp H�:�8D�q=@ ��<�$��E�pO�A��p� e}`���qKd����3��Ht� p��)��d�x�F+���� ����<@�X�%6��7x�6X� ��/B۰G&���J���@�� `�1�����@ 2� \��(�%��$8�%_�E�0hC>��4.�{���V�b�Fa�C;�1Kp��������h���a� >w��G0@'r���e<���V� |p�.!���G��4c+^��*���;&!/`������������&�`�A>��@� �L�>`��� .�,�2`r�����`ba\�$�� f@���<�܀8���2H� R��@f6@���ހE��@��^���J!�a�@�!��j����`*�j"�)��!����a�`Ҁ�f`���X��� �@�Z@�:a~p����@& ^�P�@>� 2l�8!���2�����a�����L�� � ���ޡ�� (����av��M�!jN`�@���`����*@(.� ���A \@�a ��L ���&�� a� 1`�@x� �� �v`��b@p�B�>� :���0!`��R��!�a�� �G>�����@8� ��������,� O�̀H�hAt�d�`�! :��� � 6�� �n �>� �v�D�F��`�6 A�,� �#H�� �c �n`��x �l�*�vҠ@���H�,���� D�}���䪀d ���n� a* xs~�xA�`��X| ��@dAv��A/I 2����D~aD�8`�z�&`РT�h z`��l���p�L!�A��nr�`�,�< �P &��!F`�` �� � D��ᦢa�A��z� �A��� r�*���b��,��4�� ��AT~a � �.�`\<���ֲ� DRR@r�'X �B"� � �"�K�`�!���@���0��'�*�"��׆��Ί0�`Ρ~n��: d@������v�|� z`�o��T��@��`���a������\E���^`�`2 �`p��af�� >�^Ѣz � � �����` F�P ��, �@�b��@�`��!�@�`x� �`�D@AS� L�"�Ӏ�l@.!� 4!�@��4 ��Fa �`����`r�,��� �`���z`p@��������!:4h���. t�� ��" @��!vA.�2��A, 8� N�������D`S��ab ��(@�A��&� �A�!s!8�HF��,�a�`�\T @��`4@�i[wq�Naa �@���(�>��`�h�$z�e�O ���.��"���v �@ ��4�j������ n����� l����A��`� �| � �D@2f �z@�bf�A(�� ���� �!>�2$�� ( �� �@�� l��x!V��!�����a!6��(&a �4�Q@|�� � �a��A�x�4���� @(t`� �`���D@���(�&�D�L��(@�����-A(c� p������*` � �E�����A�(���!8!8a���P�ax��� �j�(���5�F �h!���X���(�@�!R���A|�"��@^�l#z���� >�f`�� �@��,��!�o�a-��!dV�i���@D�� :@�#0����@j� S���?4� 8�� ���rq&� ���4m`�`0�V����Sa,AJAp��B��|@�� �2�n���@��~D�`P ��jɆv*�� >�z�a�`�����m �����`�*a���� �!`R� ������(� d�U6�H�`�@@����5�!帀\��`L!�z��!�va J�8 ����ʦ���A�IA� D@X����@^5`��� N�����E� p �j!D �v���! @��j�����cG�!V#��F��!B@(�����R��� &�M���!B �� ��`P�@��@��"� ؠ����� � r�r��`����&�VAv�z�k}, V����xA ����D� ��.�̀�i �� ءR`2�@FD��p � v���0 ��8�@x`�����L����d�x�dC�(��@���z5}`an�n�r ��� j��A 2a2�lNV�ҙ@��\�E���� >�@�p����I� L��X�j`���<��ql� ^@,�4�b�ָ6m5�� �`�@j���A¡���2(�`�l�N� nT��v�����t� �!� <�<�ܡ ��A��`� ������ R� �� ��<��vAc����l$\�t@�`����@��� ffS4 ����֪�ءX�V�Ā�" �� �a$ ��@��.V� ځv�����!r$!�@�a ܀@ 4�h�ހz� ��l�@`|�`���*6`�8>^0�ɔ�b<� a�aB'�D t�Xx6�X�H��} "(Y� �{���D�` �ZL�i�E�6�U�����8K�4)�����4@��2V9dȣu���7*ٳG"U�'{� X�+J�P�\pp@�x D�)D�b^�g�*w��I�g��`Xr��e��-ށ�2����I �*�H C�0�!/G4��բ�"Ȯ<&��7��B8�i�w_�Y������~l�*3`�]aX4�Ҽ�; 7�E�S� R���!٢,�t� 4�;�ء�b�E���X B���;��">q hQ�� 7z8�(`0�AT ��X�|pKi8�Ad`����IE��A1�s�4$P,P ��C;�PuD�ı�������� O9�2�u�tLS�=^�0 ���@6>ĂC<x�=5t@��@ +� �� m�B7P�GU,��BJ$Bs�27DI8�"G��H�N,nT�K*8P�,<Љ -���N���/���-M4 ���=P@���m�A2V��@� ��s�8�H�``Et��c:� ��0)R�-fpJ<>���B;.$8���&�pB��0Љ���K��>�s>f���P��6mT��0��oxB�&NhH|,b�l�>cH��m� (�|p��� �S0���J ;�A�<р(�B�f�r���E>&�[�P��]8�) ���B�=�t� %�C�>�0���!��s �4��/���5>Ӄ%`r�&X䀏,`�@�94A�=�R�5�P���`�x���\��ɳ=',�C��pA1 � ��E"^��va4@�kP^�C�����vX���B�p�&P`���,v��"`*�p�Q����9����q�� n� �)�q�i���؆ @�T#W�с(� ��<�p� \ =P�=Z��L�H��0� �[a�����|H��HErQm��k(�<�������� �a����i���X��,x���B8��X�z䁅b����~�LP $dA$�X�o|"�0���A#Fp�H`�;z@&L� �0�&~$�"6�<��aH�,�K��xE>p(�b `�� 8�b���,�~0C0��`a��C `|\�Z���M�mr�P�0,��(�"����3p�"��L��H�( X`qpB)p�4��)�p�3b��_h0�@,(@�c����2�up@�`�^�"�`�P��P� 0���G������R e�xE-�z��C��`c��8B��@?T�7)@��|�*,`�p,s`��Bc�'4�1��P=܁HJL@" ъO�@%PC;��� p�|�F@`v`~@;�'��+0 �i0�F4 ��`�<(� ����Pa�"�xR�W�HC1M�9�@ ���)�0��4�W�A� � SH���+�`60B.r`��G� ԗ�g|a"8�D`YD��X|`��`щ ��5��.��yH�'pG��Z<#�`�#�0L@�Ё �ǀ��!�a ����q�x� ����l�#>��1h� S�:��0�\��pD;"x��,��4T�@�*P�T`{�v��K���`Bnp�O�� ��x@�`h�8� �H����r�9l��� �Pd�qЀ���X��l���)4��t���&� �H���3|� �� (v���c��8��<ܑ�1daFЁ\@�"0@;S�$h�$ }�@<��!t��9p�J�(��H9�!�����7�Y6,;��8�!�1�<�ډ0t �@� `�`@ �0lCH�<��;x!;��;d� -SQ� �p ���Cr�8`B>��Z0��`+VG*� �P�qV�=8��3� �{t��e0� 0�X�����q�qP! X� �A�B�>Ĉ�}� @x�cim��&Z��H��/ �lE@�1 ��y���/� �A`�e� ���P��j�z�_s `��=�w��`��6P4���Vp��� P� �q�� ����o�p` b�3�3�ۗ� �� k`:��� � n� ���@p��| ��p>�Npn`�0T���I�cp6K0L����Y�{P��@*XP�4V� \U`\ % 4� ��pT��@�J�0{�<���F�������P����Y�[��? ,>�n���E���t @�p ��`� �0�8@�@m@ ȧ�0 60���@�����`O��XP@,��r�T� �0�a "��<` @�#" �pz� �����ڰ @ �#T���P\P�@ 4P�p���p�p����9�������g� \�T@�0 =�;�@��3�X� �� �`9��" ts� ���@�8����� �# ~� � �p�� n0l� �R�z �`�S�p0 �PX� �`|�;��P �^�Xp���� s�`�PT�u��� ��`���,���� � �'p�@�"@�Z�d7��!�p�� y���.��@ ����5p�P!�1�� @�`�hD��&�ܐ)��sg��@6L�R�"���[3�]� {@�$p:p��w�~P���W��pG� ���`�`�0�@ ���@00��u�v�I0 �P/PG���a�2`:��75P$��@���` |�7�` ]�vP���"�|P�0���� J�cPM�0` c��(�Ky��`5����K�l�#���`ʉs� �PPr�@ �0'PI�o�@ ���G>� ��� �d`,���� ��*0o@ ��rG���+�$����<@��� ~� H�M9� V F�`0��p�y�@���x� Y��`7R9�P���cp������p 7f � �pUP��ɀ` �K�p=` �� �0�p�>P���t@���׀�����A�` !�m��� X�:�Y��`�]6���p \z �`��� �`AF��@q���` �0���EA ɀ�C���J �C ���a�]�@ T���p�(�S�{p �`Y�5��7p��G�P"�L���| �pV���?0�P ��^�>�l��`����R0�u�УX2�������VP�f�� � [��@%�Ð�2Q��0� `�pC 4@G���p��"���#�pG`q0�q|� �np"��@"@A�N0�E�K���q�` އ[H���� p �Py����26@��*�,� Y`0�)���^�� g�P�q ���S �6��"� �����w0�)�!��p��� ,��0qcpi0��� �`� 2@9 upH��� �O��8�r#4�,P��p g |���,��� � f��: ��98��NP~� W602�!p�;�T� e��PnZ� �s�H@: ���9��V�Y`A:��`�� DE0�|`�V"�K� �8f�P�� y� ^�z��`#��p�I &X� ����`�l`o@�`p�J�Ā��p����0)� d��p����`��``>��pm�) ���: m�4p��|�@|�� U@ YP{� 1`�� ����P�����Pw��p#i���P0`:[@2p)�U&P��~��;�� ���~�0 "�@�% �s�9&p?q��p fP�GP��z����pT4H��p�7z��� ����Љ`<0"� |@���L � r��Py@"7v�� @mp��<������=`�PP�P ��*���`�z�VW�,�"�Ґ �`L�Y�E���p�P$�� G0 � `�6�B` �P�� ��0�pL�np. G�w@ �4pF�@�%�y�p8��0 �V~��pSp ��u�*�)�wp k�J���-� �p�^0 <t �`�� KP y�)�V`���0�`�0�@?�����;�Bp{.����p��p�Pֆ°�@M�y��@ ��q���A� X0i �^����0�P��r �������� C0q���C}b��.�<`"���~��${�8�0�p�����@�p/��n`b���y�t�l`���"����� �E�� ���)�P���3�"/z��]0� �l��; f�ґu@Hp"��#4�0�e*��Ϡ��� �0��@���u�S4� ���0`������\�2p�������W ���2�F@ ��pm���� ��=��pP��ۀ r��0 A� ����0Ā���������@ �A�4�#c�%3Di0���c>�ġ�%ˎ |hl;���.��dz��)5���2pѤ-�) �.V8�����;�R�z�,E�>A c��R\����\8p��$Y�0[���pL�i� ��cՋ��x���y<-�� ��$|T��$9��P�Am[�z5��3%7r`�O�0W�Yx�$�<�pPqp�ԅ�Xtq��]zM"���I�+9:��'�A�18l�9�^� ��칃�@�|��`9#"�9t�0Zu=��J�z`i�/B��n�Z"Z�"�*I~�B��Ѐ�|"H��}"��:�Q '�@� . � a ���A�e��x�v�bx��$�7t!\�'#Q�1��`�}bQ�y���K$� ,�g�}4�Sp��y����%8J��P aĞv*I�4Rx� ��a�����*>�G�0B/���.�1ah���R�R�N�9�����Ȁ�FN !#Rq�a�c��x��'�P�C$��ǂ�60` +�a 4���yz!�Ex�c܉����� �Ab9D� ��G�;^�"�bL��<p���WniB�M���RpÌF�1��@Pه�4"���;v�x�d�!a��'�AJX$x4�VX��Ɛ��{�0�,�顄hn�`��$�DҀdž�5��<`��/��=�i �� d�R�0<��: ��x��J()u�7t�������@'�uIE�<f!/ʐ���B�d dl��nxD�t���ij�#�vy��B�!�?"���%~I�>��4�&�*�<Nb�`�i 9"x`� t��v�;$�@�'�>,i��;ܩAY��!_0Ƀ 0hY�Xdw4!�ʠ �)�Y�B#&��|�C� R��{T h@"d� , �`� ��*� E ��<��q�p0L M�>���[��,��F�/"�A�H4` P��l �d�<�R�$h��1�=84�|�>8 ��[<�O8�!N��24A��@)�7��,$PD%0P5<@9@�䁌=ȅ:�@��(B���� 3X��P�m�"���>�$�C\@-pG ��F�b�����UaL��<0�$dk���(�Y@P�>!�<A���K78���ȣ�D� ((��0'@f��PH2@�� �M` R@Zl.��p�FTbl�4\��� x�8` >$`0�?�ql@{��)�A��q� ������a1��<��|�'��-��3d���ـz��> !PA����R<D� �h6��|� n0�l� 3�%i.nU4B��{�A_y>D�v�r�D2b�����lP�-b;��'!�j�.X��@�|�c�x�<�w8�;��N�l�� ��>>�Z�`��n� �@9�A�@������;L�� �\� �#�(��h �)�`��!�"�V@����&XQ�D��c8"� ���0��1�FPaC>�|d@,X�(�L��A)�0)���0�4�c����K��a�a�.��th �;������.h@`A00@�F*��k� ��+X@8��"��aP �~x�4q @@�P-` &�� � 2��H����`@��=�Y�$J��@��<��Rp��r0>�q�9�k���q�X"(0�`��a��B"�S��a "�����0dp��5>��9�� ���/�A�)-�� �� oJ1����.�p�. T�Ap�Y�����Z>@�^ą+h��zD��0� 7A �� �u�Z�\܁M����9���@A�<`�&\q�2��HT��!�AM��X�9>QMhcyX40H�b���#x�����A6$!@����*8� �p� �/�m��#���Ԁ)���0��"��B*�� @<I���� x��0:�@�`)���S �dЎ(� @A���D��?��LB�� *�G�! CZ� �@1Ҩ�!��;p��]�!�ȇ�<�!�h0�r�C����И;���tP [v� A6X�L� 8 �(�x8�. `<`�?����%>���|�:p�>h+��GpȁA`�hx�q�B@� p�L��R�Ȁg��AR0�H k{(�%�� �Y@-h�|��;��!�0��N� `�@�H�xJ�T���{��=���Q�Ѐ�K �{h�`:��h�]P�0�C8��`<H��%(M8�L���Z�I,�R�M�v�9��}cx�iX1)�*8(�G(+�����ڀ�j�x�2`�R�H��s����2`aX�j�x(�/�?e��^�/��,X����P��ep��f��p��H�h���0��zh�B� Ѐ�*`�'X��d�� ����#�@i���,���s��H�z��R��{PF�]����Shk��@�y�v�P�2)�H�(���<��)؆9���9�4�3p�X�H8�`�+�(�"�8�ypzHH��(a#=��D0�V�/����-��H�P�]�/Ѕ�}�\@�Px�K8�� ��|8���)@*0�@�� h�Y~$�n�.+iHnx�= ��� T�@�8S���18��]>�4�<`?J{�\��_0=0�<�wh�C���Ё-�8}h%0fx�L�t�j0�%� �E�x?��MB�+�9`vH� �E��7�R��,>��I�F�A]8|�Hh��l#Ȇ����`�Q0*�v@Kv����H�����wp<�R<��IiȄ�"�,Hv@�~(1H���_��~7p�h�3 7Ȁ~83P�18�7@AX�bX7�8�U0�'$H�#�҄;����TX��h�x�8�8�kx�J�&8+8���>8�D��YP��a�8� �B�����0� H�h�%p>8��DX�N�������:hx��XZ(\�RȌ"@5�\Ѐ��Y��A�� ��x��x�����y�QpKx��<�18]�'8pX�,8��`�l�'8X�X�Ђ�-��'��(`MȅH�0���B�|x�4����!��S0��lІ_�2X9�Zx��WȄ��8�v�?8�}�E�)n�`�Xج�� �!�&��6`�0�?` ��A$PF'XO d�,x�9� ��h+����h�UȄ��Q`��lgP����Ex�8W��ak�F�.8�S��pH�XfU`�(��+@M�;���vx�?�;8����hxفh�|�����Z>�k8�Q��H� ��`��8�F�W�]�&�%�LpH@�`� �oH��,�;R/�x�H8-=_t���|�?�8�(�l�$�?4��%�� ^H�.0�i����:�+`�F@ p�c����ҀA+`�$��m�� (� �9H�� �T8 � @Ѕ ��X�<Ps�[Єx`�LȀ)�L-! h�Rx!���Pj��Z���/(@��B��Cȅ�m���3�B��a�m�R`*�-�<Z�%P��|X�����5���/xa� �� �n�uP)` ˄���q*�3�]�|�C�6��>7��y(1�k�<<(�r�!�'(`=�*�I{�f����gPR$�ph+0�`5�g�|�Z,�����*�0�1X�]x��'��P:�30`�K�[8�C��XBj��@8�%0�y�;�S8W�]ȁU���x|t�>��}h�!�M����8�V9��N`Kxx9�*�hpA �`��V�V�h�Z�`Ȃ x�@p��<�{`?��SG$ȁ =�ZІ�O�N�x��#�tF,pb�%w���D��#/����<p�*� ��!�b��6ȀhI�'�,�)Є���T?�B���`*��[^h�c0�8�,��t��=����?f�i�l.�7����> ��6x�BPYP8�R�!�Q_~���|h�(�l��x�6��0x��,X�#Єm��u��hii�D��xp�;�8 x=�phF0�)P?�Z�8���A�K�7�(/���` �SX�jؖ ���D|��j`X/Іl(+H�d�{�P���=X|�1X�Z���k�}�)��\x�A�kH( �؇�D�Z{5(_0<�H�'X� h}������H�~���\�p�%��_:w�zh�g����6�m��k4��Q(�m�b=(9����a8� �䄃<h�"ЄB0X҄C��}H��oxL?h���U�8�)j� �X��l8�x�*h�#`9x>�h�(y�}��I� �UC��X���!`� `�$ ��1�:��;���Y��%`�U?H ������h� HX�.h���>F1Єp�@؆h��+����F �g�&�R��P �ȇ�`��m�b0��S�dH���oX�.X|@���S�3��=0�V��*`78���*<�:�>8s8,�;H����xjh�<�v؇\@:��PV�_��%Hy��%�H�湃GPU�S�5�~@w�v��5x@�0�jXf��\=X�2��/�g�g8�;h�8��Qp�wq#�H* �BX� �XP��p�p���D��4D���A=����Q����QV���� �{����X�%��\8p < �yFi�� ��%�0��-L @��*�B�i����/W|�\boƌy�]�'��MRF�� �T�3v*D("�Ã����|@�@ ��{f�� �O�78�`��C=p�y��cDb�و��wv(��!���}��'�A�r X`�� �D��p�ɧJnd��PƖ" ��@#�IK0�WV��R(KDA'U|閂�������2чJ�RX�ӫ((O��B�0�L]<PV�"K$lP��D���!<q�V$�-@\`�C]<r��@q�u�#�2�a�30���@F> �`,�$���=0�G ���`�D\O��C!��S*�s�#���F�ЅN�E5�P���S~��� �'=H�J�D��,� �q6c\ VP� S��h�G4#xp�q(���t!�!�P�>��0�h�G�p��c�<��o�~<�O �w4���&�h�}�� %��D��� t!�>���=?��@"���=�`h`��K<D��-Ll�A<��-T�H<�#��4��V,��!ȼ��J��*W�`�<(�!1� @�c6�����tۃo�PC�P�@�@L ̣���%�Yd�%�t��>GPsEHd�M"STD`��̣�M�,r�!�ps�F�0@�<� �C.$x�A;���3��QD(�������/:@��cD�C��QH5t�CA;�|�! A0!�IA�IS���p�B$��O;h#���@*��2@�C&��S�n@��e��6�(��4 "������(�A�;,h�I�`^��pS���@ r�Xl�:�7� ��2�WЃ����Cpq/�Z� � F��F� \0������/@� �C1A>D ����L��5�ш*h�s�.ı�Z���x�� ��caBt������'�XE;��`��`<@�,�Ї>�S�`pC�P ��4h��!F����� �/h��\k��(zP�pa ������L(� npS�ach@�� ]p���(�Z�;��;ч^L�`0C 2�n@l�^R�1|��0�<�1�@l�����ۀ �����x�� �� ���ATA�\�v��*��d,���p&y��h�.� �����P=t#�`���{��B@�\��'p � ��0+�� )h`iD#D �i�H����4>W@"��@4�}D�o�h0�T� ��Ӈ�����1D 4 ��E`(�� q��a 4�<0\���@a� 0��0�8�N�n~� �w�"v ���d��+��;\���A�����I$R@�|�<�GR�B��H�"�0 ������` H�X�J_�-2��s�A8czHH�(a���f�X@:�!���@�8�0ı�m���{i�xDc &�|� V,a����b,AϘ��Q�Q��@"(/<"�8.p0�b��tЇ|D��@AL�������1`+�AyȀ4��*`�D&���̣��;�Tģ^`��!S,� ���6.� �#r�$����̰;�0zt �� @���X�p�Z� ` lPt,�d��'�0 �7.��K�C`n�+���������C+JP�^h�/���xAȃ*��0N�ΐ�_�M�"��%�;�g*�19�1.D�,l��H�>�`�y�`τ3�+0c�Bj9�B��@Z�A q�����),�2@;,�A!qp����_���PE4�р{�n�C*��� D<ڰ�$t�����p5.�/t� n ���'�>2�����.p�#�@BP�7h��P�=�00��pG �� %�������.�`�A��(@H�hЃ� K��t:�#A0���o@%�>�2pMp!<PM5�0 � X0'֠�y� �@���3o� �r��O?C#<1x�H�xA#P@� LA6��\@ ���Ch�l@��C8��@H��B$�A�=$�>$�L<H��C8��#����@�X��A�@DL�@L���&�B� �=;T�s$-��<�@D�Cd,$A T�P�3���"����@��>�A�#T��CH��B��,�,A���v$�\�� �=�+|C��A�� 0�Qm���A*D.��(�\B�@ @t�2�)d<C�� T�<��APB#�ȁP�_�Ŝ/`��� hB5P� B�/�� L���A&�(�*p�A �C!�� H�"�1L�0@���$��d�)��A"`%t� 8��A)�;|�<����L�C��1(A6,@7d@� $�D��� ���܂;T#�܃���?t@<��\B<��<d�@�C;<�P7T<��&�A�� �����(H��<L����Ap\B�� '�@ d� 0�<D�*8� lA�C���TN��� ��pBD���$�C<XC��\�.�4�C �@� P� *�3��+�@d�<��@�B�3�BQ�B ��0����@\�`A�� �� `@�C� ���ăs���(�T�X��6� �3\A xA�h�@$P�č�C�� `� L#TB$�#�� ��NU��,8�@?<��,�����$L@+z��|�C p@3t�>��< ���>hA�eĄ;p �D@d�>4�9�B7DC��BdA%�@<���=8��\H�P�ԃ@ ,@�B&�B#���+�B��P�ٵ5����3�A>d�=��<0��A=@@!l���phB&�'@>$$l��� t.`$,<h%�pA d��� ܀i��� �=tXP@d��>��-D��@�lB�XB�A�@hP(���H�<(�/�;��$��d�^��Lz�*�p�)H�4�D@�@(T�)܂��T� $\>@x�>D!;dSx@#�@�������(C���,�l� C,�3|�"d��� �@��(��hñZ�T�,C? �,�C�K��@�p�B8�$�L�)�;X�x�(�t�0@C@���eE��4;�-�AD,�A8�<��<,�hBC�����%HC�^�"<��>�pC4�`�<xC��B<��?��"@���B-lP���*|�hE*���(��p@H�*����@�ڃ&CA;�h��B��0�8� �U����0B@C�?��\�;,@$�<,�y(� m �V0�C;4��A2��� �!�8�B)�C;H���>�3���($t[p��!�CE4@��<�%Tð4B@�B*܁/�@0܁���h�X�L��L"�CdA= ����9|Cd�=���)���`�.�L��4��;�C�0���<B=���2�`@�����g�(��A�+DC��-��܃,8C<�|�,�>��4��0�d@�d@�;� A=�k�)|�`�� �*;x�2��"PA3Lx,��0�lC��DRALB�B&H�.��"��"�A6x1x�2,6.t�8h�4�\X�.�@�@!�p@#�5��� ��U���-@x�<0?0�*P�0�;4�)0��.�� �B"�C0��°�����A�)�!� �<�% �P����; ���$@� �%p�x�L��D�7�+���*d>���R��A �A )��Ё��<�!d� @�<x�@=x&HA�,B>�A��,@ �@6D�@6@�.hBX���07� �0�@P�/,*�&h*�A�0�ȁ/TC�A�>\�1))@�u�<`/( �(��B;�C�����L�Bs�2�����4��;�Y�@�*<`AA*p�(4<��-�J�D�`�xA��CP;�"c��|ǜh�0�@�C�"L�8�L� U��S=@��;��7H��C���<8���� ��AL�!(@<L���h�)��)<0�(�̀��`�)`;�A�@C>|�/�d�@'�\Ck Bt��X���@�<�l-4@<�A�A$$��2ؗ �?�H� D�|���*�%����݀����x2x�-��p���%��� P�� ��-H�)���@Ђ/\�@"�$>D� ̂�3 �@:|A$�)��-LC躃<��CT��� ����,@0l�/L��h�(�p��)7�!l@XD耻����>p���A� ��@2A,��Z?l7�̃ �����AHg�`A�\@P1p�d�)�*T�-:\�,A>��3>�(��<$��dEl>�@�=�A� �C���v/DA���܂=�@���XA���d��6@��3�AЂ=�>�@$XTT��w@H��)�A:�@;�A&@�\�'�@���C=�"8@�%�>,�������A�A&�B$�����@<��� 8(��B�@�Ѓ ��A�-0�;t ��xA?�� l@=@6�=,A�A���($�&�>C`�/`��� l�@�,�B�'6<�4*H��>HA\@��r�ā�Xq!�%ۄ$���˰ ��O�Rȣ�hOf�QgL?7�ȣa�$?���@B�^�,3��(�E��9�t�iǓ$2D(��`Xex##�0sly�I���@aՀ �4�ᓅ� @��iQa�gO�5�/�'`V~H��$)�=:�oɅC�D0�!�D� $����a��F�T�y� <���LK��ÁC ���&��L���` B�-4�q&�*PxIϟ�y�=K&�$Pa���;9F�L`�G$F����@i:ř���]N��(�@�F4@��-8�D�,�q�!v�$�#��"0�"�x�L ��@� $h0@�y��ą .a�-z��'�0��(�d� �x�� �T� �$RXd�>&����p'�.8i��P$�<X�RD���w,�@ (`* ����h�+l���C�h$tP�� HƏC��a�Y���"�v���z��$D�� &�gN\y�3� >����#=y8��%��`��&��� ��C�_p�b}�@�|�� !Hp�� <�Z4&}"Р���;Np'H��+���b�xFh!�.J1�8��}�Q����"�� n0�G+J "��0����"*6�d#n� �;B9fi���G�D�`#P��&ȁ&>9'+��� �z2Z��(e�أ� &� C��G�y���3�)|آi� �4�!�|�#�@�i@��|����� ��` Ơ�D�C�y#] ��W�����|��;bQ@� � a=p8`�OxQ�[���Y���9.�� H�H��e�x?��}$ ���8h�KL�E�m����p�$Sr��P�6����>�-ܠ���p%���D#hQ�&� ���0�< �7��z0��CL�;x@qH�<ذx @ P�B"�h��`�A<:�0 "��6�P-T�e��D0���x�� �`y)� >�A�0�`��`��`����ӌ"x�s�Ac��v@?�b6Ѓ�Q��"�B� �|�(�~��vh�"���p� !s(�p�p �`<jȃ���&V��P� @�0@TXB��|�#O��"P(�b���;!M0�������y��=>�<��GxÀ|�a��Af�N�T��4�p�}$ X��{�PB(������C0�/L#)p`��0gD"��$��V� la.`�/��� �����#TaȂ���D��"��1�`��1�T/ܠ# ��K^7ȇ>`�B�b�8�BR��U�"~�@ v0�k�ah�/рmtb)ЀX�*-�Vw8�&Xah� �� �$|a:�B �p&�A8��.P"r�C6�P�� ���t����P�&���"ư�2�yd��X�.�!�@�h�@�|���<P�\��� �0A ;@�?�P#t@����G8B�� Ґ�gT�K�\6<�t��<`6D4t!��c�8�r��B����я0���S�A|� GPP�Q|� �'@�I<`�HF HЁ@���QU��b�0��@֠�%,�O��(� ��)��-�A�_|B�����(@��������)��"8��{��@�)D��@V��D� `@GZ��A�2D�r��2`�vhC �p{` �AL0�p`Cx��(A� }a#�`�+|�4 ��P��S� �h��a�3XaL��62�%�C�%��b���J��*#8Xe( /�@��=��Q���.`�z���P�F��x�A��A>p�����!�B��@�p�Z0���=���F���C����P���%0�P8�:c̣@���&�@�p��x�H8�<lP����1�X�D0��� x�<neoO�^`�س�y�c��'��� Y ����P>.P�D��x��wP����&�8� �3���p4 "76Q�=�@2�������xx��P�`!�'X֑@%��'�eh�C;� /4��E(����v�ta�6�4a6@�� ���X�> F �D����^� |�$ � � Ba��J�rA�@V�jz���`"��H 8���a�� L�*|� jaJ�D �`�������<@�La�(a���� ��@x�����z`` �D� r�V�"a4�,@��t� ր ���I�P!�� "@���C.�,� ���� ����������:��l` 4�(@�!F��6j�����t���t ������� X��!v���,��H� ���h@vA���� ��>f9��h!�b�H�0@=�^F�� �� R�ؠD@`p�RA�`` � �XA�Ae@�\�� ���F ����t�<���x� x��~@NV�U���v� 2a2���l����E�R@�!r �1� l� BA�� 48 8�xD �@ ���m�`��!p��J���+(��A4�la�al��l����� ����!�@ ���Z`��z!���|� >��!���|���&�La^��acF,�4�(�l@2r �@�� �"�F�.`�!�!��*:��A � �@ �`O��`�� ��fa��2 � 2����$�n��h����@�`�`� p����a0A�|�U2� � v��!� n �A���� `,��a� � 6�� �� �!2�&�AO�������D�.@& �Aܡ�� r�^�! ��! �` �X���a>rT�@|�D� |�� �q2���(�a{������x@"a A����� 2����4����@r4��!�r ���Va��E�������s�� �k�v!�n�jkN��A������|�(����A�R 6@�,h� ��`�����A �D�� �� �����4�P`��(�(`�!ā ��J`8������h�3�� Dt@0@ڡ �a����"�R@P< �� >�0�r�1���0`Ha���( `: H!�����@�� �� =T�DA��\!��J!�� ��"�n�vOw~�Ĉ!N��`�8�P�AT�C\���n�p`\v@����@�`"���`�Al��D��`>` �`v r�,o8`.�`^M�:�n �)Z� �@�)�a� f`8�p0��!h�@,���Ad��A !@��K��@�@!�#�@V��(�`�~�r! 6��a`�J:�v��H@�a=�!� &A�`�a�p-Z� @4� ءrp� ��\�P`�a6�� �����@�v��@ N� �Z{@���raVA�4�zh� Al�W�-|>�@`��ܮ� ��`�`�v�� �a�z l�2���X�p��&�@N& A�`B�<a��� ��j���r�RJ��`D�.`5@BAK� F` `���"��A�������`��y��&����0��@j�B�n@�0�&���v8�������,� X` ����|� t �2�@� N����P!��|�n��>�@���������@���ߎ���!! �� ���D!% �z��� 8@=��� ^AN���j��\��������\��!�@�@ 2!(a� DA���d`j�&�4� �f�� �"�t��� �,`��2� 0��a� h�� � ��(�Ba��9va8a �`4@>4�Na�`�`|(������4�r�� ��`�V � x@lr%$��l`�!�fT!l��m"��.�\����.@�Rz�*�� �afq́%�Ap�j`�0r ���!Rj�`f��4al� �` �� 2�ᨔ�� t���Vz�Av����v�Z�Z (�j�r�X�l �|!fa"`l@n�.���jA��Z��`` $c R���`�!�a>���� �( ws�� �� r��z�@t�N�D��`��cl�.`X!� >`r`��Ba �` *�>� a�a��2�l���p��� �& �.��V��aj�� �!jl ���f���$�P��,�s̠<?@t��j�z D �A�D����@�� "�t�������\Aj!� ��A�@2�! ���@x.� <!Za>�~� ���� �@\ ��a6@i5��@`\���J�\�H� bb8��Z�� V��D n�4�'�����z\ �4 na `a8!��Z@2������J�� ���|��x �e�c}P��A�M�̨�� ��Mv(��獁;��᫆Æ� �XiQ�%@�,h� $R�\�s�@M���2dC��@8��K`�A#A-�,i` ȅ'��|�a�Aw 4$�1�:dp�版%2��|Fla@���!�H�%e��Rf�`*XH�-Ȃp> p�,ȒP�\ ��g�hʲ���+HN]�pa&(�dH2a�}Y2]B!"_�t 8�d ;<��a �� �4�zB���28�� El�Z^DY�i��v*у<T�� jX0� H�CtP`t�3�d`���D{��A��A��A�<`@(��@ �<�H"�`�3� �$� ���S� x�3����[4�Y �� ��|C�?�r�-��Sp�GK5zLB !�-'���@�� �:����P�4bxQ��0Ё|�pAW�B��PP6����>h��L��<{@Ј)�@c���J"a�h�;��r��l��� �:�a�5���B8�$� �7;�,N@@A�hA��h���b8����sE(K&q��A;� 5���l��&�����\{��<����'�@�����#��+��(3�%tOe����Nr�$4R���ӂH�QC�)4P0'ax2��@9�q�'���-��� O�1�;|���|���c�mPO=��H<&4(�=*$ E$و�#�@�.d��=[< �(p�E"F���)�ÃVp2C�T����`�GB�Lh������a�&hqJ H�CGL�rh�L��*�H:���a������pB75$��x�N;6DcD9�s�4t@�R��q>�b�h��\�)������l��X��܀Ģ7�6��>��B#�9 Fj� l`[Ё6�A7�w�G>��|(� Ȁ��q�L���4|�h� ���X8 n� A zp*@H�}�� ���^�',vІ̐GP�0����$Q�� 6��}�@��3�G�`U��0�`�HA �T�(X��p=D#8�f��1Ah�ޡ����`#��0 !���E��'P@>X@9[ID2}\,�x��@��"�>N`�'|��X����� 0�I`�P��"�Ђ �R�&�I���F.�;�`c��<(��MaBȇ=�Q �+�@p�{�� C>��e��+]�P�"xAq@���� �8����Xc�@>Ɍ'�C����{4B"xD>���$OȀH�<<`h8�,wy`mp�� �U��S���1�D;LP+\���a�#��\ �cP���e8`�<lL`�4 wA�#������` ���R�v #��p ��� �0a�ݜp|���G �@�0�|���PF0` �p�X� <��H�p�}��� p�4"��h�F����$��(����$�txj�@�t�.�T�\Ppx �8�����j�Cr@4"u�B\�8�(0��a�{H� 7`� ޑ�R�� �18�-`�(A�>8�3��}���؆;>0�����4�L�C���j�@t`��H �c)�J� ��L@A\0�:���j�CJ�'Ѐ<���?������ �0���p�;x�y0����6�.�q�$`�Q���P�A�z�!��C � e���`��@d�`�'X���/�/�{4 � A@�ԃA�-�{$�^��P�0�b��>�08d����p�t���Fp |� ��c�P a�x@-� �v���G P6|�@��0� �I�?�>`� ԡ�6��a�%hh�t�&t�xB(1�eP��8���a�4�Fh@>�hc�p���ad�|g�74�`��0 <�bhp@ :1+���@@=�P�vX S`:A?P�j�\!ka~�7n�Y�ajx/>���Fu����^g|�p?@�pK��La�xB ����P���T�@?� �� �� 2��� � �`�`��X�hM��p�V��C 50� 0�O@� @�dW��N�w�gPņ�p��+�"�ppc� 0" ^pk� ˠ $`&��Q?�i@�7���0O` ܀=Ђ�@�(�c �@�`pL �PO���1���.����[@�0E��P9@@��&�!A��P� ���� 08 ��e` ^@���mp� 4��° P"0�0�Q$�@��`;�LR�$� �^ �K� q�X�P B�s��P�$PP����[`= !K�n0 �K` ` � �=0g�#��?���@+K�!��bg�@2 r���;P�� @R@g�MA | @Up��+ ���PT��'pBc����8 ������� �.� ��S�m8������p�P\��0P ��P� G=��6Ju�� /P �o0 /0NpV����^� �0^ �p|pG�p`�8�Lp B"�O0F�d�� {,@ '�pM`�{$ $P`���`��0���R� #Pnw�D00 K�@ �]��@ 6�p��^��p�0 =`J� m�W�5� x �@aQ l��E�w��p �@ [� `@ ��<P ]�*�p������E�V�� �� �L����"pҰ�� ;�t� y VP� ��G@}�� �Rd0�`(�6��P��@F =0 �@��|�`P�Pn��`�Op@��u�p� �0ec$�>0)��0��V�W���Q�"��0Y���hp O��0 � 7�.���)����X��A`K���pyp���LԐ ���0 8� >����^�G��p�� �m� �@��p�{@�P�0�K�_j���0��� 3��`&���d`X%�����B00 �aP�`�� � ��8P%F � ��~_�7�� ^�X��%\*� �-06�5���x���.�Y%uu��d0 �98� �F�p"2p0�N�Nf���@ �� �p� ����p`r { ���L� gP�0�0��@�h����$�� .� B��0r��P` ;� �uP��t�z�;w�Q���0��� }��3�a�^���Y*�`� �p #` <H80L���^�=���@P� ptgrӰ���C@Y�0> f ����@p� 0T.@+ pc`I-�b`L �߀�r�`�@�����`3���p�p� 0W�D�pY�� |0<PϠ56���� �p���a��� ` ��`[���@��@ �� �@ 2������ :�m�t0Oe����$C�s��� l�"X L 3 0fp`� =�q�tPc�-�@Y��>Њ"�Ѱ2P&����Фa�X��Pv� YPKo�m����\,�X �@ `r�G� }� �0��7� �zy PS� ���"G� 0r0j�:��=� ~0 ��2S@��9�Sp�@�����E�� �PT�[���~���:`��Ҁ�k%h����>9��0�wPq`p �ƽ�@n�V� z H�}����:P�(P=��P��ƐY���� �j���Pf��6�Z���a@�0�� zp����� ;@�Pv��h<`����g@78�@�� g`q�C�2i 0 nL, �G�*pHp @6�a�(P=F�}�0�)@�0Z���e�X@�p�P����#: c0 � 6`p��� p�2 � "�S�hv��q���`C�{� X \@h�pm{�=0 ��=�E�S`����F�q�H�w7 6 ��pa���`3�`����J��)�� 9�P��X �0;P pR0 ��7�)� �PT' 3`,�l�f�0 x�a`H�mv�@��U����@�) p�`=9��X ^� P�I�i���)o Q`,`7����@j�JTp���V;V3.�r��<��0;@���=���0�P o`|�80?���� � K`�>�" �S�ΰ�H���p�������br{��,"0�@�$;���&P 1( � L�� ��0�p>�3@�� �0��70p*w�d`������'j`�0�`] � F�P� F@ � r`,� 04�ۀ=@=�9�:�Аq�y��P H�,�ɭ�0��Y���`S�OpW� O`�� �#�� 1��c)A ���� {p|p 3`qP iKp8�` �pFp^�>y��p@+00��P{�7`�� �� Q�O A�}0�� �����0D���|� �`C�^� L�� b�N0 `�~�P,L��;0' �y�Z4�qI�x�0(`ˆ-26�`萐}�� �y�ЯH&z��@A_� !^�i%'�B/Y��JS��&�yI�낆)�yq'���h�R�Cȼ;A��ɧE`�-�P'H�y���C����0&�G�M��+�D���F�6�L�!�>�RE�AB�R�zv��+pP� ��W�Vu��,��JVL�HQ )P����A�e=�U� M� N9p�.��`0�A'I������bpA��A= �c�K�0�cE�Un����v e�2H��y��BT�P��p���`d ���F,�����[*���ȁ!,��P�� �рb�,��X�&H���"�A��C����� 9���8��)��a�B���M��Bl��#���ayn�#D�\`�w��� \�G��`�3���"�@�w�%,�H���|DX`�4 n`���,�g�4���l>�R(����I��'�Lp�f@��b�!����x��].؆�0X8@�Z���j��`�7��G ٧�A��!(���|� ��f�Z�#���ء��1�.��@�.��RVYB�L�`2* ���Ɲ�n(ÎT@yb�D ��|0��@��\v(�SqҰ�&�q� >�EN�٧h�iD�G��g� I!��RBHL��Xh@zX��Xe�C�`��n�� <��}��5��w2X��P��W����Urؠ��d�h��w�A@j��7N�؇N��H[X������`��$�G�I�9T(��$�����fF�|i�x�a� ��ǘ"��"p� ;>� z�yG�{�8�`@��0�b��VqfH��pG�1\|BY��&4QX�C� �a����*D@�#o�G# ��8@/�����c�a|08@h�� .,A�Z`�=qw�a���3xЀD:�h��&�A�$�v�!8BD� �p<*!��x�� x�� >*L`/ >�P�!v��<���>�c&����� n���<@��8a�i���v@� �b�9%Jp�+�AEpx`�>c>��<�-��L���(Ex@{�3V`��3�����Zр0a����o�� �An�# ����!�d �N`�X��K8�-�� �p$����D�, ��(z�,�b�G p�_�rc�<P��cs��б�}��`:|`7�<aP�YЃ2��/�� @�����ct8����%,�;D��x$A���N��J�@�03�� QD1M�� z@� �`p�(�Ё{<� p@@=Z�!4(�,.Ј+� ,�C��q`` ��DRQ���uX@ �уY|lf�؇!��@!v�B,�a�c�<�c�� q��X@ \$�JX(h���� <�jX�q$� `���AS� @�ZڃL@X�� ��`p��@K���( n@����0B�@��C�����v��Bp<�<x� ��M� ���=�A��:Q^8�=:�q,��H<`���І%��� �ݸ�s0�aW�� +� H�`H�.聀Z�A� �Q@c�G H��1��� z`Ɗlq�\�B�"PP�� ���'�a���v��"�A<0�=�A�O�"�X$`�<��l�1E�`���4��6��@�(x�J`l���R �dR &\ �tP9� ��q,4zx*|0�- �@Kh�x�bt@��<� �94��>|�"X�0�,c �&����f��``�,�mx!��hG�1�#0��h@Blh��q�Bl0�P�(� �B.0r�!�XꐂHx�x�V�y��ڤ��p� 0�v����x�cP>(`8@�J<�qxA����a <�(�&��$X�`[0{��%��y@C�0�1hP�<��:���T��V�|�IFP0��#`�� `9�� ��A.�k�#`D n�\�!�a()���a�X`8��3�-Ȁg�)���x�3�`p�D@�#�P�� �*/6/��X�ك�<���\�T�N�� ��X8�o�CXx�~�=X�j2�[H�8�2X�ȄW��:�:��x�$0��{ |��C�!��*�a���1� �I�x�~9�3 ��xx�H��� Є��[��`Z�R�H�yH����a�|�<XSp�1�?(�(�H�|`�A���@�'Ȃ}H@x0� �h?��/mh�xp_�*0�)�@`�sKP�H�;��y `�xA�L��e�����s�$�/�1�$��S/�x`]��l�x�x� ��)��0������6pv�B��?�868�'h�)�!x����:�}x�|f��x�,�-h�Y`��M����-��5�) � �{���q��aX�O�2�F��`�pZ��v�h�>X��)��/�x��~p��`h��y�P�.�g�N�������R��'�|h�7'?N�����E0�4*��3��=hPp(p^��_��0�D��P�H�$H�H�;I �p�rX��1�( �}8�Ѓ=��? �؇B��!1(���2x(m� w�I�Lx�.���sx\�Gh� �z��K�B8 �D��@j�.r�a� � �&��2��0��H��0�u ����j�M(w`�x�DȀ+}pJI���1�P胥�}0���*��6�-P��!� �,����-�G� 8�����;:Ĝ@�P�̔6�X1��â�TX�aΔ\^"y��C���HB�((d0p' �`�P�3��$�`�@�� l.�qW����.H���9 p�� AR�4,yW?r�'�H�C�K�~�jP�\�(�@� R����FRZ<��!ԙ��Ş�*��X�`�i]�$��j�? ���cޕR���@�iG.��$*��|>\����!r�BA��C�{�I� �`�v^�F�;i E�#��/H<R�P���}�q�d���B�"��(���p��9T4E��C<$`A��#�N,'<��/r|�'~�!E6��SO R����CIv�� �@6�H��;<s� �@��<�`q�3qh�;\SKh#O=;�T�J���P��"m��Y�S>�,���AV���A ��CGLh#���`� ��?<�;���I�p���>ȡ�0}P;�(� z,���C �N�DBG+H�Cx�2�%4�CO5�@.����<0�}�Њ^�� �$�@ ��A$z��D)^4�C ~tae�!�XS�CC8|���{`�p҃h�H�0DFd� ��S P�� �X�G*��"E(�LqD;X�C��!C�� ����<��0�� �|�q��\��p@K �Ћ(0�����p�M9���7�!� d��� l�S�"��aF�X�D�C�"f#CXA�x�CNX�@!P��<F��d�D#�����,�[�Ap\�� � `ЀN���<�s�" ���<�h`F0;t�4�<O���<��I> L��*�����SR )@MC�� a , ah���-�,�恂(l��C0 M����N#�cR�(��8����A�� p�e�|���(@�#��U�@>�q`�!P��1Pb�����,D� i�8�@b�A �X�7 ��b 'p� X�)0���#�h��P3@��� `h e�@(�ȣ,�>�!p/�G�RqZ����B�:���x�l���w�>���#P����#�6K�� F0:� o�(B���AH`ԡ W�B5��>��S���a8�9��X�>dbL�@?� ���C�@&��EX T H��|� ��7l D�MY"��!쉁h�G��@�?�`��>�8p��B�$�R�B H0��`}�h��UHa� �7X�d��(�,������⡁ � � $"(��>Ɛxa=�C*�a�8�+���L0!^��:��_L����j����9f1�"����<���@b��6��>�������@MxGVP>�@8��L�=�1�O���#��8�� 0H!�`A6DЋz,���X`P�8�30���耸h;��C���BЃ;xa>hB���@��*�� ?,�yH�&�F���2��R�h�.�@�'�*`��a�ai�@>����r H,������#�������%LBS��@�#`�؈2p�L�a &�B*R ��!�(�P N�� ��(p�q�!^����PR��U�8�|��U�8��$�dX�"!�Y�b R�F3H��� ��!5��3@V�#�&��=� O�B>j1�'0� p�#�a���r(@<|�E���(��!G?�" x���>�' �0�3X�0����H#��.��!<���R� d��&Vᅩ��~��"�� #��x@(@S�j@A��40 >�`�`��-8��^�ڥE/��1��� ,�:h�( �1d��`�>�$��@�q`�K�(|�,�� �3t����.:� ���ā�p|� =ȃ.z� �h�4`���in�F|�"hA�� `{x��Q x��P� �1�}$�����)�u��6���V``;�fd@��=R@�H��,�ю<� �2��T�Hn�4"���*�0n�`=�r0X 8';��r.��H)���%0�^��@�`9�]<E�Y����,`w� t�x�1� �p e� p``�8p>p[0S��� &���P�0F��p�v@��@��!�pD7G�0��"p$M�@>���� �>�H��X��:���p��'���G�#��� c0��2�p7������� � f 8 ��P��e��7p��=�o�Q�Q)�pN�� ����z�x`�&�� ��� �P�4p��`:`�@O@ )p��� 7f�^P %`i�@@a����p]4 S �0�x�B��� ��2BB�:� ��V���o[�'�DP'`����U��0����M�p���6P� ��K@3�0����P�`��0� ������P Y y0��"L�xp���P VP6n���8 W� �)�P�D��B� ��2�f�O�;@ 0o�0p�� P�P �k��]p����� q`% ���G�"��-��0�0��p5`�-�> �4�uP P�P���p� 0�w V@[����p @`@ �eP>��N ��`�K0w�O���P�_��6` %@���p����e�$p�P`�� ���P �� ʀ�P�>�$p� 5��w���� H"� |� ���� � %P$P �`��p ������3�b�"�ɰ ����ڰ��'0��ܠa��7���.A������^� op&2$P>Y@�1'"`Y�V���pN0R���V�`-0 ߖ�P�K �� �� `��`�j�9p;P^@ �ʐ����PB��d`)` P��Y@s�60 FP P^��6��("p���� 6"W�X�dI�~� ߰A��J�`K>pp@�v���� 9�0 bpO���PT` ���0٠ �����(`-� �c`�� � pTj�� ^p@P�iA�L@�pS�p���p�6A�W� ��7 ���gp�� ;@ APp��;p��_i@W@�l� a�.��� � `t` l`@7`y0 �� z�p �0��pO��h�T ��@{0IP/P�?��`�H��e��e ^�0;�"��sP��G`.P@V�6�z���b|�V8p�p��c� Ɛ �Y0� S0K� ���&`c� [0ӰQ�`���0 �P ڻJ���H`~�6� 4�>�� �@8�`8�>�F��\� P:PP Pr`�0� +P ��2@�0� ET�J���� ~��0�� F��b� �0��0]`H@�@�� ��p���ģ����`{�{0 � m�A};p@�jp���F��-pR� i�� ��l���q�.�^p�b�)�uJP4ppL2�I0,0�"�spKp}pX�@�v`Op?����� Y��"��P ��-������r�����B�z� �e�� .� f ͐/P (�)��p<� �`r�� ��+=p #��G��`IP��� Z�F��PG��������`D���c��f,����� p ��= �Z�p�<k��N <�k^�6p��x��@�E��G�� S0� �F[ bpv@l)��[0��2�=i @�� ��(����2�p>` �� <T0���1P��|��p����z ����p��Fi� �7��<�pM L���$m�<b@ �p7"0L�x�� OP��i�m0�0������mY �`q`!;b� ��O`g���R���0� �7z@0I��a.P�� ��2�&�`�@�`���!�0-k P@���9��y���A@ q09 {��@�a� � ^��pfP �� ��7P@�� p^���x� ���p�)z�d A���P� /0� ��������wP�C�G�����E� �P����0mb@A0��Ԁ wP >� p�p"��# B��@? G�b��;Pi`#�aL8�L�1� z0Yp=�.0<m��pa�E7� ��ˠ �p������wpx��P�P$�N���\p�J`АS u�����8�ȉY��p�S%�X�{�`��`� �`m7���^c���Q�"�@�P�J ��`� ��W(`�� ~S` ��ٰzp@�V���Pn5P���� #�ɠ$(NP�[�07��S�����\����2��`��<`@SQ � W`O��y`�S� ��;�� 4� �`��t� �P��`�P���) �`��0���0W9~]�B�@�LQ8�@&gdg�-/�(,8rG�"� ��B�u��у�'�UI�ȷ#@� t�40`��zD�x��_�=Lx�s4���8�7h��O�JD��!�K��`@�&Z,�Hq��� ��X� � @���\3D8�K�>V$��Дj�F��g@��%y05(��\�en���MZ�.=�L�V@ �8(f�s�����BA�B�G���-�`@�6�,h#���(�*D ɇ&rp��R(x`�_������B)1$��A�A� �E���"�ƀ+FXņEvx^2�"�*�@ �I�3�ig�X��#hh`L��"��J�a d�dp�� !�?.8��� ��D�Wl``�'�3z�#.H�`�A<�9��f � ��أ� 胀�h��w�0@� h�.D�����A�W ��o*Ha�/�i�'�l48��,��� 2 :�S4!�,� B�#�P�Z��Pd;D�G�$�v�Af���|���� G8�������Dn�njP00a�%���F��fh�lژ"Al�e|�Q�y���1� d�I��|���L9nj�'HH�+\�A���`8((�9@����A�>�y�/@Y �,pG*b��@HD��H�ѧA���L�F'�h���ǂL�������X`� ���(E4�2��x(�,�hcx8a�:�G����cW��f�zXb�>����<�����Dgx� ��`0�� Zx��� A�С��@���/�P�?�*��1>h�<D��i��%�(8��a �D�z�c�x��d8tp��[��cM������\��%.h(�<!���4|��R���Є;�p�=��8>�$�?�B�@�&��wi�7j� #<�<(�HІBP���P#D�����ALC��Z`<�p�� g@� �h�?H�O� ���`���B�"@�yl`m<�� 7a�� �p1\ :�B�nh��8�q6�!7p���7�=PB��#�� !��-��l(G#�!�@I�NA /�`Lx��� � �p�}�b +@/ �4�_� :p�$���7�0���� ��P�rp�b ��P�X`�@!@1܃�B�Ax�c � � `�x,� �D0�|���D( �JT�쐄H��\�b���F�P���0@� (BVo0@���#����B�တ`��(� :�w(��8 Xp�4@,�� H� ` L`�a�{��P0� �)$ �C;�+����*P!�$���ȇ(�`/,�`@;ځ�@�0�#N�!D���@h��8�c�H��@��C61��VM ��vx`h�;�0�T�@!j� ���pF*.�w�` ~��R �L���[;� ���A�6,��0 0�*�"�XB�A�&X� 8�� a���0hZ�b^���`� ,� ���,�� s����"4�����q� #"pC � �@+��*j��[��Xr�����@��(�cKD�����#�X$�����{�� � �\�0�&�`5D�:`5<(�I�!�x'ЎX�tx���O0�Ct@�&@v��u�|��PP� `>� ֝�U(�9v�6����. ��2�������,"U�� ��d@"�C2�` �a�`G P�y��hD!� �7�aVI�p�ȣ �%V�#�`�`�,ʝrx�n�/���G/�1aX���}�a��h�;�V� <���}��$��6�@{�>4p��-#`HP��#�� Љ�.�3�1�F�c {��& �H�#�ф7@��br��(� !��&*�[�t�,��@U��$\L����8 �6�u���� t�(�8Zq0� z �1)h2�) 9�����8<u'$#�pv(p�y�!8�*��PrX��� ��Pb��p0@���|c�G�B�8���,vxAT8@4 3`( Ї<P��,P����h��`)P�Ѐ"*H�h�U8b>�5r��#y @�+�� ѸX� h`i0 ��L��8HH�9)���Q@8�'��!Ȕ'��X ����EȄU��zȀ��8�F�K��o�W�=��o��p�0�1�&ԀF��eM�=h�8X�|8F�����C�J���w���Cx'�M�jсZ�xw��D��r���[�� p���nӀ ؇1H>}P%��O�[��=��(` �w8�0�h}p���b���J�9x�7�0��P @JȆ=�{� ЃKH�(f8�5P�o��%�K�<b��i�Hx��>h� =��[�|�h��2� �=('�/=@wx. �y�P�3p0�H�4�X�wX8px'� ��$`)�(1�,���!�p/�?ȅ�8���Ʌh����� "����x�S��P��C��[`��x(�r�P�n|h��(� �Nh0f8���f��28�XN(`�xp�0�%�5�|(F�H pZ��)�SH�]7#P��)�wX�Z@�sȄX�d��%xw`�ЀP��6�`�=G@�z���%��� 4p@�"h� H�h|�p�-�)�=@�'؇xhCp,�??��mH�+@�%�;h�P]H`+H�?��ǩ����a��Pv����]��C�8�o��1��>��z`�E6�(����%P�xx1M��VہLX�@�x0�H�7��g�@�(?!��v��/x����mc�38WЄ�4��X���� �8�X���q��`vp�@��Hh#}h�gP������N8�Z�@���?��p$�pVH P{8��(�B@���&=�B`U�xh&�����n� Ȃ:Ȇ�� �Ȃ�� ��<`��P��y�8�����(:�H��GX�� W�} �h&8��&(�8�CP����ph��]��(�6��:��6P�h����&�_� �JXE����,H��L���A00� �=�/J0�����0x��,�-�^�vS`�*��U�J�w�`�XE���I���0�y8 ��p�Є2��<`.X�p�kȂ߫'X�18@H�!hv�U�� O�b�[�b0�P0g���!Hۻ�:p�#jHF���0�i��l؆8(/0x��e�y�p��(�r��0��x�,�(mXR��l`��`��x�Z�%p�+��E��Ȁx�s�8@�q�Ѐx�P V}�E�*�, ��x�Zg��x� �G��Z0b]a�y������{��`��Np�-�����P�<Ѐ;��a�`�3H=h�S��aH�E�0@u�*x�!�v@�6p+x+�T��3x�x ��!�1x�v���88� �О8 �y8Yp�I�A0�d��h7<ha�<� �T eH��@�_Y�D�{F��@�+_0��9��,��&�x )`�2��Z4��S�������w�8� 8�Nt1�}8��T|8dh��3�F�����J8�8�5��!0�+q�X�6�r0�f���<�a8h���\�D�p�x�X�G,��e�h�"��8��4��H�K��C �>�Y(�-p�% �8�!��z�}ȇ��}���(=px2�K9824 ���c�wЇ&��Yx ����P���}I�Dx�[�.@&�+80�v`;@��N�|�P�gp�*�H�8Q�/��B`?��2x=ܵ�l�fh�%X� yh7����ys+�at��[�`�K` �p��l�/�|\`�#ȇ"8:KHR�-`�9�{��+��1hH�=p^8�� �(�>(�@@0� ��T���4�����F0� �%�W��?ȁ)�9��\ �<�!�U����z�e- ��&?��4H��W�� 5X�����P��Y�+�!L��X� �FX�#pQ(?�<hZ3[P�ȃ!2_�S+Ѐ03`�u�&�EM�mX���!�K$hD/p�Upp�v�@��h�gۀ"��lx�10Tp �p�5Ѓ�#��0&@P$��b��.�=��v�T�I��c)��J�H#ȀK�|H��9h�ː��`�a�i� ���m��}8�g��9x9�*�����_����,`V�/��(�W��:��{8<�h!�<oȄ�z��gH7X�A,P�+Ȁ��R��:�xQ K����(�|� -8�R�]P'PX*� ��P��%(�+�P� �U� ��'��'�E��<���U�H^�R�>� ��.���<�,�{��Px�7ȀG�Tf(#<�"ЁDh�8�T0��,��@�B����0f��C(M�ȁ$��LH�6(]8�/� Ѐ��R� ��S� ��w�����[�? z@�x�7�$� �`���]�P4ȁ h�v`�Lv���k0�0�0��H�z�&��N0��y����%�+���O��H`�z�*��'�`P`�9~WV���P@Q�(w`�ÄH������jX� 0�6`��(E�p'@Q0x8 `�x~�8!Z1�R �B ���Â�� x����]D6:$��JN&@l!� �)n\�%�vAÍ&�1�<"2��X�#y@�1i"'yR4��Q!�m��A�2`�Zy�r�[0#S\�Hd#�F�p� �Z�N]��h��;0t`Y�c &Q����-�8�rp����c5� �s F9�h�цđ;3eU�AEO�a6��p�H+|$�8;�9k\̰ʇ+�����ɞa&�ip��xT9`�F�Ho"E#�%��Y�����G �lZ���/l�@� �3�/���rH 8����(Q�K4�� �T��$d �e�G=j̰�E��8p� >��5�SH0 �P(��{d��t��8J+�@P5$A�T\��$Q�=�Ȑ�C�� =@2.H2�?(�A� �-k�0�&�S�>�#E<P@�'��0�)A��w�}����0�Y�SI�@`n� �����a�A?j��Cq,Q�p�+�x�00@��C"|@*�Ԓ�(��c�8�a >@�%��F ��^�a>�t���PF0D�F�, H(c�9� 9�1���D�1�)��G= $ �$��$hlO r� J$mH��d�� �jPH9\��̤���"xs�H�9��>;�s�δR�#�J%�8c�<C�C�7C��L� A�]�� ���! �,�1�7�s�3�H�� v���h���Q�)���%܃�`hn�N�q�<FD$�cِS�.4�C�R��%\p%���G�0H);8c����uHCJ;��7��r�l������ؠS��=,��v��o\�����XD�N; (�� Ag�`s��p��`\x�B �Db���0�,����!�`%�xB-���h�H��!��X���!� P A���fP`8��2`��� ��!���_8�V!z(��@��"�8|� �8�A!&wZ�t8 N��_<��x�LC;� PP�� %x�S�P�3�"���Zȣ�Z0�4��Sx�B����h���хT,B��A�0�(P�� ��� �� vL ah�4~1(d {(��x�����v0�X�a���4N�)��hDv�A|��B��|(c�pG��d�s�! ����ؑ�6�@���q2 �����`&P�����\x�79�)���!W 62 �;DcH�*�0� p�T�XD��p���?L�x�f0�w� 0�r��xx(9xC4 �x�#�x��P�@@�)� Ѐ�0l0>�A�����%4!8����b �>`1�^�A�V g��x@H�Q�(�������Cs� � D#b��0��^4©l���@��$T�@"ΰ�04q�G�����8������; Ix�a �@�q�#��Bp�^08�BT #.j /��x��7"!�z``���,�[�bS�Ln�?�A�x�:@�[D� �C"�VT� ��p�c�Bl{x�>�P�d<�<s����@;@�t�H��N0�9 �Dp! �>0�D8 h@��[\��ZЪ�#(:�� bH��@�9D��X���wL�GEr� X@�xGla-f�c���v(b�t� tB��$�x@Ȁ2�0�J@� ���<���+�6�A�����`�>x�A���o6p��) !�8�0p�������М,4Z8�`����Їv�NX�Y`A� �D~����l`1x�P�=�"N,@��B��t�2 /("^x�t��G@YhA*�_^@BƠ|�A�&Ђ|��@B-Π�Wl��<�����Ѓр ��� �E�C 0A 4$�.�L�P` ~�l 4����)Al�pF8x t�"P�P �Ф�6l@��$�� `En�p�I<@A Tp�آѸ�0|��8�"V(�ǐ5D x�CNp��l���T��b` feF(R@����FG�@ �C� ��� �`�;<Y�k�9h��v�a&0���\���� A �<���-�M��0�0<@*�!h�>H+@A4@"�@��<t���>H@ 4@\�.@)�܃| @/���B�]����A���C|�5D���C4�������#��@<x�.� H���C;$�^)<�2̃hBx,�/(��=$��0T ȃw��!�@��x/\�=D,� �A.@ ��=,A�H*��|B 0T��@��q��4�<�� �>�C�44@?P�d@ $ ����&���C�"�;��Y�;�� ?�!�� ��<x���B��zԃ;ЂP�ȁCe@HC�A ��,PBW�7��x`@"@<��B%��xA@���6��A�B5<*�i� h�"�@t�� `�!L�pF��+5�;�%��TA�HCd�>p��=�@5`H�0@'8���=4��B���DB0� d�/ Bd�4�C�D�)98�<��h��l>�u�<�B�\@ �=���B��@$��@�q�B��A6��<P�0x_5�v�<@�L�3�B!�Bu� 0�����0�(��2l� ��CL�p�)PA!\���<8@0�@�"�A<�*,�@�����#��0@!<�A4�*��<�6�B��6DB�m�A(d�p<���4@d�*���Ad�!̃�p@@�$��6D ���\@*�B<X�lX�"���&0*��X̓�A�0�`b��m@ @�A��l�<<�C|�=��;DBx�%�6��$�1,A)8E�� �L@'��A<A0�C?���0d��,�(D@t@�C4C��A`5���L�%�>$��A(�/����@BT�<�O,�@ � H���/h��>����\@�@���6�L���`�(4�<�L�PCXx����0@?�C(Pi0�<���2=��K-=X�q�'̃%T4(4�x8@�� ���&XBp�)< �p�<H�"�$�$�P@�Bl�t �@ �X�>�}�.d�tl�\|���0A� <&�"�����@����4��(�3@ȁ|�3�@x><��������4 \A��'dC.(�2�=$���<܃!ăd��A��7���<�6 � �t�����@*���p8B�� l�!��h�|@���&���B!<��3�<Ԃ:h���<8$@�@6�0K-�y��\��F@ԁ�0�@dC�f�3��B���C.��8��p�AA��60 �<� ��<�0�=�2��0�@�X,1�@AP�2�8��C>�@<�B=�-l]d�<C+4� �$���;�B$��$� �LB����AH�!��X����@���,�h�D�+�Ab�E���d��� ��@C�"��>��3�x� �L W�$@ �dpE݀�i�<�� � ���C @P��R �!PA6����A&�B0����<����tA�>A�0�B\�$>�A#��h��� hB��/���7��<�=4H����+�A���@�]1t���*!�Cא�>�n)��^@(��p>d�0�$�B�.8CP�<A6��3<h.<L������|��3�|C (�A&p4<�<� �\�<T��@/4>,�L<�=�\f@8��5�I`���!|)8 �t;<��@�>��;��� 8ؚt���$���h@t�<�t�4�<�E���@8X$4Ib�.�A0����d�Hqd���c�C�@���l�<0�� <��=x�@��)<A|C�AE�,��� Dm7��>���� @�.,���%L��"|@�A��-@��&�9�(H� � ���?�C�3@�A< @D@�C �fЃd$���v���������,@����F�t�����F� �C;�D� EcC ��`\"���<(�/A*<�)��\|) �C�9�/,�A�4TAe�50�"�!�@(������,�3��dA8� � X�T��(� ����n�4P�|>��;܁`BR~�p� �,��\4,A$�l��;�^<-X���*��r���$�<0���C ������(E�@,h@�|@!<��x���W�(@*P�B-H;� 0�@lA Ԃ/�" �� �;��'l��Ղ�-��,��ӂ$)p/��0�$� �C>�.@B3� '�0��CL�D���;���&��7-��;$�>P�*���CP@��C),�;��ԃP5<�i�@B,�H�<�P�0pA $�5|C���ā�iC8a5�@�B���-��&xP�;|@%@���-Ѐ�1A(�v.�A��<�A���%�����-�=h1�B!������ �(7�$�;�<0��l��|�T@$�,�S�� $�'��J<$3P.<:�p<����?�@����L�A$܀`/.��dB6��X�|�<��#l��4\��*���]l�;h�0�. ��'4 ̃C�-8���0�3��Ђ��T�?��6İT����N/��<L�`�l�l�>�>ԁ�A@U.Tȍ2�8��I�y�x�@F �9����,=��1H�'�RP��M� ���c��؞y+ǝ� ���)�x��"FY𧏍�\~�p���˼+�<D���zD� Ea�FP`t��Y�Ң���F ?�ېA�*xq�Qڰaۅf� "��_��@���0|����A|��0�<G�H�`���]��YZp�\��u@f��%tvRF�G���2�a�!��=Z�d��IH���8 Z�����\ �mX�<�q�'�ŋh@�`�1��" ����� hN�g� *�b b2�f x$8D��9f��m�g�(��!y��0X�\�AMH���+�şL(=fq�;�`y"�1�X$�i�(>�Æ::��lL�e3|��|NP`�#�`�0�M��5ؑG� z���wPȡ��Hěk䰂|��/|�'�%,�A��8��^� ��-Ҡ"�{���D����]h8yR`� &��E�4x�m��G "�#�6^���������J�$ ��OlX�w(��>���G��DV4� y��E�`�� R�x�I G�x���{�pȀ$.���z�g�!>`��LV�N������$����y\���P�C�&9@�v*���%�q�2>pf�@� ��O.�D�H蠎a��#2ɧ�2���Fi�:�i�N�e1�B���a� (���$�y*�B~�I��Q���&����E62X \8H"#@�g��Ia�F�� v�G�K`%7|b�2ؑd fj���,\��}��@����Y`���X�) E�Z�+D9` M@��;�q�Ҁg�|"�ddp /��-*@��pG�Њ>\A���N0J���� �� �@�hG " X�0(@�����Z0y�`&� ^��o����1���bD<VA�Xx 0�p1�D�ш#�ApX�*$�vܣ�`q�.w�G��9��hGH�w�A�[����#� ��B� �I� � , �B�����)�A \��@8�)�����*�$ �A"��a��0�`�a|�ɸ�GzI����A>�Јx�C8p��a�c�GP��#�� (p� F�w,���4p���`$�#��@>.��@��E�@�p�� ��0*�����,\ `�p-1@��E @���c^��|��YD�u`� ����A't@M|��X�b�AE ��E?�@;艏!X@ X@*^І'H��)�\ �x�@�}� 4��7���,������}�!)��&v�~D]���q�B0 ��\!��@B$rp������l@i�p��u@e��>�A(�?8H�\C �q h�P���T\!�+�&��D�t��,���**�3���z�'$� -��A <���:�q �#m���@X���x�>�"Rp��&� �"&�+|���B,�*�2���$� ��� �Kx��c)��@C<4a !��Vq |�h�.p P�!-6��(���c����qP�����>�'8� ��`1*4`7��p�PH�"�d0� ��3Lq'��"��3v��3��(�-��j� ��J.<B��t���C�� (p�$�p�@�;�/��`�!����&>� z8@��� ��:�H��1��!�Ȇ/p0!� � ��A|x��w��^0����� �h�<""?���hE|@o@ ;p;� /��U����Yt�$L�����8�>*� ^| ��A�Q;H����� $"8P(�;�C��.�`�3@ tHD���L��x�>D@ a�a��(���4 �-��!z���)�(xC� h@N�XE.z�p� ��������C�� XpA�䑁 p���RP�y�`�C)��2�� 0�|��q`@�Yx� nq�H������V��GA�.x�+�B��9p��@ ���\�����#x���$I� ��`� �a �X�� �`� ��P�*!D`L��!���(`,a�`�N(@�a�� L�h]6@���@a���V�� (� X�v�� F���� x�����A����#\�& ��$����n� ��ʮ0���z�nbl$�@!�@�`� !l�a��4A�`Z@�Aԁ\a@ �������`�a �v � �!^J � �� �N�N&�d� ��������A �xW���� � v�p��`�B��q��P P A�aBA�@����@�`�| ta<�u�ah�R �� �`4���&X` �@zA�G���@`��@Z� � 2��V@ V`���*@ ��\��`��&�±>B��az@�V�j��`n�>� ����XA�@�@��`����!��܁�A���)@ �v�`��!n |�8�P��p�����ʀ� z�o p�@��a�r��`b`����'� �p�@��F���A�� �!D|��!������`�@�8��4!� z���`�� �@�al�����*�^ v��d $�����`r�8�Bҡ *)��V` �!�@ӁP���T`�~NO�`�������]�aB�z��\A�a � �A���n�8���VL!����zA�!��&[�l�ʀ����!��}�� qrA2`�A���@�h���a �D Sa N���&`@ X��!@�,X��@����� n 4a(>�!� �`�!4A� ��zC� �A"!� � �� ���Za��ހD�(P��N���fD�Ja� MI�> X���`�@ ��r�n��N� ��n����A �����`� ������(\�(@&���z���T��8��`���X�D��Q$��` f!@ d���D�@���a�:z� �� h��� ���� �(�����P` @a�H�|a����@��l��a��b ����a��<av���"���p�D�$�� �`�� ���`�D �@�a:�~�Ta�`n ���@��� & @ ��,`ްxa ��-�AT D� p� ����d�Z��A�4a. ����8X/�5�@ . �h x!B�|��������` � � �!�@�Q�4a�A�`` ހt�,&@B�>��T����R���A�`g"`@<�h@ tf� .@ �` �HN �v�� r�&���l�� p�T��`�`N��D`D��a� n��,��&�@���4�L`h�&�*� ~� &���%����$`���`�8��!$0h���`�A�� ����R�b��d� �!���@�ࠟn�H��`�5�����:������� ���bA*`� R�(@@ d@�|` R��)8�0���@!.@\�������`�a�h�B��@8 g�t�J@ �N!����@H �D���Z@�n �����^I �`@^� $�,a>!����z� �$ށv V� \��� :'N`�!x��>��|�@ ��[�����h�"@6�dl�, >`�tD���D�@�h� @�& ��X��" �6v� �� "����@a l8"��!x��Ah�&a����aLa�I���@J���8aD�� ��@6��!h�����M� �2@���Aՠ�&�,�n���cZAra b�@V!�.xAdX�:F���`a�@��z�xg�n��@����50��6q��d��@p�h� ha $�"!TA� L!��`�@>@"�f ���`(@��f6�h�P�� �u�`�bn`��%,!B l� H����`�` r�ạa�A����aL�Z����� �/�@x<��l ����l��` �l`� $�`2 �`�r��`���a��` �� ��4���a����>�� ��& �>|@��� �P`t�4�@2��i�h=S���f``�v�$� x���@t`y3@�+(`Рbq �@2���h�6�b��!^L� ��|`,���N �@D�x�/@�2���ظa$�4�*�n�|��� �᧲��d�j�! A����@�(�� 2��#`����Yx \����@�X�a܁?~��l�3;�� �` ���@ ��|n�� !.�Һ���`�a?�@GW �`.^�@��d`f�d�����h�t�� \�F`������ �`vA\( ������J����@8�f���V�Cb�./g��� �4:��y�J��HT�2��:Hi�!��P�JDx=Y��M�Y��X��J�'���7A=q�C� "i`�^��1 T�%�t�h@�VI)��b#�`(�J����'QQ�xzЂB�j��l0`O��<�H�0�8�0�ѐ�B�_n�8s<�l�`G�~l��a�$�=���`� ��p�F�#;��C�e �2O�-��.w��1d�U�v?N�۰%K��i`e�)N��p#�6K�8�C�D�X�8P��#�;D0D�xH����Cp��=|���`��آ 7O`�C �,p �D2!�`��Ȑ�PO$�=��dG� Gs��!Ci;�!�^�"��C�zT@�`�;�ЀE��0�@p@#{4 � :��Zh0��0�;Y���2<�@�� \�< ��A9�# <�� 0���S�x�C��d�C\@�M4qD���Jg�B!�p2s p�$(p�'�`�u A���O�sA�T�A����A<N�1��A@ |D�`�� �<=|��<�D���G�p�6��*?�@�=)�K@��Y|C�,�=h0p�(=dq����A��>��Gȳ�*i�j8�4bh"�"�>ܴ2�se�2L)x�@�U�A����y�)����a 'b��YL"�<�$A�)^BE$��B;3I�L 2T��e$�H<�1A0�&"� �0��58��� (�v�9�q@�PP/w���&L��N�A�h������$�AWl!/̔�t0�0��p�$�x!�'����<�� =P���2�RP5����܁�n���� L��g��C�q ��7X��;�aW��� �&Rl��h�L!�,�`���!p��Y,Cq�00��`�&�;d@}P��0�0`�0�HA?<�-p3��D��W@�dp�.h��<��\B����xL Y��$"�P#� >�v0�C��`W�!R�1���`��<8��ԣ�B>��0� GЀ@A/�$>����#�aH�� �|���5��$�#LD�� �c�C<���{��<�0����A\��A��� ?!� �?�`u� ��4�Ip�@,02h@$��@�À����8@ �0R�� �@�-j���}�C�xg4��l�ȁ�y�����lЅL��;�!������������;H�Od@�H�Q���r�0n��OF0�T܂<Cj� 3a"h�2� ��;HD��<���r�|#9��`"{��1�aS�F|�.� ���h ��_�j�! �E) ��# �p���2<C@B� ��������K� n`�� d��� xЃ6�M�ء�9�!>0�2B� U�AX�?�d ��!� 9�A�(G��?�B]�@��7�����p������/!�r<"�yX@Hx�:��9� ��A*�b th�v�̴��GF�tx��%�\��T �o a�����<�����#x�8�6�0��3�BZ1 d@�G#�0�'٠:`��4�#><�W��8�p|�"��@0{�Ch@;�`\!}�X� 6��� ���� �02� \`���+�'<�!��@7��l��5�ІE���N�C��Vh@��+�,(�@�L���p@�|P�0Z�!��ZF>P�E$�����z4�'P@���D�`�dP`�h�ʰ�)��8���s0�3*�� `��[��(�|�����^���PE,`�|�E7x6\@ �@;R��Dp9H�lqP!(�~�X�` ����*T�ګ�.� �������|�cl0A<T�w��L`�%��TCX�x�V��(��B�@=lt�ܣ�� ���H�ޠ�`���w5��>4�4���B��E`�V��$`ńF�A���-���{��7�-�`L��0@;�i�� 2�G&�m'pA� � �p��L�����`x�w��P+�k� �>�D����f�6�%�$� �P 4�F@(�D@=0 wu۠��аP�`�*�Y�PE �P ��O e�`��E�8��-����O �B@�` �p@���0��݀P�c01�p� pU�G�z�K@%A��Ppz` H�c��cPP^�M�� �`@@@��v��M� ��� ��"w ��` ��P3����@;�cPt0ux >��� ��ʀ�090A�pI�o@֠ ^� � b�����7������n0{fP���V`"0����A0���`Y�����$��P'Wp8�2p�@0 �p�p�I0r"p�p$����B�9P��73�7�������PĐ��� R�)��d���g��P4�^@��I ��L�q09pK` i� ���P"� �!p���� ��@g�7�hp��pe` �pv 8�in���R@`�H�� wp� m��)`� ��W�P����~p��X s�`�;�*���S��a��T��� ��{�0�1f� �����L�6�=�� p� !�\��P|f��3� Kp ^@i�`�h����"@�p`�@M0g�׃��@��%� u �� f]�=`�U��6`��&�=0@R�e9@���P�f��0o�z��~--��|�Tp��`I��m`KP�;wOp�eV��� uS5��pP p$�`�>�� 4�0���_�Ah �� � G� Ð�0P��� p�o� ��z� 6��:Sp :�7p�@~����!v��pRp0� ����q�r�R�20-`& p�� �a��0 �� �A����`�0&�G�;�;��@v�z�~@�{�t�P% ��� �@f��`� [@ {��Ev�� 3���(0j ����P��W�p'P p:��p� ���`C�)@6` �pYp~�`�0ذ$0�"'.@ z �.�"O�{0������L� >� 4@����<�4b @J� @u ���@ �.��:��pn�@�Z0��� �K�����@�)�� � {p�`F�Bp:!���p>� ��O 0 �� $ ��� PT�F)�@P K!�@�P��@/6��@`?� ��9'�0����p ~`Y` B �� a `��!��P>���=p���p��Rp����O�@�`B@��K�9�;|p !ppA� 0pL� w�4��@����"��PAp"�0>@?�!@^���PO���� ��*�e�;0 ` p\� `��q`Vd�"pP5@U�� �@�@�`:@ r�B@#� \�z� %�npjEt� �P d�@3��4|�p�`��P}�J1�Qz���G*���!p �G;$�$p��4� ��17�t�S�����G/z� K�^�.���$h�r$�nX��a 60� � Ѡ�G � ���o�p^ :PF�VRP*���` X ��n�� �`O3�]���� �� �`=���{� �p�P[��B��@ � =s�;���Ы� s�g�����@� �S���0X�^0�u@���p�F�� D\0��� �0�v,9�|���G��H0Vp1%@�p>��� P �����5`Ere29�����a/PY�X���P0w�9��\c�F@>^`M [@�0 �6BPP�.@��0 ��~��3` �cpo�u0�� ` h��y�pK����R`Gp| ;�'�r����@�}a R���������9��� �g`�0ؠ ų�d2� F� -H�08P*0��} S ��V��\p;P(� e�[ °��+i� �p@��P���7y���4��p@��k�p@~)0�p'`(���Pnr0(����3����pu�f 5T:`"p��� s��@��Pf����p�"K�k� �����`u`�FP ��� @��`�0�B ��y(xLp��t�p ����Ы� c�;�8P 6��%y��| X0 7�S )0���^pF� {9�U�e��"� �Pk T0�8�ApT�f�Pp�P�0�� {� `��P]� ����d���0�P��p W� v3� �f�ˀ� � �%uM�r0 ��p��� �� �]pK�p��|� P�@V�l�������0a �@�s�� x ��^P z`ip F`~�qIX� <��p u����y ð����B%��b� �`�� �� p@U�pq��9��+���b�0%b�/s�L�`ŏ ��C�k6R���`̀ ��$�ƀC���a�ꈬ )p�A[�\ؑ��*@� ��R;�����+wB�c@�4� �" �n8�G� v���çNJ=+f���K�� �@)�R�-�SaL�o2�3�\���!��-����q6��@Kkc>P���N�BAR�ȗh�]��h��� h@*�0 KR��T���i�zZ�j��E��Xqp`�B����N����9� y�����!00"�9���DB�"�\qł@�����%h���=Z��4ɥ�{����'�� H�A�%�X��Gl��;���v��� �a��Q����!4��:�`�Ĺe� lȀ�Ĕ���A��d>h��#̈a3"ᣖ���ql��P.� =~ɣy�� �I��G(��D��J !��0B����q�n�D�|�I�,��C�"�g��� �V�x�ÀZ�bM<��� � �Q�� �A�5 ���:.X�V 9�����`�)��'�" ?�Ф 1� �1V��pp� |xE���&�0��*4��j�c��I�HZ�&9r��~Th'�&>��cR�f�C �Xŀ�F#J�e�t�����&k>Ѓw�g��� 9���>�xbO &�O� �8ŏ#�ოy���#��e�%�aGT|�Dž�Mp�g�=��% р� *��$�!Ayh��nct��G�� ��f� �IFl$����Ƌ@p�2B��ƀ����:��x2pc�|�CJ����R, � P�h�P9�0���5М�y&iI�`�>ZЃ|<`iX@��P� �8�&�Xc��A���e� ���8D�`IL� A &�z8`va��`��N`�,�V���` ��x<6�@|� ���P �@(��1�'LcAA���3�c,�0@�`�<�rp�3R �@�G;:��q�G�B.@�8` ���=|!֠�P#hA�\�Hd���(b ~P��p,8J��@�ȁ桁ID��h�"��Z|�@x�)<�w,���F t@&7��`��ޑ��c����` t`�H� �4 0��J`+a7�����x��C40�t�H�����#6X�� |��(��A�����J���B���7��#�N��743�b���`$:���&^����R`�X����@�D D���D���� � {��.P�x48�nЃD�a�X@ā�%�a�<>p�G<�@��H�E8aS��%�|H��(� ���������G8��Ѓ"x�� v�(X��[�D��v�'�4n�{0d��Ј��� ��ЃIP�Th2�K8�b5H�a�c��9 �h�@q��h�oh��Q&�b �@+��D�A��B���H�� �`�A�@&�@�0�^ȁ�p�0x��!�a�'�c�Dv����X@`@�0S�� ��t����{�:��00�!t���q�?�钇;��d���@f��, "�C� �*@"xF@�p��ء� �� "4�ex�,d�|@�@1�0�ppp����4�!��,���Pl�'��,�b�C^X�=�pwaa��t�)�����Q �BY�!��``�҃E�`��A4��<���@?2��W�Ѳ��`�#�A z�.��*����G?�Y�\�;(�4 ���6���� �"3`@( �p���G`�#z��#�`��c��$8�ee�\M̢�^��0!��C>fp�!���BĀ���j�C<�B �v�B30A��7A��/ؑ�{�#�d� �p�2�2�Aj@Y�k�E� v������H� �# �`��/��a��8�8��9L�=��N`u ���Vq �B,hA��,�S+"�4�"XB&��ġ� �+p�g��� ��_�B��`�*Pw(�Y�@XЏ �@�8��>��<��c�Y5 h0�Z`��x ��(���y�X�np0X���=��HhF��m�.w@{py؇1`�v� �x���Np��T�. �;�@�F({�f�=��[H���Q�6�2�p0�O8�tp��` �xЇ�'�:P�'p�p��Xx��# ��`�Y�x��� ����� p�)�x ��b�,ȁxH�[h��QXK��XЂ.`�1�>x6(P+x�[0GP���O0i�����#hp0�a� ���i`������s|X6�wxP���|X�+h�}P�G�`���6��{��F��|�p���x�F)��>�>( � �F�a����x -��F��P��3���B@((3�� �1�:���g��+�8�w�!>��3 �`�(P�|��)2V��o82 �{`X�<z�2��H��E��o(�s0/��;`�g|��q�� x Nt�9��Y8�T`|x�h�� �`�8�qb�`�<09���Ȁv �H�&�3���(��|ЀWȁ�e��v�Ђ��a8a8u�L(�L0�6H�2�+�:X�U�6�&8�̩;��'�0� 8OYȁBx��|x 0 ��i��ɛ!Pw���.`��8��PY�?���@Ȃ~P�H�aP��S0�.H�&�M�(Iy�:>�J�A8�w[1k�x�y�P��Py� e��e!x[p�,ah�`�$��(�{��}��p3��2�{�|��>�h�1̅8$��iāU|X�h�{��s�a�TE��p���x�x��38mXKЅ�� � �R��'��Ƭ�x�>8Ppx�[� X�(�<p�]ȃƂ�7��S�<����!�@�؆;�0����?�Y��x� �J�� p��9?��h�y,@�\Ѕ|�!�0�ȼ�h �R�#$hZ�9W8�� (�x� ��#,`�$�'� �#��3 �y x@����y� `h��`��&��`��_��'��� �5T`y X�����d(���D��4�*�{@U@�4p�f��e�'=80w�����8�J��x���=���I��{ �x��\`� x��x8y�&)b��� ��1x���H��[�yx��y�P�x��e� ��3�q��.`�d�.(�Y8n�h��p�,� ��x`(�R��x���PN�wX=��&H�X.p�b0S�%)�Y��#ҁ�{��P@�Q��,�&P`�H8��P��} �0@(9�&���5� � �D�'p ��&P�1 �}�}� I��4�{��7i����e��(�pʂ���X�j�6h�<�&�x�D�]���ȅkxm؇z`|��TH�}��B �|�� �!p� �p/�̥@�zȂء� �%�X�(:Hh�� ��g�>:dy�,;�!`� P�x�w�$r�J��hN�x���`M��F���M��*<Є!�� 0聍�&�8� 8�8Fh hy�8�,`��:9*BحQ�a` ��4�.��#��zh5`Q�vX���%9�+h�Yh�K�$��e�%���U��P�5=&�g��� �~@y0����.�Sx� ���#�1NH���x�y�~�2pHX�x[ah���J8[ �=�`�;�����%X�m(�]�B]��9�=�+h� ����� h�xH�p�Cp�;�~�7I�0Nȃo�#h��`�;@�8��y9�m��z���\Hm��%xy(%H|0 �:�d�x��;8�B�����b�x��u��0Q��3XZ(+(�L� I����H�8�[��0�00�%�� �2x�|��\Z�86x�g�[@�)x�-��:�F@�y��f)�_��`�k�?�S��Qz�a��)8x�Y�.P��5 �+؆8x�I8�� ����oH�3X�`h�H�%�:ȃ=��2>�*����.??C��'���P8�_Ѓw{�V(Z���%�0�H��:h� �+�H����$/0 Sp�X'x�$8�;x�0f�p� ��1���<��HȄZ8[8V�?p1P;hV@p,`�t���3�RP�Kp��l�<�!��_��<�? &��=�X�H� �p�3��E�-hH���8 H(+�(?�_p�n�����B@5*�/�/h!�"@�U�(��:@<������R��� ��i��%�;��4U��# �%�ǁEXOx, �8�M��\�+Q@�R0+p��l0tP)8�>�I; h��Oȁl��vU8`��p�h�p�X�#� � h�Ux^0���1h��=��H���7Ƃ`�+�6`�Ā�i���JK0� 8��B�@��7��E�`�8X�00&�F���=h�����9�K��,�GW��ܤ,h.@�'�n��}8$Є#HO�X�$�'��<�0Z��`���dGyܙ3OKz�̳�Fع3���r�ݘ2��$��yS�0R�(܅|�D��C!ß/L����Ƃ�h��郄��[% ��-I�u�q�1j �z�c w�*ث��� dH��7�P�1�I�,,�P�a�*��6�&$�(� AlXQԨO'�<mِ�=y'p��ń�|�� e�1_J�8P��G���7I�1b��`��T d��8F�Y@ �So�YO���#gv�\x��� 0��q�8U�@�b�� �V-қ!���/G����@��0G�CH >��.̸���)�$r��� �!<���������"�Q�,��pA0�|ӈ+{� � <".��C XD������������`�=�LA��l@�S̳HKPB��s�<:�E"L,�'��R/bx��A,R+/��N`��>���ю;<s>z��0��0G`���ࢇ'9,I��;��o� ��6��&������3P<���Tpf�$,X��=2�0LH�b� ���O$����<Ҁ�0O8�5t��Ą#>"4��K`R����E5�0p�XA��p�8�xAJt�}�0�UԲ�2�D(`���C4�\pD����x�>��Gē��p�8��0�$A$���NAA�<�@J�"��0�KLE�0@�:��=\p�l��<|����TБiā�8��e�J#8�GU����`{A����=�C�?�S�;��0� �̣�Ј2�<zB�4����'�A,�~���o,��'w�2E1,D����M �qA ������P����<)0P��3�0�n@�>�p8�A ���+���A�@2�����3x@xp��*T@����适��-0� �z�_�D�D�a�b�cY�A��� %�0�A��3vP���(�"��)�C��8P�v����1t� X�G?�1 P �'��8���Rp�;@��`���� �@���(�0 |��x�!b� 3��C �=�a 8@2� ���@� �p���D��=�� h'�Ax``L�BF��%�x���V��r�A10��g#l�;H0�|4�hE+� ��Sȅ=(�=$��`�� b�'������\� �hC��R� ��B-H�8&hA-L�p����(`T�c� 0Nt�[�6�cTa2��?T1�1,X�p�<�>����XB)@x|�9�� p���0���28�w��"��u��9 O���B)�yd!�H�� �xpW8�`E0���A8|p�D�C�����;H���opCL(��� >�� �q�% 6X�t�`�-��'B��a����(�/�#P�<�� ��(%�1y@ �;�@9�l��,`p�g�A`@���, 5��Tt�o<#e`�p0��=��)l���,t�8�!���ap�<L!� ��< ��f��;X8��H�@/�P�y0?���� o�P F� 8�m(�����31y�`F��!18x�wh� 8�x���XE��HE����c HA0���#��<���tc��,�F4!���(�{�7�A � ������p�_Xbv�Np�DB^�R� h ��:�٠(p�A�����(�m���`E<�q��s@�P (�]�*������qy<CN��@�I�"SH��R���y���dT�)�$pF�E�O�0�m�;4"x���B@�@�(���C`#�؇�p}�\�Bhk5��zX<�/���E������ � gpu�B#*0�$q�Ȁ �6D@�A0r��,h@�8�6!"�"x�)�7�����B�< ��\`(O��&T����``�B�d���E,�T�u�C\p 0�G �^a� *��@8�y �q��R� �!ox�;��,L@���@3@k�E�Q��bX0�'p#*P�=�@�=�@ �.��h�p��dI�; (�3|�"��&�!��+��0���7h<�3|� ���� �9���� ��*<��� �<p����L`�� ��5$�4HB |�F�L--����\@������ ��=���@T�� 8@��C<,A8;x#\��B:�Bx܃h����G�<tO&ȁ5��CT�<�/���m�<�B`���%'�{|(�P�)� �?�-@��C,��-��h-�&X�4�-P��)��>����A$`A l@�%h���A(�l������A&��6�!@��d�x���%8���C`�8�F�@�A:��7܀$|�$��`� ��.����d�/@$0D�=�@x�H|Y!��=� �_� tc !�B%�)p���H�;D �A\�-�BDBLA��4�.PT���t4��)�B&�@'�C,��h�����`��C=�0��$��/���H�l�D�h�;0D!x�p1d�;(��4�L�<̃,3,�>��@@,�� ����@�C�B(50�h�%PC�Cx��̂��4�<4@�h@-0�<B,;<)����6�><\!;�p�tM\R=T@�+��-p�!P'4@����.�B��>��4��T��W\�P�p@Ȁ���1��@(��<����@"����;��<�'�����j��T#8GL�H��;����!<����� ��#C&P���;�! p@�C0��14@\A$H�|'D��|t�5�����3���B)X��/�#<A(��@C�h�`$(7`����|�<p;�7��hBx>@���#���*$>AHP.��7L�p�0��*��;܃p@�$�8>����@����X�l`/J��L�@,�$�BK�Z�`�#,A2������C� �A< �xA�����@�&�2�\B�.@D@>�����-���d�<�,L_d���B�<��}����3��"@x� �@ ����A#���C?��@/��P�@,T� 4� �X�vV�T@<�A�L�(�PAT�@����B80�0$`@2����� �&�*�+d7�@ �h���(&�2���Gu�$�,�B�4� @ր%��7��<<�5D'�����x���`��*p�%C�0��A�����c0��dA%�CL�B Ad��<���8J>����̢��@�B<�@ �3|���&� � �B%T�ĭ��@��A,�-h����P��d*p�Ѐ\�ëy�BT�@P�AB�� @\�L��M2�!��n��l�<��D�(��d�9`�6d�BT���(����A!��X��|B_�C�b�H��0�@7��ȁ��3p7`�����Ԃ(C� P@ Dp;������T� ��X�����B �C�7�����4�lC�D� ��Ѓ�<���A_�"��3��3!<��;��`�,� ��;\(@ {�pB 40@��?Ѓ��<�$, \����E 4��B�� �@0�5�R%�(�9��CTA"q�"A;���7��<,��4�-�(A���t����!<�3� �@�dp��\�`���<� d�'4�@�����C8����3Ȃ��#����@ O�|�&�B�L@�M��-�:��<�< �ԃ/�C<� �7Ĝ|�8 H)����3�A\�',��@>L�-x�pB�l� �d(�Ap�gaV�� D��A1��C4�@,Ȃ�;��( �d�$�����h��@,�)�l"�@%�C�D�� `��qC#�$4�9�A!�A!���A�0�HB'`�-%x���ڀ4�A?��X��@�0�A� �"��(��&x��C�\��P�6� B.�����Ap���C���',A��=�$�7P3�'X��P&���NB��@t���d@�<��䁏#B�AX@>`�;��+TA0;σ�4@3�H�C<�@;ȃx܉�#�$�� 00A�!l�tm�>H�T���=lU��A��1p��8�����`���)���8�,h@=��(�@@��4�X�1�dG!� ��$���A܂&�� �>���D$�B.���C=�@=�Cx�"� �7�=�\��@L�����",���#�A1�i�J�T��2<@��-�N>��p��$0X�P���t�B�Ѓ���(D��<���<H�A�~@1���@��<��il�?8F=�<x��� �7,��<���vXC�A"P��|$���>��/��BdAdB6�C;�<�Cd(���,A<H�J�Ԁ�@ �hB�m�4��0��9|���t��c�,;\�XA�x �>��� |@ �4P� 0�@*� @�tA�$p���BЀ�B�nQ ��-�h��N�.\A ,�4 "��H���[Y���BtpC��>B%��l���<�C�K;�?��.*BvT��1�g�p����"@�B4��P_@�@��������)|X��O�|1â�F<e ����˹sr�,��, �����д�e� �D���R�H���,��� eC2m� 6Vfd9�h��.D�A���E,"X�@aI�y� X��ԮV!|��h� A��`$D�{80l`�N^�7.��i^��3n�!� �ްV ��f���1����Prl ԡBM����!��=P����^���t0�ׂ Z4,�� 1�g�̙x�QY�Mx�8���AJl4�2�F@p�i��.���;|8�z,�bL��@�4��F�s�1%�#��f����� �y@?"h��,��P����#H|����� �IB��i��h�y�(xhaw��$����%�f�il�dd�`"��`�8��XÔ�8�Hd�t(��.�a��b/���#�@�g�[��'�b��>�� 2��Ā �{c`�9������yp�K�i!3P�!#`0���c'�d����|���<��(�f�L��d����}`���>P@��UAфB�p��x႙+���B��2Hw":p�jƏg,�a$L���!���&�)a� D�'.=�`�g2y��$��}�f��v��(�iLy�/�Y��4���A:���TtA��'�1��H�a��P�����\����yt`z�9 �x��� ء!w2�C0�X�|\H�R/ �`�IHr���Z� �es@r�#FI���x�`z0� <X`d9F�x�y\@�蹀��8�2����y�xd}�a�:�2�#���:`�q䙀 а��|��\�`��>��@�"Bp�Zp��/y��5��h�7�G0^pȂ rX��`Kx�`���K�U��8D�"� q� ���A�A�{��|���Q��.�B"V`�Up� X ����Cy�x�,�0�1z�\���G& !�7�cy�R��3h"r���Іh�h��a�v��Bd�2c#��<�! ����������!���P� @��/� ���;�1�� t���,��!1ȅ$֢4�P�ẓ�0��,B`�&���{L�(H!Q,D�������@�F<�0���/PĶ,��6̣�p�`5�ar�&܁ ��;�0 yd!��>R�0c �` ��"�h�@�kLC�|��!SЃ=gW:�`^(�"z��@��f��$D�B8ň�npx�h�<�b�oPB@B���0��� �0��A�l ����hd`U�C;4@ �a��=�Q /0� ���)� �@d�BpЀ �� >�`�4B��D�0 :X�x�X�� �� 1�k�:��ǀW 8�4�%܁~��R�Y��>�8��x�E�@���8ZL0 ���36B�3��7p����U,a�(��7����F�0Md4x�$@&��� �(V���-ȃ�"�W�TЁ,Pa�#P�1h�1�;�� e�G��t�o�D�9x�"hn0���Uq*�l0� ,�>>`8�B��l` �@ ���qd<������3�#���9t���V��4`b����,�C)D�w����c�)L�%0��|����;���`�D��@��e>�Q����@ Q�4���@@�$a F!�ЋH�`"��U���x���4� ���A%0��,�]�`a�=�" ��0\� �E0�c ��4�e�'�+�#�`E���@H�$��,���Cb �na��q�1�8�(�W�*�<P�L!^b>�l����>��8`:4�&��xB+ ��x���'4P�i�Ө�>F������j������� � �F�B` '�q8��0���ccm@BQ!bpp`��S@(C3&`{D�'p�/�Amx�p�U��K8�졅�F�0h� 6����C�Y֫C��/��03&�|@Gh�j���x���| �`� �@V� n���������@A���a�Ҡt���@�*AJ��j�`Z���a��A��a�`Z���o`(�* F�D$�a,���ځҮr`l �`��0 s ���.��V�D@\�� ¡��a ����r`>�Yz������A�@!��2� ��� :���n@�na4@�a v�/^�t`� �8@ `��~�`�@r@ڠA��@v :'�`�`��� ��a�!xb��A� ��A<��l �8 |@���!���*�����V��al��`�����A���@� ����> 6`��� G�` v ���,L "� ,`n!��!��@�h!n�`�a� �� �A4��� �4�~�� "a �X��|�� aZH�`R� 8a,@�!R�~a��^��@�a���` ` $���R����@|a� ������xJ��.b:�4 ���@�@��� N��n�v����ؠd�h��ҠZ �� 8`�L@��&�aO"4` �h����` ��6 ����Z�8@�0��ܡ�����P�h\����,�D!D�LA 8!6��-4�~�4a� l`&a���K^A ��H &��a L @�}` |��A:`^� !Ȁ��� q�@z��2*� A�a~fa�A��� 츁����� l��a �z�DX`�j\`d��r�� @ ���a��R�v`�С��P���> V@:�,s �J�PC��`,!Pʍ4@����T#� z���@z�.� �� ��D� �@h�WV���V� 0 $d, `��&�@+�`�@�� R%4� �@6-�<A)_��`�Z��� �`�!��v��h �D@6T`���� ���`x``�vR`�`����n�A��!R�8-��8�ny�`�V`H�ap������"@S���&@ �A �!4�4=��E��D� ���������Z�&���`�`"Ab�� �� �@f�r�� ��� ���`�AN��I��F� .a� �`��� � j�6!�ԡ��*�<@�G|a �<�ة�!�@ T �D D �����}`��@���`�.{'v��` �3��:a,&�x�� �������!���� �j�A��� ��D� a ����ޠ/�!H2��.��~ D@`J nD���o��An��a`!|�@ ��a>�H����B�!Na0�>��Aa���^��@��� ,���^�@��`��@�|!��`��|�x���@�r��@?2|���E0�l��"Xl (��Ƞ �S����|���>��@�`,�`R@>�|����`�Z�f��H *@(0A H��A�`�� J�2�S��b@�n�*�8���@*��� !D� �`\�r���aBAv!$@ va����c!��^��`J`��\��l���8�Q���� �A(��� �@J�MZp�pA�!LA/�^�� � 6��NG0�@��{h��R��!X� J��Z` � (DN� t8 �n��A�!� ����B}A�����V�tڡ� ��F@ �"��� aZ *`$��a�4�$�� P�R��ABؠ��������Z[e�� ʡl�@�a <��`$��; F����@ ������F���`�" �a"��Q���!Dja�z����@�@��,@�.`��)9��� Ja��z�,�@�aN��h`����>� N�^�4?��j���"��V�$��!���@�`�K�va�����D4��"��� 6�H��!���+���F��@@/0���n jR�@#F���l �aD�E���a�r�����!aR���@���f���4`���� �a�� ��-���@�� (�bA~`B7�ځ=*���`�!�!�N�a�6!\� F� "������`@�Z�� � �!�P�Ɓv`�@���@r`� ��|&��>�����sn���*aT��o !� A�q�� N�z���>��a&�b�����pـ�<@j��@@V��!� z������z�H�/p!:a������ ����&� � H�!A�A*`\� H@����� J� R!^���������a@�D��� � <@�T��n�6�!&at`*�X�mr@` <AA�� >-RA�� �@&�8` � ���A �1�` (!zaxe�����z`���6�l (\���<ɦ���8F P�pf`A�^��Ń���(u����G��6o2P��pkBt`�OC�9Fz������|8f&Bz ���Q�ƃ%��q%�G``d`@�čgK⤡�?����v�* lF�Z�;|�8�iE�����A�(H!�р ��(�>�h� ���(#N��7O}�+6�0a�mW��83���-H���&/Kv� t� ��dp��A>J���x~P�vm��r����H�"�f��d��hp7oZ�����qALv�����>�2A\���#K@���4��T���<R@8<�F8�p�� ~0��>Ӂ%��@(XA�H8�G � 0�+r�#���1�4`L�<��A����t ԐA%���/\�A$~L��< �CA�0� �E��`�"t�Q���Bx�4�s�)��"X�G�`�́@=����/ܡ�4�O,>�Q �4Pzа�<C\@%\b���r�"L �q�+�� P�b�.�h �f7�Hӊ2�0��"4@C�ıC "0�37D��'������=���Jrd�,���K8�@��p� ��0�W�������K<5�YA���T�-=3�䓈�`����� $H O ����r>rd�0��Ӂc<��clN��q��$B ܱ�6���G!f�QG>\AA<F�� 2�s��J�.,��M�3"~�Ezd��>$�H �QF�̳@z�G�L��8�E&��I��'�<�ʾp�,��OȐ��]�;����a�S�Ex��B�����L#A``D$P@�^`���!�+�a�5����\"}A�Yp 1%R��K�@=R�>�@'D�p/�9��p��PD*�|tA@�у��G,�M�v� `�:�c�`r��0D!�;,q�����`���pC%��/<��8A �F ?�Ё \�+̠H��6|`�r�c��,�.8@�=~@Q4����VQ�<��%�1r�y����D~q�(a��Al�� �Cz�PH��p� ��<���\':��K�)�A' �w��ҺC2@\�1��@%(u`{���0 TO`��qh� C0F=`�y���� �aM�"O��q�#�!r�V���;���� �!6�0 0�� J�w���0N�2�#s@� � �#Y��=̐�;`@K�AR!`a =�|�n�aAH��PT#���j� J� �(�1 r�hc�q��(!�8c���,ʱ9,��(J0�o�b#HD?J� ��H��Ї,�A�8n�18a0��q �l�x��G@g*���]�`=0���츁� �Kd� SxD �.\`e�����F�:h��a�l�p�!��x<�@�G$Rd 4p�@\ �3f�\���fP�!�CHA;�;�}��-����[�`D� �h�zP�@P L0�"��@12�Ct���>�=�q=��H�x!�7�C��D!�{�ĦCk�E ��C��8.ЃQ<��x���,��B-�P�2x�%0�"�0`>���m�����H��H� ��` 0�4�p4� ����\�����d@`q�p!Hag� �c@ lІ@� ]�C/�� @��(C��P�h�����AO�C���1� "�<�,�=��<�p�t =�8�p���4��mA9� Bp�*h��H�;�Ё�#Ѩ�&`y�A F���T���B*p�� fЄ/4q��9�8��q�P� �XB*�Q S�b��;�peL�{� ��ATC�tG,<�� �0B<&� 9X�/��2�R� �ȅ .1%�`0@<p� .B�A�0�P ��,�@�`�x`�O��!��}�b �x�p��-l����<��H"W��02Xa�kG�� \ �`�i��= ^�cV� ��B@ �n��l!��!4������U.\� xl�p�5��H�0�6�@ ed@<��@l@�`����x�@0�� >��`G�`$����� �`q�İ:�� `x���@��)p�F�p���P�"P(��p�v� ӀpP ���pX`0�;�20�0 B�Y��TA0�60>� zpE�������ЀF� `� �� �9@R�~p-��p6�|`pE>�p ��@L��� ��& ���F� �p ��&��`�K��{ �@)0�@�:PS \R$��� � v|��pQ�����p�p�F �� ;�s��P >��( k���p��S0���� �@�JC7�L�|��$4PA��P4X v��v P��0V,`p1�A��2�p��pe��&�[P�ѐup>��PnY�" 5e� g�[`� �� W�"� �GP ������0 F� @$&pBp�s��Q��������� O�JU�P����� �Wt�r��`��p|` 6�Y��@��aTϡA`^�r` �ZF5��{����� �O�_)��x:��0���T ����L�� ���|Ze���(�{(��`S�: �� ��p�0 x@��E)��p� `�p�����L� P-��u0�@��hu�����v��aQ@�PV��*� 0cp��p0�9��9p�@ �p���P;�r0@�� 8���^P h���ē @LA�9� ���F 0$�=B@a�eD��`��_@�� 4� ��^�� ��:�=� P'0 ۀ �p�`0�s� KPC)�� 0��P z�@{��p�H�`ŀ ݀�I���4�|�� S�@��,�FЬp�g�θ�� �@4�2�lh�� �Pz� ��0 . ��`.�� �pP 8�ؠ `� �4@�� `@ S���4���@� ���"@ m0�� p`�eop���� >�n`0�� ���Ip��A��0 ���)� �� ����] #�B@�P}���HU�~����� o��� �P ��Bp<`�P 0k Y4��� Ӡ�� O��p�PF�hP>p����0�0�����P�� OppP���"p`@\��PE`;Ch Ұ�pJ{ �X0PS� `1)��`Р�@ ��� ��PP �z�@^@," �&�����p�T @I��G0�p�4@ ��� ��bpo{�P���@f�r��epo��@ �` @W�@Np���k�mY���{P��0$pR�GH�@b`Xp0�8 ?`���� n���@^` 0 �@79�S70� V��@$��0@8 �� ܀WI�' ,PKp'�� 6� �.��� PPP�������� ʐ} � ��Y�p�` Ѡ ;��{0 ~�F�� P�L` r0S �� �4 �4���цA�}@�Y ��%� ��y ���P|�20���0 ���!5��-�0�4 ��3 " ����\�p4���!A�8 @� ]0 0��0 c��@0 A;�Pp���@�^�\ iS�+``��^,�����nB� ����c��P�� P03�� �64�A�`��" ��@6P��U�}�m� y� �����} ee ���Ġ ��V��N;� �@� � � �<�K�K@40�e �J@i�`�^���0 ��:p�� ذ7 � ��Ѐsc]�L@��� ��d����0���Z8��)��xm`�� r���`�qi@^@�` �����CP�H��# �P�\PB�;p���pp��@��@|0��{�T�k`��|@rp��`k!l(70V��� q����������.�"���'p�к�C��@8�p@�02p���P0X��9�" �(�`�ip���r�0>m)0<p�t0�P������ p LݰSpW@ 9�q0�p�0�Pr�^�e��<p���w0&�d�o@�@� �c�� ��� �� �0r�*b�@``�6����9�Y�pn�=8r��P �aK� p`�p5P�rU � ��!ʀ 0�0��>@�0���PpXG@ tWy�)��pN�����`j�� �0[��Y�@X0�`�V�]�����7Ԡ��`0Y �j�0�w �p���Py`/.�p�P� �@� �to����N�2<�T��Р1\���pErE4L@KuTp���0v@�p�)�~@0Y�?�O� ����x�E�5�0R6�YFx ?��-� o�*�1p����C ����c�pG��b�S��PF����NK�u������mK��U���'�������0%�P���*!��ȇ�ۛn(4rr�Q�XQ�e��> U������\�,�, ��XY�K�{`�ܰТ��7�H �Em�$xwv9�7�4Bp�CuA��L @HQ��9��,������B �0�x+tD�u\hȇ`�-�b�T�4Y���D���YPoL�=r��PhI��.<xw��.6Z���D*�\ r�+ ����2dQ�sa��0;�SAoF->8�` v@��)N�#R�yx� Z�bf��8%�s��p��j�X�3,�' � @�@"��C�|D�'�B ��y�c�*��|yb�Ez�C��X� | ��>�&f�(�>����C����R�C�����;���ZHa�}6��w���a%|j��=:h[�19�x�jL�#.��cT>�#�w�1���� ��e�����&�a�!*�\� &��7\Y��`���eX���1�I&�B��1 �e#D�cҘ�Fi``��&9 p�� ��&�E���� ��4���xn� ;(E�Ly��v(`$����J���)`��#��$� ���N��<��aQ�Ǎ��D������K:����Ǎ2��d�DDl@!�1 I�����~6�Ɯ�`}�.%������0��)Ȩ��v$�0���7�x�@%&9 ��hǁ �p�.�ic 5(ً�� ���( �0�g�g�X` @�a��x�č�� `�1! *��;d9�&�`"t�x���)#�%� %��(f�Ɂ v9Č{ް!�(��xP�%�,�@�R��T��;��,�� �`�i� 0@0�l�z0�@��3�B'JNta@`%��0�v����=8�>�������h�p��6���(І3��L0��/�@X@4�Yh�p������G�lD J��p�� ]�@t��0� H0� G�@ `��!XH�>�p�;���%�q8 ������x�<h`*� R`�>b��vh���@�q#p�-�[��\�@�q�P̣�H�/n��F<`0A'FP�6A�`#��-�&PC=�,�!�h�*�2@E �@.��X�47���p�1�ABhC ~�^,a:�j �A�!��>��(�ذ�a�:d� p�Ef@v���%��CH�]�D*l=�� �C&V�$�"_2���QyL���%(M����X��������D<��<n<� �8(� =�"���Q(T�8���7����G Ԁ�(�c6��3� 4���`Q���x�'\����Z�aN` ���o�a.�F,p��H >h�4��j�� HA�Q��`y@��6,W7�� .�)�@h@�@�\ 0&�<A�P�`���R��`RS�����p��aL��0�4"A�AP!��18�c����- ���<"�>d���>@���8#ı��r�ǀ���8�����B0�D��h��:� 8H�=l�$8��@;Ԁ ġ� �Mx�^h�ΰ��x�`��y�o>�@)N<�r��*�1aĀ8�R�@x�93|�RL�o�{��U�@��d,��`�+n�=c���Q��`\�B4�|"E$ސ�K�A= ��A�{@�0�AY��0A ��� ��(���!@��=�q��)h�A#8� �z,'@C$�Q����C$hA�x@�q`p�����0�~�@�0b�c1����l���"���=�Q@��.p ��)��.�A�,����H1�<x�Y�F<�B�� (q�!��G<b!�d�A(�n��0@ �s@Rx��a8Xax��+ T� \�X��Q�@<�p�&����_s�� J�,���@⠤# !��!O �@��K̠�*=��a��Bz��TT�7o�<�P$!Q�tW��`��4�8'�@3���G*p�Wx�M�%�S�S��p#0�>P�����$�(8�J,���+��.���4��pp7hhȇR8��2���P� �vx��\��x$8YxpG���^��|���x�hȅ�Ӈw0Y��#�:�h�@�r���0�=�]$0�H�/��.����/(-���8.$�)4�0��X�Y�y��U8 h�0y��W��^X�K��C�`V��6�zV����2������|��0����P���a��Zh�5���H8�1\��KȂ��Wx �}�(ȇȄ���,V?(x�Wwh�|���P~����Z����`A��MH�3�[`�@(�)h�H�n��|�>b�Q1�*h�(�tx���:����78����i���9 |�p8F@��?�X�8�} �� ��(V�&�~��9誄J��W�6���V��H��8��g�H�,�Kp y����<��K�H('x�h�B`�D�a@/(s����y��@�y����!;��R��I�=X� Ђx�)x�&��x�I0bІ�ۇJ�h��؆A�#��d�6hM��p�x���W��A�XHC�X��5�ܲ����t{;X�Z0 Rh��-Їaz*X�$��&ȁB�R��H� P�$P��#��H(��5pA00p�'��@�X�Q��"�#hy��#�7h@0%���K�μ�w(yH7�pXn�����W�L(HȄ5�ЀE��4�a�Lhh�7(���j�D1p�O�7 �Hp1�+�L��:@�*��`ؐ��B�0!Ȁ(��! �K`�c0dx�����'X��P�X�U�p� �/@�0��!� �,���M�C��N�x�@�pa��?�"�K�@�D&�`��L#0�8� ð\/B��A O���A�aR�tu��P��} �� �!��7>9��5j8f�U���xl�� L�4X�i��kM&HJ\���JL�Z=V��m]� G��+K0��$�GN�������M�Bި%91p�DB09Pc��e|H�È< ��$�@&ȲS�}*��IPT��8�OK.r���֒.D�(�`<ZX��j���0�Ȁ" �Ψ*$ˀH��vKS6V�iB��V�]%$�Bm�P�=0� 1H�C ������ZX�I��$��r���@ �0�-��B �`]�`N^ 1�$A����xc@^�s� x`�C.� O3üaCX���3o��X4�78$����q@�P�Dž��H'̐$?Z4�+�,�>!R�p�""0�k�� �� B=�"G�1 6��1�8K�1�u��2�pC:�|��5���'�3{4��Í.A�`@%l#e����B $��N��P�0L��QE��=��2ͱ~@Q�Y�1lS@? ��-H��O���r@)AX�"�� , ���@-2L�� �3F`�����@`3�@�Q��3�#hBL ��B?�h�o�� ���J.��Hp����<�̂G���A=`!�;Mh ��A ��E!^��1�9D��D"�c ���9PQ�hs�1~$B�F�À���?ēK4�X@R�C<�TPC8�E3.��g�R�� °�B���E���XpG>a�9X� �]$��W�"@X�1�,PhJ �C6(�ЇF8p�xb�7CX�G�0H-��;&3������0�+�Bp*$au`<`� @[�C��H=:0��C@�b<��ȅ$`Ѓ@B$�p��8< 6(�)� � ��� �*p�_�!L�3�&\� �@�`��Q �8��p�[H@8�ސ�8�@"��B�K���@ �0�?�a �A"Bq�.�#^�@,��'�`[8H`�z<�����kd�^��<H�D�XBH0 R�A�����B0���:�)\ W�+����� ��@� <B!��@�)H������0CE0@rp�=|�wāg��@x�p 2� �H�)\�~@'��=��#�" 0��� !@A�`�x!���#Ja�}���Ɛ@�9xC$�p�|"��DR��E�R�x0\���� �G���?�b>p�@0�`Xh@������3R���1�<�P�̡p�8!���k=(��b�h�!V,�^h�&Ѓ��p�Hp����jp�>�� `��;`�����Ѐ0���\0 X@q��>0���G| �=�&� �1��i�A��o|Z���H�p��>$0 8� � -�5�%d!¸�!��8<µ�hPp#6@�B�L`���B�� Ў � ��5A4�\��� 9#�H�0�dtH�� p�'T�mHA�X�h��$�v��pS��*���p� `���� �?C�И�?4�v4C8g#$�9<}X���5�`����ed�8@E �. ������UD"��/n�-t���E��=�h�v�$��h�tJP�`��Q�o82H�`�� ǻ�8���\8� �p/�� ���02���E���>�Q��A� �(0j1YԀ��<.��u�bI�,�p+�C7`�p!.,� �2�cW�h���@Q|@&0Az���4��/��r�t���ƀ�[�"�`���wH���-�p�*�aѸ.Ph�hb�VHA90� h`�p� x�#v5\D�g�%��`b<�<��=��9�Il��� `<D�y\�Ђr�PO��D`�G� p�G 2P,�NhA�!�7���g0@�`zA n�� 1��a"9�`���4|��:��9���0p��X���.ȡ��P!��0(��H�@�<`�L�Op���� �` ^ ����1` (p$�@�6�`��%@# ^����D j �p � e�A`w���p�vPP@d�PL ��@ 00>@�0�>0�`, ��Qq` ����S����w L0.�\�pY��0 ��� z�^�WW���Pd��0P z�����pL�{lP�� (����`��~09�a�}� 0�ep��� 8�[��P�9@�@���p�Q�v��`'��@�X` �pg@�� ;�~�Y� D���� ��� `@@7�L�����{]�0~0 ��Y����%�&�� �p�&�7�F`�`��`" R��� �����S���� �K.Ge �`�p{�`��@�p)pp�b� Y�P ��T�9��@�qH�zP@��U�����0�@ ��0��P)0L��@w�x@ O�y� qP�"�p[P�@7̠ �p��D���]��� |�p�P .���U�,P��� �P� "�J �H� ���o8�5�)�=�?��w��`�2�)� �p@y���G�)�`��L T}�P3�*�ڰa`�p�P������x���/� �@���`�����ip�� ��� >�J��0���'�`��^��w`"�����.P�gGP�@��<��@�w�Pe`�� �G�1 )` p���f0 ����Х��Ԑ/@ ���P-�?���� V�0l�(����\`:p@* bP���@ `i������pnp� ��y0!@�� p�P(��� �:���� ��۰ �P�� � �K�{P���0P��S0����V�K�� �0=0� `�*�4��0�zP� �@` [`��1�P�1����0�?p�����}��@v0�P�@96#`L@V5bt��� �h%�:�@Bp�<�T�����4� �dPP���^@�`yP�0Ew'�d7�� �`XW�I@ � v&JPJ@ ������8 ���j�� �6 ��fQ��4 � ��)0/�7� ���u0@ G�������Љ$�a�,>P0h�$�0� ���� ��qep�`p�@!p@z��\K�`Y��� k� 6��@K�:�GV��T�|ID�`=�L� b�����#`@��� ���)�{`�K�7���` {��� ;�e���Gq�8Tp�`�Lp 8"ΰy`bP,:m�kJ�)q�`0��Xpi�9���� �� `{CG���|yFp�FP�$P]��`�w�Zc�I�h ;�P���0<�0�6N"�n�`�O���; �8�\��{���|`��Pl��@ ��G�9����A���\�` 0C���B�� <����@�n� r� ��1�~� qz�����`@�` �`�d�� =�O�4����u�$�8 ���pK� |r\����X�9:@N3\ e` 04@O �wp P��� �@�� ;`C�u�TO�K >�S` X��> g�h��� m�}�X�a��m3G* ^�/+�p��NP�@ �0�0 � (n����@`��@�0p �p/���`� ��\{��s0m 0@�0�����0 �XV���=p!nȐS���p� * А�3�� � r@4� �|��P����0 �^�!�|� հ� y�@8` ,;�,�:@}�A�2 �O@�`�pٰ� S0r` "����@6 `�c���K` ��6���"0� p)`P "P�� �PP���� ��� �� ga��(���T@Wp�B �� w�3��A� )p\�ФK�90Ԯ0 `^p�`���� O�* 8�@� �� �q��$0���{��� }����z YP��Z`^pt�� ��KPz >@;���������{@ cph{0�@�P��� qPN���l��C� ��Y��WE ��0Ȱ P���Ր×���Wp%F�H�YXp�0�v���@�p��n��p y`F"Pxn u�LPO �`& � ` m �����@ �V7T $� ��� ���pc�m��^����q�u�� �p�o� mc~U0H���}PdU�# 08�=0 �P��& q� T�ؠ�D��� �0�m���i��!�`05� �SPL �pi� ���|��US@ ` �t@�`jo"� �("Q �Bp~` ;�H� ^�����0�Y� �pg2��q� ��� �6D@��p�p+(E�y� ��D pu�����p���`�ހ l`�}����ӎ=���S*Q/<Hp��U)(cj-��D%XsXD�AǕD��ey� ސ=��`�hU#�ERF#�xҨ|y�� >D8��C��T��>{���)��pI���yRQ������������ p��+; �0��=R���`B��!&�;q��weR%��#� �NxPG Xa�4��G<w]���� N0��@���A��=�c��\���[n`�'��Ӫ�RuA�GSlPѱ���(DK<>G�E)��7u¡$D�p@��Õ'�n��&� �p#�v� !2�c MƐ� M�'9v��+��`t�GML'�,��a���a?�@�B�� �`�H�yA� �`! .���x`�p8Á"H`�ڙ�J�\��!�1� �Ĉ#*%L�C�&�J���#H��a$Z�D ~��-�9Cx��#$`�+ �����%�H ������P(�� �)�<���F�ǒ6��Î%��d�h���-@������Ȃz(�%g�)q��9A��a�<��#�qX�w�a`] i%Jv�B�#@��C|8�?`��>�H��E�eH���]X(����!��`�!��0fc(�`�0" L�!M�Ca��a�ht�$�o�Ad +���b�@�l�� �����)�� �rɀ|�G��� # b� �;xyf� �8@e��Vh`�,�v�)���H����y���!����� ��w�8�#�y�#����% �b�zD���2 ���x�0"�.i��v����,t@��� �9Eg�����8��A=X�(��r<����覰�!���e@ �0B� �H�Z�pE�6�%��]����(C\�G@��-4 ���8���� ��Ud� �!z@ SH�q������B;�P�=XA��p�0��E�!�q[X`h&�!�E��]�! .� v8C,�`�N�Cn�V�aHڡ�Bp�8p�Аp���b@�<��X��LX#��@<� �7H#��a��#����;�"ր@��]��B��1R��E�� ^8��D�q�YgЄ/4a���8�R�S8��Ȃ�H�C�prQ�W� � �!�2ЁexBF��,a��4" x!wh6��xp�{�C�@ �6D�)EOPa��(��hby�#(0�$��CDp�@��Q� �P�%d�T�E%���+�b]:Ȁ�(t�VЊ\�A� �I�A��D(i zhD!�� ��'��4�G�!L����g0`4���ɍ��e����,`W8�)0`�@@T �@-Џ�` %�F:�Ph��D>�)|��8@+С �8(�����2HA�&,�L �4`0�%��>8���-lP�\af�=ܑ{(�C��f@�7B_�3�A#L�и�@�0xaԐD1�.`'��!\l``C<t@�"�hC!���2�]�6��) A�2�H���w"�A��%�"����8A�x�& ��Y|`$��4p�=��p�h`��c]��v�=$!g� h@�~c�P�7�\j�� �䰇r�b ��3l &,a���60����(� '@JȄf��y�� ������ ���`C0ЇH#A���O�!��/�1���C�a�X����?�I��X6h|���u��0� �`�0��*��p���p>�`O��*4a{P@ 8@��a����Ɓ3��O`D�`�>� ��n T�hA<�L�px� Z������K�a0�qR����P�28�Y�C�p�d�>���`�'�"��!����(���A���%,�����6��&X��=R��=Dc�hJ�+l`&p����� u � �q�'x� vH�>���9����I��0G���\�������:k���A��JTvp�z��f����=���l�$��a^ �W@Bj�!Xx�>. �xE�Ȃ! �D�3z}p�C�h�;�L;3X����`��� h�;Ѕ_�v`@������؇3�H\�hPx�"��4�X�x��>��y�G��0�@� � ��a��2wȂ20EHȇ�%�=�,�?@�`h��ep0��0{0v @��0�xЀ+��33�1\��|`RH�v� p���S���{�1H"�b�9���:p��� `�)x�7X,@/H�|@�)�`�/��ւ�O`�v�� H6��b�&�}� H�1���`���&���8�`��Q� � Ё��Q��`�'��,(��60�7 � �4��m�.P� 8e�3@gـ)ps(�=h�XS�H��j����&(�(��2�X���*ȄR��_�;��?�~�1�Z8��+�;` p`8i�/ ``�%(��E0�3)&� ��0W�?����z�JȀH��.��pz��8� ���چA�%�)���W�� �oy ��h��f�� ��`?��|�h6x|�x�|p�������(��Gh�a�� ��i� �wЀ�p��{ �Yxl��]0�wЀ{����=(�|�c8'b�8|h�('�/�����W0P(=xW��̀��7�>?%�g�4�n0�]�3�P@gX� ��-��G`�,i��Fx�7p��2�`��$ P��3�?(���_���HH���UЁ ��^X�LH'`hx�W�*��y�@�X�a�:h��a���8X�g��a/�0�&�1p9��*��� -Pzh�y�c8�.xH6�<�#Ё�`��_�?���JȀ7h�}�b�X�:� M8��~�^��p@p�����dX�҅J� ��@�@ �]L�a�(Q>`/,�|��� �<h���yh�X�o�)�oX�p� � �(�&ЄT��RX6��O��8�T"`�%��$p�� PM��[x/&v��b: (�~*�b�/x>@'/3ȁT��`� �J��p�)xQ�0�|p*�`� !8)p�~(S����>�.���0Rxl�8wh?@pX�_�X\h�z�Z@ � `�?�0Ep�������~ˆF(t��`bX�0h�HX 0�)��(��J�{�����,H3��`�g���*�lȄ�Cȁ$�Vg�L�9sfȃ=x�H�;�J�� ��T8zh�h�`�e�W��[�@��|H�\qgȃ~���7(H�{��4�Q�C@��T7h�y�Ok� �01�Xy�؆+���9�33x�<�����XfЅx`� h�{��\X8�+3��'��1P�h��#��T`�8��#�#@�2%P`��&�xG@�xP�y�.��� Ѐpx\���'���$���MІh1'��i�9�wȇ;i�)�C7��|Ї �Z��C��pm�:�|�>�y�B8 �87�(=��Q�{���ī�!(���8�`/����<(7�+0�H�h��hH��R���R��W�M�T܃<X��/��P�}(8���8��>O����-�ȀX�i��7��1�ؽ60����@�b�PЀg@�p��_�o� 8�'� ��|8�7��1��A�H�F���L ��{8��P��vh�J��<�P�3H�Z�&�E�T{�K�o�}8��@0�,l�-8 �F��+�lH�@HO8�8�`&8�&��v0P�3K0��qZSh�]R�]Ȅ�P/�+� `�� �,��=@�� ��/��X�\'��Wp�X�X��lJ�]X�舄�]�P�>�n�����7�,��J���J�6�����K��0`H�x(H8�M8��PL�����X x�8�F��hHͭ�N�zP�>Xb�E���c��[��?�xH0��0��:�yHh2(�~��� ���eP�p��'h�_�[0�H\ �\��h�X��6�a���:���j4�h�bHB����:ˀ��b2�,�s�\��CPU��q*��ȅS�F(� �B� ��!�|�)ЂЃ���y؆\� �����і/(�8��N����w0 ��(�8x�B�H((k��T�F�;`K>��Pn��@pHȄ'X�x�.����ҩC��55��l��HHX��5����yX�{��_8�1�� �k@"����:Ё�;�!X_��p�}ЍTX�sP`@�ȅ_��`���0��~(@���j�3�- � �6�mP�M0��h��*�=(�dȆ�=?�� �v(��p�&��#��#(]�fȆ7�( 0�O�nЄQ�� �� ��'`�=p�s /���Q0���>�Z�#(���x|*�&�h�h>�W����T8h� @X2�9x�0J؇v��88����r� �,�@@=P'�h�eH�6�7h��N h���W���/X�`� p�)x�E���M��AX4 ����?��|(#�ȃW���W�l�PA�G]4H�0 a�'H�1��J�*�v�����#����DN0Z|����x0� �,<Ҡ�ߙk�M �Sy"���""Ρôd� )�[��G�l�@"gAD�� c�x[La� =(��@?�4�3�W<)�x�q�Cb7�5kƏx�pŨP^&s�z�(��Ƅ-��JZ-�tP4m�0���DS���dU #6JȔ�[�\`I4oҬi��t�/MqD\���X""p��i��w�XX�n�w ���� ԁC�Q�;�8�&�Sd��e�Ft��y\��Y��IYp�4�M�P�C���*�!�\�>-�C>G�p�, #�4� 7�#�'@����R�"c��Hh��>5����`�ps<pp��X1���� �)q~�2a���p���|�D-x�'��'X�'�%��� ~H��@�� ���0A�?Pp��q�"�h"����>;ȱ>���|#��h��lsK%DQ6DE?�h�}���hO�<q�l`�A=�I4��"���=�pp�?����T1 1�������1V@J��c�6>�p�`��@3��T��A �3�X���r9��q�;���L;(�DHM҆,9������C@�Q� `ܰG&Ll��0�x0�@�E?Lh��-�$�D�CB<�t��4�@(0d� V�{���s-{(��`|�K~$���(&<҈6���4^���rA!�0�C�`Ђ=.�q�&�n�C�@�ޚX0;�0�2A,H%U4Q��:�C��{�!�7>�#B6/@@7i�Ç�`���"�,g�p�>�q�d� �3(a@�3�!6�`���/:�lbE �� x`��j��� �G-�Ј#��l�3��F����C�@� �*�����i��A�A/��Z��. M�!�hD��B�^8� ����`�!���Ar��+BE�s�FhF���s�ep�B#4`�(P3�`��=f�\�ЄD���8�r! e��R�.0�Rh��0'`�%@"����`�H�Ё�-X��(�L�=� �x��� �*0� � P��@�%y�����q� �x�b �H#���!m`>1�7��'�G|�l`(%0d|����0 ����t@>C�����P P�B�24�O��^XB`6�� 3`A$z�[#�HB4� �`��,��B@bG ���bD (h�h��g�`6���g��KS��,P� ��L�|da"�!Ґ�z�@�XP�f,!�9���4�q�E� 0�~F�q ���`��$��X�A��D�6���Q���j� J�#���-����`7X@���J��`Q$��.@�� ��p�s�a�=*����E���W#��C�P =�@d؇=hB H�9�Aq� `A�x��CT���V�eT#���"\Ab���ˀXQI���2<� W E��0� N��>� �%������ :I �+R0�����y�7 | pX!�G�y��(��N|�m��r`<`>��6��� �0|`����xF.�@�B��@R��LA�E� .�M̘8�� �> $����A�@ oPF��x�V�XV�y���`�!�����G�/��pГ<�=L�t8��&�� -�����v0�#k`�� �|<��Be�0�<�w`<��*d@;P���W���h�,�z���H�&@�xL#y�� ���1d�XB�PR� (p�`<�&�H���*@B~��<�T\ �Hpp�` ����P��WP4'��fưG9��/�� i@ .�M<���R0�� �@1X`I#1��;x@��a�� |j�"Q�6�`�F!4q<@Ӛ��y@"V"�<&p=� �p�>1��� {����7����pЭ$.0>F�*(gw��=�Ў�`_e� �l0�����<T����L,���� �,'0�,��C��D@C8�|�3���<C �A8�O.�B��+�<���Ѓȃ8x;t@�.PCL>P�t�@C"��,�t�<\�����x�Cd3\@; �ȃ����)hh��0�Bp@<��.H�C����;8@�^(,AT�Ѐ5Xt��0�A��<�p�`�ހ���ā;� �C`ALB<�Ѓ;���@?������� ̃\Ё<��0�D��� �pA(��5��LA t�h�(B��@p8�O��)HC P�<\� ���B $ �B&`c���!�H;���40��6��=�B-ЀD�)���܁��K�C�����\�"B(�0�}@ ���=D(8�8 �3`Jz#@>�>T ,@'DC&��5P���CT�,�Ѐ�`@�@08�<�PA��xA��%�A'0�<���� 8�<;J���0@�tA=�@l���x3Tb���#Ԁ<���Ct�lE�x�.�@�/�I��C"X�' ��@B ��AL,2�IL�"> �a����$�@A#<A4D$��C0�x���@�1��hB(X@���(�B�B�QDA��;�"|1A��3��;4��Nh�@&�X��1����=��/ȁHù�A]@�%��.P%Ԁ[^��C�A�L4T�EU�4<�h�;,.<t��� T=�@4� <�@6h� �@H�&T�t�!���`�/x�=��,#@��8H��<��p'� � ��<��n`�C��dVf� ;ld���28�<�g\�)�@>��"����t�$B#�(̀�T�*dC��=���B"��"�@A d��;,����;��<�(� 0Dh�$�B���T���9x� Ԁ`5�2��L@*0�/�;����X�IAؽ���H��� l�����A4�B@"���BH�\��A��>@ ]rA!=�C%*����;l��C%�>��$�7�@ԁ L@�C����H���& A@ �m݃;�hX�$(��@V@0P �1�B���6LBtA��6d���A*�Ȉ�|�0 ( A�G?,�&�@Y���\�����|�9�0�@/H��3�H@ 0�(B<��,�C0�>�C��;d�C&�A�-���0�->(�=@pA�5`"�A�B@� ����u}�pC�\��%=�@0H�C<��"���sj�<�@d�<�%����&���!�CP�8�@>��@4�p��C>L@;x�,C9 �$����( �-ZA��*|�>����<��(C�C=� �C�;�/HC$|@�A.d��2�����n��p�X�<��� �4���@B��(����� �+�^@_s �`A(B(T�)�4����*<8(g<�@�C8@������Wq�#�BD@*D�<Ѓ�����04�L��;$�A�A�\ ���@>X@(��%T\�үA8@�1�0C耝NB/ `0�,� �o~BpC0�A=�-܃��|/P@=�;���$�p.���� ��6��1P.��@=H�����(�����-�B��X��(@�Qot@<�p�$X��t�$�0�����-�B!��94�$�p�m9[�@�C%�"��),� �����,\*�L� %�� �B,�8��<�D��@�CיL�(d�����a���r�L�;��DX��%�8�h�,�� 8B���t�!�V��ğ @u=��:�-�!L>��xg��L�l<��4�#����>��3�B"��8Ъy�@ �mAx�oȃ\���AL'���4PA�@-<�!C4�@x�0�@ �0.�Bl@=�p��+܂h�p� ,�4�? �<9d�@; �<\Õ4 <p�8@�@`��e"�d�`��r?���q�+x��@�.7 Z&�0��<C�H5fB+<�(����6DC=�FQ� ���Al��4C l@P�|� ��<�@-���������<�>, ܃�A P �� d���hh�,t`7��"�8<|@7�(�H�`�ȁ0X|������܂+4�`�(���,���,,�$���C6 # O |�0>��) �DH��,�%����X�PB"��֓x�e� � �7`�x@�L���0A;�����)h�TB�$��j$��<� �C$P��+8�U��H 9�g�C)̃�eBA ��4B�C��)̃ � LB1@����� H����xY����)�- (>|�P��C�� 4���,$�/@F���"�`��#��h@Y�$pC6���� ��A��<��`�,���|�8�A p@5�7���A ,,>��D�#4g��0���l@\�0�=�\D�=��4������"�B � ��!,-<�|z��hU>���&�C@%���t��-�����>�C"x�\�M)�H�aM��Ȁ1���LB��\BX�I$�B`�A� P�@�$$�Z<@;,� $�(�5;D�pgߨ,����<�����{��: o!.�5�' n�82 $o�� �- ظs#�.��y��L� ރ�-��e2�����'l��u�J)Q|�s%�}��`VO��qXC.���(�eM�9�@��~�R��3̑*���c�0?�s��9�+�è��y�g���ėN&�����-�"��#�ܸSFă��9@���$W(�y҄�R���hT�}�2�2r� �?W:5���[�^�P� <���"�`%v���*1wF��aR�`� "x��.���&.�Ò�ES��� /�*.Y H���R>)�2�a��Pe����`H�6X����G��F���w"�����-����h)̰��'DXHx�LJ�Y�|`�W^Pb�{<0#w°!�V��*�p� @�����"�p�) �hE=�&�40� |��L��T�B��$�.l�c�p��<�B��@�D� ��" ��l�Ê{tI�|l �2A�'n���8�C,�8�zj����KҠ2aB ���ن�X �#Dpa�(�Gb�AhB�����v�}*0e�L���[�M@" ��%�Ф�y.�� �I�@L��p���v���K�1�j1`�yŗ7+�8�G n�b�(�y8a�;ΐ����t\9�x��G"�D� �x���9a�3H8#*�`�U�䀃�h!d7p�(���Z�9ņ+<A��@c$B�d 8��� ��1�a��g�� �1��e�/�y�M�Ʌ����١ PQ�g��6� ��!t��8q�p��0J`�=���?4���8+�-PfĀ�:`�y����$&��xh�B� ` �,vP̣�@�1��m���xA0.`F0B����JL���, ��,��v���a��Gш 4A�`l�D\� � ��+�� H>�ЉN\�'��N�8�� �qi�AY�G.6�7�����l ��p�=A�4�Έ�&$��j`��D@yh�e�D4�cz�f`jF����T����Q x(� %���]��1�C@h@N���|0�<��,���$lT��3���x�P�=�J�Ѐ�0�8aϘ���wԃ�@�.�P(�t��9�a8=� U�`�.��\#h� (@P!� �ЉU���8@������p���8�P��C��DP�L���=d��@�K�X@7�x�4��Ё �p�P�)0�Za|4@ rX�)tЃyP`<B0�p/�� �8�.Lq dk�G��< $�j` 0B(�A$�p�&��@�&~ �y�� �����(��`�'���#�`�R�@A�@>�1�a}0�/z0�>�A$8p;��;|���Q�H+h�$� ��#Th���;0D`��C#�0y�#�(� )�`��3|�xxa��4�{H`�'&ЂR`������*�!q��2��� �]`A�@H0A��=�q�!1m�A�`�D�A�HD| ��2R��v@@$��G'� �#x��*��W�*�Pv���;RpQ�!�����+�����(FJ��܃�>�I"/KH"1����Gd0�*��(h�°�t�(�4��}���'p�B�� �EL@�@���B)hAR0�=hC!BA�M�b�A>��#up�Q�d�!G�G.�nD��h� |������qq` ��((P�Ȁ�)320�%�b!�f��t`�h@�@��ѹHC���"H�<Z�),��K(�p�;pa��F!d�������Z��8�B�A&�l��X$�p�,AɸsvD�o��`�z�#���1$g8@���qw ��;x�n!�<�`7� l���C���$��bXu�D<p� �b�T@�{�`s@>�h����>��FI� ��� |�@CH�D $t��B�X�`�p���������"��� ����a>�� z���(��2��p`�X����ja�ԡ�@` ( t@(��`Ƽ ���M�!�D��`��S6� &�\ ��(���ݡ��X�x� X����� ��p��@ʀ|p��<%�� ��~���.` ���� ��� @�` (�>a ���@�� �,�� ���8�|`�����2� �� �!<�V3�.`�����V�,�< ��d ����&�X` ��&��`��` < ����R�XHi�@ :`��A�a4��j�H&��AD�����"a��,�V!��d`4� w X�R���>� �!@&�a�aB@n ���A�ހ �(��!��r����V��2`�� ���`ء�a�N�܁��� L!�@x���8�� !$A�����0�Za ��2`r`��h` �L@����`�����0!R@@��x��A���N�ԁ�Z f�"J�H�H ���� ��A���@��NAF��`�!̠�N��a �� � ����!B� "�!�#L�@ ��| RXl�r���<��`���@̠��a���+O����R� 3��_z�� ���������zb!6�RN@���a�@�J������H�.��`�� @�x�6$@��A�H�"��� �Pa���!�Ad�� �@*`�p |� V�����:�| ���M>` >��`2`h@&����2�n8!����T��` �D��Aaƀ� �a��An@��8 M�a���`��`>`�l�UD� &a\� ��.@@��v��� ��P 2��A@\z j!�� ;F�F��� ���� L"@��@��a��R`�r<�|�r � D/�� �� X� � �@�`*�0�"���"��`t ́��&�x���B��c�a�D`�dA�@p �A*�A� �R@� > ����vA���D�D��C.@H�P�6�2��&���@�(�n`�!�b��.��\��`��`l�� ��> � �� ������<�VA4@�����R�\��^@��L�4�d�&�`� �@j��:�p!����z�z&!p��A��>�8-a�����@2��$�@ �`��������2l`���,�HV�pA�����$t ���^� �`��n ��$��6a/�t�`"����@@ !@� �D� t���R��m��AM�L .�l��@'� �` �!`!�R��,�D��:`"��`Na�� ���A�` ���B�haJ ��6�2� AH�!}A�ܡ�@P!v@c���\�Al�����@2 �`����!��L�$ ����aD���� � ����p`-���b�^���!�����. ��4� $�����!������!�� D@�` ���0� �!�f� Cv��A�`a`>e�!n�$�Π<ʠZ� � �8�B �mJ`�@Na ���\!��*����N@M��Za��q `�`��x�� ����B�r�&��@`j 9X�L��~ ��5��� ,T�S2@��� N�ZG �@f��0��.���!xvʆR �@��8� Ԡ����2����ڐ"��~V`X`���!R����@��4�� Z@ ,(�� �`z�L`8 �`> ���� �҇L�.��(`\�8!x��: �a ���E*��T�8���� �������d"�AsA2�� ��P�&.������`Z�<�`H�|!��,S��� �^�r��h�pv��s�!8!�`l@1"@����f���9�!r�����*�aҠ*@���D0OY� ��� x��d��A �`l���A f�j��V!t�4R@�A���|�������@��A$ *`{L���p 1�� �2�I: J�IAxY!dPI�t�@�`�� ��N��� ؠ(a��"@����@�A�> ���(�>��&�!�gH~�a� I�����$@@ � ��� �a*�p��8���X�Ѧ�� Π�X`�@l����a"@�@b�"� �3�y�`"��a�o2J$��8�J�4��� ���O5a�@f����"�H`� � �����`n� ��.@� �@M[ \Af��� .�J!/`�� L&�Ȏ'A�!�!�Y�@� �n6��@2�j�d`X���d@� �`� ۄ@5b��yyV�ʱ��@<��+�w��`�S� XRܢ���z N�ϑA9��U �]�N}�ei��Cg��ބ(E�q���K�e�!,ùT��D[�� \8䣰+Ԑ�nQj �������{f�����2'�A�6������!B�P�a�<z�����'>�9�q)� ��D)� � �hҤ!��y����7,E�FyZP�<"��%%!a��*���8�̈́�P��C'x��n��g�h`XuA����0rv|Ѐ�0q�F��`�M��N�.�dRB&{1�gs�61� �N<���+g��ň0F �tpB�06����d�3G>C\���0@<��@�pR�7r� Ѽ�O$�� K86�� i80l�]�`6<�:l���xa�/e|����W�P��C�[td�M�,P�8�Qā��@�$�@�5L�px" ;��xG�Ԃf�2�����P�A(p4r�Z�c�1���7�ĒEmA��m8|qB�(\T҈0/P'8|!�0��=���>�p0=<��m\�L=����=��O��:��@>@�p`�&Ԑ1�1(s�@H3�@�����4H�� D���r����z��@Ѕ��c�&�أ��2@XH� a�.S\�x�NY�0�� '�0�>@p�����31�q�2t8�������3��@@q� �X4����G� ��<����7(D�w��Af��C.tC t@p� &J��a�<n�;���<�3#R0��V$�w�,��� 7��F�AT�y (�� ��1 ,�� \`�|�c��B�=��`Azт�iB~8@>X�d�.0�;�Є��| �/jt\���3�?,��(@>�� ԁ9[�Ґ 6 �8�R �:P�,��+pЈUx��0�(�[�`���1 9�����a.�A8�@�<�fD!-)�M(�)� v`~����?dA�ܠ���n` �����<��v�<�<� ,�!g3��.���D:�q`�xE �F ���X���|p",��=ܠx� f� @cD A` !���0/�@L���X�9�G,��e`A x"B.�)H%C�p�$�&X7\Q�B@%��pCX@ �0$ʠ�W�"�B<��� Z�h�`�����/.@�`�@�h�<���Sh����,�)�Y��<Ұ ��8���@�~� ��,NP�`Y8BX��@����p�p�7`�F,���C1,` @(��,�P�3Ă@"������`� �BH l�g�#��<��!d� Y��D����G�Ўyl�����#9�� @p@P�;�� h8%hЀxa �A �A����!�nJ7��� $!(��@ �q �� =�aFȄ2��Ё;(�6��X�4�DK�C2��.�� u0�1�7��f��a�C��B~Q 0L ��P����2�@�x\`~�p������c|�G�������G$��{X! ,� |!/P� ��q�#<�'\�o�c)��l� P� �p'܁0�4��8� � �%�@AX;6��D4� l����;\@��Ct ��E� v���<.%���I����@ $``�,h@+ ��K,����l@�\@�P���\D� p��h@�@��Em�-�@�0��=�pۀq���7����0�=���|A�0�#�:�`A��( �-� H�6��4b[4�e�D�� H�>T�&\�8��������;�S�"�6�2���<(�.�@�A)�q `` o��Q �!=��2;dKp�хD�)�F���m��z�v�UDq��n �#̃K� :��d!R�E �� 9@�&�Bp �Ag�E6�@aF��Ә�<R �!��(���'xX�;@@�0 0@4�G �.Ȃ%.�@�8��&�_��C( �<6�D�`q8D� H����|`����+��Q��0��>~0��7`S���-$p���`{ ��'0@'� $`��Pd`��U��� w��n`�Ā�;�P0>�^ ���f^� �� H� ����� �@�[���&0�O����`P<@�� �FpK` ����� �J������8��g`�pB �MA��@O�}��!�<�#�P�z-g� ��G0Kpې}�1� 3`��"p��� X�b������ �� �Fi��`vPi0�P`+U>����@.�5�9��� �����5 P0S@ �t������� ��@�@�@�P�@P{"ˠ�@=����$��I�`�+������"�g��p� �����@@����l0 ����� ^����@L I��Pe��0\��T���6 �� V0y0{>0��Gx8�� � ������0c0a�p����)�`���A �0��0 T��@�pD0Ր�p` 6� �@��@����d��m��@Dp��Lp|�"� ^p�0��C� ��`� z �p�@!��)p�`�`a�< T"0p������5'^� O�����9P j��Z�� PF�Ӏ� 7)�A $� ���060 \PH���� s4��P݀P�2��@p^���P�P�[0L 9�~��0p��WM�K0R@����@ >�J�z 3�J=����7�p�6��I� ��� � �5p;�9 V���zw����@� � G� �E��26h��)0sv���6���'"6` �p��� TP�~0�Z��e.���'��|��rE�e @`m� �p��[`�@ pz�.0~���0P�K�}@@p �pD�X�@��=�Fp i4�� b�rp��p� i�����Дl�VPI��� #A`9P^� e� =PPU�`j'@�0?�^�ܠ\������C 9�Wp�S@Q���~��� �-���`� {� V�� t>��TpA`8���/ :@r�} �P S�"0ٰ��P5� �p (�T�-�@) �70 K@v��p��)L`�g�;@ ܀s@Ϡ LT��zp�p"`�(@W���$�`Oc���9|P���P��`F|�n����k�K Y���� �P �`R@ `C֔����':@<�`BpG�z��3����Ё`��@�ϛ����} ���4��0t1� �!���@p�%H�S���@ [�XP�P��l�� p� }��0*p8��@V �`���P� �� " Y0�`p�� ��9 ������q�@�p6T �@K���r�&Qr�gpv��p��|�����! @cpp \�0=�&��P��f��0 �`$�@S,d�p��`t��v�>AF� ���< "0)�w`&� �� ?U��pԠ#0H@�@`���fb� ��{��9P|� �X G ���K:�O�zPH@ڀ�В�� �V[��`�L��`0"�X0������`ְ��p��=Ps �`� ���ð��~� �@ ��B�0[P�0ڰ {�$��=`� ���p��x�V��� n��X` � ��p��m�FP+�w 40��� 0���(���`� , �n�F �0$�ր. �A���F� �@q���p�G�t�� ���p��+�;� �/�r7� ���^�z`C�����%� ��~`� G� .Qx�u��@���`r�E�n� %� 9��p��&@B��i@�00F�X� ^PP�x)@���i,J}�8�k1;0E���0A� ��A�pOPA0��^� ��H�6?�pA���]@ 805g ~�;p�{.@ �Ap"@�p %$ ����D�@���@@� z��p>� @� O�e;�0��=5�ۀ�}�~�~�����0� �UR��NJm���#�`@ �2 7ΐDp � ����p�R $p���0 p���� 9�P VPp H`۰���8� В@�� ���l6� �ʃ�xp��h�ap :0| "�"���������i@�Vp4pd����@����=@ �0ٴP� ��0. ��ԐK��K0��@�'� ~p"�� @��0C�� �P1� � �<=� �0��E>� � j0a���3���v@^`j{ `@4� 0�`��pf@�@�g�E A@lP �`6�s��rW�{ ��pK=�� ?y�]��R���_���L q�MC� > � ,�l�� �0t pP�P�`+� CK`n�q�/1�\�4�A�7¬���Z�Y��\���`^��p�R.��hѫ���as��3S��o�l@`"��#�A9F/��x0�g�}^f�y2 � m�Yb���x�j�+k���УE< �;���<w)�bWπ&\8����ւ ���{���>[ �Y�`(��Ԓ���3�*�:VX�X߾v�!L����AÀx��A�@J�lPap��+�&�rf�^ ���eF�>�B��K��hמ��6�1����&V�����@�`�V>�� ^$�B���|Dh zThf�1<�$�"�j9�2��<0� $0�DRpG�|X�?��Q@���@w�q� |��A;4� �\��i���4����Q�8�H�'`1��g�KFhG�@��#�x`8�K��"�."�<���/ KЇ�t��g�8C{2�G�"��<�`p� ŗB��_" ��_ƀi�,z��2r�B��A$� J�A8& �vD��T�`'���1SLp��FhD&p&��@�"1�7��D��C��c�~�(Î�qc� &�CnH��& IGl���m�� "�8�����S� e�Y�o���^���*ƨE�E0%�8Y!�I�K���=��y�P���� ��Îx6�c $�[��a���{��)*I�i��S�8�:a!a�X"��8�*(x� �G�#Ơ'�:�!|��A�_X%I�b�Y�N��{N�� e>`'�Z� ( ��d� ��)��H@(��P���Ic�T���Ie�1� i����z`�t���eN�$(�q3p�{>"M�BZ����q����+��X%�Ј0c��EN��?d"���*�!���G�g7��&�ю{0�e�1��]0A�� �p�],���<������=j�� `� ��BLAo�6�)<@��j@&��輻�4�<���$���#,����CAh�L�H$p�P1�a:����%�=�v� De�ՠ����a 2xC~0�R<!T��=(�� %�E���� p�nĀ� �"*`�h���B�P�(pA n��Hء4�Fp�%�`�C�G�3p��� M�(���,�~�3����P��z�$��'�40�� ��Aø � �ci�Cp>t�XB/@�#\a �B�Ў4�)�6P�D�=X�*�`�,�@� �Svti�a�x���W|c�H>A� �@A�A�xk(�&l��+�!TpA?� &4�B�x@BL ���3܀`�� �y0@��� h0.�ax�KP�(`� HC���1d`�F(� �����.��,� �h�Ѕ|� :�>.a<��=�@�P�}���H�z��'����P�p`^�z�u�bb�"y��Ȑ�4`�@����2p�@��(F6�F��Y�E��^�#b�"� �T�@@�~��h�*Pq/ И��AxXJ��ZyT�h� Ҁ���m�34 � ȣBP�Oh��8�����.�BJ1a�`>X � ��@�#;З���9���x�G��sP�<�G�J�#+����x`]0$h.�;�0�`�MԢ��n�� 4�5 � %>A:`@ D�`� ���1$c�H�$�;N��N���p�c�C`��q�!���G0l�[p�# x�B��G*jq$�� W � �X���Z"x�8P���LO((��+`�#���a8�� X`}D"K��*�I�yȁ ��"� ����a�=��1Jda�" �P�IH@<Rp�1̣��G(ʠ)$L�G��/z���|�(p X�P����#��<���-��X�1�Q��� x@�0����<Ƞ�����i�v�!:X� � �0� �t�䐌�> c�C-R�0��h��Z��p�=�|a ��$2�L��@ dЁ)�@]��"��D��KX���Sd���H����D�{}܃ y���R�j��<���O0@N0�p���yP��)8�IЀE0����q��&�68�6�(�a�'��`�\x� ��(88�+ȀH{H� ���8�S>�� Hv(&�|�;�2��Rh����-@���i����S��b+��?`xp@�3J�D( ��H{���?�5D�iȂ+�,��H�QУ=�����*&�w��ȃh�~�.�����<X�q��2X�g�V�|�@�g�M`hPy@h�UXv8�|�|x�:�x�Y �;�Q�@p�b8;��o��XX<`�<`{ؐ PV ]�MІ��}�w��`y������+��#����� � H(����90|�0`�yp�,��0��<�wx3����$�!h����P|x�y���H(�T� ��Uh���x�n���Ȇ��wx�z�.{x�<ṅP �i��:*��$�� S�H���1lx�,Ї �)-8-ȇ9�A(�Y8�>`�k���z,��.��Ѓ% 0A�/=��:�'X�����D0��'�H�y`��H@�D �x��Zx�0znЄ1��=0��oX�{`N�'h�k�@�Xh�!��p�Jp `G�F8<��R��g�$6B��������C�K��X ȇ�w�0�s&Pp�zȇ%�(�7?d�0�'u������0�� Ї؇Fx�;h��� �%x0���8��� p�<X>�?��m�8�=�I������(/x�j�#h���(Ё8=�QP���L�"��0���h!��#�.��f0J�خcx8�^�9h�'P�{��p̘��=�y� X�:�!��;`/�kH6��!bȂ@�~h��@� �8-��T�O��� iW��18�3�]��P �U��j�5�N������J؇`С�7H &��@,�)X�0�F����y�]�*sH�4h"����>X�}y�9(�(X���5(��2x�|�F��K�B�@�[�X�K0@F�0�� �[�H,�N���#@+wi�9�-�Ȗ�G�����)��|.H�T��b�/��3@��H|�� p�CP�y���opp���Ѐ*��a�_xP��LhP���0�(���D6Ȃ��K����0(�60rx�l��XX�M0�ѻ�U� :� �4� ��:H��Ё@��X��7H�:��N x�L8L(,�+�0P�y8����8 Ё�@O ����3�(��$��1���``0&��p�h�+X�' �H$�@QH�)ȁx�&3�1��\x�(�x`>X��K,��p� ���>� �����`�B?�x���)x]���x�,x�Dx8a�MMxAh�;X:�R/�W8�}H��K8�k�f�� �S� R��@�p�d� ��p�'���;�G�y(��!� �y<1S�0�U��H�Ip�H@�N�q����$H�R0���2������;�D����y-Є+8(pe�+ �p&8`��P�%�U��a�]p1hx �u��� �(�eh�� ���'��x�{���x0�%8k(�O9��,p�RЀ� }p�Sp�A��I@�a-��Y�h���%�hy���{�Q=(����H��]�V8,�����j3 ;��w`�><��E�!8�݉��"@�wpQ���y� cЇ.�_8�~xo�)��B� �Q�yP�@�?xhB0Wp�Ȅ��wȀ��.pN����t��E��K�Fx�(.ȁLLB�R��� �LтyXd��:�+Зbh;=;��&���R�98��̕�' � 8�Dp�}�X|pRd���up��� h�Ex����E�)@\���Ah]�zH�H(�� �7��8�(@�@>�vH,P�0`��� (��8�x8Ƽ.Q����:�&�)�G=H�V\�D �=(�`�Np��B(f��^� �`��uЄ�|(k�%h�<�Ё&�D�� 9E��m y�9�� �:�?�%x��B��X�|���GX��S��(�UH=w.�8�&(�I ��$����&p������@hx��}��0�ȇw�P�'�7� ��T`����Q�vx���@0�F��7�؇%��H��}P2� �30e�`x`�� ��^��X> d$Є �NRH�XpW%(&b=�Z�Gz� P�@�y��%��`�@0�k�X��u��JPK����SE�-8�L�H����U8�s0���m�!���H"H�%]X�Ѓp �,�(�;����@�w�)��N��i`�3h)@khNȇHv �'(Y�un ��)@M��[�� ��@�:(V � �7��7�8�~�cH�'���1(�|�fh� $8�e�>`�0&�=0 >e��y��d�O� h;�8�LP�<(W h2���tn�$ `$��y����'�.����/��_��t,Ѐ�9����ă7FU���C�yD�P��~�5� ,и���D�,���!���y.���g�Hz�a��<K��Q`��M���I�oU.P(s!�"67�P�P��% X0��E^�A��b�� )��W�͉%��˲�� hh���B��ݛ�ċRF�di�dɇRd�o4F���8��L#���e#�$aL��2�KPgxp舸nT�l����� xz�h7�>w���u�ݙ���Z�# �w�#q�X���`���%;nUKU� /n�2p�T.w���l���5���P��.��L%��%4��9{,1�t,!B2l�"G$�� �p���Xу^�0���#�0s���r =�BCl��0pX�H D`�N��F�PP�%:����0�2���<�@��BIgs8���N^��.�s���0�����.J4�<�a������dAO=]@0�0A�;=0pO;�� :��p{�@���}���B?�����X \��LL���,@�����RTpA� �� +(�����I6H8т��r�.ȣ�Y��L�"�;��t\@��P���� ;�3>�p�K I50�<���,!ʄrK<:x���@3`� �s�\��3�$b�vؒ�<�Q��ؠ�=4`����<N��@>�<2��#�< � �Vh�O(��J�a���X�(l�Q���+��'Ϧwd��&>�a���`C��R� PR�m�#Rb�F�aL�T�I+�x��<(R9��!�?�܃Dt`<�`R@"�L\�L[r$J�� #H@�;Bd���@� Y�cE�G��.Ԁ/ `@&��D@�5�G){@c� 8@qA����ER1�@��pH�B��dP,�=���<`aa� �`HU�����g�����&R�a�� �D8�7��i� ��C<Z�#,Af8D"q�[�� Y��Q(���� @E=�"`F4��$C�X� �����e�}�����P4 �?<�+�A�hR��\��>0� $<� a`>��%��x�$�/� P��+�0(!�TY"& aQ$�ɀ�Q�Ut�W�>� ��H���\4H� �ӏ��P�8Q}���PD�6H��Af�wh!�����`�x�cH@��A�#�X@���G�C��{\��K�@�c��P� D��L�&��<!��b��3BQ���?n�[@ P=.�{��Є&�0�݁�8�-䰃.4����$\��+pa�� �Qx!WX�p�xT���E��H@N3�i`8��p� �@�<\��J�*dA�0��p�I4� �s���q�#� p�3�q�Q����08�*�A�A����h���*"q ��w��QW�w�E��)��4����� p0<a ~h���x܀M� ��1�A � �Xx�L8�<1@�@ dR�<����BV� @���,0a,!Ah�a�Kt�`��"�p�Ch���p���M\(�� d�y�t�0�~`� �[��+�`@�gh��j0@\�:���� ��}T��p���D;�b����� `�D���h q0� ��p{�]�n?�E�!��> i����7�� Z�c�n�+� � )��P\�Oh�R��(�aS����`@� ��6���|Ctp@'t` t `� ��zD`L�Fy�cI�� �Z�B�R�L@����<��S�������"vBh��3�=�@>��v\!7��.�4�����%̃ՀG'�*���@A�ѷx��8�0�{4"=\�� T�6��H�0�� #�p���Q�� ��쁊�i`�Nq2P���*�1�����N@������P�AF��Ё{�c�X<���h �������0�R�n���b�%.pU,"�y#��Axb��rp����m�LFP��A�����~6@���`,xf>D��S��6�G`p�!�HA;��L�/�8�� `C�A%0�A+��;X�>��PA|0��Ȁl�$��<�>p�A!܁������<C(����60�`�"h`��A< @�� �\@;�C,��X@$Ѐ`3܀$�C�C��+,����� t%4B�����<��,��@�d�(���F$� �����B �?h�T�<�6�;0A���]$܀2|��,\�Y���@0A8� ����6���0�AA(C' �A-��&HC��3|��;��a��� �C"0��C �XA �>�@�D�$Dl@B5�E��� �>$@=8�%ȃ�A� d<\ ܃=�lC<HA8,�$��\0<��B%��<H1D+H�'�A�P�C�}8�'8@$��$A�AHJ>�ALA�� �BD�0�(��<hX��.<B 8�|@��ި݁D;<�'\B.(�?��|��D��,B=����@'�CL�7,A�@ � ���@xY�@ �@R�*,H h�<�; >�.L�>Ԃ)�B�@� �'�)d�($��D�����|��`@�x�B#��l���� ��܀s�A<�=��.�=hC ���A�><�6�dC`CdA�@�)��4�C= @d�0�A`���0�>�4@6�<�,P�d�@ ��7L���C|�SD���8bA�>�@��8�1������4L�$P(\��H L@�@�C" >|�,�%�)��(�o2@<�\�(A�B<��x%0�@@��.<-H� �؞/l `�44> �d���VA�;|@D�4@0�6�@'A(0���d̀ �� $����C̃>@�A.�܃d�<@��L���P�.�Q�7<�8�B��K�8l�PA ��A0���>����C%AH@�>��, ��C�p�>�A!��\@�� 8@�*H�l�<C���C?��� ��4x�6�?$T�{�A���5��'0<�)�8-��� ��&�,@<�T��;l�ڬzCD�����%@��/<�����h�;0@6d�� �@��0��@!D� �B���q H��>�:�@7D�(ă#>��pB^5�/�@ D�0�0C$H;Ѐ��V��̃�Aă�ݒЀ�;��!@�&ԁ�@�Bl��)H;2�*Ā�C��@00��BXL�A7<<*��;Px�&��-�@�@2�@*TC�1C0<�$�@���rj�7�B��<�B�r-�� ����0P5�<\����B>0�0�@�ȃ���C�(��`A.�@��,�AXAo%�(���,�"�_3@&�>�C�:��*h����@�-�����A>�4�'t<�C D ���/ԂlA<0�;P�/HC!��P�A'@6H��@�A!|�Ch��s�����PA ��Ѐ,Y0�4�|A,L��*��4����@���@܀ 4\����2xL��P&d����I����̃t�= *��)@T�X ā48Bd���3,8�H� @,��<\�-l\=�LԂ AX������\ӕ�x�)��\���=�o"�i�C `�4N��Cx�P��-��A7<3�"�|@��A�?4��E���X�<�@��Ah=d�-B B�C�4>�%@�6������� � @�2�UA�-l�A00@^ $�9\@dA �����$��6�q�>B7<� �h��@@4�7���B,�CX�#�2<<�(0A�5��C7A?�@"`Ђ@<�)L��f���C0�.`�`$X8C�<�C�>DAKѐ��tA-h��@�A ��$O�$l�� ă<�q<<A4�3�@Ѐ3����%|Y��.LAX�p��@�p>4@/��<�l!|� >A(|D&��(���3��A�0� %��C��3��2<�|Ā3�����5�@0���|a��V/l��À<��A+A2�1 A��PL�C ��+��@ �@��#�4|�|�&� ���4��C(��C#�<$�\A��4�Ci�=O�#�CLA<���m�*|�0d�`�=�A(d�@"(Ʋ@` ă�� �����Q�� �00d�@ $��;����$4�>�A <�.@�T=P�>XN6��;�=8l��+D�h�,�Ā��;p��� *«�XB�@L��I�=�G;dU$�=��5@)�@�>d�4<� �B�-k>��ʁ�)(� A�1|�<,@��03�A\A$PA�A8@0�2�l�Aėp���8�C.�C9��4�Y5�C�h�0�"�A�D�l�Ĺ��XC*���A6���hC<��=��CH@ �Z �����!�@�@"\@ H�h�!�� �A!���A��B*�<�@H�4`ȃH�C+��g�?BB�<$�=A>`�2�B4h0\�����)�A�+�8�3ă`�.���8�|@���B�@L�ȗ'�9< B����@���Md�.�=a����@���a��C� >���=�C-�<L�*�BX�&� ���Ԃ�4�0�G|�'�\X=�M_@!�ڃ-���A@-�&,@˗49"P��@ \*4�x�A��,ʂ��4 �83��Z�0vA�/൛c@ӯ'w@B�L 3��g`��5z��Ǘ�6�� ���� DdL���Ez`�QvI:���,2��D� w�BI`G':������+5I�8��� �N���;4��0�i�0�9h �O�;r��K��JL4�2O� xX��V* �z�@�@�L� �hC�/���8/N�$8����y.I�> C(: �hr�%d2����J��%��aaA�JȦn�CEpa̸��6<�-� t�A�qÃq�0�$��w�@��"�!e�G����B8@�>n)��g&��0��-Dp&�#@9bw����j����"��HYe{�(,��@��Bx���o2�@`�@��r�H��h`�# |��c O|��& �z<�"�R�i�LY�鄁;��grp��� �l �Cp���3r�axP�W~iCyfh�,P�@�>��A P�M�@F����j>�d&g��6�Xb�JT��`���n��J�(�:��ӏ'�aB���w"P�7�@��x`�'�%�1�'�r���N(�g�y�IA�x�Z��{���! !��~�f�,�Gp`� ���� �6�dP�`:VX�a'�<l2{���L��9{�1��j�8�8Ĕl�Y�K�"�|ne�I0Hy.�B��A�M<�`�x����#��/8F�)h`y�(��SJ��v$ %��X`�8`�Sn�(H��v0B?tA��A�}�q�v�P����`E�w4�"��&�``v�8�Z���y�`'�#�?"p$��p�L0���:�A#r� \�h�;>p10@f@�r�M�#!@B$n�vX@3��=�` (�"T�-p�۠�.p�y�!��l0�Q�VB/�� � �(�->p�@L��h�|��O������4 .�0 �<A <��W��`@�>�aT�)�{�L ��(����">���$ � �v�L�c��zp D�x�3�}�� ���MDC�g���{ �6�I�C$� /�0p�(0 iX�,���/`AV��`p:����P���{(�`� �E>&p &30UX��FX� ؆�1�� ��d4!"#\Ѓg�! xpp�O� SX�*�1�'�B��C<2 �}�|�Dn}�W�Bjq\t��B(*1/( ��F@���`� �@"�"�,p��� �1�x�"��,@�������,�dX ha�9�`���*2��a�(�1� ��-��=�܂�h�#�a�DL�`��Q�����/��@�(`@� ��Ci���r�!���A4@�c4�Z�4PY�`xh�p�t��.���pX���[d��Hp��T���0�~�#߀C��Z4B����p��B��;�@�D��H��1)xР��Q|��th�=��A�h����`���S�B 0 P� �ЀF@��� �8�?� @ �! |`a�h�(�� 8x��g@����^��C �����g�C�<��(��Y�E ��@��H8�R����@�pyd�ѨC�ă��B���~h`xC�?0�p�@���� X�;䡃3T��PE0�j�6�p��/�XE$4p�B R����#P� �p��j[P�=�<p98%�x�<"p;\@נ�<_d�I�*0Q���2�B��||�g� j�Ԃ '8�4�A�����v�@n�T�A��-��4����Ypy,�T���G�C:�4��t�r���q7d��8����"�aP�<��Ԃ��@ ��B����r�|0�:t/;�&�� ��8�/pq �q0-�` �� ���R�*���P(`)��dP=dp14�Ո����*�H�8�}8| @� �8�\�la����<|,����/�� ���18A�`�=��)Ё S��<�a�@��" h`��L��� ��ځL!���AD[���>H�p9�@{4�vAP!�`v�\�~ ځ��` "��a� , �.�� N�.��v���!������@la&>�a����L�Πn�B�����N@�A �.`|�� ��Z@ @� �4`�@�& ��� ��������,��B��n����v ���`v��& � \ 2���h!� !�� \�r!Z�� D���H!��@@�A�a VaΠ ��R f`���x�r`�@��A�`$!p!P(������^a0� l��`� � ܠ��-ᾠ��!F!j���>Ax��`����@�l����X���T����`6`��MN� ���m*a��&��pa�� F���� �av`>a"����a�.@�� ��ء >�& zh�@��j j�t��� ���@.�@4��� 2`���@@�P��`�j�`|�v p��!�!f@ ��S�����*@N ` ���`��N�A�d ��f`6�P���F!�@La����������a.!�� l@�x �ܠ��`��� t��������`0��\��ڠxl�AH�R!� d�A�����l ~Al�@~H�d�>�:�i"��B����A�2��t��@@�p�N�>`�@"����r,R��`��(I� `�A ��A��*�N@�`� @����`n ������&���4������AE��`O�!: ��!"P� &�@� v���` !�AF� �����A��2!>� ��@� �)��` ��r`>�sX!0�X�h:v!�@���� 2�>�@�4���"�<�X�$�� �r�$���q���S�A�!J�42@(�* � ���X`* h@z�p ������ � � jJ���2c ���@&`L!�~O8a@�� �`�2aJ���n��!tfR� �A ���p��N��` �� ���!���a| B�!�� 2� ^!���v��������Hax��T��1� �� � �����n�Jcz &���� J@�� �A�Ap� �`{` d`�`x�Җj`!�E)`3�8�ap`r�����<�8A\�� x ��3�|`� �A � �`�a8A��Ȁw|/,A#a�Z5"�8 � t�X` z����@� ��@mq $��aaz``��@D��`��� `� �$�d`" �"�(`,�|aP�������2 2�D�����(���RS��^a Q� �\@ 6@A�A�`����`��I��B D&R�td �4\6Z�!V��� jqL�� �@A� :(ha�ʀ�5h`�`����B� _(aOg`�i6 |s�`��: ����@�!(�<a�a�p�k*��h9��LF� v�N���a �"���!�" h�0����dP� `�b�~1Ρ�J���`ء�,`R�� �` `> J�����v����B��� �!�ځ2���Fx D!Z��@���b|@�@C0����a�����@�@a�ap�`;�P����l@GZ��� ��`�4q@"@�f �N f�0���ځ0��!<y �l.�P!�a,` �~��aD`.��!�AP` `z���*a� ,a "6��f������a���f �pa@����@"�r����� �q���`� �� � ,�Y�|@@����� � ��Y�|���~7S_�h �!l >��2@N��@`<�Xa�� ��`&�N` �z~a�`P�����.�Db�� �AR!� � � N�ށ.@!�a&�p��02t �� �f��v�:�z� t�� ��1��$� \�b@��L�Uv �b�D�.�,A��Xa>@�o�`���g)�{�:��D��@ N��������c����8@ (@> �a2� L�0�n �AV�@~@<*B!��g��L�|`j ra�� H � ����`|��̠>T ����ԠZ��� ���>�g�!��C�D��C��5�n�(@��fs� �~!�����` �@��`L����Rl ��t� .���` 0��`0��b$��"� ��` �@@6p`"�T��:�l�A�X��D�� � N�a�!x�Z�+��b�z5�J�2@& �`��l � �A� �>� �`�������!�`� (�"�� n�� T!��� � �@������ � Fx����*,�'��Q���1�?~q��[�&T�&�p@ @����Vvd��� q��P�I|�TŨ�Ξ^4p��P�m���B:V'*�ۀ�Yk~(Q��B�Z�a����^�s֠<P�~i �&�;0��@C�+�Ի�7�|p��i:���0.�`e�A��CD�BC=!R���g1ޤ�Ù!�d��C˅Hj�S�G '���Q�A=z�:s��x��Ljb:�2P��@A=?;,�����:�5pB+� +���.��ӆPȱ�,(��B�4��>��s�+���;�G5S�E.��)"PB"�S&��3�hЎ|��"hP ��)~��d��<�,�C2�đ :�Բ�<Lq >ذ<9�"���b�,� ��A2�H�ȠFx����>��IK�@F�A�T�r3"@� ]�b� q��&7�"�x�Q���r���p� \A(�@u�B��&8�EV��>m�r��8a��3{�R�d��>� q�>H1�*�#� 0�|l�B�P�|��̓P��HnX�D9�ذ������3��p�|x�@;|d���0 H\p��X"�|��TP�-�p��v(���Pb�f`�\� ���r�`C�@ ^��I �(�������CQ�0�����'҉���TЄ%$���+�رs*8�K9]8�ɿ����7$R�&�8q��$�@^�A7PBEB3��+��1�?8$�<z��H8�P����3��3�e�|!���|�%�q��4)Oȱ�H�A�O��0�2�1OH���`�@ r�s$aJ&Yb�4L��@�0@;��S�CG�F��̣��\��� 8�<B��U`���� `Pbi@�<��Pv(�&�p�≀@��&0n8A�nP(�>��`�k����p� �G4!#P�.�G%�`�l���@�PM�!N�(�p�yT�{��`O�`'����[�A %� �20�V�D0vЇ:������q�@8��0�Ta60� �a`��N̂F��(�+9��`����D �D<r@g�aA�G#q�:t.�A.�G�WC���l���-\A����)0��`�x�pC, ����hGZf�;�3�Q#�%y�J�E�"��`"q�cdal@�,P&%���G���a#H�N�7�#�>p��4���4�$#�����T��@� "�^.P��{h�."�J(� �x�vp�Bl��(�%>�N+P �>Q�"���p�:Xb��D:��wЁ��;䡄P`Y��$:�!��@>tp��@@�p���<q (�����&5�1���(�<&Q����'�P/��{��0��`�b�� D �`�0 bnP�3>P�2`E�@ 4�G���G;Ȁ�^�`x=��e���-40I��$0p��MPA;ʰkd�UȀax�b lA1�H�@@@��?�F����+D���A;p�T��@��P�[<� �sg`w8��;���1�� <����gd)��H�=X���>�!рD$�0�<"$\x�PЎ���u��Dz�# *P�Q���/�x�ah��`C�p)�av�XB��qq��h@ ,`�C����Ѐ;p����x�/t�~$�xQq�2d� �8@#R�k��٠;BA���6v��}�@�@V(�' #�X���:c`��a������/���(#�$�?b�@���q�2<���%���A\x�-*pat�>``�%(a,������UP�c@D �t�` ���)�0,� �x@�>�l" �)Hܭn�C���� � 3� �'<,PB��7|��6��;n��8���@�!^q |C(Bt����]x�<0�#a�Eh��y��QP�A~�G.�lN4m�pF*����K�@~ �O�a8��D�A�!F(�ȐA4H'�J1�ga~8�<b�����)p:�D��^���0�юd`�Ґ ��O�T�������?��'�z� y�����p� Ap�Pt �p�A �`����Y �� � K���cp<P>��@~0:�İ60N����'�\��ct�`� S�b>�6ՠG�!�]�� W��=� `�P��|�&�nW�:��k'`��m��p���PP YP C��`�d��P �@@��0H@�� b� T0`� �0[Q��@� "�`�` �` G�������0H @8 ���@p�� ;� W�� ���P�@W�M0�@��0@�0>�=0M�Ȁ.�~ a�c� ��3�����G@ Ӱ)`�f�c� Pr p�̰ �������`���p@$0��P �X �@�po@!� o0 @�p�p$ d��� Xp ���Y��0� _� � �U��2�/�:`]��P+� /~� �u@z� �K Ap�@ F 0�0��\w�G� $��� � �� a��~�y�� #���/�� �@;�8P @i6�3`� @G�s`��`p��&�� 0\��3��`�0W�� Q�V�O0@g���@bP 0m�{)��@��3���"��P�@�K@ ����� @Z:@ #=@^ ��0�����.�,PJP�0 H�]`�֠�P P� ���x`z�����Ӑ ��=� � �`�F F�(1�'�)��P7(�bZ�V ���� �oQ�� �0�p:0�G3�����`Bp" z�B�` �q��%y��I� f|���� ܐ�PfY�!wG��^�K��`?rg�ɖ 8 7�P��7\ :0c`� )P ���jDi� d�����H `����p06�y@�@FxNP ������<P�P �`�8�;0������70 �`P�3����#� ^�L��TqA4�u���dp9� #K��PO��QP%`����� ��P YY"�Q c;0���7���b^�d�PfP,���F`�@�g �`Y�B���]Q�S�i �0� �gJ�����`P�PK �q�9S=9� �� )@0 80q$p4`��7 ����l.�=p^0z� =0 " ]���2�6R��i�q��0{0n�?���2P#� �n�k���p� �@ 9��y�L�x�OEp��aP.�B� �`��6���5���w� �m��@ NP��-S�>�``+���� ]@�p�FPr)��`GfP^�^p|8�K��@�������a���ς 00�`��` �p������ `�q�� �����AT�0��q��cpM� f >� ��M K� �P� a5]��� pP�E`o0�0�$ٲ�PO�K0 '�30�pg��L K� ��@ `y��� �K�7 �O�K�p���� z�����D��1���`@p�q,� ��@:@"`�P.J�p�� t0S���I��a����@v`y���0�0SҠ@ u Ȁ�@�����0 ��"����p �q�C`W��p�o�L�� a��@�p(�-��<�L@ �� ;�>PK{ �a�� ��e O@3�Rf�` �0G0�0�� 0� V��r����0>��)�2`f0W�V�� >0nh�ip�z�0�����͠�0 � J`v-0c; ��Y� Ҁ��?��i�� !�oxKps��qP ��h��K�@8:Y�K q�g����T���l���i �� �2�& �pj�@p;���m� 0 {�V0 0yH�&�1�,��A0�S �L@"������+��^��ۃ0T�e��0=��p\�W@����y�`�6� e\ X��K�XH�z��� ����3�A� O����eJ f�.�0��`"��[@c��U � p�e0p���;pr� ��� � G�=�|0� ��`�@Φ�@���.�"�=��^pepeGP�@'�� ����5�S{��p@�@)�8��p.@�{� װ�� ���0 +`,�J g ��T>��� 3�6� K�zW@i�����w��@ ;� 8��T�� �� 7�9�/\�Dy @ Opz�@ @ �lb��P@"���jP@p���`� c` �<�`(�;:�0��0o� �` ~>�� L"��9p�����p<p�� 0��c.��p@� ~p�B<�a@^�� �"��2dp��0��T F���X�Q�@5@� � @��:��@ �P;p9�.a�DR��A t�ʜ�%;@��#)&<*����Ò�1��}V��K0f�H���MP̈��A"���A�i��C��H���� �(0"���m$M�#���U#�Q���A�Grf�(v x���P�%05��!�E�����$RMx�䂂`{R�a2��ؑ�@!eP��W�R��W�;�`q𡐪x���0υ#TJ� �P�?I���ܬ|�p "B�~wA���C(1Nް{�L�m�8bp�>i`=�2I�/(p�`Jt �v�0���,�E��a�l����}a�����Ȣ`�H�j{�!#䱢l\�$(�C ��"Jh�T@£�¡��>��$ޘ�6�e�]�`Dd@B聁}� (pH8� p8��y���l<�G<4�Hd�<DȢV��{p�a��&DȄL�i�]F� ���@%JȀ�9'� ���G� �HdI� '(i����{�8@w�@a�Yv��+���Nt@C�D ��y����8�t�B��`",z8"�Zi �.���Ƞl�����Y"\ � ��;t�#�\����a�y��RR�E�2�"��C�Xw���8�vR0�(�"&����w�8b��q'�;|�#x@���b�`��}lD�@�y��F$FH� w0j��G�g��tƀ �$&` >� v`a�V�Q�$�Q#(��.��A��� HZ�ƀ$��|<�A� �X�@aZ�y�#P�Qv(~��٢�3pF*0`�+>� �����xH�:�� \��d�)��xh@�l� �영xq8��_�;q�1{�#@r�� 0�>x���=��A*l���H2��� ��A;�a����;�z�#�o:���@~x� �� "S��(~�v$ ���L!��@%ܱ�8������h��n��-�o90��0H��.z�M� w�`�oآ �@&v�p���/p�I��Ȃ3�1�!,����1#T���<���|��6Ȅ0ЀD�C��8@2�p�jĀ����yha <���5�A��>l`�La�HD�h���}(~h�=,&�� �(�Z�X& �;Ƀ�@$��-p@@ΐ�0�a�B�a0��!�#��\���� ��,����P�<��0�0�8�)c��D�'�,~�AL� �]�HA @� �c+�G8� jR4�����y�"{Xp0�$,�bp ��U|��8�;��2�Yw�>� ����<�`�Zp� PB �4, ���z2�Yd� ���`��`G �:�c�P��0V���_=��_�i��D�`���5���8{<��.`��0]4�68D���̀|��R08,B�XB�Q5V"ȇ^� T`��z� b���!v�B���6�`.`�;n l���E"dC� ���Gh@D �P���ЃT|�� Fz�)t �kH!>��Q�Gx�� P�I�FV��4c�C���0!��(.��"ԣ��.�e`2��=0� t` ��(�L���XA �#~�8� �%ă^��5Pb����`�<P �c ��!�Q�p#7A��<@$PD���p��͐GLy�![��̆zt!�8�8�����,<�0�`8�1�� {p@�܈>�0�|LbH�" �a�E�A�x�a� ����2�������{��pX �q�C|.`�~� M�#�@��� (�� ȡ�@B.a�pB V�:XA�#0�K���=4@3��1�t���*|pZ�"�`�^�.@�Ȁ�+��(4Q�m�@���o�C���z��G�)��40�?0'XZ0|c;PB/|7p� WHD���Xb^�P@�� ���(��v8((p|�AX�1��v����+Уa�(!;�q�8�0N�E�ñ�A��7l`Q@�<(�]l�Z p>h�$�S����j��x��P��<0�e0��UX�ȇHD;���k�P�<`x �y�_@�&X��p�%p�EЀ�py�x�@ ,� �h�Q(���w�y8�O�8#88((�<��s�j��c0�D��}�xK8�078E��rW��p�� �X�<(�X�����S�U��}�^�w�Z8X/��n��c���h�T��Y��%��:x#��}Ȁx8�)(�PP��}H�?��a�JX��R��y�-K2�!��>�xЂ �?�t�l����k�v�K����28{�?(h/(�%P��Ȁ��Hv��U/�VX�>�ڛ�!|�sЃ �z���Q('h��<��<�&HzP@& �{h+�X�/��6P��g(�8�)�a��x�@��%��!��5�vh� �~�pv� �;���b�f��H��Z��Z�y�-�{ȅ%�*x�hX�P�J�� �4Є� `�; �7��,x�X4KD���l�x��Ȇ�JhX�4�`�}��l��(����_Ѐx�X@�x7p �Z�؇�x�`SX80#(�q��z �3�Sؗƻ� x.�k�`�'��Gi�/�90���W8A;��1@�vbI`'@�v0�x8�& ?ȁP�38�Z��x��x�I8�8��ix�.*PE��+�<� O�V�$��I�%��8�''��-0SP�p���d�Gh)`��V�1�)�7��)� ��gX�~H�S�hO1�|�Nh�>��P�zX �R���N(�ȀIh�hH���wP�`� �J����IBi ��.�3������$`�EpC �x ��Hg��8�2��E��`vk/(.�' �Z��JX���)8�� !� �,���#�(�b�vB�x`�B�h!&����[��K�P�+& ���-6�eO��^��-��2p1�M���C�4�`@� ��S� I�;j$@���>��ȣ�&b"�#���AP�ɉ��%Lx���Γ.�����J���;$XĹ�@ǥvd,�щP 0��?�@�1�E�qf�X�8(W$�`E���'�5j����j�bI#ߴ�ȅ�+)�Y���"X�e*��8\���琶B����;��L�}�1Pj *u"4M�a�S�� �@�ă �A i �B?\�Bo�4�g�� |����b<� `>��R�Hd M��c�L��4@r�t�s|0�'������<�-��Ӂ<@Ge��C?�Edq�/"��?�آ;�`LQ�#�;|�����K���+U("�=m��q��ed�N>0� >��}�Ç^l�IXt� A*�� I,0J(�� ���KPp0�L��#3̃��mH��q�B>��C�0<51�\�a@���T���0F�資�8O==h��w�SN+�q��\p��r%�h�OTr ��>=0�J Z�D=�8C��4�N �0A�xr6��n��N3�\�B" ��B$���t@>�s�\�>h��+D�B,PC �SH!��PM Y�Ѓ�d�E#\FD�p�?�4�0��PS��A���m#B$B�|��)Y�I?��C�6�\�� ~��e1�SMT�#����,q�=���<7�<��cO�(� �E ��`c�<(�><a�>m�����))0��[������w�O�r�|��A.Xp�,0>��Ad`��!�y�)"�� �@��8��p���/Jl��@�!�%�""�{P�XB�P %�������p� ��/䐍B,@��*|L�)Ѕ7vx��x@v��3�b����p�E�nE�B+(!40� ��4������E:rl� ��R�|��<�FT ��B�V���H����8�5��ц%@��@�v�p! P�Db���!�d�3P ހ�� �XA������@�L�a�`���%�Ch@*`�cA��>`��:��f��.4 �� �1�آ\@B��H��p("~UUx�X������7���3�1JA�.�z���A�qAP�F4�0Q�@K(?�| ��/�@��-��(�b(C!�� �0�h� �8��@����i�$�%��0` �Є0>p�1$H�B1 )P�<�?\�J����G~q��!�p�/8�}��1������/Dpv��aJP�pd`���\q�����7��*�G����� �p0XcO��6P%�aAE)l� Ĩ�� <�LX�tP0�x1�6�B8a y@�@�;PPH�a��G�4�T��*�z�cVX�x��Z�&x�p�;H�fX�v �(#V��⁃#,����@ l���P�Q,#+p�`ap�� dAI���l�/dc� �$ 0+ЁT�@H` �`��A�Ђy�C!�� j���"����@�4����)�8`@��+����7 �[9�$&� أ9Djɀ�`�8��0 <@ 2=��p�R����6 8�ޠK�X�.��"<�uX`�#���'\�}��,�����PSp0l`w����7�A�`>0���c��GR`�E�Q�@.0�w��H���t�hPk�6�B��x;q&��� ��}�c�X�&n ��>p��`�`^���tau��(p�6 ��A�@$t�c�C��A�h� ���R��T\bh�-\7�)�#88���d���t`%`���B�� �bWFu��@�0�A�����,���G�� �c�Z`�|��4�88I��Ո�y� ��(n� �C9�<t��[\ABp��p`�9��T� #��vȅ~�/pa\�������`��*���{pc�o`, ��C`q�W� ��pU0�� �ʢ���Pp� �� >��� ��b�İL � 4e�8@c�7��0��� ��~�ZK�xp�f "�A�!��QQ������@����]`�C[��W�Y������N���A�aP��6 ^0�G� ct�c���HK� \����b���0>����� �| /p��0 � #���0q ]��P p0t �p�P ��e�0��`9�`b���'pd�OP���@ 0���ڰ�ܷ&`�� S���C�` SP/9>p8@ ��-`���a� ��j����f�@�`�������V���zP @;�]�̀�@�@��0x "��0@GT�H�^� ـ�w�Up�π� �p��{�R�<ɐ�8�PU�{� ����� PY�{pK�L�mP@��` Xx`.�ߠ�c$� <0 @�����A0���P�p�00p ^�>� b�:��@8p'`.@`�+`� O�o�pS���E�n���Q�� � ��E� P� =�U� ��%�Px�$��� {pO�Ґl��@��/�A�����F03�"p� �p�0�@C�x r�B@<�K� |�I~� ���`���&�60� ��>��9b�o�@���@ �ny@�p� pW�p�P7S�DS��0@R�8� a��@ �p� K0 ������ x�F��0�p�GPg�b�*p�� � ,) � @��;�?��Vp� `"�@��w�.��0J` &J�� R�g��� #p ��6@z߀��^Q�� p@�`� � O���9� �`:�#�B V���@�P��-p"�4p�0q"00���� �@��>� � �@q@ ��np'�@�`�z@o A�T�*�0����L%��Pl��������`��)WC�0,�<>���\`c N �P {��ʠq�z@5�$p:�>��020q��p !4�r0|��r� � ��>� �<Ҁ�v^�p`0 H� ʰ~�/ �Xpy R��P �'�`p� �B]��� �����np� &�'�"����~0G`x'�R0��@�.P�� 0V���- ^�� � �P "�Ap|@�]�D������<��t@I��@R� �`6��}��@O�f s s�.`�2`h����� ��@c��p"p� p:�}i��� ��� �x�Yp` ��4` k�� �@�@9�=� �PP�y�T0��<.0L@G� � �/Q����� ��p��( i`���@�5@��א�@�p�L+� ��@u�) �����@=� �`M�eP ����� �7�}v���p�p�Pp*@��� `�p2 �����i0v0Pπr+���6`�p�|���ye�$��`�� �� %`�<c�����p)�ov@9�c��0=�K@V���`�P P >�e@�� A@zй�Rs�L�26��� ��& t�L�X�R�X�����E`���� \Z�j gp�8���0-��Jp>@�PUPmP ��E-PȠf�`���c X0P��0��p��EB��9�X� ��`��np��p� ��mB� ����G�k�����+����9e��p��\P>�y�܅�^ m@j ^� ���0� ���� ���Ϡ u��p� � �� �t� �|�t���0�p6�Y�)@�"�Ƴ|]�g� AP���=R�>�ŠC�B0+�:��?u੶pK���0 ��a�6�\Ϧ0<P&P�`�.�k>6 �`VPnS@����08� �]�� f A� г � ���?���V�+|p�� ���7 �k k� ��T:�И���!�� ې � t�� �@�`����$r;npl�� �"� 0{ |`TP ��6ذ(`?��� 0)���t=��� �P���"�P0�<��@?0��@9�p ` �� �8�P��%@z�I�5!3A� p��W:�t= w�=I� p�xc� 4�@����d��b�P�:�r�m DB0iL `�L@_�3��d@"���� }H`�@^����� �pp ��t�U`Zp[� +��%��@�>��' �p�p��@z��0'`�&�0@!� @ <������\0S� p�%;M����I0|�p��M�!s�>P����pP 8���K A`& ��` � �J� L�'.�L�:� ^���|��N\�ð��c���1��`�ǘ+>t��#{�� �슞�� ��k�YV��#�Og�U㴣L�ZXx�' .�(��W`O$V�L]�B�F����`C �xa�D�iL�c���AZ�# DW� ��"ו)pp��L4����ɖ�T @���"����@,;s��uV�c|�11R&l��"N�,� ����`ft��F��/�rDb�A��{v|x�p�E$�]���ˑ6�Ĺ`k�>BA�� :`~���`b��2�Pi��N��#p�P� oH�\ q��t�A�x�z#Y8 ���Ô7��/���`�p���2��m� ��p�0�0q���#,�iI|P��%zȢ�=�y��I�I�Dθ��=>��:fx� Z`�I���Ur�YP�!`�(�=�Ч�4�X��?�1�G��c��0#�P�FHx!$�P���o,�`��A�U2Y!e��a '�h�(� ����p���Q��HH��BhC/�9D� h6R9��K���H���"��[B�E@�g��B�[��C �Q$�J*��+��&/j�GyZp�. �*�Hu��&]@�� " lx`�B�@�ina��8��H��� &� Ɓ&�q��V�/�y��O2��q�%�c<�A��nq��k�!�Rx��Pf��&>P���i��&�أ����=>�F�E^1����b� ~�����g�;rD��q���`�)�"|� �>(�K��a�� �&܈�x��|yb$�A�$0�E61����X��;��A�a�{&xAS�����@��PO����{�Þ�Y�>ΰ#�p� x�D(�� @0!'"�A�!A*6���c��-^�b�h��0�!:h�0Џ�m�(�� �l�`��D�0��!���5�Q��ژB*��f�A^�D�q�#��s-2���l ٠@1D0�8D��p>1�Y��\=���q\eH`>�@@D*^���!�� ��la �@�x���� Q8�$a�W�B��<`����PF(���|��L(4 S��X�$A\�v��7Kt w��P�B0���+g��,!\ @3����� �!4���#�~�4�S�'����o 2`��R8�R�#��@`�L!@��9K���́\�h��A7�� D�i5D�'���P<� xA����@/����@ �� @b"X)��48b�0B&�>4 ;@�R�a� L@�������р@ f��yt�� ���$�$��B|�>hf�!5+���)� 7�B�@D`�w@��/� 4���%(@xAVP�&��8���p�l�:x�v� �'���䇪 �A4`�@ �� ��}�#=��4�4` %(@�a��cS��5b�� �6�@6��L�� L��_�"Th �09P����v��Єt�I8�6��Ja�{`A0E�`��c��������Ѕ<� y0�x�=�S$��� 4�T�(p�*������`�W�b ���!�� �c�h;jp�����X�0 J8A�G�(���21�J��wHA�1̣vOX �p^��gX@4QML����i����.2��P@w`� ���"��<�,�c:H��`�Rp�X��� �C(!�E0����8�"Ƞ~�@�FЃ�`��C( R7 &���Bp� X���=@���P��a��@�%�p��:�<�p�sXn8�^�#��'�a�� ըx�N P�E��'�?t� P`�0�"na�X�)��2@ q@���!�G�����=h�xE0��UP@0�< �XB��1�Yø�%����]��0m��O��%6p� ���B��0�=T0�R,��x�P�0�p^�0HF�dX���;L`� Rh�>��ǣ���$����P����`�>�Ap�0�c�R�D��>��R��|@���D�57P����� 9�u�zpCH��t@���F����z�� hx���.0/Є2�Px�%`�Z������y�Ё0@AX�#(�Fh���&���#��)@�5H*��]H �^n�[|�%x�S��`�H��x�s 0�dK�4�3m8��8H�#HM`(�.��/�=�� �2p����� �1ЃH�d��}�Ȃ"���X����m������2��Z0Z��6ȀZ`�4��U��6�1��O��Ѐ2|�^�$ � �_X[p.(�J�2H�`� @�>� �#�Y�J@�>����)8�KH�x�-��l�eȁ8���j�k`�}x0�28�C���~�P`>��;���W��H� ���8xoC)��1�!�<�P`0\ �|��SxH�X���7`�фO�}�j���3��!�'��L��h��-P��@�5 |���\h�0�m��d`l�g`��%����E��X�V�>X�,Xa8��V�*�U�wЇ�i�Bԅ+&����N�6x�wh���pHi�#x��%H)?�*xH�'��a��p:f��R��� p|0� ZE8�`�18�}`\�hXY�a��(�'��F�i��:�=�� T83���K�o`�\�0�2`Vz�]P#Ѕ�5US���~x *���J�ܡ#���W�%؈�Hp�_��x�F�`���Ths�XЁ>��\p���H� 0�� �1��y�`�`p���zP�<] �4��*Єk�?X� �O�RP/�I��'�1�8b��i����!(�x��e$�T��d��p�yh���3�J� ��[�P|8��v�.X�%�>0q�xp���9x�Pp�H(�� �y���L� �}�$�`��]� {��4��Fx+xw8�OȅZ�;��H�)_�m`�Jb$��x�[ȅx$���M �(�\ ���1�!��(H�p�:xN��y��%�i��o���%�Ex��%�c�H��h �4�:H���|��2x�y@�'���d��Dȇ �px x �� ��/�ZH=h�7�9�2�T�e�����m��P � h�I��8d��ȆT1X�0w`�����m�8�� �v@h���E����|q��Lh���L((8�k���]��/h��xȂQ@�0�fX���%�+X��(0/�� ��4h����'p�[����T�:(=0�\�<���=����y��#���`-8��IЇ��ppJP ��n��\�zX$��(.�`�8��`0� 0p�8�x���p�@��].�z�5�:I.���9���4P�z�MІ,�<X=@� 8���:0�Z0�����s�_��*;7� Ѐ8��G��e��<mX�_x`C� ��㊇xȀK�H�@0�p0g�V�+�y0xh=صF0O��e�`��x/�`�^(��Pxi�"BЀ�h�9�I�$`��+�(�:p��4.���H�!臾 �W<(�0�8���ЀY0�~(�z(�І�{� ���gЃV��h���l5('�6�8�q�Mh��� ���l�Km��<�Q���8;H�x��@�����A@�*8� �#�7`���^�nH���V��@À#�D��T�*�Tq�a'���e�)��78e�W�=0���v�� ���H�Z�0.�;(:h�YX8z�3ȁah"<hX�D���0�%��`��tD�((�_Mv��ˆ0�%�?��G0�e8���H6L�hp<� �)@�B8|�@�v`�p�t�'h�qw�Y�����<�q��L��kX��3�i�����L �i8���ʏ>��-��Yh�k6��P�d/��7��RX�8n�_صo<�K݁Lhr(�6��+8x��#��|@�?�*�9� �yHV�*�8�(� �9��"�U�xDH3�Y&/�@�9��m��0g0�-�&����%�)x$��$i�� �3���� \X�ȇG�x���p�Ob�ȁp��+0YHH��B���} �=��Z��_p��ځ�U��yh�.P �$��7�8?�e{���`�.�2m@�\�Ȃf�`��5ȡD�y�=��`�j� H�S����`��[O��"-�ho(d��8�!��` �M(�v�=��k�&�%Xb0`�P����k:�h�WX�6*@���}�3���J��Z��lX*��<��Q�c��5h�1��wGu�^�EP(��wҁ{Ȃn�'��Ɓp��#0�dp;P��H��U0�+(�@��&�(��U�Ipk6��8�)�1��:�/�/8�%��ȁ>����+�x � ��>@Mx<�$�,����0�T�F����!ȁ#���-$=E���3@�>�%�%MH�$Ȁ�"�&@���Z`�>!����h�EXн�=�<�\8�`@�5��8Ȃ��B�*@��|�`h��h��V��B�p�z ���/�'� p9Ȃ1P�3kM�{0�p??` �U[x����Q��R�� �D�6��+x$����C��̋���vӬ���<� y�p%&2xR�D�L6(|�jQ�F��L@#E��J:�8"EHIi�u�Ԡ� )�`;���a`�4b� �|����J�l!|0��,F���<���ý�̀�c�>�@LyrA_�~~=���˥n���Ku�W�N�B20!y �8�cF#�.`�슋K���K�ǀT����y)����a�v�-��@L Ka���<�����M�CL(-�ӥ^�3�4�ӑ��3�lD�A�&^, h�:x��=��C�78���[�Ѐ5�R��|@���J!`� a� 2�P� ��# >mH��*m���3.�P�"w�]ؠL >p0@ <0.G�#�%�0�0t�#�*������=\���P����� 1��̃�m��L@�K̐�oأ����;p�����h�9J��M)H��-e�D>Tp����<-@�4�L�L!������EA<�N=�$��47�` !B,�t*$�E( X0�10� ��*�����L �@a]�jӀ� \1��>4\�oL�B<��El��"�P!��� ���%Ȣ��B�>Gp38�q�S�p�@�\13��)\ ���@;4cщ F�0C���$1A�0��,�d@�� +tq�8@b�����;G��G>H�O? P�[��A#ô� �I��@�����(3�=>�҃g`1�;pA>��F=���-c�B('(0Oט�r�@ k�`@z���A����>D >qdT� a��L��+�\3�;�A�O�C�8�@�%���x@��4P� ����S�a����p`�8�2O(����р &�8�� ���xhA�P��Ѐ��f��;P7ȅpp{�����)<�"p�)!�z��`=���#B����8`c�.�(aK(G�14`A�B��;D�@�E�&��6� 8a�;H�;��;��!c�<"J���h��` ��B *!�4 Z�r@�� }h@&��c f��@ �C̘� �aP���� �@�>��w� ��#db��<t� �p�)V�$!@`��A�#�TX��p�1a�A���}̠vN�7^��x������| ���W�"������-8`^���`D�"��� �C�aC�`:@�R��H��f�J�������+#�C�Ѐ|L� �&l��XDB�|$`ƈ���b�a��=�H�}0E(Ѓeр���^�SDCw��,l�3T�zHC 0�d�xC<l�����@?�$�)��t��/ @�7����G>��DLc9��%�\���@�5"A?�n����&`�!�Cu�'�� N<��hC�������(��a\��K0B���e,/������`F=`jԁ�h¤�ktX��1�=�� <�A'\�tbհ���`\��Ѐ� �&�>(<P +�"6�����I�c� ��`CH��)� �%��P%�pIPb0A'p��Kh�H��A��V�"�.U-l�p� �hAp��;<"TK��9lp�Z̢��"�q�Y���B7���.| @�)4QW@�p �0�A�q��.Z��},` JXA�p|���� ��� ��rQ�,h�:�� �a������p&,��D4j��=�9�B8ڰ�1p�W�;4@�#����@W�#�g4�G�@ x�z�� &��x��L��(�0�CL50j�%�A���,�kK�DD�z�A��F �@�CX�=TP���|�<�!�]d ^ �+�v0`X�����4��H�dQZ�@����d��K��A�ȴ��E ���� ��5r0���$j`6������!�"�8B��=@�H�<��Db���J��Z$��;f0�Q��0�zp8t@FX0�q�1Ģ A�4�� � @�@�Q����hq�8@ x�7�!�` exB�S�|�"�3l��[\@�RpK�����>@�x|� ب�2 ����� �n<GȀ � ��-8~a�3! �}�1İ4$daHa�$L�� �,@�3B%� �;8�B<�,�$TX�����&�Et��8��C%(�$LP+d�A��< �,.�4�|��� ����p�d��6�� l@�C��Q(hµ!� X���=��=�A(��=,���.h1<�,T#�C�5>HQ,��@!� 8@`;�@ż��L�@B�8�Ё �,��B���ȃ \�A(��' >��@܀3p���",A�A��� ��<�BL�-��@�5<����lC �A\4�LB�,\�C.�@0<�3�,A!��@4x�/L�C>��P���R! ��>�Cd�=��@�-� @�C�$���8H���[ $�?�C�@��!A��T�&ht��)�*��$L@3�3��H ��$p8@h@2�@2�C���s<@(�,@ �)܀h���),��&�L�l<D������@8@��B&A��>@LA��6��8� l�H4@*�����|@|�P�3��/�4@ ��D�"���0'�C d�2`�%�a�$�<)��9��Ĉx�)���-ԁ4�$�'h�$B<@?�C�@0h� �(�� ��A�C�� ����@��#A �0�q��C��)P��C;��W �C/�A-��j��A�C{XXЂ0�4>����'���<�C��p�9�B+<�;�\�t�,�0�AxB h@���.� �$��&<����<�T��;$-lCh�������&n��xA+����y��3�C<0�Ȉ@6x�3l�*�@'A$� �@�;�@>�(����`@w��,����������@)����@%��G����<$`�P�Ё;Ѓ��̀��H�������(A�A�C��܂Y�-��,�@=��At�H� A �d�"p;$Q0DB��ȃ<8�2hL�ȁ���(� x<Ԃ,�#4�5��@<��1LC5�B>0�,'�x�i��>P�(� �8� ���`.(��CL�ؒ1���7�B|0�C��<�������@��\�0��x�2a� ��=�S0��A �@4A(�� �<���@@��@d���̃���A�@� �0�<@��M>A �X��,A��'\-d@�G��>x�H���@��4F�������p ��+B���,1��4T08�>����܃@@+āP�&��@ �l�/D���������-����-�C��� DA\A�$>H�A��DB1��>P�/H�p@ �DP�>����'X��C�A{̀� �.d.� �($@�8��L�_�@z%BH��u��ë�=X�\A��7X�- ��ԃ��<<A7L�.�-�-\�"0A��?��L�>Ȗ�%XC���Cpd@ �7D\���2��$� �;d``�)�((A2�<5�A3�dBd�1�A�?h�B�܁&PP��<�\��C���$@4��BP�;d@1̀ �;t�̊ [?X��0��,��0� d@��A H;�<$4B4`�(�\��h��8��hx.Ԃ%h�&��$Ё|��B �B�<��@&@�2��6�T@� �0��8��P�+@�\=X!t�<Pp� T���H]43DB��B�1�6<��x>pC&<H��,h��B=An4.p@ȃ;�|�;���A@H@%���-4@h��x�&0�҃��A\�(���<2�8n��30�&P�C T�Z�;$���=����@!���$���$�܁/��$�\��)�@��b��3�;��>��1�����>���P�i�̃<>��-��;D�܌/4�@+��"`܂0@���A;�@8���;�*�W��~� ���T����J���>��0+@ @Ԁ��*���?��,D� ��"TB;�8�,@$����8d�<<�Ё�4��2�A �!@A @�1h@F�3��A*�AD��b��"��� A#@"��&|C#�8`C6�0� ����*�C������D��A���`0@���tC�-<A<H@�C���0��HB,�74�'�� �̂��*h�3�@T0��.P9A/���$�=�8��,�<4�4��4�@��3�A�2��N@`�a�C����/tA>��'tT�X�0t�7����"pB� %���>B�C>\�<���Aǃ�r;D��B<�C�^.(�;�ɾ����*��h%(B�+��^`6��/f"ԁ0�0��BP���� Al�<��=@��4,�%�@��0v�0,��C>�������@Xk���)j0P�?C!p�/��� X�"dA@B0,�p�(A�����)TB*�@=`ֹh���<*�dM�2��4��h��B��9D�,�<B�] �=T� D��T� �C<,��)�Q�*/@.-,���<�@;�2�<�/����� h��$���X�č&0�� 2R�J�`�+P:������{v�"v��yj�D�O�0�Ц��0H#K� \�� �_��{Re��i���a�� ����aX��"�B�n���lHbӥ*��iPkQ>{�h�9Ҩˎi�<��%�O`l0�Gd�/W�]�`��h�86 À1ZD:c�'���@Ӂy f�wf�8����!��p�A��G�� P�� n<8ф�<�DY�0�� y�e�Ԧ�<q�jB��v:ݸfc ^8�40��/.� T�@F����� ���&�h��H��(!�:b����QD�G0Pb�A$��a&@�` yt���,,(����=.��&h�@���!�>�A{�ك�x�h�O�� fv@b� \�Aa�`�9`�'@��P��х�ql�#wn�b��R�H�"��x���{���gh)b���p��&l��;p`G���Lf� d���a�H�&"�v�;��.(b�R��' b|�Ev顔'"��@���j��7i��!�a�4B�#���~@`�y���l����!��{�8��Dž b9� � &h� HE�[(a �gʀ`:4�vB����x �ƀ�y�h�>�A� B1�:�LJK�ɂT�!�n���/t��\*8��x�&�wLH�Kz��C|8����*� �E��Bp��ch@B o)�@!��q9@Ҙ�2x���bM,��E�8�ei��ÇqÎ% ��#p��Bx� _�Q�y:H��`���IZ���Ƙ'���!���y�>�x$ xX@��q � ��d|� �E"�4t�$>�Id���<"�(�a ��>�QE ����)ڠ #B��� J�B�p�b�Z$C��(\��Ȁ����r�A�q�6��A耂"���C.r�/�"�� �a h�S��@Q2@��� h���q�2CXȅ�� nPEP��<l��p�Æ�8B�P�\�E->0$��=�x�R� @�(��T�g��#v>�B(�)n4L ��.��i��v�G�P�� G��* � b����{���(� �&��8���3D��PD0���|(�Dg<�e0�.��y�@K��2b���-�X��c��D�6���Bq�3�b p�BQ-�cg ��0���v�G*�v�bU�� ��������2-����p ^A |���Pg|@9��)0I�b �@l�u�c ���І}��;�-�a6� �I0(��P Ř �� AƛZ�C�c|�&4�N�A���<,`�p�.=���h�i+�3,�@�Q+P��(�4�#�0��<p f��v�� l@;(q(���iP�7�P�Ap �!�CP�Ľ�H�aP�>؆� �X��{h� �WԢ@;���_Q�6@|0J�� ]`�(��[����/xIX��i�A4���v$�.�;���8tx�+@�h�>:�L"�⡋;h���"��(����#Q<�A��@�K��H��>�8� V��4�P#�� 0��q�a|a"8�@ЮJ�@Us-��0��x�(0G0�r`�0�|��8�'Q� $�RЗ ��@KJ(�E�,a/���� �S,#�kCB�_��pG >@�%� }@�6�0����{�@z���B�p��<�,<���6�������8zЂyd c` ���a����7�E(1��@Bp H�:�8D�q=@ ��<�$��E�pO�A��p� e}`���qKd����3��Ht� p��)��d�x�F+���� ����<@�X�%6��7x�6X� ��/B۰G&���J���@�� `�1�����@ 2� \��(�%��$8�%_�E�0hC>��4.�{���V�b�Fa�C;�1Kp��������h���a� >w��G0@'r���e<���V� |p�.!���G��4c+^��*���;&!/`������������&�`�A>��@� �L�>`��� .�,�2`r�����`ba\�$�� f@���<�܀8���2H� R��@f6@���ހE��@��^���J!�a�@�!��j����`*�j"�)��!����a�`Ҁ�f`���X��� �@�Z@�:a~p����@& ^�P�@>� 2l�8!���2�����a�����L�� � ���ޡ�� (����av��M�!jN`�@���`����*@(.� ���A \@�a ��L ���&�� a� 1`�@x� �� �v`��b@p�B�>� :���0!`��R��!�a�� �G>�����@8� ��������,� O�̀H�hAt�d�`�! :��� � 6�� �n �>� �v�D�F��`�6 A�,� �#H�� �c �n`��x �l�*�vҠ@���H�,���� D�}���䪀d ���n� a* xs~�xA�`��X| ��@dAv��A/I 2����D~aD�8`�z�&`РT�h z`��l���p�L!�A��nr�`�,�< �P &��!F`�` �� � D��ᦢa�A��z� �A��� r�*���b��,��4�� ��AT~a � �.�`\<���ֲ� DRR@r�'X �B"� � �"�K�`�!���@���0��'�*�"��׆��Ί0�`Ρ~n��: d@������v�|� z`�o��T��@��`���a������\E���^`�`2 �`p��af�� >�^Ѣz � � �����` F�P ��, �@�b��@�`��!�@�`x� �`�D@AS� L�"�Ӏ�l@.!� 4!�@��4 ��Fa �`����`r�,��� �`���z`p@��������!:4h���. t�� ��" @��!vA.�2��A, 8� N�������D`S��ab ��(@�A��&� �A�!s!8�HF��,�a�`�\T @��`4@�i[wq�Naa �@���(�>��`�h�$z�e�O ���.��"���v �@ ��4�j������ n����� l����A��`� �| � �D@2f �z@�bf�A(�� ���� �!>�2$�� ( �� �@�� l��x!V��!�����a!6��(&a �4�Q@|�� � �a��A�x�4���� @(t`� �`���D@���(�&�D�L��(@�����-A(c� p������*` � �E�����A�(���!8!8a���P�ax��� �j�(���5�F �h!���X���(�@�!R���A|�"��@^�l#z���� >�f`�� �@��,��!�o�a-��!dV�i���@D�� :@�#0����@j� S���?4� 8�� ���rq&� ���4m`�`0�V����Sa,AJAp��B��|@�� �2�n���@��~D�`P ��jɆv*�� >�z�a�`�����m �����`�*a���� �!`R� ������(� d�U6�H�`�@@����5�!帀\��`L!�z��!�va J�8 ����ʦ���A�IA� D@X����@^5`��� N�����E� p �j!D �v���! @��j�����cG�!V#��F��!B@(�����R��� &�M���!B �� ��`P�@��@��"� ؠ����� � r�r��`����&�VAv�z�k}, V����xA ����D� ��.�̀�i �� ءR`2�@FD��p � v���0 ��8�@x`�����L����d�x�dC�(��@���z5}`an�n�r ��� j��A 2a2�lNV�ҙ@��\�E���� >�@�p����I� L��X�j`���<��ql� ^@,�4�b�ָ6m5�� �`�@j���A¡���2(�`�l�N� nT��v�����t� �!� <�<�ܡ ��A��`� ������ R� �� ��<��vAc����l$\�t@�`����@��� ffS4 ����֪�ءX�V�Ā�" �� �a$ ��@��.V� ځv�����!r$!�@�a ܀@ 4�h�ހz� ��l�@`|�`���*6`�8>^0�ɔ�b<� a�aB'�D t�Xx6�X�H��} "(Y� �{���D�` �ZL�i�E�6�U�����8K�4)�����4@��2V9dȣu���7*ٳG"U�'{� X�+J�P�\pp@�x D�)D�b^�g�*w��I�g��`Xr��e��-ށ�2����I �*�H C�0�!/G4��բ�"Ȯ<&��7��B8�i�w_�Y������~l�*3`�]aX4�Ҽ�; 7�E�S� R���!٢,�t� 4�;�ء�b�E���X B���;��">q hQ�� 7z8�(`0�AT ��X�|pKi8�Ad`����IE��A1�s�4$P,P ��C;�PuD�ı�������� O9�2�u�tLS�=^�0 ���@6>ĂC<x�=5t@��@ +� �� m�B7P�GU,��BJ$Bs�27DI8�"G��H�N,nT�K*8P�,<Љ -���N���/���-M4 ���=P@���m�A2V��@� ��s�8�H�``Et��c:� ��0)R�-fpJ<>���B;.$8���&�pB��0Љ���K��>�s>f���P��6mT��0��oxB�&NhH|,b�l�>cH��m� (�|p��� �S0���J ;�A�<р(�B�f�r���E>&�[�P��]8�) ���B�=�t� %�C�>�0���!��s �4��/���5>Ӄ%`r�&X䀏,`�@�94A�=�R�5�P���`�x���\��ɳ=',�C��pA1 � ��E"^��va4@�kP^�C�����vX���B�p�&P`���,v��"`*�p�Q����9����q�� n� �)�q�i���؆ @�T#W�с(� ��<�p� \ =P�=Z��L�H��0� �[a�����|H��HErQm��k(�<�������� �a����i���X��,x���B8��X�z䁅b����~�LP $dA$�X�o|"�0���A#Fp�H`�;z@&L� �0�&~$�"6�<��aH�,�K��xE>p(�b `�� 8�b���,�~0C0��`a��C `|\�Z���M�mr�P�0,��(�"����3p�"��L��H�( X`qpB)p�4��)�p�3b��_h0�@,(@�c����2�up@�`�^�"�`�P��P� 0���G������R e�xE-�z��C��`c��8B��@?T�7)@��|�*,`�p,s`��Bc�'4�1��P=܁HJL@" ъO�@%PC;��� p�|�F@`v`~@;�'��+0 �i0�F4 ��`�<(� ����Pa�"�xR�W�HC1M�9�@ ���)�0��4�W�A� � SH���+�`60B.r`��G� ԗ�g|a"8�D`YD��X|`��`щ ��5��.��yH�'pG��Z<#�`�#�0L@�Ё �ǀ��!�a ����q�x� ����l�#>��1h� S�:��0�\��pD;"x��,��4T�@�*P�T`{�v��K���`Bnp�O�� ��x@�`h�8� �H����r�9l��� �Pd�qЀ���X��l���)4��t���&� �H���3|� �� (v���c��8��<ܑ�1daFЁ\@�"0@;S�$h�$ }�@<��!t��9p�J�(��H9�!�����7�Y6,;��8�!�1�<�ډ0t �@� `�`@ �0lCH�<��;x!;��;d� -SQ� �p ���Cr�8`B>��Z0��`+VG*� �P�qV�=8��3� �{t��e0� 0�X�����q�qP! X� �A�B�>Ĉ�}� @x�cim��&Z��H��/ �lE@�1 ��y���/� �A`�e� ���P��j�z�_s `��=�w��`��6P4���Vp��� P� �q�� ����o�p` b�3�3�ۗ� �� k`:��� � n� ���@p��| ��p>�Npn`�0T���I�cp6K0L����Y�{P��@*XP�4V� \U`\ % 4� ��pT��@�J�0{�<���F�������P����Y�[��? ,>�n���E���t @�p ��`� �0�8@�@m@ ȧ�0 60���@�����`O��XP@,��r�T� �0�a "��<` @�#" �pz� �����ڰ @ �#T���P\P�@ 4P�p���p�p����9�������g� \�T@�0 =�;�@��3�X� �� �`9��" ts� ���@�8����� �# ~� � �p�� n0l� �R�z �`�S�p0 �PX� �`|�;��P �^�Xp���� s�`�PT�u��� ��`���,���� � �'p�@�"@�Z�d7��!�p�� y���.��@ ����5p�P!�1�� @�`�hD��&�ܐ)��sg��@6L�R�"���[3�]� {@�$p:p��w�~P���W��pG� ���`�`�0�@ ���@00��u�v�I0 �P/PG���a�2`:��75P$��@���` |�7�` ]�vP���"�|P�0���� J�cPM�0` c��(�Ky��`5����K�l�#���`ʉs� �PPr�@ �0'PI�o�@ ���G>� ��� �d`,���� ��*0o@ ��rG���+�$����<@��� ~� H�M9� V F�`0��p�y�@���x� Y��`7R9�P���cp������p 7f � �pUP��ɀ` �K�p=` �� �0�p�>P���t@���׀�����A�` !�m��� X�:�Y��`�]6���p \z �`��� �`AF��@q���` �0���EA ɀ�C���J �C ���a�]�@ T���p�(�S�{p �`Y�5��7p��G�P"�L���| �pV���?0�P ��^�>�l��`����R0�u�УX2�������VP�f�� � [��@%�Ð�2Q��0� `�pC 4@G���p��"���#�pG`q0�q|� �np"��@"@A�N0�E�K���q�` އ[H���� p �Py����26@��*�,� Y`0�)���^�� g�P�q ���S �6��"� �����w0�)�!��p��� ,��0qcpi0��� �`� 2@9 upH��� �O��8�r#4�,P��p g |���,��� � f��: ��98��NP~� W602�!p�;�T� e��PnZ� �s�H@: ���9��V�Y`A:��`�� DE0�|`�V"�K� �8f�P�� y� ^�z��`#��p�I &X� ����`�l`o@�`p�J�Ā��p����0)� d��p����`��``>��pm�) ���: m�4p��|�@|�� U@ YP{� 1`�� ����P�����Pw��p#i���P0`:[@2p)�U&P��~��;�� ���~�0 "�@�% �s�9&p?q��p fP�GP��z����pT4H��p�7z��� ����Љ`<0"� |@���L � r��Py@"7v�� @mp��<������=`�PP�P ��*���`�z�VW�,�"�Ґ �`L�Y�E���p�P$�� G0 � `�6�B` �P�� ��0�pL�np. G�w@ �4pF�@�%�y�p8��0 �V~��pSp ��u�*�)�wp k�J���-� �p�^0 <t �`�� KP y�)�V`���0�`�0�@?�����;�Bp{.����p��p�Pֆ°�@M�y��@ ��q���A� X0i �^����0�P��r �������� C0q���C}b��.�<`"���~��${�8�0�p�����@�p/��n`b���y�t�l`���"����� �E�� ���)�P���3�"/z��]0� �l��; f�ґu@Hp"��#4�0�e*��Ϡ��� �0��@���u�S4� ���0`������\�2p�������W ���2�F@ ��pm���� ��=��pP��ۀ r��0 A� ����0Ā���������@ �A�4�#c�%3Di0���c>�ġ�%ˎ |hl;���.��dz��)5���2pѤ-�) �.V8�����;�R�z�,E�>A c��R\����\8p��$Y�0[���pL�i� ��cՋ��x���y<-�� ��$|T��$9��P�Am[�z5��3%7r`�O�0W�Yx�$�<�pPqp�ԅ�Xtq��]zM"���I�+9:��'�A�18l�9�^� ��칃�@�|��`9#"�9t�0Zu=��J�z`i�/B��n�Z"Z�"�*I~�B��Ѐ�|"H��}"��:�Q '�@� . � a ���A�e��x�v�bx��$�7t!\�'#Q�1��`�}bQ�y���K$� ,�g�}4�Sp��y����%8J��P aĞv*I�4Rx� ��a�����*>�G�0B/���.�1ah���R�R�N�9�����Ȁ�FN !#Rq�a�c��x��'�P�C$��ǂ�60` +�a 4���yz!�Ex�c܉����� �Ab9D� ��G�;^�"�bL��<p���WniB�M���RpÌF�1��@Pه�4"���;v�x�d�!a��'�AJX$x4�VX��Ɛ��{�0�,�顄hn�`��$�DҀdž�5��<`��/��=�i �� d�R�0<��: ��x��J()u�7t�������@'�uIE�<f!/ʐ���B�d dl��nxD�t���ij�#�vy��B�!�?"���%~I�>��4�&�*�<Nb�`�i 9"x`� t��v�;$�@�'�>,i��;ܩAY��!_0Ƀ 0hY�Xdw4!�ʠ �)�Y�B#&��|�C� R��{T h@"d� , �`� ��*� E ��<��q�p0L M�>���[��,��F�/"�A�H4` P��l �d�<�R�$h��1�=84�|�>8 ��[<�O8�!N��24A��@)�7��,$PD%0P5<@9@�䁌=ȅ:�@��(B���� 3X��P�m�"���>�$�C\@-pG ��F�b�����UaL��<0�$dk���(�Y@P�>!�<A���K78���ȣ�D� ((��0'@f��PH2@�� �M` R@Zl.��p�FTbl�4\��� x�8` >$`0�?�ql@{��)�A��q� ������a1��<��|�'��-��3d���ـz��> !PA����R<D� �h6��|� n0�l� 3�%i.nU4B��{�A_y>D�v�r�D2b�����lP�-b;��'!�j�.X��@�|�c�x�<�w8�;��N�l�� ��>>�Z�`��n� �@9�A�@������;L�� �\� �#�(��h �)�`��!�"�V@����&XQ�D��c8"� ���0��1�FPaC>�|d@,X�(�L��A)�0)���0�4�c����K��a�a�.��th �;������.h@`A00@�F*��k� ��+X@8��"��aP �~x�4q @@�P-` &�� � 2��H����`@��=�Y�$J��@��<��Rp��r0>�q�9�k���q�X"(0�`��a��B"�S��a "�����0dp��5>��9�� ���/�A�)-�� �� oJ1����.�p�. T�Ap�Y�����Z>@�^ą+h��zD��0� 7A �� �u�Z�\܁M����9���@A�<`�&\q�2��HT��!�AM��X�9>QMhcyX40H�b���#x�����A6$!@����*8� �p� �/�m��#���Ԁ)���0��"��B*�� @<I���� x��0:�@�`)���S �dЎ(� @A���D��?��LB�� *�G�! CZ� �@1Ҩ�!��;p��]�!�ȇ�<�!�h0�r�C����И;���tP [v� A6X�L� 8 �(�x8�. `<`�?����%>���|�:p�>h+��GpȁA`�hx�q�B@� p�L��R�Ȁg��AR0�H k{(�%�� �Y@-h�|��;��!�0��N� `�@�H�xJ�T���{��=���Q�Ѐ�K �{h�`:��h�]P�0�C8��`<H��%(M8�L���Z�I,�R�M�v�9��}cx�iX1)�*8(�G(+�����ڀ�j�x�2`�R�H��s����2`aX�j�x(�/�?e��^�/��,X����P��ep��f��p��H�h���0��zh�B� Ѐ�*`�'X��d�� ����#�@i���,���s��H�z��R��{PF�]����Shk��@�y�v�P�2)�H�(���<��)؆9���9�4�3p�X�H8�`�+�(�"�8�ypzHH��(a#=��D0�V�/����-��H�P�]�/Ѕ�}�\@�Px�K8�� ��|8���)@*0�@�� h�Y~$�n�.+iHnx�= ��� T�@�8S���18��]>�4�<`?J{�\��_0=0�<�wh�C���Ё-�8}h%0fx�L�t�j0�%� �E�x?��MB�+�9`vH� �E��7�R��,>��I�F�A]8|�Hh��l#Ȇ����`�Q0*�v@Kv����H�����wp<�R<��IiȄ�"�,Hv@�~(1H���_��~7p�h�3 7Ȁ~83P�18�7@AX�bX7�8�U0�'$H�#�҄;����TX��h�x�8�8�kx�J�&8+8���>8�D��YP��a�8� �B�����0� H�h�%p>8��DX�N�������:hx��XZ(\�RȌ"@5�\Ѐ��Y��A�� ��x��x�����y�QpKx��<�18]�'8pX�,8��`�l�'8X�X�Ђ�-��'��(`MȅH�0���B�|x�4����!��S0��lІ_�2X9�Zx��WȄ��8�v�?8�}�E�)n�`�Xج�� �!�&��6`�0�?` ��A$PF'XO d�,x�9� ��h+����h�UȄ��Q`��lgP����Ex�8W��ak�F�.8�S��pH�XfU`�(��+@M�;���vx�?�;8����hxفh�|�����Z>�k8�Q��H� ��`��8�F�W�]�&�%�LpH@�`� �oH��,�;R/�x�H8-=_t���|�?�8�(�l�$�?4��%�� ^H�.0�i����:�+`�F@ p�c����ҀA+`�$��m�� (� �9H�� �T8 � @Ѕ ��X�<Ps�[Єx`�LȀ)�L-! h�Rx!���Pj��Z���/(@��B��Cȅ�m���3�B��a�m�R`*�-�<Z�%P��|X�����5���/xa� �� �n�uP)` ˄���q*�3�]�|�C�6��>7��y(1�k�<<(�r�!�'(`=�*�I{�f����gPR$�ph+0�`5�g�|�Z,�����*�0�1X�]x��'��P:�30`�K�[8�C��XBj��@8�%0�y�;�S8W�]ȁU���x|t�>��}h�!�M����8�V9��N`Kxx9�*�hpA �`��V�V�h�Z�`Ȃ x�@p��<�{`?��SG$ȁ =�ZІ�O�N�x��#�tF,pb�%w���D��#/����<p�*� ��!�b��6ȀhI�'�,�)Є���T?�B���`*��[^h�c0�8�,��t��=����?f�i�l.�7����> ��6x�BPYP8�R�!�Q_~���|h�(�l��x�6��0x��,X�#Єm��u��hii�D��xp�;�8 x=�phF0�)P?�Z�8���A�K�7�(/���` �SX�jؖ ���D|��j`X/Іl(+H�d�{�P���=X|�1X�Z���k�}�)��\x�A�kH( �؇�D�Z{5(_0<�H�'X� h}������H�~���\�p�%��_:w�zh�g����6�m��k4��Q(�m�b=(9����a8� �䄃<h�"ЄB0X҄C��}H��oxL?h���U�8�)j� �X��l8�x�*h�#`9x>�h�(y�}��I� �UC��X���!`� `�$ ��1�:��;���Y��%`�U?H ������h� HX�.h���>F1Єp�@؆h��+����F �g�&�R��P �ȇ�`��m�b0��S�dH���oX�.X|@���S�3��=0�V��*`78���*<�:�>8s8,�;H����xjh�<�v؇\@:��PV�_��%Hy��%�H�湃GPU�S�5�~@w�v��5x@�0�jXf��\=X�2��/�g�g8�;h�8��Qp�wq#�H* �BX� �XP��p�p���D��4D���A=����Q����QV���� �{����X�%��\8p < �yFi�� ��%�0��-L @��*�B�i����/W|�\boƌy�]�'��MRF�� �T�3v*D("�Ã����|@�@ ��{f�� �O�78�`��C=p�y��cDb�و��wv(��!���}��'�A�r X`�� �D��p�ɧJnd��PƖ" ��@#�IK0�WV��R(KDA'U|閂�������2чJ�RX�ӫ((O��B�0�L]<PV�"K$lP��D���!<q�V$�-@\`�C]<r��@q�u�#�2�a�30���@F> �`,�$���=0�G ���`�D\O��C!��S*�s�#���F�ЅN�E5�P���S~��� �'=H�J�D��,� �q6c\ VP� S��h�G4#xp�q(���t!�!�P�>��0�h�G�p��c�<��o�~<�O �w4���&�h�}�� %��D��� t!�>���=?��@"���=�`h`��K<D��-Ll�A<��-T�H<�#��4��V,��!ȼ��J��*W�`�<(�!1� @�c6�����tۃo�PC�P�@�@L ̣���%�Yd�%�t��>GPsEHd�M"STD`��̣�M�,r�!�ps�F�0@�<� �C.$x�A;���3��QD(�������/:@��cD�C��QH5t�CA;�|�! A0!�IA�IS���p�B$��O;h#���@*��2@�C&��S�n@��e��6�(��4 "������(�A�;,h�I�`^��pS���@ r�Xl�:�7� ��2�WЃ����Cpq/�Z� � F��F� \0������/@� �C1A>D ����L��5�ш*h�s�.ı�Z���x�� ��caBt������'�XE;��`��`<@�,�Ї>�S�`pC�P ��4h��!F����� �/h��\k��(zP�pa ������L(� npS�ach@�� ]p���(�Z�;��;ч^L�`0C 2�n@l�^R�1|��0�<�1�@l�����ۀ �����x�� �� ���ATA�\�v��*��d,���p&y��h�.� �����P=t#�`���{��B@�\��'p � ��0+�� )h`iD#D �i�H����4>W@"��@4�}D�o�h0�T� ��Ӈ�����1D 4 ��E`(�� q��a 4�<0\���@a� 0��0�8�N�n~� �w�"v ���d��+��;\���A�����I$R@�|�<�GR�B��H�"�0 ������` H�X�J_�-2��s�A8czHH�(a���f�X@:�!���@�8�0ı�m���{i�xDc &�|� V,a����b,AϘ��Q�Q��@"(/<"�8.p0�b��tЇ|D��@AL�������1`+�AyȀ4��*`�D&���̣��;�Tģ^`��!S,� ���6.� �#r�$����̰;�0zt �� @���X�p�Z� ` lPt,�d��'�0 �7.��K�C`n�+���������C+JP�^h�/���xAȃ*��0N�ΐ�_�M�"��%�;�g*�19�1.D�,l��H�>�`�y�`τ3�+0c�Bj9�B��@Z�A q�����),�2@;,�A!qp����_���PE4�р{�n�C*��� D<ڰ�$t�����p5.�/t� n ���'�>2�����.p�#�@BP�7h��P�=�00��pG �� %�������.�`�A��(@H�hЃ� K��t:�#A0���o@%�>�2pMp!<PM5�0 � X0'֠�y� �@���3o� �r��O?C#<1x�H�xA#P@� LA6��\@ ���Ch�l@��C8��@H��B$�A�=$�>$�L<H��C8��#����@�X��A�@DL�@L���&�B� �=;T�s$-��<�@D�Cd,$A T�P�3���"����@��>�A�#T��CH��B��,�,A���v$�\�� �=�+|C��A�� 0�Qm���A*D.��(�\B�@ @t�2�)d<C�� T�<��APB#�ȁP�_�Ŝ/`��� hB5P� B�/�� L���A&�(�*p�A �C!�� H�"�1L�0@���$��d�)��A"`%t� 8��A)�;|�<����L�C��1(A6,@7d@� $�D��� ���܂;T#�܃���?t@<��\B<��<d�@�C;<�P7T<��&�A�� �����(H��<L����Ap\B�� '�@ d� 0�<D�*8� lA�C���TN��� ��pBD���$�C<XC��\�.�4�C �@� P� *�3��+�@d�<��@�B�3�BQ�B ��0����@\�`A�� �� `@�C� ���ăs���(�T�X��6� �3\A xA�h�@$P�č�C�� `� L#TB$�#�� ��NU��,8�@?<��,�����$L@+z��|�C p@3t�>��< ���>hA�eĄ;p �D@d�>4�9�B7DC��BdA%�@<���=8��\H�P�ԃ@ ,@�B&�B#���+�B��P�ٵ5����3�A>d�=��<0��A=@@!l���phB&�'@>$$l��� t.`$,<h%�pA d��� ܀i��� �=tXP@d��>��-D��@�lB�XB�A�@hP(���H�<(�/�;��$��d�^��Lz�*�p�)H�4�D@�@(T�)܂��T� $\>@x�>D!;dSx@#�@�������(C���,�l� C,�3|�"d��� �@��(��hñZ�T�,C? �,�C�K��@�p�B8�$�L�)�;X�x�(�t�0@C@���eE��4;�-�AD,�A8�<��<,�hBC�����%HC�^�"<��>�pC4�`�<xC��B<��?��"@���B-lP���*|�hE*���(��p@H�*����@�ڃ&CA;�h��B��0�8� �U����0B@C�?��\�;,@$�<,�y(� m �V0�C;4��A2��� �!�8�B)�C;H���>�3���($t[p��!�CE4@��<�%Tð4B@�B*܁/�@0܁���h�X�L��L"�CdA= ����9|Cd�=���)���`�.�L��4��;�C�0���<B=���2�`@�����g�(��A�+DC��-��܃,8C<�|�,�>��4��0�d@�d@�;� A=�k�)|�`�� �*;x�2��"PA3Lx,��0�lC��DRALB�B&H�.��"��"�A6x1x�2,6.t�8h�4�\X�.�@�@!�p@#�5��� ��U���-@x�<0?0�*P�0�;4�)0��.�� �B"�C0��°�����A�)�!� �<�% �P����; ���$@� �%p�x�L��D�7�+���*d>���R��A �A )��Ё��<�!d� @�<x�@=x&HA�,B>�A��,@ �@6D�@6@�.hBX���07� �0�@P�/,*�&h*�A�0�ȁ/TC�A�>\�1))@�u�<`/( �(��B;�C�����L�Bs�2�����4��;�Y�@�*<`AA*p�(4<��-�J�D�`�xA��CP;�"c��|ǜh�0�@�C�"L�8�L� U��S=@��;��7H��C���<8���� ��AL�!(@<L���h�)��)<0�(�̀��`�)`;�A�@C>|�/�d�@'�\Ck Bt��X���@�<�l-4@<�A�A$$��2ؗ �?�H� D�|���*�%����݀����x2x�-��p���%��� P�� ��-H�)���@Ђ/\�@"�$>D� ̂�3 �@:|A$�)��-LC躃<��CT��� ����,@0l�/L��h�(�p��)7�!l@XD耻����>p���A� ��@2A,��Z?l7�̃ �����AHg�`A�\@P1p�d�)�*T�-:\�,A>��3>�(��<$��dEl>�@�=�A� �C���v/DA���܂=�@���XA���d��6@��3�AЂ=�>�@$XTT��w@H��)�A:�@;�A&@�\�'�@���C=�"8@�%�>,�������A�A&�B$�����@<��� 8(��B�@�Ѓ ��A�-0�;t ��xA?�� l@=@6�=,A�A���($�&�>C`�/`��� l�@�,�B�'6<�4*H��>HA\@��r�ā�Xq!�%ۄ$���˰ ��O�Rȣ�hOf�QgL?7�ȣa�$?���@B�^�,3��(�E��9�t�iǓ$2D(��`Xex##�0sly�I���@aՀ �4�ᓅ� @��iQa�gO�5�/�'`V~H��$)�=:�oɅC�D0�!�D� $����a��F�T�y� <���LK��ÁC ���&��L���` B�-4�q&�*PxIϟ�y�=K&�$Pa���;9F�L`�G$F����@i:ř���]N��(�@�F4@��-8�D�,�q�!v�$�#��"0�"�x�L ��@� $h0@�y��ą .a�-z��'�0��(�d� �x�� �T� �$RXd�>&����p'�.8i��P$�<X�RD���w,�@ (`* ����h�+l���C�h$tP�� HƏC��a�Y���"�v���z��$D�� &�gN\y�3� >����#=y8��%��`��&��� ��C�_p�b}�@�|�� !Hp�� <�Z4&}"Р���;Np'H��+���b�xFh!�.J1�8��}�Q����"�� n0�G+J "��0����"*6�d#n� �;B9fi���G�D�`#P��&ȁ&>9'+��� �z2Z��(e�أ� &� C��G�y���3�)|آi� �4�!�|�#�@�i@��|����� ��` Ơ�D�C�y#] ��W�����|��;bQ@� � a=p8`�OxQ�[���Y���9.�� H�H��e�x?��}$ ���8h�KL�E�m����p�$Sr��P�6����>�-ܠ���p%���D#hQ�&� ���0�< �7��z0��CL�;x@qH�<ذx @ P�B"�h��`�A<:�0 "��6�P-T�e��D0���x�� �`y)� >�A�0�`��`��`����ӌ"x�s�Ac��v@?�b6Ѓ�Q��"�B� �|�(�~��vh�"���p� !s(�p�p �`<jȃ���&V��P� @�0@TXB��|�#O��"P(�b���;!M0�������y��=>�<��GxÀ|�a��Af�N�T��4�p�}$ X��{�PB(������C0�/L#)p`��0gD"��$��V� la.`�/��� �����#TaȂ���D��"��1�`��1�T/ܠ# ��K^7ȇ>`�B�b�8�BR��U�"~�@ v0�k�ah�/рmtb)ЀX�*-�Vw8�&Xah� �� �$|a:�B �p&�A8��.P"r�C6�P�� ���t����P�&���"ư�2�yd��X�.�!�@�h�@�|���<P�\��� �0A ;@�?�P#t@����G8B�� Ґ�gT�K�\6<�t��<`6D4t!��c�8�r��B����я0���S�A|� GPP�Q|� �'@�I<`�HF HЁ@���QU��b�0��@֠�%,�O��(� ��)��-�A�_|B�����(@��������)��"8��{��@�)D��@V��D� `@GZ��A�2D�r��2`�vhC �p{` �AL0�p`Cx��(A� }a#�`�+|�4 ��P��S� �h��a�3XaL��62�%�C�%��b���J��*#8Xe( /�@��=��Q���.`�z���P�F��x�A��A>p�����!�B��@�p�Z0���=���F���C����P���%0�P8�:c̣@���&�@�p��x�H8�<lP����1�X�D0��� x�<neoO�^`�س�y�c��'��� Y ����P>.P�D��x��wP����&�8� �3���p4 "76Q�=�@2�������xx��P�`!�'X֑@%��'�eh�C;� /4��E(����v�ta�6�4a6@�� ���X�> F �D����^� |�$ � � Ba��J�rA�@V�jz���`"��H 8���a�� L�*|� jaJ�D �`�������<@�La�(a���� ��@x�����z`` �D� r�V�"a4�,@��t� ր ���I�P!�� "@���C.�,� ���� ����������:��l` 4�(@�!F��6j�����t���t ������� X��!v���,��H� ���h@vA���� ��>f9��h!�b�H�0@=�^F�� �� R�ؠD@`p�RA�`` � �XA�Ae@�\�� ���F ����t�<���x� x��~@NV�U���v� 2a2���l����E�R@�!r �1� l� BA�� 48 8�xD �@ ���m�`��!p��J���+(��A4�la�al��l����� ����!�@ ���Z`��z!���|� >��!���|���&�La^��acF,�4�(�l@2r �@�� �"�F�.`�!�!��*:��A � �@ �`O��`�� ��fa��2 � 2����$�n��h����@�`�`� p����a0A�|�U2� � v��!� n �A���� `,��a� � 6�� �� �!2�&�AO�������D�.@& �Aܡ�� r�^�! ��! �` �X���a>rT�@|�D� |�� �q2���(�a{������x@"a A����� 2����4����@r4��!�r ���Va��E�������s�� �k�v!�n�jkN��A������|�(����A�R 6@�,h� ��`�����A �D�� �� �����4�P`��(�(`�!ā ��J`8������h�3�� Dt@0@ڡ �a����"�R@P< �� >�0�r�1���0`Ha���( `: H!�����@�� �� =T�DA��\!��J!�� ��"�n�vOw~�Ĉ!N��`�8�P�AT�C\���n�p`\v@����@�`"���`�Al��D��`>` �`v r�,o8`.�`^M�:�n �)Z� �@�)�a� f`8�p0��!h�@,���Ad��A !@��K��@�@!�#�@V��(�`�~�r! 6��a`�J:�v��H@�a=�!� &A�`�a�p-Z� @4� ءrp� ��\�P`�a6�� �����@�v��@ N� �Z{@���raVA�4�zh� Al�W�-|>�@`��ܮ� ��`�`�v�� �a�z l�2���X�p��&�@N& A�`B�<a��� ��j���r�RJ��`D�.`5@BAK� F` `���"��A�������`��y��&����0��@j�B�n@�0�&���v8�������,� X` ����|� t �2�@� N����P!��|�n��>�@���������@���ߎ���!! �� ���D!% �z��� 8@=��� ^AN���j��\��������\��!�@�@ 2!(a� DA���d`j�&�4� �f�� �"�t��� �,`��2� 0��a� h�� � ��(�Ba��9va8a �`4@>4�Na�`�`|(������4�r�� ��`�V � x@lr%$��l`�!�fT!l��m"��.�\����.@�Rz�*�� �afq́%�Ap�j`�0r ���!Rj�`f��4al� �` �� 2�ᨔ�� t���Vz�Av����v�Z�Z (�j�r�X�l �|!fa"`l@n�.���jA��Z��`` $c R���`�!�a>���� �( ws�� �� r��z�@t�N�D��`��cl�.`X!� >`r`��Ba �` *�>� a�a��2�l���p��� �& �.��V��aj�� �!jl ���f���$�P��,�s̠<?@t��j�z D �A�D����@�� "�t�������\Aj!� ��A�@2�! ���@x.� <!Za>�~� ���� �@\ ��a6@i5��@`\���J�\�H� bb8��Z�� V��D n�4�'�����z\ �4 na `a8!��Z@2������J�� ���|��x �e�c}P��A�M�̨�� ��Mv(��獁;��᫆Æ� �XiQ�%@�,h� $R�\�s�@M���2dC��@8��K`�A#A-�,i` ȅ'��|�a�Aw 4$�1�:dp�版%2��|Fla@���!�H�%e��Rf�`*XH�-Ȃp> p�,ȒP�\ ��g�hʲ���+HN]�pa&(�dH2a�}Y2]B!"_�t 8�d ;<��a �� �4�zB���28�� El�Z^DY�i��v*у<T�� jX0� H�CtP`t�3�d`���D{��A��A��A�<`@(��@ �<�H"�`�3� �$� ���S� x�3����[4�Y �� ��|C�?�r�-��Sp�GK5zLB !�-'���@�� �:����P�4bxQ��0Ё|�pAW�B��PP6����>h��L��<{@Ј)�@c���J"a�h�;��r��l��� �:�a�5���B8�$� �7;�,N@@A�hA��h���b8����sE(K&q��A;� 5���l��&�����\{��<����'�@�����#��+��(3�%tOe����Nr�$4R���ӂH�QC�)4P0'ax2��@9�q�'���-��� O�1�;|���|���c�mPO=��H<&4(�=*$ E$و�#�@�.d��=[< �(p�E"F���)�ÃVp2C�T����`�GB�Lh������a�&hqJ H�CGL�rh�L��*�H:���a������pB75$��x�N;6DcD9�s�4t@�R��q>�b�h��\�)������l��X��܀Ģ7�6��>��B#�9 Fj� l`[Ё6�A7�w�G>��|(� Ȁ��q�L���4|�h� ���X8 n� A zp*@H�}�� ���^�',vІ̐GP�0����$Q�� 6��}�@��3�G�`U��0�`�HA �T�(X��p=D#8�f��1Ah�ޡ����`#��0 !���E��'P@>X@9[ID2}\,�x��@��"�>N`�'|��X����� 0�I`�P��"�Ђ �R�&�I���F.�;�`c��<(��MaBȇ=�Q �+�@p�{�� C>��e��+]�P�"xAq@���� �8����Xc�@>Ɍ'�C����{4B"xD>���$OȀH�<<`h8�,wy`mp�� �U��S���1�D;LP+\���a�#��\ �cP���e8`�<lL`�4 wA�#������` ���R�v #��p ��� �0a�ݜp|���G �@�0�|���PF0` �p�X� <��H�p�}��� p�4"��h�F����$��(����$�txj�@�t�.�T�\Ppx �8�����j�Cr@4"u�B\�8�(0��a�{H� 7`� ޑ�R�� �18�-`�(A�>8�3��}���؆;>0�����4�L�C���j�@t`��H �c)�J� ��L@A\0�:���j�CJ�'Ѐ<���?������ �0���p�;x�y0����6�.�q�$`�Q���P�A�z�!��C � e���`��@d�`�'X���/�/�{4 � A@�ԃA�-�{$�^��P�0�b��>�08d����p�t���Fp |� ��c�P a�x@-� �v���G P6|�@��0� �I�?�>`� ԡ�6��a�%hh�t�&t�xB(1�eP��8���a�4�Fh@>�hc�p���ad�|g�74�`��0 <�bhp@ :1+���@@=�P�vX S`:A?P�j�\!ka~�7n�Y�ajx/>���Fu����^g|�p?@�pK��La�xB ����P���T�@?� �� �� 2��� � �`�`��X�hM��p�V��C 50� 0�O@� @�dW��N�w�gPņ�p��+�"�ppc� 0" ^pk� ˠ $`&��Q?�i@�7���0O` ܀=Ђ�@�(�c �@�`pL �PO���1���.����[@�0E��P9@@��&�!A��P� ���� 08 ��e` ^@���mp� 4��° P"0�0�Q$�@��`;�LR�$� �^ �K� q�X�P B�s��P�$PP����[`= !K�n0 �K` ` � �=0g�#��?���@+K�!��bg�@2 r���;P�� @R@g�MA | @Up��+ ���PT��'pBc����8 ������� �.� ��S�m8������p�P\��0P ��P� G=��6Ju�� /P �o0 /0NpV����^� �0^ �p|pG�p`�8�Lp B"�O0F�d�� {,@ '�pM`�{$ $P`���`��0���R� #Pnw�D00 K�@ �]��@ 6�p��^��p�0 =`J� m�W�5� x �@aQ l��E�w��p �@ [� `@ ��<P ]�*�p������E�V�� �� �L����"pҰ�� ;�t� y VP� ��G@}�� �Rd0�`(�6��P��@F =0 �@��|�`P�Pn��`�Op@��u�p� �0ec$�>0)��0��V�W���Q�"��0Y���hp O��0 � 7�.���)����X��A`K���pyp���LԐ ���0 8� >����^�G��p�� �m� �@��p�{@�P�0�K�_j���0��� 3��`&���d`X%�����B00 �aP�`�� � ��8P%F � ��~_�7�� ^�X��%\*� �-06�5���x���.�Y%uu��d0 �98� �F�p"2p0�N�Nf���@ �� �p� ����p`r { ���L� gP�0�0��@�h����$�� .� B��0r��P` ;� �uP��t�z�;w�Q���0��� }��3�a�^���Y*�`� �p #` <H80L���^�=���@P� ptgrӰ���C@Y�0> f ����@p� 0T.@+ pc`I-�b`L �߀�r�`�@�����`3���p�p� 0W�D�pY�� |0<PϠ56���� �p���a��� ` ��`[���@��@ �� �@ 2������ :�m�t0Oe����$C�s��� l�"X L 3 0fp`� =�q�tPc�-�@Y��>Њ"�Ѱ2P&����Фa�X��Pv� YPKo�m����\,�X �@ `r�G� }� �0��7� �zy PS� ���"G� 0r0j�:��=� ~0 ��2S@��9�Sp�@�����E�� �PT�[���~���:`��Ҁ�k%h����>9��0�wPq`p �ƽ�@n�V� z H�}����:P�(P=��P��ƐY���� �j���Pf��6�Z���a@�0�� zp����� ;@�Pv��h<`����g@78�@�� g`q�C�2i 0 nL, �G�*pHp @6�a�(P=F�}�0�)@�0Z���e�X@�p�P����#: c0 � 6`p��� p�2 � "�S�hv��q���`C�{� X \@h�pm{�=0 ��=�E�S`����F�q�H�w7 6 ��pa���`3�`����J��)�� 9�P��X �0;P pR0 ��7�)� �PT' 3`,�l�f�0 x�a`H�mv�@��U����@�) p�`=9��X ^� P�I�i���)o Q`,`7����@j�JTp���V;V3.�r��<��0;@���=���0�P o`|�80?���� � K`�>�" �S�ΰ�H���p�������br{��,"0�@�$;���&P 1( � L�� ��0�p>�3@�� �0��70p*w�d`������'j`�0�`] � F�P� F@ � r`,� 04�ۀ=@=�9�:�Аq�y��P H�,�ɭ�0��Y���`S�OpW� O`�� �#�� 1��c)A ���� {p|p 3`qP iKp8�` �pFp^�>y��p@+00��P{�7`�� �� Q�O A�}0�� �����0D���|� �`C�^� L�� b�N0 `�~�P,L��;0' �y�Z4�qI�x�0(`ˆ-26�`萐}�� �y�ЯH&z��@A_� !^�i%'�B/Y��JS��&�yI�낆)�yq'���h�R�Cȼ;A��ɧE`�-�P'H�y���C����0&�G�M��+�D���F�6�L�!�>�RE�AB�R�zv��+pP� ��W�Vu��,��JVL�HQ )P����A�e=�U� M� N9p�.��`0�A'I������bpA��A= �c�K�0�cE�Un����v e�2H��y��BT�P��p���`d ���F,�����[*���ȁ!,��P�� �рb�,��X�&H���"�A��C����� 9���8��)��a�B���M��Bl��#���ayn�#D�\`�w��� \�G��`�3���"�@�w�%,�H���|DX`�4 n`���,�g�4���l>�R(����I��'�Lp�f@��b�!����x��].؆�0X8@�Z���j��`�7��G ٧�A��!(���|� ��f�Z�#���ء��1�.��@�.��RVYB�L�`2* ���Ɲ�n(ÎT@yb�D ��|0��@��\v(�SqҰ�&�q� >�EN�٧h�iD�G��g� I!��RBHL��Xh@zX��Xe�C�`��n�� <��}��5��w2X��P��W����Urؠ��d�h��w�A@j��7N�؇N��H[X������`��$�G�I�9T(��$�����fF�|i�x�a� ��ǘ"��"p� ;>� z�yG�{�8�`@��0�b��VqfH��pG�1\|BY��&4QX�C� �a����*D@�#o�G# ��8@/�����c�a|08@h�� .,A�Z`�=qw�a���3xЀD:�h��&�A�$�v�!8BD� �p<*!��x�� x�� >*L`/ >�P�!v��<���>�c&����� n���<@��8a�i���v@� �b�9%Jp�+�AEpx`�>c>��<�-��L���(Ex@{�3V`��3�����Zр0a����o�� �An�# ����!�d �N`�X��K8�-�� �p$����D�, ��(z�,�b�G p�_�rc�<P��cs��б�}��`:|`7�<aP�YЃ2��/�� @�����ct8����%,�;D��x$A���N��J�@�03�� QD1M�� z@� �`p�(�Ё{<� p@@=Z�!4(�,.Ј+� ,�C��q`` ��DRQ���uX@ �уY|lf�؇!��@!v�B,�a�c�<�c�� q��X@ \$�JX(h���� <�jX�q$� `���AS� @�ZڃL@X�� ��`p��@K���( n@����0B�@��C�����v��Bp<�<x� ��M� ���=�A��:Q^8�=:�q,��H<`���І%��� �ݸ�s0�aW�� +� H�`H�.聀Z�A� �Q@c�G H��1��� z`Ɗlq�\�B�"PP�� ���'�a���v��"�A<0�=�A�O�"�X$`�<��l�1E�`���4��6��@�(x�J`l���R �dR &\ �tP9� ��q,4zx*|0�- �@Kh�x�bt@��<� �94��>|�"X�0�,c �&����f��``�,�mx!��hG�1�#0��h@Blh��q�Bl0�P�(� �B.0r�!�XꐂHx�x�V�y��ڤ��p� 0�v����x�cP>(`8@�J<�qxA����a <�(�&��$X�`[0{��%��y@C�0�1hP�<��:���T��V�|�IFP0��#`�� `9�� ��A.�k�#`D n�\�!�a()���a�X`8��3�-Ȁg�)���x�3�`p�D@�#�P�� �*/6/��X�ك�<���\�T�N�� ��X8�o�CXx�~�=X�j2�[H�8�2X�ȄW��:�:��x�$0��{ |��C�!��*�a���1� �I�x�~9�3 ��xx�H��� Є��[��`Z�R�H�yH����a�|�<XSp�1�?(�(�H�|`�A���@�'Ȃ}H@x0� �h?��/mh�xp_�*0�)�@`�sKP�H�;��y `�xA�L��e�����s�$�/�1�$��S/�x`]��l�x�x� ��)��0������6pv�B��?�868�'h�)�!x����:�}x�|f��x�,�-h�Y`��M����-��5�) � �{���q��aX�O�2�F��`�pZ��v�h�>X��)��/�x��~p��`h��y�P�.�g�N�������R��'�|h�7'?N�����E0�4*��3��=hPp(p^��_��0�D��P�H�$H�H�;I �p�rX��1�( �}8�Ѓ=��? �؇B��!1(���2x(m� w�I�Lx�.���sx\�Gh� �z��K�B8 �D��@j�.r�a� � �&��2��0��H��0�u ����j�M(w`�x�DȀ+}pJI���1�P胥�}0���*��6�-P��;assets/uikit-themes/master-vibe/images/section-background-image.avif000064400002601264151666572400021700 0ustar00ftypavifavifmif1miaf�meta!hdlrpictpitm"ilocD@�#iinfinfeav01jiprpKipcocolrnclx�av1C�0ispe @pixiipma����mdat </'�� @@�2��,�@�� �S�Gc9�ʚ9�����Ɋ�r�;=�g��\_�J��A�o�}J�kzb�ۆ�X���2�rq�� MuT�6wjt����0�SS�ia>�k�zA^dy�h��l5q���m�_m��?��Yk����.�1mA���E��JJ���ZA q;'���c�}��#����M%�?��O�����Ƈ5?�� ��H�,.�̴��R�� ѱ����z6e�/�e�-h=�!ڬ:S�2,]�֤l��c�Q�^�m�0�Flk�GkS�)��#��ЁF�6�oXQ�/�5`�}�Q>z}x4��O�u�g�<XG�|�M~�h�CP��j�8�T�JC V����'� 9�_J��!��J�lөei��4�MT^Q���.ɢ)���̧���""ȏ�$�L~H��!w7YU\���rR��h�Tj1A7�c� O>$c��>�ۥ�R�n��P��MQ5~�l �s�%�Uڵ_�wLy�'V��Ūp��!��~c�5���*+i��Ť��h�M�ʬ�yz]����"�+i�5�S���@2b�C���[���j:� {��;<�k�BT�Yv7*�_z%�r�q!5ݰ�!p�I���+�7�)�Ղc���� F��1!:����=����݂� u�'�O3 � ˚�2=�(řL�"����S���N�L_�D;��[5��cSb�/�a��x� y!�Q)�=�x<�ޭ^ٞ"���~��e��ųI4��,�K�����T'��ffk��>z�K F����Ͱ>�6B�LG��6��T���C%'�L�,�,� )ڋu����%����|��������{��q��)���_k)+K�|Jk k7��"w?A�(A�Q����QÀ8|��߽�=3���>Z� M�l��q�kkbU^'em{�`fV)�ƽ,�t���A�Q�#�q �7�F�����'�4�؋q7th$���y�-AH����iKNծ�*��Sڋa� '��!<쉌q��� �ɭ�q ���&^�538����q���.91��\�s]N��k5�$%-�%.��$tJ��<pər��o@F��tn�h1 &;�lC8K�z)�r4��i���r�6�����J�����F���QtI�ĎNٷފ�����V�~q�Tq�L�k���#� 5�zA��e�# �q� Y|1�* ��,v�k*�Fd�,�oZD跾̒��ϤKO;O�|8p>b;O�`2l[�ۉ��n|�����`6��a��[T��~`-��M�"���ߢi Zz��I&��jj:��ڶ_����G���I��,j�U�V�6O��t�D� ;�x� $���<߫�|�����jΓ���~5�|����6����vW�e0�H�l�HS�v��"�_�0<�7�]�0�2,J`a0���d���LU䖈������qm���U�JQ��C$�\,�:��c7�g���U��S�eFo����/p��f��G~�,4�vj�B,��F���7�HE�*��y&�(�')x�#�=�#t�%5ļGs^,�[���Ҥ|�(�� �����{t�uX%(�!�}�$"�Iƨ�K&:���:~�c(��M�%�eN�U��G�}�i�Ls��ݨ{�@����q��<4, �,Q�w<V�C�P+&�2L"�spH$����l�}�Y\���>��r*n��4��_��(}#��y~�k"��<���� �y5^ڢR�B2�Šhڬo��~%1v�l�T��y�c��̐,t��#ӳoQ*�;�J�g�?ʨ�E6����tOOn���C�b%{1{�v�wS7��TGZ��O5&���!B�x��+ "��Z�%��c�&R�}����������.�jU(��2�pE��P�z~��,��8���&�l��:��[��RoR{�y[Qm���{#ى����<2�7X��P��ռX�n��w*G8�fn���F�2��� q����L��k~�N#�W�t�%��串�Ҕ�͒2����߿%��6+���}�q�;�٘��P�{[�r.��B.�:y��ɉ��]�b��(�5�ą���,~���]�c:TSvDiq�vwO��u{�[~�T�bE�,^kv���.��vl���T�ۉ�NWy�\�\��U2���9���/����u���w�.[��\O���%y�,�'lC�:�ߟ��m��.a�f��U'�Yݒ�G�Ӌ]Dz9�z^�Q�w��Z="�<�$D9��]W!u�h�i��0 [p�e�]L��ED`@b_i,�(�G�\�ا�Bh�ܾ#�wv�4�����$���� 7��w��;2c�@�շ;�U �zKs�bb����b��}"h!�z����p�Z�яV1�ٸd�w��?��S3zF�mm�� ����1ᤰ(} �/A,���I{N�t`���J���u��ö-�Wo�{ǃ���obZ:�b2)�U`=C�M��]+wI^�R@�4��+�{yj�koyc��i��bR���"(�f�K w���%+��6�������͡��4�T��%]3[0����g�<!z���WM����&ب��n�m��O��0fIOm�L-l�}��к�R}�2��B��|����s+?ଢ଼V�QV�\l �ݑ[�y��P|t��*NN��5�ܤ`.$C�QP\��[�9I�}�p����ey�yv��x�C�nF@��bg�PN�c�,>��ߌ|�)J���$�{yG?b�F�r��0\�Pjߡ�y��Q�P4|2M�à�Z�dd�ԧ�?,2S��2��4�(bZ'i�����c�Iu� �&�o#V�Jn kbU5�? l9a�ޟ�$�/p f���Z���(]:�:����O�v�e�m^��F/h8�#*�w/v�#E�|?q�˷�p!%�)�z���{�"�l,ɼ-�jf��cE�/Ո�L�dL8D�o�6���U�t-V��i�B�+�h�GQ%������ʛ �U������(iq�4�� �HG�5)q8��&7ͣO��P-��QV��X�ԟrL�*�2n��t=w��A>}�ѿ�d�P?ǥ1x?�r�O�xh��*U�d��!ۡ�3L��c��?[V ��O�.�{R|�il_�"�����b���m%a �`��^��S��� �eo�<� ^���?`�zc. %�%��F���F�lɌ�7����C�����Et��5@�>�]��$l�NN���^�&a����2<�ݜ�����&�f�`S��g�g�]a���cN�0�üd��l��e�ԅwv�%����G� �Kh:]�G��{Z�ҩ�|b���R下VF6�?�`θT�*��ٜ�(�,��N�&�B�X�,� ���S�B�T�_���z����6?8Y��R����벌DT���>"����i���6����]��uі���*��ú"�5�I��7٪���g��BH؈�4w�z��Hl��!g�з�\�4܄��pE��nV��x�=��p�S���!��|�)@����>���ָ���UVI�.1�+U��p��~ku��=����fh~Z)��@�I��H%�})�[�h�AP �~��F� s6�握̹`�����!e\�_`'n��OXa����7蒁�=V��v�/�x���~9@��������M���Ҟ���j�!f��r3��"�^&q��p�iǽ�}�[�ϩ/�yl��I?|�;zT�YNP6�����:�o��sR)�9,ca�k}��RRō"\\D���aM�㕙�&�"���o"R8'Au��-�J|7���s�>`yU���6��[H�5����Z��p������ ݛ��1�u��e�3�a �J��.�� /��(7D"ş�]f�h`6iˡ����Ռ=�c��\ ��%L�O�+���#�9�(��b�F��At}� ��a�䫟,�]��*�7hǞ��S�.��E��k��iٺFt0T��Q���*�f���q��oɅH�����T�������^�Z[���d�����7��ؤ�;��䏉M5�;e�q� �g�(�� �;�L�)�g6�5�X6�����Ӯ�|���c� rBkr���:o5�ܣ�~f����U��Հ<4�ɱ?��{����Ȫ����:���I2���U���V�i&�v���l"��#e��s6�f7��2�+y�X��c@;���%�)]*e���CB>�Ǜ����}^ (������ M�����"'�-�����v�ǡ{���&'&>H�ܒ��8����D)�Λ���R��ml�ݙHhZ�r�������)6ܮ4����w� ��#��� ��Fa�K8�N��G�!���Xd,�|ʰ,��J���.������!W"���3��u�6@g. Ul\Ѕ�U�r�d)�';Jgqܜ&\�c��M1�M��� �j��5�%�� ����1�^���O�����16�F6���e�_c�Y����z�V��&�Pl��+L�4������u !.τE�͟��� =Pq�Ώ�Z�1�a @��1��ЮA�����oO�ɿ�ZH�zT5�����.���E��DIOl.�R�G$q�<��5�< ��C����������em�R�U ���ݍ (Ct�T�g"�#m��e��Ұ�H���i;8�ivf��$Ro{ζ����2�~�*Q�afş�],g0��M6������C��a�I-���g����f����w�f��.��O��Xx�UeR?���z�f��1 �#<js�O1*5��6� ��S��)�)#�b� e���}�h�Ϸ!��D宙c��� �{������h�}|�,4��Y_�2U� u���\�B�� 8 ĥ`�v(���r�lB4��"#}s���zC┲�9�H��0�#��G��|�g�����;��c"���uf�#Xy-X����ޅd���v=M�@F�� ��6%-�߉���������1Z�ֹB(1�=75��߶��� ��դ7u�(�(� A7v���O�?!�J��r�0?2Qq�p�9n�{���J>��Y��M�8:�8�H�L���Mu�Tm�LNg�FNo������T���ͣ*��Juy?�os�� �̎��F�*�O��䔞�ߍ�\�|ʇ��������;s�2���R��'�w ����xzF�q�{�3�C�vϞzb��0�H�]��r@C�x�Á�)�n9c�Y҇�ks��@=�ǻN/�9����^@� ��f`mG�q���M��-c�PN15���8�B%�T�]��?ueyx��^{Ӹ��QBX��|�~b�8VF�dz��QQ�;}ه�Ӈ: ��X�B�Nd�]�r-��9INձ���#�f�������=��e�&|G����0�Ȼsi�N��W�uqc[�(�� 9���Z��|͋���U��j+0m�(�T��(�[rl�In�[��Vt��LC�&M��x�|T�%ɝ���gJ�k�$4�l�����K���״+uD8� ��:�)�/wZ� 6܃���9��6)b� �.i&�M֠j�n4!3���[Z�[����@�^�եJkka��8%t���� z�_w��Od�`Ӡ�����s=K(���}5�+�Mh�-�����T/z} �!��P���ˎjq����엁�|,m8�m� ��`J��+%�ѹ�A!�|�= �!�b_7`?]��!�P/��X@��3�k�KSV���%X��ݾ�F�A�r�PN��>����p�+�mu�y*~���r�h��cf�I&���˜|J59��}�o�xz�����$�e�K�<�[Lj;���H�L�e�a�_�F�ҭ��0����U/n��e�6�V�`���|z��q3��T� ��xC���:S�<��1y`�d�aP,�Fs��qQ��o[4F�wY+���y�Q�pS`�F�(#� ���|}�ڤ�5u�w�� �jh�wejǣ�-KCg�e��$��gVKQc�L6���`� �F�B�� ��y=���v��0���2�;@�2��@��i��cs̫%��?�pT?ݻk���ޮ�����l�Pw�^�<!��A.H�����g�����v�g�}yY=H>���M�ca�$����),T3�Q������֜4f�Uuv�ݙ��nO�L��+e��]!e�Xs���qY�9 V�IR�>�߆��,��Utg����#yZ���.��|�#!�R3�_B�l��U�SC[�x�)/c��П6y� A����^rܹ B <Z]�ԅh�̢3���e�Q�)ͶC��2S�|�8����>E�����e�Э����1da����m⤎A��$�"�.Gј%K�1�ٽ�|f�"�飂�y�4��w5�_��F_��v��ؙ���˹3x�� �'��#�L�(]DN >_�8�ڽ*Mk�B��Md|��y�V쩨�ߐ�ҍ2��O���`p�q��������0��I^���U��Op��R�_�㊼��� ް�N�P[<r�>��2��FX$r��3z�S����2|��Ex�kQ�WEO'T���x�%+w��"lT�dúL��P��5[K�1e�G�⳩�NU�N_FM�j�BV)�F����ѝh3F�V�����C�'_�C�eϯÇڈ��E���;� qı��(Sr���u�nBQ�^��;-���S������A�2=��CR�Y�1z�O-�3�tK։M���.;��Z�C��d ���_��ϻ>v�4��z�"��B� �).hG���H|���<N��ZL��>��s��� +�X+<H�(r�Cs�����Ps�s��Yf%���'Y�FIPT�[�N��;�#�EOΠ�O>��ȫ��eг����� �v&�d1���(�yl�(h_cs�B�F5J�2�VI�.g*�?@\���������#��K�Ƃ�L�GuL�`��w�`)Cs�UIj��?pG�'���( �7�MQ�\m��'��7L��0�����RXD6�%{I) 3Y�e�I�jd[��R\{vdq�գbU;�ks5��E��Nt ����-�%FDj�o�2NP�ZrY�"'���"5I����nǤ���_M��a���yh���_�7���9�,�}@Ý33�T�H�q4y{a���m�2��2�kb,5����&)+& ��q��š8Q&k�vt�* ��M�n���~�;�"�#4���+k�0��D�\�Y\]��_a~��ڍ^��zm6k� �S^wq�B��;�<!�U���2�%�_�@M:��}9��&�s-gz�5ָ� ��i� ��ʹ ETlQE�]P���lh��"RD\(�O�Ed�3�3�$J!�K�$��Y<���O�Kܻ�E�Kߜփ���p&���sqǁ��EmXdI����W��XO�n���c�@�@f�B`���q�Ѷs{��y�k�y(�%�x6�3\���� װ�=����7S<>��`SE],+�%#�}5U���|l�ep��&����_%�aS���H��\o��:f-�����`�����&���"!>�jq�ֆ_�p~l�����@�R������:~�,�f�j���-�Z82�U�*�DT"�(Y�9�T ��z�j���U�jSE��D?�nZx4&Ե7C)���-FC��7�4C��e�H���uw0����գ�'�nZz�S ��CT��Z�NS�$�m+����\�_�A��b�.����\���GP� ȰP@�Y^�7��Z=h��d�s(!;�����I^�D�&�G5 ��]����"�TqW�D&���5���<�� �C4 ��gpl��Z��5 �&�B���!�g������:.��d��u��#�a� �� �����<Sr��z� nFV�pTW\*ڂ����m �A�⭛�)�z����r�R< Z�Cjyȇ����-Č��� �P�ݽI��J�-㼻+��T��J��C�U>��0C(��{Ww�7`�ǞPfw]�֯��RsK%�r�ڣ��>��2�v �~������7.�hBX-�<��Or�� W�aa3A8��&��PI�g�%~ �X� ���t��ӿ�H�K=<�}+l�������kꀸ�r�x��t����ǂ@����FH�p�ɗ�G缔�B`�@�Q.�y-���\O�?[�#u"�:�7���pW�5H�XR��wҤ ��4��>��Lѕ&���rr~���_��e%s������=��`���-��(��l����Rw^AL��WP���1�~v�JBg�5��h]��>Z)��T��h&]x��.�:3��2��0��p�z�C�3��Bx�{#^d�J��`�,aa"T1Kܶ�w�-�knH �!�C�ؙ�/�������F3j�u�<����$���\�@��r��W�9g�]�㤰��|�M S5#����}��~^ġ�L4g�^{%s]Ec��G@��_5�y\�h=��F7'�8U�[H�Z_��˸+)��$ߴ��v���p��1���^D�J�#���!O��k�Q�my)c#����Fe��' v��ň���k��gi$(CG��$;v�1��(d����G/� �P����X�if��tm��oR��)4�����\�p���aA��{7U�� ��-o4嚏Aռ��t�)A� ��� ��C��ǹ�S�"[����L�0�̿V^���x@E��j|�D)L����磃��}�W����f4�� O>����}qG��[��k���9��Ry1�H`n>���0o@گi���mqզf�F���T6W�QGw�����;�1\�P�5"'�8?���8��cP��5����._̚�����V;��:�$g���&1HB������0P3�ROԇ�b]�ݹ�P�Ϙ�$xm����l R� ��C�JX��M]���G]Xyʳ���M���B�9U�ΨYA�L�2���S�_��]�Nif�T�踷�����J�<O�X�*�����h��.�$tL���]D��˘�`2H�z��˘b s���Z��q��=�w�,U*��W����GW��3��d�ζ_�1�o${��Mݨ'�A��,��P�����)p���?��%���K�^�i�CF#�|����y�P�>����s H��T��x�U�P2CR7z�=v},^�k��7�%��A�`�}I����!/�C�:ؘ1E�v�t��S2Ȑ��K@�b���!��W���3���P���VH%��c�ڦ�U�>�<���l� @;l�t�CW��_ �;��bS�d@��+¶�t� �Y���ع��/`�ru+� p8C�h!$7�:u���1X�X�pi���꽕+�Z���r���T3��������GlRs7�h�@��&��d�df��(��'��$��J��7�ɇ�<�?��W�ٰX�q� �f�U��kR��~͢5�@t(#���UB�����M��hRCWJ�k�>�>����>L_ǝ��(��������yC���dnSD.���������dv���uT[��Ԏ=�j=�t�m���I��O�4�(q2%�������K�}���A1\�i����v,>�J-pp��[nyц:!#���4�W�ʣs�'�ǘr�a�5W��\aXs#��^g*�E�8�XS�E�GĆ����R���}�SǕ�?�f��y"j�&$W�*��� ��E2� v�_\��}:��g�^�Kw��-���Ͼ�W��?FOo��!�=� Zٟ��+[uZCKO>^e�p��+�fa��2��7�=u��&������u-�/i�'��f��c%X2��'�H�[��8'C�B�(�E7�ý��2���O����B�{����Q��'���@��ќ&[6\Ѻh���`�(.j��:hW)�:��y����2-��_�q��;�5�֓����#{��n�����TUqטԭ�ߏ��J�'\`vɷ#}� �i�]#;��}k�,_���=ċǑ��}���@u[�ޚK�I�[���-�Jm���'0�����9B�����H� =R|��ڏ�n��5�����Y��A��V!,�~�G7t_CHP����� ;0�!��:Ƨ��K]-(jh�Q��Ӡ�R9`'y��u c*t���'-R�D�A�'��M�����ujjw�< 9f��6��8�[�����a��N��@�:�� _o�`��cI���v¸�qC.��&�0�+NZի�utp.5�sx:_zF-�qZbx�Q����U.6t�1>��lJ'7&�B��wO�*��U� G����W����_�)̥��$��-�,��+yK+�Ϟ��"��e�4d���.�d2LȆ(���( a�B�g�F�om)r�٫��w�s"$6X�W���@��S��x�k����4��@9]H��.UH/U�Z*@�p���1�Q��M��_1N`�����@��"�gs74m�tGz�2]0!]%(���n�f�$�&�^��6�^����0l;I ���\�R*�D��ߧ�� ���?v!1�!I�F�*.�AN^�v�ͥ/��W���<�j��E"�s�R�*u�n�T���55��4S8Q��ŇT�?4B�S"K]/��R�L7���J���#���p>�B��Ux5>m�M��Q�3� ��q�prJ4P,c �;P'�2�άbΧ�R�I��D��t0O �jzטoM�~��'�SuV���>���iN��)���Q�c���}�^5�!,�h�#��9*���=iPNLk��wb�S���G�RAP�bsc�u?s��pAS���{i���,�;�FG�}�^��% ���e��\^�ʫ _�3BRؾa1����y��/:��'�Θ�����j���q�yc4ߌ+�gk2 �m�Uׄ��m����[��HZ���s�USy����d�Cn���D�L[gܑZ`���{��*5����,Cl��h?z�D��hU���a}�y�K�O��.�o3��g��r�&��|nݰ=��f�s"s�S�J4z�e&��/��&�'g|�|����T�F9���qDKϸ����D,:�?�[��D�.����)�AT�,������(W3r�ϻ�`|zv�8��M��[ZXY7����Մ_o�Y9<����C��0�����J�U�����\)y�2d�l�<wSF�<)X*�PוN�Cp.�91k-��ʄ�s��^S�इ ��� �9�.� ����f�̟���Z#�Cٿ�$i��6�e�)��i�pFׄ�Zv(� ���z��/��xh�MSl ��#����/���!�i�.����#.A�x��){|��!W��삅C�����U* ZѠ��ST�+���ָ�"�M�����y2���0"ě�0���8FG3O�%*���"��x��������n�ew��SN�Dt��(��� ,S�����[���B��)�3ǘ^Ϛ"EW���..TϞ�5O(ܸKwq@�_��~���H:EX�N�ܞK��%��X߆�����p)"D�������gi�����n�4|��%�m�R8�qY���v ��H�c��(�*4e��ŭ�����I�@/�.*A3p���AԒ"AM��0�K8�>���D��?�άd�q+�׃0�#G�$2<���uG˭���*^�#��_фupab�蜵;s�86J�~�mq�kI���@����JIP.N�5���|�(2*��"z8�-qa�Fz���F��F�Sڢ�X���%�H���G'�?��@/�Ȼk�ߪ��4PÎ2گ������d���,����+�uQ���D�L�v�=�]���ˋ��W1k�TZ��5a�Ma�A<�I��^� ��x��-�� ��OÝ��<Qp��_ ��7W�2R�����«ܑAQ)�&g�3g��ڮ�uM^�-�?�GH&��w4Γ� ���}���Q3&� �0QN$M�l�%�4��KS�=�/����v?�t��+���w��O-��Pm�ڱ���CPQP�k����R�]��|@�'(;qhI��Pj�8OU���ȋ��&���x���kF�H�i�E�GX�k���ܬd���(��sj�Ho7�ڌ������m� �� ��^�X ����l,���F���R�D��pŭ^�k7D�O���M�SĨ����d[Oņ���|`f:����D�׆<�nALB�jݎ{kī�Z���B�ʃ����y���h�J@�4Dħv-��g�;� ���5[�LXU�A�c�M�q�;@����(�ŏQ����c���W��.�Q���V��g�����f�Y����(Ît��|z@n���J�QY!;�H��i�_O�v�l0�u/{�dϴ� ��3�����v�o�M �&�^���%.K>���$R0�O��Y����9 ����edn{�i6�LM��_^S����ٶ�P#�(�WL�~;��١Q� 03s:�1c[��D���?}aɉ�zEu̮]w��׃�L��( D)�V�?�D3�42�?�� �%��d��<�rtN�`�/���p ���J@D���omy+ 0�P��b&*�߰�}+יPQ�nO��4F�ԟ��O�@�!>)�y�C�nHl���:`[�|��,RM �;��ʅ�����ҷ,�T�ks���2n��63�О���3�d�4���s��&N��մ��*.qO����<�����xi��@�S2B�咹�J�lXӾ��itRJ�|G�w��� ��d_�uڦ(�)X�����OU�#�(V�ɋ����h���QŌ�\��i��ɬ8x2eiМ!-yy \�.�S>y~�\>/�5�M'�ˈ�( �e�a@����Ӻ]J)om],a^��DZ�ݮ�vܳ�E� ��եږ�I0�ɋ���0�Ϗ��(A��;��BE�F'�iA��0��.�S����,d]F!s��w��X����$���Mr'��cV�GtoÕ4e�/d��=\��[`� ~!m��U#e ��|"��~�o]�wH���،������Ċ"��U���}��K�{yp�Ƒ �K_��Y_����n_�O=~�1+�K(�J:��,�]���7�z��� ��O2��Z>9�וp�K�v�D��7��q�6^Xb\Q�����j�A�{��n�o���/{�[���~<3�&�iQYS�J vw�JO�4��P�&�V��n��F�/i��6����J�gYs���%qIH*X��e��E#�QK7ng�g������F>O�f\ ��IOv(��,^�v^㭹������b�]Y ��3��h39e%�]�-���n�*�+`]֒�ؙ�G���]MM����X�]6Aw�2���&�f��$U�y��#����d�g��M��B:�� U�L�T���UV�U���d��.����Bv�e�M��[���&b\�ؒg�����p�#�����$=��p��jΩ��H;a����;�g�_d�%�$�h8�z�<��.�%��5����N (?i:��� Tp�G��,Sv9[e�aU�{V�8�Lڿ5���V咸�~��q�U����"��;l��SJ�B�A�I@���Z�V ���N������^"!��o�T��@I����,Pl������9 �uC x���G�Mֿ���y��T�ϲCn$��X�H�n3H8 �c�/��B+3H��,�ߡ�����K��3mi{u�;b͋���/�v]E�{n+E�m1\��c;<��84�kL�Jv�َ}��ц��f��!�:%�,P��DM�(zֵ�[? ��/��j�����+�q{�R����@EǦ��88���q�m7A��s�}bݓ�]�qpݢ�Y�Ӽ�)#� �+&.���O�իÐ�^jbI�˷��^i�[|�rzҐ�:� g�U��q���hUmb�n$�Z��e u�r�E��|UT�6ֺ�ГTd?��A<j�|��4���㥚�*h�3�RÏ̳��V ��p��'Hd����b�暲Y-��W��_E�J�o���wĴ�V�ͨ��z�㉫�s{*<_�eI�D��U���U�K��5�#��Э&6�.1T����a���7�DB�5�w�!�C���X���`�e6� ��5,�i�6Sd^��d�8}�amvI�h�Jz����BlEC/\0�a6/�T�@KU0���U��W����ьv ��u~���`��p�큊a�MGf�k���B`���3�+�B�1�X���#�^�W)m[e�3�+cQ���.R�Won���5X�Yb����!�����^�*��\�<ѥ��.��L�@�q|������t&p�[�Z��n�v^ptć'�j����gT�\'����P�:��k���wD�ԛ����4Z�vu���.ו;s�H��g)o���]���P[j�>���~�q���Vfx1�1c��%�E��5��y�9I{�Y:�yqء��/1YB~���3N��[���'�7t[D�K�H�1ؾ�d�l��}�K��@)�%�C���w�GQ�D%� �9��:T�qp�iBs�/g^��="N�+N���Ë��z���(�U�}U.7{�:ea S��(ƣ��dV�.�tE�I$u�L��A�I#��Z����.���߾܂�l;=�/+��5ۦ���Ώ��}͟��f5���x��9�[�퀂r��I#��t� {��]�е,��ru5*�yqU���n��NMZtoO6�7��m�*�~��[v �Pi���zmm@��Ŏ0q;�+/4ܮȱ!�1;��ZV���|�j��q*�oU�`�1�/yyWw��A;�m��E O~Eۋ�:��w��\�_6�Q��G;{�g���W�H,�fՏQ�Մ���/�$Zoq�ºad^1R#�;�s:%/�ܠǒ��z�Q_�X5!Q��1�"�e2͝�%\�`�$�}t�VE}��g=�lG�.{��o�\��Rm��"r?n�\ǟ�������h��:��R�kd���j���� ��v�Q�EB���҃�~g�.�����U��L#��?Ø1!q�C[����x勠��G�FIN R�]f��E���C4>~P9~��@���M��&�+��;� p�:�^�k=��R�p�=Z� L��O�����ΪGJF��^�\=�Ӌ��1S�u�rD(C�j�&�|��%�B<`�P"��%%��G�'\(`^��!py�\V(����؏���I��P>�*�ߟ���j��i+U}�M�J��p�x";PlFjE����4�a�u�d ��s�0�W�BS̩.B�m1����@磐��}�B���1�{�tzp�?�+i��5ad�bI(�--=�j"C �s%W���{wD�Wo(-l|2���K����r@Jr�7�2z�_��Ru��T���4�{�Ot��D/1��^�k7U���A���~ �&5�7��䅯 �C���"���&�6m�|�-��Ɨ/�Y�5}p�&O&´��t4&�a 5&O�%��`W��5�d�zZB����2��!�����z� �Hz.�n�W`�L�{�YWb�.LJ�k����BN� [I6��iΡU6<�'��NOV�(�Kg����3��O��.�w��~,��*��E�>6nG)��T�V>q�|�5�뼞�p����rFD�����e2G���Mi�O���m�En����\G�r!AQ&�8��T�h�x��D `����/^Y��x���B��p���˨���=�*e�Wv�IDDz�(�-W���Q�.�m�������? �a�=nj��o��K�]*H�6�Fl�24�� �V�AF�k�R+�,LP��Ek�s���ؾ�B��=����lab���TQm6���kT������j�\���'������fj�x౸�S��ΏB�w�K�>-л��AN�} #tJgzz��4���{%�Q�q!�!B��I�D�o�}&�Ҭm�FXj��^����{���~��^9̾>��0�-~�%�g�2J]Ӭ�p��g�|��HZ�)� �`���z詮����b��x���f:Wn�U�@��g���b'w�%��rC�i���[��9a���E�m�t˷�m|T�)������:옻&G��2foV3�m���/�۱.��P8�)�A�7���H���j��4�5�zY���dx'�؈/S�.�K�ɐ��*�!��%�����8�%Lo��y��rp��4!������N��In�Ъ���X_H-Ѩd(�8�J�<�e�����{*|�_o��I���q�[�v�\cu��!�r�v��iYkĄZ �a\�(Á �p��Ս7I�r��l���Mլ���6��}ҏY6� ��r�饙=M�2"v��f�����zҥ�4Z�Kq�ű����5��m��[F��0y��5 ���������a�t.7����#|,1!�ۈ�u=�V���O$C��HA��e����$K��n��/2ܲ���$�%��Nce��UYe���*<Kq-�J�Q����؞�d#lH�����rYD��(�3L�����?�[�,Z�d y1Ѵ�����m�_�&�w�1Z���NJzz�`���ë,[�M�R�(�9ӥ*��S ����rV���o�\D�iAz+Rr�o�"���)Φ�]G�{ݒ�,�ri�I.e�Ή� RQ������9C�+N��� YH��c�0-R.�yug��(>��QƠz0m=�\�9�d��]�+N6��aZ�6��ctI0w���:v�c?����J�풃�2 6�������5#D�w%BG�U�����( ;/)��v��>P#oź$B%lv��fU��;�H�,zc�)s�`����P�_��L �d$��n[^ m�<���J`��{����~�^D��x �E��cV������uώ��7(��Q�igu˕<Rc>u�������x��^#-��:�<�D&�>z{i`��'�T9���q���.-��}[m����������>*��d���Z|�;��x�B�$�-����x��Q�KB4]w�ǫt�ӭŧ���a�R�9��.�ht���nM�܍� ����2�JJB.���s�[O�Sޟ�G�i+�r'�� wk��b��柅��L})-��HcJ�r���W�=��.���v� �P(H���B�5�R�|�,Y�y+�*�^���RQ�h�&oae��������!f'�x����+����C�u����,"�3���@ �a�E�߰G ��^�[N��0�74�NY��䊜�*��e�:��:BJn��ŗ���~��:�hj��o�O����\�Vpn�DYd����؟n:s 9����C�p��$�Iv�+v� %Rw�ൊ�l���;��z��C����m�d�(t-7д9o���tU+D�G3��es����e鿎��M�9�-^(� �n,�C`��\�|�'�?4��U�q�h��k#�o�0��6�>�Q�m�2��˄�Bj���PT��u�m`b�`1�܄�����ac7��w'�f�c �ߴf�s�4n-#�3���%��f�eZ# �`yV0;B$y��˰Cwě잋�Ų��N���aH�e�����k�If�=��|����a����[᎗a�6��}^�Rˈ}1-�����-�Oa���D���h�,�����P����pT��ʣ~��nur���mvW.*���O����RWĆRO98����Z��io$��.-��VE4�� �=�b]�����l�:�@�jEZTW�;fS �Su=���{��leH44E{6����� �]�V���Ӎ�l��t ��ΈXh;P�x�����s;�R\t5���ׇ4�{�DnS8�hF��u`o��j�d"�d~b�MrxФCuY�&����� �({�~��ƻE�5��� g)�;"�+��|�*�<�bLO��[�B\��|�|����K���/�鯉!G�'���"?� �٪�c��s��b}D"�������(�X�{yR��e�w����IZI���X��п �}�����\g6E$���%�3�(&����U�e��a;8�sڕyſ�=�]ud���Z'k�V�����w#� v�۔�b@HШ����iU�¦Jˮ��S� Ǚ�q� ��E\���>�d-�]_�e0Z/�C}*���[ظ����_f<���`-���C��F4�CשS��O2���俓ƣ9�����N�w��T�pW��=fت)}K�?��{��UP9m�7 ��Y���;0�Ʋ\�OkǛ;(��^'��z��Q��)��x֥�d��)Q�Ҁ�}l��\�^���x�3�<RGzR���7⅕Д��cƿ� e�|�D^�5k���+�\�vu��C�*H;���r�[�h�)�]ΈU?$,��>_��Ϗ� 6��`t:��S%X\^ '�i���~MkYV\����ʕ�-[�w��_�+������$IZ8� r�xd���O=s952�&�VxkB$wt�/j.����P��e�����0��\�e���b@%o���ƥ�ۯ�ʉ��=E�NVrHA��| ��D��4W� �ũ`lK�L��_%�GW��F0?�ڡ��Ŭ��w��D#�~�e��5��Ҋ~��}4���=��ϡ=&�1��4����H�OԚ�D�X�b��P�l~�Ӊ[����[Ю2����RXP�Lu<� �1��k��~Ҁg���l[��F�P��l�lFG9�=CNq�����vO����<��D���}!lET�,��2Shc� m�A(�������jA�8�hZ3]���z�Ƒ�Lj� X��1���O0�e(�qp�v�)��:�/���7��y�^��{U�1�nQ��G�%��ب��}��8'|�'a��� RZ����1X�J�12��4��2jљ��ĉ;p�/��r�Z���bXd-5���"�E���_2�C��^oϼ߽C��F8:�#03yn��[����蠉%$�*�l?�PMH�M�Q�~�`��>8N�@��|�Н��+#7�� `����R�3b�> ���r�hf�v'�=��a��� �\&��RmK�E���,ޅv9�ϷYu�7 �9�:�3ϝL�X_�r�n�i���F��*,d�YhS� ��vO����ۜ�l��t�"��7�3c�&�V�0$�n/) �{DQ�F�@���>�CGM�W���A}���TQ�C�A]'�)���n��4�E �IyZ��v��e�A���"j�GrQ������l3�����`>R�Ϋ��C������%r�k���7������r�9w�?6ȉ�h���ooQW۷���}�(������K�!��8c׳=�/���9lIa~ ���T��E~(u���M�7����M��On� �!���ު�P�Ɋ�t4�F�#��]:e��҆�\��2����2G��e#�#w�h���^�Ⱥ8%]������<�YG�\���|F��vF-.}S�2�\.ke�<���7��7������2Jy�%��3U��~�h��̼���,��U*~����i��hh��;�j��^pdq��t?h�zdA��CLgY���rG-` x�>���Y2d0��D�Y�7ƥB����V!��F�IH�t9�r L�/ހ���=*�u�ȿ8�E �?�A_;��fZ���ه\�pZ�U�.���IE�i"!v�<l�1ۄ�_�"I���ܩ&�3_o���(��[��BxEQ#�v�z%�8H��19�\v��a5?�JoxW�b}��#}���?��+�6��w� P��:d�a�b�!�\�h���u�R~3���)�JNq� ����e�� 7���)쿨.�^X�w��۞W��go-S����)���t��&;�˼��(��p ���Na�.N#���T�z�T]:�������c|�Ti1���c�c��1P�t����� >K��y�"R����5�B��u�����yi���Nt���-�oVKx �9=����BR��C��άV�D�&�~-dپ�A���?, �5`����s=�R�h�Nm���B*��"�ڢ�^�EE�}����!���E�T��Fh6R<�9b�b�[H�7�s�$R�~7��wi]A��}�`�ɣd��J �K"�ab��,V؞#�x��m�^ar'�:]����� �X|���N����C���IgT��I��&ea�i9���1���"_'L�6�L���>�����#�2>���,'Of�-5U�S�����N救y�S��N�ť1�7Ѓ'�� ���f�|���;y,�4fN�=�Сq��Nx�'��b�О_���+)�>6���H�M�Q9��O��[U�$� ��� ��ߘ��nh�e�D%�/�s��-5�B� V�����$-��=w��9Yk�W���$Z��>T��=���� hk��@#cnU���yw��~|h��2lŤo�y]$�@�F�E�����oᛓs�x^��B���Სlf�ׅ�EAܝ8�����x��#pFS�&AE�X��i���_�1�S�px!��R�$ �&*��D�9��,l��� 0Oz�;e�>C�bg$L���+m���Aʉ!$V��d5��&���g"s�?�s�c�1G��] �Ex�D�M�E�2M�^�z�\�$�4�T��WK)�Sa$ƐR� ��u�1.��y�j�Z�ϾC�s����0���FG��& ��̰%���Tg�q�W�=��n�O|:κ������5���2W�y�� �P��AS�X:ӌ���������Η��߽��zn`��q�*]�ՄUFQ��=�Z���I�� �}��W1H3V|O~��r�+�};��b�H�3�&ѥ�0%,f���f/���> 4"٫29D���{��rҽk�*�cJ�IeI#�˭���D2�Y�9��o�U�*�/�$��,����g>-�i��0��rJ��ʉ-ضn5ؑ�F����x��FN��+��ъ�Ƀ� ��9`f��_�6�}���)�qq�LD��4�α�'��T�f ^""80&�b[���c�����bc�ȑ��� ��5�����S��́�ؽ~ТՂ�V��T���#(��]��'���E�l�s���)���b�W���g�vr���(�q��ϩ!5�f0����J`Êr��n�0]���i�̬1<���"b�]��9�Sye6{~�;ы��RI���lA;���|��p��Z��r��䚼��o0����co����<r��Ud��uA�|0Ea6��d��>�'�h8����-�c*�nf��̰1@$�h��`����z[�_��D�j��f���A �*\\)���w�/K�zz�����{�$)ShvEx�ͤ��G�*�@����(Φ�����$����*H��M0a��\r�0���+N�J�XtkR̴[�-6:ۋ�]��]��t.�X�:2l� Mw ��O��=�jZ����h��9�j��q��C%�Q��߶� �����u�TY?eTE������#y���>e�^��?�*z7����W���[ �m�y�Vy#`�w������8͉����~��}�Ɲ�|�9;ɟݏڀˆ��<�E46��G��/;)0S�Gc�et qW�bȷ8�"�|(�����%�sS:V*���C�vq� |��D����"MP��L.�ޅu�ĝI�ϵ�z<�?aj�]���`��m����A�5M�-_�<F��{HЕ��a��%���q/�CXP0At[�̐��X����0���M�w�՛�������\�Y���<{&�E��Οl5����A����M��k�T26) M��� C�3��i�꒸�o�)��ɝFc�weq6 m��ڟ�o�[ީ#�QˤI��Sݱ�rh4���s�,,*GgH�<j�C�sWT��P �"j������&�ƶw_@�f�+�[ ;"�w��O�*�}�iXk��V�'���L��2����#�S��A��gX a�G�i\29?�k_��vQ�U�����kC#m�\xW��F�h4�K�Έ�l#�qͤ�w�X�8�*�!�V���9�rtڭ��sbuNj�,�y�����4�0�v��n+��K�\*�M����u,����P�����b��y�F��V����X� ϟ��)��'4� �k|H��/�t�R��<q�g�3P�MJLw-�Rkuyl�2�e��0�ν Z8�7zI�Qy=��y�q@6�u!fQ��C�I6�w;VҼuڙI�o��S�q>�o�$S�_���U��oc��q�p���9 ��3f#¯sۙ���a�E|��+-\�k�E�I��J�v���@�\'�E��+$�V��y�7d��ڦpަ���V�J��9* ��4����7��{.���~�ֶ�_Zw_�VŴ��e��9* V� ��~jH�X�] �E}�����a����w!�E� �9����7հT�^k�#dg6z�t *�˰{��|~=$]�|�n�c����˝�?��q��� wL�>+�%,'�T�� sc�c�Z��Z��+���wٻ@N6|r[�n�=�+_ �ǭ ɏ���E�Z�Xvq�[v�Fi�3�*" j�Bj��N���Y_��PcI�7�p�Eɵ����Pr a4t�a��D� �N���q&��K��<%�9J;K�j���r7{a�:�=����"Nʊ�P|��ꋕ����`5~�U�KX�C�T?�M�J�������d�ČW�1�����9���'��T��Q���饗�*&h�Άī��B�Ht�R�9 w�)���NJ�Ǥ�R=eU3�����WW�e�p������M��҇�����Fn,+��GĪC �S��i @�}����)u���HY��K��W3rh0Rau��v�o�%���� ���&O�]/_@s����3�ɩ�=�Sy�&�_������o&��&Z��v�`���aUޮ$��]F� ���D�ao7�o� �V� �a��b$�Z�d�Xs�y� ]�U��_�`ut;���!��L�TRݕ4B��S��C@� nI�Ў�H$���U��_�8nc�[\%&2qyQ8R��C��i��0B��+�����ʑ�td�%�a�c��9��1d#�+:�o�: Mj�%��7�,��e�"� �鯦u���^��݉sbW`��\�a���W��"z�o (���6�b,)�j:EXi��p�o�љ!X\��t.��I���0�z�8�����*D�;qch���:�.�n � �w�m���=��z0��� L���ډ{��J��B`�{ J�(���}�۶�����5�*;�w��+Z>DX���+%/��wD$�& � �[{8��h���V[��Cu�����f��v���eӃ)p9X�1�-�ZMI8����X��u'.��y5��=A�y}|��@���C�XE��WΗr��nN)�^ �w~�U��A�0��cf�߲=��$�U�E�C&�H�0C��r��n�D Ek@�4+ߌ���O���߬L�I$F+ �{��9[�r���3��l�1����pX�-�� ? ���JL�"��H}�m�Y\�����#��N��R�G�ֶ�e�Xn��4DX��W�{6����E��`���i^G��9���AZ��ŝM@5jlC��#4�q �4k��tX��f�D�R��Rz�.���e���V�f<LZ��5 5e��Y��bo�Cþ��2"6��(!�qٹ3�1�x�N8��v�x��H��~7ZE���r���_#R���vG�h�I3�ٜm���H�k�ܙ�I"�ؾ���mO|���S�~�z�nyE�ĕ������:������V+��X�I���8��o�Y��x���B����2e�JYԐ\��;S��j~���┝��F �TŃ�G��c�cYў�� ~�1��q��S��۰|CM���]�oڧ��eO��\�2¢NI�'wފE��h�R���o�4"�!/<5*g"f�����~H�[�w���0� �O�y?�xu'�O��wV�:)Tk���A���e-z�����Y=5��SoX�adP���ٌ��Cq����y���T0:�PĄC��:�DX�C��K���7�'�}�s�� � d�k1��2�b�_��S�bڠ3q����X��$��@( ���l�Q�Z�bNQ� ~�c��jǶ<of�Xk[8� �g��P�ʾ�S>3�ۤԧ����:`ot��և ���0�CyY��d&j���k�tGb�MT�[���g�8�N2��t�s|#�JNGL(C�]��F�;�>X��F����s�#j�NF��5�|\���{e� ��ՒC�aa�-t?���238�$����u�m.Mj��rm�o� � g�'+�SO����a��M�,�?'����4�Œ��y���w\jޞ�j�C{D�@B Y������������ #2��h)�~�a=�.��W��� � ��xR!� *+݉ȅ�'o�z�]�|�O��]#4��Vs�<3>p\ ����0x� �'�u�$u����� a�%�`7�z:ަR?V{�ڰ�@A��7L�Dv��+���nTM�Tqa�A� ع�v��g"v/��vOɹ�,�Y�|��젚��G���!u��C�%��Wk��ٔT�K��pC��w�\�I�5�0 �.D�y�����+8�v�9'��T�v�#�B�1^�ı;ݻi��fǂ�QM"?�7�Z��j/��cW�����En6v$z��+"5O>�~���;9X��,s���z!�L32i����}`+n6Ǐ��B�4V��n�Lc|��z�s� ^����k�s|���V,�D��5�5�I���!����gu��.i���R�&Ұ�O�]�� 4�)m��$1CP���x0�1R��ӧ�K��t�姬V�o�%�|�Җ}|A+�.!�����Į|�:������A�Rl��2R*F�\lpz*ͪ�QWx>#>�S=��2��� %k�r��NG�Jw&��l[��,-�~Z� ���˗����<�v��7�O�Ck%�`Q��N<�fKR�;� �a>7�@xA3;[�i�1���ą�]�R�!88)���`��9:z�3�U��tǀ�;��.�{By��wW��C���<�����}��Uw���n+�SߙJd�� a[��0C#栮�(Uݧ�� �4�c@������k�x�(��>�t�s����U#��1���ش.u���K]._��V�����L�m���=��V��=�&)f��q#���Nm8�a�>QYU�M%��a�R��|��lJծ$���BR�����LJ_�6H�y+�� R�.KNpᩆ����tV�#���u�wѭ��ڥ��,�:����C;���Ej2Vޒ��d X�4�� /c��%��W�ʵ(�.�|�Hp������Ǡ"��ӧ:?M��X��㚔ɀ-�B�c� ��<f5nH�� i+i�.�,�>̙�B���l����a�P!��a�'9O3س�jپG�"�Yd�v�z�@�3�Z\7c� ��}�܊��ڸb_m�6Ά����Í[D�ꔜ��D9�ȓ����!��/̈8t��SU��������p�o�9@�Z���)�]\���hrb��<��z8�}�z�*EWr9�q�&׃�%J� 3���4Һ �qIQ:��W�j0��\��w�5�N�w�����Vwn��hT�1&��g=��2�m�C�()W;K)F+�N��!�QԔ{u/�����-� J��r�?.�}ѵ1��oؤ�.����]�Ht�S<����T�(d����$�'s6����qxp����2dcI^���TO;�i_��e�QƝw W�yy ���;��J|2�T7ſZ��d�d��h}�٩�ڥ�3�3��������5�r�! ��3�gL���6��'��Wd�U�G�0�FKZ�$���g�� <D���)�ί̳Hr8�� ��e1���m�KM"���~է��N�m��%�r��_o�\n�r�n���t7FEx�}Uڒ(��� ���.ȣQ} ·��$(���s�$@��f�hN5&7��9)[�g���|�������b����}��,��������)�8�����6j|�vR�^�_e5k"�j���k`Х��Rv����� c�&�L=K�:�id��HqAk��`��p�-7CVv1X��٦�@�,��k�9p��z��@� ��j�WV�����3I���j@�@J�T�穂�P��=E�w���qr�Ma�C��Yl��F/͗����A��1�e6ƅ��a!��p+�����ρOA�L짋�ڤeԬ��il-��{A]��35pҵ��MΗ�����"@�#�@��yʮnx�AQ �x<��e�1�)�����$`Ѵً��E�^l֞(�4yFZު����c���ɠ��ڞz�ӆ�t��}�x|�i}1��*T}�?s6/S`>Y?�.�/���+&L�� {�B�_�8$���fc��3u~&,m8m��a-W�&4��b���� qM�=��\�9J-3H*q�!��?��$ՊBs�57���q/�d� ���d�q�}���'@��[RR�ZL���@`g%�,� zI�P||��d ˒ lhS�j*���)5��&W[���'?v+d~Ay�3�(��s�F"S�� ^l��D�Z�E��P�H�ς�S�Hź�6�װ_QY��T���Gt���� [%��}�q���#%���qE{T�$]8f��{�v�9R;�|�'΄bwȫ���:gd�ԥ�]���f"@1�����gͪm�@�)����t���̕}��eY��� y/@�,�Q#3F1��c�m4�%�F1��F>vb��`yy�ں7�W�PH#;ЕoZ���=��D!��ƌ���e�w"r"�C&�b�G����ڝ6n��y��W4��$��S+�O�܄Rh*�̥��}��O�����|�$�g���}�uk��٘�#�;l��go��X�5���v��6�Srfc���=4�h62H-T9�i-������?s'2�^�+<Ew�9��X�tܞєj\�WlY�p�DW���U $�h|x�>V�a�`{]����-��1LJ1r�ߟ��<���\�[4�q��ec~1ߤ�M�<Dr��i`�M_'�d��p(壧B�S �P۠T����v�f�q��{ W�U�+��q[��R��R���m�[}���u��#�@2Q]^��WL��8�?Y'�7�i�0�0���*ܗ5B���ɧ�-�rN��̑2�Ge 6F��ң��U'��ye/�Ӗ1�D?|���I�'i���� <4 ƣj�� VQ0��Y�-զh�����K"�q����Gſ��qu� �`(���,&�S�<�[N�0[:=jb�����~����Tcr���^z���wӬ�;��1�t1 �m�L/�6%�|��5���}��gΐ���XN�Zq2B>�?�E1�ת��<�|p��N;4�i6V��i��D�q0��ȯ�=�B]�'��@��;�F"��B�"kP�80JB�nn�" [�5���ݠ�卑_K��m M��U��T4��B��k�\�Y>�� C����4%���R,k�j�w!&"@Y�Ȯ�b9E���(`t�Y�g^��Vul����6K�n!�'���|^�ayZ9*j�݁��j�l�R�rv�d��ڧ�6Uy�s��/��G)�B��Oɯ���G!��K�O0� ��mσC�Z�B����+k+�d�"�7�����˖�-���m%��S�� �1�*�$_��8�!��I�]����B��N�P�Nf����ի)�8������m��/;{:8�t�@qE�4� }O&��5�L:"�.��͐u�̺��dK���#��q�R+��� %�3LF5 I��0([��$�0]P ����AR�߿m�_f�m��}堞9p_��#ɹ۽+�.Rt)ţT����N�Y���(�a�t���Y6o%Vu0W`]5m��i�f�BƤ`Z�� ��|<�!}O>rF��i�FbK+w� M��f��/r��6Ű7��R�M�J��c��b@p�c^�9��4W�U�6��z ���X�^_2�cg�.s�?hc���ӍoȄ��Uل匇�)5�_�~����+d9�M���a��q���<����ЕFѭ��*v r�m�3S~��# �`O��� p>��z��M'�|CEg�0���Pa�u56oxUs�a ���4S�#ψ�9��7���S%$��D$���\��� ת�2,��Z�/H��`�-�N9�ڇ�)�Sj@-�ُ(|#��t��8���*>X�atQ�sT*��La �.h &���>c�Q$�"�vW�l�턗q���i�ۄ_T�&��v[��W�N��6��p-<����7�;�q� �JQ�������_�0֑��ȇ0��KH�@!Bv��O�S��O��v��5�+��O@ ��� ��v�����>�AM�)���U��sv�2ђ-�Qɼa}�Č�|i��+ur�`�"�K���gJڐxS��͏L�[�<Z2�d���}�e{{sxw! ��o���%.�8�=~˵�l_��C�9�SӴ�dxdU@�Kho�bk�U�F���0����?��z 8�����F�&��K�����M�7V�Dy�I�;ɮ+���ޜ5�d����*щOd�����q������4&�J ��S���AcC�����J��a��R��$�^��f����D6|��7?�}zs�~�X������=��p�Q7��Q+4Z�a���ʥ����E �Y0����!bkV�o�'gnY�xJR����'? �1�Pw�M�\##�����0t@�?�]ܽ1���kG��";v���hcu �ӂ�t���c�o��q����5�DJ6��B�2N�/8�(�[&�*h~��aL:w�#� ��l� C^>�W?��p����B,�/�7� �+�-=�J�͊<tW�~�����xm7ٺ�g���g�i$7QBa��B���Ws�K����6~�lxM�i,�������T��'��HM����q���eIy֝Mҽx�_�1ǹ����J(���82��2ҌF������m����"�Ƚs�����ey8�ߘc���A,�"���8N�w{�)��V�C,H�o4�n�W{���� �-q�@�WX]6��p���J�|2��.����:NY4������\ ��KT���˄��ڃ�W�r�j~�g��@�|�I� �J��1���M�h �����ׂmp��J�c�'�1'�*�Ax(��i�띸�T��IJ�z��(sǠ'H���V�S��i�<�ۍ!���Ҷ㐶@Z��<�jǧO>`#�� 4��f#*L�43�2��OeS�_�S�k�����Q+w�Y].XW��I�gصo5b�N7��[ �����2�?�u�ʕ���z�A_D�a��0䳶�Z���2m�=��� �)+�� ��ǃa� ��c����L����=m�����f Q�MU2��d]�<Ȓ������Ƌ��`���{��✎�_�B�Dԟ�&5���jEEi�#D# g� �@Zg�P�F(X0_��R�5$�h�ι�7�@:�ӈ����@�"\�]4�d�?��'O���!���&1�jG��n����ʁ}��=��1\�y���5�ʔ���_�&v����0q��ނ��#�7���?�`䮞���R��ס/{���B�ՠ1QG���w��^&$�p�������O[he����t�b�3���/�_x(U$Qa�R.�#!>Ίy+���.�j2��,�h-��U�Ifj� +ǐ7�Sn��Fg���^���dߵ7��t���Kl �$�=�TM��!ɹ��,M�C1��EϬ��G�^U50��I�3��`E�@�c�Y�OFZ>�u���ac{��:��E�h}w�UA{П���u�.��4��P/��$��v�^Ҿ#�P �s�� L��| �k��T�['U��e���{�ny��E��F^�;�@/k���^S�,�8���Cn�X�j�c d���[���,W�چ��� �cb ��pEIH��䱁IKPk��R�Vͥ�C!f�*۬�(u��:���@&=~P�R&�"�.�2�ݱ�ܻݚ=�S���Gw����O�w�f����1G��&o�MF��T�w'�\H�� �Q�NE��s�Q��=;#:f���rJ��������(kd�17|Q��1�a|�9����{��#�O3��q�`����� ��P�핲��'�s�͒ �[�f��7�V��ϔ��P�{2@R�|nV��(� 7�+t�Ԇ�ۅ)wR�v�3��l��qL k���G�e�r����b��Q��d�hJ�n�5��_�v1����Q6��=�� NN�i���Y�T���g��>PB��q��ߖ�t 7v��5GW�SQ5�h��B ������5;�����J�^�Hd�A�EáT�ؐ���L�}c���,uN�,��� ���"{ >:d��77ژ�K��<�K7�)4OƪP�<��^��L%�B0~1d�' *k�|lXl�mEM�{�/�CߨX�*�5>���}���H�B%>���1��2�Z}�fZ^���m��pA�'l����x.��_5���4��y�^� <�V��:��O���b�4�����|�u`xq{���i���i���^k>h���Z���YC���ۻFK�_�W�l���e����Q<��#7<g�FH��Z�o�8b���zTKq�0tO%���y�%�n��N�n�/�(v�ԍf�v�� ;n���8R�\��AJ�&to=��)�Y��Z��z@KYg'��u�h1 _J��ZM�(YS��F�� �P�ǘU:5�%�� |?��bp����s5�/�|QH�[-�N�C7��j! ��w�H�X^K.�Ш�Y���@��G�'��Fy��\�J��/uC��8g:�$�[�E�-�ybQ;����fz\w���}�ީ��9�ֵ�!�Bw/�"f1#wy]|��ļ��ҵfSrV��8uI⧰/3$--D�T�Ǿ|"2�+��l'a�k���� ��P��iRa;H�y8H��p)������O���n�ET��E��XD�(��&k)a$��)��oF��e�W��kM�4['�F!{�6��K�m�+��`h�i�u�Q|�#k��+;�y���2q!D�dx(�c<�ߪo�mjr��R��"[d���bߕ)�T�hTh��ӛ���r���P�Y0B�FZ�n��lf�C��v���<��ժ��ҳd�`�6f@���V��� L�����w�r���� <c�fR�n)�*�\:Ml5ni�jG# ~�ۀ�%$`�d��"���6���b�s�Z�-�Q�`^߾�aT�+7[c7A������[���>��K+ �j���,�A��q��@p,A�b�+ a���6�h�{�`���L�9�Y�fL�z�S��,�jG�;��:�s��;W�>�$�:Y#��W�&�K[�ˆ�K���2�� �Y-�,\���i��ڮ_3�0~�����TͶA�e��U���*T�������e� <iK���N�=��7qn�J��f�&%anP���1qJ��������^M�^Z}D�wZ�g�1���m�pA�Ƥ�m�U��U˻o_�HS�M�W(�}Z]"@�����~A�x��>_����a����$�z�(�D�d{4�v��-��c��K�!�Ⴃ~0�̙>� dҐ@� ��P�%���_�e����r� Z�Ӌ��έ�&ӗĊ�E��G)r}R�X2D��ī�Sć��VRw��������d��R��Hh�V�$v)Q�����g�<t�%�M���v:I�":Jȏ>���&��=Q���[Q��v�tG�*�օ5�F3��MO�%�� g��,u���n��J����M��Լ���p��a�|�+h�1;�shfs�\�sM�L��Ž-2��~��u�(�q^���;Jo�9@Yy����84��UB��a��n������U��;�a�]���.O���%D��M�E*+����JB �KOd`P�:�O3��Q79M 5�3s��7P��j�;�x�"����\��**3N�i4���Cc�*�:b��7��B )ޞ����'�]�pa]xnO��!�� �8+��v�f< $܄�x~�%J�MlJ�η &�!b�T���6�k%�V�6�&���[�D�f��,������%)��[��4��L,*�*�GkYn���-E������{�F����lu�!17eS��k]����X�,�;�R���J( ��ob�iI}�Q&������{���+��${�v˂��f7�G�/����6I ���0����H�1�Wn ���]�A�H�ө�X�f�� �;���,F��!kSΞ�O�v-t�A��(�]G"��r!�a��~��_����k�c)n���d+�d��V&�����p�qS�V�}���6�����/�N��Yz����4�'kj�:>9�ù�ᑺ�_L�B{�7ީ:5G����F`����(2ѫ���d�+/��3�R2���S ��%A���_}�jmI�G�U黿�|k����#l�XȔWR��b��"0B�.(�a{S�U����l�� $�5���9|�!�����3� �_����3(�dB�o���e�읣�g��{���"8���u��.*h�D��(kz���j}(b�s��oy},�'*ޙP���ꮶk2OW�[5����4(�A�L)˃O^�r�v\5]��:���g�㩨!��b*�W�f�&���)��Cn�f�F!wcg;�<�<����hcb˼����VXnۣ��A.�@ɄhL��/�J|���7%Nl1��ǀ��������4j��W�-l?�# !��uJ��AVPd ��^p���4�LŪ2�(;��)<Ѱ��t9�Y��.c[�j 6�zU ���OI��O��rv]��1�,�#�I?���b�6v�$�n����{Go����\��f��`��d %� xl��-��Z��*}AKHzv�3D�p�@���;�wgc�D�Q��߈�\y�gw�/ٲc�����'���G�V�\�%D���}.>|Q�����R`z�<t]�І�(V����E����f�1�FB��:�a�,�it���O/��6m�a*HQ;�=�Av�}z�k�%��[�E����ɃR���V�"��yE�VQ�RW���d�@G�Q�$Z��5� ���RĎ����6�� ��ʒ�5� �� g��K������i�t\ g���ŗ3q��b'����3�(��6��� �:M�Q�W�(��W�?�Ef+�N(��R�=�Ggl�1�eoR�h�t�{C�&5j��[�ˁrWA �t��I��U <��]r��Dc�f��c%��pTg����tv@�\+z�ASK��Е#z�5�%YV�CT�{n|39 I���s#�1p?�K�O�܊��^�=�@��_��g8-��5h ��l}<*�V���'�ul�!�R����~�B�$<�+��c��I�p���\�k���D��DžՒ�b8���p�,�C�ZgB{3�>y#9@鹷KQ �8��z�����dX��#rb�8cSt�.���+��&���Ş�d�(�� �-3u� ��<++�@�'�ӂ�h�_�x�C�9Ҙ���Б�SzO���L�ưLf�(qć�>w2Z�-�'���/M��D��r�[�z����h�ٞ�K|�4�O�k�L�\Y�6���\�y�Euc�f!T�CM����W���,&a�7RW������F)�A��[^{,zδ6� �ω��%��.�$�-����z͟-� e�q���'��W!I� s��Ue^+Y�j���� e/���K�L�_ͪ`V���j��j��`v#~�P�<(9 ��U8�/͑u�g�U3BT.ղD�Q+@>�uā̿��Ó8]wk\_hDˀ�����֎�%�٩h�:qi�d��g����~8��U����̊/�t81�qø)���^����ϵ�C'����t��ߴO^6��: ?�uMx�W���Q�Օ���-�F��*;|�_)�w��d���w�T��"VH�����,�h&�tYrv8cb0|"����J�!$��SJS!��x��ǀn���w�L\�t����e0�"ܘG ���r�:�ໂQ�S���]`��~���,����`]_�S긣١����.?���k3�j�ֲ��o�%~L&E�u��iݎ{��2���MB~�q�=��P���cҊ�)����(V��D5�\gj�i�� �?��$!S���$����M�m^ $��ᴪ~��+@�7{]a�I7�^+t���U+��a�-���[s7�q(j-yJ��n��l�=�g�-���1���ȝ�[w }�th: ��M%�H���@8��wK�%g> +6��7���o���L�]^�d�%N��a�ۘ���H$� �2Q���>�9o� �겧(&���T6��+g�K�]�'F�c��X�x��x.�=�A��' �R��ҤF�0��ώi�c@� �t��� ��WHi�Q �e� ���S�?���iKj)�a);��Y7i_s���sl���|8P�;�o$��}Ԇ��E����y(36�1E[�x��:�"�p�h���w���u����o�$+�ƺ���҉�5�/URlE���:�ʠ��Ϙ4�ZΥ.�Q-?�� ���G�4�§�;X5��y8�,�^� �ݕb��25 f4�v���j^�pgs�`����Ӯ�{��yKo����϶ҩRW���۟.��C�c�?N&��mڤs�=\e��(�3Oi=ʬ�J�d���S��B�U��o���R��|}E8���Ďa�!�h�|��% �p&���U]_`օ+a_������e����@���dYqM�f鑍��q�QZk�s`�dY*u��#�9 �EB�Ͻ�Q����!���Amm��� T�m�$��h���� �_���H:�ؔe�|������[�NL�<��ac�a���zZ�! �)Uۥ�N�{s�|U���߷��"�&~���tM]�j;0Id^*I��lύ�y��q��aV��nPR҃bH�e0�N�6=�(�;���#�3�Q��jW���̠�MG����c��jm�[S�S�����n�H2�R$��Q����Pj�fbۓT�@t:��sEg�U���7�/��m�e����?r�8�Q�E��_�'yQE�r��Y��g<ki��ʤ�� ��}q,��Y���Ȼ}@bz��H�|n�<A�Y�U�ȴB�x��2j�>�4�}h2�Ĵ6�/wh�9��6��9�x�^q�Fl��]��:Pn#�/��e7�c�GP4�h�.���=�5����S5X���c�a,@e�Tۭ���W9�Z]��s�4~!tl�5 �5� �3���"�Y�Y*T(,��n&¯�9��Ӭ=WH�&�/1(�4�'}]{�ߣdq��q�N��8�5>�EL�N��㪼��,�ރ0r����� ���z-��.��L�Ҙ��e:��Ⴅ�[�l&��td����L�IM�<��i|��0�'�m���,�zS�u�������[�����:rs��Y;����9�x�ܜ�p����Y4�F���z�x��b7�9��,�`h�t�3�6>OK���UGs��%�C�`�!vd��Ş՞��!�����;����߆��|D�8=4ZP�Ҵe8'V���h�ǽ��!1���%�JN��z#�2 ���_�6e�(1Csy�mt���/���Z}er(���w�d�-��z� c(��"jc���i2=~P�� �IB8�Y!���TQ�gQ�3=�n�D҅��ze鯺DZ�H�~~�}y���"�j��$= ��}8 ��n4��F�+i�G l<��<��q��S �:aL�>�K�nm��i��hp��.T��A�Bb�F�j��]v�� Q�;�w�U����G|t�w��e�.���R�hq�͝���Cd�1��꣄b�K,�����B��=R�՚pĭ �ײ��"wg"B����(��k�l[�E#K�#V>[Ea�рrv@�P)�߆����m�;�t*���RE��"�z��2�eY5��z�f}��sR&y^a,_�)R���)�8�%aϠ���]|���݄��\�MX(�!����z(�h���1��5ܕ�=C'O z�6Z�m���\��b�W�(�_x\�)U9gkBB����P[��JfG3�Թ�s�����1�hCǩiק�4����� ;/E`7t��{|�8jd�e�e���r�Z��l浗��Z{����{�l��ua�ϛ ��"T�|?�%�Խ�c�)��D���h�RX�q�S����'��5�-P����^ 'K!Tpe��<�2��Kc�R�)Is�!�&�=V�Y�[�(�3j���^��(+�����b8�ī��M� H��AiB�f�e�D�{-3�óU� q�*�7����Α�hR̆�Sf������Xۣ��B�P�G�u�Hk��-��#Rq^��o�y��P-fq�y;L����,�?�*`ds�*��#�]>�j;:>d1fZ��N�jXV�2Z���q�N�r[t�+]ܻv�f�"� �:o ����}thi�������I֑�z�-������9�EO�, :{���#�!m.�mu�jT�*o6�K\9������k�Kg���tj���뙱�J����֝4!��h�;���خ��-!�J��U��;m���i#�"���>�?��y�m��w�y�G�&�K�R�s3|kN?����|S�(i5���� ��C���TŪ�>e��Z�Մ���l��(\�?|c��M���#�0=5��q0���boB�$e��X(�{���9���X�z��� Uk��-.��q�9Y�c�/}��=n^�H�n��Y�̟��|\�����!7���F{}!l�{��W����7�4�c�<n��)8�z~0��!Q��W���Ϣ���b�ãr�"\hőW{c=�Q7`��m% ��Ib�U�d��U�5U��(���u��J�U�6�l �C���|�pGt�@]ⳍ�V�#��S�>�ˇ���%��z��b?�#���@����s�pd<�v��{�N9�+�?�){�x���yL�+-���A[��MD��;�G6�Y�j��t�O�� 7�o��L�P��� 0��S'�T�0��}˓J��#��r/��c��Z�t�����#�����G�V۔��.��D6��K��L�*�̅D�<�x�{ɽ�ɾ1y�k�"��,\7\�����v�m�~���JGӎ)K>��Y��w� �����˶�¡�ۗ@By��[uhK���J��ĥ��dk.B5!��E e?��6��H5�[�r#0��k6��j4�����G)��1Oɬ^��Ǻ>?�m��Kijv.���}���#��S���40�Ӓ{>�E�dۈ���װii�q@��_1�q��v�asZ1�A)�7� 8Í�+A���6kz����dž6aƁZ�e"_B1�/i���&���#7��ھ���Ru��x�Q��蚖Q6�ڧ�ѣRS#�_�<H#�ks_ 8|�NhO�F(�.#y�<|+�Q�ȶP ���^����.������}u��I��r�(ΐ���f*z�r��5�.|�1�7�O��L8���Y���iI��I���T��p�] ��}�)�~��/�E�g�� �_��=U'U��yj�@��#�����5{os;A�[��~���6 �п)���Er����+�����롽L@i�]�:�eC�Io�e��a�1���L�����"3/����ѭB_���j��K���$�k�!Ha-������]���N ��Q:* �b5s�A�)iė~��%�y���N?㼧�:�@`���:�D�T�B� � F�oߛ:� U}�}@#_�?���,v��n٤қ|�(B�("���cɩXW�"�`�m>3ݗ�Țk�ڨ�G/�g�W$Py�Ϫg]��EA����1E�\u��I5�<�W����� 9K/�JVCE��g�&k���S���7�Z�ʱL��Է@�R2��IV�B��h�lo�*�a��7�:�%w4M�R�}郾�;�^��vYG��(�����N�>V��o���ӂ^օު�35}4�w}��>�����}�N��ʢ�#��� �lF��=/�*���� #S���Q�ώ�Z���i�-t3߇tE)������$�q��DU���5U.s��[ �_P��&L2MO��>?�/��a��kK���lfp>�U�wB�{��� k��td�Nu������RI�Z���x�/�L��ؒ��e��ĞQ���C�y���)����=�'rW�k� }��:GW!��Z��C���GFTNe6E 35߶�%Eة6������>2���w�F�"�I��86v�<o���q���X5�%]��n�W�W��b��K�c�R6�|^���E�Xd��f�N�X/�.��3�,�^���Ǣ�@+��g(�Ejˊ���]i���/�˙ms�si"w�?�\�h��<���"�q�C�z�s�pM�R=�$2owv��LV�/O\��V�]�A�c�`���A��d��\%XpV� ��+�!����4sy�(r�ΝQ/ ��ޓכ`\&����a4Liٵ���Rbp��#�[�;a{��mq%@���oO�lâ���$��E�Z�4Ϗ�{��u��4'��zi� nZ�(�K�,���pWI��Fs)��Ecc�B����I�bj7'";�3a~q�<�F�ńW�:0#�^��7V8�8�$�G�Xॐ���_�讉"�b���qg��f�W��W�x<�S��C˃Œ;��� %�V�U�T��ۗZWj�"��RY ���#�7� �s�F��y>��6�n$?�B��J����A���1�=�.��a�����SݻdX<O�Ck�?��Q?&u&��d�(]����T��t,5C�bV�P��N���m�u���ĥq�O^�B�LD�9���Oq���n����H�߁�r�Z���lxh�g}���J�:0�|��N$f��SY}d!�ؿ� ��m��ޝo2�YQ�W�9�KƱP�o��Z�o�Ձ�3pd��� �~V�܅�� f�MSN�0���)����F���Ю�"�)<�|��)hUX��D^}79�'e~�xZNR��]�:���D�)Zxj���]I���Nb��$�������e�n�4��/|�_�V��uk��Z]��ook�`�)z�Ҏ��� �X%�wR��-g�W�ww���GD���Or�{N���t�>��݇�ӏ�f&���l�V<;�S�Q���K����r� �� *���bE�3�#E�m/���c�{9�˻ͳ�]���&:��-Ł�v��A�����rG|L~3y>,���K��4�z�H�-t���mx�2�؍32�Ɵ����捻��v���j���{Y\�� �M8�0e�LD�Tќ�+�os!Ƙ�KX]�?C�͛ar�gp3���C� 9�=�č�9��'h�ڽ�#��IAF^;BR�7d�"N(z3|�� ��M���uW3¤��e�;ԟ�K_+�E�p��7� �a��Χ�[�t�{5nQ�����<����C�w#S�HW��W����FR���yr[�#�[�D��:��[qe�Bi�MW�멭�w��o-��yuh��Ĵ��v�{��R�+��S�%�� �`<��2��A��;NR�o�^�/˻�NL+�j��?C�ٜP���=���F��x-yu;����/�U1�2 =&�F�F�tCg`#�^�n�J�Y�_�q��\bQڐ7��x|k4^�tzY�:��d;�^Q ���^���/�������o0��},��m�T��Ϯ�r�1���`U��5m0C+�J:^GwZ����~�W�Oa2�:A��5H$ڝ�ն�=#At(D�p���̈mÊ�^g������/v$�Cy�ʇ뚕�&�r��R��W}���Lʝ84( �Z�d�� �r^ �w|��tf�,�*6#yl��~N�ȁ�gC+��Vas;"�JH��̐�UqP��T9糈$z�q��P�ۊ�sf6�AS�r�d�1E�`�Y��!6���\q��&��&߷s�+�}�nn.�A���P}RXz��x�iPL�pF \jbɦyH����c�k�4��/�A�)�ׅi��%�@))&�}',{��5ji��I�s�qy�mt�1��Fh���yް��?��UƱ��� ��x��jk>b��������B<RQ�s���!��x�SGt����bsX�� �?~~�<E�(���a����!̰�Us-`�u��) �G�L��8��B-��L��O�f��彸oPOu2���������#q;�I�^X\:e'����h�r��9��~c�\A����do�E� �'��j����몣���G�b�bf�(����s�x�����#ev�JY|UN:,�jJ�\�;�� ��uQJ�۔��o��Pg*1l6�;!E�C�a���6~5�7WxF��.T�\��1�Sh���6�q3p%R�)<� l��]�?���,�@�3ŦB�g`<��]<B1 M�2/Gk(RҚ0����HV;�zl�遪��������}�s "hb4W͞��T�D2u�Dҟb���c�R�����v�8�r�?�y�i�F������4?J����"'uR�p��9V?-~�ڝ:��<Hv^��G���Jm��ry�9uzyUr����Ω��f�P"���hฆ=f�2��y�=8��D�hb��Ԡ�C���(�Z��^����O�*�F�8J%��NI}�Af�U5( J���:bX�}y.��dm��K�� ����I!'���X]�I�o4'�lxx7�H�;��^�LZ��T)p��XQ�fi}��|̬��aV+B���Q�z�Rd$�@����9����믤QQB���8u��[����1E�a_[�g��_Q8S$�%�+G�+�+k��eU1��c}!��>�U�<KYo�5�TI����Gʔ$D�[�1\Oq:[��O�w��MFb��C�i�$LՀ� r���j���B$۶T�����ֈ00⌛eN�KI�����($b?����)�2���|pO�����Ic��_�Pa��0� fԄ�� cW��^�C_��{k�,k��k�������J��צ� p�Y�׳B]p^�C6#>i�%Fb*A0���)A���BDԑRgi��x��4"�DZXE/j����+DK�;aZ�3�!H���J��'i�\&�2����N*G�p�u������t�d&c�Tܞ¥i��5>P���gT�L�`$�7V���������K���nY��7+� qzn�'-�Pbvc�*s���aɉ���p���vI�}�Nx��XY�� ��DT0/���g��bA�j�}d���ˢc�+8��Ҋo��]A2����/��?C*�N:ҦN��B-G���F< ��R�Nx)$�,I���a�Xdc[*�A��G�ͼ5�y�32���M��yE�j�~vT!Pd�]�Lo�x �ej�L���f��lc�Қ�IM�1W�,lvRl|��|o�V��CL�tKp��,Xk��0� �=G Kp�� ��^B2��A )%��a���P2�d�*˩�A��e��Q�Brd�bG�96��D�R�4�|���7O�^�K�(ì�l��WcVg#��*�{���1��$���9���`cD�τ���p�uo8 �n��̱�(gY\���*���Y�QD��6��g�w�������K8��^���,��V��f���3�_� >� �A��T�#�WKh�@t�Gn�Wޣ�T�m{��+=a=m��%J��VI�MlIπ-Xf�䟦���ߝ���k�(P�i�V�"F����C}�e���Δ�8aP�8�/YenZU����6����q�����c��Y~������].?�'���O�.�˿V.�k����T�C��Q00E=(<�v����?�V��ar! �4eT���;��# ҷ��H��C�� ,��I����.b�P��Q��W�Je\������'���^��Sm����J�¥�[e)��EZ:]�"�Wi��2��V����j����fw�d���;���e�����[����Fz���;l���v�o�9�ȱ崉�vF)0�ֻ�L��Pϒ��Z���c �w���Ԟ.��b����e �ՕN��@ƺ&�� d~�m��x?7��Ąa�t�-Kf�2`����|�����|��#^k�� ��� ��P�6z��-�����r�4�o���_ߥ�[b��!��HEnb$6I��J��I��R�x����n�PdO̭�[�$ )oem�c�I��V���9�=�E��.�Q�i���I���XDqǷj�p��8`����Kt`|� ��Y�H�JS6bkY�M���ݞ�3�Xn��j�4�?d�p�����` �d��B7̌p�y��Q'fDc��6���M�g�j��0�_iH����'���Z�iɸ������Jj��C��K��uO�{^U���w����b\��(���H�xP}�C%a��(�������d���6p� ��ZB �"D�L/!�R�P��\�֜1��4�6'��?�= 6lk|�6M[��$�+�`-�1�ƇAnp�T��0:K�b���2�s�U�J�8+���>T���tN��,=�Rd�J�*�k��{���bC<��,���?�_Ϭ:��Ɋ��n���d�a��ق���+�[:H�i�V\>e|���H}mp�\Yҝd8��oW�w�W��9�v�]�� ��)��;��M�Z�N.RL��q#J:(9g���� B�s:��Hy��N-�q8E����^q)�@���̪��6G���>��JP,�����3�(��=�M�x\;`5���ӯ�ggV.�/� q�|��c)��5�� 0� e�2zFf1Q�[G��J��yc3�t�fs"f3�Yvm���P�����ƈ���%�M7ӳ_q&0G��ˑ��#W�z݉�� E47���C[n���/�hh�^�kۥ�V��w�f�, I��uz2 �z�cQ:��#�A hS�"�R��m�e����@?�������F<ʖ~o��14Ki���cjl��j��17�D�TC�I���zĵ7��ܻ�pељ�ߟUG1.wnQ��� ��f�S[���3a��/�~D�1R"��ć%����Ao����i�����'8(_�CN��E�$nsא�z`F�K��}��+�Z7S+��V���R:%�ּ�V�g�4>KZ1����I��r\�ߖ��H�<�3L��R��g�����m6��3��D��� �foN���.���N��^�N���5�����a��M��7 {y��&��y��@�ܦo·����G��{�k�P�Ԏ�ཇ����0�k��1X������-�"3� ��g�A7�"��/7�U�r\�g?��PYM���3��K3F\a�}=�x�n-J����#�C���K�P�)@�z㇃:1��~#?��r��Ñmd�b��ھ?���� M��Z��� �S{7:��_����iuGKC1��:SiǶ!��ʤ��{�S��na���ݬ�-�B� ���s?�H3L7�ҫ��l�w7��?&�-�J��Y��o��p��۟�l��B��R���ӣۮ�#���i!�D?�Ӊ���!C��e�ϩ��A�%]�?���̽�C�Y�z�С�G mv�Q�K�\�:�w_M���,��Q"�:�ȤӘ�\g�����z��fA�5d\^0���۹N��� �����[x:��HH*��t|e�6/��IN�K��i���e!��b��b`�5�*������K�k�ye�9� >����~Mxq&�W��[�n\:����� �T݃ī�L5��eYh��zO��^�*��@�IЋu"i#<rm��9�T'6��� ����~��sS��~��bc(S����E'0/P��*��av���>i���]�$.˺Te�1��^�����E�\�W>�)�M����o�,ĩ�S�D�7�"|7}D/��Z �(G�� �?IN�L�"f���&bj�L��e�/� d&@n�Ľ9y"5�����8��Щ�3q:�[��3�e���iE�L]�����w�4��p"d�g�P���b3�T�e���nԂ�.�����?�� �ՕD6�)돈y��PC��A��t,��w:���;DL�����Lf� 㣩w�4 �L:��w���h>�++�/�� �#ޱt���*f��qQ{-�F����CVgٓV��{�㖞![��e�$d���n]5ה�ǰ4̶��3��Z����#�(u1�AkH��`��`q�5څ���Vΐ�_r�!(�͡k�<kdP��u��}��dZb��s��ʶ����SP�s���C��� lS�:�o�s]$Jc������Y��&q��\�R��^���N_$[�����0��-I<5���A:~M����e��_l8�SntFbBYƇ�ƶ��ѯ}��Y�7t�4��qW��ԓ`�VFd!y �CC4���~vq�n�"�.^��_/���UT������Uר��f���)8X.Z9����3���m�=0vI�7��Ń��B����!�J�n��F�\���"imVX�#�?�H�t�s�P�f���I�T�p�'�G�s��b�7�1���i����IW��ʼnߛQ�"��h�[�����#����{��٤NV�D�KU�����N�b�l�(r��2#uU�̏�K���BcʣD���W�C�sR�� ���aS��˕X�!L�T䅧UP5�����"cwe�c$Q'g-�2!yZ�e F���C1�Ӂ�K�����0+���s�\��'���t����1���!N 9����b��e�8MI�%�kg`6>�(����{�N{R�4_��H Ӆň ;2�;���឴�b�ՑNX%.5�O���[m�=�� ���X�ܱ���댄Ԏ�J��u�?�I::@]�k�s�$��-5��R2�P� �;���&E��Xy�.���>wS]���r� ���~*�N��DU\Aʧ_IYs�nA��+p2[��&��H�~�B�������'��<O��|���`^�(���f�w7�r!��e���d��#i�,%Kpc�6����1k��@�����f�!t��@�B'k�`\(z�P��eh:�ر���:��m�����C�K�]�$p<�-��\��*U ��a�oNJ�n�Vl��HD���&�\��}�K�v�~�y��T����X�̝�i���� ��@�>�4�-3HW�T?�'/�fm{�]�){�A���1"�WT2H�\����+t�[�a�{�eG0�Z�w�HR2�/2!��WA��p��9�v2*H�ļe��i�֞$� �n��Hς/�79�7��`YF�x��V} ��yc[2$�S,�L%,�~a��P\�x��R�`�v����G�2��:�l� ���[��{ub�p����OS����`K�,n�/�b� J�a���t�p��ɪU�D��n_'������T+��<�X�i&L�v�0O{`��@��};E�'*#��=$ j���hT@��o�0`����ֆ" �1Y�q���,[1'�����J&��:��5��߹��H�"���eb�銫W�ws��;03n�8�n�WgC��rJf��AVՙ�=h�+��`/V�X� �A��2��1����b���G ���!ԨZm;z�~�'(�#��$&OKA�0�L���Xa�*33pZu�G�9!:|�UE��,��:�h����u0\��Ԫ�x��K<��G����ĺ2�u�ʈ�JQ'���������?�"�K�M��B�x����� A �5�,ᅌC�'ү�`3�������K�;E`���㶵� ��,2��D-����x�6Ӛ̜Ld��:x0��S1)W��B�͂3����S֙��z����D�Kǒ�~9�G���o6;:D�ڀ�1>�0����G��Q�8���Y8�xH��zSI��ZJ��+#�mL�.��L%��P�,,̾��@;x�;�����ۇዜ׳$ߥ�]ODx�}��wG����7�ZX�+��t�'^�P��#!��%�\��j*�@k��^�o�"�6����r[{F=��T`{RCېH����?�0I6j�.t����Ǵ� �l��ӪD�]Z�v�rE��!���t�Q̞IjW��3M���l@V�g��zra���qcui�i�wXDUT�NCh(0M�ב��8��l�4)t�Dq`�O�GK��/ º�ƽ��Ua��� �~�xxۀ�iRd��-��KF�(�ܽ�RkPA��w#����}x�!%$7�lU�Ў�Ue�A���J��ǕM)u)!\:�!#h�m��F�d�m�5�k��k��� "U��0;Q�0�K����b#MAcEJ���� G�y%�x)J>Yu$�P/�K1ؚO�[�Y����-��� *��x\Ïl���C�/�ȣ�� S6������.@��N���e ndG� �:"6��ꄭھ}Z�->֞��DZ��p����!���&������g��0"%P%J��Q�r��(C�Q��X-�_.u1�3z��*�"��h�� Tz�n�G��3sd��v��,w�-��2�z��"�I�|����ׁ���r��1��� A4f\,��|dtì��gb��Ȫ�+ PwF@ɷû�1ZL|��1�)��tA�MT\t~9/QAǿ��?sp\:&�����t��G�u����Aے��� @Q�m:y-p��K��k��g�m��$N ���̩��gW��T�$�W��� ����\g�Iv x��-�tpOR~� �[�O�@�K��"L���0n���2�4S�� 2z~B���v��5�5:���I������f���ݲL�E�ݾ7��osa�QjJ�����8;$�i�=�W�9~g ��v��|6 ?>G�Dx(*���7� �Z��eV8t._��Y���ُ�إ$أ �&�S��ȗ\t��?�T���f{d�Q�&P0nPRYu�]U �+��n�����{��e�*|��R�*����S�>U�m�.�=�\x4��������%��-?���Ngj�c����@��(=g��S��I� )`�/ ���,s�����n��&�R �T�%���vl�~�U�\�K�*�RD���`���C�D�<ÿ�W v�=�>�qu�a���eCݶ���$��i�Ƀ��[�u�;Pe�=���$��w��3[.���j^Cz >�dI���+h�;YL)������b4ʨ�}�<4��\k��?����$����m~�O�]F{���ڼ}X�ek�ta�m�9;�/�`��S�9�u麀~�" �[X��tm�.`}٫�V��;u4*�Fs��?�]e��T�M��k�X�@(̖�bN����IBE�_��2�6%,o_�"6Q�$�d���:I�' T��XKC�7e�ҫ�,?Tӳ�I(M�S䤳uZ��n��4~� Ɇx%�D:��9�֭@ɢ߁ę�0���Y�w�3@R�j� NNꓣ�B�6�JEM��6�����/�5���z�B���X����Gl��'��0bV> � �%�Y�Q(e!�j����c��[[������π� ۛ�W �$m'� �lP�i�"�U»�tf1�<T+|��w�,R]d�/�n~�x\&����P�p�����p ˯���.��+�����[� ,��pb���>4ex��X�Z%�J(�Irћ*l�����v!� �U�u�T>A�Ѥu�ZC��qq6����W�ui�1N�ܐŕBi�� �URǜ��h���oq}�������G�^��Ǔӷ2����c�f57X� ��Q|2;�m{��� �^�G�A�7��;r�ҧ �䦿tL4ȑn ��Q; X�S*��C �����?x�4p�3�Эؖ��t�3��X/3�+�4AA��?61-��>qXm�i�S�5�)v��2D�D!A-��ˑL�m�#��z��~Ӝ�������A1cju�R6M�jo`�&�0tn��T���J�}��M���ql�b��X��j��J�g�o�{���B��i�x"ŧ` ��� �l�t�&J�+I�7��g݉'[��6�r��h��I/ˡ �Z�p'M"W-�}�;�.�xH����َUݜ /�_�ۋGn�����Q���䉒�Ѿ#¼J�$���qˬ�_p+(�d ���H{�%2�����%��p8��cV*OC�}D���ב�'*��dg�!{pR_�D�w0z,{<�I�Z:����[�c���)�X�H�шǣ��<�L�'�t���E�W�\�N���@����ׅ?�u�p]r�7�l�f�6F�٫�P��O�X�2�n]Nj[%+(k:�q�O>����I9�D�R�,��Q�q(�I�Ӻ���)��~~v`I^����If7� L$H��;�g�Z���A���ɮs�a}t�^�ɺe�P��nk l�?�l1�j����3ɽ�D�W�i��E�ղ�N1(;;ۜ���vF���v��eʚ2��,�ң1��_�f�4-��r�/P�B�WlT��G�i؆ϋ�*����jkO��ד ���e`KDV�>��o��KpP�eX$���~G���Ղ{�律�Ky Q�o �pt��G��-�/֔��ǝ�����i����E��Ck��3}��d��'5 ~���V����Q*��.��W�m����4+�j�ت@�.��Ie��|��7j*0���(�7��߃�����ǜ�?�/ 'l�t_:LVFz� L2p ���v -�²Na"Rv��.�d�R!�iU8�s�s�$^ �e>A�6��@�}����/�֬�LiT1g\v ����0���r���aV��|�MT���aұ�|i���o�=�� �a�2���FÝ�d*Ь\��o&�1�����M��t���&W oaD?��T�KF��g���>�@�lE����3�XCNZQ�&w�=:��d��Dz )�B�/�큗�0�m�����^�?e�oqґaT�T����ϺV&r�ۅ���1vj��d� �|B�� ��O 8u.���l��4l�7��[0X<p@��_�ъ �G�P���O;{A��6��X5+\�9��#"s���}{�!̈́�D@���2h��^"�A�<��R�U�D����葶�x��Π�>>ѳ���+��;p3�_�rUP�#�/������`�;ŮԌ�:^��r�6J�mU�� #���q��<�k�>i{����£��a�9�$��6�4T�9��1l�b�.y�V�����7}���>�SO7�1�S���w�M�$�P�ٷ<[�K4���WC��vx�!{�?��U�j���@��6�s� ���o,�2�˱;;,����֠I�M}{�p��ݨlJ�8���E���z����@�[���/��l,�p��=��^��'�F�._�r���)�5���![;#�[C�������j)q:R��Q>#71:Se)&����q�\.���#ONw��\�a/)��vh=��0eT����7����MD�R?D��4�ǰ��/�$=Ix�٫��ۢ�Mp3�(��:���(XP\��� DaV�[�!��M%��_�0��u�f[�=O-��o+V�=//C%��o��PKG��c�Aǀ�:l�T��Em��`�*���H#����ilj&��R?��`NJ��%KG���F'^,��;��}����A~���4pHʈ81y39�H��@s�/0�`���6V@��A��`���� _!�`2O��^�x�{�4����}ͽ���}��VX�!|��j�I���}-�_�z��S�[�_�Ñ�& �}�(�憻#�.�:'[����.�f��tlS�@�K8&�1Ei���0jQn�<� �ڟ�9a������~�MS%A�,w���4Dw.3Q2���W���O�HmLN�Sz���)+��y�hk�1 ��2싓�3"� !:O�[0�����^�v�m�a�Q�ӯP#ە3QL�3'-z�mR�y�?����{��e"��A�@gh#!��/�R��aՒ4�u�'�|�&O�8�dz � u�Kś����f�^�OH{M�C��!GԪ�[PNI 9J�����Dޝ��rd���-�E]d:\J�u�E��N�����&���x�8ڳ���p��o��TE��U|/Z*�� ]���}F�F�-{\���l<j�����;$�����p���ŋP���M���>�?���_~ ��`��@������'��&�b;���� �����l{�=�'�1h�R���j07�f����6�,�3��n-����Uӿ|O0W;���#��P�sA�җ�*��n0��a��oŀ:����j6Z1�]ְ��m�mk���%�cY�}z+�-�4ʽ{�������Bߝ��BB}^��ٔ�=��#%�"�1�覬��ѡ��g:o�/壪U�5&,�o��)ZM_Aէ-2�m}�x��,!����Y�R�d��� ��-����m��v�HLWKx���A�*���e?t(t���;�.�E�q}�b˟�(���A��Ql���Q@#�WŲ�{;� ������\D���b����%-�-�gX���uU]�'-�#����k KD��fa�������Zc���q�z=ױ[f�?�e�/�@���15'HW{���Vnԕ���h�k}�w��(�������wt�(�#�ޯf�(�9�}��'�!:�ڀ^���D�i��c���6*��G@N�6� �͒�����"���U��1絛N!��*�� ^ؚz4}1�����<z5�N��G -L�ůc-�~J>�G�P���m��u��l�dӢe���� �B�A�C�[�����xxa1n3�]�S,�D�E���+Vb�;��o�����`�ȿ���I�6c��������4C�!w+/<@����mM�3/gW��ޔԟ>�ܘεջ�m��=���2ܠk���c¤۴�a bE]�=f�aj�$7NF�aNq�d��]FsM�.V��0r��ܗ��+��"Uyl���A ���6�b���>3��c�Zs,ߞ�G��wԉ}��*�!�k��D����$�@��*un�ԑ�6�)�d��ן�I��a�d��g�;ތ����n�w�ǘ;����g�9,�e�b�ys�Vp`�R� z��)��{AshS-)i*���5[��<0���Ҝv����aؓ��`���K��@C���,�`�vM�"��6����Z���Z�edN%��!FG�#�si�8���6��Pz�{�?��M���$�II�QV��q��`�]�7<��b{��w�+L�$���(�X�߸��9�'��a�(����ƥ2�2��p���B�rZ9Dφ��nhRB6�IG���̅�'�Ӂhv mg� K��>���g�2M�w��Ӽ��C�j���y�mׁE�ѿXd4�_tj�,9.��y��CFim�oT�Ԫ �LS��"H ��c�@�*\a5��?߹�jl��u:�1N������Tp���� \�8kS�2�� �)�fʹf!N�;�b�T9� �'�L���D^7�x��-Xc�ۆ`e-���f�R���57U��@�0��u�>��n'�pf-#Q$���d���W�* ��9 �F�JLΊ�|T�oĺn��^o��>��sT�t�-f'Lfq u q���(��[���wā�\P�l�Q%���դ�\L�R�[���O��� �����="|�L��N������Z Z*���nF�~ս��/��IV�1"��]PR��.��ے��/m�qHBW�������(�I-a���^6�S�������z�m��џn�MCE],G�� ���Ig��E3������)']x K�U �s��-�z��ʸc;��_7����<H�^-�|g%����܂��ĩ�< �W����,�K��a��a�<��ΛsN����o0��1�f��]כh�@/�ńVi��Mף����.ه�Ֆ��d���o���M����������W_GX�}��.�!�!�b�d�.�g�G��s��Γ`������V0��z7�1 Z,B�Y���H���T���"(�9��Z�8��KT�B�p��>�$7�j�N)�����wA&"r���PL#���:���-��~;�#��Ɔ��$2{�2�r]f�ݵ���{�(�� �M���ϭ������������ɱ�|s��� ����1 �h�/���'eu���"MŰ�ř�MkU���a;F�^?�Q��'z���&��@%�;��K~�@k)/8�����_�u5���>��m~�te^�������ݱr�������#���AV ��no�ݼ8XW��D+e7�)��?z�B�F�~0%�^�-U��������Cމ��� ���A�n�z�%���Th#����/�Լ�^48�y����(M����A�T5 ����w��^�&�Zy���S�,pؤ ::�C ,"���/�"�szK�1�@-O�y�s T�L�,��9�fQ��3�K��y�F��z��W+��=#N�}�Q�~�ڑ�1��cȺ����!�"6��-�R_p������xM����n�Z@�_�s�fT�=��w|_>���T�n!��U��b��Q2�$��狯�%����(���Σ��:F�f.�^z]l�GUdd�5Ϣ���V��בE��)|�o[�y-ΧoĆ�ycU��8Wq�D��j�~�`>1����`��DQZ���q�nz�q�����[��lf�e� �"\-x2�XVfD&;�l*J��~���۫�d��mj�+��p�j��� �8�Bd�2�:�L��hH���U-�-s{�DK;ķ�f坘[�S���\�����S+��y�^.���O��I 8eZ��|� Ph� �����n茿�D�s���xм}ys^�Y� 2s+�-���fs����v:�ڎ�h���4�Q�y��"_r>*E��j+�]���+��s��0l}�͚ 2,�{F���fu�xD��@T;�dy'Zm��\��������Gqj���Ǻ�N�w6�"R��N�hcҍa{��`r��"���$�O�b����Q�l�X�5�v�AR{k�^�K�o�����ÕMq����=$"ɣ���c�� 0q�%|^�����_�YtN�p�{7E}�Dw@�(6�(�)�k����WǢ�#@��J�{��7�#)Q�� X����3�d��^�!YY��-9�-�8"q�P�TG>:�٥(��|��:\ P��d�1er�$d����2��,)��o҈� �Lwrt�{@~����t���ly�#s��Ext(��N1�����>��=M���Fb'�YK,6죭�{�Ha0��"�ϣ|{�������1��y����'C������K����V�} n����!ͬ�б}�ly{E��{�p��&�8*��p�� �1����n95�4+"�7U��r��5*Xܳ�|,��K�t֩�PN$�!�N�@%}��@��`�/L>�wm�1��z�M,�s�8/���q����k�I��Vq|��a�$I�z� W� �Yb��i��o�#�*i�af{��1�-2���V:��e��h^�P1�mZ�632��K�tKC�,�BX��\�՜��w�vs�J�9�D_�����-�Z�JubK;�h 3G:���S��#��{L'62duj�w;n)���2�шS� (��vj�.�9:� �l��3}q(A=tA�x���:��p��F8�8��|���Y63���6�q��p^Ԙ���՞�eݾ��uWxu��T�萛��T0k���C��e�� ~ �k쟇�j�O��%+�X=V�$v�_=��+��X?�*�ẻ���T:����S=�����A��-,�S��ָXCy2shp��B�R���Q��eѐ4@���]���5Rhb3p|���As�Cv1\�(���A���0ZJ ������W@×��_0��y�����8�R\ېk�=v��_@2�.C�J��>�0����5;��4�^���y2�PI�D������Y���*n@eȫ1��Ri�1�pM')J��Ȯ}�!N�!�ٖ_���S�8���g��ԡt���h���M��<X�9d���K�i�ܔd���j�e#Ź.�-Io'DG�fc82�����z#i�L�},f)v�5r�9/h\e.�9ل$J�.6��2�gH'����9#��5����RU|C6�M#W#p,˿������* ��=/��/��n9��oSAk2}˯�9����+$¹�[a�n� ����m4��gB�$��H���~oEk�d�{��2iz� Q�����=�.�Ɗ�N�M���ۥe��X��bGy�}�,T\j&� �Y�t�TuX��&$+������\�y϶�bx����fw�S���ǥ��"�j��g3y�q�Z�X �qp�>�Y�j1�)�i�Bcї�2�V۫�v��N� ��m�*,��4Ė̥�^Q?Z +ޢ����4�,YB$�t��%x�Gp��c�l-�����_�E��ʕ�������N'n!Ƞ���E8�����'�p+��|�J��dH���39y�?��_��`��[�aU��~3�C�����+���97�+P�4s�o:�Z&K6?8ly�֤U<�鬮�Kf�2�����}����W�N�����:�ml� ��^Tj���}x5��x�����o����E�WI��f�%���;��5�Q*tk��ꑕ�U<Z� Ԏg*UȆ|�JBs��O�?9�?�Kc�{�#�,u�u�B��G�܌�5�~I��֬Ú�O��C8D� ��k��n7v�fmmt"9�JEy#ˤ��|�w���#��+z�6ˢ���軞"�p9SG��&X(����}}1��ֵՉ��J�%TvX�������� ����n �c��/��$K?� i�ƛ�}7[�4�2�ڰ�;�k>�ǖ�~��Cr��+C�7�±mJ�Hk�q�Q/l�bB�xJe�b��.A����(o�ނdh[�,�L4���w[M���G^��Cd+�"�.dqz�,���@e��*��j�3bY��@����]�X���8���8i�.�� ۼ��^Tɉ�"�y>� �:|�8ȶ ?G{�NB?6��M.��N/�IJ���ߒ�nOyOR����$vj{����!@U� ���n��{0�+�e����E������N>1nME0������~[�s]�#�� �"r�ɤ���͔���T����@���E� ��F��x1�Y�.k�Q%��ѝ���/�S�0�e��e<�]�|��^�m��_,�>͒�:�����Eo��^?MP=������;xx�$�T��m�OM�բ�C�3����L�8�z�~j:��Z ���_����/�d�kRPGmN�o ^�?�}��cЦ����GAĦ�ۑ�ZB~�K�w«T jt� c78Z�z";)��dܷ�9Q־\��J�O��%�;z�mVZ�����O�Q�H���ĭ��� �s/�U�Bb��{�'��_� ���F���胕2i �v��)��os���Ѻ"cmM �d���ߢ�o��-C�X�_��UL�ֱ:���VU����0��*T!g� �;� ���V&�_�~���C��-ٗB���J�_&{�����$�lUQ�T�Jur���b�����n�ɺh�r���taP�3�c���n��57҄�z�C?9��7��x>�:��o��ٯT<�ʐz^5�*r���Du��%�P]X_�;�NҨ�4|ևݵ�)?g �L$�\�g�>�Q6�z���{� ��VrW%�%x{�����uS�B����)�� ���zo�e��m�x��0��&����H�)����<���UA?<N�?�?$ȧ Ŋ��`�o�_ ��Ӣ�����{�9X�����hM:���eY~� Z���%h�<;�j(kt��q���G��f<������� �8�Cʚ[YT�.^T�l��B�j�����J�K)Z��C.0j�̭jPi������~kѱ�D���@ߩ��؏��ٽጰgX�AmWp,�g��m{����Ք�?�y`PW\�Ӹ��$�^f�T��I��!I"%��E^`�n��hNkm�'fH������8���.S@5��[�$5�>���%�\���>���{�F�:�π=3<����CqFHS�8�i�ɝ���(��8�Ǜ��h�j]9�}86,����@��/�b���S���kj��R���Ӝ5g�o�*����S�)2nČ��xf/�G�D⭇�˚U�}�6�"H������-�5�`!w$�'��l�p:吜�ƿ�s7�V����0l��QY��لu�³gaev�iՙ�``��ל����s��� ����R�2q���m�~�A?��<ZT�H�)��#ک��.qE��y^��.�#(���X�Kmߗ��:fhJ?B�U=��w�0����j��@M�S7?�k��~��+�ij�^�B4�4J�$i�)�O���h5"_��1/2��fM�l&t��5����{��#?�T9v��=���&b{���7Mk�do�4���.+��8�_`�v��r�5�*U��n@G�}����l˷��V3=f�c�������l� �R� L--c:��9!��l&>��� ���˰Kqv��K��U{�qE �(��F7��?��J? ��P�ҏޥ���(�m���ݪ�N尻p�g��-~�u'F��D�� �����m�y��r���s�>O5�r�\�{��T(��Ź>�~Y���@_˰��g]��J7@UϠ,�!�>�+���ׁ�����u��pTI�r�jiۘe��p�zr�e��T�']R�}�� ,QI����*��H%pp�&��� � ����A��;[�#�=J���,LPo^d�x�mgP� ��`�o��-u��-ݩ_��.E2���ݴ��י�p}�Fe*���+qO6[�f�Z���s��*<]j��'�ux�y�_0� �*,O�\>߳�*^�o��đ���6m��ItT�=ѧ@��r-t �_���ք��Fu�I+�Ѐ��Sn'�+E�?�:��V��ۖ�� &�d\���^z�5�|��т��g�{�:����P�W�rȊ���X��9��M1v0�%F^{���L=<�J��I���mN��ư���O��Q�Q�6D7������@�7Do|��˱��|\ �d�Q�|>�uy�l���e����8�k ��/J�.L�7�o�Y4��N1���p(sEF7�:��e�~b��c:DV��`�/��ʋ����=����L�]���ݬ���A����LT��Ee#&Y>l�ҙN*�D8�,���wYQk����K5�-�ö#�7�[b/(^��O$Ŭ�_[� o�q�Nt� �^W�^�iX���I�'���*�C�r6�����>S�������H����b|�yE�j�2M��LN��π�M>����l]�E�q�AŽa�yy�h��#�t*�(�n��*���ֱ"���RbDM�{m����Ex�_�����َ�N4OK%f��n�O�*��ȉ��1��z�_��Y��W�XdńFG�E��3.��m��@�/��SC���B��C�wAs!�����o�9(��m!�ݚrR��S�(�܆o\��瓯/1C^HMr��.����Bf�/#뮊����q(�{�zXn�͛>O�8��oŻ��A�`�l�VƄ6�u,�E�7#&Y.���6�F� �JG�K�l��S�đ+fđz��k�^��m$n��Of0�X�pO��q�VU7~6 *H�l�ͩ� y�o#�e��F!�=������I.ԭ���2j��=�tX'��h���<N�� 'g����ؠr勎��뼔��_�n/�]��B��!��4�Y^Ob �;O�O���a=�:Ę�bcxuJ���߲�7�H�Һ�Ͽ�hCI�9�~�]H��x��Ũv�Q�F�H2���fVW�U�*�<�FS�9��pxO�qU��IB�8����e�Km8\���F���b�B�[��yʝ�by�Rv��IJĴ]?�U/f�U�%�u�R�y�E�HF�Af:Qh0�״��+�Pr�D�}6] &g0"j�p0}������f�vOf�����m4 `pd����I�c!L������Ͽ+D�gݍ0Nx?$;���4�|=� ��IY˱Ix�Q9�" �_fz��-ɓ��$g��V�� S�_�K���=�NV,��)4��q�m�D��2�o�<D��������R��&Ɣv���w��C2Y���O,�S-1��q�i��1@F+���?�|�0��XC���Oj�^�7��Zq�r$���ֈ�C��q4�t�/�o�x�r bc��MB�LP+�U����*Շ��\P�N���k� ���3� ���m�tz��{M���<(d���~U ��6��R�$ݎ��j�6����#"`A3? ���M\_;@; Od�k£ұ�wDž%�+���O"�d���f ��h����Ӿ��Da���g��7�܇�L�#e[�с����O�N�yap�a�w�۾Y�s7�E�puK� �x���n�@���o�(���������g�d:�m%z�L1����T�*�RV��9*^j����h[���W7uTm�JGD'���FƢ�`ĺ_�%�9�k"��;��av�K��=f ��XDv��d��|��1\��n '���v���qU�Uy��h�/m�W�9�G~"I�����P$�=_�_�]�,5��煃�7��P4\'Tf)H�Bh����¤�wa���� Mm�5��^ Q�v���g�q�l"XWq ��C�~��\�q�N1�P�gk$��Zp��&�X��m�V�Z����x�U� ax���u,���/���� B"�`�P��ٻ0���7Ggl�8Lˢf�qND�P���}��V�̎�W�%%4�N��9�0��^��W�A:D��<���ژ��j+���P�]4��o����6aýa: n�#d1xzi�$l����+w�"'��cZ�[(���QƤ�g|���d��f_%���E���A�"Fÿ���D�[�n� �u/"��.�Q}��a�x��uӁ��ܱ����D��,~ıs>a���ت,���'������[&B�;b �ȑP�j%�鸕���ջ|j�d}%�>/l�X6��y`�.��~�a�<ɇ@5.�{ҹ��z�������'����=��O�:�3��@i��i�*~�Uu��M���*�a�^�bb[��t<�@v�C���<����:����l��yu5���]�Lh����{��M4f�A^��|�t��z����>�����C�jX�,�����\d{l�fB�6�Ƌ�� ֳ�2��P*��B�����sꓶ쎘WA�9$�4�^�+ ��>�n���<��r�a�X�`ٷu�L�*�z�0?�U�����WEחYd���y���U�J|V� ϷQ4���m=��c��I)�DL !4��ްvB:������2�U��Q�����?;L�����Ŏ���x?�G��l˞.L� ��0^����uV<۳0���=������(��@���\�%M6�c���\��P��|e��o�M�uU�"�]�J����ƍ�A@��r.��v#P7��{�J�Z��HG�1~{�<�Z� �Me�B3B"� ߭)�o��J����6_����H���jX����L�L@�DcO �x�8���<�E=�U�JL�-�b�%v��ƕ��&�B�8J�~m� .�e�Xou�}����q9��2��ʖ��N�ѣ���*� �[�hl�⚩�ť�ŨJ ��ϱ���a.7D$_�z^@��[�g�rx@҉e�qr3y��sɿW��ɛ�a�g��$};m5C��^�b��ֱi*m�`��5�A8�0����"��p�`SC���Um�gF�z���K�ؔi�����`D{cu��.���iӷ��dX쥶� �F�8���Y i��C �����Pߎf�^�f����*����_jsy�燻3�˹������"{*ϪK/���ޜ��+tK$�縊x�cSq�yM��vE�(7����-Ky*�faJ0���,_��v�=����� ��n����no��O�2F�8���!��2P������{�<��9��a�b��-抶�>�jZFE�WaU��ER�TFlI�*�����V��z` �G9�Q�V�n#4��a��4R��Oo5b ��S�߀m����/��o��*B����-ey쮦*X��M��R��SK$gt�oĨ�aq���K��y�'T ��c��;�,�f��*PJ���g ��zտM�K.��D]zhԯ @ZW�J�!^����a���2ߏ��$_!$=�s�5��Q���ï����@�l�ˊ{R��GP��a7���V�� ]6�O���Q�r�����H<g�ԕ�u���v=�|�����D�3��ڡ!�{�o�v�ғ�e�iyc(�& ��yIjX�h�<:�R��1�����.�b����A��PzT�'��z��2T�6 ����2��:�AqT��$�3���~�\���n���q!����<{�e;�)_t��۠6U��Z�+��+z�B�ӯ}*����i�| �+A ��3��&�ʊ����ѹ�4.���o�G(�Ol �ӾO"xgW�-�:͍�L1=�+o�F� �E�)��3kȷ�6����u�#e�Hg�LD����B�N =��P����ӫ��7��ژW��1���jz�Z�~�W�Q �զ@�2�\8�|��� ����u;�d��:�2S|���w�S�8�Sbb��_ƃ:1Z�v�]��bX%H��4�nܒ���:9�Z���)%�@���bb��!�ۢ2S��C�v����ۺLz/��9�%�-F2�/�Ө�yydu�`]8G��m���s=sE�Y<��!���(�H��`��}E�cm�N�Ϟ iD�P��S����A��UD�T2̻���7��4��5���(L��W�L�U �<���P��K�[�����V>�=�|�����=}j^[]�1�6ՎxQ;��|*��S'\���S�%����S!i�٢���G>D���~�4��y�h�QW �Tt�iS�!��*�@���0<�*c�!��1�ו�,�TR�~�^H!'�t�����*D��H��r�t��I��X����o��k����j�)�\`�Ɏ*1Z��:�/����l"�m�����\X��`��FJ�Ǡ�Ǩ�3? ����]�����\�X8��[����λ�g���x�(�8��]�ݨ(_O��Wݞ)�u�O�Y�>�i�j�hZ�ٮ=���˧��'�-X:C=���KYD�̞���� ր���We��L���ux[KI�h�~�Fg�ހz�>�?�����[c�T���&�N�}��M|/8'YD��ys'=�bJc�^��\��$Vb�R�h� ���EH�`9_k�\}ʴ�V�8�}����s��3ZYe�cj�+t���V�4�A*w��`����Ձ�� �YZ�"�-��f��S<��KT���N0�ËIfVi*4̴�ԩO��'R��`ޱ���eS0�e��1 �KQkrv�cQa��!^1�sFe!/w~�g��F�b�{���/_��)�x�;�'-Aqh�����Oԩ���E�:<��H��l�i^�<N�;����S��!��k����u@�1��yI�F��<C���F�8�@�����z5��O@��3Se�k�)�u�H�NV���R^_'��?�&�)i�5,�9'7�c;�e'��y5Ϣ*ք�]�1�Us2��UWI����T)o�o���v����8�3��>=�1g�@>����8~ k}.i�.�r��D�}��>7wt���yUC"Kah^���W8�v�d/�2�#7��E` �r0� ��~���r�� �-�@�2�C;��6��`zFa^��X�O�}�>�&F�^�Ug�E��p�N�� s��G���u��Szn��g�����"C#���/����f��n|M��+j<Kע<�B�L��J�#��8>�~��B`�3Vn�(�E/�E���LR8�rÓ�Y�:O3�_��P�.� mq�I�D� �y5�#y��j����hC1��0���,$qM����C�~ �1*p����&Oj*m��%"g,=�7k�4�W��K���]j��N����&|(��&��DM^)�3a��bԜ�P�s��7��(����AW!�^��� p;�������d&s.u�p.K^#����s�P<�yd� ��h7���oQƙ�`�^Ƶ����Ԥ"m�"�3>�+o��u��"8TP���s��5ޏOk��s�8�%"\��vy�:K�B�<e=�O� p¿�b�ڀ�������諷� �D���������>�G� ���� ��[|T��j���/GP\~/m>7�ϩ���ݽ���cA0 �WNI��Α2�QYE8�q���",B�z�s�����ܱ��C�Κ��m���(ƣ�9�u����v!�C(����ex�F�z��B2����A�粜�h���!��_�?5�x���y0PHȇS����5�FtӺ�z��cS�֨���#�M�1?��?[I��&1���Z/5�$[p��ō��q]oF\���%�IVdP@B춝� �l�UF��X����f�d��!�٥�T,B�$��Qp����D �*"v���@c���A���-i�!Qd��$0�Q�� �9C9U�C�\�,�g���2�n�=s���_�>_�l�?����8����uZ�{6�t�W����eM2 ��py{8��#��f�t��#\Y�Ӆ��&��x��%��z(-��(Cs�!c�~H����72��=���r�����=�������5>��A���� ��5�є��|?.pۧ���x�6�'�}�]a�a��oN�22Tg(�4?�C �Tc���5��5��hMr� ���9�f����H��q�!e����D9b�a!���eBXB�$��q�h��>�#��͵��F�9�\� �([��rV�P̬M[T�Ŕa�I{*��?o������B��`˂fTM�.���4�σ*�]���Ud�s�ኚ�>hZ��g�)Y��&$�@ҼIG�����6�з���͐�o)���n/_[�o,�zR ӽ3,���7�����ݫ�](ث�"�vם6��Z���6c��/�e�\���5ԇc��s�:-�9�]���[ J��yN�S��hq�WS;�/����ʁI��C��,� l0���i?)Y)��%�PuzN��9Wc1K][�v�|P�-����0�ʤ]D���S��&Qc��e���*������%7����bn��FiȖ�E�}E��iB�����U�U��i��#X�����cg"��zx�x��E�g@�5b�Oi٢�c��r��͠ CpƊ�&�?/]���P1�i�Z&�,��Tτ{���at��ؖ�t�[ �[��R�-��^��.��4���� 7�I��Μ�&e�J��Z�J� ��B�_vAU)�{Cm������ p���{T<7Y7�~�$���$E�0����.d�pz[T��(��V\�'Ў��y;��?�֊�q�d�3zn�4�j�9$e��֓S��@J����1�u��J��v&�s�j\B=�o��1!�>���{��S��Z����ȟ���]7�8�����6k$�ڣ'�ZI���N�u�.X�58�DT뤢i�;�@�sh'�*��M$��5�|XZ���?�P�%1�d`��s$ip�p�jB�6CA���ϙ��� �>�ׅ��T`��*�}o�������8w�d�M�0�]Onӡv� It "Yu/��%�����ꂝֆ?�_l���j| l!E��g�֜�#V�F]��#M�U�&��ґ��N��QG{Fz�}&���B{��J�b��Z���.���f���j��=�_>��ԚC��BC�U�Ƀ�m�\m/����dQ������C&��'��J�#�T�/3�]w#)g�?�CR�eI��k�p����K��뇏-��6�z�X�5�WR��Dk��J�7��3q`�o��Q���'����V�Х�携�"���&���,[O6�x�$)cͫ��B��U'�T��'�5�͚ըͩ�n���19��� �]��'��(W�w�O�&܌6Ӛ�sN�c���v��>5��g(��:�nH+4�aV2? �(�a�o*;�\n�"̞���{;�D�jܜ�?Q��"�֨��ݬ�>�`m�ӱ� ��Ӻ�����Y�f��L�<1�'�J���W�!��#�W��7Mk{e�?�����p�@����V闖n���^���A��=���"#wf��qb��#�~��M� }шW�e���2��\��v=Ŋ�JQ� �(�.��������,=ĄG�Cb'�4���#Bˮ�Qvy�`���A� � �P*B����t{�w���b��R�Pa8+���:b>�q�����U6��5��\ �,&�}Uདྷ�g�������)���=�S�1��>A���8��h�v5kH��UȻ�J��&}���?)v{��s�{Nԙ:����r��`x�!�̍��W��aYF�kX��h�=Fh��fJݹ�{ؾ�r��`79fP+���{\@�3D�j9V�ԗR���r�a�{j�� }�ka�Ag����?�)�. ��q��Hc;��حp:�����A���=�3��|=:��a��5⌈_���w��[�X��M��|�!��q�8 ��h���W�3m3���:�w�]�{�7��y������d�*�(��Q��%�w�Npyy��z�^8S�[�סB���"�7�u�0�H$����Ki�3��u#��B�QL^�i�� 3�c륭|�����`��AD0����g]�Y1��-ָB�G=ت=����=]jNmW����b��Y���&o_�U���Z�}U����QӲ���@ �ɗ����X5,�P�B�z�f]r��-DYU�k��ÞE�v�����V؊Q�d�D)X�SX�)'Vk��Ě��ԁ�Qg8��5�KE?�v�\��?&�ɿ�\-�<��(y*��'&�n��X��� �7^����I$.o�Z��Ov����J�`�����O���i��� L��}#��絛�k�'� ��t2�kle�l%/ON��q:�Zl�%ϱq ��a<��~���H٫{��%�Ѭ [�H�n��Ix?r/��~���H��}��IN�mR��J$4mgi�?j�~ H�<�������%�����O��d�t9�jo6{�6%C�-���'��؉�kG��e%$��@XШgMfO6�dP/�y��<D�=iסk�b�dG*��}ޖ<�9�mY��a!�&�E�d����Έg*DM��������+��=ɘ�$(�k�WH�CӘ@�qwx�F���L�j��f�FR��p �9�M�yXK7�4�x0��@[����6X}z�9�]�+F����[�y�w4�)����}�E�W��j����o���#�"Ɲ�����P�Y�`��Atc_�;.��zE\+ 6��SxH��;&83�_ω��azPi�I�KUD���+��9G�);��NҸ{w��4���`3�46�ʗ3 �>�$��:�����c下֮�]�e���Z���R��G��K�՞O[�1o\�ژ%���3v,o��r�G�o7�M�u�Ğ>3z7�Uz�\�`� ~�3��O}��W�9N$�@b������ q�~n�jn"�Tp�h� ��pI�[����Te�ٸ�:>��,!9��W*P��Z�ô��������[l*\d��N o���[�{���U���O�jQB��WM�s����e�\M�紽�AG��u�l�W�[�Y YEʳ~���;*`�Ŋ��U�;яl�L���L�`��mҟ"�Z 9��:��k��qL5�>8"<AP��5H�X�Y�g��̼*{(�<{�����"0�;<"�"^�E'�tM,)�T����v�M��s��}i*��t6Ht���^�1X�r.��eS/�Q.�����2�2�P-BɏL�j�2�S~��&�� ��_U�ҷ��2���]�O�?&����W���*S��%���0I��&�t ���#b�hy�Ϊ2�tw�:_����8A�8���Ő��e��Ҙ��j"�X�0XM<0��bQ�s�t�M��9s�ZF�7����Ҵ��4��pe�E�[��,���X|�)k f�ky���`���Z��ŔR�#�@�]�F�e����"!X�� ��H_�c���n.<�����e[cv�a���X��&H-��}��2:�����u��u!"�w�����VՓ-�I,���ޠ�qt愑�TX���Qқ�g����u)�}�\�B(��l��횬�D�1W�O,ތi��KKɴk��q=my��4��#LJa`�C9��M��"��@{�EI�xXj�'(B��N���d����n�-��V&��2��m�N�72���p�<D�ӓ���c�y�D�������t�g�N|�ðz����ۚ�UKċC�h��b2h��8s�clq yTڞL�o^��yaX�o�����]���ל@y0��$l�"�e3q��������}𠔑� "�*SNI���bm�g�!���5'�h�/�<���MfV�Y&��d�Q�����%�R [���ծq�#y�R�-�uQ����KU�V���ȘE� ���QX�D-�h�*mJ�͕T߰����/�U�_h�/���غ��2�1��5H�������7�]ܔ_���GJ1�����ؤe�T�{�]'�/Q,��i���r�M3c:����7��3����~��h��f��W0�{��d�*�<�`�^���B)�ܱ�g��ЮǛ=K/웩�ԃ=�,�aI�G�th���A~:r��r���b|_s���*W�,�2��IZi?���nKu��&����tuκP����}F������a�?:�Yf���xD���QN�5�T6^Wv�<�4Ոx���K�}B����9,����$jV)��%Z�N�~Ć��� 1RX���Z�M.��x���4G��\��&��,+�b�ӛ��U�H����d�n��oZ�=��e��)<�<��s^9 ����9uӂ>�lC.�BN�t-�`1��^ Uɒ���U�wOR�ys)�8��]Yѧ�V<�A�d�Ez+q�!�>6���@���^���&i�%v�QOk)*Wr��"8���X{SN �%F��G�Lu��(�"��'s7z��w�I�bX�G�F�k��D__a�Qb���H7��z����Y��y���d{M�!�u�l�\�Nt&�)� ���"20�q����{>|B��%��-�:+g��b�H1ұ#��*Kֈ�ũ��Lx�D�[ ��9�Ej4 �VU�>,JUXf6����~*�qx%f�#j�� ��Gu��G�T$63 @wל���.j�啂q��D�~�k�W#�و�0��`�#�j�X%��0�%UZJ; �=���D���F3"��Cs��'z����fB��.�a���fO�>�*d��ݧ��_�1���9)���0�*\s��,���F�Y��������ORR�/1�@�$�5���z�WZ���Ŏ�p ~o6O����б�\w����}&<����P����o^�.��o��B�����3>��Df�Z)ݰP{���*���(`��=��dM�h�N���0���Qu8���t�>��������z%�Pkۧ]?N��,�ڜ��t��1Dt)��*��ta��^��o��uJL��~`�0_-�/�\�I����lʮ���w{l���rE�D�l:3==D,ϧv�u�ZvI��ţx��D��ׯ=#���L�@f�x�/_(�@���ˑ�D.�$��~g#R��#,�%�ds�puܨ�:7���4���������}T�v<zS�J6k�<�(��C]<0�z�5�V1�w쀒�6۷��}A=�v\���)l��)�_A�a� L2�V#�I��gA� �p�+�$*��fF�Ѻf�� \������|ppkr$Sޤ���Nu��Q.�U��|�ǭ}�A��=ouFh�����'��l��1I�i�mbXv�z�9l�2�W%�6�D�WJ2o��=E#�������у�!R0��I��cs!u��s3/��JL�*1$#ҟ+c6��Y�r�߿������7�s__�0H��q�h��AYW�!�N�n��n��� ��@��˦RSo��L0����M�o���|�e����� �����T�ѺB��q��z;KE \ ����O�b�1�>K �2���.�i�^�o]u+j3�"6��߈�3A��C[�� O�'crL-�cnz���O�B�עB$�=��_3�a��]H���c$)��5���[+��O0끵�X��@�`���͐q�1��F���)!^b���w�onq�S�$E��K�2&�R8��)�W+�S�,� ��� |�F"ƚ1���\�#�� �b ��}`(/����cnI�Ԩ�R��粛�XՀ6&r�?`j5���&h��bHby};,_i��%ӈ2���j4�$��Q��8T�K..R�X^�@�Q��;���]��l{�Hzf �y訣E� �*��]GM1�pƀ�A��[b��"���J��u���E2���y'�ed|̚ K�GIT���fsD�)$E���zŜ�Py�)�-b� fU��1�I5�V�Iu��Z�3듊���W���/��t������O���KJxگ��'�Hx�K�s��x��&�*�*�M��>�uO��s���b���<�������!ň��n�d�Q�5��l�[� �.d�㯏���3���I��&� �d~Ջ1iFM�;��8�~�%I���t�1��z���F�����\��_�(��$+`m.z1ي��AN���jQd����R0���xJ�|B��F�d�_��(�t�N��?�'F���'�Q��IQ'�7�n8�+���J�8q]/�w?Ƣ�w(c���6�Xv1-�}H#壎Z�W2�b5��-�ϓ�OV㰕T�1�A�wȸʰ�1��n w�2��( ��qH�TQ��� |�s>�:�CM�.�M<c��=�n���Bi��u>uxj�W�����>��^hT�0��up ���,5�|���Ї��(�<�{RyGT�O�9dц�|��#= Qsb��E���C�j8x�|;�jҳ�PN���a�wU�p=��O� #�{�My� qb����xJ"Ni/��e_���@"�#�&��<���3~��پ��omd?^���?`K���T1Oo���K;)���o��r��@��{�I%X'L�g�h�`���P�A�E���� ꈹ-tw�B�K YHB@ RR��Y*�5�����-9M�g6q��I�Esiׯ�e34U��d*��;�Xv-��;�M!]N�]A3YV=UV���5� P�&~�����TT'�8�%{'���#�����m�iH�0k�.���ŲS8����MD���T�Gt͂�����n8���*�K��9�q\'Zߣ�Bډ����R/+�ɏ$l���`-ް�e�b��$��NiǷL#��s <�\���/ًzFp���i�z�>�*g���y&Z�Sm�%�6� :}1כ���!��+�?����ӗy_oMwP�m���ϭ^N5r�QT _��%,{;�º�v�=�e�c�����/�����ӽRN��.���e�u<�����ԋ�S]!xŏ��$X;?�<�U�gz!�pJ���aĪf�J����"͜��ʝmͽ�&�tuB�zo�z�(���m���3��R>��t���&��+C�3�&�`.�6��Q�}�(I�t;��fպvE �ֶ�I� �ӏWp�n|� h�q �����@�*T��$b������n������s�P�)7 I�B�t�S���w�D��� �?�%����{��HJ_[��;�]'u���{Su7c8$Yx@w��4��p�$�;���/\_��Ƅ5�Zf���|`��?f���V�1z]l�����]:+<�R���NsWgv�G��E���5y��3��d���6��l���b�i��,w>�k���`p7�K� P��6� ��.+�F��!��H$��3�\+� cߊ�:��E�(���o����2�OXu�H��C�4+ �����$sGKZ�͍�p� (2���Z�%쫹h%i��#KB���X������ص�Ru����x� ���6�ΛT���Z� ��;��.f�F7�S� N��+'r�흻l@�9�� v؏�������R�?���1@�ê1�M��.d�q�7�'wM��<f�Ϡ?$�;�� ������<<%/& oZ�T(���䚈�8 �|*��0�5��9g���Z�n�.�xg�g+�W��ǰ(q���H�#��#��� Ufiu}g��vK��S)xWR~���M��%�V����Ez��AmO�e�'2d|�? ��ᛰ,�B8|����1�3��Q�kP�8�@R-��Ҭπf�����}4!�v.U����ܓ4�eV�w"Z�I6��>������!�k�13��ׇ�����z�5�*�RT9���Z>��)����z���M�Q.L]�ѝ�Ɯ9�/�»:������e~}W�$�>k����>�UI�����iT�!����� bN����3'����d�U=�3�vqEr�|�%2��E�� 7��"�w�.���r���n��eZ9���2;�c�G���;k�C-��W�E��%�譥���Z²^�&s�X^��f$�S�Bqo��[�ߋ�2 f�wj�z^f����.S�QL�LI!u�\*�����sV$0@���C���ݑ��鱩4&�����j��}tBI�CRg�)��l��a+����bW����,ǃ�XF[�� P��b��9�M�@��� ��Iك���y�蛏g\6�z�Vvs�3Dž/����F��?��fzP�k�6��ʅ��!�OD�����!�Zi�p4Evd�-���)�/.S0�L_Z���H�IL�o�m�����+��aQ=����LʶTWĕ�>�� ��-�q���`�{�dg��乀DǸ �e����6�ʢ��Js���UX5�_Y-� O-��d*����y�g���l������U�z�ԛo�e�&��c�᭜�Ϳ�(�^���d�S2�kݛ� ��T0#�3!f�E̓K���Q���۔oѡ�7�T�� 7*�,�Whg�6^u�Wka�u�Xp��ȩ��=�V5+�ʳ�� V�[ _�\��A��C ��<�A|���m;�M(v�8 ��)��D���Kȼэ;U�~KV��8פwT�&P5sy��!�yU�A��KXOc<O:���ӫk�� ����ߏ�l0v���{��}Ь�}�㼜e�ws.@�N̼h��, �@����2�d##ɉ��˦v?�O���跜w����2�d������B��s��pf0�jM�RHF��E܀K���� O>��o�m�h��(#f��}��1͞t�;m�1x�3aD�b�*U��s������(V' 3�1 ��(��Tп;���� 0��#�?ի���c2-Λ�n�6�m���ߨ�����&�n�za2E �a��A_1D�<�P<�&$pC��hyY ���xĉo!Y�[� i|�[�L�%S�z|`������T�n��~�4�刴Z�0�,��fE]�([���"Υ���Zަ�ɨӰ�e�L4O �a�ڿ��D8Nq��%�Q�%���|��y��n��F،^�Փ$z�C�d�%9�I{�� ��?�X�1t�_ȷ���P�$;��}H<�i+�E���z��ޕ�I9�;�7TC-"� j�jg��DJʹ�`�6�haPjW���D�"y�F��v�/X��B�\L�v��x�۲4�@�Y���'��_�z`%�]�z(=5���<�,Xu�:z�_ �(k��I�-��<[v�1"�5���嫴�F�K�n��1�4A����g�5�I�v;�A�[.��@�?���t��q犤}C�x!�'d�f?�7F(VhW �J��j�EXF���#�1�.h\N����{z��@�x�֞�Cs=��**��ʫ5�,�Z�d��|w��C���#P�>��p�ſ��z|gB���f-��M���Y���R���wF�9�ݺ\J:�)';��3b���?t\�E㰹��������I��%|hm�R��u ^���v3�G��4X�(FQ��iu�b���'~DHft��v��G'E�Uݷp(M>�kx�x��z�aF���e�c�^�R$s�E��D����]�v����`~�[:�;�Pq�y�^���H�D'�.ʠٱ;Y7[�f�n�ApTn a�tV��*'�#<3�S�Y��,H�}(Z��BS{����H�xlF٢Lm��7?-��х�Iָڽ�� �e�rZ����2 R @� �o��צ$-��w���yЬQ�� %�� I���~[�$��I�.�%�F��9����H\��dOS{���Ȟ���t�0u���F6n��M��h��叄�5Y�քM�r;[B���z��G�+]��������V�v����RG?m��۩��f3�͉��Qt�N���=��2| �ca�~#��\�F��ѻ�4��Zޏ��!�B-J"|N�j�����G��(ݘ�݂ �'�|6̘�3��"1!q�wҲ�[:s�:��;��<�����\ĥ�V+�W{Z"J���Y�J́���|�~#ı4�v��,��]P�~ -D�-[��k� <��*M�<��/��OW�g����ܿ��數E�L��BC~)?���?=d��a'[[�w*\6�OI��P��f[%4wdnw"|�B4�.H�n������K�J���,�<�+�k�+��&B�pa�]���������> n����>�AB�vZ0r���"�\=��i�X�*e�S~gD��A!z�� g���<��&��9���ޫE*7J�79�X�0��GF��j7RXZi�� ��ŽL�_z~�\|�o~����C�_t�ϱz ��� ��7�nG���D��2.�[��ڀw��� �Mv����U��9�"T����%A��S����j�~,·�jѦ�Z�%V�j)۰��|��*�r[�]�$� �& ;���l!�.���M)][ ���ࢉxB�Ӡ���J�XױN$���2�T�2�����@y��Ŵ[�x�̮���*���*�����V�*��`a����&;;��X�G��!�Ft���S��[�Y��݀� ���\*B7�ޞ�X��T��8��$]OK� ��6�C���PV��>�$бqe+� �G�9���2���,YJ�xƅf��G_�@9r�p��`�_����P��]�u�y�C<�X�j��2���י�h���Z�M�>��6�����{m��>���._t�/����tV�x�̥e���_��k���V���p"���v�v�牊.t���=����A.�=�֞$��I5�?��3V���4�s�Q5�╚��P' T��o50O�G{�\���Zv��LBT��lf�(1�����o!��b�6mAi���/7�<2�S{HX$�������n'��^�ډ`U��f�Ȁ�������#�xʼ'��R���1�D$ @�1P�� 9�D K��.���\YP�]F���Q��SB���>�Z��?%�{�@�#h�>����i��Wd��K7�=��lo�_~�{4��4�����o�{�����cw�<�7D4�݅������?b��~�T7����e����!G⫔�&A����&-�Q��8ڧ/Y��H ����CRv?Sd��-��(�J|<s�&�� ��g�d�Wnm��[O�k�}��.`X}M�,��Ȍ<��}=!�>����a���6��X����7����+ %ȹZ�c���ȏ��c��עJX�S�O>��]�5*�SW)�o�&�a������s7�7�f��u�u�D2��K��.I���?�^%�?5c~0;y5��=#�������x���PJ��[kK��kHb@�Jc�S%��SyO��L��ݓ �����G� ��Q����u� ���:"#��zKQ���v���z��f� �� �V�eoa�<��P�D+�h^�l7vx�I^�g.�hL�J���U�I��`R�I� K1��CN9dA�a0l��)��q�������#;Hx1'\�ۥ+��T�tqX'�=� �Յ+�+�w;��8�O�ct�[}� ��N�����{���S�UK�}�в�ly�����`�~ ����G ��J�"�� ���m���r'G����ؼ�rO�K�;�<�ㆭ�&#lu� !R�d�@ �jH�}�S�iPӡ(�m\�r�]� G������ 'ރx0�������uz��Z� E�]@�H7K��u�cl/��<S��lĂ���X�:i!tPb f`�8 �;W�9������F��' ��@a#�E��p����4c�Be�,C!�.�p6MVedP�\��c��ڔ�O���;�c�ո��� �~���gXY�c�����'��a���fS\�22C�)�S��&�{ ��BZ� a�Y-���D��*�-i�H�.܇�r%���d��l��'�k X�NFJҭg��X˚������E�XY(���-�i����~�O-l�B�o��I��y�Ց<0�""�B�<� #a�44Z�FX�� �>��L�E����[�G�7d��t�8"?�{a2=�N��Ʉ����]�l�Gvj:��<�5��%��bʴ���}D߿v�陡�t6I/h��E�f���(~:� �e��9��i�GA�_3�\�#Ռcn�"ͤ��8u�v�R��~. }Ķo�)O�Z©Y�f%`�sU�㇜zb�c��殉��Ut���a�%IT{���ZƝZz.���?�o����&�]8��7��5d�q��i�C��m����d�n^�3�o�y=h���Uޮ;���!pLOu0��G��;(�i�r燭�f���%���;��kO���2f�!���V!oy�t�N�={�����ג�l��b�l�����N��h̀5����[��y��ڰ����M�"�mI�j�6 ���ؕ�H ���Kv �+4�gp�R��h�F���H%bk|d�����;�<1TP(C4�j\V�ZvB�y���g�F @B�|ަ���@_�(�Z��`����q���>�@W�S�,�$�h={͂.gug���C�X&�Y% �h:��)h���~��� LS�wG��I�`�@��i �\�WW����W���c���n����~���M.�!��|��5�LK��a�����I���7����_�ƬvM��_ ���L?By���X%R�ס��L+y�<�M)���=V]ܞx���L.���Z�b���0<�+Po⻠��a�84[���c� ��˂�E�?�"�Tv ���cO�RPT�%#��x�P��H��� #��izk��僃�U�m��C%��|]mb�Ƣ�Q���5�u��!/H�!�*�5� �ct������ `\��VZB7Ɯ�dS��\��n�2K�`���_��TQ�3>�յ*� `��I�퓅�T]�|�ٳ���Ҙ�̵f,_/Sl��Az���Պ�B�ӆu �nSs��w��z&r!��%e�է��Y��:j�U��p^}��H��lmA(�#tӔUa�K��BH+iP��<˔��?%�3���=%�J�o��%�����ѯ���+V2{���cX��4��Gve ��*[ɾ�܉!�X����Z���0놽pAᾱ�*o��B��,8�aD��XU��D�g��G���� �LV�)�?µ������o���8[��v�z;5�q�G��ȟ���+ox�N#�������v-�!�� !a���>�<�tHo+��[<=�h� ��.o52PC�'[\P������N�����B�N-L��MT���yp��?Z�=�T��"o`�3�xN�����lt+B�t�ߋ!i���sH�r�X�W�b塏`�(M���%N���Z��J���;L�ZJ۴�pNB�C�I���z\�S�e"A-��8��FP���&���wM�Gc���d�v��I�� �� �4�:�lB�<W#�q>�l�Z��gO���X\ ��h��9�V��Q:��e��<u J�p|�c`�6:� ���IEa�t**O�YǨ�K( \oh�� �7�����疏:�kG�C=b6"� . �;(�m��2Eۮ߁Ld�;�ͥ��_F��QD[� �#f�-�p�TG���w�h�L4�(َ;rF��M$��G]���t���9N�$��3��}0��ݐ����=�`]�ߥ{���Е�D��۲K��`h�Vs�d�C:Aߟ ���*������b��"�h�p�R$��g�Oa*���ͥO$=:F�W�n�U(��x��7�Zʴ����&�}�BOی��� ��F��+�����7�X2�����P(�/�0v좙�>�= ��K�ض�rǏ�%���;j��Sչ6}WAp?�IT4�m�F��rQ�%l{���Ws̖���↋����O"�T�V�<꩸2Z��E�����Ay!kz���v=(�x�4ipJ��{t!�j��[V�=�p@6.0aV}�s#9:m'�N�.Px���Vh�W�Vͱ6y`�&`k;�ߟ�r����6=�8ҴP�i�q����� ��q.��H��}C�d��Yq �u�����f�ם�%����6�\�##+A��>`�t1���NJ���2��琸��Дb�� �����wЎy�)����{�Ӿ�5���$�����UOy��X�����٨��pa�u��V.,��vH� ���^�:���7|q A�u���x#�� ����e��U|��C�ʰ �<6��,�Iy[���۩�/��*��%N\n���״&��rCq��d�P��f��2iu���= �b��46��ø���1tP�v�)��ܡ_���"]7#�#[ސ��Z$���-ƕ���)8�J|�Z�B�f����mmUh��/R��yx/� r�^b�������D$�l�G��A�nY�hp��k�&8t�h)�D�%�͠��B^�'��j�؍����\���=�����GIAsdI�y1J%ѐ�\SE���t�-<�E��Wk�D?+����U�+yu�Uhm���U��������A������O8������N�|�\����E�FR�`zϡ�� x���u囿{}��[;�ID�)i�_�ףS�S'Ǯ�`O_��^��R� �d���)v�}t �?��U��9$�j~A��� Z�Y9f� @�4f-�ܑBbDu�����4d{��<Io����W�����KV,��9�}��<@m�����2�?G�T�$�q�"v�E�V8��¦#/ֱȋ���ߏU�[Bˀ�q����PO8��|�����¡p��W��dp��>�~�x�\#7K-�7-��&8����* ՒƆ�������N����or2���m��,�II�Y�:2HZb�_fSy ��,X��f�|��_����0�e{����M�:g=�Aid��5� �ה�cR {X���2��tUv�,�ؓ��;CT�7�$�#�=y�:Ps���Y�m���|�9������Nm�'���Cߵ�v��nZ#տ+�#��4ݾG5'��ɰo hҟ�V�� ��Z�8!�F܋�#��_e�j=��f:�[ &�j �0{J�R*�*�ܞx�Rp�n�������\Q�`�Y_(wؘ����7sO#5V�)mtW j��'�a>����r�PC}���J���+4��W��I:��g���b�Y��_�y��� 0@�� �<q��ۼb��1J�QKo����Ƣ�t�7�n�Y��K�Pݱ��^*�1�C�|6�Ώ/��LO�44l\X������:���u(����'B����D�h��;(��J>w�!Sf�E�n����,_��_8�@�Q���!q@#߱��� /���jO>�����q�k��y�CLk.n5O>� ���7�E�� h|'���/�>��B�0����#q5���l�-^��],$z�ě(��m@hٸV��&(�$�òO)B`<�ѯֵ��0RE����A�" ��\V�%e=�<��ui}^���1l`z*�dh��Ȯ����yT��JL�3L=-�DiWJ#t,��W�L�ұ�hR5��p�]��e���TP2eo�X�3q*��Ɇ��;�7�Yھ;"��D�j�x1���봇 T������1&�=�^5I�����D��Ym�J��v�r��Fq�������������w[[Zn��R�yi�Q�5�\S)r�}ާ�tu� &g6d��'� THi���N8�� Qΐb��Ϗ��`��=&l�.ni1�"(D�߂���f4�X�'�������ɿ�2��c���d��/���ӱwc�S�I�;x ck� ي� �z�-��m�<f�rIŶQC�0!uI��z@G���j~�[k�%�X��FD���迒�� ]p�bZ8�|I���Qxc��;9����%<��JOPj!���#\D�-;t�bm�s�9�U�V�����No�섰X�+.87ΛWY;���ؐ�g�`�㤒�0�I��}��]\��H���W�w�$��(����Ͼ�+=��k1O9��͕>���n!VF�d���0eN#݊}�#>�.��:�lYZ:����@JfD�5�N�ٖϔ�ɪ[` �~��B��w�����n�M��p�A���,�'zFC�1[�2Z���?�F��YT�E����tJ�]�fK�12Rnx��o4���<~~ �ԓ�gpBv�U)��7$��Сi����e�:O�y� ��y�ȐGbM;6��[%����n�vt���$��ɷ�A��p��8i(T�4�*'�Ə����GH�|P�C�z�?0�W�����MS8�ca� ��|�f ��Y] B�~;^SETI����v��aع�x?CCU<k�0X�'xdk�����7}c�� �ڥ���l� � �+Z�L�HPcE鹈��j'p|f�� /�����'b,�xq��{�,��� ^N�Cfa!n�ZU/ol�p�Z�'(/kI}|{��tS�h0�?cӀQ)��p3���Zї������y�-"�a�J:ˏ�і�gj ��g�y9�K��1��� 16�7`G�p�c�I�e��vM;:S�5�h%T��Ru�� O���b�)f�]�Pw�*Fe�&�v���G�:5�=�ˤ+3jR]��1]���uU_��}�`fp\���|�OVH/��<L�?�����J2$5An�;Pbdg龾������E%K���9��|F�rU]�����x�rz�趋8vS�5SZm� �g���/6��-�_2�1��P�����Ig*d[s�l^�$ ��V!��Z�����f ���=�9�����\M[>���}�c��&^DB��v_��.��D��ܖv��d`��Q��pPԱ#�"|t�_-2��v8��Q7NV���r�k�z"6��I$}�hK�� ��&�Ѝ%g9.��Эuw�e���0�z1Ù�u0P�<��I�J�9<5KW��z��q��5x;ᠻ�;j�~6�G�pf�D�R:���%�5�zDD�Y�gYPEL�a��t�� n0�v-J��/ ,��H&�$�`����L�@nm�fZ�S_�z`w��q�(+1 �pv� +�B����؊ĺ�� 5'���K�t2�=�0��Ŕ�kV��\��Yh�W�:�B8��̖�JP��\t�|�O�a@��ql"��jjO�#e�Gfk�3���3� ��q�:n���q_��� T�{2W�8����r���j�I o!���Ar/�:$ԙe~C�s&�7��)|v7�9�sw.A�=\�$Q����f������5�y�<�ߪC6��V )��v�[h��B[N�Npd����?m����s�g%�y���$��@�l�t�_o=|�����'��d�Ɇ�R���`��ؖ#���1�6B�dWUh=�l�1 (Ny�nb�s=/4<�myss��&�B���_bZ�P�Թ�V��vd,W�S73:M��i�]�[;��9W�CJ�>��������+}���\�=��o�4ƽ�.9l���d ?�f�J��А��]dҼ��i��!�Ѯ���7� r˙�7�Yv@n4�ҡ�Ag�X��)�;��w�[;��A2���~KL1�۰���<5��T�ⳭJ"�"���7��]*g���8�P�& ~g����1�hxA=���� *�m� �p=B�(�Wջ��@��!Yr�Ȥ�(�t�E��]��킏�Z�`Q�B1h�@0o���ڂ��դQPp�8[�:=�> �G�O �o\��(w�v ���ҴY�K�(I��QJ�w��7��XM��T��o>�~q%w�)3x9��eW�z�� ��$���,3�E�b��)`*����ͺ�,]�~x5(��_�7{��)S�/U}�_������_�� r*�Y4�PV((��N���=%(�3T��Q$������tw�r�U�l�]��.N.����}1�k�W��XS�e�� ����I�B��?E:��rV�dv xb��� 6IHJآ b�*�_��-�%W�1#Ѡ�h��Ƈ|w�440-�i�t�+��g�����ۢ��`��%FY�2��݄8o:25HT9\�F�`ҵT��� T����w7��~M0��3NF�-G��ز�2�Q4Y��V�u��Q�,I��s8��Ќ�=;���2 ��E.�B�H��P��٨�j���\�gT�~� o5f�O�-�`h�e�o���a�%��~�z�/X��4�QҎ�8&,��Go}��o�K"���߬��o���++��e� J����8Z4>�.��DߊjUW�uq1�`���Q�8�^��a���'��!k�l���f��fl[�X��\�O�p�g��'�Z���+q�{Iќ��e8�Na��!8� u��qh�y�ߕ�Ыf�t�3�� t�0_㽨n�W��ns��~��j��R�����^V+�k�t���J+���.>�ȍ/�]��b U*ut�V(���-�E���UNπ|�-�mt�j�K�����F�`h\-��u��ד�+>�l����@�Q��t���M�(:yR'�2��ٰ/z��\@þڝF���<����ۀ� 3 v�(%`�sy�(�m����y�d���3 �KtIW������C�k#qN��;wͽVR ?=P,��S��_�y�f� ]��pX�v��Zh� �)�B���L�z���(N�eQ=|�"��!aĈγ�R�^�y��I�2�eBq��:�W�F��T�\�:t��[��!�,bF�P�s�d6�'�Z��l�P��g��[s�>-�T X�����K=ol8��#��n\g�p%T��ި�˴�im�b�6u�� ��_\��i���� f�D�^��i���D(|U��3L�6��=�^믰X�;_jґ�H6��m��fx�#Ls0ݿ�kQ"�$z##�{*��`�.lۈ�x~��e�]�ܾ���n~U� f��DZi�r�T��(�f!���[�����#���owi���u�����u�G ���ٝY7�m鹄�&�_��N���S�y4��E1g�~�=�D�Ϩ��9� X�K�]$�%;M(��Ӫ������9s�OsY�t�� ��m�ō��ؐ����t授q�V���m��Ѵ���[�/���7݈��L��d�TJ Y�OV�'��y���ėz���� +��dBR�0�x\p��y2���g�B0��X ��{�}4�.>u�0~2�� z{��(��^� i4y��+I��X��ߘ����B:�NGB);�<*¢9/�ub eBv�K���� R��7�{0����N�_��e�� ����c�V����b�5̃��'��}�m�5-��2����葷��o毝� }�c��ott�X�9�iu=��T^�+���4�}�c��0^Xm��Y���~P��*t)b����<���u7����p �So���3���z����T4�@��?XA�����Jڭ�m�9[����Yln�pkXI�&7vx��_�3�H����D�*�{�ȗD¥BW�!&�L��{p�R��D��l�P&�e��u�&�H��Ǽ���6�O����V�f���qb,�ϕY��ܐB§j9��p�Õ6dg-�H��>�b�l ��<sZ�I���{��|ȴ.PW*�n�iiG�ܕ�sY�D� 3��;�ř��p>dw����XY�P�>Y�"&�d��%X<4�ΐ�{��#Y��H��q�pJ���x��D�\qv�����ȯ�>W�����������t1?j|�����9�n�Mk8ǽ��_���K�v s���)���ŧk���%l'���[�l�Z��O���Pm �Β��=�V˼{�YAm\��a4���A��e�"�������p�s4��k�Ö�N�k���l�p8�"b����p����_����G�f:���T��2p��-�sHMB��{:�ٍ_z*�i�Fɹ��߽�</*}iߺgF K�F�P��E�Rƌ�Q��iżD���Y��-��N���5��=�*J���O-�G�����Wj���s��ר�P���!s�n@��V�����$ !\6�Zv�(�c:��8l�R��'덅 祡s9c4�BڽM�K�К���:��G(�Ѐ��9���z���& \���1�F$�X�n��>{@�7��eL�<�R��Toc1\4�~Q7LL��P7��0�����I}�l�ӏA6r�w=6��^T$���ɭ��ϒ���7�Q�:L�o�I-���Z�g����&���![�.�U�� w�7�<�E��2WRg��/#+,-0�Xa;4��g�qL���Q�rٮbR�_:��a���B���;q��2���v$������4+�o\���� E�r4^R�B� lx�58���c�e�M��D�g\���G������%$��]^,'�2NBM��N�(Y �Bd8c̫�ߘ�ye`%+�)A��7�{� �K^�3�;�/�},[x?�'؞�7ZB��+����N�w����ʷ�V���.�Z�ĐL�G��ӆ*.]?O�6,\�t�Gg|�ONO������:��m��Y���đ�囤5{ȝޯI�ưʤ@������3�A7֏�OZ���(+Ff�5"� D�g��6���_�=w=�J�䯇�1Љ��{�(�C�յA��8�-�Y\���1S��#&�N�����A��'[S�����z�$�L�nC;�·����o�K��:�I H�3j^&Q|0(7t^�m* �g�B�ˊM��2�Pu^wg�y]P��h{JV5�u������^l.�BU�j�*OjҦ�%���!�TO���a ���X��`�3~Q+�7 ���5��N~�G#e'���{�3��n�Q�d�B�E�R���@r5�04?�I�R�^� ���^6�����(Ki?���^�����R�l�1�Z�U>Ɠ$v����� �#e�/l��9���g��j��n�BY��S^�2]��q���ۆ���t�U��oo v�'|��U4�R�T9�Ƥ������p}̦y��=f��r��j�јA�`ָKC%c�Ʈ������$�]��ۼ�Z��x��x��9�b�ޏ~x�|Iَl�# 9�����q��f�B}����d���r��c��"t��-����!ɩ��F�x�ָ̮���A�� �E���r���o�Xrw ���t�3,��|��#T\&�oI�7�2Crzx����=�k��r ��cP;S�u��{h$���<w�;U8. �@0�-�]��B�A=��������� i�����Rǒj��#���k6 q9����pB2�J�7yA�toV ��j�6@���5Ǖ�ϴ.�G��=LS�f(�1����I}�U�!�&[�99Y�<�h��as�U>*2Yi��Y�0�7�OrTWܖTT�cFĩ�(�;�\�� ��_<�������Y>^D ��V���F�_�ps�Kv�%���pIC,�#:*V�/=�������\�e��[�P�>z �l�(��E�#:�+NE�`x�X8o��,;����O8�`_b��!0E��m-�}䴻�[��Yڇm6@8U���M 1G:s� W鴍$\���M^U�Y�]��4���}^{���S�����@��!�����N1e��~%�*0:�خ{r��^�?��Q�X�:���P�O��N��k�Ç!�{�m�b��#��.=��]G���RC}/N(���Y��u�^�ڴl��F�R�.t��%*_�ݧ.ְ7(��1�@]^灧�D ��Ӌ�_p��@@a�OJ13�t��%� �k��nkaO������6�6G8֤�ͨ/}q��E��L�&4pp�l%,��u�+��T�q$�Qu�,5��(�@ Z}�%�c��*�� �<�����-߿�V0X3���j�X�1��l��'�|2jJ�8��D�����?����2�����?�(�������˼O����)�@����-�M��[��(�16`w�Ꞃ�t,��@����&��$���?��b{fϿ��\f���i�\@����@�cr����v�̒I��B�����Z� &����cn����%�AoAc�ށ1�mV�չ,'|5~L��A�^-9����щ:?��zT�����2�"`t��:�cR�P�r�G�a����S�$��:�ц���;]��\�k�6���w�sa�"������waM��w� ��l�� 5�x�i#0\�9�#~=CўϝE꠰�K�y-�S�O��#g�O0�D����l�-��]G�;F��o�i�ܳK�DaT�&�ad`��}�f�u��Zƪ��y�H����ڲ]I[����GG��&�́��9+vjiRL)F�s���}�m��S�fQ�Y��s Tp@S�5X�����iE�ԬC�A�L ��tYA�F�a�����(��]"�o�]��O�-EĪh>��C�,��q_��7��؈q�����[_ �� ���X����E�U� `�v�]eʏ�Ï�×L���0��w"�dv�aӎ���k�t<�L��)���5���2�- y��룼��H��ªw e�£낐�7�8�a7�w��y��y�o�(d�!-�n<I�W�����{>FfUн+�<�!:}�K�����Ւ��U)@/�~.9+Qo�ݓ�/5�Sy�ͥX�� 1&ц[}��9�x l�뤥c��9���dQ���S�ݚ4*�I.��'�E��}�췄��ؔ��`�n'%�8K�0G\9�ƵS�� �g�AO���W��7L�Nًe��L�X"V���fy�!�0�-��v}�,{���G�q���x(�',���̧��n�XWb��)w$��{0X r�&�M�4� ���Ɓ�{ G�;^�b�d[��������"��-N�7{��,�m���%h������=�6������k'�0�d�3o "��Xi��3���0����f�0�Y�7f���p�H��j��4���N����? Z��L��0{:��I�Oԇ��QR� E��=�Ҕ�5�����pW�¬�2���9v��F9��"lu|��_�S��D��~P�Q�fc���y�o�YZ��0�i^�'��4��eē�֛Ƒ��z� �\(��,_y���SK���D1��j4u~WǛ��0r����!Z������Q5����U4/4Pղz]M��{f�hfs�?�УK��X��5dST���Y�&G�D�=��\>X�D�����X��� ����Z9,��� wBz~�̨�"��U�Dypg�mE�/���WQ���ᆿ��`�e��X眂d�;F89hA9������L�]�D�S(���܀�gMq�q$c�� =t�7�!D4�G�Ǭj&G~��.��D`©�:���m!O��/���.�Utx=���<I@�u��<�b`�����3f�Y�x�7R���K�ɚ8o�����7��2�ǓjyZ�t��#��鳬�m��@���]�J�c=4w�W�z�E�#P'̘+9���7�z�\�d�=M�K���E˥�����(�#H����h�Qü8<�����REo�S�N��\�6}(�U���j��Z� �d�Vnݺ�I����k�U��.�%в��3��S�T���ʀ�'�>��o��L��֜�.>ڼ�<����s�_�\���E�Fz �By��2 I_���4u�=҇���vbI��Kc�Ʒw~wE�Kfk%2M�ehS/{��s3��Z��c�c�S�*��`܆ ���it �3�Y�ӕ:�R~/��g~�#]�'�eU�Q� ��>���vq���O �j�>8f�`�-��N���r���B潍�ܞJI�Grm؇W�=��5��BFq�zv���b�#���?�;�WƎ5Z�@Kc��Ɍ��%�E�|��n�,S�"� _20�<��C��/� �@��V"�C�E��W���2B�["�郦��֒��KVQ��6χQZ �W��+@�h�`0��nF!�.:2���$��*#$�ars�w��' �.Ŋ�7��7���V�I�E������譆s���M�]�>A+�Oh0���X,'6O�����-�ݠ�s�"�N;�P;�*xz@�.�OHoh!MK����&�J���f̽� &`��e0mz*ZsC+���xo�_�� ��D�d�|��3�j�ēX�v; ����<0���_��8������|�GҸ|��GN���|��)���i�bQ���)A�o�3_�PMy���{�{ ����=&�l���f=����[(��w��4��hl�&�r�;�Pc���]�_��>s�@�8�AD�7�a����;t�-g����o���T��A��#aщ:� �d�;P�ׁ� ؙd��$r��P�K��UL|���$�s\�g��B��XNPnM�D)f܂@���Z~��Y��N� ��/A��_Rz��@:s�-��A -QZ�zn����Bd�� �]w�D��h�lf`D�ou_.Q���n� ��{*��xT�C�ڵ��� ��(9�� �֧�����A�1�:1�논�̺�@} ��0M���j�%�m�j��E4��� zg��3�we�r�,������0B"�DB�s��/,5�$}%=k(���6d���D�8P�G�Bi ^��O�2�d�-�R���&1�>2sD(��%�@fL��+^6������GK6s�� ������6�y�ZAS��ṁ�}NE,��W��5�\�����u!Zu`Y�����/Z0��9��p�тa,�4�d?w��Э�S�7��J��v��m�gf��v��[�!Ik�7I-. �8�������(�E����=�e�T�C��r#//�M�,)�icI�^�;��|�ܷ3[��t/�k���^�Nc��x����ZxY�/�٢7>Fwt��� ��m~�&���.}��*&.�P�� y�հG��˺��� ����0y?��p�b���b{���D�Y�Z�� 7���Nv6{�.ڨ?qCۮT��>��7�K�@��NltU���ì�}7�����M<�#�A��p�U�Q�be\���C-����K����͠9��$�4�֔�q�,�<ڃ̫e�仔�S���)V[�L�R&���,�4X��� �0�1�<�J+ϗt�%����(.��_��]�a�Q(nV発��Wi$ٲ.g�yQ�WJ�m��;��q/�!8U ���E�0�G��n�ӝY�7��+ ����S��(�aHlh�3� ��_���=q+�U���b��A/M�!��w���}s�9&14 *t�ۙ��˪$6>J���P��c�<K����1ڌ�]��UP� �u��}a�?�(�jgCӃ<�Mh���C�2�JV�H�Ǖ�)����e��#Zv�IBu�6����)���`�rՋ��bZK�ӌ,�v2�e�����!��]�qA�W�g ̭�ƥ5i,��f��ݕ�E`�m�}!@ ���c�d�$�C�h&�}��:C2���X�]�Ns)�^kR���ɕ´��+A6U���vCk�ʠ�]�`�y5�R�`\ͩ$!��G�+t�m���kpYP��j�fE8Q�L������}4����=<?$�*��G�Sr˂�D�����!֔䏇�~j)9ʄ){���*fp�I�V�5�K� �_��|��af��;;��E%ɦ��he^���D��K2��fY�4P�נuQ�fa&�釔f��yd�J5�O$��Y�v�Q�e���/��]�~����ޒ�7����`�fF�X���7���Zm�C�e�����f�R�.rÛ�_�������d"{kY�Ё yA�c�$n]���/���7���v���xk ��z\r>�>ϴ�E��}�|;.w�LY�s�Q��+�0�A�����滸�υ �XtYT���T����� � �\�yh��]�w�!�ܣ���?��)զ~P�뎕>� �އ�i��Rg��� Q����Y�La��\Azq^=��:���B��(Jy �j}�һ1�U�I63e��'��X�û���㝝�'���P0�+dX܀�?u�u�Yx��'M�:�e��y9����V��5�N��]�8+?��4;���5/�Z�B�tz�,�Bj��,��������r7�M�v��F����v���=�j8���zX:���s�`?��r��8`Rw�fc(+��X�k�L��<���[;RK=":)�}���e�òv t�sψ1g�,�(���+���/;E�7�#�͐��݂p�2z��$���r����ysʸ��e��}3y�f��Ԁyn�!�6텰L�~�"8�%�N�8�w��<��Ϗ�*}9�9u�b[;{��:���߅[L��HF�o��d)x̒1�a�5qp��1�J�4� �L�9E���� 1��|R��Hn���-�K9)"]iV���Et��LѰ�&f0�����x��� �f�*��'���7>\M�K�YPю���)�n}1�=��<��_�p��A�eB��r��X���*�Z���څ/N�~�i�z���^bxN��3��(���<M��Ne�P�{$�����:m�8g!8]0��W�뽭6xF��� Q�\�O�b��8-,��1���Fixk���4_��NyxP*�W�%����]Lȸ�ђ��I��!�ml�d��Ф~�e</�lr��l�V�^QQ^�FM��M�)o������:m�!��-��Q���÷��{_L�̆�Z�����Z��IK���U!z�l�x�J���bk�{�T�|�vᎷ^{Ǝ�Zak%���f��gK����%�b�_h��� �����GI���~�I�O݆_G�y��8+j����A�TJԨ�S�q��`��q���!:\��끜�{!��)ᬐ��wz_�$Rj�9��sD�<�%D�ro����/��f�~*'v��(s]�Q"��Z�FY&�d�.���_~\Yo�<�Y���˶H��$��f�6��I�� U���r�$�9$�"r��瞋f#\�L�q�\�Mj���'��ұ�.'6�#%�F��.O�X���r~y�SM�ַm!�Q{#腅t"�jG2��3��� 1�D�ǰݣT��I|mHT%N1j;]l�[�sb4ː����b�G�-d���t����mS!��8iOX8���_��{���]gӱ�����\^��o�ƍ�ҋ�N� ư=��'̻6I�>(���pf�c?��@&��5ʆ&8EE���r^xww^]3�me��%��*�N��N��+�v(!�f3�lA�]�SH��m�����?uZ�� ���垾�V�x&uOK�1�w��|���ش3ɝ����O;i�8���)�Ot���P�"p�����y/�l��nk�R��.�ᔍ��B��6�'�K۫b%���H�&�����FZ<"�k�{�B�P��N�[��5v'ba�hN��4fD������F.�Y��N�sAMj��x� �-۵;ڹ�,K�|p86���ތ��`�]y�-`��>̹��q]iw�X��D�h<-A5���BD�X`����kN}R/�N`/�"4��v�`��\��I=�^C�_r��s$D�%%�׆oYk2<�6��xx2��3��Xo��u��$��� H�(ȷ_��n�s��ů�S�B��w��O��{�uD� 䰽��p�P�Yߤ�}/E��I��e =����-�D�ҿa��ͳ������}92l օ��%���h�|0��_$�= ��Zհi���<���H�e^�{��8*':f̶����p�c�ǐ�����&�h��ĥRt�5tSx�mC�2' �M��+/=�O���jv��P+�Nk�4��l���E(m�[:�����K��\Q;�ء�+֢t:G�95k:q:��f;��#�@? �禉^4m L��ad"CEu��u�ѿaȾ"K��Gi�&��q�4OG(��c��]�g��^�BD.%~d*�� �L���'�@�n혲$� ��k6�\@A�C�i��i"�Q��a�����@]�C��q�-�0g��f�]�@�L��鎡5���;*_7_�fzG�#���K3`HNe���"�|I�0,�9�a�[��:�Tޗ��T˼���Ož�h��C@�drP�1erF��z�����GѴ �K��<h�OO�=���B��DQQ��g�z<{��%)��qD4@����[�4�fb�H�?4��:��e�R����)�B���2}b���T��>�Ҭ�BV:\j����� ���m&:R��(��5,㌧����+�J�}jip������@�CF{�-24[㷶��ka��s�ZW� =��H��)�7iE"�j*㩫*i��%�n��v���+��*�n;5Tz&����Z@ �Uڃ���V�]��%N����1St��:aߗ�����ŧ�Ƞ��{�m�$� �?��A������co�^���^D1DŽ�,_�ֶ������4���"o*߮jM���3nV$�1BQ[��ʆOi�àR�>d��/�U���6+��y?b$��2��&B|�{"n-���3��ޱ����~9���8�nW�p�*�Z^HJ9���@����H�g�FDqui�Xڮ:T4�*���vS���lCW�d81T�aRGP����K5 ��LG��W9��z��?=� "�ߙc�ř�����F\���>�K-�h�0K]�hi%�,I{��|^7%3����v�,~<�#M��d�ͷ/ ��܊(��Q�xv̦@ �gɬə����@Iv?i�����ҧ��/;mb#� ���ږ�>���C@�����{���Ԅ���:�3�Z�s,�U����o8'�W0�N�Zk͇�d�� v�^k�1��V�ϓ�&�8����Q�MU��+G&h�Jt%LU,�W�������N�`4B�u�7rmˌ��s��.D��F:�TG9a��3neD��7�*����n���sq��{И�{G���r� �qm����A�F*��,�#�r��3�Kc}�b���&u�e����i�غ���O�x�B���#0���B;��V�|D�o�k�~5�"`S�C:D��f"ܓޏc3J��a�kA���C"I�/� ��}�t�Z���ˮ Z���9�5�?N�*>�%��F�dE�˱��KK��u�����%�A]��� �$�f��W�b�.�wN-c��?�2�h�/;�;�E�9B� �|h����Vq-��7��#5����旄�ݝ��0��`'�J��F۬�⭝����4"{L��:�@���?y��Ut5:��\��<���h�Jc�)m}��5�+z�a�8��/v�[�n>�K�6��[qs�?�B?/N�DHE�*�G6Y�<�1/�9��;n!���n;g�oۉ Y�� �l����g�v�̰4(%�V��g��i�c#)�&�<�� �C6Z�ӳ#!U��T)}�����4?M�T��o�{E*��Ϩz֬�����ף��4� �<}�ׇuTѾ�JA^2J&ogQi�QEwU�%�x4��CC�*T;0 ��������4��U����@D�����^]���w�rs~<�zL�;�T�)R�M�"t�� .|�� �ؐ�*��J:�AL8u��ߔR�6i���l8�����6��}���.�p��K"*3RL&��ʾ���:�(8�_�2��sGP>��?.7� �8��-��GAyV�����+��_�Ato�D*ДvF�.ʼnS��7�Ĕ(U_$�R� ��"%Aך�2���L 2�Q��ڭH_So3wYD-6=�2%��^�?��S��;*���mg���f��K���`�ղ�����@i�=�<��5W��dl�S�d*�*%|Wȩ)P�gc���0"o�o�࣒��E`� ?nV��]�BI��e���(�tW��*���5>�"N�l@���mI�籺��_���$ŀIhp�r�Mv���lp��V�X�!�S6綔t���8��%,�k�@⁴��|�{|�soHI.�����Ih���'�8J�� �=t�Ә�#1c�(�s�Yd��"�p�@�=�lux���j���D�����)E�n�V{ ��qbv���{�!jQUH.�Qb,�.�i��w���D&�P�l7#U�!�5c���i���2x�B!�e>$�������[�X�Cof}+�Ҫ]�Y������H bb�f�v�v Ewi����'&'�1�ܠZ#�`�e��FR;ʫQc<�5��������59vw+�t?5KU쁂n8P6��s�&�iy��90�2c��R#-8�>?�TӱC���U����\�HcS�UIόa䤙��E�{C�C66x�xg�@l@[(��2�j��'q-M�M�z�jQ�V��~MD3�Kx�wL��ĭ� L7 �����C�|�Z�ѵO����J���I�@����s�(�C�X��睋����֝:�� � �>s.r�?��%����|���B�cb���=�T���dj4w8Z�㕫�����姇J�𰓅B��x�I�"�k|6�+p�N�2Q��'7����-v�%�a�+��uQ�\�m�p(U"� �慑<r�*�6� ;�~��d�y�Ϫ���> @�ҕZ-3��Y"K����ɚj'�s��WE��ajy�*�H-�\�N�s�*j,}����Ok� ��v���A`;�T�\�r|Eۛ[;y�a���fy�1kpuT�%����z�y�� ��x��v��Y�+z����Z����z��d�]�M��=h9y��`ZtQ��TR��E��ܬs�Q�u��D��u���e�CۖКx]��f�<�����z?O�ӟ�Y�q�,��n�~]� y�wu=^IR� I��닉�Uw*"��!��F6 ��1�S}�I���,E�]��� �J��5}�V���Af�|W�hh�@_�*wʴ%��s���~���[�������T������W/Po1.�[��Be ��Lekn�Ǣx��8'-<~q���gR�hH�@�^q\i�hhJ{��o�]&��8�u�TJ��^��W�M��B� �{�C�*����,���Bf�ߕ|�O8�K�����~D�S$�Ӗ���� ��&�٬8��Y�����S�Q��q9�$P7 ��| �E��Y�ei$f�I�`;Xԛ�N �����U��|FH���y�n�TD�HĶ�H �����a���sȵ��;R>1d=�&���^"��씇fZ���྄�a��G���8zU���_����i�����K���I3Fu�������{4:?3�@k]0������M�|r^�Jᨃl�Ρ�6T_����V�E'A����%Ͳ�(g� Ԍ]?����R���(R�è��Ŭ�q�b'z�BX�f��as�~o-]Ӄt�Z+�1����}�%%��/!��\�D�q�V��,��'Il����U_���a�x�ϧ vhu�'C8ʡ�!z}M���y���m��WO�^��Wo�S����Sc��$we��W�����B��Rs;&�&�&b�煂ΰ-K�{-zSN&"�=F�>Y-��tO&8��p̝8Nj��J�fC�Q��A^Ym��'����u�t���A��,A�8��8ˮX��@о<��k����Pk��T�J��<[���5F��e�qݨkM�U���v�o,�ir��Io�o���q�����v,q�\ph�x��9�_J�! �bJܓ^���`k�]N�k꤇�"N�O���-,H��1Z�F8A�z�c�k~��l��ߩ��0��o�hH{H�T��Ya��� 2��QAgS�i� ��K�Uf�ӽ۹��ѡ���xYq�M�5�9S��q.�m����/)z!r'*��ne�9^����� ��;�����, 0!eσU`��>����g_|Lu��J�p{?��e!P�Ŋ�� ����e��cC���d�t� � ���|�5MX6�G�X�Il=$Ͱ[��:0����*k;j�;,�/k#;Z������1�1̭�xw�\>���t�'��m�OJJ ��;������d�(ҘD������ �!y�<<�H��jM�s�����<��e��-fh�n3ȩo�!e6� SNO��|��-�_���fm��Ӻ]'jq��8E�T�<�k�ޚ/,ŜN�L:N��1�u�얭�U��Y��w���d�������"2+v�p <�(,�#7Gw��՜hU@psg�ͤX ���i�X5��Lb�٬��]7����s����۳t�05��2P�!>}u�Q�u:�d���α�n�(#�~&a���̺���g֚[q�;dN-���R�n�%�k�]�t$���Z�H��� U�g���Va��Ʌ��J!ϖN�#Ծ�R!Z�'���������U)N��ݭ��M��> L� X'��E�z�h5��!��Yz�H`��~f�[���a[�٬�xࡨ% ������$�Ő`�\���r�j��ݸ�m'�Qdž�{��EG���Q�X��*%�S)7ӽδw%bkI�0t߀��/O*Z�F�cP��"�U�W~M�v�aEЋt}N���,��z���%��'Q)*�LC]�{���=p�:��X����9§��zx<s{�.� f�� Z�a�8�!SY�O5g0����f��z?l���E��{'N'��ۋ�c�n�x`��&P�:\<Y��++8���X���bI\�U�Ҟ/*ϼTA�U:� y�]w�������H�3� V���Q�0 Ȝ�j�d*�5D�ӗK��m�(x;����c�{�|��V�ֺ�����A�f����WB���d��{���*���_R��eJ��m�!@���p���|�8 [��qTn�U�4���v٤�%)U��l4N6����B-���=�^�g_��X�_�.'z������Ky�5��W!Em�'�=�Y�gA���(Rѥa ���ɶŝ��G�Le���]U$s2�?_Z���e��@�5;S!�f�`k&鯸�e�<ꌿ,��$��M<�3%n�H�Q�H#�+�q����<�b��*�U��^� ���G����Ԡ'�6�%�N�/EI�:@xN����_+ ��8�w���|CEk� �Q/_e���DA�F���Uf�e�g�2c�jQ���L ݣ���S��:P.�Ӝ��J�>*L����ɤ=1�ߛF)YYK�����Ć8#a���1r�$CDM����J�Q�06��T�?7�{cl@��:p¤3S������hVy0@�8�|�\�T�Ѹ��F�Ƹ��Rj�@�C(�*Ӝ\����f:�(n�˸ J��M�ئ^+�DL�h2 m� �#}��}x8Ox�J���h۰'��B�2#��Qqi�-��%)9P3ڢ� ��s��<�>����ѵӧ3}�%hތ��ą�=/s$�kF��{>>��I@q=R� lo�MՒߩ�'� �7 00_<�ýh8���6��C���3p�O#��9�A���p�� d���P�y���pu��\�� ���&P�]�i�)��E���3HW"g[��#���"�5�� q/#��8�&H�;�v[� g��N����f���y��`(��[�L�����-ߕņ��Ae^!��J�h�����Q-Ls�A�/�����l]2T�� &dd���e�_� �ߩ�*y/�b�x_������V�9IG�ߣU�"�cX�l�%*�3fb��e��\�a;bݡ�^J�ԧ�B4�����o�C�yz��p���{�VS�5��$�f�|Jڞ�u�C1���<>��I�H�,��kC��:���ݣz+�-�����t�V�3-�R �\�E�����v;&xk;pK~��2yF�& KUV�)��8}���)���xZ��2��p$�Ž�h��i9��u�W_r�ƭ�r�Y���X �3�I���/���B���qO���{��/���B}��:vy!h[��g��A,�]�J������l캓�Z�_c)�: X�qݖȭ�ts��5"8x��,��>��&�աx�.���孺�:�7��]� 46�Ϭ(M�0���T�,kٰ J�,��V�OJQ +�rm'�Ӣ ���q��=�������\k�z�9��^@�p����YF�B�v`9����^�b�U��v@,Yr-�+���C�`�SdC�?#[��Т�֪�)œ�tF�|���z�%�>-G������@F����#�*mM:m\�Y���#k"�ҽ�3��/�5;Hg�B~;/@�t��@��ahy6�.�;(V��o��BK�OV����#y��9E�6���J?��b�����EK\yyqF�ٻ�9/� 뙀�N%�F�/�Ru�X��ʺ�<��n(��Ѳ��K5�y1�®^Bɚ^Wj#��7عA�g�,�fH���H^�3b��k=/aTԁ"s�נ�d���>�Y��j�uX(�|e^l�_���ߕ�0I����(ͩ�m�c$c���Z�#�4���?�hm�T�:���#ѷ.�Fh�N9Ja��\fk&V-�X 3���A���7�"�<��Eg a���̵ U��0\E3W:���_�w����{��/�����<n��*��td��J���#���V�0��@ v(��]����<I��k������B�܀|/�'5��ǥV�r�L����lC(��v g>�Bg��ԴP��V��#��5�=/�ߦ���{�Xbep��s�� 99"�R k��xČ3C������a��E�(#�lJ_S�Ɓ#�dKԁ���%dRdtV�ԹH?��n��Q�r�˄�վ�5��QC)�Ө�����.�p�e;RA@b��`Yal��B1���A�>ב���>�mu^Ļ�&Tϕy�O���L�85���jL9���t��E�������z�� N�F�j�A�LW��9�W��>����UüQcS�u:��ꃳ��� ����ޟ<zm�eM���77N�cyJ��<��bç�Y�lb�lz*��T`h�|l7�(�`��.�ٖ���Fc���=&�ǣ:��|���k�-�㑡K^�/����G8��ƙ�Ǫ�U��c*�E���:Mr _��f���<W�;4����m2�U�L��f:ˠ���⅘uҁ �����C"��U�~�Y�GPM�m�8��~-��/�~����7�Sc8��8r�#�����ų n�n�G���ޭ@d{���豏묁y��U�!�'�@�-����ſp�!� ��1��������wj����܊#O��m%��F�l�͈�0���5tF�<��lV�h�y�㲳(]/r�D5�K���"�-��^.(S�NL���2�J����hl�x���QR �h����^Z#Q~˯zP��j*�X�Z���v��~<�c ��ҁZ�]l��9��7� �var��H_F�*��y'�j��r�3��m��!z�O ���S�/���5l��k��i��p���i�����[)6���-C!�̱������>@���l @�5l|���_�Y4E"z��c��_�>�^�{W�Kp������7 ��Az��=�'/ %�����K�8�\����K핓�h�� @z � ��⢸�1��NI �cmhF��L_n"9�hR]��zp�d�|�3�8>p�**Zr�.� *=�����u,�����2z�Z��D����V�Oj�ҲD���ʽ_�]����<^���τ��|�������^y���r0c����σ�:v�N���wD������5r����Yk�3l��YA�3ԍ#���g#��8�$n�}�,�f��&-�21: g�[$��v �^��=�P�L�sv���5m3YG�e�Vc��,Zwμ��:9{���'�/-��6�s,:��}F��)-���TC�9���t��R��tD�K�(^�TC,�t� ��bQ���p�O��}.&)Y<s�%a�嚍��*�(ɝ)/�a�0pj/����S|���|�^=cΧ�}R��k� f��c�^ 0F�I�x���u���v� �� q=w� ��X`/'�_$Q��bX���َ��MQ��,m�R�_a�X��Ҥ�&��X�'s�T�M6��p�Y�N2�ԎϚ ��\@�}�����j�ԟo�q+oFR����U�)1}`�������Dˆ�k?!ޱ#f�n��1�>Y��q��� o�3q�+�L\��M�d>R"�l�����ܔ5!_�Dk�,��=��H��~K��ljK�D��&����ۥ9��Ǫ��g�N����MH�5&�fi��#���N�z��-�O��~�DhČ��-q��=ݷ�k���I�@� ��r�jgs�^��C�q�*�>�1���Nִ� Gp֩��Q�cN�c��H�G�m���[�]\�һGʟ����/;� �s������>T��8k�ŧxOt�36-u���}�a��?L"�無T#z�ߨ�ńԷv���"[o��W��� �u{\Nj�e<��\U�hWR���ǫ�����kR�"��9��z_�uϪB~I�*�-�F��!����q�d O������0�be9Q���GD=ސ�_-6��;���ܬ�^D c����{�k�����.�hwtk�;�E�!Q����3����/S�+�w,;j�0>�i��h_M*��?�4�~�pbq�/ݱ"u�4�=�8������j��$j�Fiy65�ܚ�J �(��L �m8����߆W.�|#�����Ecj",���&�ـn�8�߉ ����.M*�G�i�:"�Dm|^"p��>L����9�����v<IiV��FY%o�p�5��H���[��,������4��g`[:p7��l �'��t�J5Y#�5���n5-(�h5�w�D��d��m����ۥ�n 5Lie���\WuG6PR_ ��g��f���2\��ƛ�D��������Z�ԎnpQ��`�e�V1��#�.R��# �j�CY��!�O¶~mO�\�"���*Tja/���G�k���Pŀiá:,�����*ӿ~ٕo��r<\�B�.�3��x�aԚ���v:��ߘ I ��i~�E���lk� -��z- �X!�k����i�W��hO��J��v��Z��lv�ya<��M�yd���n�Z���-�arg�� �˲$��'\�~N���?iy��K ���7]���Q�`~��M��&�sU�� �n��PΏ��Rg�Y|�����x�js�(�ɦ�{�i�|c��!g� �����M�b'���'�v�8�"o��F�c'�$m�K�#�}�4�]��n��3d���>��3��N8*Sa�l�H�{��N[)g����O����ܖE[.!L�f<>��l��Ys��]�婞U����˹��U�+�/ ��=���I��a ���)����V7G������W��&^M�a��=�5�O�/fg=�Z?(A�!eV@=~��w}U}" ��>�Y�Aצ�����:)_�;#.D-��`�� �ao�8�X�;� ���5�$\{$�Kz��^a �^O@�2:���Û�� U�M-�{�\�,��V�� ��9�p��kx�c�S�\��{�5��xΐ ��`aR�^d��yŧ��楙Ƕ�R�0�Q�>K��8�R�4�����!M&?�s܀K�0����LK��L1��p �'s#��iۂT= �=#��ڵ��R�x���۶��U�s�ʖ1�6B��?�Z��6�ʊ!�rFk���}Dj�JT�(�Ǐi�����o�l�I/ns�ɮo��t�s���j���e�?��Fj�����Y����J���R!w�5I�N�|�%d�E��} �u�Z >��&�����~ i���<#P+! ����Kl2�hF��-V�N������������")�ʼn���}���5}�$��������}J6b~�)ه3�Dž��g�4�x(��q�䠬4���`�-�ޣ���$$=�$�{�<A�0i�#�����ㆱ��&)�m�[Rx�|�4q�Qz�d�}�s$���,��}�X���|'US�P��m�w/\ܰS�h��|���eĊBbdA]1X�v>��{im<��ZW�6ԇ��=�~N=3�a��j]�sR@A�*�����/u<`�ݒc�LS�l��'�B����?�=��=�#bl�A����JQ��eݙ<���~-�{�u�w1��,��)%��o�R�g��m��~�Ȟ�}̌t��Ih>:���3א!��7��Йn�}�I�x m%�[#*շ�cC]�k�����? ��6�Y��hn��l��fI1 �t��`���d8��C�]��T^8gŷ�ڒ�R�ڗ�����z�����xy�Ӫx�1�1S����:D-%�g��(������΅����}>< ˺~�@�3`�i�s�U�x�z�B�T]�L�1�f�-�Pt1�M��\�.�صg��W��t����:\�J���v@��"�(���=?��/�����y��D��f�|�<�p)$�$�W��x�ev�LB�&c�����z�Lʠ���=��5�~��~�Y��~lӈ��3 ���k��,�(��g��;���bɟ1���GN� ��i�ڨ`~-�a�@���l�mTF3$6'�h`]��Q��'Vxda� �*��ث������A:P�0�ܢDE��GWJ��O�t�y��lhRܟ�"=�I��γNJ��)�6��Dig��d��$�7���M���������19/ŁP�{�dNwR�y�WL�.p�+���6;p�&�n%��ˠ�I��˗��{�d��ElN����&�����_N1�(bI��jy�Y����4پ���Hʧ�h����[̽�o��L(Q=���P^#��[U���O�U�9'%:)� F'�֙^Z� ���Z5�b �g�jv>q��!�r���||��%:�8k�ߒ�O�1�1e��M�@��KQ�"�#���-����t�y�W��P]N��l��?���*�v{�@�k�\��r�Xzf���j��gAy���L�dF�Y���t%�ऄ�>,S����X����͒]����`tM�Y/�5W#;����7$���_X=�B�{�F8�0��*{Sy���i!3a^�_[x�NK�0 �"|;�j�a��wGe �cQ���zw�պW/�}�펯����ŵ�ٷ�S�m#'ײ��<��bϤ$����x8O������4�W�`�D�x�"@�y�'�J�?"�ܯ� Z�I�O!��*��P�uiW��k(�c�AR��4����a�6���&����v��a�F�:��̅��G��D�q�lD����7�Uj�1�f�� �ι�~Fhc��BGY�d�"���tϦ�QTgkt:Ṉ�d�R��x��+G9� �.� ���l���`�2���"�Q �� U�A۰ØRT�G�{A�i��4�$x��i =�K�>���K�m�~fY��<٭r%N��Q-��s9,���p�^k�_�*d1{I�^� @�`�ι�ɵ!<�x6��MW�����y5l�tE�� A��&0-�y8p�e�z�x��� �@�P�qlz�B�{��Y�3�/���M!�ZH� G� ���� /kD�#9����0�32>!�D��2hN�M�+ ��,�z�'r��Ϡ��S�堫��=zv�f#�¡~.]RkW�^�O�j!���Ӛ���l��͐������_�gEM�ES�w1�F}�4''�5�A��y�M<��8���r6��K�)D�bЈodo����_�$��c��BL������ �_ ߈�k� 5.C��X��O g�ܱL�I�F��i�ڡ$,=���ֿ�Sv��ɼ���x>q�ql�K�K�� DHV�\,���.���>k�V�K��j�K%a�v�;[�@��r��$�.h8��r�e9>�=ۥ�e5`�p������r�`���*�2F���G�X�Zw;_�2���0:ZI�S�ʟ�Y�:A�,p �)"C���Om�[q�d�S���ֱ�����`�'��� ^�*w��� � ��<N���� ��;�Ѵ���-[��2��d&Ś�i]� �� '��#�֓S�z���2�� �SA��Z_�\xR����r}��� �UceN�6����dejR6�� �5i_P�������.�vJ3:|�� �Al�#�s�:������.(��6����D�����O7�[$@�,D���v\���R����V�J7:���˾�Á��I�<�g��4ą�@���-�/�j�4�@)�!�"�H~�OO� �N���./�k�1d"0K��m���Ҭ�F1c�|�W�>��i�S0�Ɍd��ϡ���O]���{�>=/ ����ys������~��S��E�̯�Z S9��;ڒ�,�{I�/^��L�� �{�q��2:B��~{��l�v*����g�ji�/ �#�u,0ma;Vpaq��k*����J��Pܐ0�H�q<@�,��Rp�<�u�I,y4�ty�kC����ǫJ�#�z�+�D���{!烰 �I2�Y3�,B����g�@NXF"?�N鍡L@�m�ۑ�v2*��-����}���C�����Z!6�!�^���*F�"3��4�4� t,�4 d~xX�d.^�� ��P�Q�� <��#f �찑("Y� �r���Z�U����� �k&Dt� C�k(#����w�<--��9��Rqc��j��N����Nfm���ǧ7y&v�m�ұȋ��Ā2oֵkm�@Jҹ+�[��z��*�y-��IIu/0b���ύbQ2�d�7K��6�/AzU&u=�f�_w`��pv�i�F''�$E� 8�V�z&m�y�VL4h�E;`�k��mȮ-�W�ֈ�;���w:��H�頪�Y�[V�Vr�W�*�kpd7�h�&���?7˗DNv��<�1��B4Kf�B��e��L�q���"�Ϙ�����elU����-im���wbPjv�KJ1�f���O&iC̘3���\e��iC��TF~�-�"�0���&b����|yw-���:m�n��b��f[H빖�&�y���M�t�CŃ`.�n�ȧ�g3��v���:����*zc�f����)q�Wݭ�#��&`�n���5���*�~�?+Va�f�Gw>�Mo~@g�p;�#�Q_��E˕�xl��Ν��-��f��@>N��w���)�5u��*-�L�W�� 0��4f�q���_��+���=Z�����yN��7^����$�q&pY�@��6�{���ώ3�����p�8l�L��|y?�� 2�=r�"��ꕊ�K��ր���LΉCb�����Z�5�,�I�`���,_�+("���k����C�����pw!�Nj%a�w�dNww��/��pK�'�����˩�w�e��1x�x>�����>ݣ.�Y���N��P���#e�<���jĶ./ T�ʁ髞6�hI��fN��`Ú�D{י�@�KBGJ��Adž���2NH��م�ɚ��Z�C��m�`�E�`��{4���%�u�/n���9�g��w5���!�Жt���"�[����1! t:��~Ad� �so�ܕ�(Ŏb���w�m&���,�ob7�Y�u������eu5N�"��qWl�1�vG3�7��C��n�0�0��m/H�/E�|oB�0�n&���t ���͆ 2�W��D�#����<�k����Όd�)"��p\"]���s��1��uJ�vz�7>Z�H�s��,��0ngd��}���A����r�|�/Dv���u���Upo�[�@z�s�xD��B~1m�םLWg�7�H��m-J�z!���de��r�\�w<iXo�;�6(6��z�(��ƛE�Sf�D`شQ��h��UX���Sՠ [��m�i&�'ĸ�Π���o�f���& �@�{�br�:��"3>���yoR��w~��LT�X��oԓƧ�Y��V�����W<<UDy��`z�D�Bы�3�F���G'xR@m��-˳�0 �No����Y��\(b]�j ��-<Y%���p$�����y�19�,�|.I�9"��r~�ݜ�SO)�ۖV�G��c��n_Ņ�� ����d?@�5M;�1�ʄ�0�^к����� 팃�h�/����TL!�} �����%��� a�ߨb�H~d��r������o�k �ΐZA��D�'�Ij!�"�F����6�H� ��g��%R��8V�&'(狯�hIt}�z��y?WCI�i�nY4ig�Ib�� �3�� ��;[�7L�k71��-��\w;�淿]l0&��� @!/��G�� � J�R}|FᅽL�W�N6�_�;�-�Z1B�}��}��4�`ި�ͻ�Z�% .�K�a�6�Ł�L����7���8B��%`,t�.�D�-�i�j�� �1�s;zFvBb� � )Nr�qқ1����;����5�j!ڕ���}M.�hv��*�x����ș�R� x-h(����yI�)h��j���w�Ư�y3����=4v��T� =͊�����lf����_Y+��VUR�r������r�$����4��g��&p��a�c����C�g[Bc�?d��Ho�FROPw��zJ��C T��2�t��dÛ4��n"�0�B�1E�y��X�t���V]D+�d!�w�el�e�E�DŽ���]Ј����{)��Yh�Em�ck�JRR�g��ߦ<K"�dfҷ�m�h���_Y���.I��3��vd��@�ӥ�ܭ.����L��\�=.Nd��zQ ��UE�ȳ��w�s5�H���M�7`����i�K �H��=�U�p!���g��Z�@F���ѹ �Z�y>��6\Ѩ���6�0��R��<ia+�p̏��+���hQ�g��<�i��T�esfi+|��*�c�Z�&)�2��|+��VI#3+��2�I����l<��TO�3j4�=v\�N�4�66�$�\��y�e3@��e9�@|�V�hꀾ�����ڮ)R4>s -쌠�$�a�@Zo�ԋ_:�0�����Jh>�i�-F�jA��z*o�n{'��4]D�gC�x첄�Ü�����߫��ױ ��T��'}��{��+�.�㫃FԡQ9խG��{�����Q�w��_.n�Sx �+�F/Q��S9��qD+����_����[7c�F�����F�b���:��m�skth��-��Cz �S�k�H�q�1���ΜC����}#�l=Gi7L_T�����M�����+~�?Rۗ ���\xD�7m��@܄�S9v��E��>�~6��8f�H�v��s�t=�X�=����3��`�-��Xӯ6�R߰�۸7��hUǣQ\|���Sn4�8~$Gh�� %�h�u��Yix�^�e��)�!��_v��r�"��l�$�-u���7V.�g�B�c���2be]�:����Df�������;�s���Ϡ&�]^+��j�gq;-5AY�(8�.E��Z�����g�#�o�����0�a���@;�K�M���т��oY���1 �&��~z��=h|38�����Խ�5��18�|^�v=�Z��U�{s������*#Sik ��C-�Ä����s�A�)��?Jl?���@���[ȟ@�'_���O/gۈ����#�R>�'.}�m�#�9�Z%:,<�y��]Ze�+�ʾ3�s�9t�]�^�pO�-r���a}����&���BAxġ =$5#~��o���5τw1<劧���K�c��/�� l��9�b��zPAɍ�lZ��+.��<^OD�;��/ksW�KY��u��+���<E�Z3�|z�U�!Ά�P;� p�.ԏ���<��`���_7�ðݼ&�x4V��ڤݘ�ߜ�y3Y�#0��C1o��ڳSR=I�@����X�w +��"�\F��8� ���d3�pP\����� �Ǘ�IZq���C�#�`t��7N��������|'�̉Q�Ew��^�#��u<3�_�fg6���Trs�Q��)R���ђ�Xl{o����Z�![���1�?a�8�fco'�\��m/!�+��)l���\"�d�������vHX|!f���S$]�Qkɝ]���:D�r �/Ę����T%�~gqǠ�J�ζf�?��]j~Lld��n]���*��W�FV�⾨*쮳�k� _KS���Ѓ:= (몤M�j�Y{[��k������������"oFC=���D��w����]D���>�R#ۯ�m�i�W)�b�17��9�t���8I4��,v��QN)aCy�MU���D/��b 7p6&��y�]�� � 㢈&�I�[�ݢ@�_&G��@�O�+>.2�#�:H �����EDQ��:1�ཡא�rD:q�=��?z_�_V���$�1c-�Lmε���ٱ�"C1�DJ8�/:*\��j��Ϩ+9�?Ď�8��ND����ۼ_'��Kphw9��}���(�zXn�^�דt�^@3n�\���܁N��d�Z��O`�%��ӽ?c�N/�iM0#�턆z�u|э��":b�\���gD��N�O�Q�v4�;Ё�˸uƎ�ؒ�Yސ͆�~M�_>d"�D!�����(z��٦��LѓH̿I�GکOe.XmjMX�y/��4��m4�Ni(.XA�&���l�<�7ܾ��S���W���D�����k-uK�����G��Ÿ��⪫�HDՔE!,9�9����cy;`'v)��O�ihx�&�U��r?��(�Z۶/���S KyJ0�Ǜ���}�jc"�cc�]��7�+����v��d�� r���Ղ��;G ܿB��s��K]@�) 7B��2i.L�d�<.~Z[�2ɖP��3W��&{�F㯰�'!�P|3���h�g_����@i]f����@[��4�~EQ���6)�M�n��YWZ�X�����r��WN6��J��>�N3v�|z:�n��-ވd��V����up�Wn��B�]~^�#�d^��܉?�vw$]�?�{���d�pf+��ޑ|�Q{N�����F�5�^��!������ k�����ǧe�pb��� �! c(<���������5x�a��I��«n��\��<���������O��vJx�6�/���=�]>�|��_M9qH���v ��uW{�q��Y�=w:Tp�Ǖ3N|~��[ݻd�Y�`Û{�T`hhǃ8<9MǓ!<�����xa��a�ޗ8� �(��I�C��4��y����KC)�c�6�6����Ur��G C��o%8�Lظ�����~��`|)'�̶��S�uw.#g�,�A�bYsHgІb�0'�*NcA�Pw���<���QZ�U����Z�Lސ �n4���ӛC�dq~�H�RB��/��j~�ą��d�(C�qF��G��U�{!EB��fx����Y�S�91� ���%h�cv<lh��Ub�mk�0�@t��i�|�1m%]8P*��}S�-f%�_�H�8��/m�����>�]:-6�ÉMc��19͏˱��iǩe��������t���lu ��w���`�"�W؏ƏE��bq鉴�M��c._UHJ��"�X�d)5��"��)x]�<N[�F�U�{Y�j��������C귊�k��eI�7�QS#���ڜ������DfB/T��_"NI����� �h�Z�`�p��,�?�w�U��R9}�Vٺ��[j�㼼���3T G�Ȼ<9�����=y����O���/�Pdv@�|�o&�~��:�O�d�t�f�fa�4�pI_zv�v�SQ%�1�XW#l�N_���}m��p~��@����b�+���1y��5�4�}������H�rN9�3+���`g���>0Ҍ����}����Q;�ɓ��Ѝx����C�E���K������ր���-��J*��CM��pAP��3S�ς�Y/�m�Ih�E�q�u8��3�\��lV}�I(t��7�@�H�/h �����+�JdM�@���U1��}K�u��<bM��?a���D��H���G�i�S�$z�KXʪ|�Pħ����"��yv�zLڰ��y^�ޟ Y8@{ )��Z���a,�8�t�������w��yX��ӥ�izx�����p��������d��[ ��O���{h_t���U�r�� Em%�zn/O��v!ozt�n__�`e���I�G��[y1�8�Z"��uDp�3]갶�i�E�~��-w�N��\��J/�t� ]�2��j��G��ʧ�Y/2G��L�.|U>AQ\�n��&+�hZLq#f�R��iCZ���P��ᯯ��p^�sT�2���),��w���ig��h��Z2ʇ�-G�d)`*�0�.���Ter�y��G���� '�37M sH��g���O=�k�z�����p��_���z��?Y�'��]��î��H�� XF\ѫCXUV�s�a�<�~ޭ&t9�d�vÊ�[)��<J�:�X0�'�G����'�B�k�?"J,ϯdK?z����^�aϕli���u��Uȷ�H�Ɯ^��1�3�\Z_���S8��K���sV ��M��!�Lx����]��U&����=�>����5M�1&}�*�_!�~�Jǀ����WV3��ڱ;�bH�Ю�H��,[q+d��O]�j�9'���oy�R�I�/���*(1� }umy�g&WN�� �Z��].g���E_��W픜fH·�>�ܸ��4��|+��"91��쐆���%�:%�o/G"6�%yx�R5Q�1��O�Rb)F1��H�ђ���i����0��d���&�K��/YR���-D���#Bf�f1���Y�`�7��Xz��5� h_��]��+>X�:�A�dz��L�yɞp�y�AT�qF�2��G Hr����.%�`O��rx��T4냽�"(8��Ay�D�8}N+�L�'�}X�&�^ݴ������T����j/A0��NFqBK�!{�&@]I���lv��>)��kɺ�n_D�%t�+B2s�9�2���!8�T�r����g9������M�۪�9�f����Ef*$!Mr/*^��u��lx�����4��}���x�^"�����4jh�2Y@���~|����*���̈́e���N�N<��'�m�K���!�m/;�c��U���dܴ2G?�NJ��#����˵�$Tţ�.��=���sTo�Y�d�s��*�f\����!*��>�-h��g�î^��>�:O����}c�1%#bv��Ǖ�.��R,J|jP� �4�*̽&�B%#N�ر�s���2 {eN��ō�Q��:o���pc��M��@.�[h���Sr��]�Rï�'�J�'n�)��2��f|����Tkޤ �\�S����mf���W���[��hDK2GX��ʢ�$���A���(�� �4o��M��Y����A)Q�G���;{�翺���66Q:�G�k,�� ��{�\��y������H�D˗��!�Ȃ�c��T��[/��>�ϯ^Sy�¿� �ѾBy�N,p5� ,�[�v��F�N���o��rҗ�Nh8��8�nz���[=���}`M�d{�[�5�_@���w��!<6 7��|�D��2@ΔUޭ/����1�8�f��9+�}2�� �-)yGZ��뷭jQ��\�o��7c�_�����vZL���H֜@�� ��]G�`*�/J2����`�7(MԚ0 �o��>W��-a��*F �ߞLKkp7�4����R߀�̹9�/�cMk�ܺ��3���+�ӹ�:u-�^ �������nխkC�u��D�H�X�MBO�f��������>�?5��\Y��Z)��kQ�`���4�<)`�=%�}N���`$F �)^$%5{D�œ� �-*������#v#�j-{- �ߑ -0�J��р��{��!�ڴ��;�rq�\fc�J�0Up���(]1H��h:3aZD���F�y���R¿W8���9y༚= r��D�H�O�GmK�3���2���[ᅸ�@,�z�d�Ơ��;'F�s�0���S�6@��j�(��T���#�Jl$���.��Y���u���[B���ZP*8�d�]��G���D~����%|�(.�2@N>3RZ���@h-U� ��v� ��t�0�Fᝋt A´.g٬�<$�q��Y��$��)_��V��O[��9��<$�tn��n)Y�==����T|�1"�����E�7�5�\�J�z�:E�om����3��1D���\� �����8���G;�;雿�c�@p�jə�Lmt95"���9k��/�0l�J3�i�X����l^C��jOT���$^97b��y����Q-��6�q�[�aW�.���)�"H���i��^��Q�{�����6�Jܒ���!l.WN|��R@���A��s �?dE�뵕�PB>p{l#N;��d KΛ"�9�LdS���K���r�S�1{s��F�;�uz:�MN��Db��f,�gU�~���B�H���B�rv��r@̈X���-������4�p ֟�%��|�,�;��cM�<���e#�=�<`�o�����#�h�H,��s��`c\�&m�j�3� ���(w�!BuXc��*��gA�����B�5ܠų��-@�rݻ�Q�-6S���k�c�D� 9�q{�]݈�@Vi��Ϙ9�= :[9��K/P��I����ԇi�&�҉�-�R���OH=����Y���K�J�-��>.�}@�!]�9��/��r�"�2��C���^y(7�d��?`��UQ�L/3��Z�:XQ��V3�0��� ��b2CJj��,�f(X�eQ��]���=$�q�;�a�3�o"���'UD�KiVP��t����c�ʆ�w�ƕ��Z�{� ��Ģ��h���T����q��=��~Ƃ��P����Z��Lh����w>��F��ٴ���m��A��`]5��t&���#?�XՊ��m��Ք��x��_�B��m��G8�ڦؓ㬢�yj5��A �ޗ�C���|]�>9F�e��y�B�� 5ً�Z��UGI娬%��0[* �\�t�D�W�ozA7'��U(> a���h(�r��v'/�Y��ؓ�3]����T��v7Ѯ� �2�lMt/頽�ZJ��a|�xv�YH�,����g�U�%*��4��B[� �|O��Grρ��8��`����k�h4�m�9)06�՟��A�5�t�R��2�a����?���h=�}��<�۽�ؔ�c�D�(� �z�ln����m���oO���4�za���:P�ݷ�jլ}Ge �)b�"�V�6Z:�� ���ok��L5q��߹%�2�|Ra�%&|��KiS)�T�|���P�C��V�xcp�{Ё!^��k:�;�x�SP���c�8�bu3���)VX}1�w`1�'G����O�B��[�w��fF,�>l�H�_y��Ɇ�iN!�0�y~9�Bȉ,�0K`�"�ں8��y*� <@��`.�E3� �A�A��������>�T�Io8�<�\@��lf���f�N��i.�Ov�"�N�5�B�&q5�)q�7bl,V�M�5;@vg���|�W��[��"���W�� [q�ѿ>e^GC��3���-����I���!�I���I4�h���Sc�:���J/��gg���ң�k�ɋ{�� �y)���j�z�BS=�=�n��&{�g2!҉���c�$��t�l�aI����r�kw:))�$&}�l9/���Ss-�h �ó�g����G���4�����;�*Y�[��+�a�^��|ۓ�G"Z�r�´��8��a�a3�{8�^9@�$"�!��Γ"Ƀ���Ǵ���]��43wF+��ܷm ��l���"��j5}��R�S'!��HRʛ��1��ܠ�$=PM\ ��� @,{��R�w� .o�1A�HRvi��Y�[Q�}�>>�X�>>,�z������-{���T�,_�1�sv�ڥG�s�!�؋��N���E��)BW1�eM�?��D{性f� d�tG�| �E o��3̸��%��wlx��������n ��ȫ���+�q��I# 2=tr���� *)o'ד�z� :tN��Hb�X6���rM*\?�O�I�*��IU�P�d!;��d�?�B��Y���`cw�n.�I@���l���V�9��ajgƧ���MT�� �/�� &���B�"�d���Ԝ�!�9M�g���:W��#�~ ����#�����V��N^S��Ec���Կ�:TG�+�Fe���A�J�u�ቁ�]�އr��6�������=�W��E䅸�/ �f�P�&�jE�)�QW�dm�f��xL&���l������ẠV*��W�����FW�V�uc�t!��zGWj$,NR�$�P��9���5 �u%TiՏ��g$YPF�^6�z���|˃͐w3�#��S2�� �(s%�_��^�&��X���S�<�lf|=�cP]d��ܚ(��A2,ՄU`@�1�̞�0NYҝ��\y8�~���|����9#Yr��B�0|R� �1zCi �d(IeZ&˃ i���϶j��l[�H�낞��/��ڍCۙ��Dp���n��iA�MZ1MMCT����~,�.)���ہ�Iz��e�f7�g<���ӌ��y(9Hz�F߆z7䈅���Yz6�a�7I=<fU����GcQ�<�W)��^��rf��N���1̕�F�}lW5��O��g�<����h^�c��[Q�5���=u/D�-��Qp�0��V3��U���"^.��9X���v��]����%-DLV�W�C6��ڼ�q��B큆�.��ٯvI��U@O��c�{�U�t ,���2�3ATu�[���隃�m���2�� ��{4uy�#�����Sx\�Gy< �v��r63������Fx�{��do��W�G�^��f��s�P�K�+:�&/��y���K9��v��J�=�(sT��蜚�0��WI�rI�Y��۬2Gl���Pʯ8��+�z#F�w�Ê�4Y����뵨e<8 �E�ϧ�.�~�ry��B��j�(��F��8S2*�j��4��*ِ��$�����3k]Xd7����)S�CO�غ�L$ۣ�ڥ+�v�e�뱠�!XfX�@���'B*1E�Q*�)��J�m�`J�ۆ��H9�,>7�8r��S���5��ī� �;���L����PavZ4� A�b��T���W d�����M�q��ج㽹wb �T]����L,�<���-�^[~��V��pT��8��(����%7�y�-&�:i0�J�[a{�V�0yY����Fx�/���u)X� M&%�V���w�I�{��ی�@��{����d�\1�Ȱ��%[��S昑��l@�G�ْ��r_P�.[��S2�{��\5(�7˩UAO���S�53���)<y`,RO��z��Ĕ��Qp��C{@��zT�����Mw)�]���[ g�gK������Ð���Ӈ:JK ����Z�u���V�#�9YK�e��#��s?5 �z���Y�Ɏ���ʪ[9L�k�����n!��y%2�����O�$�y[w��_���G�NՆE�aZ*7�c��r�ʽ�����UhS��ǢH�<�R�ͱ�=�QIƶ_���/R�,��i��LI� �PO3ϔjs߱���J��*ctjO�����L���}9�fꐭs6m- .��ް�-Y�6��������tc�F�cLd��������_.�/�gyzą�cA[��[��2F�*NbJ�z�8��ВN�$\K�\?� ��Q�_�â�M>'ا�rύ��C�f:�(�BI��zv�"�q+�gL�� ؘ_�����[�}��*c,�8��[���ۨʡY����sV���(C��1>�IX4tM-�9"�#A�i����Լ8gt|��xC�W�rXc=����E�1��>��D4�¬��Tb Kj�� HWN� �B��%^�e����(Ң���4�x�6/ġ��*˗��j|���R/�6�;��z�k�Q`@ڋw%���WD��tҳ��ׯ��%Zs���S�LN `m�3F�FƧ�c�x�ί�X.�,�h�n��D�a��#��9��C�;t9���V���Q�����kȀ�h�63x�� �᠄/�����yq�9$��HRQB3�rbNFl� ܍&��"�_�mx����j�V��`���K��x������HY@�d�ץy�#�@V���0Uf�@�����в����g�d�+�o�7�_(n�T�+��یk����b(�����z�V�gKL��C8�S�d���p!��:p���E��.!N��)a,�v⃦%���V���|�_>��iG�J��<.�E4�td����y:t�1 ̺�w��i]��Ad���:n���Qыj�<Lr4S�PԌ��b�(io\1(� _HgUt���G�x���Q���}r��Y~ܫ����kq\��D�צ�C%�E�-3����6��D(n���@��K �#�t�䔒bG[^d�F*��ś0ՔvT|~�/�s�#�6\m� �4V�璧�O��@��B=At�X��ƌD ��ڜS�`�8��fb�Pe�Yq�@B��I����r������[�ٍ�PzQL�(x��l˅e�.As�0���;�;>u�{����|ͩU��$7p-�tJuL���"��I��� ����y �5�r5d�p�Od�e�ڊz��W�k� ��?�/�Ϙj���(̬�ƶ�����Y�m>�l~ D����19�O�m��[z�.�L��aːW��ա�Z`�@�s�����r�7B�AD����A��@�_�Q�(ظ��7cyƁ�s����&���,���0�:�$ay�~�L_s�-�V�_��|��u��I5� �@ل��˷9�9'��a՞�ۋj�T.�ˎI�&�cs8R� NtF�}DŽl�^R�k�eH�&+o�φي�mڡO�������7|G��"�Q��1��-�v�);qo�J�`GK{���k�U�BxP<V�ɶ"�9�?Jh�8�L���6\}M��n�@;XO��l�vk�Ѷ��Q %��xp���օ��YE[���@�/�P�K:4� �T�g~Jx: ��9���dCA<�8��d��ѽ+���y�NH�z^�7-b�)�jT샨4�{�z>Ts�k�Hau0k��<A��aPg��� �GY�j:��kv��Q| fH�����Cp.�dhn����ֻ*Vs� XZ�+���0*ĝ_��<��b��$�ss�~���[�ɚ���JCa2n����q���nV�� ��O��Z�O�~��J#� /��9I��\d��8���uj���zO��u�M����0�PA!o��#�ШQ��!d*S����~!���0^�Ô;���e���U.��r��acr���A���G ieư�ԙ|��ua���"yooW<�k��t�g;�d�[Wo�(B��j�o}-���)P�V�1B� Vt�K�/��|�)����%�W�g��Qu�O��4P��t3��Z�H�mbV.��+���������nw�:Ľ�~Կ� ��w��^��"!�8\���҅�L籕}��Ey��N-9�K��[{x�:�R�ڀ'�uW�wr(����e~�����*=n�2m�0��@i�����-Ei��$��W2�3x�/|�͛�I���B�t�rV}��z݆[:0��H�J'��*�js����I-_G��0t!���Zf�e�Ϳ{%��Su�,T��v��{�scG���"�'v���Y����P����;�H{�4W���cS4��Gh��D�(V<���E��:��^��5Kn���I���c��yD��4���g����l��"qO��l�":TWc;K�z;�+'�ݹ6�@�8�������`� !�uR����Bi$�qv#���ؿ����郶KL��sqz��<� ���L$�S4�фUj|��:nC����u�i�V�y\���?�|P�:4��� �NH��͇v����)��v5@�dމ�&?0�Wv�c=�GR������;���Y���-'^�@���f����l��" ��PI}1R@���W�t�@6Ӝ%�����˴cS0Vi�'-����_�Hԧ ]B%S��v��?>o� �]/�b*���,���[1 �X�R���" ��9ƵD��G�FJ�R��cAUq�i��s�j��k�g��uW�ı��`ƤW%k�z?��R��-�a���%��rd�<c�O�N�Mɴ�/���NC���B��/Z;�BQr����P��_��^�#L1����P�I5v�>7_���ǽ�C����' ����4!#q.�^�du���� ���C�&v6|]y�,(�h���Z�Xt���zXkm�Uj����I�����kk��w�G<v�Bs&�����i�s�N� =M�����pm�g��<��m9K[�W���n�^���A�(��3�� ׀h�Ne"l��~G�� �'ٽJL�u> ��)�)5�&/4�"M=�l���Ľ>����P����@̌{8o���+{�� x��as���)F�P�5Eˍ�Ni�Q y)|��&��EaN���D��q���+�}�k@���)|�>2E�i;�1��Qeg���ˮXklD��܄=��X>H,{p�B��c�rK��P���:|��S��*�2���P �s8�߄�;�f��n6~ �� zr��!�ӽ��|�a*��$�<2�I�ٽ�ј�cl�R���v�p�s��Y�����,��K5 'O����G���&�WK��TJ,�a�g��=F�E�0b#p���� T��ܣ>Z�4�=.L��Il���Q�Z����r��&��L���_,"��Ȉ�*q䫠"�h�]�r*��U�[Rn�O$Fڳt*3M�R~{�z���,��0`J(K�;�l�;~I�D���Z�q�7����F�E��n�lZ��g�� -"F.�����nK}�?��&�ۈ�������h��� �q���ì���xH��W+O��%�Q@�y�G��8o�#��ּfy�Y*7�����ʺ�����r����\OK�k�V��qB�Hl�OC�{���?�\V��� ��X��Z �Es�L��q2��5+�H��Y�|Na��XO"��?9~�����[c裄fH�g���1���� �MU[�?��K0�N(�����Jr�'�c ��n��!8"g��:���.�I�eR»��������,��0ӶB�EF��i��ʸ�f';����"��!F%R�UB��@�e7�"��:�b�ژ�A�uŚ�j��@q�P��ّ9tl��H��bL�u|�Ѿ(;�8��8(����KG�VHg'�hQ,26��-�d[�&���ɚ�K&z*uP�����0��rtv^#<CDB�=9�x�0b� 1RB��ܿNL�!��\�ި�vX�� J���o�>�j�{�J��}�e��H�5J �Y�| �@[��92� ���w��@*K2|�cJN��S�' �G�\g�c %�SP�疚�Cr��k�`1��.P�8��"�s��x��z��|C�p#5eđҭ�e��eG_4��cơ.�����_�gH�����m�>Ⱦ��Z%���P�©�^�!���+�v��7tY+��Z�D�uz��ϸI��|��@+.8��Ȥp���;�#D2�*������|�}�0��ѤS�O�3���lq�,�zwy5�.�q�?�'������>���/�p�O�&O5S��8��EV4c\�,�Ih#�<o3�T���w�$y8��ԋ�o��a�p$|j���M4g�4�U@��>y� 9�@�Ȟ^���I� (~8�xo��;p9���N�d�Q/" �X�f�@ q���z-�cD�fu˞�<�l֑9�1l��ٮ��2��7G�,�&$D�Q��WѸ�D](��#�P���5F��쏃g|��Ql �,zj�'v�Cҩ����� ��VXF숑�V(�X�h �)�gHe�kBHMb�h�z[�l4&���ܯ�,@)�77:�ê�BB{U�S����$��>(��>�l9��>��Q����1�@,��^ưw�r��5R�}�:e �~����c��0�C���k���rX�Y�� tψ0!B�K2�$�uC\�VE�|m��� `�̼#%�5k����@`�1���mO�mdɸ�%mhE�;��f�J����Xۛ��^����4F(b�q.�%� Q�����r �:{�ã���s$�*���t��CI�~l1�fȖ�GpB��><P�HX �P��3Gp���F��F6JDe_I2��e���ۮ����:Q��ڤ�"1qW�xArB�b��l��$v���ׂ|�u��iFc:R�,+�247$�4�Ͼp��y�TXk�2a�,4\=�q=)d����x��ԆU��4x��y!�u=���2�Q�5���{� �r�D��L*�>.?iw�P��3w�pYpV}����\1����*�T���`�~�Q�5�����ɬ�N˯�5�i�m2���]��.k�F8�M��i}=�=��B'�� 'G5ָ�j��lC�*��ze`�"d���\��N>W��k�E��}O�;ߨ#{��{нJ�퉾�٦9�?+.�Q; �c�s�)vY �P5�Ŏ#Nȧ��''5ty�Fϸ|Y�T���)���C�}C5I�K�lo�"��p�ر뇭,y�1b��F-P�)~�q��[1C)�(��.���jI�ᮟ�b�3Wdp�{�1�#�ؿ5茽����x3�L���D��Wȗ�&�5bT=6�4"�5c:E�"��"�Z9xq����s6%$N��W��Kf�5����� 6���\st����[�x����1s����Eq,],��Ia��J���9��Գ�N�^�ʠ�^A(�F�S ;���Y~���V`��S��j�wX�z�r�$xi��5j}�;�]�n���;4c��G@�{Z0�>xצ��EnY�\S�:�s�����\+���|�@��si>��a\��+�U8jr�)nA_��|�|��4پ�.�q��hM)ݕ��悮[�!`���,n�$ �ۋ�&B����wY�� ��"�mIM�'D���je�{��e�O�q�I��E�6D�{0�n��曤ȲO���g�-P�2����οo:>q�P���>�5��YA��+�@��]�]���,�ޯc̫3mR"���[4_�� ��:!)+�ߢ0b7�c�)���A(F�X��Qx|����kP� g`(�&P]�c�]sVpm�nj��'��8'���CF�9�n��ǥ��b���Zdj [$ �ygW��fM���I�zn�/���3�B?4�t�����Ж�&��p�/��:H&�Au���T���fe!�&̦ڮ�:��0��|��K��m�$���>z���;q��wʼnKBb��v�5�Ʃ^0��M�(�3D/|�k����ʝ>���M=z�V��.���8��zo��ȵ���i�=�6|�tα�#gO�t�W?՚�2�� X���k�e���\x���]H�$�����4.�zPd�ƕCZ���_�S��`Y����י�gA=~���_;m�ݧ���v�N�P� ��7��6x#el������Z��J���O�ӱ��B�ܬ� �� ���6>��'�E���7-�N��A��!Ca�$�w�Y]�7�۔z|R�d��}�֪�e�`�-�a�G�W�Z���b�/�n#!�+�:�e����!��>�t�DhO�X6�����z��« �6g��F��(O$�l�(Q���&�,[��#R�'�� .�1!�Y<|9�_=��E��qD���!rh����h��pW��_��� b�V�ۅRd�-��m��u�C>�)��(��J�Ą>,q��w�����#?:�{1\;d��<]�G��Hp�-��] �2�'X�(Gg��Z�*�պJ�yr��EHT#1(0?�T��J������/ ���Ip��f[��'K����p��9*��5��SS�E�AA�/:���zK(�{ۏ��M�,�a���\.�0P�>IT�|��/���}����Ul(���#��qr�@�8 _ �L�|��DZ8��Wյ�2u��`Ee�?�7�+Rj����@��<�Ee���6�4�#�>u�1���j ��K��%��;kת)�ͤ"��%Ӑ��<� ��<z���nW��2���=s�r�z�6��kW���D�P9:�[0�N;����(�i��Uug#�7;H���rx��/VR�4 a��6�lߕn}���g CI�����x���=�_4�[-��'�s[p� ��UBL�������O�p�1Hu+�Ѓ����%�ç �B��y9�(���k ~f�Q<�l��%�g�v�I�2���[�o��c��]��Bk�v�aB�$�\sj���x�N�{�#�f7�v5�c�}G.���VT�Yb�F^�d�Y�bl�J��������aŝ�m�uώX6wQl6�|�E��� �Y|A�LO���{#Ǵr�����d�7N�����|��bY�3{s�;)u}�C��%��x,0����:��N��B.��y�X��Oe0��#���z7��^IAS~P<��5�"f�yQ��v>��*߬��Y�3L�<)?�߮ �����K�a���̅� �-��/�e&�f��v��ޚ��m,�3!�@zJ�S,E|�&E�$d/�� ��.F���|Q� �y7�!�L�r&tN4zu�Ä(��$�7@��x�,l�P�1":�j57<�+*�6a�@J�DY3�T ��r�C�`*�0�<aҼd{dW:��B5?���amܪF�w�E_��:Qk>|��q,~�� �L�� )�=����Ӽ��T&T�4%����*��}6��!��UuxM��lMk�����/��$��3gw=�Gč��Yڃ�N�o�Q8�}����Y+?G�/* ��2�,���gnb�M.K����i�7\ Q��S�J��;�yd!l�ݶw��4���=(N)�V>��0x=S0��Yi�t�ㄼV8��b�eI��u��Y*@xj�m��V�Qt0�|U��5���{�DZ�a�I:�|�Sj�#�\� �h�*��%��iK[2HC���,_P%��}�j[�S���>�x⾬�t���0�@���y��$k0��bY'r(L��<B=W�_��#��T��.��,M�w�8г��,�w��(<sHgy�b7��+�K�=,:о�늖� YA���lZ�ѡ�~��ɧ��;��7l]�g�(#W���Y�����ΗR$پ��ߘ�9��/�w��O@�,��7��/�f�P �+VզX/�7�y�j+�"����?p�c�h����9�`!^P,ט���H(�I�3�F�+�A���[�j��$�ls�)�|�7ȕ{Ap^�����&��rK���̥�\Pb�O,(�ڿw�B��}����H��I�/�M�,�2H��{T�r���/�n�#��5=J>\aeX�JnjωFW���[��v~�'-j���1�r��|gY��X��\� H�$�/{U�Ήș�M\��j�)���S��?�2�!��D�1u{�p@�!>��N�ra�mm����O�����x�Ŵ|�8hH�M�[���E�Cy�!k���@2����e|yaS]C���!�Gfޘ�>z��n`�'7�$��s���kRAM���J�庎f�54�|֓�j�Y ���ً��ɪ���B��-lsg o^U29j"�uR�'��7��"�FV����Nas��w0��E�2"5�;��qΩ�{5-��Ab� X�d���̊����_�Ʀ!+;��#��O���c.� �R 21��O�u�My�vj~>Pnp|1�5pб�N�̶X�&�����듔n;Iz+?mR˚��fl�D�u-H�B&|�Z6"��?��7�-ǐ�+ >[�H����4��% �A���.��t4�X���=�bʁ��~�1&�@dxn0ͮ�Y����y6��}�ݰ�[�}Q ��q&R�O-�-9�#qq�Z�7���w|ڴ���~�+�QM����ό��+ʩqW��AWI3�V�w%��]��t\ȩ�`����ȋ=��8��Mti�f��$Cp�Hh�zߔ[A����S�k� q��B��o&�����sA�PW�qÎ,|/������;���V&�j���Rqò�])} @������&��N��� �"�.��vׯ����� �/���'�(��`YE�^m�(�`�<@�> �=�97���0DA�{�=6w�;���i�ze²z6�i��j��)���i�������P��mr^���i���TG �y�������k�6:h��K*^WaK��ꃙ��� �����H�~�ҥ��;�G��BkI1�c}��A��t������{?�V��g���˕^�v�6 ����΅�S2�W�aOӃ� G���Đ����f������S&�װu�|B�_��.H- ���0? �J�";\�6z�#�kr3xk8���+���D�D�ί�@�]���v�$ڣ�|C��������U�& ��-�X{��}��=k;�&X��HDbI*Nٴ�xDF)��r��#=j��fO�r��*ڰ�f�/��'I�L@��04g�fϩk3rs;G@���x8{��'�(��=� g�����=ns)�U(9O��P4�WCG|p�vF�&չFW�_}=(�( ��(c�x����:�� �$��9������j�^?�K�B��z�u�"��we�d�m1KdSo�p����l����gV�Vk�arh�?�(�WI�8�= �C��k�~�8�������f�Q�3:�h�ڣ��&:>�:���م��'�ڋ�z�Y o=R�.MlI���-jQ>HՉ7 h;D�]�rNvj�+Bz�( ��@�@����Q��ǻ��Rc�ϕ�z�C�W���i��?�O���r����<0Iٺw���g��0�ʝ�$Df�e&l�o�D�i�4A�O���{Q&Mak#���>�'q��,��0#��jv��k/���j����2�j��<���Q�Gz�� ���rFS��/��zuwhg���=`[))a��f��䗁�n��V�pZ�綻�e�$�SiTvtI��s�4#y�l 9~��n4]w'�N~%��8QW�7,�f�S� �b���eT��X�-L�H��m&�ډ�.��$F؞Kn��D�ώ7[0���q���rv��_7X�����>˲�q�(2���HM���,�U,��Y�ʓp�6�O��ڶ��T1��#̇5��*G�r~�(�7y���i�,:��\�:4�����Ʃq�6�:��<���!^�U�ݛ��c?ڳc �����~�C]0���dx z�I,>��!�/�U����5�����y� ��TsF�lA��˖���-�����& ��c��P�,U�5�X}�(��4fg�qRg5��:^M�+�Y�ڽ��NT�_E��D6N@H�_h�-������MO^� ������$��S�{���+�n*2�;��ԏ��1�wʈ��3 �ٍ���kc�zق�J� \����i���r��_J:8���&� !�X:\lD���Sp�����7���,������]P\x��2�U���+Ft6Q���2��"�aE�h�p��ݩY��S���$v!��r�v^�eMݣ�����:���o�w?;Q��H�e��Z�Ȁ�ym�&�-�S.��}WޤP�~���L蒰@:��L����iq�Ó*����갬"�ɫ��i���~�lM{�6W䜕�u���L�52��Dr��.�R/V�E����tP��YM�a-Z��O�p+��E�k�ʂ���d������x��,'}���$�ϦWOS��fMA���\����h}#0�J�N� B�A�Yd�lo-]�N �踾 f�LWu�=r ҵpg=#�;�CkX�wwlrj���("��o&xv�3�U��|�u7L<�ȥVvsb�U](���������/���0�]��30n`;Ң���������&�^U�owu�#�hc�� �HEh�>���y���g��9_:�-K�wk�"��G��ޟg��l|`���2�NU��d�*���zS� m�����Rʌ*�z�P쵠�R�����ϡd�`�;�E5J���T*��U�-Ф�'�곡�Ԡǔ* �;��|Q��b�7�(.=��L��lЂ?RL��e���s�;�hW;W�Z��f�M���U�ݏ�֫.g`eDw�2�!#URb����j� ��\�\ۿc�E��G.C����[�I-'긎n�����/҇�����t{����젎�lC�@�1�x��{t]3@%�r�;�YT-���.�w�o�g��w��/�)P�r�yM�V�#%�9P�c{�� ��$U�,���)'�D�� �u��Z�\�8i�s�����0�U]K��8����.�E04d��1�)jd�1�.> ���҂</)g�O7�r�v�T~���a^�k�e�� '~zˋ��`�{T�� #���k��~u�x����UZ� Hb,��xW����_ E������ZQ]C$�9�B�yN���V!������S�X�c1k?�z^7.(���⚡���m����j�8��x�CG*�@a�ů:�4��u)8:d��Et�T��`8�pX±d��ͬɑ�:;H�3G�ɕ�E15.�9�W�ܭC�R桩1������R��ӆ�V��`3T�p ���ǡ�Q �>F�%�����e�^~��5�h�6�.���"�b�^��+�P����l�fy)��5���z�YA2g�u$!���^� H�ܴ�E~06�[mjA l�3�]د$_�8dZ1�/���l� 5�ҳ_ѧ*��y\a���Pa*:�y����1��)�p�n� �[���τ��S�W�s�*�4~D�B}�p��Й� e"*��t��eb*����Q۳X����6"4��d�UEN�#�Z�֧qdћ�Q�9�v��|(7{�HL���|�.��c�:?���ߊ������ދ�L䲈�G�����$�P�Wv+;�O'"g�]��5:�1��?������~����yR�9�*�4W�?'�uʋ)�T�W^�$,2֧�fc�P�����2�H�2,�gk�`l2���E���~����z�V�1<.Yb"v�A�$�Uu>R��[�m�����O�S�%00Y�!u��ҡP�p+F^�t�äY)�:�k����B]�ŵ��oYK�4�{�6��Ӊ�m���l��?=o�c ����z�;�v�� ��)Y��\�� ���at�)�i�Bfo����� \�d�m$(Ho�Q�������^�k���B0�fj���|U��}A�?K ? #��-*����*���+��H��%M�rϫS�_*2���y� e ����K��\D�N���E?u�y���Hn��Ñq��y�Cj���I3K�-8O?`Ϻ��?����?.L���=�>��M�Fv�S�����g��,�K���F��.�阂�v�Ǡ�[���I�SZ1�=m�N��ރ&f���raM��`���u�CPP�hy�@>@ ��a�g}�q`8��E��?�3�P�E�k��R����e��Ȃ��I�O��̉�������jf�z���铨������Z�oA��f��nR�wXR���@��J��Ԑ���lt5b����r�fIh>=��.�6o����hw|�{H��d�?rb�t�xd%��9���|�L�}�*^O ���C!�=r��?�[�݀d�9 �,X�d3�#�0�~N*=$��n�u �4��������hy�DIO��H~k)�.��M���?S�ɴnì�W�<�pq+���~�!S���N���G��r��3.���R\��~=XnCCD2�),[@Ãr���Ȇ�Czu�C�da!a�{q���Ֆ-}�tIim�݊��4�&�%���3)�]���oi(i�o��N�3�W�IҪ�| ��/����y�z9��C��+h��p�5��P'&w����Y3d���BGZQ���?��C�x+=�mN�[(�8�`����/I2���V�I�e3��K����b�W�0��Q�c �hH���Tzt����F⣓=���%r�l�/鵇���S'p>z�!W��3I�B�Du�u�V3yAC`�E�Ƙ�?X�:m��Hm�� w9�ф����l��V�4�ϧD��R?���F��$� dJ��1:Er�l��zG[�^�Br��������3b�J;��5��gAq`0%%Z}���HZ2O�Ȑ!�a ��a�A`ˊ�\�Q���'ѻ5/o:�N�K���,��Y�i(�CB��^�^p����T� ��S}�N���F�TI�a�6�})�$�gU�����"Y��T�ɶ�[���B�6'�@�� �R�{�Re4���QT�O8 3��t�-��$;� ?i���0�a�t�0�Y����bZɺ��S�00�V^%�}\�o������$k��.�#�e2���|�J�JD��K���ݭ���X�e���u���#uD�9����&a|�_.7���nMlTi˃��@���O���&�<�z<�}��m�R�⑺�����{����o`Em�0τl��DS�ؽբ�]I��������F�'�tZл{�[�ؗ.6�B�BCujE���EOd��y�ʯ�_��䐬�>��"y/G��bm4��x�/ ^���������$3gWa0-v�C��F���.S�N,�u7>���m���86'(V#0~dW55!ӡ�2���2�8!;C:o�9���|_:��~�s��X�&6�C��pq`��9�7 D<l|�kQ���+V�,պ Y\9�Q�1�� �Ljx�q$�5w'u�W@P�^������6�2��8���7bdR�})�i���d��2��,� �S/"1#�Y� h�y�Ej�f\�-����_�5�!�8a�4�>�+l�f}\#[�z�%�M��$"�>���H�37�솆�B�(�|�K�t1g܅|�?�Q/�=����`���|�LJ�k�J�^�"�����j.0�m]���d���Y�pg��c������B�`���[x� ��&N�Q�L��g��T[R��(۩�8��h�+r�,�˛qJ�t k���fa=_[��?B��G�k �0E3}b=.��8���|s�7>�FZ���v1/ؗ"��.�6>[ܫ?60uݹm�n:���.!&2��kuz1�0��VE��i�ħ/j>���s��'�u�c�~�IV�T6:!7��)�R��p��&1_h:����3+)[%�˱W�����9�{=��B���BUS��R2`��oA�r��`�M�� �݅�I�/��O��#_��<I�W�,�֍�%�l'�~1.�G;�Bс��F��Q��<�m;��tQ���I������%��)0@��A�9�aN��}�<A�X*AXI�N��{e�]v�f�+ÿ_�9��V!]�*,W�p��K��ɍE���&�Z I8�T6OaW���U�n��k��:Sv�I�\p���΅V�dvh�i��5{'%��^������ݧE��=��y�(tȑ`E��{����z��pY(2��e�85]��3�¡�� ɵ�D"W�n�@ �s���#�%��ȏI�32�9d&�p@B�$���$.H[���<�4H9���z9o��+간�L):�4����(��V��&O�7̝Q#w��!�u��JcG�� ����Z�+��6�J�0�c(!��+F��H�[�~�;g��~���Ҫ���@f�H �7��d=3�x�Bm)��Ξv�r�������6�%as�%|%�vdk�/ ���eS� 6kr�� ��YĒՒ¼ȋ�����բ&�rEFa=fZ��fO�^0i;�+"�(JP���TP�"� q�u� 8��� p$��>q��/� p��e�^�j��n(�u�Ӎ�:ӆX���T3N,?e3x9�/��ტ�V�`���je�ԡ���r���N: s�Y�c��d�4�A�LƤ���i�,���xD-�|��ƣ0h.���`'���G���r�`m�蓠_���ؽ�ӕ��Ʈ�Y,���i�S��ޜ [~ig�w/�_ �^q!��֑=�@�%��#.5C���a���Ѩ�fx�m�c�7Ҧ��l�hD<(�z���������Di85{��+a�x2��yx Q}G0ok�b�����]r�~/�pF�˥��� ck�_pL|������n��p��s��������9�_asҝ^]�D���d�`������v��)k���T�Qyh�)�ֆ�D�S�3�!��E.^���,��|:u�]4r�w�wr>�+��Q�����7������3�Q�6���M�(�Y�0h�N)�k` z%t��6����|UT���lș�8�n����6j��N��۔��(��F+*�ӟ��R�ꭇ�+�Fd�5�ؼ�����`C��-�N��V���3�?��z�n��T(!�E��MԎd�s-�C]�.A�52u�EB?���P�Y�,�����G���ͳ_.תj��+�� �� �!��>&qМ����\��k��C"����#���ކ��<(c\T%���M��< !��=V�b������ *���5έh��_ �N`���.���T�։��!X��o�焗[gF���L���{�z�Z�����c��px�ss�W"��)�y�Y�!��]�Z�&�M:�]�A�8��'i��I������'mXi��WE>��L�IT�c�w,Ӛ���i��O9&����#����B}Pc���#��h�y�c�"H �>TC��r�?$�~�[4�cHۂ��ƛvX�u�5��M,���L�tu�PT�B��r���M)fay)��Rrv�%����Go�t�-��#�����ᾂX��V$���8��4,�.9��L�jU?���U�~����K�U�?��9X�=�~��B���I�<�ou��W�2�D XU��>�p 1�F��〠��\i�q����`e|� x!�yNB"�+�L/8���:� �Y1g����ہ�V��l��Pi��p��A�k�v�$�N<�����[�ٛ�,�D����q��܈�` ��h��T(�D<�K�uB��(��߯qU��H�\�_G�}���9��g(�eO��2h�\��o$\v�d;u-7�#�2W�R���c�*���P���빙����sR�f�Iy���{� �FS�$v��Y����ٜ���t.�ȋT� �%�=յ��T�'66���{�q U�ÿ�/wo<�/;<o(v��n0LY�)<�$_Ń��KY��Ck�6�A�U#G�(�vD����V����z��;��FZ�N^����:�t3;S�)� )H�Pw�u� L����&��N�T*� �t�kp*$�6�~���k�PHt,ـ���&L���P&&t!M\�2*̅VR,�)/H���6���o�f��?�U�ʬu^�a�Q<���m@=���v�E@��W��$�6�_������{N8��//�]�ܖj(�Dƪ�> �}�iL�?^��� �1/�{�!���Fԍ��/���F��Q�FڇƤ?�N�F��u�9<"ק[6 �2�7���9 ъ����C���Q _Ukt�]�8��\:*�V�e�.�蟨ef��ɍ`��`@x�U9��Ҡ`��q�@{5W�ߣ�ݴm�'d�s�hp��B��#��Қ�G��A�F4t�<��j�Ȩ+�����s�%j%���B0)�Tv�_X)���`�4{��Q� ����q�� �P�#A3gLR�+�N\Jz�g��k9��W���V&��j�5�F*0��v��y��1��}��i,8@j�����n���:P�0���p�D6�Na7�=N��xD�tI�{�H��s����n-л<ɕ�"�Mg�F�)�n�ȅH$�F �q 6�s<w��"�����4}�[՝s�aL&�.�Ѵ`�a�N��n����*s�"I����5���0\��~ ��B��bڑ����~����Ӥ'�0�MG�V㾢�0Nfv-JƲ��_�C,?.�#����=�&C9B\�,>M���һ�5\�}m�hC9�V4�Gl;����I��^� �0㚒�9�n���/_R���d�IbDww�<���2�&T#�E9&�tтE��8�g�2�P�xVA ����'\�*�^�ѓe���Ov�ز(f@�E3��F(`(�+n :2x��e'�དྷ�ӔU�6_S��W/��Ikj��p�T�2�_��:�H���~�:�{�]d\V��x=�k�˭;��a��Ӥ��٣�Xj=|_�ԧz���4�M7⋒*�Lk��-l,�ز�S�Q��p�@ �9T_8Y�xD�Z>7�L$����%ʾ���?R)��%�ɑP�ѼM��:�P�'���/�Wx���M%�5d��c�1���z�QRge\ƥCc���h�C!�H�I�mP��@ɼK�l�V9R?�T�嶪y^�C+�7�xe]��)�4�%q��/��<˘Xd/t<�8t̖aBǀW��LvC���oos�4ѐ�=58����Im�(:gk�2E��D����VV7�l��eZ��Z�'�af���~?��N�-�_����4\]6Z.��yz�۳%6����"R��0MO�h5�L*�s*���8���,_T�۩W��;U�|�㳾�Ļ�J^F0��|7��Q��vnI-�STGu� W�24?�)��Q܌b�l9�1���2�ć_�|�� ���� ��6���zy�p���t3�f��đ��wۏ���3�V�#��cv� dChJJ}-�z��X��u��{�i�q��Ir.�i�M�ɓ�����G�5�Co��N�,Qvj��i�$3,���A:�t���E`�Ӡu_$���D��PWr4�c$�I�{�\#-���r�) �[)�{;��ꡙ��:�-Np���A�ִ�ʪ��"�8�SӬ.#�J:�<S��b�d�����s\� �X@FMھ���W�,�-��@;�=�]<�*G����8����-���gf{:$P��3��9N������d���K=�`v�p��� ���mt1)�K?E�� ��(�G�%��[_.R�2�f��(U���j FHYWlx�ȝD��λQ�� ��0���/wj�an�v�b"毸N�.-��,��A��K�͟���ff�3_��v_W��iG��VOB�����ߓ�J[:&!@��p���F`�?�n������j���g�ֳ;#�~���'��H�$�>nbYz�F����G������v�;�R����>]#P�{���`n��M����uP�a��&��rǷ��hJ�7%��}PV(���x��<D7����#N`�f�}a6���j�:��'R� �؊�0ؿ�27�6�_+7���/����D~�E��%[��l����hsxG눠�Զ� �5�������`��w�6����m��{�N{BfM�N��립��y�KܼG�aa�" X�ެĎ[V��� E7�ԡP'rgZb�;%�:Z5�z���i�E���GCQ�ِ'�$�Xk���(�G��<FLC�4��~}�������`��-?��"� [6$��Q�l^�yd� V�C&ho�P'�u�`#�6ې�t��\�8�cFI9-8<yx���7/d�8�6�9k�#��.�jUdb��v��W�튓t��L]3��4�xRᖕ��d��!���&EW Am� ����x'�K(G&�,0X$� rw@;͒.��U�\�&.��[pyޥ�[{�.KĶ���b`u]� �25���Wdv+��>�3{�]VƤ3>ZĻI�Q@ꋰ� ���D|�}|����:�^�����7�� ��}�<�w�]��[P����bd������ڟ��O;l`��M끱ܟ�{�y�eɋ�f�XGuxа��-�����{R�?7��l�.]sVt\:<!i�x��"�N��(�*�����z����Ζa5�vҼ�̫��K��k���4�8���{Z��ۄg=���)|;��R:�W�*�(��c��D��/��3Q�n��}dY\�i�Tx�A�N���R�5� �O��C�7��?��M���L�C�b��;Y9/i PW����f��xf�0�a�nF:sA��8G��g�q����}i��2�o�uz��E:�zx�:^Q�DX=Y\ذK�����#ÎUk{5G �����o��ڬx������$��71I���-�Mg���oy�Nl��I��Gᝈ�U�q�mg���0\��,L`0���"E���]��H�<Ψ>8&R�nT�N�����Ò���݇��&${�V@{�|��f`h��ƞ 3�]������ZW+aifD�>�|���.� �zJqJE���d�y�d�����c��%�@tج�稾��/O*v�~C�z�xH*�{z�A�͑g� ���BN���d8.O�)����^<R��w���.4�=�������d�N���u�k�8��/S9�b��2mv#BHK���͖��L0+>�`7���l9i�*�M��I=rI^q���D|AI٫H�/���Ԅ_Y��C��@v3��l��+а��bP�������U�-|��z�r��y�>� �|�ݦ�����P�����Q~1�Fc�1�O~����* P��c��^���gzQ�X���VFi�\�8 `(<�<�fq�vq,������O��6TN�Ex���FE�.�M�Aęgd�.}��d�u� dᫀ���v?�w¦��X�:����g�J�K6�!\LΫ�s�D�1��`�k+F.�+�iօ��;����Bퟹ!8u��&z!��P�� 1N�':�_������=\`���5a�ɧ���O���<���F��(0c� V�cr4�4W>��m��Ȅޗ�iN�Q'�I����!� ����4���sG)3�@��f�=�����(iDZG�]��+Np�/�\�#�oX-��b�@�N�Δ���=�s���� ԝa��8g��K��V�(6xh���4CK����C#�6���9O27�Zn�GMzW �@��z5џY�܊ņῳ��r�lx�[�`���\͠r�Z\cN�s5"��_=<QKN��4*'�^���n��/��b�b��&F[��F\�vr�}���d��Ў�%g!�!˩fh 5ʂ-��$}�(��R�8���no�Q�J-o H�̰k���Ő��{^���G����ص��U�z���E8�_/�[���h*����mi�v�jS5�y�������G��������i5w�ث�ͫ�� 4�Eڗ(�@ͭ�Q�;�z�PMZ��K ��MgE R^�#�bA�����T��r�Ѷ�N �~n�C�w�I�u7�r�9̾qGo���"h|��Y4�,�;T��q�O{�^M�ւ�E)9��LP�ω h��%?l�h���p�r���w?��%�N��++&jw��a�y�����=�o儠�Yd�S(�}0a��nt�XN�`��=.��|z� � Ȣ'<^}�A6;�ߓ�Ά����Vs���G��!�K�5�V$�_���T����Wn9�{]IA����<9'd�M����dZ&��R����X��d�$5�|����մI+�$�)�UD�C]��d[���$;Y�f�c��=�y�P�� m݉E��^5{�4=����h���z�}�B��@O�m�\�ۤ�3�d%L���U�$pN�8�}�忠��ն}�y���L����8�t��sq!3~{_�L1TM7V��"�M唖��0R��/����<.��f �&�Vw�_��]4k�9� �]��?~�D���g;��!�ˉ�at���6w�c��T���Q�_72V�ԫ�Qp�T�B� �sA#�i�՛4��e;2Y���g0�5�*��gh��P���E�Z����,~L��4�֔������"U��4u>��V 'y��W(�̀ �K���Ȋ}�?��� s�c�{'\��uU�LO��&U�$2����h����m`AW�Fd�B�/H�g���@��#�[6��UB���<���K���Z�7��6��B���&PZ��Պ���B �M�Dղc�j�",,Ih����s�D��>~�8��W�W�vx�-`.Y)~9wUu!�v��h��p�X��fvV3^��I�] �A� |nnL�;��oa����(@EDJ�U�`��Y�z�-N+�iD�B*}��拗�dѵ��D��dG>��}�Z�1N�x^S綧�/�+ �f�4� R�p�Kx�h^�4 k��90 Л��o�ߛ�����K�3���[�ǂ�����\�)MV�����6t�ue �wO�!|�k#�!�>,^�oL@��gʕ{�+;���s@A��4�P�q���"v��%�\HR�:6���S�J+\Q���3�]�� ��_= �<�=P�n��$��uBt��g���l�&�ʨ��N�VT����Ǎb�>!�� �)F�GA0�um�N�����'����TH�}�5j;.9[�Dc�8��:_Vڎ�@�G�z��c���w�Gf�W�/�(�jq���X�b"/��{t6E���^�e�Tg!�O�E4Yn���2����?�~r�ŷ�� l��T�K�#��ग़lp���]�~E�5�j� Tj��%S�����b���$)̆&�C+d6��ц���\#sS��P2�E]�\U##c�t�+�/3�$�-MVp�%*M�ׅפ�W/�� �r+��w.�o~;�&6��Ec�WsIÀd�X�6�U�D��ʬ�_;�W�1'�d��#0�ڛ�h���SV˹B�ٶ�]���<��|q:ud�}8Ap��P�Ԧ�M�T��K�P��k2�?��*[������akb~���L~V�W�OU{\&��[�+�2�A�:���5��: vFf)f�|�:���'-6�=ᜁ�ȝ������^��D�q ��Q �i<a����=�mo,��P>���fy鴛�Oݒ�ۘ�Yk�d�U�v�܅u��L�n`o�ƾ�?�s̑�&�Bv��v���^Ev��\U'5���۔ n�_�G�e�Wß���Ȱ;���r��%,梀��+(����g-��s�D� Cx>��wX.��,B��N�}8Is�u���4�Q���Փ��?���|tN��{��2\Z���PJȅ��g��g���r�[�[�9���8@L �go�8��P��Su�� �vB�����I��S�@I�3�%0����s�i#��akV΅ƧŸ�8>u�]�� Z�������F���5�T��!A���v�ì]�Mn����Ϛpu��+i�+��|?��- ��=�KG4h�d��c�u�~Rz��ˁtmR"�k�$྄�87��Y�4�h�j���="_���%:[�C���m��o� ��\¼Sv6�g�]�`5��G���l�3�����_S9�^n+4���@�|A�A�p�ܴ{6��O��������cb����ᶩd:�5� �I/����/���q�\ �����M�#a���J�8*%��.ƍb ��Z<�g}�M�Ѿs��G����s�w�A�I- @BU絧A������ac�HĢ��OvR��o4W�������!-x+�D�|�p�&��($6x��K�q}=;z�+���ȫ�`��9Ih�H�n��[1�0��)�:-�F�9��ˋ���E�m��(�8g�c$$IQ8a�"��dݺ�@�a$�h�F������)��<y#����s.{���B2�j���䰳�?W��`ھ~������|�YK�UGn�0pXm�0�e��;����C�����!+�1L�S���X�ɑ���>A�����e3q^D��Ϟ@k���\�d��g�.Vr�>V��|�����jק�{Az�H��D-N҇Ug=&&U*}�,A�!��Z��.�m�à���j[,@ m��:���ŴP�����)����R3��'��7&�=I��B��<�(�g� ���A��BCUV�x�z3��I�CzA5jV�*4�G5���L�' A�*E|gf�^]O3y��EqVz]*㪪��Dn��z|7�6���b�U�9I8���f��+KBc��`0߈:��7�d�r\Ӊb>R�R�dNF]�1���R�d��r���[N��X�^d1v�n��1!����e�0D�?�u}�Œ�!�|��e�{?�+�㓳�l�~��]�`�cSzY��%Җ�f/�W���A�{T�H'��mq��wM�!��9H/�鲞�䉏c�LZKJ�[�$u*�#�����#7��"5@�PN^a�/��"L͐�n��B��j2���� đ�*f����xdi��y��A@���d$%�iz�l���Ne/��ӊ�B�t��q�J$��lL�>��;������8q�(0��������"�{%�#�V�+4�F3��cr����h���0Y��F�l_�H'֕<�`tL��h��6?�p��=������\��3mU���ZK��,��#PW���[�i�n� ��&iw(��ݯ56��Z6ؔ�%;�Ҵ���S����_BOd���#u��{�F�)���%vDG��n�%����>��H�kgO��O$��l�А�Ӽ���xN<�B�������F����duP��B�) -ӡ�uTL��^�=��q 7|���i6�$��i�"*��k> �:nɖQP���?<0<v�^&.5��W�qMU9��p����M= � �k�'�f7��ؿۨ�:2�`�s���4�l�~�c=j�7�����jM�88����ı��*gC�W[��yK]h�`}-���w6Ц����{��5nÐ��+fUs�J�|���Q�� k�)�Uu�z袤�- .���{�����Ӷ��y�q�^7S7�4Fp\��S���z��SO{$@s�x��F�ԕ�����/���c�9f�f=e�85�p�C�����%��QX\e������e@;1498���?�� �[�S��K�,�P�j\PNc�h{�v��F��U0 m�8c�S�q��w s�*AJ��>��X6��%_|�BI��kΎ#�B��tE �_�/,^>(�)�Bz��l��~27��)a��d�Y��q��Ҫ�X��0(J{��˾7�2�](� ��ɪ���Q/��J���eb�GR0Q�é�:?C�eM�_�bY9ӊ����X����Lc��?�*S%�6e2o)H��_bdT':���H����Xg��t6��Gz8"e�<5��F��#�a|�)\���s�W�q� @ �p� ��Dd�Jk�z������>6��f�B��J�鎪�6e�9-���9�Ks�q$��_�4���(������32MO�:�Z�(���j�Q� �t-��"�?��<�tn}�?&fanQ����0*c�L�g �5�P��T���:���R/�32D_���k��~!A�BA�����Vo��lM*"�j������m����:(X'i�����T�ߺ��r?���zO!�|)e$�� ��`����1)���Ʒ� ] �9�j�;^��F}�!Nh�um�{I_w��:��8���Ϝ��B��Z�Ч�=�JtPd Y�̇(�,�J�LeZ�:��W���o3���=� ��TQW+p�W�v��.A栏��5��-��p��n]��\m/-�uѽI�����Jzk�f�6>�&_�P'�[Q-] �]c )���I���~3�"�5%�F�D��[�A���$ІF�<|dN�����z����0������-��v*��-��\�a<�rųM����u���tr��eH<���-��������/@��Gg�,~��B�i�65�S�GӪ��� ��"T�!Km�<��8��ae�] gV�7B4�R��d�"��J4kc�_�F@�����ѻN��U�vg��9T#��|Cd�L %k�g�gWD��"��l�b �!߈��<ZCv3>y:�x[W�������6lC��i\/��žz�b��ݞ����5,�X;ID�9p�ߖPe�G�^�kpr�)ߩW鋵|YmCIy�TB�k�߷axNP�{aNܷ�K3�G��_��6����6����8�G��:�p��o���V�V���5_�<��`�vۺ��!]�Y�$"��>�'�ⶠ�#��m��#,���a��`��+o�7ׅ�4]pg%U8�g��JT@���o�Um?D��a �z��rP>Q�&�2<�a<�M����|����֫P�D�14�KC�ٴ"�Onܖs]��خ�2��t)r�b�q�g�X"�D�R�'^�L�3�I��.\nی�o��^4���R�ޔ�Il��Ur���_�6Z`"�q�X-U�8:�� �[��*��~ ����������;��b*Z� �~��V �v� �u����+vX���C��{jy���O�GF>���_C�I��%��L���=ߥ�_���@��ިc(K� �I6h���%���{F����m �'�݅OGLƹ��]@UozL�nE�����8���h(�`<A�B]Y� ��l��}Yr��$்��s�j)�`��Ȭ�� Y��ȟ��)����*����]�W�x�c��*x2bXN�ъ��+N-i� ��g�\��}�m��B�������:�Y�oc~��Zd�6�X�������GJ#%>�8��SJ��/�B�~�z��H�XMˈZu��x2�y|ҞŮ {�烗�'�eg/A��8��#��Ba�J�%{���� /n�� �\�'hDlX��.7UAf�7)ry���k�oV�����N��hX`�E�?U9l��V� �嘣�fe�6y � /n=b��v[+b-6��a��,��IN� vk(:� �d�Pd�a�������� p��c�L�����P�I�JQ�2�>h�H��i!vH1YY%�g��!Ȩg�z.f�$�=��av��[F��\��'����{��y\L���e{����tp+�.f�\��2���z�����[��unΩ�t�63�'�AÛg[�����曾!i��Ye��� ��2��O�1�T����2���Gi�P3�$�F���N��5��iCc7a#`m\�[a�%y V?�_VE4|��S����eD����N�§K�Cm�o�>��;J3/ ,Xf�[�Ai���|`3H�b�pi��,�+>> ��n�1�s�<�E�C��WW�Ld����7�2=���^p�^B��8�ʃ�M�Љ��^�}�(a �V��F���VقeX*)��l��7�ΘW�>��P�Ӭ%�lDgNm���-���R��G�_v��>4�Z��P���Iink�j�������Wg�4|#���B���ޅ@�>�t� ��7��ݒ��3%�Ҟ�)H�c����lf� �u�'�팪���+�R�!��p�3�X��#K�p�ַ(j�~����7|pV�t�>�b��oW@lȲ)�xI]�;@�'�j�7�PeU�Ta����S���� ��_�`�<��8h�"�����=�� 2>���5�K~�c�t�dQ��O�n���w� 5Ez2�Eu��8.)�Kɯ�^��TT�*N�̠uX�#$�|�:��҇��������Z����9`���*v�'��[Od��8��8n�:�G>�Ư���u�A�kO2�iɟ�+H�ȧ���M�ȟ#@S���K�_|���A�d��N�T�� Ⱥ�Q����k�L�ٳ t���s��ܱ������Hi�٫d)��)QO^;�^�rHd2I�����&E��| . hc��G�:;y�x���Vj+�;$�#B�U�ngˉ��"˗F?����x���T�}�vL�霏E���Ƒye��F^��K�.g�Œ�f�6:��i_�%���k;qy��e"�;Q�E�.���b�s�"~�c��b����&|��ՌqY���� �w_Yւ�+n�}@���s����1�n�͙�B��#���$��P�SmdJ�O���=x7�n ��Z3�2�.�wZ�Mp��c�Zh��Q�@���(�1�^�����F�A�離����ON�Pk��4�^v8�Hm�g�瓎<X�*���o"3K��sVZ��ƒ��F��?$F�!�p/��?0��x35Ò82�P�*��=�aN��R�B�"��B�����T��V�$5B���4悦ʥ��?yyՊH�||ɼ�Bs�Ħ纅T���W���h�uf�k���O��-�"�ls�'Npq�B�Y��|;��%�k���t��/�J�����14��`K+ û�B�m�ui��:��n�oy����L�ŔE�(&?.�9Y+�q����R<n�4�SЍ컺�D�ؖ��=!x�j�kM�(��H�s��_�3ւ;�5;2�\GR����6\�D��.�������m�Z����fZ�S ����D��)z���~�? ���}�OwV��ẋ�a$�&�.�ˆL�Q�cĔ�)���w ^���7���8��^�~Sֳh��n��w$M�[�b��9t]��;U������t�u�ZoE�"�e�B|�0�L'��0;I=��mA�}�Y�K��� ���|Bג�2x rQ�_9^��)#��D�����j{�z�nz���"�Df���'�"� ΨȻ���<����N��㥪]��\�0��pw����R��I��I6�x)0�]ߠ���P��qտ# ֽ���ڞn'&_��G�Xd�76g=�ל�CьQ�Q*x aoAXgAWÑ�����#����s�e]�|C��6�G?%V�¢0n?�hy|ƺ������ީYP�\1���!o�,D��s�:�r� 0���r�ʻ���Jz�#K���O��E�Y �G����=��2f2Ӯ��� ��9�"F^�R4��!ru�9�U�d䌆E��%qL�9vQ$�*��>lP�/-�;?��6�v�I�wа����vyҋ|y� �{����p�[f�*oXX�xDX���P�D ",5\G�-��y���1 ǂ��N�A�^���31��+�b~Ns��sj\�������<m�jA �Xg���'Lf�?�w�N14`�˨g��U�c>�ݬ���B���j��� ��^�ꌚ�o��E�>R�* �x�lC�� a��0�r���m�ô�.�3V%s� U�[������FUo��mH�WZG���I����H��{:o��<�a����]-ї��LNjG\�ZڙAs#ܚdmZ�j�AT�ޛq��7D��Z�IEǮWw�3�D�}��M���I��A���$t�v�k�E�5�ѼlU|����9 ��!rp6-��D�r4��mU��M?A� 4!DG�*ɘ�p_�1$���a� "�� y�T�俶J�B�7��Wvy���C����F#L�k��ϺÄ�k�(r��]��HʼX5��?yHsʬ-���x�A����LD@��V;ױ�O6���U�s��1/�:]F�ɑ9��8�n&��J���P���y�Ո: �r��PN��J+�����øX���V�إ ��O��;z0��Z ����tX|R8�FZ�i: �l�>�� �ga6m�Vͼ����N;���Bz���·�}��)>)o�ʳg���AF&��&,,}�����-�0qL�pV)C>i��?��a�~ݸ䁄�*�"D�q8�/�XH��[h�z��6�F3Y?�]�ߜ^��[}��1��&�����4���ʲ���j��Az(�V���S�[}��=H���8�[��+���Ɂ�B�~F�n�v�6_�����_YZ\O}��t+zz�&��ف�7rƮ�@�]�j�lc��'�j�H��e;���E9= �y�ڇv�f�A��-؛�AU.y����&���O�xH�Y������m� �>Z�ue���9�4|�n��kU�Q3�P��t�2wsC����ʃ��Ca.)��v0$�+��.�RaI�{���F�y-�|�����~���L' �Wi[xB^���{Ņ�Gw�H�N���]����]�L��ޗUӼ)&-��y'x�sd ���g^�u7�h�Jy�Q� u�Zt������0VȪ�� �&?i��mx�/z���ʲ'�H������U�I+PQI@�����'��7�r����'-��>-�,�� ��t�:��̚9�y���/L��Uzy.%��gPdf�MH�DN�p�,��M8�+<�N1�0�8{�w�K� [�����c��Cb�Z���/�Al؟5A�/�*z��l�l49К���'4�m��了��� ��*�c8��A�M�I�ǫ�D�H�ym�d0]j��O���9��� �W����z����0��P��+�:��֠,֥�'�ȥ�`�5�4��ƺ��\kM����o�����1o�����������]C��^�-��mފo���|/` 1�1ֳ|�-Y�J@K��}>x����Xۭ}��u��$��3�FEQ���r�;~=�]�}��P�6t��Vz&��&3as�4�9kl�;�&��ك�:��� �:�s(��?su����#m�0G%��h�ʚ~i�"�Is�z=~y$��}�[(�mE��(/`��Q(X]h][�5Ǜ��1�G���sͭ�i�V 컼;�n7�y�SX�0���RD��r�x�8��5[��k��<��Џ�Y�?��X�ݧ�:�M���Z#��a.��1��B��1w��$Z!���o��F�؆��yiSY���}/���%�~�2R�J�j(��`�*s�*Z2�+�y�<��J�Q�W��� ��QT��z_�`�����\y�W1F�����q�r�x�v04(�F�&"���?E���ۏ��R�oQ��F˨4��VO�����T8 �*�:I7�n�?��\�������f�B�j����ճA\GӲ9�G2�Ϳ�R��n��s���{z?c˳��:�k��� e�t��uI9�ס{��I"�/��^��z�#�^�u�Ⱥ�ޱ�J�b����b<�X����q�lDd��dc�$�ii�]g��P�4��+��P���v�K�L�J$5�٫PȉS|�K�4���Q����)H�+7�P(�Bd Ҁ�V4�R�� �:�� ��s\�F|z ;2�;�(q�~��?����6�<bL�Ə�.D��+�i�Bx�����y��QN�u�x��V���&�>�g���nook� �Z-N�ůZ_��#(��Y��k��=%�=l<a�x��7�~&1d�,�Iv�$>Qun�aj�5t9b�6@�WRuJqޗXY����K��eNy݈����|`�f�,��#\��Ŵ�냾��^9��� D*�&MO^*�<�W�!(���y�z��w�1{� �f�q>�G�J΄�v����H� `��p܃�`�������j�G��|�sxv4P�)�WA�i�"��� <���68�ĕ�a�g�3R����r?v2+��1l�w���� 2�_�����)w�pRxz���1,�� J��Z�� ���c(�2�c�HUV,���I�Ġ*�l�K�����d�e�㯵r&�D�?���ulR!i �elj,_i�[��i�2eL(tO���� Y��-J���K�]��k���÷(�ʟf����?�=<�h�m�i�B~�b�(FŤE�$��zt�@�\G4�z�T�� �qTlz��TϺ J���|����<�-���uZ\���!N��Wl�=���}��+� It���d*��"�o_�*�ab�V�Ȣ|[,�M�-���0��#-�{�F�h��,$!��k�RE���?A<�0����@���u�&�a��Ҫ.р�b�0���To ҂��R&�cg���T*�� f��= �*��9��_����xKZgG8j����%�^LJ�����VM�W��be��'�0�d*�3ƗV�j�u�,>j~�,�.�R�@�e�@R��y�����|+�l@k˲HV6A9�'�ɗuO0"V�g�]�Syڂ�WM�d�Ll!Ћ�B�r[��Αg����g.�$�mעG$�6�fU�ɡ�/�7(���U�:��`��x���[z�[ ���y:l����r\�&��� � r�C������^�MQWJ8���Η����x�?�;�(���TXI�a��@h�p�-�-�2P���̆z�8�1v�8�Ϊm)���Y�lM�Dd��iZ(�i�~��s&'�3�ջ��8fo}1�^��4`�K��J�NU.��5��%O]���@_�۵mk�4K����S��!W�@�x����V��q���)@��0��:�;EJ�����h���� �� _'�U�O��'15���u(���)ES `T�[s�t�W��^�6Q��3���5�~p��i��8*�LB��ˠ=�+���֪�)&��^�z � �<dD�jt8AŠ���X�!CR��/��%��~� �p똴����6����~��b*ez�AWm9*�3�@CqUo�U��8�y�(N��Y3��z��K��2�2��������� ��[Yب5�v�DʼW-H��)��F/oՑo�43�d�U�Mj�y`�c��������Y�E�션B$��ؚ�au�2�� ���}$���H�7��c6Цd�' �|��~����a�a�I��"��o�e���'O��d�G�y�=�Y�;�$�ڣ���ҏ,�ؒQ��M-7�E`R�N�l��"1 9��oӤ=تo_��P���+�ѽ +�p¨�D��㐻$Q��vUy)ovr��w9.�,i|���%;�5�)�q+r!�x:V�ɍ���̒8�v����#���)6Q4u�>�����6a���Y��at���+N���H�Q"[�g4�@�#��=U���\�!_��g�+�����$�Ts�C_��ٹ�rr0�#�h�����̊����K�K4�܈�[b�z3s��&�fȐ��]�s;���6��#q���Ŭ��ΰ-��q�G�x���F�J`}��Z�M')�:'q)2��)�h�H�T���][�r@w^%�Ȯ~�~��7���~�j�=�X�u��x�mk�ٹ��6b��p���(� >8��Lv�k�/��[���T�ei��y��zP~���qU���Wz�G}�I���/{Բ��覅��h ��L ��t�'�l����zeV���Cg�j�mߦZ�&#�6�!rgj|h�RJ��\{C�� �%�]�l=,�}b���*��Ҋ��^b��SZ%�pYte M��!�;w�f��,�XU����v]8�o��A��|!���[k��vz���5Hu��i2)�����tP1�쓄o�3{�3U�=G���^�� �*�:�HD1h?��X�� A��qh�O�Kc8��b��2�zNĹ0̅`�^JgF)p7.�HI#�N�M�UQ] ���R�� ���z:�o��qs��xp�)�6O�SY`����|��;������3���GgAq�b�f��oi*� �nd=�N��L�Fb�X.i�o_|�����KF��9bn ���dZ��*@YwF�j3���L3�'�\4k�!�y�y#��#K! �Pf��*'�4��ͪlЌ��`cܻ���/��bӝ�����{[Ľpz.�:��ގ��v�˱0k[��1��oI<Mv�� 6���̢v#�]����. ��,�]��! ���R���~�o<�ťi�p|l���M�'�l���?�âu|�[��|G���D�<�c`�#{�%b]B�x31�o��5O؇)�8ç�h��V3� �D;�rx� >D�gq�'����f��;7Y|�*{[`�����u�o������POq��&ٙ&�✂X�f|/;�6@*+%�6�TQ�S#�@E@����q�O ��`ɐ�E4�F��#=l�$(4�,<�=�#�hl�;уo8a��/�[��sDb��|{��`#h~���������%!J� �-�� ����Y7VP����˫�ܑT�ZP{瀞�ŏ}���B�|c_)XI�|)�{�Jk����TvFZ;�P�G���*�V�E4<As� �"4hK�Ab*C�}� �4*�l7��PM}��,�rpF�`��y��e��ES| �Q̮3b ��g�� �ݓ���@DBD�s`-��������)�L6<��;R���O9 m0��m�l�v/A�����g�ذ6�[�0���x�O�P�=���!�4:ܠ6F��; 3���{Gz� �*���tZ��O4tY�.���P�L��G���H�(�h���hXnG�\)������)��m��s,Wɀ�l��?+ǐ�e�pѡ��47���Z!�Z�T����� ���ɢ���V���D�������z���V)48+�?�:��6��ԽBuXܥ���,��O1S�� ��{-�=��b���9K����:��z�w���eGh&_��n�5���S���ME�{ߦ��Da��n2�{��g.9C�3�u|����#Y�U��IsP��f���M�$�"P��ꙄW�R�HtU�E���������IU�����9o�(yE���M�9�˃�!��=4gi���!�:�.�������n�1�t�;rz�J�����X��@���:t�5�㎯α㇔g���ͽFk�y��� e�\u�{1��0f&��'ɨ����bC�2�dT��N&���i!�&��lT���a��ۚmM���I�į����~�6��Kt�}� v1�J)p��CQ�E8W�b(xW���nD�۠O��u��u�溴�&����-�����A� Tv���o����g�a��Q��I���1��R�x�H�⋝��<�I����C@)u�"�J���#0r��݅(Ӛ��jr��â&8$��eR��m��{Q� jg?�b�Ͻ��gn��/�x��!Wk/e���Zג��#g��l�N9��P�m� �$�D�����}��zIwsyQF2�jMu�bsk�ܚG�^Hl#T�/V��J���k ��T��+�� "�-Tx*&�� \MG!Ƶ�,��W^�*� �tG�u�.�-t�]t��%'�l�A)������ ���'o�C'S�ػ��Vy����om?�� �m5wv�BW8H)g�+/�2��&�ߨxi���NK8�u� &��@�MU�9y�yC�� X����8�1����9"�ڟ�Q����=�>mC��`)����&-0�n'Ec����(��hr�gQ������_0�C]�Żz�Ϙϫ�~|ұL��K1��H'%��1���@:S�_v[�]�b�|����ucC����N�{�r�����C`�Y+�Pv��N��n�3(p}�A�4@�:��.n��f(,7e2OP���Sw�`6�8�g�v9�ݥ���O �8�2�$9��}Ř]f�2S�icq�u�Ԋߛ��3���'��}O �p3H��u���vOT= {7������Z1����+������o{|ا���F���o\�,�|3� \����Z�_��S��/���ԑg 8�^-N=%���=ƑB�5�*|��L�ɡ����?�8)c�=�7���& +)Y�a5㾘��cR�fM��Hr�>H�߾5�z7��ܥ~��hA��Q2B����Zr�2mL�*:�HAM8p��cL4�r��м�� ������W�71#J9}���+�Д�Z��q�_�#p��$���0��Y��:�rVv��v���.�z��$Nۆ�ʱ�xCn�v�omH������d���(��<~_Ϋe���8G�_B!��$ ��m�A�Z����R�ȉ,��C�K��T_��97��*M�yT��ju� �ֹ�_t1 �[�t�W]6�� y�s�ԇ��=���a`kC���*��)B��]��v[� �{�d0.�O�g/l̨$TcN鿞Hs1<��0��п]��K��A�s�[�LK��ަQ~yFSG��y�@zw�˄��z�����_2���yc^�V{�-���S|�$�>)k{��k6�guZ����Q*���}�V}vɲ�@�=��2\,���,�{b9[vZ^��O���_��0R�u�{Wx�ҵ�\�]���`��LוtH�UNk����\>�#Q�bp�j��_|���F�6:��Cڅ8`�pkJ��nxFRzv��S+Y� �k��1d�L�Ϗqo���1��vL�D�0�êӶ��iv� ���L~�ϻ�����U�n��>�t���/P��sxi aeM�C�O�����f|� i-^���UNy5�2"YE�A�C̙�z�P�ݯ?�N%���������}D�-�4�)�Ŏ7|}�!2�F��%Ѳ���&�G����f�&������?T�[�GkL�W�n���R�5i8�"IӮ�hbF*Ln�#�!�r8�:7�+�D �fu���@7Ս�!�ۏ����t� �ƹm�"��������_ ��pw�"���d����#��.Uj�$a���0U��G).���_�x���Q�.j���V1���>�������1%8���B�����������P��4�۴9�|Ԙ�w`�'��I���V�RW3����6���tbW�*��HYd�N>�t�:h\^�ݬK-�F��جW�)�{��G6�q[9�u�Y Ƥ�E\�����Jv�dU��i�hp��ܷ;yyv��,�guv@���|�-�q��.y�+������㠤�8��(�*�;���zX�i�n�a�O��L'"ۥ.�qO����2�D���@ߌ��ĜN��m��Ɏ:KZZ�^�T��?{���FBn��uO�mC�mpt�%7(;K�9��6��C�K�:�G��"#O7ܜ�g��P��*8_(A}�uU�6M��<K��Q���$� c^��Yeu��N-l������:�j��H�ڀ�˼�\�a����zV�2HD�<՚�-�'0i�5�Oo��^w����9D��?\!��)����4#A5��$y!��(dԋ���H��`�u�˄�T�Y9���N�s��k�N�)+w5�$<0�� �p��D�L�>��2@&x*�6�~OקK��˰�nj;�r��w'!�K��j����ǭ].��kZW�{|x�O�v&��2ڙkxd������BE � �7��&\?�o��,^-�|�[f�G=��`QB+w����5����u��B ��=�U�x��P)��\i9�O����;W=�2����˓�t����q���yGXT�,�����C�g��˗?i-9$�BD_��b�pd}g��5�_a}��M �gSVP�Za./��}�����>����pd谰����O"w�uW+��үE�eq���Q���'�^� ���L���]��\Bu?�}=�-G W��q�B���,�iO�(�Ҍ��/�s��Y�IG��z>��NX����k�%��I�bBTO�iDw��2ye�z�=m���0��4�j[�T�b�H>#��'�E��9�\�Ԏ�z�.<ܪ�Sw�f1�n��z�O�_�j#,�L����x��9�g�c�@�7�A,��4�Aƽ�:f�X�l��#]=��g���#W�|U�IDܵ�m�j@�W���I���0��Q�i>���p6�r6ݹ ��C�P���҂4[9e^.�2�l `���܇��~z8��$��%�;~��Q�Fz�"pF �1m���2��DY�cΰx �v�Y����o����_}���p�4S2+6�6�zdZ Ci��!8ϑ��#�~���5��d�%W��(oXֲH��5p�w}�UX$C�+�\X�vb�Tc7��q��5�8�B'P:T�g3k��U&ģ��xE��h�0Z"@�{B�(l���f�l�8�O���8ވ!g:km@��d�k�}ww@����G=c��}��a�*b��*�R�JZ�nOj���>�w���u��O��K�[�M ���\/O�5uIE%B�teo�-��\]�ٳ���[z�.0�|�L_���97bjE9�w��J�/����|8�z�z1P����3�|K!�P �K����Z��J���GRMܝ+R2+�M��u*�������%���zC�?v�jh�j ��ab� �V��LQ�~�.�(j��h�T�P���|L�v�y��8�w�lt�(�i@N�)� ً6<�{����������=�q�w>S�X�-�y����q�rN���<������N �Vjc�0�r�����8��}"�$�`8������: 2�� '�)��]��6T��k�!m����{|P�ͮ{D�7�Dz4H!�_a���6���qog��g9�.���;(�Ԝ\�w �`<�|�F9���`����nd���3���'ď~I6�x{��q�b�C�����i?��m��HK���Оwr�a�%�(�m�,?���1Zw\��]�"+��hlt�w2Ia�o�����-��,Pvpr���Ց3��)(��ᾇf|"�'�Ǎ�7}V�J����4�3����H�;�}�&��5 -]�_�h�e��H����8�PU(�|��'�� ������q�5�$��t��8�����u�u����G�����f��ʓ ��(�v���|�4uf��?�_x�p�����8(�A"�-�/��a��6��^�k��]y�\���.'�IR*���"�'�r�t�A��,�!]���S�]o��duUE@ϛ>&J��1l�+���@�ԭ�*�����7��>� �Oe�� P���a��X�J��(/$F���J��7�ݑ`*�J�!L��͍�(Ӫ��L˓�j5��v�xi�%�NԹ�z���N jk�?ķF ޮ����m���\#���q�Zb#Z�hE�Ү�0��H <�>s�D� d��a��J��m�vk�Ya�V��-�>�|9���I�%�ԉF��@��i`��uw���U/�MՃ N�bg���M�(�wpϤ��-�6����\%.=�4m�+�-x���E �7�dd>����s���%.�aؽ\;�h�Ԙ.0��~9��d?ؿ��XJ�q�{V/Ԗ��H���6�������Y��$献+R�@v z�і^��*��� �[Ahx�ĵ�w=+��{��H+cD��47����q\e��a�K"�h��!�p�IsK�:�锔<�xNs��9lA+�B�8����c��Þ��+��"�O���a0_�������6�p���ɇ����M ���:�e9��e�p�g�y���|I�P�7 �4P�d�ev��:��&�,E���Z�*����@��Y!+<�S��c{��=]?���a���~���, �t�(H�i���;� ��g�ʹ�h 惆A�Є�r�3��oL�_v<�\N�7�O�@� �k�*�e�"ڽ��$�ͯ�t7��.>H��ˬ�5��cD��͔{7���48+l;�N�q���%&�~';a��6���|�K�f���+��h�|�f4��OE|�g�+�҆I�`��g ��Y��u�Q�*��������"�e��B�r�k��@~�A9\� ].�.7���V{{���g4���]O��[Q�T��d?���P{q��1��+�#(rPΠ�#p����qPY�'��e��#L�|,"G��*;�I��G�L�_Eg�p�v/�f��[H. ���y;���5|8]}� ���a��:�i �^�D������P�K���t\��1B��C��UB��<Z�)`H�2`�1?��kl]J�*5����{UF���mh�ӓ��0m��m�t�@?%�:h�8��4�+��?z��E����f��� �O<&��E;��{+㜡��1�.ߓ�Ek�r�9�&�O6��H*�u� @*H˶i�R��?O��b����� ���K"J���g �l�8ۿ[yD�#sH���HQ͉�ݒ�t���%BQ�3��8����z[]2A�J�'�6�z�U%:��h�<���/7.Q �;s�V�s�G���W��+������O��I�>��h�<�U���� �ݛ��1C �)�GE���a@/�c4�����o Z|6ũ`3�� h�D��ʿ�:I?,���1"_���OP�}�-�{�̬X�#��-G�N����ZPB#; �M,��8$�O���ki��{N:�w�F4������x(��CX&��3[����w�q�Y)�Z�'5 ���c��T�Қ[O/���~�s�K���ゾ�QU���¬�>�EC��Bc+��Y}L�Ǒ����0[��h(���Uݰ�VVw}���t�e7Z8�a`�{��CE ��#\��`�OO�#6O���v��;Y�w�����ǕYآ��ǔ���=l ޱт���p:v֎�;���FȨ�C2�����mHB�a�w�$,��W�o���}��duk���(i�y��/W#�=� I�?>c��g IR�UH�/O����аշ��6ӗ8���ȯnq c����BE����p���%^r�?��9��ɹ�W��,�7�'Y�B��F�P��Ẓܗ,��w��a{r?-pd��h�P�H��RS�'�a�B�O.w6)�݃�D�We\$Qg�u�('١=�=�WN��ڂO��s�;���r@�BtgS�*!J1d� ���!G2��d��uKօ��.X�3��)W0���I� ���)M�m+��4f��d� 0a5ɓF�6� A�,��X��:�Ŗ�3�LC����`�g��̟Z4��c��R���#챕$�+�L�_X*�M�!z���~����0v.�8@%$��&�qI!���O�2}��J[(�B��Μ��\��ݙx"�1�n@����3`�-��T*�0�6:��"ľr ���J�����9����|�G�=껠z`c�e��\zK#���k<�� �.u�3��� �����\+ G�C' rI��l�:����q��?�*���ŀ��r��P�P�Ԥ�4*ɘ�;|S���v:\&�ɩ����N&�X������O����?�x��V]��Z*1�1u{W8zD����~�� j)��=&��#Yp�Y��h(��y�o�<�"2���q�I�����oF����4%��D�}�ڳ];����%�Q�=d =�T�`s�iϲ������ WuJ�����gO*_ y{t|RL��V}���S�Z�]tt��wgȪ�k�x�lx��)>�c��om�8S�24&6������ �ӵ�u�bRe�������0��(�J����od��C�1��1g�y�%�=���� e��>U�{���%F;�� 9�8��H@h�X�K`�M�B"�y[(ѥ��O�f ECI�Υ� "26���I� CL� uU�yR�� (��BP��@�c�,ke�N��%�6^-n� ��B��z]8HZ�u1��R�[ɠ����2�=������"B�t���%�PG�(zA<xb��>e:������BNl\�3k+e���~�}ϱ ����٣)'$���f�n�g�SI�If�,�P3��+.v�C·y�93Og�����1 -K8�Kq�S�B��5 ��{�7�\8pA�u}��3XW7� u7�Mu���B-� 96�$dVo��f�7�}%-5�惻cb;p9�'��uFK���R<L���q(�5��\,o\ ���T�^r� ����Z9��_m^�73vw~Џ=Y�+ll���u U$�*�f�F�V!�s($M�+)2��S \ ��Ə_����X<��z&�uM܂�� o�@'h��MC��ɚ>Y�GY�}h,���e� �e�h�����h����K�ך����:�u��ɼ گe�'�\k�.H8[�!�Yf�:7��-@���7F4��<v9!ZSs �� � �'-y���纊� O^s��_����cs�cvoi���(�<L� )B ���_-א�� ��ά�^=�g"�uz�v��@$r�]��H߄��Ռ}�;��!'�ҝ�c<����� ���1%�|�z$��\����6���_�W��N��:R_`���fNj�5���Z�в��o��ӈ����Lce���fL�Xa=���6�b�+�&�{oH�k�Xs��rS�^��D�58�iYt�~k�F( ]�0�k�]ڨ>��^��)�!C���J&(��L�:�p�c�U��PN�m��_E�T��^,L�~�����4�J���2�m^yB_VeF&�Jhx���}�~��n��cK���Opi�1N�~�'o�PN����/������O�K���i���S�������*#����q?�������9�s�A{�9v �w3ń-\h��\�R�0%�7uȏ�1�L��`�<�)M,�h����o�6ltʔ���#�(�C/�'^xt�b��&�FS�t���n�N�P�|kU4Cf)�]���tڌ:3p��/(�2�/��[Q�ŷ���C�?�9D��b�=i�7Wa���/1�K��oyHlJj�ټ-.�x#�`��&��{w_�� ĺ�[~�Ԧ'��O���㻃!yo���N/�[9�q�A�;r��bc������ߊ���B���r��le-��'���X�|"�g]Ɛ#yd�vn�\��p- �n����/x~���=W^�Ⱦ����Dx,Ҟ�`y�ْ<d�W{YP�*8'"�3|0� ������9�e&p[Ӊ�[��&'u_�� �T Ң�N�WI���s���"��h��W�Az����}��$�~ӾQ��<�S3aw�x1�? ��*������ ��}�N�Ǯ�jw����g1��+:�Q4�u3�<���h�d���ȇ��W�%��%��w0T�C����Y�!�g�i�h�Y��h�֠��N�§J���f�<?��Ԑ�A.A�r/:pq2c%�Q��q�{�%h0r�j3t��L�!�Ҿ/��l"���ȃ*�+�f���<wa���{ù��)tK.�^ �!��HȆ�FYy;�io�0ڸ�aH�4�u|�I1>Ղ�.����X�`X��%��T��Q��o�x\Я�ݫ���p�痶�_dB^���*�8�����m9S̳���YO �ei�n�����J��� ",*��l��k��.�"D`�J�t!�%դ�~6� 1�����q��O�_r9��:i�Q�Er��ki����xw�~������~���;��d�;&�/��}�]k�����Z�g��¢�I ��q�x;A@��H��6��?bǠN��+�cO���{b"�!�o���L�����)(��n� ��)A��%k���cS��p�OK��˥�3�ɬ�Y�O}��Ϲj����٦�{z��<�a��������z�a��v{�W�7���W9E���狊�����|�[���ib"K, ��-���om4pp�[Q��[[�o�<�Q�I�(��۸�s�Ǧ[�\�����4�~��V{ܾ�á��YR稇����b7��WOaT�qR�K.���~4U9 *��Lʓ+����x�<���Z���OΧ`�"��zj��9_��^e��h��Z��J.��?��o2�<���>X��:g �`;F�A[��K2��_�ѫu�ז��=p���(?�y',�<;DRD�E]��W��g�7�W���waI�W�ݿ�L�=�ʣ����l\�3���RN%5��k��#�~/��[��^o�h���7V�!�ԅ/��,fն��j&�/�����Xa���'4�KP_:$�$�D���Ө|�` ��%*X���/m�S�gd����w��Dc�JĢ�9�����+�J<�� խ����~����T����~|"Z�[���9`J-ͼ�q��5WF�6jp��aB6ڀ*T[1�Mi�V@��Q��/�� �3 ;������ ,�u���J1IFb�� �ƇT8�?�Oyf�X�POf�o1� �������mB��(�(���k���VIf@��'��={�lYD��K�9����Xt�vl/ӣז�*ݡ�v�c��7su:��A36��|�j�V-�)��q�����~�=g7�ヷ����o�?��R�w���m���6�z;�k��j�l�Z��kh����\�:O�\I�����&R��2�y���1!D����R��T�%�\_N|$c�����㲙�B��v���Cn�iA�"�>~>Ӏ����םxZӚo]���Xb�s� 防e��)�� lo����G��ߨ�p�u��6�i"je�3dM�i�@0��б�ӕ��<���O�VGr��г�(�>�ʻ�{��s��o�"s���T��_�88�ܲ!4,co�UQ�U!��� ���ȍ^ʑ���^��g3��)�d�.<�r�<��%��5a�b�?�w䄼����j�����\Z�a�y�c�?�~!"F��� ��p����{_u�C�4�M�Ma���Nҝ�$��!�D<hyM�"�*��(�Hv{29��)$�L��N�������t��uoB�T�S��h �SM�.O@�"��ApӀ����}��`e�9�1ބ͙���{���LX�z�=�4c3ٝ�*]�!�_|�C]愍.7F�?�1���z�p��b�DY��Z�c���~b]�Y���P�0{�'?X&�Czw>,j���c����79����'1������n'��J��<B5���˭���0���ہRP�?Űe�W�`h�ı���-vz��~�y\h�zlc�����7����)ĞP�Xݝd�G�_^Qo>�+��5O��m�c��Jt���@JQ�b���DU�[l5srX/&v咁O �N*w�V�ץ�����t�1��ڇ'Kr|t� ���c����3�F���wഫ��;��DC�'�����w�;�#/w���vq���i�k��Ip��������X'��-���蝬�cԻ)��X4��X����6�x��K�~j �r��:ad^Ad��}����'d7;vA���dp��a'Ɉ�|��q8} ����-�3��� ��l�z��(�@s��Y�"<�x-C���GY�HG���Ɵ�Q(B/�� ���[m���eYJ����c ���gv�[��#����\���Ze�{�W)�߭l.h�j8�rx�c�SW6�g�#엑������`L����o'30۩ ������!����H�L���2X����1C�?�P�+p�wg�F�g�LGɗZ!�a����ftI~D0����T�G�>e]�LM�ƅ���哾�Ш%h~�@x�. ��'iFw�P��Ԃ�����p���R���sB�0��EY;bs_ ��K{r�6V �=���tj���ܭdM��ʭ�Fi��[ ���"_2�p�O�����h�^�����1�6O�C�Z�$1����$'<_�`o����?J���#� ���%�}6*�:�khm�"�.pM�c�GI�K�P�r𒔙� �����GN%���F1l����1>a�b�h�Ҟ��bP��U��`{W,=@s�"��T�7��V'z��R�P���fLt�|�e�x��XL���@J��-���1pU�j�>K��gM�t�mk�s���#��� � >P�1�5Zw��&�GΈU(��)�^��#X=D����0���n%�Ye^ǂ�3 T)��H�|œ7`��� �|�4�F�����#G�p�|##Z��7��y!]TCa^�N4I6�D0��!R�U��������&3�-�25���;~�N���r�#� i2`�q�L��<0]��uz�z� �B��E��v�8� q��B����� �B�ը��f<���^�+�)��<�OX v�m�j{!9?.��U��� `�?��r^�%'/јJ�HFqT��3��\�Z�;�yTG�@5�#��on����'�V1�=%�4G�V���}XG�z��h��cN�jX�Y8Ŋ�-h;�b�а���a�����ל�x7��z�F� �i����'�7.�iΞK�U� v���~�1*.�E����P^��ԇ����87��]�P��qa�ri���)� T��|�W RF�|ȑXĢ/S�����>� !�ڡE�&�3'Q�pQ^^m˜�����}� ����Ά[P�ѕ��s�!.�TD�4�1(2�7�ӓ�.�?�W����idW�a��(O�s��9�l7��w��~a��+ �}!j���GO��\��38�١ B2/gm����/o�s<X�� ��Ib-8ƶ�!m���������a��T_�C5a��X�D�3��2�ڒ�nʞ܁�+����>J��*�������`P�:a��2��C^U�7#Ja� ²>�_[���r`���EY����~x�M�H A$�3E;Mk8�?�[A�N)xҚX:g? ��+�o# ��㟓H���Dž�j�D�@˙Ƨ%5e�H��?C��n��sv��c�l���ВG@��b�\��\��u�o�_(n-���lS���l�)?,�CػU_�ؓ�ͼY���I�W������j�D"�x .��P6����, ��{Bk1�N%�C�X��H/P^�_�Bޤ���%�!"�@����h� �j�D����م��:|L�$���+zi,�I~��ؒ��t���b�֑��[�i��x�/)`t"k8��CrȮ�{&��|#�BK��$}���ϸ��'�#��\�f<l�!�W+%i�'��_��"f�Y9��~��|^��y@��W���kJ��a4�8 �c]@c$���"�j��A�B�c�4�aC��J�������C�h1�X��Rɯ���u�������h�8ED�kU�`kh�^ߝ ����MKf�i����yላ[���Ci��+Ϝ����6���k8)�i��Tں�V�i�/[g�j8�}��a�Wd�4�hB�%��e�~���&Ɯr�^�M����D,$�wjH�h|��:� �2,��g�1:p<�L��n��5�5�SI�wP�3��:`N76"�A�e��&V9"K����@���v� %�9!������дR�҆Ÿ^}�\jU7{y�V &��o��k���;�|��K��� ����$��"�g;03M�ի"�d�J_ʑq�I��gġԥ9����]�KtYj�8�!u�_�J����L��Rxʵ��L��qc/��9?�`$[r��Mw��Wt�2�.z�]02$ |ޚ�L�H��$O bu�tAr;3Ũ�Q3uY� \����g&h��J�{��[�,"��� �E p��^�5k�g�L(*Mw��8l� �&ͳ0�1���,�ï��h�����T�_��~?[�(���� ���G̫�N�uC���A�7~�;8���{n�0B�C�0ۂ��C�l"�.ǔ�u; �q6��ݸ�vɁj�Wܩ��&k2t,�����)�Dm��4.WmH�={��`j���"�U�5�o�T#�Pʍ�#�0?E��I+�I�{V�uSF��{��knR�hs�*�yX�B�v����>)g�^�$�����v����Ȳ;D��y�����|�7½�AՈg�p�p���S~�Ӹ� �y�qh�U��np��Õd!�Q���0�j�4����R��FZ� �I�+�ᤑ�ZZ WP3�ا��O��VF<sl�n��yئ�R���aX��%��%��ȷ��R��'���ǁ%�F�կ�K׃���������M�:��;|z��k��TrC�C}p�����?�#h�H���7G�7�n�sC�� C~��:'.��#���W�gj,�&~�Oj�l9jV+����r�;e�)�Y�K�_���8�a�6��P�ɚ�S�2f�#ޠ ��H1!)�VsX �f��9*��u��Ce�?�o˘��6�R-���om��ȃ��6٩=ql �hy;k�u����':�ȲD��9�9�KR�7��+dG��w�ڎ���F��0U��Rm�_�NE�՛g�Oi��?���И� ������8�u�%�\(N:S�QPR�R����UH���L��(��n� Ve>�6��w� N��4�|5����h� �REY!�}r�s�[���m��!�9ޝKW����E\5�X��� �w�j�����3~w�s.��{z3��^�v|�n������ǟkn���O��E�[PN���L��Q�-�2��7a�$"��\����&�RN�ff�B�Q�ܻ�$���p�Ȧ@3PO� ���31�l�@]�C�y:�5�\G |A�K��S���%lgNQ0z�rĸ���[4�#�(_8��K�L�Ӯ�5�r߭8��ֺp��U�]�w��� ����!@H���t��S�7���H��$l�Rq��g��^��|W���4 ]�As[�����u���Ņ1�N Ќ�g�E��ky�a��xh��Xd�l3W��@uq$����BH*�l���K���GT����9C1���f'@��6�P���Gq��w�!}|��:��Y� 98}}�~��u���!T���f�+�C��4�@e<��eE�;1"I�4���ɢ�#A�������uAdD�4�`��n�H�f�8#Nnj�����j(gM��# ���;�w�iYfzu߬��Z=]�.��)���5wV?�kC�hǃ���ywC:�S�v�����5���3�$�^�2�U�/@A%� .6�ڵ��J�����H�z���Կ�Ŵ���@E���4P���@[u�c��ž,����`���U%G^��6#MTuq/c�#�(F�#���������ҧѩ=d�Mx��"�;P�xE���ToW���J9Q�8{h�{*RN��, ��̦�Vh�B�G�b��䷱�A��$���)��6\��đ� v�猴B�<G�Z �1K�9�B�0��H���/|+�f߇x���jT�{.�Am�L� M�v��^�Y�s�p�)[� ~f�j�)�_@f㜷y#�z�E�p����F�n��eiȖ^ R��MMU���b��u�^6U�8� �ɦ-�ͽ|�)%��3��[���hI�R�tg���*7>� �O��i�Do�%��0Ƌ���qCd*=C��u=;I�њg����� �Y�d�{��@<b�ح {�P���p�I����V� s{��H.���F�9�-�W�ui8�8a��Zw���aN|���c�u*��y ���1�P�`��c�R�9�ų���S�ʏ;(��!�VH��J���6Fթ�1��{x/)����=�V>���,�T������.\��جYQ�` ��ܳ��"�\�91���e��{�2J��� ���P��G�d��>��Y�OI�4x!2@i���*�ٸC���?P=ӀLp��Ƹ�!h���|_��7�V)y4k��`.� �S��^�:��p%!��x���:�Io),��pӞq�����6��/��G^����2c�Zԫ��BZ�J$RL���g��v`'O�������k!x-u{6�ߴ�tY��{Y%��VkT��o� �'���Cc#����t�;�"�������H���[C�.�vU�iG�[�;o��T3 ��[y�"�>�1�`� _� p��6o= 2�����Nb���e�Q�:�,�c�@"l��� ��?�'���)yyɩCB�|��)ѫ���NaB'�(�.�����LQ���ޤa�B�n�~�:H��_ �y�����������]��<5[r檷���"�\O}�zߟ}�o���<��ܾޜAn�x`4�/qk� ��10�M���������U��P|��!�u3o�\��K���)M5>(���[7�Ҳ:0���mr���,�E{��%}�U��S~�)�s�h�Q����ұL��#&z�H�Xp���u�6�>"���=r�\3ssF���fUj>d���h�ϔ�i.�]�g(�|����ɺ�sJ\���-�2��i@mbRId���)(q~�|L!*ANR�ӡ�t1�k��ú�C ��u�y"3���/����0�x��T�]kq��v�]x<[�GMMf}�(�$�^��j���7n�S���H��)���NPq�)m�]�v�%ի�I�� �.B���b���h�"��mQ���#��~�00�*�Ģ�%� ��} E�`P8t[�2�$ NEE2��?YV�}���u�pvH�|��=ϊr>G{��$�)�3ׂ����.�z�L�'-E�"��k@��M�N�9Ȗ��Y���J��O4S~ʨ��Q��h�Cԁ��&�5*��M��Nr���U�Fʼn�m��F� �xO�*�D��y��m��O��/ �戱A7�/���S�:��T,ԟ� v��.��N�g��h��u3�{������J��^u��ܪPK|��<��f�[,�v�/�Rf�J QzSO���4+��:�Jx��W%jܽ��K��~�Q������Il��]��졔3j�+��ib ���Q��f3o��Qs���� U8^�ٺ��i��@��O^�mO��쀹O�%;�[�o}O+wǬ���0�KZ�N�W�l�/�[F堬�ʈ'O:[D$�ш����d��o��|]u���d�E�s��p��4V @���(B!�G���y��iJ�WJ����0]�����2�b�9��TG�C '\G�s ��[a�՜M�k��B6 >���a�e;?k��K�K~����F�F��T��:Г�-K.2ҝR��q��h�GgSԺ*�_��I������n���7e\*⍙5�v�F;��#Up���N�������X^,ֵL<?Q����Y�h�?f��r�� ��WIÌ0�fڗp!'O�:�F�_&�_Wr��K��V�����>w�z��ֳ��T�x�1h�����ht7�[��(�[)����~ӛ��d.Ģ���v���� ����e��=���4coi��}Q�+c��ņ���������w�ޕ�P�.|=��7TXp#����;��.���l)g�N�-#���iQnK��Ȳ����������TYw4s*0h�f#�xv���'�?մ�̘���U��TE�ƛ����Zn<c^�60��-��M�pAM���:�}Q���\G90 ���FA9��9�l��0J��.P�"ô��U���M^��\�̧ ��J(<8dC��i;%A{�3O�Wi߅��Z�m^�(&���T䩉`MO!�]����$���=ѱ�! f�P���~٪c)7����*��9�S���+i�TO�9���WF��5�Cd�tB�[���l&g;�ݚDAZ����V�gBU�]~�k�U����eC h���P_�8@nu��Z&��w6��$qž\��B�gC�۲�0���<+�Ê�JzK�����§aw�}��&�Z��?��R������* �@�|��Eg!�-�B��я�ŝ��Qׁ������ӗ७�3�L�Nա%_i�@�@~�0K�-��ƛ�z�5�[]S�ȉ�hB|%�b�G,O�{e%�!1Ċ" 2�BW��sf>[��>��ys-s��H�wT%f��n�4���0LS6dߛ�aqw�*�蹨N�#D���f�r��1��V遑/�x;��Mx1]�|²v��H��A�Ӊr�kz�:w��_Vn���ҧ�zg�t���e'��T�Y�`�bw�n�Ǚ� �ZW�x�g"_�+�or9''j�E q�$:Y0l#�G)�3�k[Kө�.u=e��Z��:6�8�s�y�lcr��5�'�em0#c����-Nl����{�����}�0�h�!�����$�v��,���eCg�vk���Ļ�A��_] ^Yf�a芅�>�A���S�&lv�5V��{4(�d`�����wf&`#��QZ:s3�]z����lxD��C{Eo�ڕ�G��%c�1�2}����0N��A.�:�`���e�1��t�X�?���*��94�4R� �]2[+���4N6�m����<ul�]B�m��uR)�X?����\Z�Fl���5�旽����z2����*v\n�k�Mf%Ԅ� UT���X��SJ �"�5��R���b퍥J] ���+�Ke��$k�������^�3��\<�}����U���;mX� �YW3y�,���I}ΐ��T'U�6��C�լXR�}�� 8.�A.G��ad�C�4�� �,K�?��d[I�_#��.��?�� ��!�������&���-�E�E:�0�ءf�]��ܓ!���/��u]���-f���bV�i��2{ ��� ?ާ���&��_���_ۻ�Բ��b�5z�i���<����$��5���"t�[��a�X�u�M��K~"�" HeYۼ2����F'��[|�y6fK��r�f+ڄ:�"�&L��١Z� �Y�"C;9'��2��H��M�Xh��L�!��Cfa��<�kWw1����� -���٨���Wct�X,f�@ʌ^�r%$� ��6�#F�h�t�6>�irڛ!��i�?k�v�%� V3k�Uի�aE�J(��Q��.P�%;uq(�n�����kA�u?CR�ch��d#�_�B@?�!��P�ĐL��m0a�i�ng����`�mH����� �:I��� ��C�mB����~m+Y=l�q������k:��f}�}@_s~�v���C)9w��+w��mF*��k�{-�;����FM���@B#&z'����9�K�#U0������of{�� F��W�����KZ�W��&Y@��+2�FJ��S���P,��Y[fB/G�Ia��G&Ħ��5r�i��\�n�]3?���W)O���V�}g�4�_�,��]J�WYj�}���{�%6ikL��EGi��H㵹��DD�Y~꿐xM�EA�>�& �$�n��/ �����Ķ�еÎ���̲����g���R# ��O��6 ��I���C�l��$������{����,�<!nt�c41�ORw�B�O�k�R@p��:�s�����k����Fʜ�q��ƭ�&*3hI� �M�;�C#�/��@"��Bf�xi�jw�OJAM�����T�1�wϦ����VԲ��;��o�� �is�ՠ�s�7S�g.O��_�9�\�ɚ�'7�Ä{� R� �"�'(g�ia��ju��k�6�{2�3[{�|kz4^�8�r���gp���-� �be7;��$�`��8��S�6&�Ob1!t:������Ԗ��\>p��y������$@�cN�#+�d�7��Γ��&V�e��Dʛ�`��l���^M���$���;u�=`����j�Rl��u� �A�0����oD��PO$�l�sC� �W5��#���+�T���HHÉ��0�l>�*&��UR�Xh��w`�dd_��� �0&<���}�`�}�����V�k#�4.*)`U�֔�,q�h4��͂�C�]"b�Q�����(�T9e�k��͜L�CԓOS_��`����_$���5p{�' El���r$Դ)�����F�iV�x���m��&���Y����y=݃�hB�F��-�uB':�0:�x�l�,�ˆ��C~3g��L>�Yݲ�D��NR���ڦ�;��LK�j�.Α��S5�澬�5�X��+�H�-E���DEg�6Y�W��L�L�蹥�ۛZ��:5�ۇ�ӱ�NQ�ғ�^����\ ,L��|�q)��[Jr�"@���5��S��[����N��깒o����99�4�#�~$_�b�L��j8T�5��w;�(�*�wS�L��F?��(����� ȯ�Jd;��QG��M�`f��:Owq��Ҵ���3�BxArnYs&�i����&ui ��M%@;i_��5�b�Y��;W�/L��K��Z������<�!�9�d�6�~C����2Y-�G6��^�bVFu�\roͣ��6��xP ��,�N���w�D�u�j�@�y��T P�*���PwF��ldÍ�`�N) �$���m~�L7ÓĦw暆GXh{�O�y [E���8���}�[�p�p�MV*�jG`a8 v�~5�O�� 0����/����{�(��ܮ� O�I��?.a)���8�3��{k�+��h�3e�B��F���]��[%�� !�=׳?ֿޫ���P���X�i�褼��.U�,Z�ËW�����O� �U�o=���a�V �z&k���� h#��/��?(��˾�\���1й�3e $R��Lh)�l���PE����%��>���C��ΏR~��������&z7Y��v�\Җa#�3�{�~D���+����Ux��� ��z ���ǺF���f�������R��;O���V�i�5��V��1-�q��.߸��AhR�v�(PY��0�L+G)���OI��л��&�8u�(� .ҡ? m���1�=|ߪ#Fg�Qz@��:�<��ŮZ��;��׃ʢ3/S��P�*L^��� ����"���&�r�#mD-> ?�Jy��}����ɔ��tW.�Z��!�t�2xs��"2ڷ�dO��^�o*��O��lĐ&�"J������H�B�5e֙�Wv���<����`�h�hx���BZ:oIjnlp�����8l�0�l���ş{��>����W��ԎP�W=�^C��2�d�����e�*��.��m�2�Q�sK��7���#ZVf>�/T,��1#�O�άφj��ɝ $�?��.�8�G Z�J�hC��j��'�B��_ ��5��-_�_#�%j �p��D��NuB�{��?w-C�M�8�P� ���:��"ѩ\T��Q�/�Cф �\�+�<2��\�9�u��%i��1�d� �ـW+ᴔW������m��TI:X��u��_~U:��) �h !~�a_�aH$���ōb��'�Ճ�y0<�L�3�����\�w)]s^�V�Ѡ���ȩG4#O�h�����Ћ��C *)�ruѻA����~�%� )�$��6뀑#A�d�0���W��`�m�%�o���B3�jS4�m#R=��?<+A&Lrp��]6Klu*I5�ƛǐ��p؞�a4��I8 ��k<Lɼ���! %�.�N�����ȼ���3�D�{�~� ��C�֜� �ez|oA�e1RBVD0��f,�XS��s��S��?*��虫����e�^�w��>,Z����}�ӈ���N�a ��̧�ZE{<�9EI&�3��d��"i�.��E�#�j��\x*���b�7>�*OƁ���+b��Q�����g*�� ���#ប�^K=ڔ��h��ћ��y�i8�6��5�;������{s��t�Cq����r��Q�SMS�D�n�PMr]!x�_>��m<R����ޱ��(ګ C�נ�W�'�V�����<4� Y:�,�v��s�S�G\�UH~�X �_D�A��y�k��K8L�.�\�+�U�`�$��r� �ϛ:���Z~+R�rI]�<vmK:?J�h)��{n��5�W[c�%a�$�k��]�kظ`��VO�ᝎ�k�uVsh@d(�l�s�pE��2�Q�1����~�����H�%Ō�]�lH"�j�\��v�� Y�~� 0awNs�j��J���~C�y�zo�3xo�FR>�|l'k��E+Q���ֿ$"�P]���9ue�b�;�;�7����!`l���W��!b��]Ĝ.OQ�.����e��k ���0�59!�w��'��&��i��$�_�*�x�����ª0�YTS�r���A�nQ6��5�03�u|��� ��2��5���)�H(�H���g�i�QJ<�\ԫ˚���veK?��O<o:R�sl���̣Tc�3 E�B=��eS�4�iD��1p(��V ����ֵ��WՃFY���E���p�ְ��2A���hMADg�m� �H,j~��_&�|�N��'�k�tJ��5P�r���݊;\�+� b��BhA-�iű0v"�b��sb�E�π�46��϶_M�7���1����Q����8����A%U�M���6aU��@�;������]AJ�Є�6?�K?�q�x�r�x��.��^obv8���:\e�fi�:L��ņ�t��c��c@����dbY����I�yı�N����yKh�˼PI��N��1�������0��j�T���E6 @���x��s�v�H��(ٜ�P��8̹bG��)��}��Pݯ��3D�` ���yl-��7J� �G�6���4��Tfr��,���Z3�_�J������Qm��+�Qe�!�q�!���-�f���o��*��w*�ƺ��'�m���6b�v�~c�zj�I�]��;������OGI��R\apv)Dk7Lj����J�0�-}�&�� ���rb��4�����4[f.�5G7��d:(W��ؾ˞*0�eiy( &�x���OjS��L����5���\��䟪.��hU��C2�)�jo��Dwz���e��#��'����K����N�,{�L p4���"7�:g������V.|�;�ݶC��_�z�U��l�z ��En;�_RF����Öͯ"��u�B�Y�sԮT���ς�[�*���n=����0�I����ޏ6��I�Yd��g��r�5i篨 L`��}��cESR��}5I����Yu��.k��w�[_�c� ����(�X�f(8]��ǻ ��(U��&&Fwr� ]�� ��T�!*�X~6�;��x9��ɴ�~�Y��x���όN ��"Ր�aQ�C�/i����l�Cǿ�S�7I$�&�9�R�}!ӵ�L��e�𖠾՜���p���lֻ;���M%;��`�E�eZ�����_]�v �$d� ��q�sUíxED\�"���%�TX{�5q<6� yBT�л4��_+aρ��ԏ��h9)T$��`}��D���}�& �����b_�F�n��s���3_�J�E��@ݞx�N��C~��"� [��K7[;pw�!���Md���p���C¨��->�<4�r�FCEWI�,��H��|���皉��-?���`��rBF>_ǸDL��) ��/0��k��^�=uվB��9�//�E�� ���f���ѵ�k�.��SZ}7W7۱��Ѵ;��sƒVKO�*ܰ8{˧,>O�U`�xVɪh/���|c;עbx#��-CA���R.��-���F��b�9y�̚���RO��)1�|)�R�+�?D7�=_fcO���¶���� ن�U�m+u�og�j��w�E�Ĉ�v�z�)8�D�T*Y�4�{���>| � ���,˝m��u�@�j�&t��шa��i��d`f�ƭ�0l�7�cmWV\�7��٢�X�YH�}�:�ti<n��ö��aw31P|S����c�]��+��̥�8�9���T�. ��Dh�xq�9���&"ע���*�UUo�3_][�_��郂�S���2Ij�Ü��xFd�9���7���ܵ�����y�r�h-�E�.��7�^2vq�?�A��X��.�3� g/qL��mF�]z q���$ꟻ(N���,F�7����d�9��k|@�����sn�����g���Yt;-��1x1}x'˝�c��1Ռ��-���TגJ#���|$R."q.�U �6�Nq��_a�]v��S��?�Ӑ��}��=<���ŐQA7����l5>=� ��gh��Q�j��S�Ҍt���~/�"�~ѫ��`Jo��.�ӻ�ޱ{]�tԢ��������"DC�?�}�[�nC��1!I4|-BR�/���ְ�T���� s�4�F �<��Z�.2���6�d> �ߒW��~OܖwW��-[�D9����1�:�O�k�4m����+r�T��x���RT����W�ZGSʧ�gU�z�oŜ�4���CB���Uf���v�(J�g���-x���:�H�t�� �H θ,}�Ξ�d�r���)��7Щ��b�\Ȼ���n���{%vrm�뉓�zp�ޕv6V�"hC���ry�玚����HAvޞ�0W�&���m��[��zi��a}�[]L�S��e쟁;��:\�x�ۅ�ٙ�H3����KOM���b�DկF��ӟ���D�e��N�_=��"LU=�r���eߙĕ@���ҾW82E�W���$��� �J �7�f=�6���X��S�F9}����{��0���n��)U�Y�թ�NL�X(j�W��z,%�Y遽�p��Q�(�k��"ƁJ���K�w���W�A���"'����rQ��L��e��g��]�ܪ���\7���M����H��!��:AVKq�yuXa�RsniH�i�]�H��A���ډ֟���<��1"F]�j�@�Db�"D���o8p(C�iu�'>��ǑN@ڴ��|lh�ӲQ�������f�����N�-�T����`�.���q�VtG������A��6���v\�h-΄��1c�k�O���r.;I��v���fCt��%M��]���ˊ ��b��N4��� ��/�}J-��F�8��za�f�����0�O�}-�)g:O�8��5����m���`�CQ/��GA��r��7_X�U��=k�G��d��>}�3�RO����ķ���l���tT�� �LG�1$P�Y�tVѻ�~��K��Ҝ��H��r~��`u��}�5���M����P�l�K=]W�3��bD�%�d��+J煏�HW4,���ԷsE ]&�S�W<v� �� ���x<#(�g�E^�G�U��c�5w5a�cKqH������+�Ӄ��C��ńb.z�8M�}���3���Kb?�^6S���w[��~��S֊��g�֍Ϧ*J����$W��W��v(�q��6�,���ʷos��ܥe�� �n�J&�(OO8ٖ����2�gz¬/#f5I�/�-��8^�k��)����^�!�Q��@�6� ���e9���~"�y�0-���^�ͧ��v��Cg��E4���~�J=��hC8��Z_D���NE����~��)���Š#�_=�pU�/�m�b�'�7�j�]���ڴ��k���CZ�>+e�o�m�}�h���9 �n��2�C�%��$�C�9T%����#V>���ك�x��O���邃��ߪ) v�~ME���E�s�YF��~���IO`/��p�;z����~��&��#p��e����<�����M�f��L�W������ �;���y=O%^B��t��(��I��.j/��XC���= �2�27�X��5v�*��s�%L�J~'J�Y�o�hq�v����a�"�o4��(�e{���|�����F��RX=&��)�x�����O/�����=��!�������L��k?��q�ɪsċ�l�]�����60ֱ�1����#��n]�A�������~�ǀ�mlUD�!�z�������"��C�[eI�\��B��t\�-oX�u����q8Q�x߽%�҂�2�M�-g3�������25]S8k��3`�ogB��?�3���hILֳ��zϏ}�%G�$k���8⹄��o��?���������VF+ϟ-Yå2��k�,�i>�7�8x%���v����}���7��>�r ��ュ�x�8�P ]��v���Q�p�8TD���:�G�jO�J�8��|�B|���5N~�C/t��%S�P�Q��*J�p�4��is��f,2�i�+s��(3����n/xaD���Ց�d��ϭf��P�� m��p�R�R���6��U��;��.�.Wi�e��T���O��X'�ւx,�V��۩�_W��S��h�2yo� ���3y���I�����i�-2�fg��^_�;��4�MyG�^�_��`�Y]m>(X��걂]^�}�����j��~��7-8�Λ C;� Ԑ���ə��LD 9���7h` ){Wpi��_�����������=|,G�\��oUNbls�l@tXX��A���x�*�]V��,�SG �b_]�#��4;V��qv��;֚Q�R��t�S�r�4��h�#ߤ���aAE�q��Ԏ:�ZUl�03*��j�s"�`��W�R�yh��ҟ�,�k��4��\>���u���jPn�I� !�����O*�Ѻ�g���qjrTH�n�J�Z�8\��` �`�c�����`nj?Y�g�H����at"�k|��;X=O��ݡ�K1@[�W��.}i<��5�Uk���D�%��<rۚ�;���h�W2V�L�F��L�%U77���^��x�6��f�B:Jܑ�̠��yX������c�����$B*�e%��m��U����o$TG��e�.��!��)B� v�>:,7�]�ˑ�,�@J�������,� ��kF�Yb��h�^�J�{&�C�#f$�c��{��fc��p���O{7�@j�"�����[JT�w$�G�0�84-��S�~���y�B��d�c��U ��j�%�Pז�n���̲*�oJ R�e�ifngCۨ"�{+�ا�s��PP�sw�����z6��(��nH�S���]�������8�ZܯldيI"�bx��N�\�N�mNCJs�$ӽ�I}������{� я�L�}s�&�k�������̋mah::K��kj�yI]l^cZ��N�ƦƧn/�c�h�{�2�M(a����BG��QJCr����RB��0A|�G��=�^Nlj���4Gm�p�}>zL��{���Lo_4��d`G��H��S���r��*�z�5�5j�}$s4EΚi�`����M�:�I=�~�nB ��(���˦�WUy&v焉8T>Zh���pǍ+B���W5�:�K��3�}r�9)�~A�?tf�@o�� F�j�� �$>��,��>�1�z�hq�u#I���d9��i*��"':���J�nҩk��gAW��<?�zx������nđ���VH�'PƉu~����9��mfc�r�Q^�-�����P��g�E��pRA�r��u%% �O��n�,MS&�~����t]�|�:n�~��?5�y�~��>o�r���O���7X�cH���-�|p��hm��'Um+gΕG�e����s�A&�D���?��~��f?+��B�d��rX��3��qe��.}5���SVh��������#nrm;h� �^������Ԕ�q�x˳w���/�e36&�K�x��+fhQ��zr����*D��9ۦ��.���Z���>�(Y�����g/�/sQ���ć�ft���{峛Z� ū�O�s�a��A���;�7��S�T�q��ϕJ��4��Ru|�H�h9��W��݅S�'�Ҫ�ob~���/�@���X�F�d�r��D�>`�f�7���9�Ѱ�F�,�r��L}�œe�hd]?��e�W%^����߶��N?&z�-�n���pC$�:D8��(���~�p�?^�f�,����M4i��)�#e� �s����>���Q��I�{�fꊜ���k8y`�-7[͂�j���w�b*����O#P$ZJ>�qa���$c�b߭��{���ˇr��mi a>��hS��5�8���j�Z��6��M��`z��~m;=�6A;�F>���00F�2\d�� �6��B��Ϣ��R-��j�LZ���-q�u�S�� ��<�M��qb�Y��C��v��9v�����|�2,��[��y��bj��u� �����Ć4U�"���b��w��D�4�bQ�F�-����e'��k��f02[�4&<� ܒ��Y�������*2�##���������Q��l����O�候a�3З��Mm�� ��ȥ,c��2=�+���j>�:f���C�C�=ZDc�B[��k~;��l��ާd���3�lD\�Nʏk���h�ʁH��MZbt��?k�h���7E�<�3M��w&B�����^";��͚��+��ɝ�������Je�h��m��2�ԕ%[����<��~���ׅ��EU[�&�&{(��9u_�^R�Y��tpu�~���n#�w����/0�^.���ȩ��/`k�O}����T>cݞ ���(lgq#��9!�i�zp�:J�96����s^���#���ӹ�L����j�S� $?�ב���X>�B���Z)�[�!���#�QOwi������b虈V�O���]�U7��I2A�C������#r���c�4�S���PM t��lO��l��,*���[���E�I�=��z�9Yr�=�o'8�33-7�=F<%�a�ᚣ�Q��6i*�я3��b����]�ϩ�qT�-SaDz'/�k��e������V��K=���FAZ�N�������Q�sڨ�ŕa�jaM-jp�g���}HpjS>�����xǙ�#x�. ���a� @��H�����-�C��c-G�e�;̘�t�adC+'>Rf���?�O7*g?A�z5uu�kh�;�Y��C���xy�j�E��C?�*F���5��`@^RO���!ܖM���=��J�� �ͼ��H[j "��\^X,�@��7�8��Й� ��%�*���O%��-��B�g��}�J� \U��mm�F��K���=��_�N�B�����4sɇE ����� p������"��6b5`i��ϕ��cQq���f7K�g��Xy����t��k��J�NH��j�RV�m'���_�0�սd5�'bgFgUr�ʘ�$z\�O8z_�Н��~���ݧ�E�8Q�i�Q���L 5䛉q��"�F�e�1p��s��z�q�5v5+P�F��d��T��"�@���m@�#>d�xǽ���H�$�6PN�!=:a;���-���ZĎh}�[��W>V)Kv��w�M��P/o)6��ʭo�/���-qZ���́l�7`\����)&�#�ݵ����AƈLx��h�p��Y�j��E�=uJ���5qZ������q�,�xѮQ "���w.>R�5P�dJ)v�SQ�T/+�0n�@N�z�E0ٺ�9D� iC��^�V��� �[}���mAḪh��O��q��%���Kx����G�� =/a�1 ��$�h�m���>�a���Hh`� ��[�y�Js�Z"[�q��쌒R�����(�w�t�+*�`*�s��7�۾j#�w�AY��MVEK3^�-�O}�rD���eWDV����sWTFTiq��T���g�M&� ����i-��K�f��#��(~�2��{��S=���ű��3K� I�V��ӯ�����>��"�u1%��)��r�H� �a�u��9;�"0�:yK�\�8��F��`BΛGޒ�T�I�;=�.}� ��۴� �_�����ހ�"�w--���*�z�ut�F��U�%?� �"K�7��6��O�� c;g���gS�S�-en� $:�e��;��F��S�W�̛��4#�V@F�}F~����x���B��i�x;(�=�_X��Jl O�fn'R a^v���M}�說� �Kj�1u��� e&���ȦE��Ǎ%l�Ƽ�}�OK�G��^�){�7�H��_`���Z!G��Q��[w����&Q�£�A�y z�a��N@�� ZNR���5���NGö���FC��: qh{�j,y���P�J`����Z���f�ࣙ��Xx�OV��>�J�ůJ�Q���A�`^M���b��Yc�5U���g�W�J�9��P�R��V'�ٞ��h�r�E3P�8@Q�K��8��L-?��1L^CM�] �/�~�Mc��$.�:�]�?�k�߶�E��a'�A��'_E�9��P>� Bs����� �&+��a+\9p�hʰ��f�)�NQ��5�z%@$�:P\��/i)�{��_y[�=A-�SHIJR:�1���yF<�r;ߢ��o[��p���%>!��Bx� �@*�DK\��[g Q��Q\ucP �+&X��4�\� q��t��%a���<��-�ό#D��M���B�� ��A GEʹ�b��)����j���Ֆ��boE��Yή�L$;t�C��k��p1(Y����Y��*��-�uNc�� |��}��iLŇ�E�H/��R!���dg9�;2Ɨ��473ާrv���V�*no\��0#(_犅���n��-�`Vo>!7�lh�k�Ug�����'Z1��_�:�֟&|��Y�>�&�D�u{�yE��#4��\��k�{"���;�^^�V���\������|�:�Xh_$�܇(��b�>ި�3Z^|�[�pa�@]�#�v�R��>�+��=;)g}� ��j�9rۙJH��Q!]t�O�ɻ`�`V���~������rf�����p��}ou�E�/h��-�ΎI�� ��v�@W���Wf!ſ�w�*�P�V�\&h$�^�!���*@l��u�.���_��q���Y��^8� ��[��3)Y8�|��>Fݥ��c�w�8EM��L�W��G6�]�6�)��8� ��r�a!���-d�?ͫ�i�j�<6���7G#0���mβzl��� �˼�-^��6�2+}5Ii?e�6��0}��(��-�+88�&�3h��}݂5�r���V����� v���oiG�W}�]�Ȑt:���Qd �5�����/Ux�?�M�G�S-/�Lt��}z�㴳$�����g���t��V��n�ڍ:�,,z�ֺ����DP�E66=5��u����F�_I����:U G0���h��!2���{��y�Z�J>�ʖ� aߠ����5:�o�{�x5Nt-,"|�X:�~��ظ�:%u�o�Q|�+g��U�q=������rsDm�T�\~��5�8��i{k������EjG����6�D��rI�Z���ق��T���8k������x�0�{WQ�S]�B�����m�,��+1�BVlY��C5K�W����g�hg�$���1gv� �"�j�(C>��/w�i��y.IK�?Y.���za�LF��qX�G����o��*� ���� ���c���_D�A�v������?a��.�>�e�7ٺIe|���*�Z{�����5��7E����V�����^�c�>16���#�y[��b�5�v�=�d5i��Ki34� M����}��$r����19�A�e*��2o9�EN���Lk@�s]@&D)d\ -%�mE��h�p����%�V����������i�9:�� U��o�u��b��|������X*��S�*7ї�8��L����e"+�q�n��.�G �\f�r�ة!�X oR��}��r��x$J�͏h����eq����ȡ#�����og���l_G�����~U� �]��N��+F��l�QY�G|�* �)�mjL���w5�Nޓ�-[���h��s �����X�>�{e�w]e������w^��m������Lwt}�-�T�qA��ZܪR�(�8��j�)��_hȬ��$��0::~�%q~i��#�V7�Ǐ�1��-N̍�=dy��jU���!9�K��T�����9&1C���QʶgcX�N^fl�R1��Mi�&��H�r��}Ө����VNQ�c��:�9#V�mo��u��@��`7NE��$p|�S鄳#Za꣑�Q7n��;��ؼ��� ��5-�d��~���G�����D�~�l���rF$�O 3Y?+/��F���^�� ]��~Ͷ���0�|�*�{�qT'����uf��Mxi�/{Q����x%�x��&��Rc�u�XV��Sk����Ǽrb�0wS��`�R���K��Q+um`-�q�4�b���A�,�NTTZ�!?��i�|����h�!��ӽ�����7�%J��Q7�U��F��Z��fta$�f������ٳŖ��n�R��7<ۓ�z>~�J���� /eL�WX�4L|�0u�Hߛ�]kMY�]oE|�,�J-�P�D���4�t�Xt�{{��s?�4��������Ei�pT`X�8���DųeK��D�\��Q{�h���H�� �TV� 6���|)6U/��p"c�,o��N�M�W�9�B��YX��3�C$`�xD�eh<6������%"��I j�f`��~&�U?�����tO���P^UOD��o����5�cux��z���cD��������Ü@Nz��I0�*�iQ+�f̬B�pD�5[�O����L�_�7�������~�>K�%�(N<E]�Ms�R��J���B�V@J#� ��^|��mF#O�*[3�7T�6>-�ȉ����s�� �6k�#(N� Sո�.����_T��skA��+�G�}���DS�Na�q���vk��=� �#�q�ő-�D����m0 �ʥ���R��(���%��^�<*��?5���x,(�&��J[��h>}��J���[RjpM����Es�ww�^t� m��2�2f��ڻ�0�k{�.r��rAO��� ��A�g~�v9L�*����f�)�xb���D=w��ce������8FhjQs�,^l���<�q����A�1;i��z��8~�w1"��z��yhu�~P��d�)��Ʀ��M���j��y��B�ݷ4� ���@��I}��yD9#�����<�C�U��̏OpĒ�Nb8�GAv�!)���4�.��a�B0���cث����d�xbY|u$/�r���$S�����0]�i]��~�{LV��m1��7E�{��hR�b�rB1��~��f��g{!�bp�=Cp�Y@O6�����6�N=O���Oq� Y�QV�D�g��������JsDx^p3�`Üʏ�y�e���L ���g�Zճ���z®��[����.�U�k8e�����vo�����ݧ�]�a�L��6�@+�[_�JZ�,�.�;2�E.�� �&��д�ǂ Ov����+���J���_��54����p*-�Dջ��36�N&�C����#0�a�P��1ۢ$1#S��f�.��!�7e�����V �3ȕK/.`�]� fI}]�+\{v�N+ �WBb7���O�dI^�ݶu��G�?��d�`#+Y~$ͣ��i1���<y ��{�\IDU:��Eِ㩓C���K�CRʐ!��n;d->|����ur��Tf��~c�����ٱ�G �EE��n��*646I8��'Rܪ[�9���2�iNt{)�"@����k ������MG-�X"�ݦ�eV:�!��x��u3�τ�$�ܝ��ν�r��_�F��t�$��x�F����5qL�^:�����*G���W�n�zb�91�����xȏazddk��eP(A�78 �W��$�0�V����9�{p@�2��ބ?/��j��mA5�-�a�EG�U����7o���D!�[���X�c�DЙ��v������=���2��ŭ_sh�wF��=�&'�O�J�4E.� �x��pB���.��,�I"T�QC�GP���x<V�� e����pTs�.�{C�Q�Pixze{ �vh�50��y�s�d��F�Wҡ�������Կ��>PP��ީ���ɧ� \.q��^���V��~DZ��R#�Pi��zp���h�#Gu��a!�d�&���/�u�n���ח�5�M�B;T�/^��!OJ=�+E������l�+�� ��&��G��Q�\�AQlc���;%��$x�3�I�?n����+�E3M�d� *��o�48O��9[Bh�v�Ǭ�a���$%H[j�A2�&U��T�z#��%.!��<.4F���d�p�X@�n=o�SI/�(���� T E�}��ͫ� "f�~�I�*D8Y��~�+x����Zws�*�� ���N�ĺch��_�?~~����_�Yy����O���m��o�Ֆ%�}]yj}�Δ�ʬ5��.�����`?���#�b�,c���>o�&�9w����2��������� �� ������ྦ�M�8�2�sxX�A�d���Zʲ���x_#Ӱ<J�l�r��l.�`����3�⮧L ��Hȁ{3��t�T�YtQΕLy�NWb�ǖ��x�Ykxz���>�����HꝤi;�?j�e��ӕo��L��l�L��_y�&9�5gF)� ވyqr��|۲�t�c'yH�[oU�(�+.�H�+�C�9`����a0j�� �a�z��'��v\�lCg�ٵ 0��X�S;���NJ\��\�ٓJ�Q��6��$"ni����/k�3M�:�P������KU�ŏ��R��z��1F��Ĵz�8�I����{�A_��)lF��E����6]�Y�Ću1��*����?�`��k���m��t��~���r����L0.{ez2�SC+�X��c��R�e�e{��j��HY�-�Q����À)i��]Mlẉ{�/2�m*���Lte�E��V}�K�#zI���U3+��X����#*P�;�[�b���۹Ҳ�g��|:(��6zG���6 ��|t?q��N�9')�S]�:��@�b�M��v��2�h�B�[T̈ �m�����o����ؿ�4�F���5�|�5��#�5�v���/.�/x<�4���M����C��p�66�%��A?�-��P�0���R ���XMo0�ó���9-^Q���!/��Zbb��� ����v�p�r*�E�(G�(�hT�6S ���[�_N��R�P3�N1��i���qm�MM_t�q�)7InS;�E?�φ6��������j��M��y ��2��gVG�8l�{�h�پ����m�zcB'F,���b�Uo��б�3=��k�vV�@)Ϯ��D噤��9��tL�Ư�j����%Ĩ�P� \�_E��Ff�෮z�����X�Xm{��W�a�a^v0�3��) ]��Q��r#���Ok ��DK���_3��S�+�'�l��G�2�' G1�+U��>o1�U�2H��F ��s��S@��pij3�u�(����W�$=>��J�]W~�e� o����C������Jn�3�f�$��d�/�%�ta/����!��@� +K��)�~�fK,P�Zs�NL�,���j�}��;U0��v�02k���W�"�3\q+i�/�Q��l�N�.�2=���ZYo����zO�{b�.o(ϑN��0B��2�n��Ld+�?`�≃�hs����8e�����c���S(�^*�k��P�H��,�HI���pg(��� �l���,�1��#OGG�>�v{VW�w�C�9�g"��-*3`���{D^K�ڐ� W����枸Td*�����֨�fn���l�:�/_�#q���-�3e�`�����4eB �ntR��MǗ�Xk��#e�W0NS�=��fG�\V��*貼iMJB���"�b�� F���D2z5'�����^�o,g�ۍ�ҭ�/�[C��ȡ�^�`�%�����WWYqr굞4�}�����tR��]��:� D:iL�'Oq��� [� "pQ���;�2� [P=X�"$����mH�Ƨm��s��\$�OAZ+t�� fE���m�S�V�#��}��:��5��?�fA��q�*�l/鵨���_�V��o��� �p��k���G��X��Θs�j0�L��O:pe,ܓ�GR��0.�O�L�� ����tZ�C];(�ӡ�:;��2�+ة����z Dg�re�[�Q�=8Fn�d,����㤡����'(�5��WYkt��W�1^�J?�t���2�C��ɏɫT���b�W� |�ղq� ��4�)��iOD�,������C�/�[��,��:>:_9J�S;��ZK<|_��_r���Oֵ� ����Z0�ճ J��~�2KM�ڐ�t�����y�?�]���]�8w?��)TFx�%�D��߰�6�%�S�-�nj�["9�����#�ym���tߞO�(��K��F�j��IQF*Q��!�Z��Y�^�¤#LԫMO7�"���C��4��Ss�6�;��b�Jߤ���b�4�Cy�V|*S�`{EЌx]]�!�*�p R-H�ؗ�KS[}B��L���!�&�u����E߷3K*_Ϫ�u��d���?�s$�M� ��(.��"&� �>O���� �23.(��5G�#bJJn����.Q{ �J��6��Nܑ�M0:K�>�r 5��p���X�z9pҥG�%�r��������f�lg��Aa"�����s/�1U�"9�T�^& ��~r��4�LM ��6�Xgg�%�����ίӸ�y�8�����@�͟���^j��߭a�D!��<��h�S(���T�'��Y�=�wIel �!/��|f�����`��&�v1.����ت�|$9�3;�z�nʤ��YM;˺`�mI�S�zp��3lrЭ�0�ڋ���;��_9h�2������?��W ʘ�{�����2�Rϴ���K~��x���RW�n�i:�b<�Fp����)���fojK�$h��Ÿ�v�A蜹-�-�����'#!�����5�ʟ�e�a��Zr�Ql>N�ƌO{2e� ��1�O5��5��\�B���v�Φ0�t���̄��tq*��Bf]� ,U�nџ���@DW���>�0d�5�\0��Ϡj�¢�� }a��M:�.v���`~Ƨ���(c�.ݜDa�m�&4l�4x�⧅*��;�J����a��!~�t�uʻ�f*�͌�_jX@�x^F�qR��4�!b�(���R� � ����?D�s���"�����.5�R�M���YA$�)��"�N�Z��sكf5�ĞM+�u�x�x�M~u�σ"���å�T��w�]y�u��dTm�(���.�!���|~Ǒ��NU� +�hۍ����"m�oj�{����mڙ�-''�<a���]˪Ή�ے�LW�rn�|(e+��͵� �� D���ߙAlp���FD@���u����w�e�5���f\��:�D�Վ�l���<�Ri��r#�*c\��d.��N�rc`�������<�8�נ��U5�7n�Q)�rh���>nx; 9��(��M�łdnJW�9!l��$7���^���-��L�S7r�}vY�Z�B�t�&�㜿TO����Z<~�̩��/����j\��H����Q�yh�G����br*�y� �m7��ܸ���(f����m�{0�z7���I������7��/ۻ���߽��D,� x+C��m����)��ǰ����4O�{�i%c�j ��0� U�"���^n����dxU�Bx+X#�4�����e�$+��FF���Œ�S*oi�]���t[B}���Ђ���sA�6���IL�UdL��&Ek��_y'�T]F�� �!w�g���K�/�aNk\K�(�h�L �s�μe�����#*�� T2�d���K�V7K�n���M����� !v@��Sz�Uо��C���Y,�3�WCƌd߃4@����(<�Ǯ�2� ��P0$:���ni��q��<@˹}�������f�4��fkg��M�M��c�-�ci8�0<k<P g>�=��C���[�|���kM&��L������G����WKuQ1������n�^tU�q�0A�eo���Ի8�h������8Ҹ���ǹ��z��Nj}��-h�'V(���!�pÐ�wv<@����3�a�������O]��x�}�dp# �cZ�q���I��q3�����)J�,��,��`�� �A �~.2�ދ�G�d*��#��z��>��6���(�� Q��g�\�x_?�vx���շO��P?_�|(aoo�'n�����F��1Dط�� x�,�C��hveE�P���ߩc�;D��M�\t8�?����/{�W���j~�̊kG�KN�Ȳ� �cD�� �+֣v��a�$�p�Q�_o����/��J�V�T������� �)2�?+�^x��v��QAD��T�N��z�/�YA���A�[E~q�Un%"�6��Ŧ�A��S����Z��V��(�C�j��>�G��,4 �%7�4��Z�'5+,Hh��O��H>G:�1�D�`,���ʼnטR���8a$f-_�K�����N��BNQ�o�/����xY楎�60�;}��8��/p��d�?��<��4Qn�˰ � ���qi����7��y�$)��W!�+��S6o00-N�� ��U���رFv������Mt�ph��c=]�l�=+oiB9�=���<30�A/\�(����]��ӵ� ,�q/�Q�|KL#�m�=*�]���9\=����"�L�o��7 ���Ҟ3�� ��,'�\a�=���%��HҼy�=��ZP��]˫����� �K~S�Mu%U���I�݂��W���ׁ �1� ٿ~�B\�g�o���J�7�XV�@�~����˔���N��]dl������/)�7u��}/���d�"h��in~:ޅ�'>"��n�,��p=�-��',"��eP�|�����I��˚D0<�8�k�G��p�<��&��� ��@�ХwF9W�ӯy��u9��a�h��]��l'W�Y������;�(h��{�~�zΚRu�60�ǩ��v~i|�v=�T�Fo�/�A����_Ν �:��߽�a�!��'/��/e�|�����6Y�C�6�O2��5l���}�U�&������,ߐ�A�1H�r��?2�pa�6���jA�ۘ)F�����3YN?$�p�/�@��B��B���5�7��lb��0���zKW~� AV`3���F��h v>t-�9cc������u��{z��e��H��v�P(\Xj��� ���vy<��G���������y'�I^��Sh���3�,����>���&�O=���׳����k�$���ಱ��6b�X�vp���U�� ౻�3��]KWq��j��H����l^^u���6�r�P��U`}OˈQ��,��m@1"�5~�"�BC� D�fH�,�B��BP.{V> |ȁ"�n�������H棔���*4�"�W��×Q�qͤ�M���%r� nu������H�j��Rs�P��1����O�bF� �[�i���UC���fw�%^*��M���IX[�t� ��u8��{1��o����+BB=m��W�7�_vN�����e���PBT�1�\]'U��=5��vVlҳ�+h[�Xb�|���=H�Ϫ�����$�6����f�v�BE��:�eWy=�(yx�D�8��w�6G���CTH�Z�ZUM|��B��.yg駖�"�����O9{Q����I�MɌu~�Ris�<��+&B��-�$�y2fd�U�k(�SF'��\��ss#�I�4�^9z����}�.�%3�yc���zy�K0��Lig�v�cXlC�H`a1�=�<�"Ċ���:��~R��4I��� ՟��Ɖ{�3���5�p� ��Ɖ��h(#"�Q�ۻ��D$H"nt���ӯ,p�P�_����Ñ6N��·��RE��q��vF��i�I��غf=ٯ�p�64~Փ#4���r���wJ�ʘ\�YbmW)�K��E���]�� H� �YDG{�����B{�����ۖ�D�V�£ē����C�hb+��َC���|,<�7�Sfa�h2���Z�zq�t�o0�Jm(ʸ6�$B�O_�q�S9J{w�o���L��~�[_�y�+,��)��X1c�!M~<8��7jJw�d SY�x��fj�m����\��g���H��9���`,lh.K>dT�Ĩ�e�5�ns��$&\��l!��F^L�n�6i�NjI���y��ܝ+z���s�<:��ᆼ�[�'�ȁ��9�oE<�j�r�����[�bt����:�:��h�*�h�r��� v�b?j��|ZMʥ��E#���}Z�JX^5��- {/V�7��9�ɰ�sȿR������L.3��S�X�}R����P`���~��S��$�Pkt7�])�Jk"1(�T�R$$LӁ}u��2C�� G=��s�F�ۤ�&mG�c~*��`]��0�;��^ �oZ�}��S�i\��}"��y���1�ۼ*-�K�XG^�yk#i��]�Ck�="�h���յ�{Ρ95��P�@F��2�}���[�cGj��X}9Z������r�_��qt�<�6�M��4>`�<'`�m#w=��&���5��6�b�]��E�_���+!���n�p�`O�Z��b���-?�*2�26-��C�Bx>t�kK�d8��LG,���R0�.Gc]�Ej��L�t}����C�ԡ�[B����>-���g���6�ު_��I�:Ÿ��Q8ک�����U���8瓤}'�4q�c�(�+:��?�ocҙ����L'��c�V-�0<b�/�$�|^������eQKe�3[�bCk�QԒwG���!�4hCgQt��j*���Y�b��ǫ�=��q-@1��:�}��`3U�M-�Ւ>ѿ�W~jJY�Pb�I�b���C�[�$�E�ŕQyc�Y����h�-��Ib�q�C�����:���$p�I�-�c�8�^������_���m��<��P�p�fw �7�Ģr�71S�S�b�Ӽ�Z�)�a�<ic�F̦��>bˬ6|H\���e�D��&���1< �k#���{ut��ҋ�����&_TD6�v�hN�� pyɹ��w�ţ_Ҁ�?�����A&�t������(G(s����|�3�5���G�'r6`n:��t2��R� �e0N�K���0$��NN�^`�n�MҾͪ(��-pӶ�n�[���jH�SlF��;�J��Wq��R2g�����B�r����aw1�(㠽��D��ܛEoBl_+��'��Q~�G�f��n�{�_l�]�%b�L�f�FIt���.���~�*6i���[�^,�J~�[�k��3�cR�4�S���䃷�by|����x��5 �a��qHp<�n��%#���������-���L4�p&^����u�PW�|ś��X�|1�vo�fu��ԕ%u�\T�ʣ�<߯y!�1��]�CЌ���:�0�o�|��Pd�s����,T(�dq5�蹭 [nMo�q�"�-&k�\�#�B�PF��P1Oص����[EV���(�a�����8�2l�5u���W��?ޠ8�U h�qf��À�`ӱ� �M���B�CԐC��}��<���{�������)��;� 6�ٶz�0��+k֔j��%��6Y���*h���<��-�9o��\�阫�opD����#iM* '��;�b�Z�l�A���O���pe��w�5>�"���$�_�S ���{ued�r+�E� غ�D�M�C�Կ���Q�QA;Ą-f��G����� K�ܔ��m<NS�y�lx���ճ���/�ԭA �&��G�8C,[:q9.<.<U�ؼ{�\W�y�$� � �z*r�I&�8C)&�V5���=q���K�vl����� ��,"2W.?%�\C�1o4�y�"��@�H�!�2��P�f��v[x�/ޫ�4�Ͷ��^?uW�X;x8A`�x3O�����(fgXn�r뱋�$� �6���<2����y�K}�^�� �����'!b�6ڍ�첰��2�l��I�r��Má1�${'�p�zf,V?�汗П��K���� ^9-��&0��p��IJ�^���Ф{��q'j��u�MW�|1�I�bq�f�rs�a����55̞;��&n����"��F��Vx�R��1��F�~AQ��6����L3v����j�mI|��p���_R!���F�ї�3 ���;�Oq�lsI�{�)�ZI��~qo�*x߽"O����(u�rvEٯQ���$h5T��N�nWy�Ka�R��"R����N��K�O�:�b3}|������|���s|$�8z����h� ���र����a���e�Di�~K֛�V �;i�R��E�V��4zZ�W ]/͝_?/������`9jH1$�t�c`�M�ɨ6D��q��1���1H�$z��r�!�TȆ����۶��w�wK� �#J?��n�Ę�g��|��ܟ��Dk�6��U�Z�Ŭ�>�;�EOg��+R�ߧ�T���o����}k��M�%�^�b�q�StŹ���+�ӫ�{��/X��!���k���+Ϛ�ɺ;��.�ѡ��,�r����Jr�B�>ؿ��La�zɘf?��e�1jē�� �@�hn�I��k�b��a��V�8cM&�術\������Y�PU! ���;��8�&��C��vw��r��ԻDm�b`}�� ���)�b9-�` �cyA`E�.�C㣛]l��Q8�U�G�^n�j#iձ�yfo���7��=]�O�~��Zh�� �+Z0����5����~g9� /�/yM+�YM$�͊LpG=\[��U�5C� �h��Z�~oa?�L�e���hg)C��+E��=��ag Ho�;�e����6\��2�%�~�$���`{�e�n)�~ ��b�3����]��W�_K!"���͕��OZ������PrzsZ�j��i0�|}$�R��Һ��< �~I�Be͊�j�9l?1,Ϡ��<y"�]�tV`g�py}�.��Q��OBHۗ���ŧ[O�I�ԥ�7'�}�6��B;�P<���;�@lUo��AKHH"�)�ɇ���� �<4f FH(@�#�?�{�;�k�J[!��C9")�9�?Q�h�"�b��l�yb�O�́�y=vy�|�2-�;�g�8l�3�3qR�]�R�+T�h�B�i��=���Ԏ�m��#x� -8J4w�Gt�Ur9z 忚���<�L<�`@L냳��. z4�u�!ə�+���%נ�ۗ�Y�vOfxm�$���~�k����Y;t�(!4�G;�7F���n����|��)�%(�x�Z��E�Y�`>b̫����<0�q��W�мJ �Rjv�Q��qbW�|Կ�&�"���O�r�1��@IM�����Zx���p�i|Y,��5�!�`������rղ�RVi�V�3=�&VѝU�0s�o=_��bW��jeUGkn�`�`�/CףTi�ۦ���G�|�LDz«�!�@X�2?cN�^����w;#2m��:l�:��"|�N��JJ/�W9�e+kg���h��=��d%�o� I�u���tw}����Ѩ�+z�a�j��z�\�3ew�C8�?t}���(��1� 逪�ѴA&� �Yg�e�g;ڒw���2p�9�A i��KI��1��+I���t��+7���vZ�GO,`��z�^饬5�(== #�`��1�g�{������` ey��_y���d)�����z�e����z/�c�*S�QHx�4P��3R�{1�rs�V�L:�$Ux�fӎ�>x��;�0Mcۭ*T�d�8 {$�x\����_���Cc"0��v���lN�w��s?pg�U2�ㄵ�RP9�H�/H�Y��E�mV�V��~�V���������M��p[��I�V��P��|m,���d�W�]�n�oJZ*��6���'��J���� ��%��Qq����h߁1��WW��졣���=mg�w�!����|ҊesP'ӑG�h��-f����Z��kZ7�}���%�������}`k���YgN�]+���;q�0�@ �k�}��u��T1 6���"�.&�ì��:C�t?Ħ[�x�b��K�}���\�x�&�]�b��b兕OX�x���g��pnⰡ�3��yN�_)Ȼo���P���-%�=�Œ=�k���i�j�� -_*t.�vI�Q� �2�"� �g��Y��g���ip�'�=/���"�RC��!v�����M-����)i�@�����hn ȑ� LS�f6�# �8S����q)�݅���-�$ƀJ����q ����U�� l�Ga� EZ5f���YX��='�L�;/0&zG�b��>�R�b@�'9z��,��=i�[�z� ��5�˩��A" n��)3)����]>��"�X�͍�<�F��0:Kw�II��;4 H�u�S�eںK|,v^.��%I��|G��`���-����j,n[����D�~�?�`���|��_Yf�&���(�?�=��Oh�b��Ѹ�F+�Ɲ�'Z!�H��M _���ԇ��8�$P�]�����:jݿVW�#[���/����^��R�o�)���(��aV�g�bV��m;C'r��pGog�-l�|A�N�Ä|�=*2�9n�8)�]5���M˺���h�e�-�$ܮ� �}�F�Q�o�ѕ 6��~![~��$%E@�8 e�)�!c�C=�֤ ��$�iD�$S�E�\vQQ�K�������(��(���[D�~oאHu* M��>��>-=�E T�yR[�룚�fɠ�*�q��`~�W!���yɭH� cC�Tp�%�8��&�lc��h"�g��o��_�A&K��h�2����nJ�@S!���A=G��O�v�v�Y�&���/�^�!��.ao�R�TC����I�G�.��B��!� ��Gb�{���;;�F����.&��wA�uj-�Ͼl�@���"��\��I~v]р�9�qY�Af/V��F��ց�-Ԑ�lx%�mZ�]?|0�u2��7ۃ=)��2-12�-5�<L5}2 ����������f�A�k�o���Z��H�,� �uG���DS��(�I�/�^����D����$���[?biJ�T�-y54|w�Kc���|U0!�OO�Rfp�PZ+%�7�3a{Tx���e��Tt�@U��&gAZ�3e�H�& ��ej���|�Z$�ϓ�ܛ#�{#5�6Z���Wx,��$�3� ��g@ =<���s�5~/�֞z�r�AO��X��u^�=�����{�v���U�wB��a�5��� A���u�����ٚq�C-��8����9�fQ��x�7�I�c�r P?#�df]^�(r�>�J ��������A)��gP��n�>uD��J��X$�������zC�I�oz�2B���P9Ċahٗ~�ˉ���@c�߭맟??v�NU? גH ��g���m��8'��QŅI<��r�'L�L8V���9��(K}�k���J^'Lb�SWK� ssdV����`�c�_�T���'��;�î�¿iÂ_}��Xk: 4<H�@}_0F�i�~1�#]-��ވު�H> ���ܥ0��� �j��Ņ{\�+[h�xo%�(;�t����된��m�R��z����k���aQ���o}��c5%��/���[y:Gi�P��9/���{�):�{>��-�k���9z��F/��kŅ��>��ϵ��zE�+�_�)��"ThA�N0A�<�� �m�" @�z�܄�4_��i�G p�-fEt&�S�B�a���F��XZ��!Z|Q�2�tǘF�C(�!nNꆰ�d��ػGg�e�O3���[7_0�#��뺕f)w�z�����TƧ(C�磍�+�N��o ��R�3D$��R�wa9�������a�6�MxU�n0��o3��U���iy+���&;L�˘p���)��NiGYi�c����J��ݓ �,OŅ�jeM��<��5�'���I��4x���I��u֗��0��]���cS�g7��;�b�2��5������t.a�'o�d�^ �W�o�B,)Hzo/ӽﭨ�_�c������E�i��d" �4ǐ� �=��+ �Z�2�g�}oD*m�)y�U��.�{`��rU�j�/�jF�KY ��6��67�� ��t$�����e�zx�nC��.�;��H� x���>�_�Y�{2\xh����M�{eᮺ�[�n����zF��T�i�Bx��I@�B@�����߇�� �a��op��D����C�R���m?�Ron52������[���UN�I��7���Y� (st�-پ�<�t��u����`�Tkۿic쳗0�fZ�� �qwk�����Gڷ�������<�n�ބ�ʶL�:� W��XKѓ�\Mo )ߙO����ae� ��~�9�˧M��W$�1<�N���m�@�r7�Q*�����08�n"=HM��s5�{�y䪵Dfn���%�P��oA�s(* Mҥ�ʮ{�@1 ���V�U�_�錄H_.R���4���*�5.gׄ�g�<�� P���S��c��3�K�,�1�_{����״�+G4f�T@�sM��6�G~�eAI̽�LUH�� ���5�l~���Օ)1�(�^���w�]�W�j��B�/�{��ßM��m�䈃��: ������Y��d��Y�좨�E�"�N�j�M���*X�v��ӑ��9e?<R'��]>nyV�ǟ �ǩ�́ƚ\���8�"ѕ�5��e^5�l���E��D�et�#���#��������S���ʶ*3�-�R+@�S���r=o�1�SN�$(4Qm-y�O��ë��i� ���?�e��ӷTr� ޠsy���8e�P�:\���W�����8����:#��i_��6`�=��/lH�L�[����R]=P�|:Z����"�&+�D�Dc�K�r����wh�����&M�W-����|t&rG����/"F�˼�H�([%�;h��W�����-����L�CLE�(�����k �y:mj���Z~�a[h�s\�1���'۞�?Rhs�X�� �)�H� �~���A�1�_{<i]h���O�#�� ����ϩ�� 퐎9���w���!�D7[PʙF�$f? h�4�e���>� v�UE�d�D�&��/�'�j�}�So���v]��{`p.� *�a�[d5|}R���V�"��� ^F6ɒuJe�p��ta��S��3� �ܟZ_Ͼ�{c����עq�r�W�e�+�;;����b��Ɓ�6��Z���J�e"��+¥y��p���sΫL�5��n��|�a$�+h��S� d����H�SK�����>�x�g��$��PD7nG�s�p��y����<+A�0����'go�RX z%q�n�����$��E�L/�9T���Q���A�HK�M�c?"\�(��m��=V����g��J�����8�^k c���o�dF�@�0���H�y3��)0d+�����DNG%t����w���������,,����١�dy��N�U���U�>���3�?�Zh�-p�b D���j���<-��*Nr�z�-s�UA"˅fC��=<�l��"������C\�kbm�������"5yn�"q;ײ�j�%l� �U��\Ma����ͅA��w����<�������(���EN7��$2�':\�_�ߒ��?J0�d�Ū��h�.���!;#N�=@H�Ѵ��p�s^�z�E�"j�'���<�����߅?*�<�=����Ks��Ð�ru�[i�u�l!5C�M;¡���k��Mt}= ����"����/v��߀mP���&�یև�Xhp�V�(1���˽�����z�&g�r<1�p�Z�W_�B��؍�7���}�cH,*g��A0�w14dp�<��Ky%����}�m�� 'A���k�:�Ġ��]�����|�c�,D�@[�]n,i�Eͺ�;�k��~xԳf�L��/y�Gv)��R��6�E 3*l��D^����(Gsn��Ұ���c���*�~8���&�����9ң�e�x�� ��p�f��Rp��H���B�� p9T��מX0G��i4�8P���gO�Ɔ��Z�I7������>�$�iX=�=iF�)���F��R;�%�{?�{+ʞ�V� %KL�Lv<��!?�W�sBdlA%>/G��xa�Be�+����'6�ҧ����,�2���luu3jW�:h\us�qUd0�5`)�^ 'vĢ�"c��s�T�jfO�ꖎ$����`-m9_w�*�� =yI�1��E�٘2o�S_=��d���9/�4*q߉K�?_�2{��`o��n�f��z���m���7k�-?��X�L5i/[��5�&���9C�٠���t � h\��Xq����p��jx��)�E���i �{���?6��ȍm�PS8�g���%G�J�"۷Ct[�$/ �u�.�_ؕ=��JT>���%�6)��~��pQnW�c��E�����On|��Vʪ�L��^�L��_> ¯IUU��f��L�u��,9K�B��_ �N(�؟H��u�T��P"�����7��uVZqf\��ւM m.�=��7�{��3��eӤI��c����&0��(��f��f�V���g+��z%-Z��rL�����݁(�T1,O��C���x1����ȃL����j���p8<���]ԍ� �_��`��� &����X����t�N��*F�-s@� j�1p:E��{��l^������ȗc�J�����@�ƅ��z���a�V�N��7�2�������~�ԑM�����D�� ��58>��"�T��2�1�'M�kX6�9^�-��'�˼���n�8mA rֹy����M�e8&�5���>�y���xS��eP�ai[w�8�;!-�Ii�=�AB�|�~ |g�0�m`3d1��P\�|�g�9&?�� ��f"O9���۾�;8� �������&�\yDy*u;�bp@㱝�wab��Rљ��*4���%ߥ�v1d_��;�qj�̞����(}�Ҿ�} :O-7�Q5��`4�^�%��O���ܿ�w��Eٲ!u �`�y�L�94��Ln���fYf��@��ZL�0)��ӸV���T�����Ti����Q�C�4md01{�t.��u^��`��+{'�Ty[U����ȍ}�PY�A�s�<5�3�� K��K��0�0�f���&km ��~�5�A���/upݺ����Lh@]��ek�e=L���Z|@�k �C��V�v�Vj��1��V�C)O47���o�*���q<��<�o�2�G8[^M/�㊆����.|ٱ1`�L����Ba�_�B�'����߆>�������^�D�2+Eᰅ{ B�n�}i�CI���g���Z,s���+@��&��jU��0^����s�$�䲿���DM�c�]/E��� rDID��۱�b ���\�1�Nu %����Ce�<mBd�!���x�?�0c�~��e2i�?L�n��&��O�;aZރb���x� LK�R�� ��L��/vfb>��V�뻉��]�՚7@a<�f�B�jc�?}n�����>0C�PR��z{�Q�D���;�&�ˌ����J����@��� >�~P��B�h��J�V�����E���w|�$���aGNb̨�Y��b�)YmA� >"Ng(m*��Ms~�#�R� ��`����:��t���puu�IH)��h�U�F(�^�0��a��Ѣ�t�}�l�?�ϧ� b�1)��2-Z:r���g�*��h��z���* zM�t�x��k:Rt��h-��8j���J���fQ���JT ��/�1�ʵظ��0���kS���E��q;���=��T���C}�w�Y*�b!%�4Ap�eM���^g 7��D�x9�A���w���OV�r�[��D7��5��.��a^c��u)?1_���IL1���� H�az�JA�Κ5��څ��1r��& �K��#A���%SLaW.����Y.��:�S��<IQ*Qn<A�- ���b��F�VB�!ו��r�s� �Q4E�M�{�|�_?�;-�����<<u짦�l��$A"ә���������4��ܤ��U[���z���w*l�u���>�Cv5�' Ցe2�hGA�1M��VAx틯���Rr����[bP|<z�r�P���)g�lۺ�0*-�u[��-���t�[Iޙ[�B� n�Ro�"X��L��L�U���:^����`bۻy�<T?s�9�;O�ʽ|Jʜڸ��w�)Z���Q4��ƻ�C薯�;vY�=]R��� ��y=�&z>KZ����$+7��@�h:�N��M{����OcYU����G����_\�@:��x.Hڕ1�]�<�֧��KhM�l���5.�[ϑ'� hT��iynG���kYI�˪e�piNA�R��'�����4�~�\�{鯥�~���w4��n��Z�k�V��3P=�!�zkN-�H�`��������b]I?�2֯j˶sJ���6K��������_��fj)���Ξ����M�{w��(]�C���y��A���z}l�knn�d1x�R ���u�fM��`����'mB�r;���&\7`Q4��t4����pk����KtX�l���{r���Z��>?�u��I���0~�m펣���v����O�j�EW}M"�]|�#��M.o�W��$8J�S��U��O~9�&���D�&) s_��%�9xI�Kܝ�d��NI�F����;eה,[�Vp&L��d����m^)z��p��R�ݺЄ*���gu ك��5����G�v얿�`�Se���~�_�U�A��z?���ī�B��|�)K��%�0�5H����^���9� ���Z�0�ܞ T���z�&P2��I��b����<���&�2�\��\�Nt��!_��$�Q��Q�^6ۉ����D��F��5-�͑�k@����H}�}�iQ� K�,�R����e\1i��� ۧ,��s������_\���E�����[ܵ��f:쐦@�VY�=hpr�0Em-� �9����`���W�� /D���BW kx��Zf���u��D�~S�@"3`$����sk�-��� 0ެ;��T-��L�$��2B�6_�2�}�,��bwc����?ĺ ��w~����K�$�*R~���'ɴ:�x� 7br-2h.������!NQvVz����B�3�9��.9ի�謑�$�+0�%'��Ebv��)�9�h��~�:��<�B|��e~�=HY�esC�Q��ިIi�>X볁U]6�~yܯko��m�f����-�����g3V>�K5~�fē�&Z�hD��[��}��O1S��S՝�l�l,���R������c0���=D�L�P�l8�l�cp�ÿ�LF�l3�~��A�\�g<��2P�Ś�+Ҍ?!�l��m<i�or�p T�k^��5�\�3Wr(���/�A�}�ݾ ���幭Nx\���]��@��|M�f��}|�O+*����@��t��l�J(l�(C���%��Xn�P�<<^�^u;�/�&�W���y��)�vS&©�2čt&���ű㾿5L��݂dP���!��c�F}��J�d��QP�Ѵ,��mԭ�ǎ��>�-��cw^T�����sb�\��<V6t��%��d�ՎD�?�Y�{��J��Mo�Ү��(q�{y ��:����m�}OQ���4\���j�cFDK�|)C� ���b� ��2դW�;��$hnX�0^��N�7��&��c�jEA�o�� Ϋ��L���;e�/XAFt�祬����ʥ�i�7�٣ ⠵��T��|�{b�(x��[iRF�]� ���y�}�OOz��*��cada�:�:n��t�����vB^��Q5,c���)��f�8�ttV"�ym��xR�`�� <�1��Y<wMg�m�.���OCN��Ì���8M}m��q�x����v��V8}��fgb�rXK�\vǷb̮ �D��vI�ްW�4���8��0�Jg��t��^���qTr��L�$�4�-�U�v'8���ɾ���YU�j覎wa(Ƹ�� 6��k�T_^v�r�#Ç���r��$XT3_tZ��Hub\l��,�� �)Oh,�:R�f�2"�9�1�JK;]��XF1�cՄ�13^�J��y��<���H����������K��w[��J���=qb��s�Dz���$�N� \�� �r���?��N8V�=��E3�F�='9v���^�$�=NR}�{}$�ֆEVzS �Ն�R��]E�r�$��lc��q�m~mI,!��i�IR<Z��IU�D����>!.��'T����2�A�IZVkXGn�B���#Y�=�l}����J�8���(�Qڢ��,�E��N�D�:J�լD�<���w�x�|�����Ç��e���d���ǏC�� ��$��AU�:�*�/=��I��2�M�Yo0��K�H�Ι�*Xo�E����Hu���a��$^pE:)���j�jI��RwQG7=��!�{�(�v%6���<o2bF9�'�>W�zݐ&��7���C3ʝ���61tu�U즤{��/�:� ��/�q}��a���i"5���BF������8eb��*�h0@}l]ȹ�G-|����ɼ+ս�'m���t[�E��ϋ�wN��5�;Š�� eX���Pe�5�2U�48�!��9�t �P�-G�]���%lcg��d��6�!���lÇ�� �dՌ4���9>}�Zhmw~>n��sh,ڱJS2W�]u��Z~'�W흁�U���eJ���3?�!q�_U]Rc�WN�1l���nK3�g$ dI 1@��9{�U-�%>�Xդ V�3�L��![����o�dD��!2^P�g�`}��R�� � �-�e�36$�P;y����///ڂ^��:���_1�Nv�������&Oe�7���i<0�PǠ:������v����֧�� ��4�&! ��`����>�ֿ����V�e�ZB�+��Y��D�4G(�Z&'��^��'��eym�V��Ŷ�"�7su�s3@����Hޠ{c��x���@�Q��``hU<�8�O|�E�*�w�Kk������Z`],�"� J�ig����@\>lS j#����T�.�Å�<���θC�g�`(B$�]�|ěfh�b0��kz/�?G�]� L��Nʼn9$���i�.|!�p�P@"�&���)���ڷp��N�Ue� M�YkZs�sv���V��M��Mؓ:�����\��"u:���v�Pc?��7��+�y/��a�G����_�Q8�e��.Ծl3�rW���k1y῞��MDx@�D�s܋ª�73+��o���[��t,��3�D���5��Y��/��x-jV��I/`P Y��{$vs&[��iOM� M�y���zJ�� �d����#���{1��Fb�B�9���y�c�S~����0���G6Ќ2K�k�,��re��ȖB ֫da�����8g��eT��1@�GsO��[��hد�RaeG�8N �[�;)jUD[7��f~���*c^@]s1>qCb+I� ���j7f`ز�i[���/��"�N�J��L��mB�/��`���<?^1�A���7Y&f6֜y֪^��08"&��U��=���.�έ��2�=����*i3���|xX� r��,T����Yv�GEn�� u�S��T]�_2M`�|�����w�A���d���jP�-��7#�T�q����.'�iwт�:�3�-�p�5eZa��?a��C2���<in9��e(e�J��)[_I+��]D��U%���� �'E�<�e]�v]���a*Eۤ��/�NZ��6�H%���J]�h���19��g a?�]�p� x���j�aC�o�L���U�~U�e�h�>��-:Cd���<P�������"|a�WU���M�]��;����9�,�Ʉ��@u-i:�MU.r�9k�X@Pq7ݾ� z�N� .���(�A'b�Hp�R�a���c�T�Q�z��J'�5g����(���v˝����g6����\E�! �ߧu8���f���+)�8殡��iusl�7)�N"�ż��e������AK�JR=�Z��$NQ�n��'h�w+ߙ��&�N$�\�Ox�y���ß�26�?TS[rj��`��;00i��}l�Rǣp��۠���n_��?Ok�Y�ϿR��&��Ea�Е�un��k,y��l�kg�xaB��oﻞ���\n!�zG T�z���,jٯ�8m���bت�1߇sO*��WuΟ��{���H�K��bL���!nVQ�'�.GYQɻd�$^��ߗ8�����O�z݊�G�*[i������SG��>�X�d��T9J\F�e@�%�>��YH[���<�z�p�&�� E������ƙ0�.7m����'ٽ��}�����fW�S�Dc�c%�~ɵ�/�X������V��/��\߲��Xe�^��6�n�v��H�^�]�GҤV��8�,w!��Y�4���ML���pٌ�������D��?]�o�J�ծ�����a��o�{����T�{�8���[�C�ŬD?�'���g|�XeK��Y}2����V�.�ݏ���֖���AȊ�;U*���|R�����n�?+���o���c�"��cYԳ`l/��(n%q�VIc~����!5�LE��F:�N^��t�ꢷ&j�J-5 V?�X/�`T���Z�&�X�dc��]��$�n�fY�A`+\�Lx��A��mߗ�UĀ�I��ְw�2�_判��>� e�w��vR�OSݠ-�t��7í�W"���<-59N��Y�dX�";�6=��oA��ot��^+�;���彮��ˣ�G�8puzF=r~^ǒ�1 Đ4��$��f������X���c�~ô}`�B��>��M�#��1³+�AE�g��y��^�ԣ-���z[f���c�e���.t�D��1��8?i�>4ʦ�rp�����<soQ��[{�;��Q������T����T:v32s y��p�J���#�l苶y�'J��I�J�ն���;����p�ִ���T�Ɗ�=&����*�U��j����[�,���'��=�1އ�xJ3TL�K�������#v=�8�/\�k���͠mi�綴~�%cG�[dR����ls�`Fӑ���e�R���l<Z�5�?L"�K��C������}�֦/��eK��?B9( H�뇿� u�sj�ri}��s�`kr�:ߟ���^;���Y\�ͧ��1cQ����� ���������%.Z.�7������u��t7gL��)lM� ;��lr����Ҏ�6{����P�vb�B ��*�b2,�,m�aMu�[W�^-U�s.��,>��.o� �'��`f.��7�`��Iy�K�@ׅSԺ�*�퓋 ;��zYE����)h���]����>JO��B_Ȃ<\y�WL"0�"q*��1�N��,�50��\i��y�7��8m)�]�H������H�Ƕ�:�ʹ�N�p;�t�,t1�C;�� ����F�%@�f�!j@s(|�`{ͽ�r�}�`�F;�G �o���%Ζ����3�ykqv�j�A�\u؆�X��8�7��sO$fp���`d�s�\�+"v�B�g�x\��B��t�3�"��L$�v��c냨�BQ�b���d�����p8�-4adT�. Q�Wk#��Yү�j}:���T�\����+�tI ���5�${\���{1V�[V�C��[kn����C&�UG9�d}3��!xӒ�<|�~5�E8��`]��Fu��t�w:M�*�DЯ�@��pAʁ";�Aʧlp���<�t�'�N#xw-��d�?�O�▫h��INi;��J$?J�-��i��rex,�uL��5�[�'U�'���g)�@�L��FH�L<T:�J���`6x?�����P��(���-k��1Ta#�ʁ_V��Q������m[����~����+��4����%���u{�me�~�����<�m�1��F��V��nq�?�ЋfD%O~����n��'�A�Urܓz[F�����;��V�+K�<.S2d�/�J�dz<#�����-B����ya5']��.02w�x��+E=�I����a���:5�����csx��;��.�Y̘�ѻf��ݦr5κ{ļ����-$b�X�v+w��J?>{qB�_���h�b����a��!���`.�q/�OW��ݖlj��B��X��2+�>�s���g3��*�q�,(x�_�n��Ct~���6��4��b���<��́RL1{3���wv��x�~1=�Q���J�3P�Ҽw�LG0q��݄m�Q2+#�.��W��5����MI$�4z���{�`ES�s�}e��:{}����s��AO�([��#��P"̧)ìA��>WY9���0$[��o|��,4�qo��+� ��h���sۭ^�f��F{M/�ώ����-��SC"M�j���[���"Z�촚��ҋW�/��n����ΧP��je�����x.;�վ��pA\��S~ҩ]{��}]�ZB��v���l�e��;3q�䰞Ir&�{�W�&8N����yT1`�mp�9{��o��ap��X�P�>�����;�m�FϢ̻-�o��Kt���?�>��B�A7K�vKi�5age!�o@�MJ�fܛa��ݨy��n4(�d ���CO���|9- e��6��K��S^*L�wv�� !S�R� .b�'lbM�!��㭞I���ɕ%ۄ�$2�w�0^�����[VyxZ1��N��i��%B����*I_�pq'�%��>� �l �f���u <�)�z�M�F��HJ�� � �h����{��8C�U(�S��/�3��!4.�� �3�L%��z�$b��ӎ�]=v�K�-Fx�+ l�!�c��Kh�gne?���t�7�����%qkx��n$<Dos��%^�ZV!�g�,A��I�8Po��%I�ھ/�;���x����Pr����g��j��A�PݤD<YǽD�q.|�c����v�`M箺�.4�*� ���(��$Imp��jv4�2�kG*�W���/���)Xڄ�pwEo��|}z�9��bG�ͦ�R�5,fM��X���g�,��2�$I�#f�֒Q] i��C]�42�{�+���Z���..��aWS���zl17�JFg �}Mµ��VL�E�)�aE�u�fհKKM���q6|����n� :�ya� <>e�r�~h�2Ð� ��ζ ��hH2��'h��N�0�⤐L��.��U�?!�`�M���@�\�!J]�%��qz6;��^�m�h��K�N��~�e���*�x%L� e7��@��ܓx1yONQ�% cV|y�?c�(���g�qaf̖?�V��K�̴:h�@�GOi&U;�$P�kД�Y�q71&��m�Q�Y�W�(�YiwN��J�����8�R�IpOj����߂&5�H�$��ŧ����徶K����F�E������1᎘#.U�Ȁh��g&��g�������u���#��ʬF��������C��\awZg'�2�� ���^�!�G������F�Zn�w���?�NCoU�p�W��c�e[�X��h|�T�' �M4ag��c7��'��?p�ߋ̧��$އ�l"~x�� ��sR�IY��D{_��i�.��Q���Y�X��/^�Ԋ�U.�I2�d �ԃ�B��+h#E�� �Y�Js">0�R�;^��"��@�p���}���kL�T���r'M�ŷ�I1�s*�W�h�)w�P;a曍Hj����ܾ�t��WLA]CK��`a���y>�����1^�Z[�d��Xmȷ��HWi��̆N5ে�ͼe$dDS��ZL#��� �9�ģM���)?�V��Dh��-U��.i�;���B�#qҘ�U�ٔ�`7x�J�����jS��8D. �/�Z%�2��*P���ݯ��Qz�+���o�e�4��D�ǜ!@W�Q��>%\�r��*��s�v��n@�#ܵ!i�s�����a�8iwA�L��8(>��Xpk�um�B�@�>�����Wd�(C�~���h�m�R5fx�v��� �F)�J�g��g�3!�رj�AՏ�,Y�=�i#���"�co��\�,�~�S�H�>{�G^�mqE��`2�-Rxd`���L�!���0!c{B���%T�Y��*�ȭێ$��(��OE]T��$t\��[0�SH��k?�D��!��i����콢�{�$�����B���Ck4n����j� ��6)+/��^v<������JN7�i�h���qM`�hAB��1���l��,N6 �j�~K���H��2��SG��{���(r�/��)���)�Lz���ja�1v�'GD���G�B���m}����a�"/J�9W�k>��#���F�� ����(&���в��i�Y.8m�i�,B^��wN��u�dsG�n�ƈ�ߙr��Y���r�۩�A%ɾ�>���Ɉ�c�������ڃ�ނ�I`�p�rǒ��+;�n)H��uSFn?:<�9e �>��%(v�������ga��R�G�/{Jށ��}+�2�L��z�3���O���|@a�2E��`k�;����k�O�2K�!]��W�}�ߛ�I�)ƅjQ��Fk���g&�'��^�M5��#ԕ(^�!�:�����!pU�1��+P��m;#=7��3YѼ�2��r� u�SƸ:�p��bf�3�ֻ�jd~M���k�PΓ'�rƚ���m��7́�4|�'�W�����x�>�vE��j|�A�̸�V-���#�X N��k��i�K�����!.}�ЦӸ�nT2k����-SLiha��x\�= %Pp��Ӹn50&�(����"_�0s�R�K>�Q'��1�:c�D��J@��qg3�GW�k�w2VJpH�uc���J�5�E�ڈsa�g���ߓ�t>,�j)&z �!��X��L��4F�d�]j$��j �RXu�ќKA�^�{E�d�k8���'!p�]�X�� }����ۇ��G���>��V#Q��;��n1�rp�au����H�T�$�іrO1�ը����d���'�.��i�@�3����� ���ߨX�����>u��S乘�e�;��Cq3�T��mz����zۺF.-��p�PB�{�/�J�X�E�>�0 �7��o<��C�P�K��"�q 2K&_�H�g��\[@�����e������OWi���5L��Hg��̊��I���ʎ��EwX��&���ʲ5� �%��k�n�o���_��� |d����-�2 6d�1��NF�S,�]%��؞f�m�X-�ƙف�Xy���X�8��[L1��%$����X�����Y��+�� K�� a �9'q�L�v=��l��#�Ǡ"�1 a�0l��ݫE�6���DW�1��tF-���ڲ�ISp%����`���7��߂��\v�!�o��_��wA}Z]���~M�ȷ����R�<�a��t�EKJ���(-�i!�L8I�Quj�ir�n��\�z���_��ZM�n�� �?U�����X��T�4`�Q��jL4��/�yuҜ��o:dx����b��@2��S��Δ�"�%��Z<�3}(HT�f�;��k�����kO�s&�e���9@ѝ%�� 3 +T7����1,l\$a�ngD��bJ�b�b�"Z���C�vT$G����,�c���BFCe���F��[��gA�p#����o6�����U�� �%,J������XӘ,�%l��ҞF�N|�}Si-o�x|odI��s�v�c��Y�3��).�T���셖�zݠ�,��R���j��"娕���#��k��%�<��n�$�Sތ��czt����b��"�P�%�8�J�W�їAVaW0t�cWp��~�]e�㘸Z��v}[�H镚�]�6�Hl%>:����7��ݤ;��gĞ&����lڭ�%#�>w�x�P���0�q�A�-E3�͒�a�P�r�8 �WGxom[�� �me�����~���Rip�&�"�a/�Y��̩=n�9}�o�5�M?�-R�Tg��Ès|�E;`)v���ީ74jL�>뭂�jH�73��v���Й�KwX5P�ǿ-d�د F�{l����{�p7tV!%�z����װL|��p<�_��q�1b��\X,�G4��?�>ĥ�4,qlF�85Dl�"�(��d�+��~+6Р� ��/!�5d�z����2P%n!Z�k�Ff� ���'�2��Nm�'��EH�噆iQ��W#��Ï*��rr�n�EfB����V��ı�Fx���Y�\��m�A-32.%��N��� 0��M�R����%�=)��9<���9h]((*$�-^����q���2��Ť���hq)OA�-R�Tv����� � YYC=�*5a�&T�J�=�(�Ś����m;�����v?ys�tH�G\�� �~�\�S���a�N�s��@_�k�P2�4j/��Ī���\D[� �5���=���eB5X����� �N�U��u�#�/ff�<jIDa�Җ3-%��eK�$9�R=P�7F�JG����#_t�Œ�yzVi�ߞ�����"q��[R'?�m0́Sr��6�H��m� ��L���E*캗��7��];��B��P�"CŜNi�09���'��NrD��!{��QF���+FR�Ym��Ю�j���f����B�v����0�}&�af@C.1�S���h����V�o�y����S��|` ���:%ן��2F�>R\�"=Ss�4H��������UQ��z`w��x��p�f���=?d��4�:�ۗ�F�$N/���er�m&�q�?�E;�#�û(��VC���L�1 ��B6e���N;�y��� ��N�:��_P��f!�ӕ�*J#��}ae���_�}T�7b���y2�&�w ho��bjUJU�(�&�Rx+��� �_���^6��.skH�4�Jv��ӛ��#pi�q���d� E�+���)���C��ﱧ����#�I�� o%�}AI�<ld"�k�$ĩ ���3��MO�����w��&C�<��]���X��`���WO�x�,�6Hû�����- ��a/eL㥭�,�\!��_"�� �s={ Y�7L;��+���/Ý���ޝE�a���5$�m^�U8\�wô�ל�w�%�}�^�i}����K/���%�e�3݂��6�,a�?D�q����~}�#加�'ٕD�<}3<�]�ڊn�����N���4M�|���@ʊ���F�4��a /��Q�9: h��#{Z�j[��c�n>�c��GP�ܡ��9?���Fᜣ�H?���lp��u��z�E�䟛��m:�����B�س�Ա�M +) ~�X�Z�ڰ�sz��ϐgHh�� $�r>��px�����Q�r1}Fgvh� ��+Q"8_c���>3�<e�'�w� B�*�F��3h�z��Fb.��t�� ,�U걥��Ӹh�R���T�w47���Y��OJ�<B��e��rBWܩ���R1n�,OS�s�]W�ԡp�:��8�=JT-��֎�?�'Z�s��AIQ�^��\�-�W@�AKF���i%B[*$�����P��"���Єӂ�S�VlB^E�gu��~��wL���t,K��jY9S� ���M3�۱�{1�sMH F~��߲z ���KMB����PݧWѬ�Un�`���F���'@��\�y�_�PD�!hI��'/@�eM�cx��/a��o`�K�L�D���E��G�����[lҶ.I���dYR��2s L;��z��/:�����ׯ>�%�2��~����bMH��9���0�1=CV��0������a��?�0iޚQ;^(]DA��གྷ��KR����(P㲬�k|Å�R.�0j.Sfao��Q�D��I�_�o=���U����įK��A<P{�!����,](����l?�V�HP@���zDgC�'��gX�`��6zP��EZ��ac�&e��mR��Ց��q��W�az�a�E;�_��,�Sm��$k�^e���ߧ��?��"� 'b�8䟖*�U��5 ֣������Bqƛ��[�zG���Wv*Іƅ� 8I�'6�1�"�F]��ܯU���(Ք��~�2���kCWsuHj쒺�=>o5��¡Y�P��ϧ=���� ���fh����E�[�ZB�DmѦR�л�_E�8�/�T����e���P ܹ$�v^3W�pD�y�6O�Φ�&�F3vk���z6&�ԒeNǯ�\��w�20����~-�%��t�����s�L�v�3q����Z�E��F3ץ�}��Y�Y>��AX�p\ ��T�W����+��{�� z����u笥�t�R�1�{m���\�,I�V'N���^�7x�|r�#�4?3/�T�*���C���\�3��������p%��x���6o��R�Z��PW���vj����?{�pϣ��a �6Z�|`i�H��X�]o��J��R���)�.06����ҡ9|�5q��7:u��ٝ[�Y��E����ٵPtx�;�������P��3G�~^�ֹ���Mq�R|I�/���,Ō�R�U�L�d1[�e�\cݿ�GZd���X��w��Qup��h$� ��s=El¥���=��R��K��g�U����|��/I�0�KFP��U�NR�6y����XU? �v�d���\�87S�O�1�qF���#����ݴ�b%�� ����84q!�]���=D�B��B��R��a����C�9��8E#h�n('\���a�� �±ddwcQ�՜F{���%�8ρ�) ������ձ����wI�G-��U�������/�w0�e9���3m3@|2�|�0f)h9@�ĕ�qo�k:��o*�� �7ζ�֙��c�3!Ø� �j�C��j ۖ�����ٍ��$qLظ�M"6���4��6%����,)My��U��1}�A�w��I�$��(S�'.�O�������A��Mܥ�]V����xO��nz۷�����Ϟi���F��0��1N8'���ۍ�O@�u�D0��D�,IL��v��r�4pn��Uʆ���,���`�>�|A�x���(�P"`K�_Ӎ\�: �:W1t��3~��6���oaf���\%E����m'S���8Ccb�k甥 .��w&1&�}i�T���X��`���I�P(=M��>�\�P�I�̶0"�.���U�5p@j*lo�Lg��G���x��r���gPE�#��f�bn3��Py�r�~�{o�F��d�M�h���_�5� ��As�s6����<Eo{���dp��7�r@�J>n�����m~��Yy��H1Y���9^US�S��Z*́��J�Q�^�!�F~��iu�0�7�V5Mu�zE���g��|Z���H�~n"�0�C���� �:p�iQ6L(�6�N����l��,� �0:1�Lӊh�]Pu_��9����j 鿹:��t�G�of���E��sO%�w�`�cu��v�Y`�c�p�u�bˢ���919�S����Sm����v��C�3�r� �N�Ímp� �=ښY�W ��]+%) "�h�$8l�,��y�%������or���k��ӆzF�邜�l��R�-�=˿��xC할vի���]�b��gw�-��.��ͨ�'{e�4�+��%�^ޕd�1^��SL�NE��YV�ٜ��Fn��>�T@?>��Z��;"eP�|�PlKxU�=,5@�tiHM�o� �y�2A%n�������Ahs�$�{��k���s�o��j*du�1�q�#k��<p<M3���E+P��rNag'DR��MX&�g��I�趦'3LZ8'���[�q��KK(L<D�+�?�)f��I�H#�j�y)��>Q䶋���� E�|7�A��̬%.D�nPꁙ��2�'I<�p�vF5C��g��+�+���̙O�'�sx{�/��cD{`o.k4�ce�d�蹾'��S]v�ó�@�"��]�<@?� :i�&�M������FkO��� 'ד)�t!��n�jg�����88{d'=����jՇD�2"�Mv�#<1�Pv��3A--��~1� �ǁd�`���V�ջ�3�_��d�H� �z2`����߂�A�zB�}%���~J@�c i�_-#��z� � qO8�J���W��t���D�)v�r�a��A>�ew��n4K��&���%ؚLG�Q�|^�ݺ8���C���ô�t�!�]�p�N\�re�-\�� �,k&C25�A=ψ0�+��E�f���@����IH�`��Uj� �~[C3�|�|v�l�:��[��H��n�p�>�'�ZHR�;R�|-�7m�kjC�n$8��Q�]l%���r�Us*�h^K�xJ9�J�ktf��j���q���0���:UKIU���]� @�c��Ϻ`Wo��8F��NL�Xiap�V�`��O��Z�L�XP���p��F�ۙ|�19�ec��#��c��m�$�癶�ъF7|�j�wM$�s!��7)�x�u��;�g�ܡ� 4��R�� �������{Y*��h����W0�`p���p|��~��ݰdr�_d#�m��w�f� �t�Z�_�OA��D.�4�lL�sO9���#���.e(��w>��Ϋo�~l�Dlh� ��2������g8�����6���l}(� }��_�FŒ��{����2=�6ꦬ��")x�z��<�_ՈU]�Z��p�yx���TE��|�]T�_�<�Ȝ�Eo�����p����8f������;��`x%܁�E�Sb��2�n�tM��.s^5~ٳ�gF.Z��J�� o��i!�$5O�(��q]�"}a��Iib��v0���G�fV&�[4�(�������zy:b-��&n2��\�$a�N^�gwҸ@�w'z2�Ƹ;�w�k��j8���si��gL���R^V�&�_�Uqs���C��BP��{�>�'A�z�L\. �O�5��Ⱦ ���&��V��,Y��U� ��{�<��~�vY���c�/�ѭ�V��+���R;�4*�;GPmW�j y�&���;�3\J@�;��B}���A�)��}̀k��q䎣b�I�{���#��Y��l?O�������g Bzs�C���K��R^��s�|��omS���==��y�<�}��4m��Z�8j���:|�ksJ��p��bն�,|Y��0vss� Z�SYL�h�|\�Gd�4��xi��$�fʯ���(������eV'equ�cZ��}�CG�Y�X�O�{l�/Uz9�1��M��ñ�� ��d�p��5UR"%�pv'�A�x]h���Y�D&����s�_y�P���I��!�-�G$��UL�A�#0h���#� �Q�~B�J ��d��T=�k�1���t9.����/����8�'�a/��A�K;��tڕh���v�Z�di�'*�/��.�N)p�Q���AA� "���R�,��qQ?��;~�9�1Du�T\��%�e��,���W��<��t��:�_�ci)6CY��4j���4|�!J!)���P�� ��{���D��h��\��,g�����#�*���\��S��de��;�h&�?f���&>���CI6�]7 ��Pb���aX��I�U�&�Hy��@��u�c�3�l6�wƨ1f��}:�祹 9��v�/xy�1\��.�<�,:��c<�Q"Mv����� T����F��سMb�/I�C�.���CҀP�/� ��A,ʍY�`[�k"�kХ��!#��S�a}��z�YVk�&����MJ.��{�Р���hD�\�%��xVܾ��i���Xr 2��-�}�s[?e�ܽ�C�Xe��{I.�i�UJgEl�0�,V�+�%E5��Ôല�[?�$ܔ&�{�X�v���d�D�0��p0���O��v�CC[�pGڭ�ײbc��Җ{ %����f�r<�H�1_y�b_�z�>��AaH��d�KW����H�3�_�2�¥'� CH�y�(��?���Oy��ȑ9q���07� ��>��ujk�_י�+�<�n@v_��R?���R�ٴ~�˾'���3�p",F�P��7�?.�s54�5�͓,�̷L��Mm���ij]��nvƛ�~�{���n���'��B4��_ҕ��#H`�&,�6I�.|o�k �``��YhʼʽU�f )�;��*f7���/q &H̃V*;�K���Zg���SY,DO�Ҍ��u2�x�] �3�i�='}ǻ3�Fr֊��=6�A��آ6Tt��TB8�� ��t� d)S1׃L�R�(���-O��`]wH��"�G��J��+�^"��`@i��o�j�8���v\2�� Ct��x3�ۚ�ÜD��eǯ�a���`��� 4h��>��r����(�q:��(Lx9Bj�� $� u]Ⴟz����F��_�p������ʆ���--ЄnrԷC�A�7q2}��C��' �I��mk\�) n��,����0;��'W7VI!�@�N`4l%)�b��)�(b�.�Y�&��nά<���Xbu�0�����^���v�3lU�Sf$ՍY��������}� 5ώ����E(��trB?��9.�<�dxF��n�ud0�IL[�����M���x�6��*�q��A&�]% �{Š���Ú�:���<�d�+�.F���6d�sD��G�`���/7$�q=�>�ڝR��!c��*|����8�bZefq� �K'QXU��5����(o���I�)hVܰ���%b�T�;xr[�G�-kɁ�F��bMpe�n���x<��d�B+]ll� C�}�eU�b�����mК_K��5d Z�6�J�~�S���^�`�n��tR��]���y2�!�[��"�%�*��)^F4'ɚ�H~c�D�!#\�ɲ,�v-�����[6�<�[&>z�"�7r��f���:E�U����s�X��!�X7%9�Ԩ���"��O��m�yr�!hd�гU�{�G��C&��(�oS�W�l2� /�L�/Ԣ�$}R���\��ߠ�b�tˀ�NM+�����L����A��gڍ^6aĵd��q:�)�� �=Dd.���X�<�<����q��+u�s����e�A]�]��3��%�I��[ ��=J �!�Ǡ��4����Pf�m���.��f���&`<���m���}f�SJ/���_�7%}dd9v+�$���j�}��m�w����3bN��!@a����9�@��Ҿ�ɆA�_�>/�� �����䝺#�%��^���]h�lA��+$)�g.iVW��BU�Mt�t=�]{>'��M����H��hxh�ʜ�ۅ�!*�Ұ�R�m���dz<I� �T��bhB ��B��;#> ��R����ټFApx��&o�W����^��ABO.���"�+�J�o�[&ƈ�iwK��:+�J˸>v�7g�ni����%C}G6J3���' g���,ڃF]��l�l_UdG$.��o�4��yзAq�� ��$�H��0�*�f�ܺ`M,�C���;���ѱir1�<}j��5�i�@?heZ�6l�Z5;�d��4'��{��UL=D�f��2�\u~�M��S��}�@��{z���2�sX��s8G����f�cLX��+M4i��һ�s��l�02�C8%�F1ł�D��O�V��ȓn�-�5&�$�a�<3��V����9�A�X�S�5�G:���g�8�t���B_�ρ�R �x�"�sn*u�E��8�.��4d�w�1L� V��σC7�*Hw/���8�}�3УE��c�@R�fڱ*E/uYS�b�����ƳQ����4�O#V��G���t�z�m� 5~��B�BE�PL+9n (�A[n� ��TSg�m�G�+�.����t/���`�q����!�!8<<�5H�Ey���?cmJ#�M�Y�wVblÝ���:0T�Z�,]\���<��hK��gɮ�jS{���d.Rh����]t�mם0��e�R��ղ���#�1�D<Q <�٦�o��w|��S|�p*�>���owl����LkK�!�UXږj"|�r�ׄ`�Ǡ&z�,_�,y�@bTYL5h�5�%�B Ba<�ΉAՄթ\���t_��/^�XI�������DU�����A�;��x?{<�TR�;�?ID�[�p��n"�����d�HTk�� $.Lߤ�Q_Ǿ�KuQ0��B��i�-����}B�x���B�Դ��"���b�܉_� l6�5��|L��Hz��~_�p��.a���*M2�s����Jx��b�� ��S��� V����(o0��+�À�o��/�/�\d%2��|�J��}�̢3��;�|�_�q���m��0^��O��1�K��b�#O�WS.,�$cچoܿ���H6Leׂڬ���A;��;���hՂ&�3�+kO��IfH_�բ�7�S�K"��#aX�l���^�c���;QJN�+���&=��^�#*�Y���L�������{��u���ٺ �$�fD�ϳ*��լZ!�$�ex���R �ӎ�V�Q�@����n�,�j����XY0�o \��X=$u&g�:�v(ǰ -@_�3JM"��ѯ���^��������f�S&�9�ia�m?iXE;i<���R[���y�1�݀��Z��x��B 9�o��ʃ�o�z�b�ڃKٱ��H,$���H4v �j���,;���Jv<'���˺�2ɰ�8;[��\��#��5k�~��gX��.r��p���mGѝ�� $ �7�Fn�T�O���)���0h"�jپ|p�1�6��ee~q�z��lOH�@���t\6�?I��@��2A�f�q���'��E���GI[������X�:��q�� ٵ���*8����0d#�=� �y@c��2H�XO�4�"�+�~6#'s�{>\ō���M��;���/�2�4����HU�kw�<�뜶 �$~j�9غ:�˗�@\R���x:��l���?C�ڐ�j&��0���X1�d��w��<@�+y��L��s��5m>��H�6Û݈i��dHtd���a�.'5�eK~�2(�2��.(p-_���0��f�.��"�h,���l+v��5�Y2�p�0�I��Y�W�O6Z��7s>��V�<( �]i"�ha,1&�XNFP��0�ug>��t�[��`Z�����J��t� IUm+��r�d1R���FP�(�/�FW��ݿ`b�x����e-�����*��/��y���o���5� �꽂�e̿�Ή����$Ó-�8}{V{�HhՉ0��a�qY�(������՝�a ��[�_�^C��ϭ��P+Y���J��g_�jG�u��k��:�u4��徱r�M�V�%\�G��i��?�>i�2S��w�Jd�����J�PW�wࣥ���`Ԍ�-���Jh���J^��l��#�a����Eu���s��O�-�M�(O��{�\v��q�Ǚ(��^cXS���c�<>��e�x�3�M_0����nм�8��r�j�1� �_!��u9��ܭ@��}f-��>�X��P�����[� !�{�qdf�MC�#%$XT�3`�|D�����e�J.p�t��ؗ(G�� ��'�����!c�e]>��J�:�8�Yֺ�: mn�͙C0�BV��6a�*#�QΜ��&q�F���5�k}}�8Ƙ��u^�F���έ�;�N��Aug�sErѢXA� �Wid�����/��}�a�ea�q�O?�;�P�]x���B`��*�Y<��D�c���~�>I��`���Kx0A�?Yv��%�dfOÞt��o�}����O]؆���@�u�ɍ�eL�m��&|�@��E��l�hJA��v>��c[-�ZƗ��:�~� �T��d!��"� |�Uq��� Ut����˯j� U��WT�g������dK�4]���sz��C>���F.�w�Tk��bi���'"UaN���:(Ƣ��|�; Pd��������f �@rG����F�wrrU�Y;G��T>�� t�剩��-��W߹:+�ʿ�����G� ��j;�@�I���Ӳ01���g"�b���� �l��j���ҵ�.�A?D�Nd��� H���!����I��)u��"i� kY��Zj&�z�2��&�n������ � ��:6y;Á�+e���y�e痀�ҤJI`���C�!�&u�����C���)�L{2����ޡ�U8�E�1a�ep7>��%oT��[�Y�mjα�̵lf�h;���#6�\���}a�A@Bjͩϰ��Ӧ�{L�!p*L �~Ҟ��<�t�ӛ����3����r��M_�~���6���36��}�SA��)�j��bq%���"k�Ĺg�e����� {�u��ЄOY��A�"9�E���`�?�NMLs�"8�<���u��#�@-z��Y�o��,��Ys鶄E�3�`.i{�I{�T�[vm���Ͱ����/ώ�<�è13��>q�~8b��},{2�,�/����h�;�>78�C����G�Ub�H�ב���̛�J��!&w��� PN���T���w���m�p�X�6��� ��Y�3KC�^�^����������\j{$��8�T��f,<v�(?�(�kv�0�}X�d�yfe6�tk��u3����� � �1�O�ɾ<�E�l���H�"�����՟�WE�4&�S�i2�Q��%t$蛄ۊ��?,�����;� ��MvOWAT��(�ui �C��1�t'�d��;� �߄��0� �TٌHh����M_2��j���P��k���r��)tm]Ͱ9Kx;ـ�M�>���_ٓ4���F� �qB ��]�� ����lQ���ꋅHW����:�1�$��i��\y�U�+d�Z<֎�1�د5�Ã|�k�u�h�&!���D��@<}9`��;�/�$�,36?�FW vH�x$���QmR�Y��V �Bf:PW���4��f�k$c�n���z�$V�[|t� �{�fhHu�?�Fcލ���ئy�ץ�o�3|���?��>-�D��K� ��� `ˤ�b�/�9�uew̉5cj����2�tg/#��U��7Z3��L""|>M�������t�����AdذZ�hx.�'�6�d�\�����k{��l�0� !|���u�'@���BSS?�CtB@��F��]!� ��[DZ�'j\_��ua��0|=�dk�aG�ĔY���($��S���({:� g..K}�1��]��� �H8{�5m�/R�(T�f7:�L�ĸW��hM��.��+�l�h�W�!k�)#����c_xG�����7���4��:>3j����lN��E;9�?W��M�"�����9�j�f��F����j�V����R;1;RXn�4��o��.�z�����h8cEGT7� �@=�OUT�8����=j�/�9�l|��A|��6=Ͷ�f��"�d�J*��G��b8�4n5"�P��2oGۄc��m��+'Nn ��aBԅ�t/y� ���h"�@4��2}�V�ևHҌ�4$6��o 6�Y���{�tiX6��p���F�J��H�mz �YkN�k��:��0�YO9�sfM�W� \4�G�̡�wF�,�\8�{d���ߚ煿�sE�P���ٍ��� UH,���nU��r>#�`VF�P���,?K�n$��U :��3�|���K�W倽��3��� ��S�!TӺs#~����ω��A���uo�sdr1�P�+��XQz��@\�θ���|a��9e϶t:�3N�S��QX�%�:|����?>��s8�iN���>U�$¸�4�����$��%��6X�p��O���z�P8�9���0ݚ���3Ym� ��K96��Mʻ#�)*�E,�bX v�<�ɇJs�K �Nb'�\�Z7Uc�|&ɣ:�> ,aR����Wæ��$�#�1�s�:�H�_p���C��<pr�uC߈r��7���n.g2�|'�ȁ��7qis��������g�..ƾw ��B4��?�<C�cMK����L���Z�������b��Ta(����� ���z� L�LۿL�\���}��X����a�xb��HVJ�W���wجBE��+z��!���S�i./O� �rw����U�=�J�����7�o��a��N�WdP#�yT��(0�/��.�y# Պ� |���6�y;���We����qO��R=��6w�L� �Ыi���Q�k�w��.�S6�uI���f�#>p:�Ά<0r��C�kؚ��p^@���ҩ�uL���6�+�����i4�ºA�1 �f�M�m���ҿI0KK�����9�V���7� �t�Ҝ���a��Խ]���B$��H�U&�:NE��H~�|���?�Y�r ���j��}10�N���]�����m�j#����J1g��M�Q�2����,��;�-��!M�q(���0��Y�e���y�g/����-�t�[����-�� �Ŝކ>��s��3�\*=!�)�Y���Li<�犷�A�dcUqʣ����o�E�{�y�6Z��O�L�_��%�S�`�rc���VWGI��ؙ�Ǖd����C~�8�� *����[okdZK|g O����tc�E��hp_�_�C�L��fQ��h>�2V01�m���Xfea_6���7�)7$,����*�V��h>��=��xr���c��Hj��Vn����x�ꈉ,� RZ7vh���&�t����)|�� y�Ѯ��4F���uPw�Xl<>3e�OgL��)��˕. ���; ����&6ſ,=�B����ʅ���˃K��>��B��r]8�2T��Ua��-�[.b�;�%yd�cD"���@�;�Q���3��,GZPKu�p� ����,���6I��y���W��,b��"K\�H�����y.��X��|+��b��l�xU0Й��=G}�BYIMh�ɩ�U����J��:e�Mk�\���?�����1�0�����y��S8�ˡܕÑR���k����w�8k�Q�N�ƅ�e�S-���;�?��g��f�6u��},�.�Jolx�8 �B�=�"�/�71�N�x�{M�AS�au�O�s�U/��)�q��M.�d�������tZ_�!Ko}C(��<J��\Jd�@�G<7�^g����l�f���� �1�$��RЕ-(�_*(x5�q��6fk�x��,#�}a��<G��læ�}-�`��LH�H���x�p��_��d�=Do@�=V$Oi��ʾ�%�ޡֵ1����|�`b�w�8�5?�X��^O�~IO*��uJ�a�l�9+cA� �[v+X4����th����27@�Fmy6��!hO��^S�9R`b���re%��� �UՂ �,�2��X�gpJjB�07k�����8q�E�j%c&#WH.ϓ}v�1c�#��1�/���;=��w%��W_4ز�<h�|�m��E�үdH�k���fNJh��,�WAG5 ��a���ŬR�s���p�2&�?���6�7�*I�[�:���W?/<�wH[���g��$�����A��"���hNwc�+�Nc(� �=������a��s���pP-����byn�))��o�$ЈCeoެ�U��G4Ng(��0��2އ)���s�U]�01b=F=Ei�� �7 a·A��"�ؙ�L��Z�sq��G9eS�FN������8H�&�5x�,�`�8�ֶ�X�P0}��Gܺ� /�o��Z�zE:�I�d#�vi_Z�;Bcl��:t���𢦪ʹ�h��i��E��Z��umŢ��� ̾];�f_�+o�{������7L�|y⊲ -�~X�lp��m �7y��}(�Z����\5lI��p0,ل[-t �ds�L��9r;LǼqX�G�K��&�G�x��J,�~#���Q&D��J���b3��M�����L u{��N��R�숻ڴͧt7�LPH��G��/L��{J7��'��4��r��#�):�Z���շ_�Jf�ö�{ͻD�����;��R��{��U ��!��8g��GN:6)�Mǧ�� �����H���A��FV���}E�� Kp�Eq1�c��1��D�D+�n7�>�!q��m�vD��)T�Ͳ�3�j���5(7�I��ߦ������O$�!�|�AOy{Y�� �W�x4w��/�"�Lm��2g��]>xZ�������I2��K���%�4=,��V�#���^]�������������=���ծ`�e^��灋�>��Hr��T�Kk(fN�X��m��n��`�g#��6,̑��E�����l���8 �*����*V� �~{H�zmT�A���øt@��W�*��p�[h�������AY܇'��}Y����n茓c���b��I�0h������F�燊L�v�-j>�'��S�3p|�w��^����Z�?��^�Uվ<&v��r�Z:�~V���MOն� � ��U�!hX>�m��4�0�s�p�]�W�6�r��t�NO9K��I����%~}�3>�§%h��$j�Z�S���i4��O��/ ��9�km�;���?�O�ի!nj/�Πx�L�v� ������l����z[�۴`��DC�2\�ېODl!�}���ox��;Y�ރ�z�iA&�-=�0��"{���bߧ0���I��a@A��S����>!��] Ц�� � ����XLnj��n���[�H���5��Q�.,^ߐ��0�LW�V����<�#�%� �F 8����+���e�e�q05�~�H�l��w\{{/�}b�E��U�R��Žsd�BYPo��g��c9�R;��Dk���E�ѕ�����9����Ђ��3^`Ճ=={�kK���x�'�U -X��U���oD��N -��~����s�.=[λG���� 7�bE��>�#�3�j�#u�eV 8Z�e%"�@6dǭ�'�b��i�+7i0�=ǁ`W HN�R��%3�����<M�'���Bb��c�����{0[�{!��"��3���7 �B{҆�R�<P"�gީ�wk��* ?���$��Ev�|_A�s!,%�'���Ř5�a<�� [�1HSY����� 4�����Q,��ѿ�lfWB����|� f��嵕8��l9��+��~&���i���0�Լ�R��i'��X'p�M�jӋ ů�h%�K�¢�v�$qm�r��r�����љx��Y��!S��6� P^k�+�d'�`�gJ��9$�V��^i��B�g�7�0��;̻�,�{��]�������� �]�n�9�tJ�u��Ou�?l��׃~hpt}�M�N���5���au5�0�q��!�7��-Kz�}��x�-|�X�l1�Ьɤ���������p���t��g�:�k�ã�=ť�����Y�|�p~��li'�yk�* ���~V�vBl�HA$ld�|M��aL6!F$��J�D.�f��eu��&6YbN�j$��9�y\��5�Ȃ���+�o�SA����i��γ�RL7bH�:�w:�Q���L��H$=�]��恛;m���\VA���(. �;ݛ�C}�J5�֯S��IƑӯ2��Tԕq��އ+���` g���fO�� � T��}�8��_�i���^c;{��N/���W;�F`�d.L�E�=�Y�5��T#��k$�&�Ow�2)JAf�)i�W.�����rꏕ4��� \�3���Ϗ��4�&��"N���T� .W7D�=}�QD��e��x.�]4�Eka��S��c�ѥ��|�5 �Z��R��-vc��ڦP(|��J6����i���,�:^�i��Gx29VC D�_P� �V��j��Q%sQ�uQ�I@0y�W�g�9��xRU&����1� �pcI4m����FY jV���2�Ӳ�K�|{��A%�O ����S��=h]Y�%2㥰�7���1_�}�x�v�}��A�G���M�kҤJ�F��.���ךkN��<vC�[ �7rY��k,�0s�6��4����GG�����l�U�GX݁$��S$ph���e��q�9ʟ6=�*�&��P��(����иm&�'�q_u j�E���bWM�6��7�*�ng��܀�=�^O&�~��g���8�B�>����c�*9/�M��#���Uc�z_"%z�(��?hhG�D4�zn�v#��ŕcz��5:5ġˋ��:���O�a��?L��|��O�#�`�� ���ͱlJ��W=����+]�N;�B;�/k,b��NY���G<���&J+ �Rno<_*�%N�0\��c����<g�W/la6���> �A�}���]��4� �߄�u�1a�O�J-�O1���{1g(e[�������k��N����'#���^�J�2 �R��ϝѣhbo�?qdz�*�(�!5}GU��N6���w�%�&Җ�U��� 6��p8t� |�{p�Y�H��\t�o䒱�I@�-��ٜY'b�b��$���d �3�$ޠ�]6��[IN�"P�|�9��u��k9^�d92am��f�fm�&U|��9�^ʯS���(�rtU��_��v��K٢1�Q/ވ�a-z��jh�:���~.��ɸ���K��ߠ�{L.}�Rk�+5��N��eF�9��HYBs�+�(˜���Gr5䉡j��2��AQ�^�"h��J����ɞn����ʖ۽Y!E[������(ؖ��$v�eό8�+@n `o~ݕ-�pʩ5ƒ�\#K�o���Գ�L,��o� @$��h]{oy��K�w/,��F4տf�,j[FN٢�P�.�=�q��f���M�� ���z�O�=����mPH��OT�Ew���M��m��`.�#p,�t@z�i�k���ԧ7�mx�3�i?�ɝ�����eJOPo�D�ÿ�+Ҍ�88j$���G����^N�Ĉ�[�O<����9�pHᳺ��C��1�$z+fĝ�Z��~��h��|{���&�p��[�(<���6�l��3,֗927�)����!H���9(���[���ڝI�7��Ƴ��ߎ�Ut6����=���|M�N꒹?��:�sQW�?�� G�L;V��EF��-+SQ��9�v��%D�2��̸��l�d�9���1H�#x�hh��>L�~#�Qr8�0�HY7UX���f-�s�CY:�����xL�uz6R��s���Ce�c�f���?J��!U(Ip�)�Q��&�*5��c�mA�;Lx�6��ה��i��T�*� �S,�(p�p-������i� ��uh��*��B2 ��5â�.\M����.�\�ގ��fЉM2�������&$��R�Uͪ��*�3K���5���w�8�ct�v+"cYm���4��̩ti3�7� �@�Y��N�I��p<���q;��w̬���'�-��'�����fk���{�k���;�-Lֲ [(�7��1�$_�C���}lQ離0rt����r�ڣ�<�"V�{Z�I.�����ū����%�2De��f�7�H�o$���Q�iߗo��IlaK�D)?�����;j)+�̳E���lT���HZ���a �1P�B�!8�����.Qk30�ݦ���:Æ˓�"+@����Lp�������2Uo7�(�YFΨÝ����99kaaH5�QT �����(�o���J�]��1��E9@��z@��9�J֖!Thv�#L�8�]r����c��e������x+�3�\����'�Xquo�%����� �k�N�����T$�rϸ���2� �3� �yj-&�N��&�YW"��A�{�n��8�4�y�X�%,PW2��(xE���7;�ڬ[�P���.785�6�6��(1@%�@����X��f�ܡ zKD$ܒɚ��g.����&�~�<zfդ��`q��?u-ۑ�O�L��BRtq��r~���o >�W�>gri�>��k�YS���������#�.���r9�o�#=��=g� hT�5 Ob܄N!��~��QR&�+h�� �W���3:?X�����sZ4Tԑ�7M�9%������O�a' �~�F��%��D���2H�#=5��3&]�x^��(d���d2$>�}�G<p�v��e�����6�z���\�l��v|�r�c%G��?~�Lt����%���1�U�fI����h�E���;����u�>֩N��捒��������{�9βe8,�Vm�<!���"G+^1�)�5�E�L���du�ny��Q�ߟ���Α�2Y�J���dW&��h����a��%ЉV�������7�C.�)4�K������J��uY2���~�`�E�l��/���e�V�o��� �g�Y�v� #�t]��a�j�9WkS)s��3^O.Q��t�*p���#H�(��0^���A#/gF*� ����.�4P�r+��K�a[�i��_���Mj��$����Bg�s�7�ܶv-��y8q^��\S�Ќ�V/�� /7̂X� �d���k��}��%VգWE�pp֢��RJ�z��_*eI��\��s��������n�0��j�֜i����M'��oN�h�dQ��uuއw�nD[J�=��fs4-e�З*��=���j��ff�f d ��$H��=�w<�Y�h���Ы���|�a�7f]t%��!Q�-����;��?�����a�\P��_��J��z'���B��H��A��Hp�qq�]�48@��?_������=~P��Α?���J8"�6��S�i�*-{��HXF ����x���b���>.�%��<c!��5�����7B��� ���� *s�� ���ӌ}�u��0�W`O ��#(�e��i���/�W���%q� ��t���VDd��;����p�l��,���mxy��s�Y��ZD ��� �3�����gE)++�`�:�-c�X1j�:5On4z��T����b'W���0�}J�C�e+q��&L�3��,��"'�lܦ�C������.�JJ���vK�N�G#d���\�c�zAv��t��S�u�n-�c���a�>#����G�ܘ���GW\&���R��d"�%D�td�Iρ}TQ�gFm����ʁ����U�����1�MX?�*e8(����B(i�������q���p��ӹ�J�z`���Fvf!W���H:@U�t��1W�����y�C�I{s0'�����q�a�T+��=�y��9x-�E����_�(��\��d.�Ga�U[3��~�$X�ԥ`y?�u���#�o�H6Α�Ñ~�8��f�����U)���D:>Ж�=���z.�b�iR][i�g]= ��u��'^WJ��� i��¿wŚ0t�<���(��=�mkn������9����k�K����^�_ƌ�,$QN>8 ͮ �����W$�ҽ���<7C�OH�q{<���/����T��H���|�~J>}`��fl�d�l�~�Y�ZK ��+S�����>l*^��W�AT�\'�@����~�l ��0�A�h���o���j�Fp%Fغ��~a�ȢL�4���\�e�iT����<P���:���������F��ܓ9�7�%x8�=zx|�֩jMFۯU� ��9�%�bb��˵>a�! \̽L]!��NR�'l��y\��W%Ř��7��%u�ɠ��S����#ȕR�jȴՌ�9�cs�jL�)��w�Cc�B��Ԕ~@�+s�Ȇ����t�Ž��� ��rJu5ZWM��ԉ��̚��� ��#O�jbr��/��M���Z(Nւ$�AWr�L��wt~$1��Τ�r4��Z������Qnb6���U��)1��p9�������(� F@`������{uL ��?X�Gpt�)�S�F����YS��{A�80 ѳ�"I�rM�+�F�WkH9TT��x��3|2�)�A�t\����\3}x�Vzh����C�;q��Dc��h%a��,=�D�#�6w�G|��I���-H\����D懬G,S��,�#�8�֭������{��<͔�m��#�z�n�^���*�L)���s2�X�_wyj� �"�U�>h�xї��n�{9�[��uS�$����ud�2��GH�T��g��|&!k��fzW�W6n���Y�O�s�OG��Lƾ���O}g �Ѫ�T�U��D؝� ����*E���O{e�\�n�w8���d�/�*гl�bS�e�r�K0�%s.0y�]��Oca�BS��!����[9~���H�5ċ\J�c����A�e�}3g_�����I�1g{શ���r�e�D�ć ~���纂�|���i�hsb h�pAj(ܘQ��SVǣp1��х@�Y:*�%wR��qe7�-����Q.���ü�}J��,`H �[��f�[s/�� @�o�Yy� P�kA/}�S$xD[�2�(^�ܶ�{Ng^P2��Z_��4��"PJ�}Z;J,w�5�;���֏T��� ��#ʙ3���5���X�(n"��(t1}O��v�\�b&�"I��9�Hwh4喪�Hn_���RT��!�@���������WSKT���{���,k(�H:��f*|�qT6H˿�i�]ڇӧA����"4aB��S���_T0�m<Y�D����6W���-���n�>z�:�ʶʪ/z��?M��5����X��� �3����w=wf�Uw�]��d�T �~Ƀ�g仉��\��'�"]�I�-��z��x�x�VKa�����/�W�+Zw��@m�Oŀ�Xo��r�T�W���0�/^�o�y�%{<S]=l��Q&AlK���l:6@�"�S�h�B�Y��Z{�T֝�WZM�D�E9�m�9� �6:�+YZ|��cƴ��U�e��j��Q��0B���(d����PXK���|�+��2mR�"(9�*s���8"��%O��[3kϽg� *��p�->9N��]�ݗ�_�uM\G��\��L>r�[CQh#��z��?{qhT殺�r,[c��e�{81�h�F��ESٟ�Q��'£�y����%G�EAj���z���$���d��oq�W\��JP���:0���-j��k�d���}^*��y��F+p�C��C],ʸ��u�(���e�uk`q��3'd �`h��f��Dd9e���P�o�$��9�p�^�q��|���$y&���\0��(cd��W������II�k�(��u�}��> ��j�|��AG�Jn��[oܬ��B�NчF�F1�b�_��}X�2w3ጢkr@�o{�=�`��3Q�fF�f0r�ɨ������p�a��K$��z:މ/A��mS]i�,�y:3F������>A5���[TO��F�0s�D��&n��S�ً<dn���]��7��%�O�1���V�A��Ã�Z�T�NO9��l�K&-2c���b�N5�N=C� ˮ�єBW�����ز��6�,����<;o�s|z�ƛ�����~�����T��Ǿ�w����71*@7��!%��ab��Ԓ:\d�3�B��m���9��Ţ�̠g|ݐ�A��L��(Z:�T�Ny�ӽ�|����T_1嫖:���G�7��9d�J�2�F���7�_xf�q����Z�t�<�4G�J������/zD[t�B�X婞�*;�x|��F�Ā7Ew�/[�0l*(����n�m���)�O]p��-��L��QH�U�r��yV����� ���7��>���� & �_�==%F���~*���3�)GY�|����^Ti��Z%��Ϗ�'��'�8x���Z��0�%��AޱJ���O����"XO�����t���M�1��.Ɗl������V=D�_Hjh�㥅�7إ�[�@9���G�q�����K�Gc�)�C����ֆ&^�4x�N�?��1�Tn1�r�?Y0@�l{�FF���"8�2�[����Y6Q�!�OM��C��x�*��A-p"P$�\�����4L��Q7u��"�uN{�5��IBl��CF��n��D��H�ZYL,�2���C��y�硭q7�i��_�{P�|cG#��8nB.^��-� ����ER"�Ӛ`V�� ��M��F9[x���$茰��O�+���j�'����a��x�/�Ƹ�������Znq�QM2^�kuPb+��Kgo� ���]�=:}��oq�����j��>W�����Pϵ%�����2yA�Y�z��_?=n�B��EX0��l�Ă�8W��R�4<��06cP�9�C놭JϚ�j�xgC9ęl�sP�I�Oќ�C�s���!��i�(�.�%����$3I����Y���ym߳tO�2[]b+�),~��ٝ|>FwF���L'>�"ѐ�������K�� �?h�iqGe�&3�����H��'��h�@�_2��b����Ƹ3r��K�~��VY?���ІMt��/�DP#� �PU�T��P�ݮ�u�����ƨ��Ǿ����Mm���L�2��ګ�d���[�������]��J�i+����7�G��[���7��K�1�uʼn`JC/ .>�ڰR�d)�2�a�f�N����a����+������Z"�@[�O�α�4��h�V����A,S ;���=^��z��O�cU��/Pͨm��!���j������D�gE��F�|���U���l8�do�"c�a�ч�s�\�I��-�t��~�yR��`2oT�q��(�m���K6�6�t{>�K�Rs)��r`+���.)O������r���1R}�*eF��'�,K� 1�f�`b��M��|j��X�!�@�S�Ԁ���*�����ᾓ��v3]���M9���1�����v(���W�>����v�&�B,$mv�ӽ��; ��+�!� ��b����T �^5Ұ��<���S�\����x���s�_����s���âk�2�يs� ɣ�0^���Z�V�\��p���Q�Y��$aS������K�9�M:,��>��me�,�7�a��_y]}Z�J`�NDz/���R�*��_V����P&�(�2�K�O/S����@�2���愁�>��A�}K���o����pw���]�Nr�_"j��eFV�Ј-�.��1��J��%�..�c��~�\�Я�}�O��<��b�[I��e��Nyծ/eJ��Z�R�B�w�.�����-Go���'q �����0ǐ� A������|��]\%����@?vy���Z��lWFF��W�3 �n�L�ׁU�5�w�iY�~������Ӥd�/��!Sy�����E]�����k,nGj��ԑ�z��2j~�o�cV��چ�����U.|��� �)iw��î��lqq�6�N���Yf�Y�����ZG3���&�;���RJR��Z�2Xو�>j �B젖8���uU῾�A��q��O�áC�~��E������*̡5lƊd���F������C�� 0����&�m�̥$����mw��jП�i��-���v��S4�:.B���Œ���6��Η��˫a-��'�xP�%�瘭^�g��F�Y�ۊn��fw��u�pZ�S�=���i�y ���������ra�|Щ��\#��9Cv�w��j���m@C�3K�=�~�Y51�_-��E�}%$1�����3E�ʨć��[+s�}��4z��C���ۮ$�`+~q�*D�c���D�!��6���}3��g�ۍ}��ׄ�6ż���"A���~oy�a��W�����B}ƙ��*���!���5���#(��:-��{�dr������5h�cH���m��a�"˔?��L���e�.yl9�����7sp����#zT�pZ�<�Jmm�cه81@��c�fjLW��^�l��� >P[���~�Z` ���U�w��ai��EXs�:�\�@�G��/N��G�[���3��h��8[>d%�+��<Е�l�ݽIϐ���-Ǥo�C̆��@xQ�s�ε�(�%J�vc4���h�V��]:�:���@�Ԑ �^q��;Y��n�.����Ǘ����;�l���2S����y��b�n�I~_ �7�?�|QC�C�I7S���1�����ȋ�E&�"�a^gAIY�_���V���sxN�7��-�Ӂ��g�6�m� �5$��?�o.<�Q��r �T��X�uXͿBh�����V�+�� �� D�77�-�ʠ^�c_��"���)�s�y�)|��6Zws��A*r�7���>چ����n�%�����☉���YQ�3��q�Xf�R���� ��9g���ng=�<k�~��k��=�(oV�|�U�e9�ջ���E��~�yA����c�#| ��^P�+{���o�- v��5���Eƿ�i�~X��M�S[�/�3�0M��E?B`���N���g�Q+�g��ɳ�m/ї|K�$٫�Z����RA�.�E��y�}{E.>����!{��y h�["܆��Nɤ�O `d�̀�LT���o� �d�B��JK՝^hDV.|p��tGB�{�d��\��P�:�ˍ���瓹��n4����BY�w��+p����Eԥ����4�IPQ�m�f&)��\х8L[�H�Лu�}�\٭:������xj���1��2n��i�-2��RRp�^���1�9x��d�A վ��+�Y�����l�x���� ��˽����pE_�PE�C�(��W�J4�S+��.��Ϊ`yd��d�|4_*a�[s�1譚@�d Xd�O4�����8�yJ��t�ΛK��W��+��ZԽ��ȧFk3AM�- ܭ��9�v���;���ô2 �� "D�9��t�et�N��㴔��ݖPEzb�=�cu�V�m��5�vF0\�+̀��S��`Q���TI�2��G{��HK�j�Ԧr�B��Q����F)�!���a�ī,�h���V���4\Ć �m2��`(g[��+�4��Y7�\8<���:0~����YB,%!�̷V�{�/!�e/<��c�FZJv#h�i�2Ӟ<MO{�%�=��j�c�Ӏc+�`^�pz��IW��-O���>�ɸ[B��/��t�P��j����Fqd=���?^� �|��N���-�ِ>�U�'��¥u �Ϯ����M&�G�*�Ҭ}�����4��kYх��6$VqZȎE����w�$ ����`�R���Q�� ��B��1%?�vؒ�g��\�g��\�<m�5����X�u����� ���<(�f%坭��5$�ʇ0�܅�v���5+]� ���Ku9p�i�$���N��'k?��'5�t^Z�Nn���x2Y�_-��k��a�w�Q�Y�I����iP�v�@:n�a^Կo�:47e����F36�P5M���~�5�G���Z8`��O���&�&b�bp��D�H�|�en��ܯ^T�^���P�R?�Ցgٻ|Q�u�An"�� ����3x� }��{���&_-����4�-�4��"���)���Xؑ���]�!�#l�Z�c�<�eE�d-����#�2�Bw���@��Z��u���7�Cc0˴z C*5ǘ���MKAi>`�hZM�;�t��%��2A ��K��#�4�*#�%��ͺ|����|�%�~�$˙��5R��ߎ��t���[z� ��wu�6`6��ȅu3�V��ͽ���s}^2��7)̩ ����,�^�^��2'�oy�A�l��k�{�c�YP�_���d��ig�X{�r��X���G�W�AR�>-����a|:R���W4%8��7�Da��2��g.���"���m�=��<�Ix�E܀��O<��� �1��ȳj�s+��D�{����X/�kK�U���S'���(�Lj+ܐ�y%�#wds�g<O���W<)"4�~VH�qߠ�A�=9�_�<;��cӊ��������V@���e&t6��J8Q@��1y�� ��|qs�x���0v%LyECuM/���I?T��r�P��R�� �2|}&�>#���Y��f|��&h� �Pv�����Db�c��aҾ\���[��J�Г=2a�kC���4Ɍ�̢�zɳ̞�)?�G�``��_%!4 �TQ�(?�W�]>�r�Q% �x u��lp5����[�4�m�4�`�e�M�x�~%OHjU_�8I�9��e+ f�W"Wo9z�}�����#7/̍�p�$���y��`�6q�G]�ٌc��ہ5���)�}��O�>Ա�Ԛ�S,[C�5�oz?�����N��,f �_�$!P��rQ5�h�x����>��5e���vg �����62�ky�"�70�g�FF�n�GY�x�8�%������w�3PRH��=gBԶ��h'��� ?�E��bm�(Bt�b����}���\�R>L��5�(�G/��DJ���9]�$�zev� $���3Tσ�X�ǻ�n[�Py�ѷ]�����1��ݬ,���Ɲ��rj��1x�Q=hۄǍ�}�Ե�D�C����9�c�d�uΨ�&5/��}�NZ��NB�Ҳ#Y}�pd���j���D�ʎu���7F��!�hg7J��%�_H�V�X*$��X�=��[��&Qx�/$���f�/O��K�2��{!�6��E~X�_�ԧ�k��x�7���x�mV��!��7Ֆ�"K�P��^�3:�]���A��,P���XP3@�O� ��������pK �r3�7N!C�\43�H��RذN:�\��\�'�MB�Y:˔%�T>N�sE���< 1�l�b�*ʆ��]#� ��Z�Z �/�ŋ�6�{�j(}-�.�i��6�U��U�F9����ƻ���k�r�E��P�����9�7�^76K9E�:M��p�pNE�g�V���Ny��J̏c��Y��a��g�,����7p&�D�s�d5�V��.�J�Ā\ì��zn]���k��vp0�b�hµ;��[^9���X��9�U���7�郓գ"X��_q�Bi��r�|HIf��t<҄�k0=��D��&���0��QK�8�v�s[!� GgP+v����\����[�m���Iڀ�\l���`V;�)�é[=��}n �UK�{�%I�¾&<&���$f��ȅd~��jQ_�ś��:�\�i g7:�_��B�S��[fv`V�\%v�lu|/��W�u�l��*�ਟNk&Q���A�q@��кU�t��͒��ڝ�b�1A �;Zib�܄K4�_�e#��j7o�02�9��#w�����cL���%:,&��xb� �aK�V�~6n6���U�����"*x��a�8b~T֗q�mK�y0ia� 8�� Uc��у�Xr�c���>�m�����B��l�]�R�1n)nl�[$)V� �a�y˥�4�i��R��/�ِ:D�č�l��O���pv�@e9`��,O��ю���@6��aS��������#���* o�a3>?���:W��e���n��_QB�N�Y��eA��~��HS3�R�O���[Tn�ٞ_.�g� W�C� 9a51�h����ˀD<$�oU ��7��o �bN�` �y���00���7 S�($:����L��"���~ne��fS<�>�mz��쭌%�w�³N����*�s�V����nߓ�Mc�2�O8W;y�0.���7�A0����/�6�ç��4�=&���2�z�K�Ȫ�,Auz_f�LJD�|�a�t��]�ĬI]�ġ/�=}���� ��$�}L�����]�F���_D�{hqE�#N����ܹ�x_wqiAAg����~k�u} �?��}��ì* A��K�8��%��:V`#i�UY�=��4����:�m�� � XO�p����zK�p�]<[�s6��8�� Z �������������5��5CHg<�֡p�VDLW0_<��냃/�� ��T���/{�^���[�����>CK�v@S��Ei��)'�we���*�~ӕ9��T��:�5�Z �dg&�s�`�I��l�� ~~�e0� ��QO����v��4�(���`�7�)8J2�X}4x`�z�+������ �X�2 �3W�%����R�nI�:B�r,���']�_[]ˇ��zŗ�����"@�`)���tᥙ�繛%��5?��?�"'�����m�zbsҬ-��nwQI`/��:伷����8���順����ٍ`�b�p59�ÉW�CmS觥����:�B���j�\|`Խ�'\ߏj��gҧ����\rb�b?�b�Eb��u�߱T$�6@� �/]�ό��&��H0)D����s{eH��`I��A=�Γ����/�:�������2����T&YMu&��������ݩ����#���W���N�;0��&�M��9nXْYLլ�������x4�=��rd�ȥRr�D\b�)h6��:Dtx�>�Vh�})�{i�4.��y���$r{�v϶�\�/1����U�*牕�6.x%�_tR���^tߴ�>��.�VJӱmq?�뽧DK�c���'�u�|V���/֪D�`�i�"�ҟ�֣������p-�V��8�Uǝ^�ޤ��8'G���js�~;�9�w����>;3��Yؤj=*r�/�����`��r� z ;�+m.��>/7ƞe@��sFSI�n���"C�����Y�0�YC'2��@꾜0X�b�� �c���jv,�^�����w� �r�@*bŢ�K��+P��H�������N���i&!v�W����'�9VD�=)���}�ik��ut(�Q/$�#�1��/��Z4`3�/���7T�Y�?s��4�+�J&`����ײ������<�"�H�*� V��2�;��죄[e?_�.7��r�r����_�8�tpH��<�]��.8���˘dx�0|���9�4�.�L � �`ʼO����x<��7��l� ��/f ���빉��@�@�\�x���x���tl��P��Ͼ�@�WG�{�$�PR0Mo�R�'�b3-8��� �핅�:ʚ �m蚠�KKҎ^����t���p��?%E|��8�L�w���1����Mk���課*��]�� �o��JjLR���mWڕ��.��Įmvh�M!��7@��c�R���*�o��u�TWl��~&Z�r&@m0t�L���Pdu'�m�Q�Y����:U�&(��j�"�G�����!+,�c8�M,� s���;���_��?��˸ v���wF���H5� �[A���� ���,'f���p�����pߐZ2 կ�釆�b���`��<ؽ��V�ks�(���"?�$�4�o��qA�_���:��%O�m~h�{Q:�T���F���[D�PG2<��W����M�RM�t�+:ܭ�r��)?����7Tz����<�B������k��I�ʓ�o[g�Ӆ25��_�p:$��� �2�7x���a���og�kcd�@��4z�<�7��ҵڹ�nN��ǫvՠ��ܢ�0��D���rO4��1�QF��'<L����s��s�ד�q��S;�4��<đ�V�����<e�KoJK~�]���e�D�X^Kㆷ�=�<_S�Ơ�7�p&.��UvŎ�̲�w�~���@��h���ۂ ����Sy8��?6ˊ���?���B/�у�W��2+�*� ������'˞�N���ڑ7#���mϤ��*���i�Z���t���)�Tx�~�����AC���Y||����H(����Ry,4�����@#��ݳz@��WH��$ 8�oA�Z�g�VT�5_����qoq˛Nhe����I%����3W~ʲ�K4�nuą�(گ�{�@^j�qH�qxɄ?ST� ��c'��@�u��g��7�YG��T�lb���(��i<If����o~���V][nT�����_O�:����QM�MF�I �9_j�,� A�����&�7�qK9�dk��r�'rW��+7z�&t���qT|���%�_S���?阉jӕ��Ӧ3���YH���@7��'�{)�1R��'[�(��J2��1R�#ǎ�V��flIY��C݅�afK��`��%�?�?��*r�f��Ё��^oi��~��cA��J���5�+�Gy��%w�Ep:���O�T�,P/����� k�h�:`���@)�"��ݒ�;.� G�OVp��1N����a>��t��J& xQ%-������$�=6� �M<�8� �4,du�y�x�4>�5UY����a���f��i*�����o���W�P���ʖ�i�7,L+/��g��%�/%lbt��-�b]��~� �� Ǘ[�c�qy^h�H���fX�l�{ikv#�$����4q���l�Ιn;/�D �k�,����1�(Nj�� ����\�+Θ�V���荁.U��_���6FPXpz2�� kWaZxQ�{���L:�> �YO�*ɹ�41v�_�֛�B&<�e�#����,c�f*����6��,��WK�g��Pѓ|o\��]����F~Bva��QL����6)��$�<�镂��I;x *Q���wq�a�OU��II� xb�p�M���l���I\h��i��a����e�0�4�~�>I'�F�H3w���-6>8_MAL?�><�\�����F� ?�0i�q{�#��r����Я;�H?#˫��"Z`j�^k�}� �ŠkXb�'|�?��O<�����թ���N�@��w�xs�ث�����{2�XD>�T�6�e�af]��u�T���m��G*��/�LhE�\l u�RNـ�"�T��n�OS�yXe��df|���:Q�^BV���l�Ml��4j��Fj�ʤ�+�C��i����F:{-��^ �r��G��Q����{��� .�p�E4��Q1^懲Xt�}_z�5�S��-6/��L�q�T9�6z�S{!�IZ�Zq��"�i���nU���ֆ�X,���,H�!��#v�PhTYR2p�@�f��ŕL��jځ���,�h��4�jm��x����Q�����w`{�yu�T�b�Q������R9R�[�ͺ�{��g�ɷ�����l}�2�r2b�}m���6�O��tkr�p;�b� 4�Z��pW��F���NE�=��'�G���'�MJ�,�D�֫�C���Izy/}�q���m?�W���'�9��q� ��KX��C��nȚ�D���ϥ�:�78+�0�k_�H<�.�3R5&��X�MH`"Csf�T.���ݙйY��� ƌƴ���d�Jj!�Sd��J�ԩ��p|Y�~�,�H HP��֍�zjM鹐��)���ĵ�� �O ���I+�&�[z�z@�@���2���ԉ�£0R� 1��e��ng��'R����I���Bs�0y%J����7�=�2s ��#�y��i�g��ۑtoU��^fP�]n�FI�� ���~��G�)z̈́�r�!NO���I��'v������пF&�GH�=���5Hi��Mn�R4LL���M� �]<��r>_k4�3���ЖO��,�ב�;��g�5Lo*,M�|�M�e�4� Z> C��h�<|�d�}�5�����'cb�!�p̒Ϻ�92�<Iؽr�.�ajbT���8n��4BBk�:cb2� Lǝ����a�f�)�Y����5}��� W-(�3�_�x� a"�KSh}@�"��"��L�����w)l8>���{� m��VUl�t�%xɜ=k`|���������/�6�-��YW������zqX���/�m.�&�i~�|�f4�@�t�P�~3:��0v�8ʩ�����}p_)�������х��] |��&\3��7�g<���<|��q�ڧg���O�&:j��'����Y�7��y�Ӳ�����ZBߩ1��P�4[ų\�y����Fn�[�T�5�vZ��v�KE��'p�:����ч��:�����@��gP�R��g� ��DB.џ�^�{�I�.>�t��E\�?#�q� ��2�U��Z-����5ێk\�%� ���jz?� �=�%��×�{j5��.��\���x1?G��>\���(�����V٭Si�uZ}�z=0z�?�~� r�Mo��B�Q�z\���f��jϟD�U��#/�wg���?�r0jkp��$>bw~!�'�������&�acѫ �՟Sd��}�:��ɛqU3ى�Tɰ�W��%N��J�Q���x��6��=[5w�N8��,�~� ��ލpNe�%���� �t���K��=�)߅��j�Q�D�n�xH7��)�&p~��}�B�ѓ�A>����#]�L�jt�/�7�f����'K,�/�wQ�_�h2�p!dD �/56)�^"� �dN����+:�7�L2g�g[ɱx��J9��OeRB�Y��j)êu����e��gػ�[�)�j�s�7�Q�)8�p.�����UJ3�GF�P��G-�ؘ$��:�UA�K0i�E�>��`�e'g���u'��k�e ���� Z���@')ѽ>D��F�ɰ6�,�1ʖ�I�`x����!��k4��CT���Zk;�J!��qv̉��3���P?�9�G��� d��͌���y�"ڟb� A'맱j�;�L�y<��UE��Ѥ���Đ~��т�y�x.��ִ%��/�ft����[V�"qʹ�[d%WҔ~�%&"���H��֍%f� ���h�d�nn{`�ΡyN�bB���j�|�$34�U�0��RJ;��{��,r���O��I����Z�;4~\ WmJ��I������!�^Zy;+ ���ٰ���W��q~�� wfH�����1��G�5F7�� �y,��k<k��m+>H�b��&����0��%�0)�.�\����n���0���O���o?�k* v Lb~��Z�/����"yJ�v1�evO��L�yy���}��P#%�v�zc2y��u��+[o#h�?e��3�����#�D���u������DCO ��"/m�|:W��y� ������R��KC�Z��n�K������r��ٻ�aG�A!?���Ԑ�c�?i����(*�w���Lr�4;P!Nl���m8�KZJ !]�OY��Ⱥ0�Z���7�;v}�`$�i�y��"̂$��*��&�Pg�Eh��4Ͽ]7���rM��� �����*TɈwv�=��z��7��d�b'��ɗy�����A�`sR�v�C1�"���`�(�����W�����,�h�Q�jؐ� xg�ߤM(Pݏ �F ��c����X]���ky�~"'.��e�BiS&��*;�+o����j� �}�<u*M_R�(<�pp���G���r�,_�Ւ���|=��Ŕr�Z%�?��z!(���K�$ �z��U�ԃW �T�A�p���9�x<�Ʊ����>�fG7>���q:sU:����T�4Vˉ�0�6��+f�F���� nj�}/̏I�}�x'.^7s�V�o�G))������1�_�����l߆M��E�Sh�Z��k2kKI��� �1] ;����k���]w� Ru�V`e}�.�մ�8j�k&�qٻ�Pv�+]�J�dp�7|8�4�U�F C���'je�m;PIK ���́S��������"1%�"�� ��J���8��R ���er��&u3�xN��c���X��y!� ����Q"����=<]Ը��� �<���v턭j}�Ty�ƔjM�N�}J �m������G�QG���w�Օ�����8���H�P��P����a�:�+<^�x:����>D�S[P��ڲ�4\w6�8e˄s:5��~�\h~�Fq؇���Z�){�v Q��STfg|#j�{Dd~h��m,�NHM��u�@���0�E}$�+ ���_A�#�B���o�N��5�ǡ���QA_/�ب�-�� g��7pt�5�l��'#6�>�$�m7��S2��<����'v6$|gY.���F��1��=¢���8n��Q$�ͣ���2��4��e�H���>���28�]oR����kK�R�wF�H���Jx]b���L&{G<��d��m��#\͓� ,`g�������r1n^9�ہ/m?FG=��b�h;p�|���&��%��Q�t�`�X�B�F2S�_�5�O6�$�h�8T_����C���aўe�N���&�����eb�J~�_�^�Y�~~��L������NTgu��kM���_90���OMRP�G��� �j�����U����_#��"�F�֍�i���"�F�L���S%p"��Q��T��CW0��+�S+ؕ�厈�K��164���X�Y�F.�q�mr�)}�<�}7��,r6Sp@���_���:F���O� ���YL;Jq�/�b��y0����Qs� N�o�������*��Dr�Vx���!U��^���,L+�q��V0���sٲ=�t��ĸ`�� ����}�=te[������Clޏ�բ�9�6oj2)�������?�8��Zب2���ߛYpu��>'������ ��M�h��ḱ�Fhw��݀}_�>� >��»~�_l��n��-bc���x���U�}��mg�nC~���km��/��Qj�1�U������.�Kh��Ww�D��=gH��}g<��O�--2�m��1E�����t�;�]U,�-�h]>�E��~Tl2�rH$��m��B�E� ��r�_5N|ƫSڦ�j�*�)�g9>T5z�+h�ݨq��Gz��`����5'<�)+��bA�#Mܠ۟���� \P#��b|�ѡ`6�_˞1��� 3[g��I��G~5���r����� b��?! D��$l���]���QQT~����cK��J0�,G��֎��EXx:��͜��D��$�����w>��Z�j=Ӊ2�¾�5�3{^���~��K�`*�Ř��[h�j���爞�}oz�yj��hIg��-�F_G�9�V����Ӷ�J�k<�Ax����qDahW*^�@�e�j�����ˢD�3��-ԑe:Z��W8�����O�gE=��(<1`�j�I�hT�j|>i�%>7��o3/�t�W�P�Gӗ/ SQ�I���V�q�u;"���A��R�$���6yY�zp�rC����*��T��ؠ���XZ_.� �e�c�� 2;�����.,�)H�U�����v�\oǵK��..]Na�X_�;��W��F*m��rx�O�,��$��#B'�!���)�K��}����eËQqJ�J*��t̥��=�^�0�'��Kf�z��x�&пmw�>$6c�7�6��j�T���Ĕ�ԓ�9\Y�]�`)�ܯK1�~����BU�@b$�;�u���m�Yü:8Wm&�ff�jVd�m���K�I�ʆ�{ƾ�� ۼKk+Ԏ�x��ST�5;��8w�x��v�bל$�E����8� ��}����IQ��%�Y�(���I���DS�V���9QpP�Ec��u�u!~�G9�a�"�I�'�=���,7��9�6�[m�Ζ�K�^�"�j�����a�u�Y�`.��w�y�?nxuh%��A�~$D�+�S~j0!����3�"�a��P{� ���\�ˢ��z��"5d@E��k~��L�4e��(y���?^��j������o��u��h�+�Or��g/�8�6�~��/�ᩏڼp;uS���czj��ecN$�^�.MzL_����G�i��ɰ�P�� 늍����(m�P�\������(�!�釙�v#�����Z���,��� �3:�R�j=C��>�0n�,:w}ߛԋ��om����F��Zk�`��ӷj�O:r���Z���0S_�����łw�o1��G��k1ګK�#%O��Tea�rk��N �D�����n�'�3��H�K)��5�X����f�������\t�oys*�Q�j����%�+�7�n���J�=�L�ߺ������ːj�e�Z�xa�Y�$x�_1VѰ/��H�)α�!�f_h�#a� ��^.Y쑡����Wݴ�(4+�:/�^�kj=�ػi��W��[[([��3�˫�a5XP�*�!<U�F �j��/�����8�6u�<��IQ�+��C��x�\u��G� aI$���$DA>�U �gR}4����ID�-u����7}�w{L�=�����b�̘=r�O$���1p� BQ�Ə����P%�����q��8����]�&��f77x��PǦ��L#y~���=Z�\�f�y�cX����2�������c�.�/����uOU-�C��� ʔ�6�jN�V<���@�:�gCT�2�w3��<B�c5�ٖ�`�ad<u���ܭ�0<g��R�o�)CS��p�#�&�&7/���ŷ�A5}��6���%j=�c]�d���w�)}f���N�%��";dt�fOt3�I$d� F!�yZʽ�����%�T�� �ȬZ,�u�2\�t�t���\"�>�J�4�SN��PK¿�;�Dbb�ÿ�����}�K�{x���s�h��;� ���-[� Y/�%�,�Pv��4І�(pCa��������5�����esV�#����t� z�9�u2�̮U�9�(�J�A���UF�,N�,�\`j4�pj�EZ��Q 6i ��ɝ��TX9��dC�&[���}���*�6q�4T1O� ���d`)��d�I �7���i�J�B�պL�� &b.��&ؑ_\9����$d5\��6����~�8 |�����_6��Q�ڮ�LM����Cٳ鹜@�'^x8�àH��(��}$���� �`�Ó���.p̲��'F����������7Ҟp3E����@3pX��J Y�;��ԋ��5���#�3`ВF�V�C7�ͪ��j�W�����y��i��ٲŢH��E"��n^�/�v�`ypA%�N�ݹ^�*�_�3N��QU�!���揽�����w+t�3ϭ�;�jl�����Ne�Q0��t����4t���+��$Ytڳw�ç�l�f�V�u��T�,?���I1�@����I �?�KLY�:��3��tr�=�����H]=��ػ�ㆺt��ݵ9D�[��qV��O�+h� C�����=V[[AU�u#y@�g��˗�!��I<�4 �X�.�#�|�n>L�9��U��~!�v2��i(p�X�?rz�h����ބ��F����W���H�m�&�\�R�B�,����Z-}�$�� �TC�e��������5DLR�D�t��I�9/���h\� ���f� ��B��Y'uSTkJ� ��z��6�7N�sg�n>2+��qO��d1,��@�g�K�m�N��,�n��!�o��e��I21 ���@j3Ht��T��)�7�M ��W��:!9JbR.�8��p0Rx�$,.v���"�[��V�$���/�3�l�*.�k��Ĺ�vb�۽ʶ�w����h�����8@���8���=�<���\�V��KĔcpA�Ӂ�i T㨬uү~��LK�yE}qǗE)��>����-K耝����o"j�,z����^��<h ��q���ys�K�MX ��g����-�۫��4��_��'0�����+� �_��6-.�BvLC�8��H7��(���PL؆�&�4���Ɵ�O����4Qɹ�縭�yS� ����N�P_�<������g��@�4m���(��֚��l�!CV[���T�>�w�lM��N�+��1>?`ߑ�p�|���e|:.�=8�h]�|*�Y�l�5����ċ���:G���ĮϹģ�����S��]��8 ��gԐX��W.��r;|,��OT�ψ�@_z�P ǵD<�u(��-��F���v� � �[p�ߤ��T iv� ������!��Ƴ�=.ϛ����,5s�9�~C-q�IQ����{���eD&M�2�b���$b)t�@�8'U��L�Zq=�Qc� ;#�'-!�{��`�@7]}l}4v��?�\���ok��U��,�qN�8ݳt%�!��fs�"��M.V�[��FnQ���1�����E��d�Ɇt���B\��s���(@����HMWv�>շ'� �y��~�ұdrc?��<l�\������߅�gƔ�g��q��@��/����*��y�A�Њ8зtN5�~84�l<1����i@���D� �D �C�V݁F���ɰ"|��>5%��J*�W� �W5s��d憏�b������@;��t��_r��C��v�#������*�L^a�!t��լ���^PЙVz�z.4�;:}��'��`��pϠC��}_�X<e� - =�U;@}ۜ����^�����i^e��[YJ�5��Q>ΪDfD����Z)\�qk��y7<8�X���Hq����M��2�����ݬU�������A9����q�¯EJz��0��PN��vǩ�JF,�_�l��fm�S����쿑����V|�CफX2�r��qQ���=������VM�>[i��EHC���є 5��p,^j4��}��@-L����e9�eg����vV�^+]��SO4�#���!�!�J}� ���5t(M1�uU�<��X��+JO�&��|�9�Sʔѐ��d���$��� d��7ʵ1����jzJ@ȇ�uG7�=ē�k�K>y�-�J�7I-O20���6 ���[Ot{X������ꨌ�r��C�x+O�H��|�枂J���4r�-7ך�_�+"�����b�;�)��S��s�w1^���'����-ݖ�81ɲ{y��d=!MV�`ɦ�9[�X��z�P�n�քn�chRu|D�k\N`Gx�|��B�`-:�n��2%W�R�`HN7 d�/Q�I|�<�7��Q8A���}�Y�*���Q0G���K�3�pv��`��ژ�>^䊠�R�L=I&���rq�r����UQ*�+�3N�(4�Z"�O�G��6����,��<�'*ns�Jk6��%�L;.S���A(<f63<�����i#x]W7m#Ck� ��S}��i(?��������)�@�$���@ۨ4d��\V��I����%>P�*�mT��)�l%����v�X�N`\x�l�dx�?��bC�g���dAi���B!���ݫ�r\t��|�c�E�-�b�"�fn4�z��" �^��u���#���s�*���3�E��0S��d����Z� X1-�j�ًE�8�p�<P�v�2���Sf��ۓY�-�&yZҏl��q(1�@��Y��)��Y�J���yܔ�����2���-y^2�p�=pf�a��;��{�W �q߈��M��}mi�?��\ig2���S�G�RHh�3��V�ޫJ�I�F~k���FrUͪך�?�7#� w�YE�[l:���x��U~| �71! Q �1r/�=K'��i���A}*�1N��_z�9��6D�:�)��]S��o��S;]I0�R+�s��2<x�R?��FHXCqp0܅���4[T5����%#�(t{5>?T��TD�åZ��G� �^'~��/�g��Y=v�����Z [�:D�U���6�1a_���FPa��� �c��cZlj6�R)��Ă�,��Ct���J����K���Mv:Y����lW�=�cnr`������俶��Udh�$?/g�bw���>F�%���%-?�6�����^���1�L���bC7,�a2b�'^(�̍�m�!���^w��G7���[IfD��iB���Kf^�7�"��JV���hٕkrg8��A�@�y� �� �hc�uv%��=t����f�mʮ����� <}փ5�d�,!��rt=�&�3�_~�p��5��}��S��7�6ȗ�8������>���b�}�Z{�ID[��?��a�H��n:~�K�1�ٹ_ TL�VB�w��/�>k�!��q���^P]���?���m�G_xC���|P��Bō}h�����b�ޗ��@HN���vs���6(~��'�a�� ��?�%�b�F��@�\<}�Ǹ��f�=�I1�j+x{���P�K�f��4s�.��]�A��q��8�`#��cC8k�7e���]��a�����" �F�!��O��)I�!>�Wa�%�\��h�v�h� ��II ��X�aP�&�'�����j7���Hj_C=��>�l�R������^.H��p��MW�D��=�!>Iƫ�B��ZTl��B(�N{u�M�� ���Nj>�M+�Uڠf�R0�� ��z���:z��%�0��+W�}����?��N��|��(��a�7�tP��D�[�@�� ��?�h�D-��$�j����7���0��k��y/��e��� HGu�V?zb/�ER0�V(�:);(�k-�.Z֗�C��D�i�sR��i�8�jV�+\�b���:����aW=φ���1fjm�wԪh�j6.xڕ�]�&��#�����@�Ѹh!ޫ�RW��r���2�~ <��b����6�>JōJ�I�"�V��aל`�sZE�����t#|�\�����I�)Q�I�P��:�.�i�j���?�(2��%��k�%)po��@m��t�S�,Ks,�2=��3�oS����~���'�+#e)飠-~�:�L��6�EF�h̬;�e�`V���/1���27E�lWV������U��4�_.�6��!��~5P��l�n�K��A"�*�*���q#�o�$��4��5V�8�K�k3�ך�y��x�)S�#_S��(s�4S��L�=F��� ͼ~�z�4J頌m-$t.*hW.b��&<M���!�[C��l��$Q�l e��0�0 �ǎn��YA��L}��v���/��m�I�+}i�}�ɬ(���� ��;-�N٫���r������ûTU���X{]A����G��)�C<���t�?mE|�խO�*��;jc1�t��+����ol�^"�����2��~h�(�3r�<г�F�9����T�rg}X7P��X���l���:3Ľ��:�f�q�_kܢN:$�"]�-7S�Z 8�� �ix ֺ ��;C���ʃD��/!�]|_d_|���T��`�/�&sl����4�|��?����bb�v�v�tK����0�/Kh�2l���+�UK��a+�(\W��4,J�G�/ŬB&BTv�>�Z��S����o��(�tY�@p:�(6h'T{ ��tf1M��_�H'.x� ���f*QG� �փ�Vܻ�b��D6�(@�pg�V�'���k]��3k��6�mIH[L}���-m��0org�"�.FT�+b��{�Xx�:�Vg����<��߄+�i����d7��-��H�Ww�B9��apdM����9�"S����A�SMݑ����ZƢ)[��[���w���y�����N�t8��\͞�_��W�hFT2*�p&��x�2�Oݨֲ��?&Dg���=��߶� \뻅�aX��6�E�s�OѤܗ�dDOPb�T�3KC�;:��C�����xWӦs�x��JI�Tw������D+ްd��R��z�v���U���:�R��Z֍.V2�G����.X�x��;]�{���Z`��)&v��Ƀf2 �g��!JH&�H�����/#u��V��5Tɹ5u[K��8�2V.K6��g��UҊ��B=cn���N��X{[s�$z�A�+f�m.���>=�KNL���h�#�S��������tM���z7��ݧf핆f��g��~�R~���"`�����W����c��i��HX�_�&+���p��`��ZAV��0A7��FI�ΨTq����_ � �A��m�#���گY]� s��*�n�aḑ4-�#�(O?4,(o]X(�Z>��o���W�5�8ow��f��>�Ӓa���4-�L5+�.�@�x��Ǟ/�b��r'�����^eG�б�:�Ϸ�۱;����qSG&��GQ\uh'E��p�6�ra���YJA���V6����~v`[�Mx��-~�CgZd�|��q���O!Ć��n3.� k��S�N%��nE��%�лq���R*�$K���9CǤI�����h�+�c��q�s�@D�C����"=��-��a�b\ �B �p�'�\� �cfy CaG����] ��f�&�R�A^��7��)>�E���y/\���Ss>�`�f�O��'D-�~w6۸xՆ�e�Sk W<+���,�=�7?���~�p�t�2�� *��k�ލ�}����h�m2a�}��᪵sn^I�^ϳ�(9�ҩ~h�`&�!˗�.�ɡ-����c��&U[����{ܗ�T��_��q�k?5W�[����7�-y��-���7=w���9a��I��e��JA?���*8t"UB_im-���V�2�M�������HoZ��Ee�6D4RdZd�$���ҷ���2�`DPb�_�6W��F6�,ӗ�R�QE�הĈ͓�F(��/�_��Q;d`Q� >�J�jxda�EZ3o�25��@ԡrG���se ��}��ko��&N�� ��c!��[G��ϔ "�kήn�9Ǖ�3e-^ v\��ᤷ]���k�T���a%}�J��Ű��7��jZoǞq2��C�D�ׇ���c�aѺ�~�F�LR�����&��$n_�|Юo|�ˠe�L����j�]!��ԟ��C2wdػ'M4����m��Ad����]�\�^ޫ%���X�cR��t�ٱR0��g���F8c����RN�o�W��-�arEH�(�E��G����`��D�e� {Q�SO�k�w �]I1T�U�0eg����f��)�HOJrV�AJq���� �tI�z9:F�=�� �sѽ!I'#�|�;t�ڱ���S����p?��?2|5����^�4+vv1룏�n��X��?ԫfO�dC��&�F��Lr�i�hȰ=d���h:M�s|x�{�,��y���k�剻�+ -|O��1�\;C�����ŦE����A�<Нef�[��;��<pi����G���ӕ��܀��ݰiY�X���j�� 9[�����6������^5�7�˙h�#am�H�� ̯�R���P^�{!�F���fJ'qk+�u<;���aϼ�Uo���iJ*���.)����Qޭm^b֣��+ߴÝ��>r�Sl ��I�*]�!3J�k7��)���:+��(#}�B��A��Y���7�NS���>��s�g8���4E�/��~�HY�Ju@ ����R��'��l�����k�RZ�$��C7��>j��[�r ~t���YY��50k����{�\G�S�{m�����oe,U�������m*��F� �娋G�+�����}���Ǘ�1Bko �(�x:��� )��c+Wޑ,��R'/�߉:P�5����g:�}z5Ld�M[5��خ[�k�K�`�,6�{!��d��Tn��6��������Q}>lDh�/}b�������c�I�;Z�AO-�q�����c�O�U=��a��u(�����W���&�Ba�t$w\$9'��b(�%�� "�4l_�զk�.(7)�Z�j&$J�k[�nc����zp���,TskP�Sl�% � �ޡ��Ct2@�k��j�A���snAɰ؝s0��X��TR�S�7�XC$�CM��C;�fc{FU7���HK�I,��齀��*���&w�eri'���+� *B����w�*�)�����\�d�#^|�˾!d��;�D�Q�qL�+������EBgC�7�Xy�����Hd�d��_����6[���v'��J[�&�|�C�z��u{�$4�%}Һ�-&K��Sa���Q�%Es�l[F�5�P;�o����I�G9�`'O+6���N��XZqge'<���[/���63�q>����n�� �lw����U0v���][p�i'���z�Mnh�{ٰb�`Il� $�����M���xy)�;�pŜ��iqA/Aж�`m�Ϛ��5�sWtA"5��g��!�b1�f����z��6��zo�S�+�(���P����Q�d߈�!��Ή�cF�2�Q��!&f�3 ��Cj�i�Ϙ�3�j� �N���"��&� �vf�̼| ��܀د5 ʎM�i�9-�3<B���rr*Y����/}�Xp?�ۤ��&}�J|`�ٟ5��>Js������5�y�y��vs�Գ6�z��b���؟�L�މ'��T�#�n��O�x�& �.�`�����V<�{x�>�P9W ��vo���rX��4��F�n��X�b�kI�[_uJ̥�k�[��*�K�:�-D��d��(�Y�8��SŐ��ݛ�6��X噉�{K�Q�*�&S�r�r���W��,�xa�����v�(��z�eD����g���p�u��Rp�&��$Eݬ8�y���:� ���!k��tH.�P-������*a�,�[�P^v�H2����~����_��/��<���!gb��=b���|L���#�ئf/����������5�b�������ӊ>}����5�4�1������%X%#�����@S�#W�Q� ���ڈM����g6�!Z'���4��(� ��'���NK���\@Ifzə>i}q��)�.; �m�Q��\6I�;���ҜjQ��AP��e.�I퐜 ��(Q&DtE]�nz�+)��� >�NNJ0oV�s��BSv���o+a!^��Ad'ua �2�%TnGv��F0\H!3a�&k�FA��J�i���/!�A3�z#bQAcz0�\r�IQq��L��wK���o+���uh�<��#vcޗ�\�b9b�8����uR n�a2���Ak�Zre5橂�@di yn�3!(%W�{�)������$��`*�+n�_�!�Ƙ��\���M]ou�{9���KJ�c�e��'=(�d��b�*O-��l��hco&�&;�]~3T�7�p���s˓����3}>�;��k=kP_}�K�*f#]I�:CO�:��֦2'�5����U�Uv����*�rvGG3 ���U��R��Kw'L��8������pL�}u���e�&@�R���%Q!iw��{1Ճ��/�8���Z�ѕ�ȃ]n���#Ǎ�Jڲ�8�!��`% ���ֱ/$���=���V�6M��vZ�� b��S@h��rv:K��=�����ύϩ,xh�1�`��$%�� \���5%�9e�$�z��-��9�( �ެ]&�\B��������Z�ՂA�#�"bJ7+ߞ�_y�a�V1/�g;��"���)�68 ���7�}�p����^�f�Á}CR� Ϋ�a�EV����7i,#���с:�0�H]�l7� 4�_d,u>�3E^W7�/v�L�؍y���jKy�st���*�^\Z���~���;:����(`�8*�(O>bxS�����0���m��Y���jJHl ���d�6�u�;��g�f�3T r.�?��Fq:Nc�>:�F-�J���ShB4߲`d+��bUrs���f����m�l�'�� O�>�S� �.O��3�K<d�*$��߂C]�>�DR�f��U^ذ{�]�Y>�ȴ`��V��[ �5b��w�!���o����ڒ�q"���&���q_M�=�CP�����i��)Ua�G�ƃy��z@��OR���x�T���OL:뜑��M�bqn�)����m���C7~�D��tOa4^,Ѿ���X|`���׃>�7v��,�}u�����6[����OZʾRC���N���r9n�.��g�[GN�Z�2�Gz�Q-�� �e<�@���m��_�/��Z�/�-��C�Y����-:c[W��q2����I��3�ۅ��().= ц���};��H��X������6�p��6��#�W��M�g��{j*Z���Cg�`�f��1��q���0ғQ��F���e<�cj�l���j��!�d��[�>v�����o�T�PӼ�Vq�3܃i.��e�T��+F�z;p�7��E��=dXH5u��΅���{�%����Z4�̚�E ��p��i����4'D'/�~5�"�s\�u��TJ&̖��X�i4�d`FO�]9Veo�>����� �kWM��%rD���j4&����^�(��rE*�"vG����@kp::kffkq,�,��:N��F�%B�\���P�U�"t&�V�?�.;*Dt;2v} g�0-mP1l�z�)��>��eQ6F�pfJ~�Rb�D�ڦw�Z] �~���{�U����'���Z�~@��+E�(�@iΣ]w���fal|�F�(E�c�dL��z��1�}���wZ�H�y5�k����}�-N�^�֑��� ��~a�Q���~Ö�X�U^ s��3�����b}��(�dqrm!������x�,f �%�%�_B4s�*�>5�Z�\�a����� �jV�PW�p}/ z'�]t�J��tm�×��7*���<�uC9�P����v���K"}�q*����>:���%n]_qs�Y�V����Ԝ<�7��k����[���=�8&�E���Xu5��yzR�o�_`�N-2�u�#�J'��wgAf^f��q�5U�F��$p56�{��55�}���K��H|�VfB4b���쨂�gCst��8~[r$0=D5�#T(��<ވ��JڛP ĶK�2>��d�T0]<P��Ԛ[z�/�UvY([ Q�B_j��y&�x�i�@�$I^�0�D�]� ���O���\�ɀ��L�4�5�|�.t�:)��^�\�c�Ͳ��b4�\~����z��!���im +8wn÷4�?@����;ty:2t-1(�MG�GQ^�O k흌^Ss�S|��� (7��� �S |��H��T��9!�%�O�S�_MQ(���`�'a���z��7�R�m9����ek ��Bɩŝ�}F�3��8�=�����L��S�m��O<�F��ǖ^�߿d���ˤYFݮ�]+\l�=��I�fNh�"N�h�8� R�լLw;�ͨIǰV�<\i��'XO����A>�Z�����^L���E ��*�o��`�� ���,��18%z��q�6�X�٘�x�n3�0Whn� h��\��҄�Bk.O��P����sHKu���Є�œgT?hr}t ;�ȼS�!_�yu���>��SZ�X��X�٘��*2��#1��gyg�ϓt����"��)��C9�%�zL�85�.q��Pw�2��/�'�*ҋf䛟50y)�C�/_5�(�1Q��"0�����Ŕ-C�4L1�{�� �6`���}#����l��՜��2Q���L�wL�� }�4�T�m�~��TC"|���i���9���N�m��HZ�Ֆ�4�γ"Z�%s� W��u�U�n�o��j�۹or�� (�\fp���� ���Ch�`J�u��,͵�GI������}�xHŖtSj�^_#�N���F}&������m&��"�xٴ�;��_O��Yn�K�RK^G�����U�y$4���R,N�,lUH;즖Y?&_*��#��A+�������Ɖ�2��i��@�7�e�#Z@(]̟[?#ey\�)9�$�.���z�ǔ�����[�hKl��h�v��g�.,�*z7�%5�no ����;~}�Vj8�pfZ�>2�?����I焠$q%J}{c�iC`Z�q]�@%�xH�r]����L*�."FH2���W�̽��_��r�SU�P(���sp=�!�� [�ϒkՊ�=�1�3lR�ɺ�+{Ŏ��#!�rs�7\�>�l({ԩ�V�YЮ;f{�/�ދ;��Hw�k��DF�>� }���� ��w>O�H�;.<�a����[ _�ݪBdkY�RȐ�_���-�g��}t�<�Y��6{^����̺D��� >��O���D�$_�%��*Am2�H�Z�_B�G����"��#u����,�,��~��Da�����d��[���%n��O��q�1�����Kw������Ҕ�N�����3sxB��>���9ʭ/p�*= ]��w �X<V�C��L�4��'!�d�3�a�%q���6Z٬FMuk'�#yư�I.����b|z������1�mf|�^.���lH`�O�Ƶ�����FaqE��']=�q���H�{�9��dͬip�t �����b��J�l��.F ����A��6͂�Y���3�� *�QN�Cd���L�滼��J�n�[ؼ�2�6����L��wE�%�F.*�`�����zu��d�ue,�g�v^d�wx���;��;S�� �i?�v��G7�{=��y�ݭ�}!���+SU��w���'���c��,_��\�R�E����uG �z%ª���جE3�z�h�Q��)����<�<qf�SP��Vɸ�y0�l.m��҆ı�AV�%͋{Z���ث:Hj��%���չ��.�c Yt,hM��OfRmw��/F>zG�f��bƐ����f�{�^@�̃�jpL��e��_w(��M^���y�j�QmR�l̩���t��4>褑�����o4;�Ӡ�������6R�Is��.?��A����X�ak&8�(�Ur�!�����H}9D�̻��>� 2� $�0z��-���a_�}q�: �*&�G�T�� |Tϛ����!�M��*iQ>����6��ܖ'J�j�||n��觡�ZSD+=�#v7�����\�����0e�������yZ�i��D0�8�^' ����^J��N�4Y�2b�d�A�,�YeD��6G�C��QL�����)����H�^�d�٦NE{˙��u�<�T�G����w�u?�lJ�A�����ub?A����rP��3r Q�{uߙ��*�V����.Ea����T�L�C���M,h�G� �igR��G��1��9��zr�N$-�*����;h��A70�-��ޑ�&ϋ���)��s����I�7��<�?����qk� �*64 �~;��A��lBp6s�w4��ґ1pɘ�eŻ�~�E:׃%?G���"f� �Y I�N��wx��2��W� �u_��2�LM����ŋ�����:9�ؚ��w|!ЭM7:eO�|X�PNv�Yp���;�aHY�@]��b"��%�♥a��l/�GdB�Ji�j���E��z���b7��i:v� �&�|�T�����U��D�ـ�⚂�Ǔ���/U���4_�� ]RG����/�,�ҫDd6w�%*~���#�[��N���m%o��_�qǤ/5m��@�h��.\�W:�0\�.�l��`c�A��������M�e۾�@f�lhK n�6�����D���N�ͽ�8�l�%{�?�t�m��e)N �� R��%���u��Q�B�k'}1 �i�uA���a��u��Ȉ��$���ܣ~~/��[��N��#���*}{C��!q��mݰTN��r�@��Y�����A�'�=����&�`�[/K��y�x�Te�� �/2X��3א�&�xh�춀ΏTBXT���?χ,��¸ ���f�d���6����uCoO��N�,��Q���z�V�x��<7�֏�v��p�)Գp�⒤J[�s�\�03����$� ^:�J����8�_�g�UZm4�8�3��)9���L��:#ãvZ(��N��&��"�DQ��'�l�����!V~�.����MF��q�*h�#ցH&�! ��ێ�GIz�;$.UkS9�� ����:�ҍ� �qĮ`啭�$����b������c�}���H���[hF������|��e���h�<�Mt���ImZ��,�fny�p��"���YC�V�{�^���Ll{Y*��+2��~��g�F8��[�4yPq�KT�'�mڝN豈�l���$sWX�5�~� ��Ze}p��,��ƴ7��G9�OA���VWu-�¹�^Aª�#�1�r���H�Tra��6�h5b�M16Rq���X���Npɒ�{ʯ��U��\3� ��&�f�21��{�G���I�|��(v��4�%�]Z��"��]�����>�1S �S~n���س�t���6t1��_ƐE�0o)E������f���B6 ��A��"鋃�?Q�n�ď?� ��*�Q������D�˖|���� KG`&H@��7C���DE��2������k�{$�ēz��W�S���X4s|�G� +�]'1b�_��ҝ� g^k����1_؎b�I�|��%uA�uHFI�;�7��Z�L��&�?I���#�z`�"�+�q�������xH�jX��8oP~��@���Oz>k�蠍0Y�5,�"T��,��v@Q���̢W荗�v�� �`'��w�Q �\�=ԗ�*&7m�[�)6��-̆�=�%4��s4�+��1L;z+����/p����Rv����FJ�����y�Րʬ�b���)�UP�0-�I'pu���4!(V��b䃶�>Z"v;�7���N���A�80��^���v:��qVs��.�&���b�v�r���=�o�mF\�$�B���5zޢ��ō��Ӷ�WƎ�kA�#��}�mNЭ�j�Բh�L��L{�ح)��|���+h�HÛ@K�HU����x����T��9BcJd��k �;@(h�I�X�V֙/��6�VH�LB��mP7���K�hv~�b(o��;B2'���{��cE�UO�z!��߬W���;�V�[��F�z���]�>�\g��6�]hK�r�V��e��A����rZ�~�� ]��K@�G���{LZ�GЈ�S���+��!�T5��G�d!N��N�G�Nv�=�����χ�i�R�l�0�"g\��SiE�j���C��ݒɩپ�$��_�Ό6��V��$\�h�+'����d�&/R2�ڋ���a����X���_2�u�xȰ� �~�Y��u*3yeQ+��;��֟���'��f��>�C�x��� 0�2�e�qB�]�b�W�#�;���'8B��~����$�e��næ��Y;�ػ����{mj@jR��|�|��>>��o���b��̕eۺ��k�ۂ��X��(�}��Cݝ��i������U}�9��QUÃ�Ī���)$Tk�M��3x�C��`��{P�� ���=tt\)Wֲb/�M-�v_˗9������9�{�iQ\���6��W K�km���x��M�Je������5}��<�a1��L�n�W�d+�x?R�j�v������nm����4�H�����f��Wn�, r#�̭sR�$Dj�u�;�/�g(/��)�-�p/�|�|�@�`5�ܧk9�ѡV�tzr�n���O���KM�Pn��%�����Hv�9��HҐ/9���ʮv�%���,�W�b>5H�B�gff<���$>e�|,�}t���xc%K����,E�6���\?�)����;O",����e(��\%�yy���#'~bXr��1a�:m&h ��&r4Ӏ�,\9���Q^l|r`I�N�s���T�s�B�Z`��>0(�VQ`s�I��GD܊2py���=J-��:QO��X���O��eļ ��:���7U+�.(��~��F�w7JPa�|���z4�%wk�%������pڸ�bF��]L���j9ض(�ۈ�g�M������^ςzs�v{o>��R;O�W�܇:ޑ据��]�a�����m�E%��e��0����BLfL�u�vQ5�qnW����,2�=�a�H���kS�+5 u����1I��� =�J������\���.�����_�2g'e�kf=-OD�i����j<է��"5 �ʻخ���ts���*A��T�gcK�G^�`�ސA��%����L���̗L����/�^kQ� ����1���Q4��@H���`jD�d�dɄ;����F��պj8�ac6p:�H����5���w�n|�2���M�#�.$g� |��{Yڙ{?T\�`Q�<�N�젉^oyC@A�r ���T�Ux=`� �(��IJ�A������; l�� ���j�qZqK1�� ��p>��M���1]v9=�4��Y�炧8#�a�g���t"+(�����mcD�0Pm�x�8e-��, �tE7�@��~�� ���I=�>f��=J|��vI�3�g~��/������#�E�B��E���0�K�D�+.)��]���3�L ��m �b0������V?�脊�<�<_��LYY!�3�XetIR�e~U�P� ��"���&��ta0p�?p ��I���C��Mn w�1�d��7�g`�%��*V!I��Z�x�G�Lq�?0�`��&G|�ue�%�k^oJ0���v�P��ڨ�(�C��� ,�� �5� Dw���띗'�9����W璦� ��a\�%��٦ؖ)l���>��h�a�~d/��"���~\}/Rr�dRz!����u�n����4�6���u�u*6xb��Mclx�"@Y�k��Y ǔT'�5�T�D���j9ɑ��#��E�x��y'i\9QE���Ѕi����gDwW ʶ`��8kJL�c��<�&��'x���l�ɡ��yv��vBq�� �:h�U�x��a���2�.�o�z��^�Q�7]A�7U�m^�ԯ�91ם�c�{O���j���w�D�S �2.kE���u ��(ʩ�h`��Vԍ� /���m��"������9{���W5I�N���B��%�(��{�L�����.�w�'Yv���T�t�O �le���^��U��q���a���ol�����2��T��i{S-͈������f��^1W'�UFL����]�O��5��Dhw�.q_�:C�8�W1V�aab2�&q���"k0��Ԡ�O��v��̟�6f��f�s�!� ��ă���f�����$:r��(��)���W�6O]�k��/YX\he(,\���N_�(�@<��ٯ�`l&$5��S#����R&��0e1�doZr~�30��í�#��f��<[ԭ�^�w�)��&�Y�+�&�,�;��p���n�`���3c#\˟Y���NZ9���4�t�;PLW$�/F��M7o�랝�'�#���N"�Z���[<oo������N�8�e��E��k*Tv��;�?d1B𠝒?�n�$��P�8=�ݥ}���|��TZo�l��ر � R��ц;/����c=��V�&x}�yG�O��@��ݡ�T~ݲ�e���JT��g�.�}k{22l7i?��&9A�-S�5����|�D<�Ԧ��I��?E��Y����� ۧ��D��R��g��3�N�;G�!��F�p�"����>�gq,(����ŏ�s.d��M�~?,�Bov�����"K�\A3���y�w4����:v�����o� �ʜ�+�� QkS�Ҕw\�#?P�,ȱ�#S�_pݮK`<�( ��Uܻ�X*E1Zy7c��ł-H��>_|�����~r�U�!�Ѹ�Ԙ~�$)1�6�a��ꘀ�@]w�3�v$b��qe�Yw:��/�;��n�a1>k�j��g���g늚��L���ׅ/O���M �c���"�h#B3�$�4� �}�������uI�ņ ��w����}7��[��!�5� z�z��TH�R�l�2w6�*q�w�϶�|{��W�@j���dN�[c���9qC��t`�lڽ��ǘA�u����kL�a�<������ũ�:6��}����=��x�!6��Œ�B�C3)O c����f��ڹ�M��ӄ��ы�Vcv�/� �����{ :�T�P��r��S�U�>��j�sM���x@,V�쪡��Bt/���X���)�.���ɼ77����/=� ����D�1�2� >��[��.O/}CR5K��黽/k��b]�@Ml��י���Q�%�"R�9-<�\tY����McضL݀t�x&�=�9�K���� 7u�!1?�(|��Ls���R������Dd�����U��qh��}7�����K��^m�1it�ش���k8B���ؘtk>4Ǡ��\���p�v���#_����#��M��2�����$H�`R��$09W/�eMf*��닓R��T)��γ]�>�����_�>v=��*����rLy�gH}e_�b���NT��0s�e�K08�Fê���$e X厏�Y���s�̓ }��h#�4�VF���3D?<u��t�Ϲ�t�dԛd��ӯ��q8p�q!�u2;��i'��b*I�#���:G�TD�@�g�D�N�;uT.@:gg�.��� ��V��}z��o��'�oĆ��]����C��;TN�A�y)CL;3pؒ���1��[�E�~m��%[���_�Ǥ��dq��)uydI�� ��� 1՟{��pK��R�zڍ�,�[}�<ǖ;8Tt��N��Vⅹ� �.����]����0�MF��|~�x���t�w ��B>lZ�֧�oC�A�>�����Oj�̟���㮅�V��CT^ɯz%�*�o"�tRU0����ɚ�/��aپ9J�ߚ _�&�h�=��R#_�Q�\�;xё� ����ǎSj��B�zH��h=Y�.�c�e�N.D'�P�}F�4+7c�q�nH���aN�!�i��]�G�~ĥ5�@��m6~���ND�aζ�=�dc�%�;f�%m5V.:G�}ӿl�2{-DV6�d�V�&�*�~���c7S� �C����`�=y[fE�/��Ҹա��Dtɺ�cn+�ba�����, ��[Ń*�9��Q�#���1"}nwum�ieu����-�����E�E�'���*�R`/����|֣���l��L�4�x#<����AmUU ^�D�☟�h�J�ÕK������ֻ6x�����#��XD.iP����Z�G:��S�{��1%�v��O�Eٞ���|�;��Ѧ�jƊ�t�:d(�� �S!��,+n�@��qѳ8!�g��m2h� �K��^H9�縏�"c��E�J����~~����W�z�[<@g�A���p��c��Va�N��c3+ƅ#�Y���7/�>���~�*��#-r�%������[�xs�c�k?����#���j�h4.���`<֭c�=�6#}f�"Ge�q�CpO`�ڄ�A��>��J~'�+�).|�1��.�����r$�(�K��NX��4Ij�UǼ����W�#�����K�]C��E,߾҆��_�P�8�[��Hs]��oK:���������!�[]�{���{A��R�@�FP��zJ����R�o[�&,:��>��Q�c���hvx Nh0k��*�:1s��7�����Y��]8��]�]��,���MV�]ؤy���ڊ��L�-�� �ʮQ[��w� ��eү�kG~���?��/�S�����C�ߎ*9��A��^ӂq¬n&�p�Q�u1ظ�hGP���/��9�v�Į φ���P��p���1��gK���eG�G��w��'�UyũL��E������ѕ>s����+U�)�+FXjY��ޅ* �in&@ܰ�i�5%A��F�$��� 0Te<����m��̷"����拕��pn2i�@u�� Zʓ�!�es�N����bf�~���r�w������x���KNX�vK�e�G{tg�� w�̯�G(�M7�g����cz�������I��p�vV��g֬7p��H�����(��Ҧ$1j���:��l0E�a�a���f�� ��beM}����1�t˧�'��*G%�{������ش�0j��UFU��Mba��.��������]���w�W��_�֔�Ut�����S�(�w*�f9p���[��!3[ȣ۬�o�f�Z�fռ�<�\ ��B�N�. 1dv_�?0r�����#�bzW+�mR[���b;�!�Г\j�8�z���15=�`�ȩ7��+�VK��{U]r���P���h{D�_0 o�]p�6'72/��ϑ�0����@�]�V��/����� >wOgq�TI�+W(4����G9�³Ǹ�,�Y('��X����#YƘ��`�3���O�z�LZ�<x�!�$ pp�X|&Io �j�Qɠz3^�a���A�)0�əx�mYLh���e�ԍ�dҳ8.�8-��@�Z@���G!�࿈ergO�Hk �9��M�U���Fq��+��H�B��_�n�L��M�fT�0[r0D �}|�(��)�[��ͼ=[�f�d�")Aw9�� :�}����^�&#;�ED9>�Ǽwu�<�p;u���e:����Y;�]��Œ�T6\f�s��t�g�L�&�s�a�E;�\�Md�Ɇ�5lB� s17��L�}�b410��d�������p�Ȫ,-�/ Ií��?~�BK<��-\��$����3'��Dq���[X�i@��9���6Qs˴j��>ϴo�p�3�^UӇj�m��ٵu���-K +�n*�'3u�v���y�b_0Rv�,�`b�s�mG�hQ1��ǜ�[9Z%�����3:��-�'��A��0�}K���)rh���SӹR߆�e4�ͩ�����q�Յ1G���Y<��Uc�Qڃ�uԾ��BD>����ϺW^�ϴ�`�)o:ve>����t##.D�e��rUsa�;Q�M�����&��U���j�4@��7)��n�b����xEtJLU\iΆ�^�4&JÿzUq�un�iF-�5���S�ݕ�R��O��os�%����P��)��a�ǻ��ɲ�¦H) q{�r��}+/E���(�@�Z�QTX��u��}K�8�'L�"9�1��Yl:�w=?^��#��6*\�C�S$�l�e�^�[ߏD�z�UI/9_eر�j�tY�J� ϘƉ�h&��11�~�,���?�p��+.�˒�Lԃ�����>]��ӎ) �)O�O��q�9�ℂsW[x:י#H�ϐI:�ަ��۫��#��фU ���rb��]0�2?3��U¹"iu����LK�^�bt���y��]F��!�����͍��A�"C�1�{-�*plĵW*P_��!f�{T�'�q&!P�:]oqJ��@ǭ��=dzt��]`���Y>��Z�(3X�F��%�=F�^>�7��7�>� \, z��+u%�����f8���,1q2},�&W&Z4ܷ��y,K�y ��L�*��s��yz��_�J�������xx�34���]�Id���i�M(ƲY�7*�ȃ��r�pB��lb�����o<� 0W��@�yc���lr�}A���� �4i��� 4EU�C��<�g�?�+o���?t��9��Kh�����XCI�T#V0�=}��]��lVϕ2�>�hެu�9 f��OQRp�� q0Z��^�0��ڝEDY���HĄE墻���[̷m,~�X^7F��PRr?��T"6_^�6�$p�%p�>��U�'���_��6�˄^���r6�o;z��In�|i���ʬ���e%u+�n�� v��Ե��d��Qg�u)���Ӯc��:Q�-E��nb;�y�S��i8�\lX-�9���6��ݏ�����U�UR6�w����7�$w�{���Y���H#��j;M����T�W$U+���p,�\�3d�X��??̍6fUM���$������$�\�>QK��JY�Ly�����r*/X��MG*V>qK�-�s����瑚$\��㍸1M[Fx�V�ceC.oq!NL �h�M�6����k�{����q��&X�,A/+�Q�o��r�y��$JZ<�Y`-��J��dA�!O� k-�ɥ���,&܂�&�5�<L˝V��b�!�v�!��Ak��t9�,����m4�֨�n��v�vX8�2�����F�-h;���ܭ��5(��"ˏ+۸��}`%�-�V)\6v�74"���C&}��e��K�.�K��"E��1_�h�ô��8��*+�0)FɃ�Lŧx�U���}#x�vq��ߜJ���g�%2�^;�$�a�@�Tr!�S���S#ELD�ѥ��G��8�[�/��(~���9��G���:��I�����v~sF"Y��0�Z�N��jU����j�^�wy�D���v�U�L��z�B�<��k�J�k �2�n���Aw�=�wc��%��XV`͙�7�%�Ӫ�� ��Ā�j�{*����TS��_6u�y�������Q�� e_Ѹ�g��)�X�NR�<@Q�?r�WU�����b6���R�k�ؗNv�T�it���[��+�;+��i�W��X1 `�aʑH�r,^m�0V�j�i�ޛ^�}J/�bP���Zz�M)���P�p�$�%�(�˩FZ��#���9�7���]"�n���J�L��7� �� �6ً�q.n*���IW��j �a�dn� �~�K���I֘XB��^ m�'ka�B� �u��X�=��Q`3v�,f-+k\��͚Q?�0�A���,��8��e5Ym����u{�81j�m�u���{� �n���+���ǚ%���M�Ī�Z嘒7i�쵾�D�-���(�7��4���Ud ���6S)=�u�*��8fd�,�A�۱q�Qx�Zu4������$Q�PUY�D�lH� "2K����_}몆G6p`��ߧ2��ߪŧ7Ͳ�g�qފ~sE?������7��KP�-���Ҕv�5���0�h�K�+ϕ��-Ҋ5_m�U����dI+ug�A �1<T��"��n�3Z����~C��ԩ���<�}ے~��kY���K]��{aɽ�5uA^�+Z�NՁ8��h$�놆v)ȓ:�~�,��p�M[��'�/>��:zcG�w G�:X#�j�gf�5����2GA{��a����[�Vz���q֯њCi�� �~�+<Z�,�a+�����5�s�{����c���L] ��vJ��@i��xDX��� �Î��'�aB�"j��I��;��ǂ����_]� L����c}�=�7�ݔ��VB�cVE��Їr���4���:�.�t���ţ�ŏ=t��4۩�y�F�a?B�[|�N"p�9&�Z�gS��%��M���;jK�T��ɼi�c��b�;!�7e;B��~��8l0qTc�Sx��Tp�_�+�*C��{)��꓾��&��h��[�,��DS\��n[��c�k]+��>�ĨD#S��d"���е���Sё:X���)��E�&�*�Cok�>P E??:��f�t6�t������M(�M�#�D�p�J�܈�O#q��?�;MN"��&���Ϛ����aÆ�F�0L�\�� ��wN�맵ln��j`0��+�(�רK� u��t*�i�l�,�7�쮒��L��i��O�挲���e���譍��[Ӵ�S�T��R>$:�v�^�&w|����U��i�(l��$��M� �ق'�P"���H��fU�$�8}r I3df����%W���SbG��Tۃ��f���C\r�Fl_�DН$@�q�0=Ke�.�� %�J�� =�01��?;�r�v4a�� �g�͑g���2���g�*N_H�ꛨ����Dz�K��;���2 ����YZ�&��"=(�]���`E���<=��&W��I��o K����M��7���zzK�|r��bvҀ#J��2��м(�Vr�9�NLu_G�|��#��:q���MS����,��вrJ��8h;�����;�@Լ ���/l,��r��!�_�GX�Uy=ж�W!<�#P~��3}[;��OQ�{'�i��g��{�� m�[��H��3I��*���3�Ҫ����6ښYY6��;��yNW�+�,�����P��>�gڳs#�@U��o���5�%FL^����Q�{?&MQ=6����mw����� $�DZa�0\ �t�\`�$]���ӓ%D�p28c��غ @�4�&���B�RbE�b������x's�u�8�?jB��T��u�(�����AS��7t$�0/�7�G#۬)�#���I�z��|��E�t�s2�E�F����E���t��QO���92��dn��[�1�\a�N�����z����3���(G%����f�'�Lc�G�)���Z13�� ��N�#�:�A4���G���'AC����x��%7�� �!}���ֹ&^���H��i�%��,�$kٓ��BϞ��Sk��4�:Y%�w��|�@�-��ƬzQ6�x_�A֓R�ze�*B���ݣ�lIy��7`��U xI�'� i���j���Ί�7�A��:t�Q"a�=�%ȣ"��&f�������DW��U�lH?ʢ� 2��$j��Ƚh�WZ�0ݛX�[���Dvl���r�<iʺ��Αh=H��l�+�\�n��/\�IU� r����W�xM�q3Co�~�`�g�S$�d�-�)I�EH��U�>�XJ]�[�,j�Z�����v雪�j0�Be��)flia�G�W{`m��>��d[T9 ��鏹�^ �9NG�N�̃_�H�ā���/.%5�Y�"H�H��2���N��m;�ر����euj?G������m�<�ϔ�c���:B�q���O�R��f[��\=��V8��q�c�X oM�W�=��S�ubQ�߂�:��� vlT�ȹuZȼ�1�@>�1~�GU�n%�"�zF(MD�e�H�4�ظ��X�(iܦ���8��vw�]�K�UD� CZ��֛e���E�^4*�:�� e"!'�F/�"1x@:PP��8� �U�|u�KI �I�v����r���A���B!��G5!��������'�˒�q@��X� ���������8��CY�������bL���v; �g�+}�E/y����,��h(0�IR7<�9;���FwM�'<�Ek����j�X�KF�̩�逸Bi}� ��~�|-5e3sw �T�2ud6�:��I��o�m�믖сG�WzB�w���k�g��3�� ���������k��K��c1��M��ټU�j�\ߎm�ء�D�����1L*#�m���Ă�ۧ_��O{�MX�p�,�_�{f��r}�89N+�SW&��)U<=��(��O� ��y����tnش{�{��P��!g'�q�S��i� ����额<Ĺ�A�cT�x �F-ƌ��Mq���C�[��!���B��Q r����0���9�,���f���� �څxN0��B~�i���8�@^ -�u�&!R�9�l+�>�P�5Z?UY����w�5�KdZ>����D��=�P�%)ʝyy�����5��=���qvB�Q��n�D�/<\*��q2�#2j�� �xm#D�UO�_���$3�R��>����N��,C��V!�V�+ C )Ç�6F/x��w����y�������Q�(�@(�[��r�A�uRE9>���B�L�~Ɯ�FߥBA,+,kէ� V�1���!CגFd�mt�8�Z��!�.$�^gWA�%�gbO��2�����O�|k���-�xY?���k}��.�_��@��̸n�+m��lC^�a��%s=�~�Q�Ł�Xdsˮ��&4�R��&�9}l��8�Wy���<��.�M��"�֝���"��rw�2�μw/c5Tv�m4q�������]��(��V�N�O�s2�F�=� �]�+�����.�o$j ��V�t9.�1S�T/�M:5���15�H�7�J9�Y���Lu �dU�qN���R��Z�� zހ�F���<?S�/�0�8�K���-[+�M��hc5� K"2�+�2��������ᦌh��qK?�X��HyXY���� I�]�?�@��zC��x�i �u�zj�����:�S���f�1�����n�|��q"���� ��sJ|r~�@����#�b���#���|�,x�����ň5�����)f'�e��h��r���w���-���B���]�ìb"���t����/�m������Oc����� ��Ƣ���Pj��Y�:�zt�%}�29p�17(,{�͜�����j������7�2�������ʣ�eb�T��u�����%�E��9�W)���fҶ��P�Ol�D��(�U�UVG�Q���lr%&�-;�(�B�<��̆�\�b�B�6c`֤�$�tD1�Iwv���ZiVDX�]���>�I�W˚1�_�۸9FZU&�6��xXf��H��!��Y,�hF����d0Wa�gޏ�$�4��G�����p�K��,���~���B 2S�BY�ă�Ŵ�i������K�p-n�t�Sv^��] H]�]A*Żd�<|P��~_�����v�Q� �5,�1,6&Fޠ˩8�q jl��� �?� ��g,���D��}�xӕ�.!�X�ڪ���o͙Z(?�E�1̻_l�w|cwr��>d3�\��!Q��Gn�ؘ�dmP�Z�}E�3R|�u��?��|��N���P&�uK��˝��$+869�x:R�R�/'��d�� !d���0����2���4nTot��n�yLa���Z�Q�GT�B��כ"1F3��wk�9BG�}0&4著�iIc��NC��th9�m��5aJ��Ĥ�W1ą6�H*�ނ��4��h�dq�� �f��c܂4pB���5�:��#�Q�H8{����L�>b�&t&�ƛ>� ��hڼ��O�"�����:�� ��V�/ʤ�D� `7��hQ-�V�.�`BXǙ9!��m��h�@^���Q���jc!:������h��j}�����)W���A;����}&�oQj"�T�`]��yZ�Yv#�r��a�}5���#�ZIl|dX4�醞N'69i��-O�0I�܂o��LV�6�ׅm�T���`n.��8`dZ�o�bS�u<����aZ�.ԇH �v�ZL�+)�����������X�~#��KLM�/ALUQh�=~?�kI�����mrz�t�ыݏ~3H��_�� {\1U[�=���=mF&˜bi���j8��<�H�x�l宺�WkY�3��S����n�+耜s͐�]O� 1�-ɀ^=4�=�3���U�<4~�/�F�0�����c�_2���6I��ѷM��{7J� �w�2n9�Cu} 6-��@rq�/���>RH:�l���n��z�.�"L���$!T9;�7\1-m�A��C�K�9��sм�b�9������aS)8D�k�F\�tY ��-�g�U�+Tz���������,U8Yr�Hz��%��V�}�~9��E-jB�Ȍf�:���)����X����t��ycg�Ӵ�n �v�%P��y��F��i���M�Ho�X�`���[ ڎ(�#�5��+�->�)4�E���6�����Z�<���!�8���3�r�%�-<t�n�g��,vO�Ҷ����f��"x��+�J�A&t�d�݁���Lx��2õ���3`2���:7C�bBV�����&�N�j�N-j���p�q�� ��D�W�f�f�����縩�Jվ�[b��l�����-�\A�,�*����I�!��_�Q�n%��S�]�ö�p;��M�Jk�v��$We�a�M/�o��o�T��9�&�@�iSMZ��į��-Wx����X$m�߶ ��Z\R�}/�:������#O��,cVTE�Q���bǪ�$� C��j�|�/\������Gv�B�|j#��quq���&(�I��idJ5�b����f:�l�vl��\�q"Д��y�Ķ�= �W^�E�H�s����ԣ/Wۍ�ް�1�"����b��h��F=�|ʖ&M5��fDl%��Y L�� C��P�*�v&����'�=�=�M?�f��%�u�J=G��O�*��Ea�����.��A���,6[>�� ��d^��q���b0-�z�W�_�W�����?<�Z������]��<�'Oəe��M�*�*Q`���`"�}�h��K�Bk:q?+�o�qʞ3eO$*?8����`�D(ݏ����kc��42:D�}�5C�Ě��'\Z�H%Ut$�^.�ʸ�>���ӿ^������]'Z�#o�a�WL0�(��n!��;�W�!5��y��S}'����W��C�/�,�k���������W�ՁR��ނ��2~'Vg!��� *�y:f����[�o��2�T�.|�N<�yN��v���� �02ꁆ�+d���Ъ�))z]��������$��u���3��r����2�i�j������ʻ@�Vj27B�q~��9�f�h�]�e��k����#S����1P%}����g�W.��L�4j�,DΊR�+U��������Ԡ֕�rnU�����T�{���AJo��M�=d�[h3��_+�@j��#�ιID\L��!V�tTZ����N"$���;ê����j�8�z�F��������t��`�����?���.T�j���h������}e~_Y{;�Bg"��Bu�b�K��_����H�YIo����J�>7�!��cyO�`���#�Ѭ��b���3��w��L���86��T+�v�Nr�fI���ʴ^���6�f�J`�4\��6���-�zSƭ"�N�b3�3���� =a&c��D :�E&�:�M�s��.#3`���W=jq��<ȹ�� I�;-�z�]��9͕�*D?WsuA�/�d�Ɨ#�'T��j��v�U�I[a�Z9%�ak�p�j��n\�ֱj���.3��^��9�d, ;}k��>�2����G��We�'m$�M��2j��kOCZ�3?���\O�x�o`�k?E���Ŵ��yH$��!� ٳ���o�h�Ã;�7�a�^5^s(��� + ��u��b�#�/AR�'ءSg��O3�����L�4�Ys>�7L�f�o!F�0���`�u����cg��@i^q�!�� n�ז��T,���S4%��lR��r�������"*��O��Q�R�+:�����v��έ'��Woi�VP�&\�3h:~�吂��j��UH�-2��e8�����>����e��R�l,�g�~��8�=�d�<?���[�X�6�m���s"Bw� ��H!X��^EW���uH���D�3�¡�qtٯ��hh����@���\�s��c� w6j��q�4�eb�p�a��������{��0[�dmhTf�S��3T}�^�z4���dQ"D��s���)Bi�C)j#O<Td��^�%�q?��g\�z����Gt.�� ��ky�mͻ��19�^QB��i��FB�?>7b�˔ �C-g`�SHZ��ߞZ��6 �~��A���؈�����hBw�)��#�#���}&��p!�϶Tc��@��<� ���[<�zכ)" 6�z��o)��MT%m��h(aC.����Tt��2��OC�|��Ma��Ԏ�,x��V �%���x/p�̤9��q`�NU�߯pD���ԝ'3��j� �� �uM�Kߜ��w�F���qԩ0G<qZ�$�e��ԦD����-�[ј?��z �� ƅ�����{'�o*m��.�<SV��j������� ��Eڸ�-�����3=d�ۯ�l)X���&�ɫV/.�5s1�+��WJ+GL��Jv�<��ܰ����mN���i�$z�q�LR� 4��X�A���5Y�����E���U�S-�������� ��T�@��|C���$��8�rQ���8�"�����|�0v��K��vz|� L��cZ>^`�Ę�"W� �UQ��*���zXe�� h>B��d��9�ewģ�GDMb@Ѥ���)�?�����s*|��Z�3<sa#���vHX���#�u-�"�Peq�}#��}��{�;�2�&h�B@V",]y%%������{9;wx���x�����B���0��N�Q�cI�߃�V��ѣ��ҥ�Z/mMg���OP�XJ�|X�Hi&n=�G`�E�k���=������[F�N�̯,�eH>o1�%�ҩ�$Q. .��F�,\Q[l9��7�/^�rf?�|"HQ��A����D�R��$��~�ٴ�%���_:C��m�P1�������ᚊ�˶4"�_�>\���@^~�z�̄u�ذ�r��EaÑǝl�oJ���|�F��T�Tv���q>mn���G=�+y�$�u�/z�����ʶc�*˵��oZ��<������^��5������B�����_ryJ2|s-aa]�m�|�W~|���v?�/ ��I��j�����h��׃ �N/�� ��R7-��Ыƕ���f.z�9��5��{�<��t��;-H�?Sv�آL����䪴�~��]�,=����٩��s�,lGS��5����]�`��B�d�`�_�騣V��P"B)(�e�����@���l�C��F��&0�{�A�1���^��$9�@�m�nRض*��*=�^A9�|�L�$�[�a��R^�?�8��۱��T�d�c�yM��W�C��Br+��Ժ2�ݲT_5X��q��4�WFM������d���?�)så�/~5*qD<x�_�ؼ\O��8h�ER8��CO�8��w��� ��3و�Zn���Ps0�I@��2���~��}�Dq~�a�����m]�M��&�Y��{��:)��t�֩&�}�߮w0{'�jp)�G {Y!$UI���g7]�5R���7�-wJ>.��\}�؆����v��:�ŵ��顤:����ֲ���|�z��*�q�X'i�VX�QD^з!i���4�d��[��g���L5��o�1�^���^��jFH����q;'R�x=r�Q9sgV{IL~�bA=l ���A3a;� 8���Z�ꆽq?�Ć��v�$�&+|��X:Q{��V�� ��X�,��C@Ʉ�!N��I��8?^�2w����ŝjU WD�q� �V��MH�J��8">cr��Y������+N��VBD���=�LDV�76h#/�U�ǏG�G�}Dnc�(Ժf�XK��ƾ�Lud���. �h�k>��t����Uُ�p`��p�y����J��&���/n�+G�z�P�vC�iu[�5)�ˮmVu��ԩ��-|�m� 8L�+f5��7��u<�R����e�đ���7�����4V�S�^}�(��`� +*�_� ��H��Ռ@� !��"��k{�9~{����Ȉ�_cL8I���V�S�e�S��������ը�?G:�fz����a6��ciM����ZM!l�����X�zvם���=��w-B���eoл4��u�5�=���Zl�H�p�/�s2A��Y M}�O0^sW�4�f]l)wj��� ���MtiO5G��(o2�d��q���ٿᜤB�j.��������PV���M,�7a�W���CPk�mٕ�y�r�RpD�Y���Y��G&.��|���X*�L*��z����y�]�������V#Cߡɜ4��w^��0�vR� !c�B#7�E�({9`T%�W 4���������@����5��"����b���;�E��: �u �>�4R����{0�p�M �A�H�� �ꚨ��m����N�}�GK�f|"�͕m�X85J��Z��ALr>@iY�˘ؐ&���X1��e�?n��\��-��@Jrl*��G�x7({ �f ]2x\��%��#M�bF�$��n/�]X���h�Z^>�Z2〽��Clt�x���i�釮ô�W��N�j.�� �8��V�;��+e�4�mź��<�r/F�Q�TT���?NwJ��7p����@t��@��U|���8|_��� ��b�;��~��Û��C��`�O�Ű�AM���I^����=FdU�P$��KIC���e����A�Zi�]SG ��>̖�q-���s�11C\+:���F�T����B��I��P��rx2u�}y�$-T�mJ�����#m�8.�kI2�D���7��J@LP@��1��9�J�e��X0{��`�9�����!�#���{�eu�>~VC�d�C��C��Ou���?7���|(}��J?c�D�� ��|}��5��lJ�TW�;-���8�������<�� �?+|V��t�| �مv�ޘ�$��3G��.������ ����0Pڣ.h +�eāy5�[�,�1�n�C��@"B(���[qZ!w₅�=o�7E����W���l+�Z9��i�k!�Q��8��j����c����U[�H���T�m^e�>|��Z�\_���R5�<v7� ���fw�%�N��A����<�4��0?����ȿڏpd��]n�f����D�{;O��E�^OCN��l�2�2[����S^G(^�DzϨ��z� !.$�7���*�Xȃ�RA�/��D�^T��-�cU�:�-Ç���R�dߡA��=@� ��q?��B�h�Q�T�o��]�A�-`~�Dj��VY����B] 1D��� ��Q�7�s�|�t�m��%B�[�����Z��q�Rr���X��)�Y��n�*���.��7��һ�.�3��*��=��ۜ pU��Ш�%������ �t��gQ�@��H�Ú}F����e���@Ϩ�6I�5�|g J�1�b�c �f P��=n˽L�{D���-r6h_�{v�T��$B52l�.LM�}��D#�H<�%:�N�7$�f� c��^��e�\�,ߤp�>b��m��؆������Ά?��*���AH�@�l�L�gGCDCi�U��֫�t��R�2���A'�p!��8�|�O3s�w��&�BE�}h�ui�#.6��)��ڴ(r����:���)L�����=�X��L-RHwU �,�n#� ��Ҙ��, B����R�i�uuG�9������zg���Y����Hjf؋�ݓ뺱�h���q�P�Bw��D�G�@���C2��p���ε2�i�.u��P���\���6��P�w���[��?��+��Sk��}e�W�U���Y����8�V�P܂�W��8�B�D(5@��q&d�89`��*w��e�s�}˹�k����C��#Z�*���B�M����[L :������n��[��D�������TdL��"wi�$��ӷ N8�RT]�����U0�+���;��O���q���t#��3�;BQ �M�#��n�� IC��)��^y�� �`��a�Ҥ/�Y��ߚ#�kx&5H�Z�J��z���؞V�R~nE^6_�X��s�:K�At̊f.v-tj�4}�6TjsK�:�5�������X�M�Wj�ښ��*�=���c/3���ϙ5MS��h{�]��.�$BB���C�_`��$'~� .iAS�v!9�nof��:�D7M�aL>���fq�����]�L�+��$���cS��[i�#��竘��\�VwU ��J�.�^W��݊M��ӺՒn��{�����w�f��vI���Z�7��Om�Ze����HZ���^�yf�Άl�>�D_�l&�Q4 �$s�:����}��S��3>��%5���I�G��� ����[]iM�&��ܭʲ�߯���U2�1�%�lK6�}�C3�д��02�m�R���XiC���wfq�q!�fY���d�^�\�(*��VhC��a����z���h���q�^N�M�z��t��n�V�-S<�Ne�z�l%���-�&wk0%#�sx�'N��d�M�J�*�J�Y�m�����tPm�Ex�������C^?�źH��bN��LoL�����LAs3��G-0��A��Up�%�w?���H,e{�1B���IjVjzz��,���g��l�E������L��Sd�?呕B�Pp���n�a��v�QM<6L�ƟN�� auU��~� Ԗ#�w�y���zkx����w��dtF6��C��k(""�k�8������{77���~G�!_�>��z���"�'�X/��y�^�\���U[���'<Ʋ�'�(��2FM���N�{*�o=43�[� ������D[�?5a+G'a|X�r���艜M�.��}�w�$, &Oz�k3*`o���i ��6�85п���h��U"lF��`"��#�$�Q�;5+�t;�kK�oS�[���� +�(Ƶ���+�Kp�ˊe�=s�O(&4�pr�;����&ҽ�3�z�rY\�����:p�ݸE�9o�S ��h���0�{@�\�3%�.�g�>Q��m� ���Oy�$ ��@�fK7���귶�*�0"�ۙ��X�y#ĥ���#'�����.bm�?����Yt�@U�K�I�u,}�䚸�Ȏ�M�&�jHa]�:m����-1�Y�Ua�WSJ�N�8����%�9_�nz����X��qE*N��,�̪v �"�J�g����s�Ra��J*[���.L�f���~��hF㲔��j;�̯ᑴt�HlԿ�e�fuO�uj#�+U04v����lؑ�{cj`y����`6��-b�~�^�M.�%ߞ~0?5Y��ѧ@�!ʚ����i��c� ?�h�Vƺ��~u��$�������O���ص RlJQ��5F�+�،fMZ�^�t� ��b ����s� mfQG�f����d�0H�<t��Io���/���F���e�T���w�[S�gZ�~��'��.�ܙH2_�TQvt\k���[8s˿�$�*���NO5WY��ʊ8��M�b6�N�5�H%y��*{�����µ�E�>��A#� ������*t�f�S��3i9�l>��X2����"jDMj^�O, ��Dw�p���Gk@�����ī�?�s�)���R﹨��� JtX�̻5���E�����9�O����W��"ԏn[W���UIRn�����.w��^����SV�ζ�#}�$?h�I��c���e��:��� F�Q�*�F�~g���~�!���Aa���`�}�㵗�%���G����K����M��)����CѴ��bM=f�;?/��W(��?�(KV���Cx�N"���=��]�F:MW{i+X�aS�L(Zюea �' ��a}��W' LC.(���N���,������=�\'��ḙ����R��˂|�2��p3k7���±����j"g$�w.��Wr?��� ��r��� 2+A���fdTW�){-"@HIt|����p.9�ư��_~���J"��鴷ԜE6��?�r3��:+�����lw��F c��G67S�Q�\�D�-c6 �άxO ��b� J|�p�Ճߏ�̺4#�O}3�$�3��~�8͚I�X���ۧ�}4����|$�@�����W�ɢژ��?k� �n�#{�5�q�WU��S��Ja�+�J 7��>�g��S����yH+б�ڱ��2,������U��C�v�\5C:G�Gw/|�����t���'|vrA���Z&�rQ�z�\.�u+�XӢ;�=b�����6܊*�KIv�02G���KRXd��Z����&d4-U8x-^�7.'�Jp��q���6��|�7�����vēղG�tlPZ!;��Z�ɥ���� ��9i�WI�8�H �^���C��c���~���Ȑg#��-$wW��Q��r�u�m�)�w�M�ɔ�6�j�xJ�A'�t��8�&�4�.�#�&��Ћ�c�O ��vG�&���d��7lߙ�v��g�"q��T�����`U!˗���SW#���ĠrE�A��x�̿�%�)���y0�0ҟv�����Z)�˸'�I��-r�P��#�����'��ݟ9����`~ &9w�s*i��m���§3�)�H|`ĵ[����G���V����F����I�����iF57˛/�9�Eġʒ�jB`2ۅ?X��Y;ۡ*HIj,�����y��}���{��s�D ��y�I�33׃��`���Z�SR�����@3�H ͡��0ɢJ+��R0� �O�ao��8��:��;��C����L��Cf���LK"�r\�6��>p�a{��z3h�?�5��t�&B����c�6���#U�"�����|� :BQ[>���I��0`�J^G���vK@��1�+���g����Q}"(��5kB4,}�����D����J\�y��,��hThBy�+X[�� �;�E�N�`#��~I�_�"2��p?�*�y��Z�l;Wi�ycJf=�u�D8�#����,:2 %͜0�'�x+�XwF��+�pR^�J_�#L�M�y̻��3CVo����ZޞT��9������㟜X3#�j�=��9C*�dT]{K6�0���Wq#�z�i��FD�:0���{��1qiL��=�+i&kLy�Yo\=������'�Z�=L�z���:����;4xB��@Mɿ>X�&ͯ���Q�,��^r�*w��U����ã�jN�8+��`��..;����������N��٥[ ��8j&�s:e�{2R��1݁&Q�2#M�I{���ɷ����A'�b�. uPn0AE�H=틐8����B�|���h�u��^��a 2����(S��pZs宒3&���_(i�t��e�V��н�6�a�/��vm�����c�C��>��r�,�kz��]̱*TG�w,�Ώ��(�ǂ���ˆ��/ c���G���x�r�c��V�wcj< p=��F��y�����6I�C��p��«Յ�+ū^j���R�Xjr��m�\P)j�P}|���ɬ:L(��ϛ�yhc�f��œw����ؽj6�,�_,'��0JCj��l��C�hx���[W�ip�&�KɽK�Aֹ&ˠ}<�_��Ϊi���;@"��u��by���җ�mx��@9�2��I�=�XXZG����(Xl_��GKY5��/��kE.�c�0�y�OtV}�n%�1�u�ui���#���":� 9[2Y��n��(-8 �T�M.�B�mC��^kvO'�2��.JOr_g�v����K;�=�#�J.˒'�R�Ű&Zȧ�.\|.��#�j�Q�Il��I}��o싎M����G�a*��z�5 )����RBU��ԌD�πg1>�y=�u�}nz�-�տP��� ��7L�ބ� ���|�� �{AaVD��O�E�#$y�F� ��gw�_� hv��O̠�Q�*����k���"l����a��M*�.��+��[��7�n��̣rN6+w�(D*C���@t��RU�����-;譗T*̛�ݢ��G��h�^H�)��[���ɤ�� ]�Z}�����]h��Q|�>�Uܦcfr�]�D��E �����96*�-��`���b��-��s��>ֹ]�+�5��% C�-ܐ'E^H�L��GP�=�q#瞾?.�y�MT*2�����^A���y�"N�.���bF rpE� ��&ʟ�̘�?:%�4e�K�{CV�L��n�N�~i��Hu�sI�\4���x/�K�z�)Qc\F�g�3���#x����R���,�L�1_Bԏ2��C�*��[,�zv�f�|� �����7�� ��~{'����,=��@}�%���r߉Z � VM$���S����J��-t�����m>��5�XZ� ��G�=���}�J!8����!*g���#��h�܀����M*�!r���P���[�a �%}�&�rt�^����@pdC�q�/i{6�9��JԨ��� p��|�O@�hBэ) ��+����v�� &M-�y�nCeA�|�S ;����Q����Gۖ��:]^����$h�����%w�C��s��B�_v�ee s��."�Zmy�����V#.V�#7�K&��P�jpk�d]�.k��M��7����� �Ox��6R��Ŏ�8sN�D�EE�Ty�](>IC[���5�}�h8�7��T[2x%���yt�c}i�%���Zx�2q�>��\�+� �!�Q� �:�x�:��Q�(�'b��3���&�r~�!c0�l��[���;��\�Ta�)�$Fc�'�D���E0n{G��1�<�����8��iU�}-F���o���g��q�[�� ->S�}�a�r��$����AzNu[�[����,l���Qˤ�;�p�>MoEN��.�W���1�%�F) m���H��!U����ͰYe}�SM�I����p2*�⫇$�ϟ�T� }�ސ���5����D ��u�Tb�����?�³1a�7�|�ō(6���.O��S�����j^obJSb���=���j���Y��c�~g"��&��9+�ZH��_i��b���.h� �jszۥۋW5�{e�kx�?�SJ�!�ع���81����x���7"K������ �a��*!mA��0����L�O��Z�u͋6@���+��Fy�Gv��� Bc�#N�77�<���9�������N���������� ���M>�M��23��d����Om��Pu>���_�?Q�[ I}l�g�k���f{1�퀙!YjN����>QmlV��D��� ~���RL��S�Oc>L��T�]H����/�U�r��-�7`&'/ |�T�*��D��hV�F(L��E�[dI�Ub�P�¶'n�c�ro�vflT�/_�/�<����Z���O]��-��;�Ր����J@�#t� ��/¯ژ�u%�D��% =a�oY�����g����g���p�nFÀ=��S�������%_w 4�E�Z�ò���r6�L,���`� 7��1�Y����2g0�%^�Y�ﶼ#�O�V �bh@���2���U�)�v}Q�z��r/���l�P�na+)�8���1��+���O�c|OqK��3[�X���p�����k��e��*Y����e��w��r���v;�w�?�*� +e7ߝ�7CM<x�Me��C�Y�3�i晍6�����Y��R� ��yelG��A��d��TV��7<�DN>��&h!;7@D���S�=/٨�>��|K��28��V�5~x�{t���_�Gw8����<W&��ƺ!np�N�l�q��6O-Ő|BHO�0��t�N��ě? �A'���4+��+bq��"{p=.�P5V쁍����nR�V��d@egG��_� �3cb��,�Gj����ڇ0��^�;g�M��CA�.���E�������e��V��W��u�Pq���X0�~�@x�X���w�d�*������r�S��e?Z39Ւ9��|�B�%��~������{�J�\��7���ҪD� �.(p@�cs��v%PXZ�W�І��2���{T��C�,Sg�m���0��>v�r��B/ޅ�5��r�(h�cx++:"8�窏�i� V3>��jc%�X��w��k��PG�j`5��X�,�`����>���dEʄ���3K�g�8��2��G�DžN��ё�~z�]�C.�)�����xVƑ�FYy���m�AJ�hD�t�6I櫺[N���[�G"O�&��q5!�ܛ/�|�'����l0�W!� N׀1i�m�u��(SA+]�Y�`�csю�Iz[rh�d�e|Q�o���Q�d�����̓��Ch ���'���)��xfG��-뫗��z���}=>��9Xٕ�:��h�m\ҏ�)���o:F���7�Qr7��ի�S�H���s�:��Ŝ��5+/?@I��~�QI_ds��U�j���? ���.�/�ޥ����/U�=p��L��:e��-%4��}KALe��r�\��3���r��A�1��3i���g��G{]Y~7��.�ia��3�l3�� Y�'}�Y�]����ZI?>g�4�H<L�]#�LO��*��??Q=�����+�[�%��<��+"[~>�w�PlV����z5e�����J����!Tj72���rJ��|�����1��ʹ�lsA�#��b�;�/�)�8:m�2`"��'�ϗ�X}q""MiX��y0�6����Ij�͜.7��lp�n>�2bS�9��=��,���\�h��E�\�yO�F>����q�|Nb�U�u�z%3��,�P4�ٮڞV7 ��qG��tl���P_Ǔ�x-Z�n��:I�Y�^Y��w0��Ԭ� K�ݰm̍GAG3���<�@��7.! �J�V�V�g���d���)��?����FpE<r����� �'y�����B-|2��h��A "�����m+S�N\�^�d�ZJ��������.j���Qg�b�ڳ@2k�A�p��<�� [�I9O�Bb7@�h�Dr�v��!�<0�(�����.��Z��)����0�D�4 u�= ��uuL��J2�y{n�5����[�m�� �B@���:�]V%{�Ԏ8g,�AWφ�q�k�d=�>Y4����6u�I`�H8J��R�����.��#�y��G������E���0��S�ؒ$��`d�F+U�N��Ԛ3)n�E!P�W��{�ˇ�9��%�L�`����HALqzNŁe:7J�݆s�g��F�\��L�`6�����7��k\0�*59��u�bQ��7���H��u3���Z�#f^��n����@�<?Kԫ�4e�#��ẘI����;5>��'�[�� "O$����t�p#���'���-�z�/�~4q�i��d%�(��c%���9@�h�⊵`��$&�Gx_�k=�R�v�㴧�X��6�f�h�U7�Ǩ py�K�_���`,���gXפδ�]n�-��*��:��R�+H�M/~車�*��q;�7�����lM��Q�+)�A�?�]� �?~]�kh.�L��Xj�ͱ!�x��)�)�Y�q1�|�pW���M�@S�$�(�ˀ�O��Jog�Ň����Z�k�L���o���,�NF���i�ʅ���2֞?ǔ�;�����7Rk�s|���-M���ЁE������x>��h�:�&��?��n)��<��33'�|O*;D�3���Ő�0��/BZQ� M0�ͫ;] ��ZŶ�!/f -��D�J�7KF��TMe�9&m~� �\��?]�b�d �\q�r.#�/YdT���ϗ�'���d!a�t���b=�M:��j?�D�W�m`��t�Ztu �o�*F�k� M�]��yM9����>G&��u��/��{���О�˜�Z^K���?_�]w�p�F�=?0��� ��`n�?don�߉�r�Q6��}��mϯ0�=4b��v�ѕí+/�1l���!��#b(1=t���s�Tjn�j?��FT�)� MJ�J���sd�h?�$R.�W��1�7�65��AO���?p}�#]~͏� ��[{�M@��/�O�c!!,�(h��UƎ�O<D��K��w��!��r�*��.UJ�����~�x���8,���k@���x}��v$�<�������h�U1B10�?�"��vL���>��z�Y"o����dF��SK��@b�W�$txU�����nC�ZN��Ԏ^5�a�8>�@�%��Ww�6��P���h���eP�>���"�2�h���W����.��C�@7�/�\�>f�@wee3��Zx�kOCT���= S*�[��\B<�t9W$�(W��|������4�t'�Ii�(`=TԷ�\��0m��~��c���ibr��A�N�친�>�$j�kNj�U;pȪ�f���O� 2�R:+l��3�Jm�׳�����NA�Xy�3�����m:|%�X�R>�Hy]�L9{�8��b�c@ z���N�������k����S���?h�����'�����5�*dĺH�|���3�6�ktf��r'�� �(�r�6�I���Gz �Cz4���&y����;.��M����⡣���2�wD�XE��GB�اCa�0��O��>M; B������U��Չ�w�I~!���,Anu�ޱ�"Wb�Wpb,���^��N�&9����@�~�=}(K�C���P��Dߊ�_�P�]͔$�^��[��'���>z)���lZ�JE9�~��'�|�>+�� ��B�8rH��iD-{dȩ�^+����N�_�r��ӎ�l�H/�.j� ��"�#Ɗ���L�ng����o!pd�l�����7���\����X�*GQG�1�akz�/ٲ?�%OK��� G��Q�k�.iRZ�(`��x�j�;�+r��R~嗷� |��:loY��G��X���IN)�2?�r�H�U���>�.���W��x� S~2�P�'�R���P%��9 _�L�{U�Hɞ������r������� 4�W��5����9a������Vˢ��E-��oU.�!Y�!|�+چ�O��� K]~�3�s�y>�eM�� '=t0B e!5�o:2MG�N�#w|��p {7Ytj��Y�J��m��f%�Z��� �b<ۙ�06�˚{%�O�� ���Z6�:Xv�f?�AI��zK)���Nv��G� &�SY�9�a�� ���ef��ŏ]R�ⷥ��o����i�@�up��d]�r%\N_����=���`>sԗ�� ��ڥ�uԯn,Oiʔ��塁�Ya�l,�/1�ˑ���oH�)�)�U��w������1%:|��.����j�K4��# �fL� �uu�)F�u��!�2�[���a�����3�8-Z.����ؗ�̉� ɾ�Q�S��"&�`yr����zj�D�sME�7���}$��m4r�Np�g��9�.<��k;Δ�v�|�?��j9Zw9�2?p��mt<G%�x�DD���u�������@3�f�b*T0 �OP���՞�F=\UYFV( ��W)W��;�@�`)"�D#��5�ie�װ���uLy �~�#J�RI�e�!�O���BB��*ۡ_�\���%/�M*rrK���&��bŊ�:�4Ƞf��I� ̣5hQ8�����{�l/C}��A>$+J��/� ��Y���ĊR�4',}4���^&K�ts�9q%�Ҷ�>����u�Â����t�@{Ѯ��z��!��*$:��W�<ð��ޢ^��ZYx��a����K�T����[m�\t����ÚO)=4B�n���;(��}.�ҷ[J3&{ʿ�n�ᅪ �Gv]\C��q�f��L��_����ѷ3��: �L'���y&V�e��:��,q��2���� d>Uٮ���v3o��|�MG�J�4 ͭQ��;�̒Ϝ)/�#��#�`X5���K4�0W�n��E�n[r=Y#�W��6Ff/mUZ>�,�`�f��դ"��v.[����C]�����9q�D��_ȴ�^8�C�Z���1|H�:ew��݀g�s."���*��D�ᖨ��(��U鎲� \�O{A! %���Z��ϐ��,����ttb�`B���z��#���U��%�+X&.>Ar�cW?�Z��"���)l:"��I�Y������ (���6)�I/и`0]���h�����=-oW�UC��f�ky�s�G��n#xh+.�&<4s��@�~]����$��0/N�l.���P��a��+��h|�i�P���"��~��[�x�U�}W3�<�' �W/3�U$���Q ���1��:��� ��|Q���HP�Ǻ�g�'2�PV^�S]D�<�]x��J˵�?fJ�u� jw����M�|����;M�:NC�.�+v�z�#�ܖm���<��f���)�쑛8�Ԩ�-,��������|hdd�,tfW�r�l�<+#��Jz� �[�YS?)Jzt-����J^�gt9#/+�;��P*� �V�����!G���«��$�~��J�\������_�@�oB2$��l�.0���J�|���4���GLs�`ZI��\,�8T $V��N�XgL.���QC�@C�slt9܂t�F�z-�!�,i]]��������$\e�ez�Sc�Ԙ7�㦩p4H�s���Y~heMa\yR���U�fT�;�N�+���֍���ֽfy���T��9�C���|M%��{oM��:�����a��| $}l��x&�9��-|�l�Y�\]��G�W 39�DA��"c�%8 �����,]V���;�0�����#��]��>�2u yX:I�=C I@k�_Z�t�X�^�SN+@p�P�,Z�Zf�>�1�m����q��=�k�Zd+ 3�г�IM�����ƹo�/mDnQ��1������c�mK���n�)x��Н�̱����0u���k�Eje����'C���k�Ŏ�N��eH H��?���S��.�o���y�L��F-VK�Qe$n`j7�"�8��`���e(�R�}�wߞ��R�����L�8-��R����g�*�|��#�}�)R�$^�4�Q���ā-�ь��^G'�:&��Y�f0ٱ�+�+M�E��GD���,3 ~6m|�?��sX��I������w�ۣ@�"��[釋)�P��1�k�vs�5���k�]�r���/�R������,2���ݬC2 wu��h���%}��U�绗�P'n��7���Պ]�nC����}n�3�ۯ��T�{�a%�v���57��x/�����~������TY�{�U><�f�?'��,��qG�$���y����/lP �54o��D1����Ȩ|�쾕� �5��9��g��Ji�:2= ���bFv�'?+��@)��I��IJ�0�&cS�#��.|��g�B�c��z�נG`l�V`B�̹KW*�l���t����V�mz��\�Xz����r�$r�~���Yg�qHn~��5�Ӄ�pv�w �Yj�ϥ'���.�V�>j^*�G��t>;�e���f9�1U��3����D�S� 8N�P͊^D?2-��b�K*�ڌ�L���z�N�Hö�x[����= �����J%�5V����F��RD��:iBn��Ԗ�� 6;��a�Sf����o��ު� Ĩw��%K$������d��A_���U�,�́m�eB���IDu��r�GU��j�@3��Yq٩���ݒ, V�ח ��<W�Z�8����v�q��=Iϵ7��>����"r�#���t�k��U���-e����Y� r��)��<��V� �����E�de���6U,�%��,BI�-[ՁeaTivP8ν�Z��/�եM���#��:����V8�$�~�G27kՍ�+?9��ȧ��V�]F)�6��s�G�9F��^�R���$E��z�O���N r�ަ��t�Z�M�]K^�Q�|_��$H�� �d�\��FMP�Ȋfxw�| 8څN��:���q�%9khkz�`b'=��q�: E�Ү�y�ֳ$��O��p/��6���*Ye7��qq�3KzR?F=/�!�B�ɯJ�A��������21��I��v^�և�I/D�f���ɛ��?f?o0��ղ�Hġ��Q� '�u�3�<)��ae"m�8�2�"5�Q9����R����A�X�!��B,�]q���Q��$2/��� +Q�� �5�u�8!�c��C�~b�+[([p^`�X�P�oCY�N���P�"�Os�:�d0VS�G��G����܆��=���t�ս�7�z���"�])bP�dt��s�<� �����`&O�y�P��ƭ����O_�j���HO�/��Ӹĝe� 6Ē�$w����@ʒ�*��'��|����pTI�KcB���t��k3r�Rn'���߬[�6,�ب�fo��q�ѦK�V���0� �/�����>? �l� ?���\�ِ�d��d �=�|�A-֤Ze�K�f}C���O�`���a���a��(�~�v*7���D�ͪr�3u��5Z��(m����1��6�u���p�9��Ԑ;G=̜�Lǝ��D�EϠ�T����r_��B�6�~T���Kwnq����r�{A���j�u�]�6�z��N� ��r����6w�`Ј�aJ�W >߃,'���ߴC|+g���C��MV6W���m햪<tQ?h/��6Ʌ�IbU�LLH8�W���S�sU���ڊ��+NB/{k1,Pp4�Y;��t�Q�%ﺔN�oBvu"���W5���7e�rX��� J��)� ڳC��L �jlIdKw�_��}N��ܿ]kC�|�s�,�4}�9f�_ bw\s�Ϣ���;�˘����̅}���'�ey��Eq�B�¦�q�{�C��� ��Wt$7l1��m�~�[�>���V崫{ x��s�Zˣ�o+�������4xȺ��) ����HK�!)%?��aY]��l���(!X��� ����7��)�7��.�@$��ݴ���|N�}�O��6h[ٗ�Jyi�B�]��� mHp|@A07��-��)9�.�Ǎ���Y�5���Z�d$4�<=�Ս���<�R0 b����i���s���+�_��b�=3�(%5�5 e�"��b�Q��-7a���V��/k+��Jh�fi��`�7�.��Iȫ��8ҲCy^GgWՋ`�5E ���$�kK�`�`L+����� �2�9�) )L!��i��`�/�Sլ�Z� i�_g"� vH���}��@e���l���\��fD�tM]/;Ɛ���&�a�<�AQ� J�bzuz�|m9�II��nT����g���ˢ��� ��?�e��8�f�@�7�DIؕ_^��bފn�݂8H�~<^���W kI6���K��{�����a^c��o��P�Q�~�ٵ3��g�%A� <������R�p?��=�z��J��2�6�?5K���C��PͰ����x�1��J�W�K�cV��l�p>�B8CG���tb9].���������2~%��q��~���4j��}H).ْ��F,�i�����Y*�<K�E�؟�S@���f��x�m�f�9�'L�~�$�5rc��{���19�h�����e��x8?��(��6/&����Qiqp���6E�����;����[j4j�NW�܋ڬ�m�= �<��논��!q�.�\���E�'�6}�#N���J ҩ��@���*Ϡ$�J�2�-{e��� }E�2��h�nn�PaL�����\���^�݃sHc�?*�V61P;�(�Ш�W�A��Q�}S�0s�����3�9�*މ��G�ZҸ</`�~�I,ڠ��u f���WA����f)�}:��R�@ ��N&H J���oA�:~���:i�!foU�;�3�#g�`r+n�y��6���6z竝��r{�F� r ).-R�*Ұ�ܬ��ph���yN�2�Q����]�"+��7� ��m�d�� ��� d�7-z��F�z?�B�9���P�`N�glFW����⺬����,�� :/89д�,����i��5Z+*�ѩ.*i�� �g3��1����a�49��3��?>�s-_��0f)#�I P&1��Zݳ��~���qP�g�ؑ���j8�t��"\��x��rL֏��HBq��}��^x%p����*vE�t[=0&���h�}���=���턣(�[p�� /0�Q *���A|˴�+�EjZ�*�o`M�a�fzc��,�a$�H���X�eӹ�����>QN�3BVk�� �!�D&�1ÒI���q��S�*��l��E�U-6����QN(s�m�h� ��af��k+����#�*R�9uW��EV�ѷp'�˅���R��$�o�>���' (l��pph����7���W��AM�G�Y| �-1G�c(�Y��.��A%9V٪ItM+��m���A����1%�r+��3��s�xc��$Y�yERƧY�Ĝ i�}�)@����}ڠ ��/����H��Y�Jx��&TR�q���h�5���Zk Tr�H�>�VN���I9�!q�g�x϶�`4�𨷚|�?\�����3�ve�gc�Pj��� ���� GjR ���.pR�_O8[��(� ���pH5H.qG|��u@j�\�euW|��7l-�AS���<�Ui�@��M`!d��y5#K�5b��t�{�H(��BT���2m ːnu���S*]��L:[@�u���m��$�����Y Zy�x%(��&���|���9/�͛u���ǜ���E��G��LՅ={mL��? Ъy�dW P�� [�SG����9B�� ��E5w0�}`\�^"Eú�sR��Ѯn�|腛�?�M �)RЀp�5��H�/�l貤KV�ڤԹ<�%�3���=;&)��l�>a��~!�%��q6s�,l�n�n��~8��P�i�r%��9L�d�B�:9Js�;@���W\ax��0DL�m�t����$=-��q|zt�d����œ�L/E����{��TJp6SI!��3$N~�l��i�á��f%^��m*�}�Q3���r�G��a��W9l#å��٬z�E>�u��"c��j�w93��nCZ?u�Д@�=x���ϒDo�V�P���k{��'�cf(�U��흁��=�gr�`c>��Ѩc\�gA�+�H�m*K�ZDI�{˰�� ���y��\�s#A���VT���*뽦�J7�^\A�V%�D�2����ƶ[Q���x�?�V�)��������F��姧z�4�:o�����MMP7���J�������3��C\��<'�����8 ��;��T�w ���:�+�I�v������YE���Y�O~T��y��%�f�Gwș���0�r�=%+�c�a�Kﳽ�`���y����.�-�^��u{�v�5��b��p��R�=�7W�����f[I<LᶈE^���֬O�]�x� m\m�/u��6g��4:Q$��%8,��"&{F� "�yI���\z�ul8C����Y�&��!�>{�T+?�!3r>]��Ӣ����9��ܮ������� p�����.$�t q�I�Ŏt��cW��\�q�>����� �� �.��1+�_��UWD>yh��[���1�1#��VIH �G4�w�א��aE�I�� (�����9[�y(_z\�Qa�D�`h����b>��e, J��4Ni�yӁ�(�Y��#��G�~UW�t�Qg��-7�� �: �g�#2s_��p�Y�Z��/���,p�x83p�S R��L��檟�δ.����ʟ�W��ÜL�%� ���2�*m��8�T���Ab� y���kQC�)�1���&n��n^��7mZ�q<, �q=1����Z����,�ATsU���Դ����fg/�����*W�X0a�<��X�/�'�_ 3����h�gɻ:Jw��!����yY%�24w`"�NĶK��l��� _�`��Tp���{u�n��p,�"�Fҧ�N�����|�������-�;�s{s|LLE(��K���[���w_�7WV��ƌ����h?�^?��,ln"�T���&r�������q����}�z�� �p���nc{I��C���*�6Ϳ#a~�Gb�O@:J��9?�v&�/�~��5x��/���s���v��aG-�%t.��ƛ��[R��4uۓG.��q �J��9���g��@�j�d��!D�� �g�݅7x�� /\�ʇ�1����)0�[By��P@��ڌ�tV{WY��!�1�ܪ�_ �̹J���&ߦ tu� "�g�`��J{�%�(\R��T�D��Dd��ƹ�9��9�y����� B`�_��Ú��x㪚2{F^�����_A�S`a[�OT#q�ec��G���8���W��9H�>hU��Q��7�}z�q[������oՍT�� ��� g ���L�`��0�C^t4� ��yM�1��H�+�,��� �=�@����̂FN���}�M�b�V%�e���M��h�֗&E���Xm��g��8�d��� E2f.��Ί�������o�L,<���<5�͖�S�;;U���`z�>�Usي� "�������(+��>�����=�e@���QDi�n��� h>����?��Ut4,��Jʀ�]�f\�3���v���ק��]�])4�(����4/i��gϿt��� Bp2��5�~P�����&(�� �쉅�.t�_o��s�����c N�{�Û�t$�H�� |&3;�cħ=�v^\�oS�n����hc�������:�`���d�$�~��H�+;�"ql1�m���5bq�$%B����.�|k��o �{T�܀;�o��rtڕ��+����'�b��ض0���T�{�&Z'�4&�ge��k��M�V�`��;������| �X�m�i�q���~�g_U�((>���˄�{�xԇ"�P�K���m��L\�%��X1��#�����Y�Eb*��$9���X8�es�K+���=� �6{*�Cy�ٛ�M�9u��ߏ���c4N���^��U����d�X��jvچgW[5��#Sf�6��!��%,P��;I�0���y��Ny���SY� ض�|����M$�����p���]/6Sťc#!�]�U8�3}C�w�l�g���r�~V��xkP,S�j� ��qfk��\ĵ3i��͔����}�gϬ�T�j?{�PojW�knቭ�'�&�b����9�2Z��̦��48�3��|i� "X0!T5� �)c��z9�a�TP:v����КR�!�E�A�`��t�J� ��fo��p����R������S�5��J��A��0�4��'(����L��:�0~Q�-H1��u�VCE�ڭ(it�ت#��t�Ҫ�p���ֿ6c�(Hm��u�%nXG�ꯩ��X�^��� ==��(�h\�%]�( \�4��wϘNȾ�d�a:�O�BVh��J'K�M$�w�ݕ���w'q?�ۢ�{U�+;ݗ���ş�s����d�%όȯ%�=����q��v]��x�-�1���T=�δ��α&F}��<��:�����7��w�<2�1��K�v��P�6i#���9���Y�H5���(� ��� ��-���t�*�rj�`e�b�U���R&��'���}j~x�-&�;Z����M�ke@x�G�kP�sĹA��v.�S<���U�Ѩ�q�c2}J!���w���>&�Q����#@�3�=;� �$��S{ѳ�ڲ����A�/�6N��}�g E4Ȗ+��XN�'}��X{�CU� ��)��I�i�v���{�`* ����*��whu����ˀ\�=��/0���x.?w����"�$�Y�6F��m�jXOc/BOߢTP�������+��<��s�4�_)�s��P��)��f)�s�]{�fj��K������vլh�>{�˻ca&�7��j$�jo�%ym�1J�@�}IJ;Xd���kjhC�@R�q�3��H������E�ta�T�`�=�G��-�T�u��P���0Zҍ��+���rX~f�F��5CK$vD����ОK�gq)q]����F����ȊO���X�6;d�͟�V^e+a;�Z�!����4��je��w���z��Rg=�o|ex��3������pȪ��О O� ��0do7 w0��<,v}����|�H���7��w-@��ߠ�ʷl'O��2qì;i��+�7y(F��ap�&���ωU������74a�f�\ȝ0U%�+ �<5,rh��y9f>W)������)�Lۍ��VA=��5��Rb����`KK�g�cnA��z�y���g�2gP�ܘ�I��-��\`Ĺ����ΉA�J�R���7���x�����7�_�`_�^�2VP���[�.`���g�4ҁ�:�s����[�B�P3� ��h65nLz�ȿ[��ri �)�n�co�9�Dr��/-5����I�oz�E�� ɀP�&�Xݵk�`~��5z4rp�S�u#�D=+��I<����W��^�/��Ƿ���?����Ȗm�r�T��+���91���ћ�F�T0�l�$L�n�y1_*^��x �8�4�_ӤwP��U�c۴�R�Q?.Zձe�h Θx�~ӬE\��7�8�A�ti�R�������W�.����@����~�\�@;�p�h[s]��$�s�ϙ���ڈS��=�'��t��]pVY�CK�M=w�A��$�/���6��e�t�_��|D��&Ɓpo�֥8�U��d�H���(�B�X}W�'S���,��T�`�\��U�9_b�Ν��3�~����q�N��r;�H����@�����]x*�*�!SM#cHA/�7;��#�#XΒ�]����pR1L��1hN@y}q�N�jއ�.��Y���V��ja�e�ϚT��� �D�eq{#�<��Y�|���N�yz�&uv�Ӫj !L�f�A�-Й���2���D��a���)�����C}� �����\��[qǗA3��.5aqKn�� f%K�ͫ�R���-�X�e,����#"\�H� D�x�+6��og��=��˾��@�0>�IH9J@�� ����+�* ���Ea�����N��$i.�Njd�<t1�l�0��I�̒+��6K-�����`m⑬ �=_���K��b�ޅOXؙ4u�>���v8k��G�i d� �ԨG+)�:>yZi;�2��g��}oĀk����"x�D�l�3{ߊl������:�8(%�1'<�-!l���� 4��n�K�Œ��3�RbM���-���[� ��m�X3z4�X�QO�i�_����SX�$8'~:$�Z̼�k H�Q<IY���V>�O�a��6��R�������r勋]n��suӋW�B�PG�ꄒr\5�\uY�C*��!��\rd�DC���Og �@���N�+�"�8��K����ZR�D����C��u =�E��bG=��UB�ϵa.��k�'��z�:��muQp�p9�h/�3E"㗏���st���c�n�ѫ8[[e�]����\��9�e>��Ŭ��]�Eׂm�\�S��\O�0�s���������T2��y^r���u���EkEY �f炊��æ���x��q��CArԌ��;�RT\���~��.[_�����+�݆�{Y��O���9�����J"M���ve���D<����` J��9XXON���[�Hka"���r�>qP�2'�? ]oQ��8M�nb�%�F7�bӌ���H)�{j�3�]�a���&V��j�jI�v��Dq�J~�~M�4�!�(��Y���mv����l�Y���B�h���E�{�.鵃�����O�X�h7�����D��f�_�� �r�Nl��d��|H�{V�_zbn<f����K�5����\�HY��z�A>�Sm#� }��M#�W?���ϭ��b���O�1c�&�F{�'",|]OA��1��ɨ<R���P�tQ�>��.ߴ'�J�<ӊ�S��40�4�7^)G��5�_N�),��w�YL �]�I�zn���7ޱh�ǰR�md �B���W�+�Ĥ�"vI�F��R�)M�j\�ekϴH������A��@n�C�όzA����;�c���?n�u��}��DN�Gr�Fuhs+��3�=R��1U���e)R2+lEI=?}G��C/�*�7ĪtL�U�;u�,8,��� �bUoS�K=BF�\yO���V"L�h ��zޢ�1-~j�ǩ�c�v�j�"j=W�$��O9��ƨ�(�/��CX�%Rv��|p��'� �==!>����ÿo�ռG淡HC�͚�s��VȞ/�hn_Đ��'4;������D��3�� 5���\��y��-�# |�l��(6eߩ ��@2�o:�� .J�+8���J۞6��[��']�?���"`�̠��@h�y�]�:Zٿ�]�HS��i���%(�S6�'��B�"\�q���]M�����#$A��>�<.�����pC���Fr�`���Hs��6��-�P�62 _�Q8�D�DonB��gcFܒ�7���E�gn���<� 63�ر\P�&p�C�a�;��?/�.>�6��� ,+��C��m�&��.Vl\��B�u�;�\5~����ٛ���)5 ���p��c@�oN$�/��3GE���7��J�<��*�M*ɯ4��[TUu2���Z1xe��T(���l����8�⎚4=fv+H�!�:2E���?Dx��K�G�6��M>@��^�r����0%?�M7;i�/Ӿ��:1<l'0�}� e��p����8�N;N/�a��; �y���B�D�B�Q��}��LӀNZ�1h-�����<#(��_0]���Uϝ"�o��D��ޓ��2�&`�z�iO�H̔!X�c�/� i{��QU����o�u(qX���5���^*�������<ؖ�ӣAZ�Q5v$�P�Z�a��] tb)c�2���G�10øwM5XHM�q��A�x�,/���n����:�2�)|`A7�� �B��"{�庄�m���t�zjBv��7��=�g���4��[���g��5����ޑ�z_������mÞ�?_��0M����떂Aȹ�������{��P���H���o��;S2�/���`��ǯ|׃:����O#����}�9ͭ�j�*� �q� t�hw��w�Yqbo�/���N'A�3���T=Åv=v�3J�-�`1k��m�g���+�9�L�6Y)X!l0�TI [<�`���z�\�]bdpZ�Qn2r�]������'GF��[2��~{�N���^�f��{S������t���L_klΰu��dzH)'5�t÷��6��=!��W�kN'�"t��i_t�:��ǚ�$�T�̀�u�Q�Z��`����j m���d��h�@�Z���0QZ��L�**�5�#�����g�4���(8e�vyp>qAg�U�[�R�����M��9 #��zmq6�_�¢!פ�B�/>��;Nݾ?�p�B!>&����_nzW�Z��wrZث� r0��ލ���.O;��gZ������48��A�j�]�Ŝ�C]eȱ��a�X�\�\��]�_JκN�3O �x���p� ;���u�l��?P��/vbPoDFF�����.���X�,�3t9�MH��*Sm(�p$/1�/M!Ey���� Ʒ�+E������b���~��5J�-ø�c�p���"�Y��G 0]�����G%�Q�f� ʕv��3խ����YSØQP�$W�C\�`���YzE�M%I)�s�k���!�Jm�L���n�t���'��˚k�XG�`��.�i̩��z�b+G�%��V���=�-ã g|1� ��YeM���'H��>�[�f��A:AH�����+9 ,�J���~����~ٹN��I����[��t���?��a�g`vv��[����%6l?|��νrE�p�Qj���5�gr�7y:�UY��ړ�κ����� � 3�FpFԓ���3I��d ��߷Ǎb;��^ }�Ik�ԗ bH���Dg�<l�k;AS7IGɲz�؞�3�6��Ϧ��Hˈx9b4P�_O��t�B`�^Ge?���B߄�&��hL���(�u��r/�nOKś Z1t�ߵ���|0�q��qʜ��q�?��[2~��q�S�,���2�끌��j9y�/�v��6Z�JGG�6���Mg�a��d����AiW"��fe�n�o���>�g�f?�\O���ZeY �R/��!�jzΞ4&e�2EGDX ���F���G��x��c�,�-�cAe*��� �R�-�(�����Ϸ�KN]�EϞތ�w��h���Pl���/�9"���".����ojks}F�x��+b�+֥����@��1���_��n��� ��Y���~�ݏ�ߔ�4Ye:�mz�o�٬QWdQd�5G�Vo�QI{��� 3)@aoG�LZ�gL*�2�N��`�_;\�4A��Y�ʲ{�0�Cv'��GD%��d���Ũ���Q�<0�:ޥB1�����NOWnPb�Rpwx�T�/�K5�3u����,���Ի�� 3?8��"툉��)}��އ�D�� E��M�; ��\ȸ�t�����9�2�U:��ÜZ�� �V_��3�U�Ӧ�W��]8�H�������5��H����,=�O�7��� �"�dmL� S���ګ e2�w���kqu�z�9oE�"c��$@�|j28V7/W8�~�l�<[�,:2TX,{��.�Ch1vB�Ӥ}3D�߳��<�uu_C��m���=�i ����m�/�*�s�R>�sDн u�d�Q����y���r��<����V���E�"�ޠ`�1��3^�lj���UQ��۾�/�)� ⬺�+�k��%�Y{w�O�ꇬ<��=�LWL"�f�K�+ z��|�覙>Z��^�"���݂I|Y��s��c�"|P;bzӶ?�#��#&��zT���n)��l4i���j;?�;�wM��}�g�ٟ� ��ŠS@4I<�X#��U����E�zav��$9A�w��t���y6�tYϷ����X�~����I7����<Y�4"�Kq2��1Fי1:�� �:�D�B�Vŗ�R�)��䎫��A�ٻdD�H�ӂh�O�J��ë��D�DZ���s`;b�ԟ�Ƀ+�lɰ�-'�����Kx��ͻ��l�E�Ʒ|]i�l�S��l�/�;��̺m���JgB�0�A#��M{�4_�9V�ї��?%���+�=/�, ���OR{�/H����Es�n�(q�*A ���L��4T�A t� dB����ׇ]A��hr��4PB�7f�a$J�T[W)�^�Ob� ��>�O%����p�<Ę/i��z��N����fP|A���n�rd���n�L+�@��n\�vM��K�k�z;�/0�5�ӂ�Ft٥�F���sAeP�N�@#lZ�����:ԝ��>{|�h`�{b�ک�vR��S�|�>��;#\j#�P>��w�#�D~|즞����DޮS�UC�3�2�RJ>��I�JL �#KG�@�<hT�n�n�C|l#�m� �SM�^��c�C{�E�e�@��N /Qk�>[8*gE^�m~�+ܕ����Q�T�w��o�=�@��Ll������q/l/�1�$ⶤ��Y�U����&e餱Ϳ�JB��>Xի{ZĪ������"�E�����ĘΔKd��$���Mg�j�륑��Lw�4�n?گ��e�{�^$�iSL${���&������x���7��1b&~�#�7�|�#1K`� l) "3���K/�Ԑ �W �ǟx��_C#_]����P���~$���s��Y�*� W?���~��\|�|�/��t�E����^�.��4S�1[|Z�!���L�&+&G0�(j�8�Tw�4�M��gE�i.��s1���KV %��A�+�+_f���ݘV$���H`RP�T�8�'�=o�}��G��ly���m��n-�u*+�F�}_.�x%����k�������'GMZ G[��>�>ysK��Oyuh)_���(��ì�>f�a�1���ŭ��t�D��S\C�OF��9�i�����1����$nBA�̪(����t�c�$'�\<�o|}/��©�ժ �RiZ�����U��%JG �F�_OY�z�X6�&j��U��}��Tso�!���+{5,CPuv�L���> Y&4��^�=eM�\��"�c��J�,��_=�u�D�����)����o ��; � <�lRp�IJ�DŽ��E�Ύ�Y,TW2��F�wڣ1 o�0Sf�u`������J��(!�6�yw�&���bU�U4��hعf�\Q�-��[�=FQ�ۮ7ұo:���֡h(�h��3�ʾ�|�̹�-��#8� �%�b1�M"<��8�à q���7�,/<�/�O�<�H�a�k'��o� /2��%������B%:�L�a��oБ���ҙz~i��U����j5%Y��a�W��o���c��BS��A��a�`�w�X\7�;Vψ��g�����s�cW9�.�S���p����M@2v�g��&��i�z��p��M8�z�L�U�n�� r6Sj9t��3�����l%���`�s�4�)�z�|0�h{}���DyZ.~c�U�B@Q����w�>�zۊ���������p �E�����%` �t���A�g�W�u�Ū��o���%���UEY�?T�hd%X�Q!(�PsԐ��Pdbo�5 ���˂�bW5�~7��?� ���N�&ǎIA/�?�8��1�1k�mv�uv��͖� �['0+l`g��U$_�m3�F|�y��z4kl�ü]�_� Z��$��>j��^��5�Wk�Λ32`�-��K�����Y�p�@�B#�kJ��%+�T��[,Z`16��c#�z��Q�7�KP1I�@��7*=��\��y�39���l���n����C8A{��А�TemP�-��7CDP�d�4���[X�/rqo(d���ُ�;�7���2��s6����Wrh�?��e�VhzL���<�SI�?t��bg�ykl7�ޝ����\�F��PU>����ƶXL��ߌ�8��)ۄAO7c�G�<D7�lyg?�� �~��70/M��Q9�k�صhD���j�������d�$aS��[u7-ͥ�!e����e%�xG��y{Z����wλ��=��i{�:Dr1t�U���9�ҳ��ٗ�j�.q*�M��̪,�Єv&�E)�^�� nɛ��?���j��}ۈT~�~�gڼ��Ъb��TQ���+��l�!1�U}�{��U�� 6��,KP����x��[y@��T?�����@V��a�����oG�<��wu�YK��K3���Cy飱�g����4Cz�7�^w��7����fC�R�kiYoP��l���L�2?�I*0;���>W"��F�"�A��i���K9�z� ֑5���QL����a)+_�jM�C'��Q�2�b-��κ�B"Q�.�n�!��MZDH���!��f;�aǼȔ�9YFŰ��"��h}�\��2�vȌœS�<���+�bH�zo��.�?��]���&к`d�EׂY���'l� �z�������� I��7ʡ�K�+�)���,�����R�*T,�\�r�,�R�g��@�-mw�hc�t�����r(��E6�Ew��K�c�)��A����G�X�?�2L�I��ә�����!`4K����t��_�n+B��1�L�O�s�I*�c�W��ڵL=N����Ծ7^ Imkg��?����~� ����v��5W(��PrH4X*jfJ�m[�(�ӪUw��q�06�~�����c��y`)~��R����Q��ø�U��@ò���^єlJgQ��g�31��=���ZN�Rڷ�/)^�}Ğ��{k���b#%k�3S�C)�U#`�'Ɛ�72p���R�s>g�-((0&��4]���Xl�3L\T��ڨ>apf3vFо� �A�������q8NX�>@��'|.)F�9�P��j X�Ffz6���)q$�ڄ&����r���F�$���(� ]���s>��(-8٣��"VJB@�[J{�eB���0>��*F��=Z���F�n��xޯv�2�]z�[{W�7<e��C<[�� e��R��(|(%�@'�ߍVW�����G�^=pFEa}�?�8��6uo��e�²����Z��?���T[)��nl��tmIJy����?�u�u�!1�w/��ԗ�[e��E�[d8@�4�ACE��<��,%>��l���,`]j�6ш� �ϑ����i�є&)M��tY���Z�6l���l�J��ä�_�}�#l���g�� �R�/��2�i�Y�7�d?d`��b�=�o���EP���ǤG�O�h�ecD([oTQ�i\�{��c�M��}�&0�s�^��F�^Y�s��%o�$N���К��Aq��`X�:^�MfP$��~�B��O]3�"�j�� H3����\�\�;7:Y�P�C��?~o۾@��mH�͘�L�N��G�� ���f�H3q��T�x O�s��3^0�� L�WА</t���G����8->��u<BG��d�(9�|���kRuW���h�Z��<��t��#�q��bb�X�m��wumm~s�{���<�����v�R��o�amx���V x�� �A�%�Tq��1�fժ,��c%�ds�ڀ��h�^,�"h��m��w�9�SzM�wS�t-u���z��A���api�B�gR,�,([R62�;���Usg���B5�ݬ;�p�y��p���>��a�B�isc��N��ɚ�"E����؊(6��U oƇ?/� 9�S�q-� ���ή���DV��l�1��̫�j���+buO�ꅱ�T�{��$��sv��*�|�"sp������„|��3�4�\(��,��Z!�~U��KM�Bt�=9�</� *�gZ�e���(�{��<xlI*.���e���~"[eҲCl!(�h��ޚW��N�2�d�ެ�s)#ņ_� �� 2E������U��O��a"R�c����u�+'��<*) � ���z�`\��M@`����*~�Eڠ�^e��AS���W��Y��r ��k�B�=]Ogwi��r��e��xѩ�t��8����ƕ�A�3��G� $���6��9m[��B{��}�t���S�����"x̠��'�;��M�Vfw�*�d�3�v{պ�_c�_��Ln��p�Fa���D���AF��wf>d6���Q���A�ςS��Ůs^�����V,�.�*��xY�������ֈB̌ƴ�����gÍ~[�$���brY|�s���|�`�T��i���y?e�v7j�w�ߊ���^}X�A�j�R �-ak��-��S�c~��\ �BK_f���R�M ��37��ڧ���p?�8p␃tk�_�݊RǠ��N+'S��2�^�dTM�\}FL�[���\��Lʰ�Ӕ�r��+�$qRUÃ}_�q���X�À���V7�H��)WO�85:e '�B��[2A�_H��W��K����m*B��ȧ���i��(/����:�2�lr��,4��{�0;AR)�?�����y�mtYX$�E:���LiYY�����e_-hw���\��3 \�U�o_�Z��2�U��i&�(a�O]���:)ޖ���o@��%�t�,�/�͟�:�� �4�D[�7~?��B���۵��aa>�C�B�0h��~�sy@_��~(�@�:��X��v�Y]�{�G<M.4#1Mi�#�#P�\� ^�jcU����ىx&��C�'Ls�Ծ���YY��6�H��a�9i�v�N��� �l2a\�tf&o�J�:ٙ�`P�VxO鬩�9���/]}N�\�Gg2{��1eg dL"[,Fv���5+�@��@�z��4 ��ٽ�������0��#e��/� h�_�&ۯs�oL���@}~��< �ܲ��o���U���*�(-R�ikc�W<�i��3��E����9���=#��\"�Du((f۰�p�&e@�h}W~��4=�F5���7t4M��c^a��������,e�r�#��j���l{��>�.�Be�˔������ �R�Ř�Ņ�����Z\#@{�7����ِ\�n��Ԩ� Ϣ�V%�6��$�i=O���c�j����������c����K� �=�t4�������d���r 9�=����=Vc~��A���>0[���a�ۧm�'����l� +�s\��R�A����ˌu0��4g�y�>4 �\�9Є��9u�-D��U�;�F'd�S0�Kpy�x��nd�ߌ�/�v5+t ���u���4���<��He�á���?Rd�J�vԧ�<�V��oo��ȕ*��%u6q�Z�5�!)�f�����j~��fdL��f����V.5L/I!�$�JL��;h�w�r�� g��EG�i>���dPcI�x���Qzs>l��M�r����<0���4�rG"m/V�� .������qje�ܴ�N��%ӫ���A��F�����O��ê��F�9����U,�0�Dt1���Sޚ=-z�����b�s��~ �P�B���꾭���̟�,x�pz���9��h�2 �W�e���έW�d�۾�U��|���1Pq���=�Ç��15W>Oȋ����o3� �՜�q��B\?�#ʏ�����+"��}��[���}���7��n��\w��~ �_�T����r��p����_���*��/�昖 M� �[KC��IhA�5�r28y ��` E��?�.ʔ��� �4h�����:�z����W�I�S��X��C��/���d5d30jƫ�ނ�|aky���P[�ץzY�+0�g\]�>��u�8��Kg�����\��5W(q�%������j{��_���e�̬L�� r���n��>���B�}����u��~DCP3������iv��Fb���S��W�vv��-Ե/�U.���MD�-�$����³� ��U ��hj����N�مF��G�7gCI����4k�gy8�yq�@�f�)���1a��Z��q�u��U��P)���zx�ꬳ�lG9���C�H<I�=*�~o���M�n�n lz"{t`����*Kl��!���x�b��1Cy�ZHgK�g�� 6��\�b���qF|"o���3�Z���0�-H:`{��Z���E�Ѩc~�]������!4�)[b��g�û<c��m�=�m�{�Ru2b<|L� F��Hd�����56C0zzTU�����g8t4� ����� [v��� >w>�6����hn�1�E^�����A�ߏ�E�:��wA���Apκi�Ѡi�U |�{�[�B�Iy<��A��W�rK����̶ɜ��oUN�9�!�{��\(�q���\/**S�����,C��\�[o��m��"$�Bn�Z�!�?���b���L?�)Q*P�O���$���`b�'R��@���"�Ar>J� ��q��s����5�1X�7�z� ���j�W� �1��� �:q)��N9�wìY����CBQ���d�:Dr4ܟ�֯x�>�ε�`x��zz�T��d'<x��9?�7���|fT�6� ;����I?�7�C6�ׄc8��Ԭ4:4uq��o�ĉzJ�����>��=eS\��x�9��lk+_g@��R".��Su�=�R���ߌ��FC9���A���v�NF�L���I{[��z�6g�(��`�i�J�D0�I��(�챻���c�/�c����/���D��q:�����0�N�P h��(-��Z'�)��-�W�S q�1�(��<k�n3>3q����%c�_�:� �mq��c�)� "����q:�[ N� F�c۱���B���=��H�@*�'���BֵS�D4�r��HQ݇=��E��ߌ��1h�] �e(ei��K�uÞ��<i�j���*$��쳫B���+��F�(t���(��??Iڼ���P?���Om�<�H����o��$�iBQ_w`��$>��^�,��ǃ�W�������(6X�?L{}N��?�?dt;a(�� ��]<o�)c�a�|�e�Cg�;�v�,���@wO�o��XA�\�6A}�(gc#*�)�!�L!�dQ:��^�==f�x b� xEu���HIi`���\r�K��ɠ��#��X�^?�<� xZ �n� ��h��9�h��� ��� $�����C�� u����Nf�v��B��?��]ռY��͞�4?� �� �Y?��3;� { �St��dО��6Y��h3��G%z 8�����`2w�����tz�S?���R�\�t*���r*���k�'5-da�?Nn[�Dߕ�E��Z�1��at����~�"BH�g�ϳt`_Z�xS��{��T�7��%G=����+��Y�:c��E�j�+�`����4??n�x\,��O<<O��/>���� �g���@��W�]O�4i�������EO�M�ix��'�f�!��N*� �&㎍i�����N��s���{~� n�}3�n~���N�̢�6����|� �O���e=[��N<FM�τ�-�LRż���z�~��ī���W3�Uv� ��`�v�$�&��f�Gyo6��I鏾`��Q�|X:9?�eE��z"]f��!��*��W )���9e�9�}>�wͮ�b���k�K̿�T����3�;�/�Oԝ����ٜ>]���=��AV٬b]3&�D��#N��L��D�k�Uщi�C�N�KZ'��4��}+"��l�IM�܅4�x&b��V����H�:�h�Mk�a��2hg�Z���y�y�[A�&�L���0�dI>����i x,4p0+���W�C(o�\�fu.ݿ�sat�=�w���5m8����noS�� �.�������_��Qk�;]:��5�"�H.\*���~"s7���E-�,;y����4�����0 }^zh�r�T��W�=y�;���WJ��n�8�XΙ��ۀ�M��"�C�t`5ƭ�v3��=�L�����H���&�!�cec省[T�e4�L��U�i�z?ϲ��1�W�+Dh�[7� 0�dRl��.�ƩI�Z�g#!��C�px�[�Na�DS'� 8C�Ė5�h��,L&�*^�C��Q�u��a�z�7�(r��[���;3V�Gk�>K��%�����k{TE_;��!I��=�$���� @O�D�������J���9͘N�,�K�$B�vj$�4���堇we�f K��Ԗ�NOd2%�=i��E1�BT@�%���+��S�͗Kd�c�#���w�2+��*Bȭ�.؟^�[H���E��;t��ܿ?s�}=铂�.Oi�k���^�1��h���s���3@�A��n[����>��;+q�%��Z0p/w����7@KkP�f�4�����7]�we�w����_�6��Es8Ը��`���%�3�ȭVѰR�Y͓���mRP;zY��m��8�8�껊�`Z�@ ���<ԽJ�pH�v��c��ظ��ڸ`���a~���3R��1SF�� �7ӵ�����Pa��s`~jAE'.��֝��5. x�}b�����*�t��i� 纸d���F�a��nsg��*���vC���$;}ya��+�����(X��Zۚ�+П�F�cL-a��7&�S�?QdM�T^�}�UH0�'N�#�|���p$�����'Z:��F4C��24����@�3^�Ti%π��E,�I!u��W�`{�"#��8xpI'�$���n���=w/`ѷ�C�YE�OM����|u�n S�BH74�2��P{)�V���m&�~6�J��FiK�|eE�Y��\�R��ZS����/�x]d�k��5�@ Vt:T4���a��X &�JI�I�I�эk�G��7 S'�$UG����n^��D���*�fǺi�Q'X�d���#r�V��0�+4�e�@�+����s�&J��<���ͮ�EB�l������/���}��:�RKK{�Y�s��g���zq����:-�2���U1h`�eG�|��:��c}�1Oh욄�Uf�I(�)L�6'-�5��5cq�Ɉo?�`_HFyv*NF�u{�w��� N��X�M���+����������8��~/]�az�W2�Sg���y�w����b Q��!�YG�ӊ0��k��w"����Pc��x띉���O��F�D�Hm\`c g:�/:��jKSs~�[�x����d"�~��T�ê墆��W�ʗ�:04��%H�}��ݲ(�� ��Y٭�����Q����)��$�e3^z5�K�0���O�D'3�&���Θ�f��*���e0��+�D�57@2o`JO�hs�>2k�kD={QY��"�=; 6���,o���6fY|Z_��Y�H$x�0�uX�J���ū���]u�9�ϑ��'s�ʍ�L�)g'�ŵo�����=�Y���LPK-�?�N�u�d��3��|xz�MQ��{Y@�S~E͂N"�)���d��� ���-��e�@ix^�r�� �y�n�P�|�4����P�d�1�ѱ 㨊Bܐ�NdS:��^=�۠�}{kV?8I�UF�0�*��5ze��i��k��N��\[��/p�|��p��Fxh)��֛ٟ�q��a��y:��'��6�/�*K���}}�xֿ�L>;���!M�BZ���_���6��l�B��~~��EM���-Q/�ʂ#���/����\�3Q�q�+����ig\7g�l�Q�(d���|K�������3 �f��/��(8#tu݃E\��-B�?<��"P͓ OXםUC�Č���W�Q�m�6�9K u`�\�PQ�T���g"�s�:<}��ۻd9���Ʃ� �¨8��J2T~Uij��w�7�6��ᷞA�$ŘƻIߏ��A�mC���O~#6h��3�'.8�Y\03��a�̍4@��á1p�� HR��E�a H���E��d�1*�e��^�/��s\��Cn!=��P ��J����el?&6 �"�G�s���4��@dM�4�N�`Q��&�_���);قi�$��P��'9�k��x4�o�������P��_�H��lNb�u�i���qA{|Sp�hφ�>\��~�Qw�\�ޢ���?���[>�o2�����![����M:"9������#��2S���������`d�p��&1��,��aZ>h��L,��{0������:<��`- �^��G���w|S�Y�G�N����ǡO�Z�>z�):p�.��P��2��S�NQwl#- ��Ǔ���) �r��y�X�썖� Oʃ��G�Y�d�&��Fm��%��0�8L��g�~�ۭ����~� �g!�������C]�l�䓩���%���9L_�����z��٥�Af_M� 窑>�"2A��U�Li�� *�ɝѶ=Z&)����5'��U�%��%�dSlF����xZ�Չ�_�x�::�6� b��M�^%I�����L�讓�h@����5�����NI.mq�F�ˏ�<GȃW ���[��ˢ��HK{k��cB��+㸹��Ԩ#&C6wE�@�n>�k�������2^}����i��_X?�YW���t�8��)���v�w�����*�6¦��@ָeJ�o �KS��GL��/��5���&�w��l����E'�:��t��`t�"��=�l�;���Έ�㪷F�C}į�{(�y�ɫ����`tUyc}��ں�Zr�^������BL�~������V�}KŚݵW� !��p37���n!\@%������4e�)uP�n��Ⱦ27<V�:��c)�,�$+FAڱ���a@?�L����u��c1��0�tF<0�͋�we4�ˍ�;8H�^Tq�Na��nC�!Ŵ\nR[U��ظ�_M1�A�l ;�l�q��虎"[j��J�dUA�w&�I�Z|~gT�+�?�2%U����(5���c|����Б�����FP����D�>w����� ���g�ys�gR'r�Me���G�A>}�<�Of�� ��P;�l�.� �I�F�ۯ�|����7�w�ۆ�/|�k=+�j�BS�2_)�=�� ��u�*ka��xu':L�&L_p�x!zj�w�M����R)c��8I�m7��0�?��wPp9�Y~��h(�ʯe.�<Ӄ�Œ�Tx���J���}���\p�=���D��5ʹ�.!Ifm���G�L&�'�����%b<�t��@��a˂�cS��<{I6��������>��3�����jrw$�$<ˣ���mU�����Z�o�#���(�%�J�ͅ��H���/�>�B�8oлN�4�{?�2T��iW�Xb���m�ЃU�B���J���A ��#�r���q���i@-8R�R��w��X���L0Ύ��W��Ҍw\Y�CXWrÒ�x�w�y�c) �~M-mОy��ir�Ff.� �F;����\wO�L�$Q�EaR�S�v�U�Ӻ�,vFL�"I\<���G�#z����տѼ��Q������H/�n�E�U.���ă��+�f�����U9ۙ�GJ��/Q��M���AALg�V��0�?�����҈D��O��öz�.&(�;�%u��x 'x� ���02H��|�f��T�:\O;�Z��P�X�0��tmx���#w��x�Ls\\I�F�]��F�h�Q�;Z~'VM[�7��[��j�.@����ѧ�%}���<P����/)Z� 4�&���q�������Ε3�.D���7���-ё#f��Kl<�T��w@vb�?�jS�Z�.����a���8X�r�����l���I>�鼼��.���a�3"���'yY>�KX�풷&sx�ÏN�ג_vr d]���V�)��^���s}y[�f��!L�N����M8zo�t���,�K��~#���`p|6�{yS�Y4%�����"�x�#RY ��vf��!>""����$J#�8{�vĈ��S���/Э7�E���E�B_6粀�wj]1s�6 ̠#��z���j۳UI�@j�����G��#�)l�A�(�?sNU]�b�}�2;{���e�5���OM;۴�Z@y�_)�ݖ3�G+�{�&�[�m�sV�a����}���]�[?k��mS��c��p�Ve�G]K+�qa.�V�v��~�?�-4�~oGP�$\�3�:p�2���9�o���]�jѱ��S��A��İ?��<�U�al��|!}��z��%۲�����p`�T#��)�m����3�PT�?��1i�*7B:����C��.p���A�Z�OfJ٤�`�uh�f��}��B%%�1V�p��M�42cM����͡=���9O_BDu��Qq4�������<d�s3���A��td�����<��'M$����gLDٜ��&�k��IJ>$fh�z�C��3�H����P�}�!RB�['�-1vZ#B����L�%)^ᴕ-���9E�A���3�� �\P��{u���+1�Q�b�Ȼ_D����uf��@I��%�b��d�{\���t� ���+�ӟ�E��]�k���]x��Z���(v�h�U�v���y����#b�:\�[O����+ߩF���ץW�u����߳�8���v@��~ދ/9#��� ތ�Ղ։�c��lY2���m��4�m��7�砦O h�T�@u�l��7Ҕ�8I^|uU�pf��:ں���{{�i&�"��@��O�6��}%�S�F�����%f��1����v��/�mE|�O�rE��wƐ�X������b�`f]�Y�$l1U�� ���� JT�f|�~�$N���\_Ȃyh�i��g��B- K+Hx8x�)��~p�����<UD�qw��*Q�Ȫ��D=�g�a5��(�Ah!u�Mo+|XpC1�~K6GQ�_�Q��+�/U/�`�.�8�6�5I�6Y�c��o7 {H1�2�&�� n~.1���ln� ��C:^!�#�Tx2͖�d�@2^�n��7�E'�Z�!�����T�ܯ ��Js�,G�`M<��F��4O��"Q@� �7���L�b ,�"~.�������n��v�h��(���n���^~��"s�w?Jץ����܉s}^>Ӥ(���7)d��l��7(rY�zij"��?�a�c��G))��OM���N��ٰ��]��|�u��eH�L�(] �xI����nk�k�����7������Tr��)�|��1JhK��x�:��HV.��F�§04�Ĺ�Dv���/��}k8��7�����.�lxU�.�Zݎ� �"�(�p4N���73/"O��,�@9@3{�8d��u)PY�T�9�eaO����R`9��;@������~�(dZ��_4#�3AE��� M��FWeU�3��&V'Lr�GW�!�7�Q�:Mt��Θ#��㽛���`:h�Zt�kt�ös��A�w�MR�f������I�~a%�[����tl���嶹�i���~:zܶ�Ơ`��+� m�e�s�9�t�������Mhش�qpF�Q����-��in��@8{b?��ZW�z�cm�?�K��&�G�C%�ӎzf{B���y�!�촐^�R��IU��<�)��*A6JEߓ�u�臍���R���z#O��Jh�n��J�`�"���v�0d�Œ�ra�X=� �m5j�m�e��i��rW��%n4fY�����ی/�$W��G�]G���(���ʨ��ߪ㗣*B�[x���v1 �����%�mH?)/n���3œZs�(�]鶣4���آ�x���2__����;�T({��/ZQ'/�3&5ad��5�s�Lg�s@J9Px{� $�I��z�$���*f�O���v��6����cX�m�g(G#�@(=��q!�C>BH��=]����V�~�)���o$�Hx���/^N_"&Y��?�?V�-4�|(��j�o��Z=���!��(�"㑎�k��H�x���̈������u�s/C�l��C��y�>�Afť���� CTcQM���m�9��K=�-ճ��f]q����������8�C���F�&�KI�nK���Y�\ �U���y�` 8j^lӀ�t�gH>�o�c��|��FG��We+�g�B��DZ�?�� WS�?�☳̥��=k��G�J�Θ���>��'m�$5�o����J�Š����6��n��2C��_�ћ�"[hd*}]e�+�qz]b#~ ���7Rq<�~0�+��By�^��6S����xޫJ��I��F�r�HSmԠ�73^�V�g�����EQg$�z��V���kA�+ǹ<�9����yHc�6UK�yq?_:0�y�umfL)#�@��^�}�^^�۸�&�q�ߞ��>Ę�{������NW�?P�����ݦ)%�Ƴxȱ] T4[���>�{�������3��UzLWț�wҢ�5�i��m,��!� ̬["��� �8>q�i��0�fN���v�lG��gCھ�2��]pI�?���&o�H�GR�Qv�CL��7a������E:���U��A���LA� ��I�M�I��d����������@�#�}��nJ���mȱ� �&���-e��rt�N��m"#x�"���dhM�Z X�rۤ�[6�+cޗ�~��n�����4����H��ѩ8T������[�n��A�iu�iW���*�b{��,��|���,�k�:(b�l���7i1�'��IЈpK�w��I��a�`����f8��R�`o�3C�a._�g�S�k�xr�jo �*�~@�T���)�d(�]�nB4���Z��C�j��HkǼV�h�Z�*�f�m%��,�T{2��r.�й�254�!��bi|�*m��lݿ���be�*�D�MY�ui2Z+/<�)R�א!t���@����>'�Ɍ�v���i�t�3cA����)��A�d�{[Q�U�R��t��g�Yq ĥ?ۆ��b� �wi��fE�ꨗ=*{~ �_�|��L| B��.��\��F�s�S�[�����Ln��f���`�m/���Y��Ea�]�}�5r����6�]���>M����(�r/�(�����S�:Ɛ���o�O��7�� ^)�U���N&�m�WN�[aڇy�V�pa)�a�عu�5E5�����`z2�jQ@!��t���|�U(��m�.}��ф����b��4�M�ʞ�T��e�7!�'�qW�w��39й�t���'jV��Hi����M�.�|ҳS7[�E��G������@-<$f-��1!fP�ݱ��+�:H�Ç�o@.OCYl�>��G��SH< ћÄ@:�����a%2BNZ�����j�eI~C·4�:�n�����f�"cfE�f�p��;/�*_�+��Y��/JY�v�W`�Q�SЃ��ped��K5�*U���c��Sv�i$��y�㢊�;�:<@�pW=w��[W!�3U���x�xҍi��T�R�'�w���?�Y�,���.���}�]�Pި��5d���'|�����&�&3�!NT �w�߿Hʵ����âV߶2� ���9K�/#>��釵�^�gF1�{�nD����8n87���l�L�=�1$e5�G�J6�,��pb�/�îV����X�.�{d!��mXP.i9y�IY�Rn<;��8�F����q��[ȂX�,N��d��,�⻝�S��Y�3�����U���$ݺ�*�����?%b�G_<P{�IhsO=�w|ӣ�t��mQ�6�w��Q{�fD���>�zĠY�Nj��7�.�-��=}9��m���7U��3)H�|c�_u����F� H�$�ps'�x𒂐?Iy�FW5�D����!e��,��`^IRq��@qP=L7=g����G� G&��aLK���-�0��^=K�*HG��^��E��7�H�Ȓsͽ$ͨ��ƨ���6����N5f;o)T��}��;�=�� ��S�$: �5^�7��Cz�K*fy"0JF� ��;�k��]���4��W�u�^�˃��X�o������iE��դ�RK��-�ǁ�})��C�\A����� e�O{��YqCޜ�AQ�C����;�v(��j���~r)Q[��d1��)mt&��P�N����/�0��h yy$�� OQ]�CV������3 ~dT�A@HF$5�|F� )T?��Tr���$Գ�s��Ѭ2"qWN�"jz��n�'X�{" C]�1q�Fg�m,��;���냬�+�ORv/l�$��ҋw��I��r�}W{5�4)�\y<�H����\���h� b��g�i�?���j�(xB��O9zP��n%��>�;��)��o�&u�u�Vx� �a�|�n���HPj4D%Y��>i��iB����MX����P��n�yn�d���/*��&z�gA!��fz%<%�]24̽`}DoQĪ��=DTm�^����"5<[y~'�?�:�q3$��S�I��o�F�{'��n~�L�q!�P���n^%��?�x�n{�f�ȃ�i���b"�#�k/��j7K�D���#��j{Ν���;��u��S�M-�8~y�����or�]CU�D�����\�#}�ҽu�V�@����.��]]���WHV��a9�5t :X��1���������`��^��@ ����-�mJc �l��n���tJ����d���ح?2�}�BP���9�q�5�� 5�"g�(}qM�]z��NןԔr a�������/�"����v��:9KG��jnp�"�qRP=��6K���#�E�{<g@���Ӝ����CŮ��K�fzl;8��";��Ͻ��-���� �Bk�������9B�5���Ӊ+�R��p���+�Ec]q��>\A�,���v��0��R�br� ��U��� &le6z=K)R�^�,C�1����K߷���%-W���_P�R�@��s�rV� R~���� ��!Ir�$��B��_����q�ٌ%5Ҫ�G H��#U3�7 :ޟ��g�� V�S��&��k*g`nĉ�H#��*�&��8KCdW��9| 2ۖk������#p\���gć��ī�)�t�������2��yp�kdW{�"��>�?y>~&_US��"��N�Ո}��?��'�����Q��շ��x=qr�A0�ژ� }���<2<T�c�E)�i�qO}N� �}6!��~td�%*.-��h�qL邾�c�{4�yEw;�"I鞲�.j�i��^����2>�A\ �2��^ɛ�F�2�w@�-��:a3��9,?���B���Sh�+��QB�C!4zQ��\�";8��>D��k�jk �����ALfR��\����� �u���j�lC��Xx�D� :���V�u偑�}����I��7r�I�����V��Tw�fXCc0�nJ�qN!�|�+a�+:ԋ)~�����ΔyRkА����]�6D�q=89�0m=�$�L��`��"iD�97W+���#������#�Vs�p�|�,F[ ��n�����[�S�Bչ,�� 9h���tfKK�fx"KxG����F���i�w:4-E+ħ�O�t}�#�C-�Yl��~ Ep�E��C�#,h7@ ��;��0�)�K����č���˺@�5�n�ސ��ފ��a��".A�IdE�P{�I`eE���kzŚ_�w�=���������U0�I��j�I=N/�T�xc��d����^!�7�w�vv�He�= Z똇�D"t�E�x�� ��܅�&�6��m���<=�[�}�ڔ�t����ɲo/��F��F�7p\����4���#�qzG��-ɞ�ZRɖ �����s{��&�Š`� ld���0*�����g���,��A��|_c'��_ٰ��-��n5����a�1άm�f���@$�'��Uw|K�(����7! �e��o1'�F��U��L&3n�2�>�'8( m�y�� �M<�r�R$d)`d]�B��\2��0i�iePz���N�.ft�I���$�o��:M[���(;˸���Fh��n83���;���[�,q�p*T��y��N��_���R�q������d��/ ��q:sز�E�s�-<�1�0�$|�0�e�c7�C��Te���_2��p� c���j~E�%P�7sճ�J��rd�a.����4�GE�d�h�\�j��ͳDsH��^�EЕ~!w���|�w��ĸ�$w�ݾ�@�4e��L���S��Y���ի`��� ;���L�v��.�2���'�8�0��z���yhw�w8����!e_P��V�!�Ӝ� <''F���g���� b��Y\9�88Z�'z�1^/�Z�D�&�/^�\;̃ġ�q^�O���8i� &}̂���%'^>�'�,����:�3�$��Q������}��Ff+�/Ȓ���h-=Wu�\�/QQi!3Io2��gx�.~6b0�d��Ӊ}֒;���Un�ЈnR��[��0�P�8}*R�_j��%�L��J?VPHZ��Pʵ�]k2��ɥo���P Y�Am<� ��~�+L*&)�m������ ��V��謷RL;���؟5��T�|�����XSheӞl ����G�� ��X��-���J��CK]W�O1�q�hB���1�!���@�ȗ�4��݅-ߒ��q*��J�a��/��A����'IS�j���(Y8� �IR���Ӕ.QD��5�������ty��Qf@q�u����Fn����x�h| �Erq�j@o����v��D����Z��T#[p�<hq�>U��s {tX�ۿ���#Sy�\��Z�š�� �� �B𤤈 u! _��2g��L���������3H�<�>�rF��>�q��kT�4_:��������9���l dm�6M��W�Lޗ���óD�v�C]ޚ�Xb���؉����8m1ÿ�(�EG��+��)<�>BsU7�����TC��n�>Yq��)�ʤ�_��+ ���>�������Z*�o���>s6��B�'��,o�+���-�B�\5��&��k���� �ȕ9�^���a&�z"{Em��`t*�I6A_��N��%o��?LnU$�*����{I��B�}iP�Ѩ�����ǚ�c�p"`�W9܅-�T�ڇ����5���������Ū���߂���!Bf��7w~NkE*I �JZ�&s�'����)%�=�S`؏�`^zY�����pF�b/��18Ȉ��ʂdUڞ2e&�﵅(+=0�I�4X�i�:�&_�^�jp�R���y��'��g��P�A<��5k"���љ���sٖ��!�Hlݘَ�9R�i��-ڒ�|����Z��R�+�2�O�x*��{9��V�G�x��ӞZ�j��]�L�vR�Xia�4��e~�l}P�5�֒>����11jV�h�<� �n�u�~%��LX=Ľ��g=QgC��aw���|8R��?)@#��,�{�oL(l��+�B3����"Ө���,�,/����1���go3�=�ș,��� �GwEoqJS�)q��d�Ln #,ĒG(O�T�����Y>$cg�Hs�t�}��2e��u��'�N�i��%m� �&�Ѵ�&�KtXN����Y���IXgP19�Ð)��R̂4�'�U�\�:{Ԕ� ۖtL�g�X��a���i��TwN��Gc��gXÞ2�f��MQ]��8�,G�l�]��^���H|!�>��7�@`*�����=�>�)G�x���n� p���j�W������6&�HvAg6X�z�h�����I�0�i++x":�����o ��6H'h�@����n�ś�����'�����Z�����O�SIb�i����� � ����☢eGm����2����sw%��U�0���.-�C�x��r�=��d�B��� V��G�4nͪ��o&�e�r� |1>�{h3�ryz� 85[ =1��P2�Ów�Zs0]B Ј����I"�����v�+�_�2��s�$�ԲBzHe?�0�(�R}��^�b>t�Bfc�/���U�ه�Z8J�l�*$$^If���9܂ՠV���V"|ăֱ�ˇLf֝���Y� ����ȁ6�T�x�XOm;�Jjk��Ƴ�i�g�c[��Ϳ�� ���y4�t�3x�t�c`���|a�%g���U������6�ቿ*(���ږ��f���'�-��zI�Ix��;`��{�u3-Qb��t{H�0�y�E�N�Z�7h����R�R�i���s�4g ����d*Ø�Ɗ�N^�o�^�=[?�I���>� �OM!Ig�/�,Ο1��0 ����U�a{a{Kbs�)�����6KZ|$-_�g��dA[箩���;�jh�j �R8>A(z ��(0E�&�j3��9Zc{�!]V�g�Bxn��D�^�_ ��F�o�Y!2=��!�ƌ��G�*/�fwC(��54���&��:�x�W������)���,m�إD��B����'/n�H�+$�&P8��%h� uQR��P!w� (d�Xx:M�C[�͊η�D��E���g�|y,�W�R*�F�P�썵H�L"��]uʷ[�t��HЭ��"�yO~5+���\&t?�X^�_W�Ͼ����x�k�b��pEy��F�7�bx��O�Dj� �4� ]�P���[�L|��@=�N�2���"fH~��[����ˇb���;+�1�rp��mJG�#럭��\��gi���'�Շi�%z�?u2�Ed�Ia���U|6q� ����<!J4�ځm;"6q%�v=DU"�j�;���*�:�K����l��s����de���,�>\H����C�-��j^,�0�ː�[7d�N��|ɹmJ<�J��OV�ԨۼX�})�Z�Wr�#6i'���-����� �v���;���#�*�w�g�����Nf�3 �� �R�RZ�ƕv�cb'~ S_K3�k�+�aY������ ���3�|�+���VЀӖO%Dv��<�n�w���G�]�w8h����7\[��(���iS�4�C��ay���.d$����؟zi&{+:*�=ǭ���Љ܈cl� ���"�<�Tt%*g�4� !�����`-�,��&����|�'��N�>������\E�L6;����@���UbȐ~M�յ��x� �x�^y�[�.�C�\��~4h���p��v�NY%!ñ��JާY#��c|<;�x��fVð�{�y�� X���7x��uc��Xb�P���[���F-D��Ĕ����Y�K۩7�KM�Gg(t-u��L���ujV����Z<Μ����+Z�%ʂ �����n6���ڑ��G��I^*(���s�}8HQ� ��F*����n6�U�v����E�`��퓮wqp� �H�뒾!9{_��Β��RQ�8��=}�!�&CK��g;������+�Cڴd��?�х�a���t�I��<y�Z�wBG�JR�������P�FH�u�29�.��N�`y�ӳ�Rb��"���,�B�����ץ�ל��룸iʭB�\ـ���ҹ3]_�WJ�H�9A4�_�"k%4�a�3�Ad ��e�O{r���ΞF�PN�K�>�k���8��ܸ?�����`Ә��|���o��hk?��3�2��g; ]������6��cl��f0�u�\���Uʁ�<]s!�ޜ���ܽ�փ�!D���ZvE���A/�f�g�b�x���1�]�E�.5n��GQ�9܀0iԔ��X�d�K'��F� �PA��W� ��G�7�۽��Hy6�'x�'���-��G6$�Y�G���mP*t�o��V��+|lF��F�#Hb֚o�Kj̘S��M� 4���k+S��g�v�rh�˟(�~�<%؉�|ps�B�d+7b��YO04m,.[E��~��0ZWC��U����}�hE��I�;aR��!���7��f�l?�5/Su66�F�`I��-U;0���=��fv����y<�P�{��~2��~�Ւ��(=yZ/s:��˹����.���4*ͻ��os�ؽ����P|Q5�l (=��ꛄXtϢ���ŏ�$4w�_���8�'ϣ��4܂t!�2��|�4��c��pZ_t0N�%�ùX4WM�E!O�3�S�KFr}�� �V1��<����o����R����Yg?Z6���҇ԏm�e.�k��#;Vk�ۥ�Z^N�|�O�4��JͥV 8U3ށ��6)A,�#d_X�D��'a��ț��������A=_ٰ��^��_�AQ<疀��\��O�*�Z�u=���F����8Y����9��Au�S�g7�R��&x���_K%����V�x�i4P��!y���:�L�����# ��7M��gp-�HS��6H.����\s0����.1�}���5��'h�E~�F"q��{�CS����;�8�}�\zB�K��ݸ@O�ߜ�3̫I���G͆�Ӗ�a�o�a�^^|�<b����S�����rR6�CR��V�Y��ΰb�+���\{�HY��J{�M��;�N�L:4!�?U��ю����IGbȴ�J�(u���rc�F����9�іÍ�x��b��&��*��]YLd��I�̂L��u��M�&*�e�B���'���*���g��������=|�O>���Yd䙠v.����ƹ�XJ9&05NI�&�ecO���X�}'oZfxz��#�c�(ژ7MPVA/�$ls�Rc}\!O{�,%6X,mԴ�m������S�����bL��-����a9��u���J�ͣ4���'R��)�y�f A��0X�=C%%���Ɋ0ū���?T�bI�/���B���P ��%�\8�a �,YՑ�IC-o�k�oa��,��W��xr2���6�Z���D]��͢�u�e^�Hc$k�$�͕�� ��#9�=E.���0vۮ�Ae�;M�,&Y���h�~v���}lfI�-([�|,g�%*4>�q��x5��&BI�!_��#$L����M�w�͐pfϳQK1�vJy���^�D1�z|���H `���zy��DdzZAp���]��9�:��Ӷ-�g�|��{\�\ ��@�80� �`���<r���신���pw�j�����?�tX��6ɰCYf��g����vr��KU�އP������]<���S����vyn��������c���*��FL���Z�&��c;���b���Ds����)�� �0�����-�~kM��ҩ�ۍ�Je�;�Ne<�Y�|���z~��O��`\���P���e\���J��u�KF�x/%�U.ܻHJ�%½���lZ�%`}�]���%҈�v*p��<)����H�v�{gN;� / "�x�%IW ��b^� ����o�������=�')Ip��q� ����w\��)���Q�[i����pp�>#b��1��/�P��ުݢ su�:K!��6h��$��PN��3�<����AVLm~�P��L�I��Bw|��B�&`�#��&8�&J����?EH��=D�N����2`��?GQGd�"�,��N,��>p9�%�����g3�dޒ��{����j�J9�~ܴ�b�d�m�����y _���ؽ���(4��8�Ay�ia��WJ���*��)+ήr(�rY�.Ŀb�OY��[*��l �1E#��P���kN��)���lb��K@�|���S�S�$y<&;��4�F4��6�Z�U����ےD����>q��P��dNx���Y�F��M�D�zKٯ;y�lR�2��;���#�o�Ě�"���j}9ܥ�U��of���P�Y�U�l�CB��,�9�a�e��ʵ�ZՈ3�ɚЍIs�3R}�����d�4{W�X�߉�}�68�܂�{`� �H�B��,��4e0@-�IPy�v��!et�7�2=w4��q2R����E��VXJ�{�'_�{9�NǨ�z�&ޘ*a5��.�c�G��l�1l�v�2g:Av��*O��-�a-�y��5?��:nEU���&���� �H7&�|�\�1o�2�9�e���f�����A�4��ț��?}$��t�6F���vf��љ]_:J�n�r[rQ�䫒!h�sP5ʲ��^x:�' ��I���� M���fv#Sy�:�}���|���TDA*�F�A�r8��N3��^�q����~�n'�D���]�NۄR� n?�ޝį2u�}���c?� �}���M:c��0Eb�%��̝Y̍�����H ���-�ӯڬ��>Z6���u:R�_����z}���_�0)!��D��� ��ݺHw� #��Tb���\�@��z�jm�ؽ �"�|�� ��j�9��ε�ݸ��;�w~K��ޅ���d����h�v�̫^�4�$d���bQ�����ϏX �Zj�18�}���[�������o#�L�<��xT��� '�INu��-W��zm�ݺ�D�Z^��f���c�iO�o��R�|�0M�� .��� t���r�K���aݛް��p�ݙ�>LR���8�xmjX���Wi"�Ńc�h�<@yjWr��՚aA��<�n vu>gp �]2�����XKcQK�S%�k��G�<m���ud֟i���gt�!Q�ְ7@�PK����]_K�Y�����P�tS61�ba� \��Y�bć�*��� `$��SB�v*�=ڻ�h���X�eĠYMC��6\_X��[�s�:�u��?_�(0x��:agԚ2��CѰl�ܶ�������Ob{��-�����Z��R�p�/Q��ӘU ���s�Q�3�,}�U�6=���T���m���lĂX�6<��vŖ�u�q��3��B�z�>�����[Q�8�6F���Ј[V���a`=�'�4�$C�6�0ܿ�CI�g�� ]d�>?2�3��E�U�n�Y�D�� ��Eb��Ol��]��Rdbx6�#Տ���9�S��Őfh~�Tz�U75K�� ��Z���4���]/Xj�<u��RA�ZJmr�}*\1|J��Ψr�GKѰ��J���m���k$��*�?Rb�]z���Ap��X�kJ�nDc����@Y*bD��>�ſ���}o��ecs�8t�ټ��:�m��v?� �a[���}�z\�|$�S���E1�_p�x+;VK�=w&虽�w�%v��ܻl��(�R����%��Rf%fL"�Lo �-?a��,%p�c�ڼв1 2i��:x�x�e�0"Y���>ZV?X�,Q>��o��2Zy��B�C�n{�W�<��LZ�{���v|�~uJ`�����+�+�����x�[�2��w%�\�K��%�껸 �KS��Dl����_WH�R���x˲T��K6�DlaПKn���~�VF�&�ze\��� ��c�!�r�P���Ff`P\��l�����{ !Dt�@��Q/�������=P��=�� Z�av;��W�%�r%+��������R���K.�TŎ� �\$�ȃ�φ���6$�.����<��jgM�X�rж_2oT��̰�]hN67�S�hc�u�(�f�)���p�Fm�h�0�����\����:���#�fʯ�ܪYH���bj϶ꍸ�oosߧ���L↷�e��<&��.�Pt���Y��O�榅�mXt��I��>2��ɲ��Y��+e�u�C�"�>F,�$��q�*����5Y{�[�%�4 q�Rk�4�@oK7ܨM�Oހ|��&d O��?yRF'茝��9ׄ�/��M�����q� -�{�Ͽ�W�A'.>���n��p�ξ)� X������.��]k P̿�z� i�GNzjX�W� W�*��>TC>X 7�B��Z�DB��T��HzyV.��3�zJ)�]�t�t������E��Z��e�8M(�oK0�����ߛ�eΕ�p�Vw��3m��t\���-�7����9W�|U���4P��,;��MQ~�;U����P��a�M�>�� l��+b���QA^5C��5�Y˽GN1N���%�����$!?��4�"�bJQp�(%u����&��q{��nxc�"�Mʅ .w��eʂZ^t�'�_���K��2�e�"ȯ�Y� ` ��03vRwkr�G��P1�W�ٴ8�Y, �1L��@�'�ł ���NOl����͋ٱ,n�A04����c��`�d��}"�� n�. 5c��mL0��pR'ց�wbO4p��>b�J�H��Kj��2٩�Y8��v��j��%K{5�����װ�Id���q��=�K�ރ>���R�α%oM$���^���T.�sd_���5~`P�C[�|�B�dohF�W�{��`�o�T�Cg��L�\��Bc�۪�bLg�P���I�iR(����r �o������0l�<��|vc��Ja�))�R�|���7K<|ymU�j-��VI��@��=�X~N�����X��� 4z�����bq�2��lY�mrS�]f#;�"(�\# ����*Zq��i��hi���*�� ��J_N��ɹٌ�?�of�� ����������|���~�ycՒ�e�͡(�d��JpR��|�P�=C����bx�<�vr.�6�,���"�����"��t� v�&k�-Kt��¦���ɖ��n�PLpEżt�T��U�r��E�t`��+��e�!��G�K�>hov�����G�u�)�.��"��3�|V�-�t�܁@�u#��&D�ں� "Lq�Y�ڽQ�nj`͕������Ulۘmŝt��͏�,�1���\e�2&h����WUX_�Z��>K�N�D�T��ǂ�w�<��Ѓg�;�!�p�.P���0�h�"�2vFJ�;{�6<{��.��\&f���A�wоGw|r���)KR4؟P����аA|��;�G�4�K5YG�M����8�V�\?�+z��:�� 7c�kK٤�"ૣǺ,���6t��L�)j�v��V��@��E� h�@dmV�~on�1�����"�^�D�¼��j��e Sb�dT�Y����O��"�X�r�|R$Ȯ�id!,K��A��=��ȹk�DŽ �?�i,8�S*�{RP�v6p��u6���K��a5'iFY>�٭V�`��;?���=��!��]ŴZ-r�����IK��"�2����5�\����F;��{3��]c�l�=3��(�N�x�yЙ1�H�O�`�)?��"SI�쵊�\2D��AyK�ʄGx�� =�D�]6��6�B1}�a���"&�xu��iw�k�_���I�!ӈ�OXn♠�B�):OW�S:¼'_�f[T�SJ���U���(n�X����L�� p�sh���]q%;�RPG0��ǀ���b�~1P����X�$T�Y� �� �ِR�B����2�FǷX?��la�XAb�3[w2��b��� &��?.�U�cuV��4mj�zھ���; �v��A�L=r�t)�h��@�<ϭ�S������y����kZ�M�.�yA��'�7C�}T>��^���D+%��J�ZJxs_�sI� �M�f�Ǎ.�,z����K��W����WM�]X�G�I�η��,��,���4Ҋ�Y�B�m�$�'��) ��V�)}'0�cS�gR%�������^w���sܛᩪ3�h]��-p����4�� Fk��Kp�Q̩�(ω��D�1���BjIQS�n�- `;��(��}����C�DyL=����=a}��,�j��R 4�!Y�E0����\o�4�`����3��e(�)�����1�e���#maG����_\�-��8�js�� J�ŋ� �e�0�e��E��7�Κ0�t?�`�l;�Y.!\�] ן����O�w}7�@�L�K�$�P3�sb%;��\(�Q�Y�BߩyefpCgLg��ʔ��xh�jZZ�BP��;�a1��|��������e��Z.���L�r����i�-Q�@߅��Ae^`Q�#�nSbl��i����$�\����@C�)��:��I�Y)��$ |S����|�;��&��*�Hm��A�7�L��к��`�9.�Mȹ,��ןi.9�jN��P�Ɉ��h=����]��Pi �'jʌ��t5.�m�A?��' �A}�d�%�y���`� T A#�Q��~`)e#B�y��8#)>����Z��I~|�6W �,~�L���U ��$�,q��x2�p����=�2� �8��WZ��~���\C���9%�J����<)"x �^�h���kN��K�����hp��C�w�fF 6a��ۣ�Y�:�'��9O�ZV�Sv�!�Ez�/�+3<X&��Y��81y�<���ސ�������|�e�/8;>14��H��c�ػ��Z/�~�0��j�, �QfZ�R ��.��4��1���e��;b�Y�O��u�"n�)�>�]A����G�&����U$D�L����v(>%�vZg�k.�/ȷTtC�4���u�X�F�w�_�unPə��5`�|������Q�K���ow�TY��*��q]&ߤ� /x>��6�*�\D�%m[�2J2����f�z�q�j��X���[� {�<�����`��M(��l�%+K����(K��ؑ2`�ιe!�~\h�ӎ���( t��s��!;�*n?\��eL�j)�T�!|�}%�L����ݯ7>Z~Ϥ\�$��L��_W��t�y~(�i���!�2�<�(*�:����ߌz�*v��t�R�[j,;&�S9�u��7�/>v�li({�2�8��/��Q�U�c�Z"B'eQ���l�Y2J��@%�,Y�}l�v���^}�E���M�����B \�~Ƶ��C�~��-_U횼�����FW�'���h���A����<�j�rh-nj #������Z���kc�j��۫����e��E�Q݁['Ul}��c(��~�yRf�%��9��5(0$�\���U�t���1�x� �9��:?n�c���=�T��r ����t�H�G����-:��E�'E�}�?C�u[�t���b�;����<�����ZM:n`����aݾ�b5��k(�&��g���eN��w��N� j&#bl�x�E_n��K�p<��L2��bH�����ǃU�e��!~�/+aq�XΧ%����;����c���Z�E?��;�U�s|�5F9z�x��/�]���b���' e�Vnm���Kʐ�uq���O[�d�J�ࣴ6��C��ѫp�!Z,��iBF�o���lȌ)��Y$�Rb�Ax��]�9_�L,�N7��������/~q_����ŎV�|F�I���zh��p���[��S!��vX���JK,b�W� g� �b��]�;pY��j�$:�����z�ME1ెaW=,�� �XG���� D�g;|�[1G�h�w�{]ե�kg#��iݵZ��q������!-ϱ'AL���$=B��Sk���lU\��n�)��8�Q�E�d͗ʱ9ѕ�~=���}�v�1�Ӓ$S��<�s(t@20�VVc�����ȟ���9�)��{���[��5E%���d�A]Q�g79����l�}���^X�E�����=���$��w��D�A�ψ9�CF����o���O �n�����8��:Զ�۩l�L�߯�Ie<Zpq��2� )�&,�ſ�����W}�o W�-Y�-��d�9�ʓQ��4%�'��"��W�0��G���%�<k5�T�=�k�6\��G ��`t챫�U��I�G�)����x&�?�Fd�<���7b��x|����ޝL� ����l4��0�d7m�,�}�6��$�a��4?67M��R��S������6�:4�~�s��}�}����T��r��:���;�;�N�d��k����'�5;,��9t��]�Jll{p�����\��48�����R�h˚)�O�O���wS�=�UV}� W��ؐ��1���5d��O�{�c�? ��R�n�� "e��2�Z*v�s���Y�C : '����*V:�� ��ӄ3˱�v:�a��˯$�#{�B�N�4/��D'�jWw�ּ �q��]��r ��`����.��m2u�I*��\M���c�8~�g���Z� P�����k�k ����`m��|j�����fJ��s ��gH��k�2�(!s7tJ4���NM��߅��Y<�S�&���p����({�2�/`F_e�H�f���V��zN���[e��@=H���W5�5"���{�)��)�<��/�9�6��˴:d�nI���(�G����d��Q&�����t�Eb�p�>�Uh���s�NY�~i�B;Ӥ�����W,(G��1bp}���@j�^�� N�f�它W���H�M�ZY�o��q�̠���l��$>��3�#���*���<�ߒq�JY^}5z���4f��H�=S�~���$cR��H�����5�G��U�$OzG.��ȇ�Pf�]�@i3G�#��/(W4K���=���;� ��D�{�M<EZ��m3��l��Af�& �0`v-j��qʯ~��� �¿w.}de(�܂N�����$뤼.�I���?�+<)>�W:�_��Y#��<ͼ��g��#����v6�L����TOo�Z�(�'z���y25nj�i6��{əC�#/���da$�4�á�Z�`���t��PrO;:!0����"�HI;��;�v,͊V#7Ή!Gb�:���.��>? ���U+ݭa_�50�V� 08ƸE-��0�(��YhbzY;��M�l��W��k��A.��?g���v�-IW���B;�z@3�]��k��u^���2q����YS$�Q��6m��=�=Qؗ��5C� z�c�/���v�r��K ��R� �+y|�r2,�I�|ձ��۰��8����x͞D�CJ�%@��͈��;���2�����W��h ��;.�ZSd��k�H��Y��A?)��g�71J����� ~�W"����Qux�E��v���TV�ļ8�xmЏC��hs/]�AX�c)F����5#>SĦs�B�2�.�"�ZK8!���nx%-4H*PȊx*��&� q즺 E�Ы���T�ۊ�{++V���?-���ΒN.P��t䶹�w�_�n��0�֪�g�4I�zqy*�iQ.`o� ��0JV;��4.�ϔ�d��N��1��c��z�$4�f.B�m�UQP秠� rWɲ�E��^�x��u5� �В����_7-?�|%At�/G��'��9�OrPU�S�I���r7�S��\�i�^�;̛�d��)>�m��{��Y��똭�F��BYT�r�G��1� �B�x��#�Ea��jb���r���8I�bf�%��ˋz'��wP�F� �Ԯ�Yw� % #��t�8�p�E�i���C��oc�b�@�,Ik1T����KC{8&�cɮL�����B��L|՝:X|s������F�9 9@�ۆhPf&��z��� �U�ۑ|tݿ���:QSZ0�m�L�&ط�UlD�6��i!�H���J^�'-@��|�Qd�9T�(����ؐ��j��"zz��[S]�C�:@��;KeQO_%��7��vu������]4���R�a�T}�B�nd��gg�����GSїnѶ�`%V����s��/64'���4�B��z��E3�������u��C��F�o}�J�B����ZP���l0�FI ��nk�<��qx62��{!��ũ�lE&��}�3NhF��hEkքo�q�<��#%v��l�f\F"�2ej?]:�������?v�1.�܋�B���u?=���.{�b�Ԓj�c%ߔ[@�!�{�H\�9T�k�3��%-�Oat��}sib��x�,$�s$kF�V[&*�*�(�?���x7��_Yͤ�g�,ɤ֊�tg���yL*z)��Lj�2�2� M���.[�+��b� jr��ޫe�88$^��b����ʡ����לqrWS ��?�4�{�\��h�'? ݝY��R�������} `��ͤ���N��B��$���;ƾ�N;�]��I���b��z8L��;�!c��?0Sí��H���V<R��{�g@o���NA�-�G$� ��M>�,PY�>7/�\5���R��I[b�%�5��:a��S(E#+���;9�{�V*z��:ZJ[�>V��,�g��*5�.c�!rij�;\�ͳ����LN�)!�b��~ }r���|5\:��}�䱆���Ԧ��W�0���,7c�R��_97"8.N�S�f�;��N֨��E%�X�Bt�� �}�K==����l�{�Sn�?��6�w��p�I��=w���ҍ�o������a��l��`�m/�w�$�B-���a�p�6�'��6j�7��_uu�q����B�[E���C<<J=���(;�6_F�pI� �����&�^���G������m�?BE�Y+2�j^��v��'�7�4ߊ��7���6��E��y�g�b��N�8���Z��$���\f6�T8M�ջlg�ҟ�π��Fe]�)�{�2���R����L=M�j�Ѯ1�O�_��j�|����m�"xDi�R�!�� �{�x:bEJq,��$�0���?����d %#���oQt�a=l��Ũ�[�3�w{>�4od덖l!C!����-��aM�t�Y)��9���/n�/�0�&�,r+��V�@y=�t �5����gl\9��d�����e�{�ro�����uH���@ V��U�.�y��S@F:Kkn/x�G;���B��|D��&�2�b��,�o���3Ƹ�ג�����%8�/��QH�V�ɪ8,��� (��mt��N�=<.1Ʃ��·�k ���C��_U�! ��~��C��\K�-UN�E��PM���C��z�z0ޟi�M�fT*���0��ui:�g��\�w�țJʷ'�H<�U|$I{�'�����t����9:W�y�i��o&=+�,���᧓��d��S[���(�[���)���/��Վ9�<WQ!�x�!���챷�*8�t�KP�s�^��G&1�}�td�/�p+�h�Ƞ3p�@��K�b۽3�h���yU͵ ����/��x��txk������u�kk7��C�?�����r�(���i���ڂ~W�6�¦��pT� ���'p�YnC�pUΪ��āw�?��.���]��j BK����\�nӀX�^9�2���s��C��8��?e�^+�8,�~�\�y��z��Ç�v�w�K�"�zm��b�� ���<�F�Dݯ��ЁDBs$�+��3�S�ȇ?<������Pw���(��vl�۩���S,�B�A�K��>�����(&����� ���\Om�Rط�\���� ��2k����s"��f�@�h�܃O>�Ƣ�}�'��W ��Y^5�y������r0�^��z! e<O��u"*Ҋ�IVb���l`49e�~�M"Shr?k���%��V�.r��xq��""�9�����%���� �0�����ά���},(����9��4����ş/^9�XLlJ�@�Z(FMQ�y��أ$?���� �o@�gU���\�sůNF�:��3�O7� ��6 �9���|����m��)�����L��1!��%���r�U������(Tkd|�ʎ"jl(id}IG8�� �y�����6�*����6��I?�ʭ(����Q=J�!�-�~�*7 �rx1��S�ӇU���7�#uM\;�k4����U��A���^�4y,����-��[9Hm�kX� m�p�a�����v���t�s�D, �3���9.5/+�0�\� fO��{�-���&�8���$� �p�q�V�"��oo��n��սV@_�h ����Ŵ}��8r BR� v^PW�o� [>Ƕ���s�٥��[�Ch�Y4��f�C ȵ�'-ų���U�KT�g�Eb�p�ё�=�)`yY�K���#�zG�{#�!�-Zx��|�O ��P9���>�t!u�[ˉ�e�Q��p�ce��jg¨^��m-��Nd�=h�����C�����ΕX�p�/c��C�Ǖ�����d�{����S�}X��8N?�m}zuY1�p�P��n�9�ӛ�4SSp�5�XJ=��%�����߇ό��Q�^�2X3����|�j�y:�!��ډ8�����!�� �3_]���BX|�D�v$�Q5c�ֶ��X|���ߔ�^hz�Y3*g�,�F���zOe�:�����AL:d����56`��Myt�P���a�s� �E f��熩R��36mݨ�3�����Qw�,:����jm���V�@��]T��/��cPK�E�Q��5muB��6E �y#�N��o�≤2�����R�kJ���� K92,��ÿx����g�XT�<r���ųS�B��Ak@-���#c���zڭbfH ,f��*Ma?|�D���br7-��O�]��P��"���ճ�w}�T���Jm����7!.��p A�J$Z��zA��]6J50�*���gE�Fь�u��)xqKXg"�����N��joߧ ���J�r��q$rV=�IHA�2����!�*-#˖��4a>��A��%�c�<OP�����ي;+)��[� �����֘1Dx5��5j�d]��`:��Xf��+�λ8M����C�T�<�:�0���&����� �+����r�.���˩�?R�OJ2A}53I�*�@.j��́�)��^��>m!(n3r�[�HbK�^Xml�d�M�������[�y�y[����D�c��=>�E3Nk�B��:�o�����ɿOk�4��52�p�fV��G��6k*j4� ��p��و�S�P���F�Y ��9�A�6Ȼ�:cD��gJ�q��F�����zȺl f���[���ܗ�5�ho�p�H�f��pƉ���+����]q�i��®�o�yq��a�?�8P9t���B�:y׀D1�w;�%aDo0����Q�]�L,;�ƿ.� ��ʛEIbfc�Ќ*�� '�my���P B���k�u<�fA ��� Yԏ|8VQ#��c��b�rd�@L�ZuǞX0YW��1^��inA�:�{bvi���G�fŮ� z�f~��=�+y% A��i���°�.��nS ���d�����^��k���Hs��Ny���]*^T쌒�����ǘ����S����%���f��5��k�8#Z�e�ou�����*�Fn�@���m�� �SY�O��J�����5�uN6u��?��4�Bf�L���|�(�Җ$3T�+�N�-���o���s��.c�!���� 䨇�f��"�'����?��D�d��P������ Vn=Z2����+w�M����9���a���Sc�y2;h�C�e�\e��~�_�B���[�rh��qU�j��^�d�� 1��G�c|����k4�����!ҍ�MxD���� 3�C��;�aƧ�a�G�^����Ui/��=M~�ZIP�87������,�g�t`�D�B�?�E�x��ʅ�jc�`W�:�[a�i,���r��lo}��NJiS�A�_��bX||�������D���QTF5�6�P��Ĉ�B�.Yݐa�:o6�)I�>(ުXq��j�Q÷�+߽-��W)�7h��:���pw���v����`�A61��A^Hb��v�_��?�;�]�F�)��.1������r��$�e`1�/w[�s��\�A����Do��kԩk��2W��i�/�0�"�͖����z�8�eS�3O?燐� U/�0��=�� t����U�Ǩiiy�(�� � G�D�$]c!�c�����+��������������FIz[˶-�{ouWơ �0`����l@�D��3��aRy�=���k���Z��+���l5Ҕ�[a�]`�-!���}�̞H������q�A@�>TT����A�� ��fa|5��|�}��D�w�;�̷ Z���!��Gn�fp�WTv���9gdR�;���T��]]���Wmg�ۇ:MB��&pN?թzQ�Q�T�tT�y�`�e���aM�+n��y�Y�]7GoO�yWI��%��0�b�0��ar�>%)�×�������4�)Y.��m��q���kec�����-c����*1���&Q�{����0u�����(����tPuX��f+F}�yܒc�'��*g���)�JJ�f��|"��ziA��Etp��|�x�W��'{7�~�!�/���4�8A�o�ܢ?����E��(�Oݥ��b`�B6����Py��w���"�{���O93a�z�1G����0^����}�@rg��"�K��I?},��1,96 }��ټ�8�[�^E� ir��-/d[�QD��Ƞ�GŸv*�9G����k����hN@g{�'\��������8�r�FO�5��7�!��kHW^nss]�����G� ���Q1�F��m�Ú�Mej�ݻ����W�E�7��,xG+Q �2D,r�9l�䍰J� �h�6�V���S:W_�����}��[�^�Xx{;~����+*����%�#���E`�37�]�n����Y~ʶk�a����]M����qn�Y�<G]���;��#�Ў]�f,��z���D�V�+Hl�9����I�ߵ3+��H2��^���Y������~�~�pG�����~�w�}�İO�o��d�EVx���2��2��tN0q��w�ͪ-��1A�G�q?w-`��:@���&����x8ҸQSA�s�C��hQ�|ݐ������`��{,f�[����V%���=^����4�k [�#t�3�qf���_jS$y6�--#o�G(��s�c��%gcN�Ƃ;�n��؍��n�R�)�Zt�RZ����8G�F�����E�k��6<P [�R��Z�h�m�S��Ԋ1�=П�R��u�g���PoD�[��:~,����N��D��ѝ���~s���T���c�2yg/����P�Y k}��n�Q�����Hӝ�����N�Z��9E��;q�������l� �J�#A���������k��B�5Z�`���f�k�q��>R����1u�WBZ�m�y��;�o�M��uk�U��dk���|�����у^ѠqO��,�s��G 4���E� ��8�C�n��U���?Bk} QIK;L���e��c��U��p|[aW���Lb��� I�ێ�s�d ����<���е�Ț_l�$"y��;���W ^x���^����x}�H�g���Z3�[n�4R�^����lP�<�i;�5bC��P�d��h���x��q3H�=����`�'��0t��o��O����~@���4��T�lx:��(�J�9����O��D����:BX[�к��#�:Ml ��MަU��/��<S����I�n�s�Ȳ�����-pM��[S��@�U9w}�[�N�����$"�����J��}�Ey�F��j)$�X��!�jo�m3$����Kb��v�A ���1v�0v}ٴ�t<�Os��e#�<M��"ܲX��|�pT!��$�x�Ԥn�an�@f��R�dy^�*�p���I�����t��,���&����� !�\�` ��^]UW,�4ϑL����lh���0$�p�����l'!7mG#�����5xP��+َc�,$�7���W<�A�~�P/g��J���>2���J�c�.pP�R�v{���@�q��}�%�PK��.�8iy&�L$K��!"��̣�ao;$ Y����:G"��@�h���'<bTCa��S�����HC_�:��֢i��,��%�t�P��$@�J��r����D��v����T��s�E�˖ga�i_����Z���-��_=�؞#����3����^G�m�ـ�v�E@uQOt�߄������+t�=- F�* ,ͪ�>tJkr9�جp�M&8�H�ˬ�W��kx����H� 9P�0�rA� e�Sd6�0d�b_�p���L�t��HA~Z��=���ǯ]��1K8�u�2���"�8!� 54���& 6Jz�V��P���D��͏5��ɴ3L�cn�sM��_���!�y6�Ж)�p�]&���r�Kz�E�J7�y� dFH( nt���=��o�D<�Y����Ff�hu�s�������Tv����T�T�r� ��KQ�7�p�,����ލ˩���/s��j ��X���q\���j`�� ��#K��־ ��^�^�F|����%��ۻf����Ƞ�G���+��#��o�O�\?:�(��ȅ�;W��@S/�|�Ft���wu��o�aF���kǨ��W��*7m�K�{���c5\tO_�^���w�4�زVf�]0Š�}�CZ{"62��|��kJV�qm�F�jW#*a�qit:�g�.Zpe��~KP�I�S.ͫ�g�6�]��1#�#vpL/\kȉ�qq5e$L�����ۊ4����*��Z #S�R9G4*�;�G-�tYt�.u�{7����7�7Y����K�P�C��&m�>~� �H +�u�h�ںvL�����¯C���^�,B,�?\cc���>1D��I�G���ky���,�@oUGU�Լ�+f�R�:m�'-E����lT4�-����=N�G��/�|�� e~+��d%%juX�q���z-_g��V{v� F�>V����Y�[\���{�z �龓�A+E�F��,/Њ_���Tk�zЂ,�#�ߜQ�w��lO��fPk��0q�7����x�(r9� >>81��?'Tb2\� z�JV^�`Н��T,w|5S�t̕�Y>��}P[0��W��eK�|�u~.g*:�]�C�YF��c�5�5�Dw�k�?d�4��~u�[\� ���nP�TIF��l���,�bSLDsQt3I��?Y�{؇J�)��^��,Q�μ���k�d*�#���p�Pb��!���Y�G�g�0)R���(��]Y���[=��#�7�9 �wL��H�'u^*�&u2�i6�M�9�Vɶ�p�7�������>��L6�0 �2\L{��_%%��be~Ӹ�����{��%�uN st���\yh��g�anG1�Y��h:���G%V�P�H�[�gjy�`���x�$�R��^ה`�1K���`|$��_�� <Ӹ���b:D"%8�� g�o9$�����?kSvf>m���(�KO�Q�-O���>�<;r�F���$��5W|I�mh�U����tv<L\/}�|K� ��lw���S�#m_A���rh3*���0k:dٲgm �Ы�e)�<:*�MA�=EK�k4̺�@f̗%��݊��8*�$U~ku�3y^��F�['�{ �2%���Q��Z�\�~�OW�T*Ć~�"��%��q^kH�)Rfw3�z����A�'s�sСP=Rb`_;�����a݅%:�V��L�����m�0���w�&9��� 56i�;=W?�^h�mZ��!Z�k��^! 0�fu�$\�iƹ(dգ0m�>)�Ͱ,�Ot��]?��w�E�a����m)Fq{~��6���.��EɅ;<wAK�+�L2�~�Pޯ�/�#y �}js��|F o��H��&�oG�:\��Į�� ��a��ۋDЌ��ѷ�|���??hppT�{t�̾�,L��L��B ����d��$Q�o��#�h�+~����Ik��x�p"6@�jn]��o1��I�f6�P��!�u���дVJ��B#1����s�i�E�z��K���ݐ5��%�P��;U���[V=D�9+����:��{=ҋz�D��T($Y\ּ$(�� ǀ�b�nT��ם��Bji��>�N� ��)iC]�@�l�U4[z%�\���>%�0?$�Z�@h �a�0�?�b�M1a�X�حw��tT$X6��{Y<�z�U�jTh0\�VEG����IX�X��ㄝ��ҩ�/�D�6ε UV>�~f� A��L��s�PԜTM��T�����ڼ9�1O#�Zߗ��b�%f��|��[�݁ef��.�6�y�P`�f[Iw�-��m�E:gUx�a�끂�����)���%5��j���RBq�q^���S�-nT�>�"� �=���-�7�uJF�=�.e4�1�;`ϼFG~��|� �J�t�Df��O��F����a0�K �ۥÛ�N7���G|/b#���.ڜ=!"U��[{)��ԂU T�0�B�5����d=�v�g~(e�x�O?�Z� ��Q�8�T��|�2���[�i��`u��(�DЪ/Y��L���m���R�&��J'�s��4�G�qw�FO�ז��h@h�K7��Jix�D/���<� k ����0M�Okǯ#�b����3��%�J�Rz�#��B��1ԗE��4N�a!�X{/�k��sVĜ>�j�m�\�iC^����g<c\*Kx���qjI�.3�c�*)�{�7~e��A��Ȍs�A�8Έ�'9�ɓ�]L�,��z�(�X{E*ebo���O{(�������uj�������N�bBH=Tܴ������u`I�4��,����ZuQ��w����ܸU��h��-�m/\ן�dK��~�x��_�c�^�%��K7 �B�������5�8H�;z8X�j'P�6rG�ft1���4�����kvw��F5<+_0z�^�=���P��D �Y"YZ~y7hL�&cAF�ڪ��@'���2Gu��P-��%�۴�.Nɚ�ݤL���U�Z����t�-�jgfhd�h� ���å��w��i����*��(Z���{d�t�S|ԣ��u��iH���hhC�U�f���H+[���+ίv�]fMAd5��E�!u;,d��~���U�� �\-2ǎeT�@9�ճ����{u�ҝ��f(P3���H,���$��L�����^��=u�\�O��@%�p��� f�8�`b��9��SR}�2q9��w� M�ǻ�7�)�����F$��\�@ 8Qa���^2Wa�&��z� D��3��n8`΄*튝���JN\��(�6 C\q )��@���}v`:�[� ���� � ]�s��JHT�GGW )C7���w�Ԅ�\�m|��Zv)S���2 C���n�M�_���=f$_/P5T��lq��tQjO�|�!Maܚ����%lmh�]4��Gغ�0�!�ۣv F���F�."�m�z 4[& ?��(VȦGlq�OH�c��3q��s�H��{�\Ɛ.ٟ�8E�t���ƻJ�kѽ�ࣾ�p�3{��]p����$�h۳��|����q3Jyŕ)y"��B��˝0��W����Ya� �E��\�/��f~-���3!����NZ�����* ��IP.$��X0i�u�Bn�W��5�@�Ad�h ����`���J2�������lE��l`J���� 0�l5�Dؓt�h��ĭfq���J!�u�N�� �#]��h�h���"PM����ץ����22`e�����"��3i��|�A^�!Lb�⟢)�^��3�2U�8���{E@�X��W�c��|�R� ����a ���h����1����9I��ͦɴT�i7��:EӞ� ���"uZ����J���عf=��"�38�JK$y�����8}� �~<�>ka|����_����\cGb��O���ݞ� $)��cȂ��7�pռ�� ⢗�Ί���K��I:�Tͱ��)a�[.w�W�0u��/�G9̷t�Uq;�Ґ�'�Me� ��3��I[��dY��S�n�h89�!Hॣ ~k��zS,���k�Ƃam�`� g`��l0-U^X�t<��ż���e��,���#N5)D��db �r�zawM�uV�$�%�u�?g�ɚ��;���w*B���J��ny�WEw���'��{!�B0��j(��$U���^�cن��Q���E`��H�W\���!y}���x���H�&�6�ѕ5M)p�m��Y��NK�;�H�û�eb_����?['䥨�Sd-�4x]cF��7�/`$��f�NMc<ۺ��7$�m��n���X˽/�8�p�!��܂�.i�X�0Z�O�q����^.-'2�������. $��!ڏ#�G�Ϩ����#3��?W�(��R�+���Ӌ��q���eǻ`�0�(���Θ��Cd�(|~?������]����7/��_�C:���k�N�XZ�q�I��`�� KP����-weE� <~i_x���R���+�ì*�JVT7W2M�i�m~0o��qI�\]X�����6i�X<�t���0��ݎ�r��i����s)d�t��)�5��KZB���>XY�����b��h�B�yы �|�1a��vL �'9��͖l$rC�ڷ~Ξڋ ��J�f@��Fc�/5bNF�p�k��#���Y �44���]�S�kS���}��ʾ��?��B�0�|�tfg���f�} ��J�4p_��s���0��o���1��",;���e��4(yf(���R9t7�����80��Ȁ�=�#������Tq2�`q�_���Xg(�8����tˬ�pEA�,R�s��w���W?T��+�����L���#���5�-� �>(E��bJ轲���R|� ��x<D?|��K�"a����{'�)l��=-�Ogh[N4�!�:�k{íue� <�T?&i��==̛��D����F�{�$����А�C����s*u��˻����A�����O���g8�6e�[�+<��M&�g�ż�꫶+��CK�̹����o�Ψ1: ��ԝF�n�"�Dv��J^6���w�L����Dl���o�)�+��d~�D�Xa��<阻�S'<�8���`.�Ҡ�����((�a�k{�Y~ki�����L�m�y:?�F�>�O�����tg����8���C`Z뮵{e�J��s�!� ��%s}�u$߱�w���]�T��ӜK;��p$�R��`.<ixw�*�̾�}=sI�yU̺c��lSd~5Y�q�O^�px�z�|u�iQƎ!C�*"O[$'�ۨzӍ�pE�/��QWt�X�%J3��)���vD蕸9q;S���V�kQ�NB�Ql������X;� T�>���Sr�fc1�m0�z�� ����e�CL����-��5��j�H��fm4G#�x�w����Ded�)A��-.[�*���'r#�͐�7�'�E�h��yK)x�����r�ԯ,#���"�Rٞ'O��/0�Ծ��<�� ������!�G�GY��!v�������2�����r=�+��e��&�@�9� YV�Ҏ��5���CD/�p�CޡoP! xw���q]LbK��K��`ݱ��.���V��a3?�ش&�<h@_^6+��v�uM ��KkF7�AMź �:ʵS��L���(I4�O`k̈́�`a����*�'�l��3*���FҊ��"��!����� ��;���L�^� G���Fw���I�����U���{si%�� �sc�0��d�I [΅HD����y��S��=�R��������I_�(p�z�*�A��0���2a.6�i��3v>A�F���8/�k']n���]|)0��6���;{E䞒��am��k�����}��Cڛ �Ԯ�����8DC��z��qt���U'�G@a���pu癪�gJ�c[�B����,(��1�]Bi,Ju d�g&eK������#��S�NR?}9�Ĩ�^r�P��o�I�c�M�&�������m�q�H`x9�` Q���@��� ����jD��1J���ne'����Dvpz" � T�j���S��9�W��S��P����y���-�el���Ǻ��>�b���� n&�:��N�}JPům�Q���0 f+H��ۑz���S�� ]ȆS�� ��i}g�'��$��C�J��+_�}~�d���� r��MZk���W�|B��g_��B�z)q�n,�tz��k�] �X��2Yf��Ls�w�&��tH�ʪo�K�Z�*�H_x0ɰ�õQ3�ՅpWZӼ�d�#�6��F��ғn��_����H�ݓ�����Li�<0��A���B8u�vPM�4�F=/Ȓ��b�-��f{�P��6X5}Ft�'�~� HU����ԡf����eQ�F�c�E�彿�H��-LFz~;��/81�HZ��Åot��ɞ��C����M�����߈b���@%��|_/5���w�?ڒF��=hu̙,f�9!%HrAODs�L��d�5i� �����w�O�o��v"�#(�n�M{;d[dJ��Kt�ڳ��3�4��_�<y���fW�ޤw��I��4�V���Ɉ��#��v<��̳��.`�� 3�|I�f*0橺BV[XPtv�"�Y)/���ޛ]_��\��!�ܑI5h4�:b �%6z¨i�}��&��s�M]Z3ɘ��)��#�sGI��ꔦ���ں�%���\YĦr�`�{'p>7gG�&�n�7 ��e+ٓ�b���lA>4R�oy�� �0�镹k{��Ք�+b��Ԙ�T��wC\�e��I�D4�{_$b��D5��N.���LR�� \S����l�\��]���8og嶝i�~[�c�`�o�:�"]ӾW��7�;Je3}z,��M #42����qҊ�{��vE66�H��� �F�N����`Qz����"c4brap����7�햣�x�5b}���a ,CD�xx��������F��IՑ�W��)b,���Ť�WI���Kjp��Ւ�4�ʝ�9�Q���#�:��ĵ��w�Lb��'f(��j#Q��^�y�I����:�q����?n��gg8�7=9��Z�Ur�U��К��h\Bz�72��T�@�U>�0��!�E����D�#���LElT6�)1]�8�LY�?M�^�s���|6H����0��k,�G�&s�� 9݊�n�<.����~�e�p�;��� .�`��i�W����� �,���k��I�9�����ר�A��A��9��:/��yq}��98�H�5���Tjto}P�Q���� 9���tj�pTaݣM1�_I �b#'�q �Tȟ�r��b :< P|;yµ�[;��K麥�WДgą&����mGl�z|��XVyZ���\a~7lrO4����7�t��"�����꾁:c��@>T�k�g����(�6�N�@ �ʍ���y��T��gAm�+���Ѝ��t8��nn�#[ ]��4 ���c�&�r;ã�DXej*���D�� O��ٞ�j�'���ܛ�y��R��xg���ǿZo��a"�N�#a"�l1_�=� Ŋ�j1)�6�\���9��585���=y�z慠��M��`9$�D�����.�$�j����S�єy�_p�Ĺr����hy5Q �HgKU��1'C&��|=��B�)��Ip�L�mX�k�J�I�!40̿8�l>�H�\dk<��R�;�4] }{|X�g���w�Iq��[�I�U���u$[1�W��*��eZ(a�t���d,1j�2�W�[1���<��M��Ñ��I�|���^���=KS����%�_솄��iy�W\ �t/�Xʖ=={�Y��=`�{���O��D�&Xmu����A*�_~�aw�(Yn.�� z�|�0k'T��|rs��p�߳���|+�ķ��x8����Z�k�*�B� �_��v�mҢ8�����,� ���K�OhB}u�+�� H�P�F�zFX��l���f�߸йE%� (�y����^�1[@�6�P���9�/o�P��+�� �;Ds�T�R�]sͦ��|m�T�-�����Xױ99G=n�q�L���9���͇���ߛpޓ#��[5����)���'�&o>����(�\�e$���O�xh��$�PF�:�n@}�,Ķ Om�5L��\�֧a�*���{������l4�F]�X��K�4��e��1yw�E���QJl����tc> %k��t����Ik�3����3�������ub]�)�YV+��ʰ�Z�$E(؏�Ѥ���\7��z%)���}��<c��H���P�� �o-��mqP]�<��-T���ɉrrl$BO�:n�yV�����B��U�e�m�RVc��-�X_hJ$)����}�!�trb^�6�O��,��ќ0ST8Ǻ,4��G!`���0��B��EJb�A��Ž]���t@M:���(D 1�4�-�u��W�3J�Ndɦ�γ��l���� � ���qe�L��� xw��|F=]��~��"H��s9�����U��%S ��q����)���B�"���n&L,��Ǐj�c���^ĚXʝ-U�t�����AS!��� ��?��=[�\�X����������@�9T��?��2KI�7�"?˻���r�WBE�����%��?��36>� �6B��a�a��L����1i����0�>����J�����U�B�� D�Y�/�5 Is�J1|,q> P��'(�@��kfO1�aH��"�,a2�8��l�~QpB��l%q�d�>��g��JN��9�I7A�"wL9 �Y�yP�CMĮ�x{�.��7Q��UZ�GMӔ�U��$����l5p�W���L ��X�v{+�8 �7�P�.�(��#����>��u���w�y{��*iM��p_H�?�J-�i���6���ճ�$�_BI�x��Uj�9�㎽?�(vʠ�*�aGz�i�. �d4�A�Ѭ�"˻�J���C:<�a�=��`�/5=a)2� ���3�l�ixs�?�H �������A�7^Vk&&��B�G-JZ)TvZ-��5�����}u{�l��̵U�#Ow���O�%a/�bm��i��c1�<u�``���B0!���t���!$6�[z%S�$��j��_S6aj$��R,W�5�t���cP���G��y��nH��=���h|B_��7,X#!!T��p�dX�W=U}U$u���2�bKN{�-̺�S��K�݅2��gn��ljy~ŀ�f��dΣBu� �u�a;�&��'��ᤄ8��U}p�τ����]��WE�|��l/�S_"�ІnϠR8 ���/&���=O|��k.�]��_�(כ���5���Gie�!�좤�vnE��)W�C_��/��p� ���:/�u>'���D�'�=-�Z$ �{�4q���z�ױ�H� �&����6����n�O{�]dOu%�\��� �E�Vh���U����ڬY��{��_a���]�!����[��隯���M���Р�`#K�:41q��@R�o�oS2�J�~qb ���R>�0�l�䰏Y<mN���ؚE�Kh��D��hӳ�&�y�W�dI�bl)�v{�7,��/e8�{������T��P�xy����|�]M��� -+۞ɋ�;'�i�k:A<�M���j����_��O Va+��|j#_d�����}�5r�7��ء��O����3������7/ѓ�hV� bM+Pg �r��a�W �]��kY��X2�AMMi��M�q ˊ�v�ǘ���s�p�*�i�ΟXby�WC�/�&�MU��q�Lͺ?�b�c�1�#�c��ҡ��(��O��|<�d�T�hr:d�$� ���e��d��u�6����I3n�b^��y���<_.,qg����Q��?�yE�-��٘���S,�G�#�ee)a��w�R ������LK�����ӦoAU���vI� [���fc�Dig�(2J~��i)-+�=8�U���gӂ���EJ���',w%~CPh��l|�st�`���>0��9�]�k��y^ѫȼ�m�������z|�o.��1�#���\�v��Z�H ª��p�_�k���O�1x�F��8����g�g�ݛ��{lɨ�p�v��1�|q�����@���[v�r�����c���`��Y��0�Y?K����3���$����=�]�q-�{N�o����Ui����Ν� �����]�e^�*$CoإH�첄Y-。����|�U��¶��ͩAk�]���@�b&�邷�c��������L�_��g �ɞ���w[����:;��k^�T�)"x=��Wz3�Ou�3Z*0��[,�& `��nyi���64P�\��y����ð:x���h�Z �=ކ�ĢYYr)r�&�� Øy����N���a~Y4�9}��k9�-U�� Z�C! ��}(L�����Ý�b2���������ۀr6�xs)��$�\ ���6��zE8]E�p�b�Y�/}��g>��G4E�|m���ZM�-�63�\��_�;��*Q�u-���4�����!\�f7�9u����3B?�A=����l��i������=���х�z� 掑�Ⅼ��'gl�D��q��� ������DYy�,�(6KR������Ȩi�C��2��u�&J��KL�4=2��� �]�a߄���<�������R�Q��F��[�oJ%G&U!%�߈��~��F���D��y0�C�pƇ(�Mo.K{�F�ص<���v�}��P�.��ܸUB��;E�E��qhԠY@C?85{3Cp�GЫ�_ ^G��g�MdC�7Y8 ��u��Ak+z<a��� F�X���8?5�L���#��z@C�g�g������0�wI�$H�����˻���_І�E��"�������#HX�63�6tKi�|Hq��XC�3�M�wWTf����2�����)B�3Ol!:mK�9U_��T8%+P^��s�@�r���}(C�n�x35�:�Ʋ4���Mf��A�7>����88�Y��R��UY�+�_|�7�.n֯ő �W���?epF�@��S%J+�y��ׇe�?�j�\�9�ݩ��ގd#��dN�W�J[��!.3�#�� ���tk�M��V�l.�5H/�/�7�2�7� x��fk�.[���q�/wC���<]����qV��e_4�ng�e�L���X�24)p| �p� ˩r ���'���L�R"D���}X���\�x�]� 4,\|�A5��A�:u��0к � �-E �vX�kv�56ߌ�L]����ӂ�2�;>&X�v��Ev�T�\���8s7���"D�X˂�jM���ZH�U%Is��h�}rX���������R����6�>!j�K�R��2�dd� =�&o�y>����U�^�]��X�X�o7<�?VV���� )�i@=����o���(g�A��{�d@�>�X�sL�{���T@B.��A?�/}�w�j�;ʍ�nWp�������q�Y4Wc�+��3 �W���3��Y�ft.�\0��D�fk��Qp��D7t�E��9q���o�"|/�%Eq�2���=w�u^oR���8�^�3��#f� N�V3 ��,}������mm�]&�y_��g���ټ�ekW�8/b�uN�:�0��`}���e�#H����B[�yn7�Q�&͑ࣤ�`p��}^�z��nw�����a7�����8*^��!�y^ڋ\ŵ̵/��dܫ�0�x���h��M)��)⑽XQj,#Tb�ڷ�͇�ֱ�H<=#_pju���ݙXN��&^��@���}L��ї U0U��#z��<��3��&?�R SB�<������TaU$b�zUf�4 �:�)�騵�Y��b��9�^�na~�ZC�?�=�`�J�Iih���K��ao�5��|[ſg�2B"F��k�Ϙ��i�0?�̀��X����u*�w�F�R�d�ݖR*��+?aҤX���LR6�_����p��E����!M*%�B&�]$Ќ�5�TK_��x�����c�<q�s8�DV�m�� L]7��xf�x��V�^G9�e�;AE/w2�����Y'�Lk 7H�6ҵg�Eu�c�_�ƟG]X�zL\%?��R����Q�3~*iX���A�.��Ҷd{� �b5�@���j��p��|�s%���X�a�A�9�� w�&�'���C�Ƚ���xoV3��_�K1��85�n���c�V�*d�E��Y�o{���j��/l��w�U�ͭ?&-�wIp�&���1h{���z&Ҿs�qe�����^d�5��|J4�d�X��}��>�_O�k����O?Xp�C�D�N.�=�d�"j~��Etsk#��b/R�2�$�K!�$i�L�QAC����C��XO�F�>��q����QX�WTUd�`�t\ۈ��4���ў�`ˋ�\Ue�y�3D[�*� j�Wn�I�$�x�W/��4J��g(f�6\�bL���T C�w�}��^�`�pq#Ǥ!�S� ĺ�0�&�/k<�<(�l�hF(����|��6�C�c����G{�f�(���.���HX��h�-Fp�4 ��M?�#%P�����g���(~#��[�ҾJgN����B'�.΅�Gj� &��� b$̷b�r�6� 7wu��0[�8�;0���n��AԻona�N��·gn��[�W�>���ϲ�rKG`�p+6v-�#���%�T�Q����0>���f#�^���VD����#��4�*�̻+��?�:=k8��o��^h�|��˲T��|��������{�Jf_��F0��&kK�D�l��c��m@(M�ۛ��EQ��Z�~����`�W�1z;��L�f9@��%�7�-�Ӌ�cԧ��������<m�j�1�8�sU��v|�l�:3^����q0��g�Ϫ���>� 0at��xWK������B�Q�Yb��� o�s�I�1,־m�� le?7�ctϾ2�0:�B��6����F�ؖ�&R��s��V�?��j��\��u��>��'��h�aq���G� ����W ���I�RL����7[N�Z�y�r+��f�6�y��:�u��{Ee W�h����U�1O.���&j�C��ۯ�2J�����~��>���X[R�0�X\o/h"j�VH�p��ʚ��b5k���p�����@�wܩ���y�IRX����u-���ݣ���1�H<T�D}D� ߜ�,�go��יy��FuG2"��n��b�A�\z�?V�t3ּI�d�ź��3���ʜD��o�j��i7gN�|���z�(��7CTW�/$���Zm���´n�X�PkVê�J��*q�FQ*ӹ�-P|/)M�i<)u�uP[1���J&�"�U��f�%g�/��f�X_(��WB#�;�tk6�Y7_�͞*._�ky���~bM��O�T,���0�Q(o� %�J��J� �/j���+@�a�1�[��qɞuĨ�,��X�u�՞{��`h�e�Ħ��@�?�Ts08,��m=��*�P�8f^���{E#n��v$Go��?q�Dž�)����ʨb������@��q?ޮ����X�!�E�F�ڝ2��tX8�.��]{�$��xu�ș�;Hz�#S֪�Z7`�6�[�Y�rG��p͘F����3��j�r!���H��U�Wh�}h�q���ZӓA�{.���{�B�=0-5P�����J��X��o4��M0�.l�U�ؐ�l0+�> ��)�x����_��gD�4Qin��_3�(A��+���`�a�����۰��C� ��s(��'�חkN��� �?�7�f��T�Y<�6ي� 3�K�7���1x}mg�ɸ;NZǘ�����+�Qu�&e^BEuߪ�Į�~��|��>�AX���W�X�.�D}�Mp��J�p˫F���K���p��{6'oe@��R�1G��PA�E�fo���A�G�?�Y�swX�`�O�o�1Dzy1_0�V,[$|_,���9�~8���d +Pg������V�W�d��N��/1֝�-�v��-��D�sq�Tns���ߐ�B����P�������Hx��ɏ�E$v;wȠ�m6-�y���y|�J�u^4�����;Y�p���ɺ�hdfq�[�EI7v%�?p#���_�ǩ��?!4�Gg3B�2���ߟ�v1d2"�1?V��3|ӅN�Ů�҉h�Oj�N'̗� #p���U��eNG书Bsh��D� ��*[�U�����;�EM���Px��##L�� �\!0��H�l�J�$&� 6���(D��0:�7� D4���w��`6�d�U�'��yBzw/ԩ6Gߨ�_L�O��<�`�h�|�<=6��*��͠����%i�N���[��Ku#]���ʅ��0�SR?������ ���*�]����m�?���]�*��p�&�wF��B�����F�5 >��u~��ШtU*=���e��by�f�a��J`��9瞆/8����Цʄ�t_�9�Am�+�f���Q�1�j�3��D�J�kNN5RcWt���%����,��{��U�̮͌���$ �q�|�+х2��+���#�P�prk�C��l��/Q9�ώ���u�R���b�8P{�@"���l ��q�j��w��h�8�hfnV�O(��I�]���tF����\/�Ҙ��~S���Kۇ ��Ť�n���7��[Jݮ>�>��c|f$�x�;O����]&��E��\�t�y��V���8�N����@V�Y��.�._zNr3Zc�ӝ�0����c��m�zTB$�z�.��|���U�Y��w�1 _̕s�[�.s�'��éD� ;/� ֎û��J-j�͑S���k���J��@��c�-K˛��ԝX.��ʀ[r������k<��t�j�D�p��9I롏��:^��W`��=/Qm���AU��E����V��<}�QTOh���˃�T�Y�d]@�e ��2��$�|S����/Siv�o�m�a[%�� �Z�C�u�~ ��w��+�L~~�ݰS{��%H=����"Zk����"w���Y�:ޮ� �U�� �[]�����vtT��z�KS|�ʶ��Z�r��x3!w3�ǻ,�9|e40���ż5����߅��\x��nN�����w_�a���B'��z�V�3��/�(ԭ��n*�m������hyE��I�w��7�'�ӢY??��O�ш�)�d�|EX�a�Iƈ��cC�BN��M��ia�l-��K.����B�y��LO�Q�Z1VU�Ӆ^�R4�9����З�z��rkc��EnX���iv�"����8�ZT�aJ�4�L^��Ax.���^�� �x�����E�q�o �% � ��P�c�0�,!��۵���x��ꀩ�Q�a�L$�m��=h�t5����&e�k�ctM[� ���JS"?ZL�C�*J�?Kz�<��?�Y�P���O��T�����?��2U�����$n��������;��ˍ�®��/���d��t�� ��Z��V���#˞J��[І�k-�jiLj"d���f���ds�A���3��U�^c���l�+�hu�ů�Jh�͜��!���x.It�����D������d1k����)�63Z�?ㄯ�Щtb �pHv1f��c��!�Ϥ���+҆�������k\{�g�͜&�-\fN ��g��`^�K���V�� �D�(���Y�m�F��ᙤ��� %%��h�Y*�Fx�6'e��^YB�Ȼ���UF�Yt�����HhC8UZ��2� Y ��f�P�q `m��)�8��f�ЋM�`�(�@��L�Edb��ɣ�3W�������~�1�obM �w?҉�h��F�sp��֗�"��&v��b�Ů��� �`d�`Cjgw���aYހ�x�[�B��I7J+��'ޣl�g�s�3��*���K�Wbs���"�����U0��Tn��ilUp6 ���2<q��݄��[�����a�POV'0��kt�d�չⳳL�Nj%�)ӿ����u�Z�+�@霛��>�l�;]�����%7>��f#�P�T�; ��g��g�vPb0u�ݭp��2�Wi��E4)�Ф��$ڥ� �v}��l�LTOnt�j�0�I0��A��g�G?2t�~�p��P�E .��0����X�)Q�i�"�c~�|��T��YA�/�9�`�ӄ�x����j����zv�!;Ĩ��=�J{�e��E���T��S�x /M��+���5-?,'�We��K��7�y*����ie��߮�J�eX.�0�� ��z:u���A<��|���*4��G.U$��8O���EH}��>�H3[��b��A�$�y���$�l���ex2�t�p�l+�E�"�cè1,���>�\<Õ*^h��ww�|���H�[v3�$x��B-*�N� I,� ̓#� K��,- b�=�]"��A�w��"����B��<KT ]��>1z!�����ʶ��,�~l粛�y9L1V����[��b��������p��1~�����G�ɵS[<�~q�-�<L]��'�.��W��{�1�Ɍ�BhE�5��4��f�������l��a�u������:���ڐ�De��P��qe�'���nT6���g����Z������Df����~��^C:���5�-��1��XM��qz�TdNZ?�`C1�5 �]�X���8��h�_c@~��J�D���8��l�n�.�� Ŝ�jJ���A�VCIb��ݐ��7�0�Kp��[έ-��n��-w'��F֫&e��΅�GZ��Z�jd�e�tT��IJ�7I�� ��.��a�u�S7�jባ�y��E�<-\ѲZ��G�1X+ ���m���Rd�H����b.G}s� �hʮC}FZ�J����r���*I����_Y���a��d����0�}a�+�gm�/1g��uk3�Zζ���~oՀчř�<(����O~�Α�\�g�v���ٙ�n��Z�e/au��kp�e�r� i-VÓ��Lx/�R��z�I����K2eu!n�d~.��Z��u�Vi�#Gxt���Y-\��]�|�U��/=,�O��OA�����t���po�L�>�*�@�D��n���OT-���!�����ak�vsjؘ`�)�����t���[F6�59��v'(�MeF��.�^�MO��+��4�k�i�A^l([ ���,,$P�u�l�5*�nP��s�����a��Z�(��O�=[f�Գ��i7����{��Q&��̖�^��G\%�̕��7~6�� ^��%�Bܐ���BL��x���x̘]��m$��.�M7�'%�d�h���Fi�ߢ*�-2�Zo�V�0G˖:,p:tw���-̪�v@�ryʈ�ۃա��_�Q�x9ʼ�^e� 3��;3.�u� ����=TX��mr��h�t�58���ZE�彚�[!���);-���o���]?H��R"���D�"N�j��jA}XI?ȑ�?���%0A�!�^�sLϜ��c-j.�a�3�A5�fc��jǃ�\���K� MC��p �:���I\ȉ<�W�ވ�z�;-��!>�M�,����F���{�,2[B��P�7d��.χ���q�&[�CT>��L�{����eQ���:���g�{���_Sp&����rז]��m^Y������>�rU\�-b�䝻mxz����2?��UUў��P�*3'�h�=q���N�Lw�b��x�w�xz"�:{��jK�O�a�B�(;�0">�t�0��S08�Z9��V�_:e7N�\#�� �f%,_)5��SC��4�9�4A��X�ͽMڱ�,��ƛ��}�D��C�irr�z3qs��},P�{�'%>v#N��E��Ws�I��OUǦ�H�#$��6R`����R:�p8zXTb\����<?�5k� ���Qj�4L��o��)�cZ��=�>~���'��>{o���\:l�n�qƆ�RI�] w;�7FZ���V��YDe�8r����Ɨ�N4' d4�&�L�x�զP�F����4��N͢�ܼq\#?1��%�v���$���G�-6��#w.�ZN=sO�fts?[���aT�� 5�U�.�W]ο~�~@�&������)?raO�a�le����n���*D*�J'M���e5�Ǎ"�A���[�K �z���g�LJ�ۀH�[�:�:-�� \��"���jI��g��O9��&\1��6��Y�xdc�8VH�2y>�8�3g�R�'MɄ�j��ߦ��LͩuX���3��?<�#m�Y' 4Ef�/jP����1� ʾ^�l5L�2����5�����A8����ӭ��Χ����4W�@WVn��}Q���sF.�:ƴ�i�$+}X@����ܥ��Ɲ�|TBb�È���r���\杁����a�5��"�1�=�J�ڣ��?��C㮉|ke���xR�7�짶z���" 'D�(���D��{�vkd��{��Jʀ�̹��\�&.��.���;P�)�~v:J��Pڿ��X��(3���Tk�PO�Iwg2��#ʚ�fN�kx�z��fؿR%H�7���S�ۚ��խ:j���������1�ҵ]c��O6t���s��(�vK$J�p�l� �G!�֊1�jϻ���B`Sq��$� Z�6;k�4gS$u�1�Q�>�`>ޑ e���Ű��7�F-��j!��p����k��>�����Y}�0v3Z? >� �He�$�tF_�=n��e0c`��'V?u!�*�p�'ت���W�\��(�t��t��=���2�$�5J]~`]ٌ���G�4��a��H�蘅��Kuh�&y�� t�׃t��Y�Y�L��'�u��%���Π�ZR��z#�?1�)�{��hh�/�#ǯ�t��d��1 � W�;�� uiLF��G�=�UT����u��;�L���m�v���Y�2���WJ�<5��]]����+p�E�T�˸C�I_���?Ȁ4�5�1��U(Y'_ [�6�V,������PY/�p�Q�eg!Xg���Vץ3x#�Y���mZa�7�)xk��q2�,@�.��;���,�w .��_��H���d�ȭ�r�M�=�+lI�^C��.�&����Ѩu��㷘�;:�mb��lɆ�/82�C%�'.9�6�����*�/�'��A��} �[i�j5h/�m�bh�a��soWg�UE�گ��'PhoȪ'=��6%�&�h���*o�04�h�U,��O�p��G��l��%��/R�b�y�;�2%UJ̒�=F�/�j-��v������U2�Ǜ��"A���d�/�Y���y�GQ�� |����) U�1�SK>�_r��ѭQ.��]�Ўq�C��J���-�h����F��Ԁ~�ԙ�I芛is����7̗�7'��|�)�'�)p.Ŷ�Jy� %"�8l�� �CG���N�\+�F���9!/ø�zu_��68'��p9_���Z1�6K���n�q�]�n��+HG��t&?�/�($��ˋ��z6�`>���h��Rkj=��l�N�f��3���:�dÀN�����,+G%i)X��/���[�t��@_1~�ܗ e��`�S�d/��t9Eh�G��_P>xdc!�<"���o�'`��˓6g����JlՓuA���aD+'��;3c-��w�+�躦�:��6C�/;�3��Ӻ�eiq��kc�,�l.7z���&fJJ�tfW�Pı�i�A�9HU~��̅��i{�!�h�~$�m>JU=�sᡂX,�U���xY�E�� |~�(%��_e�X��C�n������v���D����GלVG�����d�>E˘0�YuA�OpK�6!�Ǽ2<l'9>#�������"�'�)v^���6��o����pis�f�>���K����$w��)>r�t�sJ~4����{��FǸ���Xj�g4�o�R��q�oG?dAm�v�� )�T�p���y�Y��Dh`��'��:$�r��<� ���5shJ��n��J�b-h<�k'��֞Ɲy�I�}���#C/Z3.�ߚi���4�����'�DS�]�������^;�&���+Vx6��vۗ��@1�[�i�!�vT %�^�~@��{���tԨǪ�jYR�#�E����wi�:>��B���C�ߊ�x�s���������J��yf�$v�~ޣf��!�]�+�0�s7��p��R�.�.d�������헌BVLp���Y�?��x��h�y���^1?M�0c^ӡ�@˻7Ɍ=���c��<�r�Yt$��8����ig=AkCgS�|n��S<��M^eD���R9iW�o �W� ���6����i4���؛�S�hl��Le�i�������|�)�����("�;QH��f�v�l �:���,�����&ڮE���Ѹ��Me�v��}{���h,��X]*�5PÏ��C|��i�zsq�T���L�~%�s�u6wC��\���>�Da��G�_8��e��ib-����w>H����k�$ɺ���Ur^�����[]�DS��T���f�uF<0�VT�Rn[5 ���M��/�m8���Il�����3�n����Xմ�F�i:�СW�9�`ONK�@�B�����0��ˤ�u�/��YR�#^���t��*�ڗP��N�w�9'�@���6�0�{%�l97�U�_���#;BU|���>pp��O`c,�uJ%$a�Yˠ��y:�@?�RN V��[`R�3=})���s�*d�{�h���VS��7�@m��iU���+TK�>�&?�����Ly_��C�6��x,�߭)��G{S�D�@ 1p��N����6��Xfr=A����=*\����&�[�Ȱ ��N㣧�J��3i��qϠ�u;A�/�����#9��R/<����2ڒ̇�f�xVd�)|�|-��eU&35^��Hyw�E;TͼU�Q4���=[ jD ï��?��ԪcA��č2��e�`������i#��\U#��9�%��W��0BW������L[A�Խc��̂�9���'�ݭ�M��*"����`�τX���.�Ԑ����;���w.e�^���7�㸷��=8O���;�~O���<ʞw0����B�|�/��I�OJ�,9�\bh�3��G �0K39� é4��`�6�y��sԩ��S�cW.܅څ4�D����D}���\��7�ݍ���M~?�0�\�k�f$V���ّ���f�3�u�L�k�K�l���j��@���_'�>��i�n,�����^��c�v]e��0��4!|J��Ϡ]i�(��`�2>��"�hC����Zp_�$&�����T�c]�nk["�OH���&�D_dZj����0?I�q�.��=pz�"��>��L6s�&��q�ܠ��%E�U3�_�eH������F+7���D��q��~'"(�1��IsA_���Z>?�f40 �$0L~���iLNtPe�Q3�|"��4.g��%o����-�_������I������Z��̶S�c ���T��������di�Nq�"k�f�_*n��\���ۓR��A��W���W�C��(C;7��[��>��B��n�W6�c�w�Ņ�_�oi���.�K��C(��e�ffJ&��c���Q�t Wh9��>}�H-�&��ϞI�9�+�y� �a�����T{�CheZ��"�z}�縝�8\1S�6��)�?bq�>SlO�R J�����jNҙ�u�?Ӟ��6�v��PF����?D�5�F�I��_cKܘA��j&���[/���^G���>u�$��N�V��p:�.m��Q>�Ȋ���;R�u���;��H7>��R'�L]K�r5��^������J�dlâ��ײ�M7��Nl��dk}�.o���s����6Z�n��/"s7eݭ��N)M�P���.z�V�~�ߋ�l�2�5����@@�jy��L�4&��b�eS����6CjB�u���~�����|��ޥo��d�v6^� u*�H���T�q��)�#� ��۠���f�V��Fپ�U�,�?}��q ?h(>�4������i>y���fW�?{+�&�� ���y ��M\�H7<��)�SwT�� �@��_�H9]���Ϋ�j�ω�Q�Nl^A.�4��C����|�/���q=xp�y�[N�Î�}L�wj�v�͞t�k� ��l�%����.Z��P}=NO����^�v�=��0cy��`����T����}r�4C+����G_�g0f]�At��d$'�J�{mS "=�ZЌ�Л���Zԭ�*]�ö�h�f��;Ҹ�$h]@�(�j�l�����?����k�98��n�km�z�V�vz��Ͷ)�:4O��L��H���1�>�7T�hΥG|�9������!�E ��EFo�:��Z����vRn�n8��M���$�qB�8+�ឤTnv�ZC��̶ƽW���c�^l�BSl�Yש`��߹�qd�k�H*��a��gD��V��@�˷,�.|c�����*�=� �G� �mn�⇖��/�c�ԇSL<�{:Xe�wfx"���/�3T��������xNx?(?O�X-�K�E�J<x��]�qH�'��X���ywn��z����A��g�"��85Hqs^x��JڈW�~���f�TFu�\M�ߝ��&B[eaV�j���#��xk�b�h�_F%M�l��.Uw����e�ޛ�"J�f�����+��m�Mkܱ�J��f��)Y,+?X#��3���O�j{J٬�F$D�sӗ� il*,!-]�� W���-j卍Aj_(�l��2�0p_�0��ꀭ£��o������&�[R�-`�_��� �59g�猧�ώ�7Σ�3��_�B���(Ǘ̌����D�2���Qs�MH��7y08�T��q��DY�x���Χ�����x�P�FA]�)�#��=��YL0HIby�q=?�o���{i# ���qIOn$D����gU�87��(�_V'K�ɮb��h�p�YO|q���Ɂ �g#S4�;�yU��j�a�=����4�-I�pZ��D�|����0Er�����N�C/6���k]��[r�'�.'����>��.��/��](���v��'�+%}9�7@|��� �_T��$v�#+�C�|0�k����pE #�cֲͲ��\9��ڟ>�H�6D��2ny�5b(��xDT�/n���z���tK�1����� !j��Н���E���:e�R<�^s,�����Dr8r@Il&�eLxA�~�����'Z�\���v�E-� _��u�G��|�:͚���}�\'�a�>�� �s;��<\n���0�\�i�eqf5:���ٽɌ�0L�6�A�K7&m��۪:�H� �I��1w��-��T1�i����#�O��G+�q��"O���H�W��S14��&�J7���gU]�L��W�?#���t�����`���uш��4�{�U��Ӱ���i%;����*\x��� "t��'�Pr\4��Xг9x�&�z��6Q8A� �[6�ąz�R��)pfVX�E���0�x:�A>��ZW��(H/����`S�r�B��H��"F��¶��rFt���矮z�u$IvC5Z���*V{�������tM��N?�Cy��~�kt���m�^}Z�0��]idF�y�k,��ф$�Z��E�xXrCRH��E�K"s�í(q��� �ԏ�oQ��e����.AQ}պW��af��:z�ܜY:e�PC5� t�ˮn-L��pc�2`]Q��!47}i7I�]�J;|��:Ǐ�?���#i��ʺ������34Zf�۵R]H �,�;YP��Z/U�)c��EJ��J��&R�zғ�~�'���0#2�'�0�.5�6=� A� .#�}O��v���?�f��-�o�J�guM�{ׁ}�F� v&�� �;�I`��:�z+�xĂ�FY��k�"��0�9��<�YJ���*{�\�Va�UB��Zp���=<�#V|c�N�xy�/��L�l���>��d��gw7?q��g�{2 p�*V����ޛ����u��G/�����C��"9Ã��nA��Z{�*J��p�~K�>~�7��X �~Z)�N�~34�U�����K��Zi�k�!?�kjr� ������m:���l��G��*���a�=?�6m|����'lu<��L2���1���3�Qq�8W�N;|d�u/-�?����*�x_�ʾ�t#��ǀSC�4T�JtoAu$�PS��?�l2��7o��/�L��G�͆z������+�w��vH�4[�� �v+���Q���Yj��U�-m�h%�ߞ��dZ|dT�I�Q4N\���(�1��f@�� ��z��~���J��0A �L�C O��`��^����W�6ę�=�W)a��@ ���F5�Y�B�2�rKv6 tP:߬\��j�R��\5EXGl�9�����2�o; �>���K�=�67�Q�m��Sz�.�;��&]��6x�6�bS�ڴ�d7�(�� ���lb��8��H�JK�����8O��8�c0�i�_$��+0$�� �h�'��P�xz�m=mq����u/R��VMJ�9YiYC��˻�M��u�� �>� a��4)��͔upr�<�=r�b"V�2+�h����E��śޥ�q� ˲qG��('.4���5�(�nG����e'�r�S"II(�f����^��]�̿�A�J-��w���q7�+��/#�l��AZ�|4�hbv?��i�ȕ�wĮ��`�b>������eb���4 ^�^�y���UT ?I��v��7)[�X��5ʞ'�.�RtNw<��"{Q��q�z��@?f�A-h��P]�j�֘\��0z�j���W-n����މ�Ȁ�S����szäz!܃��}��|E�Z��,��]�{,�.I��,NJ��d} �F�v���� � ?��W߉��<�aתA���j3�N���}a'=+� �V�dC*��Hm��a"���_�9%!�Q���t1�7��m�=-�3D�����p%��x@�3�v��~��U��\3��o���b��Y��vG8�(��Zto ����(���q{�d�>����2���H�l:i`ȁ����ŜN8G���i����6(��3{ �f?��8ͺ�V�L���((n�!�Ct͝��e)D�6� ����[�/SJ'!��S@1���IU����yV�:�>1�H����9�]��K�U��XA��r߶�f�hG�8W��l=�����������n��}�S�����R������\� �U��I��A�E��N��%,~�(���%F'���̟}���i�$�eodڮ���l�ْ���k�L���WLO:�|�ȩ��W�����U�2l�/-�~�i�[p�E��y��@�H��=�<��[������AL�,��78o�2��8�2�G��KֈW�����M����Y��U�v� p?UG�Wu��c���s- [�26BufQ���}:]��sz�"��Af�˖gݑM JE�oq���r*v�����ʃ�N�ӕ��P�ԛO����i��<.~c�n�(��߲[SD��5>l-�Qj$ކ����:��� &bMN)�F��[���*V,��k�<��Gk���u��샐a8��<�{I����A&��!'����(2�K_nV�2�������0�� &]��*��,��mH���AA����`5v72%��Te���6�~�E�g�)����=����Zz��`L���*����gk��҈hݞW�xWW��%��3�x�P����٭��N�&ϺaL,��]��rA���AbG�m!T�v�J|%�ULF�0��#X ��o,N�,Mh �յ�|�W?[�9)(>��p�K��� r�h;�� r ��1�w�P��*(��퓪�1����oI���z��7bP95:��s������Rk�~���P�m�=�B�Q��������5f��B�Sɥ_��e����<a��h?�V�:O�����XH]5�����-���d�\�@ �ja==�7Gk�����r|fe�j(�Sq��y���j"JC:��#XD�M��P�C�;E��,�=|1�r<����E��p ~k�cTȗ"�>��NT�Ѻ�j�QH�J��^�9T�`"�6�B�,σ&N�d�Z(������~f��ݖ%�mﲗ���o��/�0-̜��$o]�@�<="�T��)��������sG!��*�~:Y�(%�4�da�i�B�ÿ��SWZ����J] �ywSO۹<U`e@ �`�1�}d�N�O�1�v,�=GF���ڬ�D�$kE�iP;�ҁ���9=e�j�>�6��Q�0��8��6�V��ܧk'��g�w-�&GFc��XÉ��s�P�%i�_P�A��Ƨ��5Ϫ�W'�^b-@������uW�����t���R ��;[�XIq��e}&���1h�?xu����Y�Ԩc��X�r.=�� �"t�ޥt��>���d�BC l��0(㋛�m{�S�d�S&���t�y~nlޠ�pԉp�б\Ox�������4��M�؛h��-�����ݶD{�1H��p�ғ/�}���ә���|Tv�g�]����^�],뇮l�����u�ˬ���/+n�5�#a(��Se>�� �l?h4��b�6 �A�1�O~��b�eL���%�m�߾�z���>�uE�jO��x�\��s�^n�W/q:��J��*9R���~'��vQUh6L[��h�8�dSxf�;��u2h�R��M�CX�l��1L�S:�����e�pi�F ��?hY>��-�s=�L0��r(Z�#�ԏ���vl�x~u�:@_�@R��m��R�i�m��^kͣ�yf���>�OEmI����uy$�mvK��i�ȇ�/ ������T��{�a3�ede���2���҈$/�_zj-x��T������p��b��L]�]�uq��?�[��&Pg��'��� g��)9���f75 �P�gc��JUs�e�+�ߡ�TҨ� rjm*��|��N���$4�6=�i�ƞN��8y q��Yh�d��9����#�B���S��]���d��bm�1�Tq\gvL_G�NK�!���6��2���4Eei���D{�_���:%��&k.�7�៉'��8��'�ga�/ޅ�3�u�(W�őS~�HK�"X��| d}~9+`v|�s�c�*9߶hu�A4��[t��$��F���7:�+�>H���}��EhN#�IkZf�j���i7��{�#�K7ʄ�<7'�\🥉N������ڊ����K��j̖�2��%��K�G�y3�"M�S=���:�*nv���\�jHJ8��nxKh'��P���~�8�ذ��|�3j��YH�.~8\�=d~�S �V�f���RF�߽̔�.�|� Fa���^@�y$2������s��X�AU�B���F8���Y�*�k_P��>Hڏ�K�4X� V�|8 ���e��ݏ=��йX�0�q69y`�y5�J��T3���7�4/' ��ͧ,��9~�p*�f�|�vp�{z�~���t�P>�aaFUU�!%�K��}� � B�*����i�S�l͙/�<�m��y*���Gۿ}�A+� �R�0n���� �\^ղ?:�mD��1*G�������w3�}��J�ê�`���ތP�:BűD�{i���b��S��$_����t�j+&-�K죽�D�7�no�b;�Z��U) ������A�JMo6�K�>�$D+n��F ح[�Tw ��:�*�+O-x���u���J�U,�6?���r-6�z�f7n��:�ߖ8XJ�����d7���6�w/'�+Q�6�}W�ġy� C����έ��K�Έ�qNr*�[�����K Q�O�_S��մ0�����_j1�J�Zu��0����;�r<tK��# ǢK}i�U�D7i���T�ý����O ���wS��8q7�E��Vธo(��X@0,��<%t�'ۭ�1���0�Ag[����C�;-9u�r�)y���q3��Ab�¢�e�i �%�� ;��N9ǹɡ��:E1f2b���� 6�n�S����(�Q S��=D1n�#5��|��mBlĊ�S5(�rn%gD��P�>:u�:����t.�ӵ���:�(Pө��t6"�k��-K�$����b���cAn���r3�E)g[��(Va��\G��S��������jI̤U����xZ�;AJ��*'�?����i���a�b�Bg` _\��s�i�MI���϶���G�M�����F�-����[~�a�"�y�P�.��ٲ�R65�6S��wv:���2�i�l�q���.��(ҍ��_4I���x��Q��v�:B.9D��3Ĵ�`��Ud�L��qb���ݳ�#6�-aB,���]6 ����H�Z�?l���2���~��)}氀����Ǩ6dZ��C�69�Cn���.ǯ����`�b}ۤ��~ϸ"���R�@ z���zrp�6FH����1�ht�>��Q{?TW��UI}8,�}��e���e|ӟ{�>�y�7�$���S����]e6�t��:�ކ]��a� ���oɁҭ���I��+��R����y���.cn��ߋCp������s��h#0�E���jտ'7��^��@���;�a)��i�[�脸��Mq%�p��"�?���UP�^�R�m��`�L�?��'��0�YW���{�@����Oޱ ��Z5!����M��^<`�ir����6�ː,l��\V���%x���]�����ˠh��-�6�GM�`�hn�l^T$S;�n �$�'�=S0+��{���(�x�B�Є����Ѓ�`��ND��pG֯���@���+ҡ^u���𥈷C0���m�Ė��1����z{�@�CE�yb��lɫ5&��7K"��vi�$�7R���a�ǿL�w[U�p1��=�����;� ����ɠj���#30���?g�H_6Ϡ�Qf5�tFCG+S��$2)����m�<r�o�`s\�Dzr�I��[b!5��F���w��)�ȃ�̖�� W%��L[��t�Ȋ�dE+�$�Z������ٷ�z������f'���M��I����I �ENڮ�t���s��)�s�a��b�VR4뮱��i76��ȭ�&��W��A%A����_��2��s���Al������g�����)Vd�}��Z�YրҼ�f��?j`�Z�Y��,J6��Ywq�-� /�;cD%��b�R��`�-btC�,�(�ԟ���,!%{UgQ�C+zD�Y�����v�n�aI%��i�}bqr�Î�:;@�?�3!V����~��3퉠� �)�u�O��}�! y�p&)�����g��`i6��[߃-%���l��t *J;}ܢ萵���Z�� �E��'�N��r}}�h���!�[�]us�J�2{gQ{�*.9���D\p8����di��!��xs%�'R�@��2Zу��7�`5i~6"���ׁz��$�\�/��m��i4�t����k���o��w��6�:(��{�D�j��/FOWڊ=�cٯ�h4����J��V���HW��d�SH�R��u��o�xE�e�̴>��-�|AStS�ǐB���՟� O<+k�K�ue�]J!$%ԕ���>�'q�1��T�/�L�� ?����T��1��?���@� U�^đI�1�=� �ݤǚ����rX���V����Bd�����ѷJs�0ז�a7Ez� ��8s�����I )B:r��F^ƨ��L�������f/>��9����`�2ҋU��Ԣ-�Mu� �n���o�D!_���u�)�$|�ضX[�_��� ���5 ����-� m�D.a�������~�9O��yW�s2�V��7��Ҧg�S�͉īt��u�-�IzC��+1 ����n�v؉��f"�{Gh�c��o<�pYX��V`�<�pc�V �4;��2����e⌡N���f�Xו�O�)��]�u!��ں�N��mz�~�7b��(KC���.!e�r��^�vi���I��Uݧ�k=���t'{��b"Un�*[5ǎ�c ���@� q��^��H�.�3�%���Bl>��m�i�� ��I�k�Z��a�K�ty��o��S���:�&��Gi`�b��kWh�k?bGnG�<v�Kc5i�vW�z�_8aX�`��PS�L�:#y>㊓�ӓKQ��]'G!���e���c ��<4��vؐ�&��I�_s�����5�E��x�@Fl��?�H��e8�Qw���<{y7b�ZY��}�i�� _OR?��Dn�C�����'�އp�*x��P���h��Ջ��Q��`�.c3�l�|g��zWݍ�C�6/ � +V7�{S�T�6�{��P�(]��q������H�i��V`;��Ȧ���ͺ�J�BcX0�Sj�穀O�?ҷ݅M3Y^j�H����TM�&���1�Ƹ�l�@�v��� i�k�r0y{�� 3I�S��D�R/n�Fo�mZ���FJGj�)�Lq� ���G��5�];K&�YLx����=�n=���G��:Y˅�t���$��ދ�>4}7(��H�ݸ�^�m�4�Y�.A�̕�����Xǘ-��(��fn0�8��]����� ��#q�5����M.���HZv翾�Gpˎ�Ͷ �u� �mȝ0����ڵ��Y�=,��)t)�� _}뻔|1�8"��; Bg�$��T4œ�D��J tb� �@���i`����E"���"��R�I�����tJ:9���=x�.�uv/�v�a�?ki���Q�1N4���Pe�+`���f�ԡ{x�cN����f���=U/��(�V^�V�;����tr.h��M��߂_�ʅAUy<�Q����T�єg'�9M�F��B4��6�-��Xf�y�6\�����R��-�6n@]�Q�*�>�z�C�|J�&��#�����h��k���~ �:G�C@�'d�ߝ����^h>����0� ��K�WxȞ��?!��)Ët��Č������Y��`#�}#�y�~���5 ����4�Wd|�Z���$�R遼 N�(�GS���`@� >1� ^w�&-���h����9�8��q�����NJ�?�G|~��AvT�/�NgΖM��[�5�z��J{Cd����g�jVq�샘)��],��j*��q�u_�6W�$֧�j��r��C)��������A��oE5�#�f��M=t"ٲ��g���%Y҈�r�X�oEW���5ۉp�1V\bO{ޔ��b��3��� �O�!�UY��Q�`�1]�`|�t齧�98�Ʌ�n��0���eBiJ����>�xW^I(i�0&�叆"�>��"��2o���A��E���A_V�J�?�t��������)��5��P���H��f%�8�7�V*gА,�vk�| g[q�p�S;������Z���g��#�_!?/�i�}�s��m���I��{�Ö�I-���l��乺���R��V����b@�B��D�Z�mđ��PY̾/�MG{�Ml��$�jY4ޭY�np�}r,7iDIe�=@M�3˨�j�AR3��,�7�TE�����;��d����I´]���锫��"v�D`X�pE��Ŗ(�@G?��+��D�{~H��n���)�gK�-� �E1+Lqm5E�H�pA����k�A:C��k'@��@cPL���d�Իi��[%�*t��[��{z����<D��|��t�g���n�g��v&���+ �]�:7�V]���y�]�:�����`�op2N"ƃ���~آ�6*�c�&���~OQs���(Y : $�����>�+V}ON��L�����>x�~o{G���X�Q�vD��)7���b��9C7�c����ͼ��r0�s���[�o۱{,�"��C� �c��ӝ�nt@�J��%��wyI�����B$ډ�M�1���D_M�0�"�� �P�PxԧH�jd��~f���D"n� �1���Hw�V�N�6V���1u�M^6e�-I�k�Y �9�=`��Ue�~��Ԡ�)�\���M�Q�`�4u��Ɂ�K��/xPp�=a�6�=�|�4^o�]��Q�!�s������3�;���v�xy$ %����Ja�ޏ)��� �ni�0��r�RA�9�^l��5X(2X�� ϫ���ڮa����W�ׅ�������C�-�- �:c�ʹ[ܩ�8�h�86���Vb�ua���?iW9>�������-e�4l��9J,�Lǘ�q6��!(��)ucw ���3��uq��z!�[��!��,��|r��T۞HA*��H���!�5��\�G�p,�(j�**�91�I����_s�E��2rK������.gR�,au��ʳ��{]~)��C�Q{R �e4���u�H�-=d=t�.��u"�L��z\��]��&RL�K}O�Q���?�-���MI ����7���~@���pw��E0����w:�Ӷ�$��)�az��"���c�TŁ�M��5����P���"�0/2E� r�ԽG�ӭc*�0<��|QO�����_Dm;�P���G)�^%�$FE��H�?a��^K[��{%���3#}�[;X}W=�z��X�����_ c�%<�>�م������Bs����D�['�w���� �k����KV�f�JU��U;��Bٟ�f�T��<L�I��j����j��u���%ҀS�"yi��A�"�cG�3���� ��}%E�T{��%�ݾ����열��$d���MԺ��>$�.���?����D܂O��5q�ׇԶa�Fu�'��{(�a�A�p��!�!��l�/��) ���+�����o�Ҍ�>/�q�Sc�f��i@��z�8�ӈ�rt�Ʀ?sf�e �1�k��5���U��t��An{~q��6GO.|���sX@���)jp��k��L@�`���;��xV�T�[�l���y��� �,�p�e*��*`�n�:$g"0��M���~mwo�#/ $�ۯݽ߿�2�y;�}/�]}Џ0�i��]��L8��RZ'��0F�]z]Q6���+\��K����=��y��_��sY��X��h�iz�~6b#�2%F]�z#~2<%v��:�u�+����i�Q��\���TtW�F�ꨐ�)�@�$��Z���$o�3d v����V��yx�Sx��K�u���~p� ��#ҏ"m���w!\ ^�/��=��88E��c��т�!;"�Q_D����,�|�\~^�p^��x�$���Ͳ�c ]j|'����ױ¥�C��~��=�s�yE�A$���Ӌ�*G���^�(���Qx6�}��G|+z��n_rF���\�I<v崫�_^S��،s3#9e����z�V{2�`�R�ɷ�TiZoI�OB�-���O�H� Z(�|k�=�D�M�-�ԥ �R�l��e.b�"�ףi������ <0�l�$�����H�E���?�"Ԫ2!�.���?J�g���Čk�MHx��K����2�$~��\t���)�P�P� �H���cc%$�;!��֫F<�*B5=i]����.����I��+�s��1Cw��9�*Csu�S��m���o������G����G B?�֦�$�hC5�D�]aT_�OFcXTh&��'��R��lr��n�߰#ѡێ���n�����Le:��.���&�#x���"�]��c'1\�coe�f�Q�ʇ�ϖAu�S��bE1��d�ڶ��p��\� Iu�[ �1��}~�q�]��bd�:���+F��5M�!�����ǵ�3G�ې�R�<R2� ��L�����e!�k:�`��K�U�R��%ɰm�^8Ϭ�8�,�WrtT�_�-�U��,��P�jq�#c�ڀ!T�֥L�`V�M��jn���W�W~����_]�,��R��eF�S��],�� a&�$�sO����hK�}:ɿ�U&��u��B�����F��o�,�"Y2��erc�.���:�Ek&�r}��0�����nS�!�O��Rǔc<g\���Tm��y�6@S))�rX�Y��c1��9�Q���������~U��:�=�����K0�̀�,�j��[G�އ��S�-Y�x�,m�eL� C����_6'����gF5S��1��}S{����:}�����^�D��^{�G�f~�E��$`���J�V_a��!�!a�OHa�-믫Xi_m�H�wu�>=��_��h�d:J��y�Ǩ*�^|��>�)�-�� �/[��n�a��+E��l?AѠR_�(� �3�/e�j+^ �p��K��J�����M��[b��'��@�y7�#[�t_�fj�3I�r�t�,�+��}�d.l]ј'a�=�|�y`'�n����W'ě�&�s�$9`7�u�-����A顔�V�j������\��9�w^9���|LdRv*�-�� D�:z�m�i[��\�����f�F&�,P˘he5}�p'����[;�oU%��s�A��x�@�^�2ީ���ł���69��0[fR��a�+u�(�������>W�?_KC[}��C���U&H#�x��q��&Bᰰo2߄O��sKQ��K_=�TAb��E�|4<m9�� x�crn{z��d�q����IČ�~O�2s�L�|��U�|��T���g���1����r�HE�<z<�;(�qW!1yp���+����N�PW�?�;y�7�#�g�t�p��옺dCq��&�V����?guM��#��-gA��[���cT!��_ޯ�Wg�{�̞��Վ��3��>�u����@�%WKC�♮�c������j@�-q�t/~g��칦m�u���B8��Wq�N�[�&CY4�A�n����WsvSE��k-ŵ� ��?�߅8�]�.���4��3~���%Vy"��M��1�S�B��F����j������+@nB�����MSl�טI���������G�\�g�f�˛wg�Oh�R�}��PzR�R�V�R��q�Yi(�pZ��Q�i�|�Q�"K��e���tN��3��b 0&%&�U]��|��J8���W�Y}܃ЋN�d�n�D�&\v-�U����,��p�7�1C��O�m���Y�H����w���GFU)?\=U60i�(JF*f)-���ɦ@�~�d�y��0.�{�v�q%�w����^� ��$��(C+�M�Һk���?�x��f�b��?HE Ԓ8�%����r=zRH���@d��ǂ�sҠ���"j����"�p\W��o�4.0,{2!#�e�� �d�p^RF u9R2��xE$��X((�[��Vk3,x��6�Z�,6���uX+k���Ąz �)��Y�]>���ϧ�4�f�~����I*d�p+Vȿ�ߔ��� ��O�3���Į�R��C���W>�rBd��H�8~O�p�g lҩ����Aq�Y�P�e��ѽ�Ѱ��]���] ��� �g����1���)n���/Xߤ�K��g!����+�f���ZڂB,f���E��mr�<��dP�kI�j4>��)E���!~���D/��h�<����z}�G]�x�Ăd�"��1v��h��1���S�n�����-r�]�����[ͽ"��G��T��\켠���5|�9��="J��Pd;� ��.�X� ��x���l뮒1e�7�k����ԡVɑ1.�f��r�W��3ԙ.�r�^� \f �!�><+N�*�����|Wށ���Mީ���UM�?D} ���a"!���r6�]Ud(Ιg^�7�8v�J��j���@ZmW�T�����W2%��+þ�NaS��>]��;�$�B�Rh_��A�|P��4����-��N�樻;��`�O�O���n/��Nh�/ 2����b-�75(�Յ���n��{�)�����<{�hQl� !����y����M@�1h~G.�t��qh���Y���?ґT�۳��p#����>cg����1*��,�d�M �q3��� N���c��oEɋ�%���]a)���Adߐյ���zh��3�b�yx_� R4u�Gy�F��"�Y��;���0S:�*��G|��|��Av�9��흓[ROi��1�du|��E������ �L�'�m{7o$���!�%��R~ޗ�.��+'Y�2:.�d��~Wp�N�AU>&3�F"f*�h����/<f>qk{�3�� P��m��K-q�Mf$�}�2���'�ٿ$F���_8�d�(y[�Yx�Wà0���lQtw.`s1,��W�'�Č�.��1ղ�K9�d��k�6�_w�A˔�re���dcS=�WI��*����j�m��hs�ǯc���7�U��z��`��bf⠧���4���YК(�B�3T?며S/�{N͉碈�!�Ǜ��z+y����2E$�|AKZ��?ڰR�Y8μ�g&60�z5��/v�Z0;4B�<�@T���g�DK1Z1�]&�W���)�Cʹ�7c���\l9����z� >�t�Q #����u/Շh�"���za��ft�w����Hɘ����[⇶C��|fCx��L��r�FPHq ��X�G��;� �hT�*�`J�_[�w�[�B�2����1^�!�n=J���=���dm �o�w�ը�WvD� ��a�]�}a�oR�ę�eHB�ŔFN��͊8�k��3����Y�?�!εJ^ML���| �V�fL�?_��ke����!��\��*��[{H.rS�֟>h\� t��Ȇ�����d�����φ(E�'�eK^؛n$���:x�~� }u��B9f�дӔ�`��-��Uʣ�a+^�h�t��]��]h� {��L6�AuH:���fҮ���q�8I&��j�Ql$a<����C�;��9�V�2�Q���ze�/0���S�O!�3)��XC�^�⬻� ��)���RP5���Lx�7���8+'���b�/�M<�)/����1�l�(�5'�ǖ��?���k3k�%�..A߯���Y�35�� ;����������bC~f�رz��ֆ"��syݏ��{v4/�J(��K Q�,�W�s�J�xƬ^�5��К ����Tq�K�9Y':z�#�\�r��!lp���!�d����E|>�j�Ԁ��p����4U62"±�`O�`+6t�W��)��G�=�|AbΠ�V����2�1&v[+�zqԁ]��~3��a!�ֵ�zA����[����=Y*̳�}�%�V+L:8%� �� �&�� 9ey�ꝯj�O��^H >t-����� ����3��ҵ'[ �.�47�|�ѽt�K������x��Zܓl������˽Zj�k8�����;棺oY4q�(f�{`��P��+�*��@#orq��Oۛd~�G��q]�!w�A�#jX����C,= �q N�·��7���rJS~���ؑ���,HЅu�B�;�����v��%C���iL�lm�k�50I� �*Lb��U�hõ�v_���w�.O\��r �)��5��bj��i��a����/9�5����w ��% %J*HdNf<X�@����h�N�|�&su�����9�*Od=N�k��^n4O��Q4a�� !�#�)��Ğ/�Y��B^=��(Pr�pޠ�'B#P�=_ĥ���K��{Y������&s;ݩ�>pn`��l�`?��a����b�G���n!���Q������� 9ETֺ<[�`�� ���ssH�22<��ı[ ��8J�����פۆk�W�uΖ�����у�LZ���z+����3ʫ��~�����@�LI�_�K���~��J��$Љ߭I�_���9�/zxBR�AM ֕�qf�ָ>��R`�/{����G��!{��x�w�G5c��|H��/1�l��`~�4� -��]����������欔2�q�h�U���2��99��'nN:�麲�h·��E>K�v2� �t5u��u�q� ��q�-óo�Z�.�-��+����Uh��+�x?�k��Jm��{�vv<�I � �XDytu��0k���Tه �,���0ҏE{��]�n0W�~��C����Ϣ�G�!�����g֢�/���a�?Oe���I�D��I\����u؊!��7���� `��}^A�)5c�ҟM��'qc��*�O��uhF�r۔E�}���G��۱)��Ji�\}ή����,?<܌�����ZL�DvX�=6���ޠ�Z�<{_:i]�w�$�p �=� 0'Y��;xA#?,ӕ�W4����o�>�$�2�_�[��>a�N��*��@��V�bp��I`�5�.}��ب6m��e�����J���!m�x;�)fJ �K�Bڶ�B�N�IMl�d�%)��w@=��7���~)�,y�Rs!EO��'S|>�5F�P��4�E��96k�Dˣ'�J̈́����٪�و��;,� ���Ef���%�Jf����F��%�E(���s�V� ����Sȸ���r��K��D�h�Xw�:����o.kn��&R�lw^D=�>�g�����H�Op����%��F�8CbM���<�k�p��\��v�;�����\B�T*��9��r��S�8y��u?�Sw^&P���2!��+o�4!��HW".X�V@�^ٺ1�"R'����{L3�B룹z/��FAv����V>���r��2�G�Ԉ�B�����ő�er2g�%���%�|/�o~�Ϩ��XZ֏�~��T+�tmP��;��������Bf�"L�Ǧ��%�lD(_��l���� ������Qj� �r�v=9ҕ� ι�>����1�<��^�B辏��5v��r ����)��LC��i5���&y*AH���t�ٽ���P}�.Y���x���u7�-I.�ɽ�^)T,^0\� ��2�Bʈ���jE�\W��P^�ůgl�Bre��'Ҽ_3�ʶ�l.���GO�t�e�T��1����вx@����p��`���^L� +l��J���%�ᗄ���n ���\�[��� ��ױo^��y�Ѣ?��ڭn=��Zq�K�z�i�eD�s�M�b1PS��O��Lc/'i�������.�Nt��-~��Ȉ�����o'���Y��|$,ź��(V5ҿ��;� 4*�拵q}�e�X��,�e"��\v��l��.�1�]I�+'��(�������V�>�[�8���Z��%{(�N֮�RC-�?n9(�����ԍ*0�a�C�J6}e�B%H�V��f/��آ��^0�;�i#�H�rD�5��J�QG��C�κE�H��m,���׳�P�{��f��s��u<��v����(*���t-�9U�M-�S�@P�K�Ҥ�6����op��C0j�sR`lY��?ނ4T �<�ï��O��w�/��V�E��!a�]�ET8�Թ9@<�*Ҫd�3C��d�5�Ȏ�"U3R�++mifB{zi�m���+j��y�@�S4S�|ɂri ��+�H�U�����,�'P�!8V�}����H��+��4�~b6� ���$�A���K���N"e��L@���j@��p����>ζ5d�k�6Y7�[m��>�f0����#7�T�O�krwFi�SeG�����(S�Ze�� �� Ů����^��}���� �;��f����T#������IR�.'���M����1F3����퇵s �yH�m;jc�?��0ޜ%!q)U�_3��#��NFC����L�F>���u��i���ڔ�.�.l2r������j ?��&kk�^2��')� .��Mxג�C4&l}v����SIK.�n��!�g'1>���7zB�0���I*�7� E =�6*J��H�϶~�[:�}�YR�JK��U�()-��E�c,�ަu� � ��؍f'�^����� ��D �d(H����|��}��+����V�.�lX!�:��ٿ[��繋r<P9I�h���RiF�"Ol�F���gQ�$�����F�2�y���;X�J,�ܩy���Ϝ�+���A���t�[0E��jB���TDo��^BU=kBr$�.���p.�XA+�� ԟ�]�$.�:l1Q �2/�k�u��r��>����Ҫ��X �G{$5���C�l�}"�Z�R�N��^WO}hPkf���j�4�0�Z� I�Ć���U�L�ɮNղ�t-�>�es�2�Q���,�K�i�ц���M!�'?�C���}�%���t0HڏGVv^��>�HBK���1t��r/~N jx���Y���1��i��W� �E7��%��|���Y���g_�&��*+��oY(��k3��<i� ��ds/��[��j+�V�JO��� �4"��38��>5�)�J�&�00�|�H�4(ޒ�a�g�Ɏ�K�l��R��v�w�@�!D��\�_�� Ի�5��gu��B�/h8\]��d0a�� KI�A<s�w����1�֚(�Z�F2 �<'������ȥ_����S���Ni� ���aC<�����o֒�y���m��V16�U�Tߔ��k(�\�Kꄽ%`η��v�k��{��S�����w���s���lBH�����b�P{h�Pa�m� K��0��9f�B����6,���S]������(NT�w� w�y��<w��1��u�^�J�9�}6�����R��g��_X�넪��,j����CC-���G�lt��)���n���`�/ r�b|�y?��z[���Q �Z�3_C f�pxaJ��L6�'ǍA� :m����"������i�ǖs�Vh�c)a��I�1B�l9{.�1~���rF���A!�(L&�wB�������/V�'i���9L��o~�˞��I��)q��@�Bo���Z8�5@pߝ�'n?~z _��.o?;U�I�X��� �ӡ�_EWZ��ױcO��PHZ����w��`�*��1�H�w�a��i���<�*^������1ɛ;3�vCF�.j�XI5���.���C�Ù![qP4qw�c55!�+�C7�(�t��zR�I'�Sr��n����1YN��dF�B$�YH�*��Z,��"F,�lӹ�n�zo~zU���E�(��Ux��dZ$j=>*'�0�c��G�S��Κ��EIɖ��u��a�Mzk+��6$��zj�B9/��|cq@m\���'}�~����8�*V���s��#���)Sy>htY�y�ʀ�����fܸ������Uf�P��D�s8��1���ʵ����B����n2Pv/��[���Ѹ�(O����ע8�u^����.�K�,9��[s }./X����w�zvj����r�[��`��j͢o�Y����ϫd�L}�!LW6�K�w����i�N1v�8��⭎ߜ�`���+k���eaN�n���4S�A_:�x���l�i[���a ϵ� �>!�i�YD8ɸQ�4����9�fZ�Te���QE'��Ez�Z�15� ���W�I�K�C�%ݙ������m'`��B8X!L�#b�����)�P rx%�.��pU���JI���K68�n���rSh(`��|�8�X������cu��d�䭗"�1��|Ȭ� sD4X�����vim6�9ee�fM�7�dZ�;�p�����?��d�zb�"�I�Q�Rh����'�/�j��^9G�Nω1������Ώ�`F�)<�XI�� %f�0���}�[��p��',B{�l ��}p/����#7u�tI�F�>'��ȯ���zw$�'ԤT՚mW���`ݢA���s�~�w��4W�jQ������.��)$-i��ӕPqcw�j�6q�ųl$�R��)z���͵Osy���DGh�0�V��\t�c���Q#��V��)kW������:j���q�ˁ(Fqa��4�@v8�@��e�hg����w��N�TY���� O$3�Y�'��1o=6:��7�=N�*&�b����dY�����$?/U�B|���&V���v���z�0�Ɯ�q���ؽu`�Bۥ>�����,�BwV%�XR%=UPU�D{I��R�k������7� � >�D�M��/K �؉}%x*�g/�:�t�t��z�q���+�%�w6]�:"K�-@�;]���GQ� ���>�u���� �4S����Qzp������y q'a%�����g�]���U ����0?m���d�=N�cO��sS@CM�~�&ef��&��B��l �qoݽ��1=&�y'��mS =�����}���&���"4�����v$uʪ1kf|2���ِ���S�+s�Tl���Nr��WX�r]����/�oC�����7� dx�6��Y�>�2=--n�)�5W_ć�6�9sQ��.b,����%|�Ҽ�(+�`�3~�v[�P����;�Km��ȁ�C�n�� F���cU� 1�o���/#��G$���r/ȧs�?As��*��s�Ƒz��O-��%�7%'�I7���]Z?��nN>ap���(�Z8 ����Pj�Q�L)�ZF���ʌ�@&E�H�]��q�P�����*J�o�B�;a�U��ϩ7W�D^d���~qy7=h<�L�q7;�wqn��V���N@���5��.U�o����`-RG�k����f� U�������~���OD�# �9�(C��HXw�Ļ8~�G"�-���+�[o�f�^�%c�I�ݪ�<��}��I� (5<ɉuVl��KMm4�m}�ޱ��C�z-�N�K�p=�T��gЎ�~c�3a'�J��db���N)Ulx2`��$�\q}��-�T�DzRX��]���x՟.h��6x1�����9�(�/��a[� ��1�D��4��m�e�k���or�OO%��� u8����0>���wv��N����]�,�(��5�s+?l^&<J�Rٓ̀�< wY�>ꩦI��☆�Du�'�6=�"?FQ���� v>�e��}�� �o�:#�����8i��pL5(���g��v�Ub�,��.�%EP�_� %����<�ܑ�xH&���k��S��O�9�Esh�r&�<���1Ug}8$�?��&8����z;�I�4�iN(�|�-7L��^�pN,Ñ(,��A�{�C��Dc�ᾜ��&˛, �"Ho|AGe�!��(�s��͞3��l��x°��g��ar ՛���qD=���٘��9� խ�Z��|��ȱjib�#o87�ȇV� ��R�b����j%�EVp�b���í����&ƞ��+��r9���q��w����?�y�g=��ի7��L�]��47�i�1u �^O߽\��a�h�s_��'�ݔ�L���Ң ��)���^�-�X��z��?͔p1U��i������ݖj�{��ۮ��{�0)sX��7ǭт�a��� ���b�P5zF�ԑR�w��kh��>��,�Tp��S�o\��5h�?~r �0�syD��P�e�� =�t�1�%��$������ � 5�k��Yv�����5�xaқ�_G��x�b'y���@"k��GhZ��r6�m� W�w���)c��*�Z]쎶��Z�o]П\<�` ��O{U���nI74�� ޕ�A���U��b���g��T.c���a7�*���X�-�=��o�/�����J���L{i,��� ��Z��4h.�ם��N:s ~�'£�q���4�6\D:Yiv7�}�H��Mt��R�>��۸\�1��0�n̅I�"�j��8ٜ�[�(b�g���?�B���.=w��P��%�,F����f/ȹ��(��v������-�r���3��@_?�0��;�2�j^*�p��t�F�����H�H;SG�������!���[x;uqBp��e�Pѥu.q�1��@LR�YOAIH��Ig�[N<�:���n�kY�4�yW�r���ˎN��HR��UčQK�/�|�� �7��|a�=�����0n9P�p��hag��F�K��-8jz�� �5�����wZ��rʮ^����>�����?`V@,���#8Mp��OM������k��@�[Ǹ���4����Bc</�|r� �J�bc�o���둠G*�P|q�l�"u�O5�ط��<�wC�o�xV����Y��{���ꙕ@�!��P����BV�g���;� *�U�*��A��J;I+I3?X�ړ�8��gu&;�< �����&30��}��O�v,�6 7v��ؗ�pTY��6n��C��Z1羰�.eB�3AD#V��<������e�#�h��#����:���;~!'9�4F��VY��70$!�R�{���{C-cc���X�Wʩs���NWp�1�cp����4Vo���3}�H?����s!_��F�b���fz��{�������A�ҥ` �����!1--�� ����z��gMK��G�/;G��H� �*U}�[V���N��c�sW�<f1_`܅�d��ԟ�}4س�S5�L+Ό��O�_� �Md�1,��!��?�|CU�6ʠ�ɭ̮�r<W�K�2�C������^� ����w��o�J*Ղy-�P�~M�:�Kd�=}Z���Uyy#��ɋ$"b?����>�z�A�-�P7�K�3I���7��J{ӟݣMs��B� ȋ~��y�t+UWl��%�55̔�́�^Ԙzd�.�Y�:�L�p��QY�b.x�|�kE��r�t��j?4b����^�!�< 0x�*48�8T���n��kj4/�+�A_z�F}�>#ĩ32����-a�R����`LX,���rZ�KaP.\�ڝ�! ~>����{�{ =�,2�v�����9)LS�$�.o��{��֥��[������t.[s���Î���3n ���4��yV�6��I��Һ��L�+���`*�L#_���LR�D��2u����$-�:[�aE5ȕێٞ!��W�^�t�� �<*a*Ò"�= �����y�e4l���(�.��P<�S\bq�F0��`���t%��%�%[�aS� ���<߮�P��2��d-��ģz�hǮ�ny���JOp|u�а$8yb�<劵��Z|�$4m���lc4�[�E�.}���1#���Ş�����5������ �-m1v2�R��sT��X�;��a�&#%�����<��8I�ٍf�I�2MKv�U������h|���ݟ�忦k�gƁS���GF�w���G�5���"��j����mz���z멮�U��>�;`�1 n4����94�1_�NX���r�`.v�����6˓�E)~�你"�� ��0��\~O��~�s��ʗ���m�[i��L0�>���� j/Z�w�D���k��'��H�(3+����4e��e����3?�!}�GK]��IJ�|��V4p��G[��4uX?ϰ��c�w���`�LJ��� c8���VD�`� ꁤ6YnC��1�t�����C!��c�lT�N���U{C�`�mV�-�~�sa*�0K� �~��y!< v��/z�=A7/��ۂ &��[�/�;ɐo;>��Q�m��矣S×b�P�5;6.���\x�p"��^@s�K�p�J�-��cq&��sG��h��+��c%�����Y�@ޢ�_����3�zz�û�� ʺhB:�i�[�g�3iK���6���L 8Ea�tq%$L㔾M����]&�:��%���{��y">�;pz �)���+�:T�q������',,�9��1d&�$�P�+'�!�L X�Bv�e�<7e�u���T�ܵTA����}dR���rO?O�z�C{x�,K�q&}B�#j�؏�� �|���r/T��2�кUê~�JzȔv��ǫ[<a $n�q�p_ʓ�ZJe<�Ň� 0�"�0 c����?�0�j��40{"�ٔ+��L#9$ޭ�/�w� :�%��X�v!�<�Q�,��v��è�н������s>��\oVTV�w`���mbY�A���t��!�?E�� ��$x�2���]�p��¢N7A�Sp�l�w���������QtR����Oܿ����[�<�,�,d��ʡn$R�4���tTpPfŏ[�]�7�6������%�s��?�Oё��-�'�)Ⱦ��zLh�䥚]d� sS�FJ*��%���[dui3X��1�^s�d-16�z��R� �:��_��r�Sik���k%E�%O�ӓKx�K��*�4+嚻J�`dQi��y ������.�ݫ(�b�"Q߱��Y����4d��v~_`��� aݛ�^��٨A�+��22mQ�Ӎ�zm1��1s��.�P�͙A�}�Y����k�� ���#� �d�'}^�����}�C��<��`�IDjl�nw��օ���v�J�K�����G�9K��h�[Y&)w���u��c��iD,�X���W5�{OM:�.��r &#a�<��>�v-�>3!��=!���u�&[+#u ̯=V��Ԫ��n����6e��^w(� i�+T�2��a���{�0:�_f3��fPGej���=�b2���1�����1�í#��J�ůpw�5��/�35��dyk+�Mηe��k�m����NK�t� ��u^�P�Dcu�Mk����%�˔���/g��)1�l�u <�p���U��r]Z\�[��R���7#��� ��W�TLNpV���&��"S��:���DU���0I���~[B[�J��<{mpN�Ҍ]f/'RIDg�~mF��{Oe�kk�C;�6�$��95~^0U'��f'��K��[�Y�k����G��K��I^B``x"p_��U���T�v�efH�c,�aF�h?��ۻj�Ч�@Y8ymd��z��(�8p�����y��������ک��?�:�v]I��çM:h��8��>��0���+�C�A���X���3OCm�c=��l��+]'?W�D�M\�|��͎�X?/����N٘�W����]�F#A���pyL3C#��������)w+�\Q��IC�e�bv�1���Ǯ]���V�b�|<�Je�Q�j,�mO{^��>����j�ͳ6D�Q. �Z� y[{�N'����*|�[���`Gu��&�cMX@��=@<詉����,~.y��o�_��iZu �� ��P�Ӱ��y0ʯ�L��Yh�~z8��U���# [����Ө��}�pl�TV�,VˉT��n+0�6�8Ќ��Hv�Q��E`�x��)dE��_ꢓ����\FF����|"{���.b=D2���nf�>^(�u��"��15~�oFŅ�X������a�g���^����ٮJ��+&��K��}��|���If �<a����TT=�Q��+3#���7����u$N�7,�kK���*b��a�ts�^75�=�h7�-�9�>��'E���+���z��.�2͋��E�)֖���� ��yU�9��#�3d,^�>�2�����~t�Ղ��i[ަ����7AM�$�N ]����kjO)b2W;�P&"z���\ ˝8��;������RM�"�>�<]�)݂.��4m�j8e�E�1��*�G� E�0��v��ңr%;r�ٸ��/Q�~R{���5��`7��v?#�Jw�J��~4��`��FЛk�A��|�L~�`��~����`O�x��A�o�� �*o��,���sf%* �e1ݩϘ� �6�elL���5��/iP �,Z���9 �+�Q�eؘ�\��V��0��{�??L��:N�z�.P�=�w=�Ly�1�`9@:7�@}|QP�j<��`����Ī`*�� �'=I%�+�*�3���L��$'��;�Ģ,zc�Ҙp��Mv��o "�`6���zܢ2ɉ|�|���Ȱ�kV�#$|���`����Ie�A��\fO}�A�uL�)ݽ����,P���h� {�$����)��J�{s/��X �6���r��~����͏�'IJw��WH�n8�Ǭ �g'�|��ɝ�]]j��"@]�&&�F�,j��lMig�ط6� @��ͭa\�٫���eu��K�(�z���5&*� }#}�H�J�}}-��y�X��:5��"SQ��J�j�ȶ#�.��*Nu٘��A�����<�z,����?��6*o�3�}��=���w�B˴�2��yMz�ͽi 3��|��U�(e�#_�� _9�c�������´�_�l<%���;��@��/.m�d�z���^��R�:�Sԋ��%h��8��1|ux���9���~J�U=�Ā��4F��f�lz��bCv��7Y1�a蘧�y7��L?Mv'���_��K�b����X�7,a��R�Ba�xS'�w��2 cG)�nV�I�0��E��mf}G�{�n"�q!x$O��и�7���}��"� 5�PJT���'��D�ߺk˻EE�m�������l9��ch�W��K���Nv��o,x�j�������� GYL9-�9���I��{Y��h?����������i��ֻ�1#>l�q 1eX�N�u�2��e����'.�!'�������%sngv&��Ĺ,�At/�]�����.�sϠ�H�XT"TS���A.ͤY�?��������M���{'�Gu��F�`�q�&�9f�ۙ���<��p�Z��i��ja��Ӿ�A&�ޥ�"d�����EM�0!�2/�%Jf�MSA�I7wӦ��!7�|�ym�(ޱ��J�Sr�!���'4p��Хka��m�/^w4;��*AB��[���Rh�ܚ��4%V�<��2���$ 3=��ō�l�m5�q�UN�|� �]��-K\~Qá�<>�(�eT�.���}�z�{X���-/��+���Nv�q ERRà �W&*w�7����ݨ����۴�_@ L H[I��h ��×-W�Y��c��D&�Rx-�w�vD�M�0[~LK{�$�>`MI=>ݰq����H*����9Q�|^EݭS=�D!U�u֛�<�(4�,�g��b��H��Gͧ���)�]��|q��X�`*|g��ߨA��T����k��.��& SWK٧@�B���a���.Բy����|�3&�,��`5��i��cI*q��ʝ�Vx�Nq�� �� 7�e���E�Zl�M�ܖ�J��wki�<���5[XBi���}��B�˕l�e�9vnt0�P}[�.�X��n0�7yVF�b��m��؞B���Q�Ȉ��Z���M'��ܔб�O}7���&YE�4�芔ZU�G��(ea����1�z��״b�ˬ��h����R��*U��7���y���(Ħ}U�+�Ŭ�M�Β��&��O�L8���D���y�w���_�r�Q�)g���(l�\�Id� ��y]�#��{1�P�j-�L�F�rd��g�>�yu���wUXUM�g��7��5*�䁔F!���k8�Ч ��0��w!fo�B�xU}�*S8�/~��4I9o.�Qj6?5�,�Ł��=�l�R��\S��w(~�Y�Lů?�*>;^{�_~��UTI?�ϙ/x��qe{k��WK�����}vW���9,��~��Z�~���Z��+52�V[�4~v��ztR���J�Եw�&�� �b�e��N'��։�=?�jb��W�� �T��ح��L�2��6�cqZ]U�x����G}��)�����/m�6��c5��M��?[l��n��nfh��;[���Xy�)L?�>����;JO��Pƙ�ln�^b�.H��32k�9V��+�nh�5R���&o��))*�����Vjf�M�~ƅ�c�%�f5FD��9-��ƾKx��HD�R���J��|I�F�#���L|9��:i�9H0�%ޥn���/�7�C�f �RՐ}���;1��iO� �F+KI��C�eYJ��tM�xJ���#�Q��9���� b��w��m�T=_!���kR��N���D�u��L�w9��:��,��e\�䊃|���lS}����B�\+R�0����C�,UQG�uE/���T�J1��G��d6>�ch6�e�d�v��Q5�2�$t��s����/��*f��G�۪�_��gC�g�K`��<��J�$s��k�G�9Tu���/��*,F�Ev��SZ@�э��3��(� ��d�p�������o� S�L����2��4��N8@Xr�~}���}p�16��.~��� ,�H�� ��?��Τ fF��[�ʕǵ�l�Z������U`6{�J����~�f�S�`�o���KA�tl�f�����h��y�9i�[���eh�'�sp��5d����Nw5��a�iE����KKS�Հٙ��?l?��������5e��LI1k��a�k7�㬭��*|K�c,�=����f��F�X���K�~�{<�p�V�g�R�6E��_v>;݁y�9�\��Z�|dԞa�iѯ��h��؎��Rm�O��7��`�b�3���*&���5���?�9PY��[������?n�(�mY<Sk۳m��=�~���*.k]���AkD��o�/�ā1���ƞ�|�)BnYq�H����p͛r@(�`�v=�e�$�x�r����<"^�,�!�t��:��@�����9�qǛ���G?���p��:�,hxW�P�%G��+,��&���du�?<�2G�<߃'�����`[�4����Ձ��B�HL�-�.��s7��Iw 9��X�X/!�ME�g�f� !B���m�&d^)���|6��"�q` } b�J4�y�?Zk�m��,��ʯ� ��8��'�%��"����ۊr��UeX��;��T=~'��硖�]U���)ǀԪu��){n�����{���.��� �[:)�p. ;�o��úrC����<�?�q�>��@��f(n&���`���¡Q�Mh��y��bz�院�j���jt`��X�Uǘ�.�t�:�W����8Tz8��8�d��x��mf��K I�q�`�!�z��+�-�c/�������y��4��v��Ň[=ڏ��$d�&�{�# ʚ*;�z��j�)�_�G�\��u�6� r&`L�F���hO4��vS�k%�_Gֆp��li�f���������3w�T۽�?ENs�!�a*gaOÉ����m�7���3�v�܃˜�Y���X�2��wgs�2@��W?��8/#�E�$@�-�C�#�u���G>�-vVE]{�?���|��^挍���� �Yu�riN���hh����� [bow86�ɩ3�n����7�(���Ք�Q�����ptO�� yH=$p�r��.�,��=�,�aj�ډU�ms�Dd־� ���@��ϒ�^��l��J�A(q3'�[��O���1��U���� �?�#�L��mcڳi�)���Ԅ�my�@�ua�~���Q��'x����4|���0����ڊ 7=2n�{2K74�I&��z$�q��`쮝�<]ip�����a�r���J9w�aS0y%ZB�c�gE\>�oo� gOSD�e��� a���|�h )���!�+grI�0�H'�o�����]��3V�{��X��9���B�� W�a�'��cI���$!gr:���8q�`��M��!>��n�r�qb�e�B����$FWUPNT��(<���^�T��}s����VU�t{��I�>���a2c�ϑ��A�m^9�;��V�[G_��E$�A��"e����Ǯ{x*�'��ަ\xN��R�[�=�AE����@v��֖�E��}J���n�z�︬�= AJ�n���fGhW�Q4�J�]�4e�Ŵj#�q]jf��V��aH�/Iq������ �h��{B�QIT�ې�W��9l������ �mb}:=�M���w��Q��� E��?�'� [��D s�`[_���5/q���� �za~%�y�ABay3��*�J�aG��ȃ��7j�.�>JjS�?ٲ3�XT��괡 ú���� 'faaP�X8��T2���.;p��d~��h�ugy1/ȅ��Z<-�qt;��A�u�f���d� u>>��Ӳ�4�q�h���1I@�>�TU�5.�@\y���`w��C��,H[|�l@�("��䠑�!C���I��{Q6�9T r&C��H&��Qm�Ӿ�� �c���UI�e���p�6H�I�j�@�)�%� �<U���@��s�Ŷ�r��e;��閅�(��N <��J"ɍ���uէK9[ӓЅɕXf�AQ$#�4:H˶۶?�)��8�� �F��ϐe��s�S�>��&�A{-��K�u���Ǯ��OC{��S��A��e���f�O������P�f�^�\�X�Ͽ\xw'���aɮ�M�Y@��N�ɼ}%s�*?I&�T����هD`o��};T��hS ��g�f?l��S���\��!��|1O���(k�=��b!��6yov`J@7bTN*�Ȍ����K���N{j����%�+؊�t3<�I�e |�)ڝzG��n�.!��c �S�a�S������D�O�b'I(3��o �͌eȾ(�F�c�;�&�p3e��"k��:YV�:)&�b��34z�CxE�a[?�q�_0��U��d7-���]p � ����x8 �Bo���mMf�����g�rܩ��m(���y��M {����tvo"�=�c��& ��%R�D���A�7��j���>�'σ"�=�k���0�!���yҠ?�R�n��H=����6YF���Hn���Q;�eO��wݯ���"��[Kf�%��'�"%S^�F;w�J ���m��_LA�{aK@m~&�AUh��'��1��}����°�s����V_c�14h�g"b��A�4� ����x��Χ�6�A�j��2�vlUgiK�GƄ����C�+����������?8ς�D`yVo�{]Q�Vm�yK,���em9�O��&�2?3] ufOG Uw�zx1�X��#�PE6�iB��`T�i�ՂW�D�$!�E枒Ycp���FT�i�,;��.����vR�)2�ɒ3�]rPo�Ģ���ƞn�sd���/˪��*Gx�T{WV�ۼB˜�TN�o��i �d�����=+m�+8��4xp�ojLd��^�*���&��φYՉ���<*>�����z�>>��r���:~bhV�����F���:ɕ2��2%M�� �E�߰�x��&%�ݺ��Zu��DRpU���F�ݜ�����ʲ��{c �?���U�V�����^=m=R�Rv���͢F�G��)w��gh���y��3<��7�L7���O-`4�Z=Q�% 0�<>�S�#�-�m!��hs�מ0�Q(0e�&�|N3/4�JPwp��ߢ"�����Rw�����1�Ļi��*��2#̰E0�A�A`��+�+���iV�2��ڷ�W�/��<�P���C���>��˓lI7��;7�����vS�"�����į������p�98$����x�CT��v��]�OQ��I[� �w�V�����T�����h��3K�����5{����&1�ب��9��H?9��Cڟ�(�����I���+�YƇ��<�rω��R[x)���*�������JW7�����b� �i�̾����v����ɥ� f���e762��R���%ح; ���UM~m�2��Cg"خ�:�"�6+./����T�<y�s������#�ž���t�teYd�O����2��~`�Q~��L�kX8�$�)�Wl(_Y��U��� �_� �(Rt\m&NC������\�Rд!Ǡ��P��n�*Cv�fJ*!Px^���� A�u��!>�T�@E'r8�PTؗ���e�il��]z0�i�ϰ8��!�iy߃��.M�9�^z����z�l /�qْ\'�s��:�=9c�8��R7eR^ċ�w�9�yZ���]��kg�F)��{g�[�u��<a`yK\�(��_}��3k����9��x��� �G_���?-s{�6�9߱G#��NE2|�O�����=�8���r�[^d�-�i��7r��ӳ��2bN� q��L��`Z� ������Q�/!%|k&s�5LS�hs��.)NF�˅� �"<����R�y���z`���a�ש^Y��%{a���a�KI]Y�.�q������|O�G�%��S��*)��'�%�=~Q$I�5Y�̐�O$�9D��W�+ד?�U;�x�����EF::`��o� $�ڙ2q�JS�r��v�@k~o��c��C�Q&�E�ƌL��vg��G�>�>�D2�����ffn1�G�wF]z ��2�2�N%Mx�c���Ym.?@�;7�FVlb�x[쩄���H�%�!͍� �ь30ô���Չ�f4�}"�Y{.�Ϻ��D,���5��h���G�oNZ��k,���q��i�p1�M���%M�ܳ�h�):9mX��JE4 �q[S��n�5�����ߑ,�C[���������1k\w��b�i�pzs�qa�-����1������i����Go��X��j��`,�z���cG�|$�3 [ P����W�OZ* 4�P'���)ϥb3��o�m)j��X��&�3��9�h~����?����CӬba�.t@i!�HS�s�v�u������7�Ūt�p� �an���ڀ������U��ۭ� ��*b[����AP�*Pś��@����S'�|Uʬ��VT�����+!�σ4�O y���?c�k:�#��K�e�!¬��/cr�R�<�^W���(�~���vM�?��zH�}�H2a!O��I�5���t)��BūU�����M%�:(�]����H�����#_�N�S0`���Q4�>�<�uu�s��l��ץ���v=�S��g�lr!�^b);����[5��٢5#nZ����$w=$�%g� }��� A�&`��?�($n9.Z���:e�okq�:���ܚ{��EuU�U�p����\�߭i�����#mC���T��D�I�&�^�(o�)��v�EL�b��l%X�\SR˶0 Y�}����o4�q@���� 5�����x��Ҵ��8/�E��H��@x�>D��dա����H&�$�!��KO�����W��!��>��t�&t��UV�w[��c��L��m�?��8��"z]�AX:Q�Q�~U�RI�@��|+�d��_e1o;N�Xm���6a�ɥ"�7Ѩ����ʊ��wI��u�'g<�s&�n=��I�MQH�n�������:_Vr��K�������R��X�<�o��^���ס�q�����7f{F\�.Į�W��3���s�~���S�œ=[�D���`3#��yЩ2�b ��JÅ�����J#_[" �Sگ�@�F��r5v����dOX�b}�%��xe�4tU]�CiѸa�Џ�?_���x��߇%KK?�a�4��* pe'��i��R��]�3�\���H�?ﮔ'V��_�����͊M���P���S11���;E��'�,����E�1"��(N����Y;�h�ۚ�=x�x@|~�sH喱�����a �Q1}��>�{˶���8[<�2霨�4�G��"~��@�{t>ȩ{�T�I!�|N�>�$�c|gh�2Kh�Iz`�ZO�P�$�\3����ؙ(J�E؛�&�'��<qa�<Zo�\K��n�@������",�Pl�\��8� B�Ԗ\��=>�XƢ��;�s^`��f����Xj�������Dk��w�9��M�ց��7bVQ;tV�6E��5H��m���vX6O���=����҉6z�/�1�(ԪC=��,,��|����l���/��,%Q��S�z<��`���/�]�Cc\VY��`�C��"WY�+��4��}�ݥ����A��5T�PW1A���6�e5���`Q��VH��7 �nǧp�_��|�Q��)=`��5\�>�&��H��g�A:K�����nt?%�PK`4ɣ}e���q����㡠��p�ʯ�KW�q�����7X��Zs �c�De����>IH�'���CL��)(W3�|۷8nT̝��e��/˕�u[��x߿c�0<��"�ݎ��� ;I�G�h�bX�B�(#�ɮo`1Q�Y�% dv�\��;�GE~��#��3�/Hy�e��G�?���"��jk_����ق4��eAG-_sJdaq��6/U��Ā��U%��F�tF�\K(ݑ��S�:Z� �;�ZF�+�� �h���0�1b��?Z��/�F�ߍ��t��^Aj�&o9�0Y�<}6:R�@r0{�hn�?c���<� ��KMS��RS�5���z���t���wneh�y�K X������Q40s�r�W{�u��;=����\�,x~p��ꭴ��3�'|]�~�]pY�r�)y:�/�e��o2�� ��� ��M, �9�fD�/L]���H��jK��Ra�o�lb�SH �I�e �)��"C��E�&�6+� � S5��5J�0<e��k������6�X;6��eT��b�=�g.r�#�A���|;d���l���V6��`�Qx`�� �w�OA����%�@��b����#ijcn�z�r�����XF��_��\�o��P5�Z�ԒiOO9�� 8��z��Ӑ�Y�fQD�A�M��+�l�|��V���$��W�����5�r���`��>(o8�r���ΏfZ��4L,��Tn��e%� WXE������U�:Z �eJćy't0W�=RW�� �Ў��;�v���|��C2t�|G� de�t#�w�}��87��W�� � Ñ���خ����ʗ��q�4�t6�"0�%�sm���&����+��M ��QMRu�9���OgI%�bgw�ep��\�`����W�1(!h����$�/ ߮��Z�� =v���ImZ]��N/����R �sQ�H��,�� ]���6�5�U~"�yV�<~�����!������ѓ���0#��2������i��,���x�3�B�Č�o\����)�6��B��Tr�j:�oZ$�p o��t��Il��S}tH|y�������x�B��y���V<��x �����`ˁ��$����Dߗ�l��v�։��>�*N%�k���Yd�S�����CA�лs%�'���d�K��'YI4�Nsv�_X�����b)�^>0ա��}��uJ�!�6�OV�yq?#I��m:������;�qO{�����/G���4�"V�P�P��x[��w���m�ٶ%��� ��x��óS�"܋����qnVU�?��9�J��W0S5�Ȼ�=x�2Z�T�<���؞�����L I��h5����~���E�0�(��I�n�Dɳ��bc!�[�cP�������$k�9Y���� �_R�(�an?��bg�Lm�:;�s����5��#��)�~8<���RͲ����QDM�@��ݚ��Z�fW%vs����F����܍�'w��2�Z��<�MG.�?��.̍��u�.���(�S`���?� �h�Y� ����A�>��dU�(ɼe�����>�G�Գ�b �wJ�s�SdEqwc�58�&�Q���N�$�0%3��H9�r[���i�w����u^������/��a[<(����Q]��6k��a@I�s'��C��b)n��������0EB�6Xc�8����QT��f-�I�;Ǒ�����v���n,�e[��ҧt [�S;�Qӎ���e���<@��4d�!��[T����չ�jFk���� �2�$�f�"�C�����e"9`5���n���.0�-�fw�.h�By���͟.ߑp�8ᓹE$�(kM���-���?� R�����3�3�G<�+!I!���ս�Q�� �gh�PX���Щ(�3��!� ������m��t6~̽��$q�L��)*P+���J�.$��ˤ��j�B�6A�Z�{4��겚�N�"kr��ǑV���T���ܶ}՜Մ�K}�RO�U����0��ޣ�����L�����0#��8P��Gq�B��E��a��3��Q`�I�^K�s߱��Q!DX�Qrѭb��R���)^�'%F�r��k����E0S`K'�f��.Rl ��.�',0YP�d��^�k��nG&k^wt�`W�uĨ}��W�!XK�7�x�m��;KZ{� mg�|�D%$����,r�xס ����Հ!n>�y}����Z�� 1�77>#]�=�g���]_�.���>��Y�$jg!A���y�KYUJ�;NqFҋ�DP4�+u|T0y��h�f���<�2Z?@�P�FR�r����f����\��e=�"��Y�a��J�-!Gy? Hl�ᮬU�¤����7���X�|�rK�aX�S�C�k_���)�){a8 ���E�j�u��) �1gOl.�1O�PM ���遀a[��}�bd֦E���A���ͫNT��ZD�E��6��Fęl ?-��e��*�8��� �f}PD��H-i��f�r?�,?X�{�F���< ��65틞�و��_�-j��\͖�R�Ҋ���[(с0/�RG��sZ���W�_ui0�R��;ē�����:v*�'T�sP���}h��H�v����잖���w�����"�ӱ .4_[�̘D��MN]�v�S�ѐ�P��'n��U��i��Zu(Q�{�E"3Z��}��'V���y��|�S�N�ܮ�0����KǪ���r�C�qI�\����X�Z D|TB�� Ҿ1�3�� A�;,�dV|~�/`P�v������?���U���Ei�0�f�a�W��D�FRV��u��LFxN`6lw@{��Q�a��:lL��n����Yڏ�b�&*����k�TL ]oAY�?vr��PS�#u+����4�ЖZ|�F�x9��q�7הKW��ZzU����tLd�%���y�?�����:<℃o�A������L�#��0�6#��[�n$$�:�����"��f���k���h�t�V��(<�.snj�vyq�aN�p�����*�1gAa�����=���:���������-Ւ0�ޕ��-LT$KF�,���\gk�il{h��b�E��H`��������l�8����7[�Ͼ�]���n � ���Ѵ~����d2wrv�nX9͂���e|rZO(n��X�G�z��} J.�L8����*)Va�g�?6��G�@-U��P-�e� F&X`OiXT��W�0<7M;"M���@)��zjBw� �u���4'�2�-�3�R��?F^j����b��23<Hz�eE�%�\*o��-/1��KKE%m�ɉS}�g�i*U���ě�{�ѯ`�M�u�dzL�3�V:����z���ߤV+��'7�㱔�L��M�RY���ho0�O8D�3V��M�s︠��X")_�r��1����Cg��$�رC�?�9k ��ʄ؏�oc�F�$67{�J��t���B�U��bv���7��c6f]E.�ȵ�4� ҥ�kC�Pܐ��C��2��H/�n^{1l6���:0��$Mݤ?�1�h X���y��� ȧ�l���._u�� i�p����{��G����ζ2�~F��>��k6L��'x�W˯��%Uu�)�]S�j�� K�k��\ۮ�nLw�"[��� �:��dKk<���{�7�{�r9�ր /�# ��(Fҝg��,i}��{_\Z_�Q��0��wR���>ef6l�)�@RZӃArH�0��ާ-�YK�9��ރ�r��^��w�.o/壏9*��x�-6�j��G�y�f`����-��Փ�W(� ��n=C���f�o�3�/�R�����C���2��Mӝ��������ߖ��,�VӮ�A���a�1�4��;"�,t�/J�#���AN��Z%t�E�4�)Ch�����f��S�L���\[5���2#��4�gg�TK�5��#nO"�m�r�@���_z�A��r}ك��~g�����q '�'�j/�(�c���WOF(���(�n�R��@*W�2-9�# +���։����ۂӖp��htP:�Y �n=y�9��h ��rRw!�ܔ��m���C:K������"T�nH �m�K;P�β}��m;��X�n;�,UheT����}��6�Q�)�\Z���£�ō�`�(�J��Q���5:��T_�ʸu�+��:t��?mcX��C��A�����N,�����e�3MŮ_׳�a��l����Z=f�ӡ�>2 F�`��Įl�b���8:D1�3�{q�� !�I<���̔H� �1Ձ��"Ǔ�/ޜyB�aA�9Axw�/���w^�C��u���I�ܭt |'L�|-jL2���TPԈ�!��aV'gd�5�H�9��&K�38(S�!n�B� Ѱ䭨r�G�[H�o���"v17������l"Sj��A%����B�v�}\�?f�d�Ta[�6�$w��C�wIa �J������ˡ�m��?����,�8��>�lw����1� �#Y�?�QFI����p�/�T�"��Ɣ� �^���EO��y����u�jb�����\3Brdž�o�- @h�����p��-�a��cP��4у��u�� �����D���M��o��w����3$��S� E�цc�p��8�PB�{��(Feg5A2w�D�𦽍l�� ����A�-�O,�h���[��l�e��9��( ��8�JW�{9�Zf�*\5u�&-�8;>���;�:چ�GWW�hJ�ɽ�E2X }�Z8�|az�$ω;{�o�LM}��T�BU�j����������[�Mc|��d��y�ڱ�~����KT3g��N��w�OOF�w1m��h�����+�ځ�A��(A�{3�6Z������� �����\7�#Ą3F�����n��>v"�q��wp ��yU/�)�V�]�i��8�Gb�M�.HGQ{!���J}U#٢����<*���LjR��&�D���H�g�Qp�T��Iy=��?�Ċp���� ��S��s���ʮ���b�ͧ@�?��-��o�%5f�P�^ז�1�Q�\D �rL��L���V��Xnb�����dZ�P{�%��?��a�Y{k��w��K{ˏ�M����0O�[���7Հ {�F����e�gٳU߅Dn����w �:J�2����9A�p�{x�-{�Җg��k%�A�٩��[y�ڟ�5ƘEI��a��*�$�1� �y��uC�T�M��58I��^�(^����U<�)�}ʍ����E�*�6�n������%-��������)u��8D�!ly��>�[�λ�ՊxrZ�g�n����/QYQ?+���E��0�[���p�>BB�����$ߗ��Di����'�p� �}�[ t{�j<� dp��e�J c�1��a��ҝ�%���ѤH0b�[�H��]�ú��7>�gpp�e���']�5���i�%Ug��3�Q#�[��YU�1>��,^!��]&��[�A�/���|?qx�!f�飜+�^7B�9o&���mf��F(�� ��S��ΖyX:���'�g;"��H������G@XX��bY���VW6d=�V��NZx®�)(�BB�0�,�!��&[?�տ�ˈ���[��_��Ȏ������B�=`Nn9V�/������^�#�42C)�������M���@fjJ�1=v�9|���oΞ<��Un=��j�G� ����h�i9u$���8"d M���;RnqB�o(�l�K��T�o>]Z�$[�d����i;��l�zG�Y��d��G��Oa�ȹ��1���[F����?E�em9�j{�y͈��O�F��т�;Fa�(��q��֩���;�t����(���b�k�`��\���R�"I�%Vb:����t������ؽ?#Lu���k��6ω��ͩ��/�>S�(E��M�Q��`$X�tw6١�7Vޞ���roZjT3�����3�]W�HD��7��[�m"�U)C_Z�Ƽ��>�9cc�`����fv�V�ҥ��{�;{ܩjv����I߫^j;�շ��J�i����xl�'��2@�N��a�w۾� J.�������Gv'��@�6+F-2� *�|�Ԭ�@�gg�h���q��3RI��Yٙ�T�A]�o�YE�A� ��O�V��0�h�۠-��`�>���)���t!�XԢ��Y�,R�]��#��<s�a�����c�� ��#�&����mo��Vw,�o�D�R�NQ�[�!\� :ۀhv� ���!��ɾY�~�!��IK�{�A���g&`��*zǘ<���4�X��ooژã����`�P��X��͌ί��J�=��c�{�<��w�U �e���Cu�^��$ ?�| �#�( t�{) +C��r�S�<~��Bs�<�j���L`�E+@�+���E��*D,c9{���%�Q���=���l�_�M��Y*���k�a�$a�5�f�?Ȣ*�މ�`�o��b�c� <�U��_~��A�G�s{%P�з����o�u �l{KB{�j&�h��̰_����`' k�W��TRG��>`B2����n�á�o�B��f{D�X�e�G"�oq*� �΅N��J(%���Y �*j��'�0`�7EK������ߠX�r:T �J�7ר.��)l��*�x4�ʰz5�u4�bML?�0j�[A�����C�3pNNU�U�8�g�L�F����~�E�����Yps����M�@��j�еyIޭ��/gN@)��L�jO� ?Z�PmJ��9����՜��$�eH(��b�\c�`\���d��A����s�>,l۵��ԭ�)lD������O��נ�|S�{(rx��C��X�*�'ݑ���N��6��8>�f2J����o1͙w,�5�����ڡɼ���d����=���r���[p��bC6C�Z�vWۆF�ә�_�S��&�w�I���gX��J)�16��K���^:�U��%~F�o麟�~�>+�m,�x|��HEIE����%U�V(�v�P�|�l�k ���7h�*��O8����<��qJ�=�K�љK�[p�|�Ca�=\[�y*���}�,w]w�ÄXF��/\��y0�\�Ҵ��� H�c�-w;w�]��T��dӈl���e�<Ȥ�<Cahl3�ƃ;Ԅ�|�����9���7QP��NyzԼ�ҋ�q���}��-9ؒm)�jd3�a�2�|s��59옽aG;�� �l��胩~`�#�SY�Q�������!jX�SF��|�BW"���s�ɍ)rփ�C��Z�T��vR�y�4���]���ߒ�a�M�Fg(̩���2�J|�Q���Z�Q��HP�vZ:�OG#G)]45�Hۺ�xÔv��sLn6I`MPk"<+��yY�f$u<h#�:�A��� ��o��� ��S�;��V ~k�tw�VT_�~�F:�!��ސuY�2��vK��A�b�p#��<_6WmJ� ���[���$w�juZ!z�ͨ@Z!_��Nw�lRO�5I�Ba�s ��iMS���@��7�l�v�ɘN�R,d���*>��\e��!��¥��IV|41tLٜ��o�G\��k���(�hPӓBъ��k�Q7H��|c�l`�Vw;N�Eq�K1�N}j`������]��ZJ�:4���KQ��bt>;�7�*J[�?�YY��M ��Oby�}�2�x���r�l�%��>D������)����8:�"PO 6����(��G�(�A�Y���l⮉LJ�N���)/���<�a6̞ʬ�#��Lx%Pa��3�J�${W��S[�v�&���Z����� �}'�,^w��(�!��=I$u��h� �V+̫z�����V��l�`���R|��w�Y���]�ɼ*�`�)6����v���k.`x���_���J�:ړ�'+��T��@�����&gn#�O�JY�nxI���������(^�/;�|�ti�`vb��,�]�@`.CR� �h��1�`Sŵc�����b�ͭ���r�oc�ȣ2�x>�A�a�"u�zY�9��V�j������ �P�e��#���wi*� l�)☮X��+~����������^.�t��vҦ�:tN��j����.�߶�oy���(�x��O��E-֧��*jm98_)Q1ݧ�?��N��r+V��&�p���Jg� �dew h�{ 8�r��8��n�N�ç�Deٙ���B�O��ܔ/h9��,��Tag��D�6�'�Q3�-��ynjD����^S��ѝqVj��?�� 7���֡.�+�^{���4� ���M��gX��e�����{~: ��RY��6;ͨ?�U~皷z���.l�ߘ�q�a/�8��@}�T��q�kd\v�;SQ9 ������TX QΞ< �'�!8`�VYF:�;�t���Jv*KHYGX�O�*��>��_�����u��{�|_�з}���iuЯ"���S�'L�W�[�T?�Y{Hy�5�74z]��F�.�z ���J��r�rEzY��j�yj�Y.&?9�;�Ŝ苋�z�q*ᮖ��>�h]-����B��s&�N�Ѧ��x��A['����������Vjշ�F���¯&� h�,�u,]�P���WsZ�i;x���FOމ`��>�.��sp�/���j����Zz�⡥��N�R�>��D.��8���D <謗r'�6����Į�P�%�@Α���w�_���������tvmY��-�i~�X�=��0��$��>�3��I���őb��ѳn O_R�Lg��,E@\�[���a��MQnr�&��C��a�m�<#�^��I��ρ[��bȩ�biOtT<}����f�:�t}���嘊��Ņ��b��\�W�tAf���;�����k�l���C+����YX���K �7C� ̐��ڱ�����VqS ��L�j@3�sߟ]@z�f26�B&����|�9�C��|���0(�%��>�����K[�:�o�C��h�}�}���tnr�אr�E�J]֎���MܕU�|^��p�lj�^:X1�a����Q�%�r�2lV�ٜ�e�^�\�?E˷�G��L�D� ��t8�X3�ȟ�Ð��K�|j�v��W�8]��}��ܭ��3;ر����y�b�M=Ԏ�5�0���zf��c�4Y(:����~����`&`l��������Zhu�.�H�G���Ճ?7���'2D5���8���6���]~H����w�w���nC�V�ͱ�ߢI�D�p�ijن L e����/}}&Κ��{p~���}����E�����Q�n��ꚺMB����v��Ie7Ǚ��H?}����{Q�Ґb�t�Xu�$#?Q ���U`�f�߲v��#6 ��´.)���?��K����� �r�<�WQ��"ب�j�tN^8,�Z�c��P�G8�I�.�:"�!0X�h�nTe�����g0�PC8�:7����j��8{�i^9H���g�NC��̓���D�%Չ�&Y����&��i@��$���Z�l� ��%#������a�������U��5ՙ��oe�K�*{>u�@��5�gSb%���~���9ܨ��`z��S����/C�Q��Gy1���$J� !kӄo�q�?`^"�H�a�Z4��싎z��o�F��uj�w��YZSn~���>�.I>��F[�E����W�7Jt�+��`{�ˠ:�d��AЅ�1�G�{�;�K��.�h�"Ʃ�x������F���8m۟(.юS����ڞ� ��?j�{W9�ܓ4p�:�sLf¤Χ�/�M��#d�zÜH�I���� :#��Q��Aq���ǽ�1����87W0��gj�8���e{�ɛP��}�Yl�lH�� u�3s�H�������1���7)�E���_G�N�&�`�߸�gC����ᑂ��0��^��͗�ЖnnX�N��r+]7]%b�(AnL�y ��N-1�rյ�_�Qy|�w7O����4W7��-o4Z8)|��E8��aw�O�3k��c��h�w-�J�'�$�_/�/�K:4W�m���P "��#�� +�s3��}o(�HQe�"?w>�[X���k:�o&�bQb��@��6u�� 5�_u-K^}�~��4�2�Yi�+� �C9�C�j��>�3^�0�[������ ���y�o��Z�jj�b6@��:+*�Zj#h��hM�tYFW��Y�5�2歛�����!�� 6�m��"u�Ҳ����g��5��H �j$��y@��v��d����:��Z���t�<�c6����uy�3�c�]�t�[+����a�=9(�Cpo!6�lɢ¸d�R��d���i����_k��A˩��As��-�Ah��7�I5�qs! ���}*"��@Ű&���_��+��;���7�x(Cb���m�֟avW�sS+ɫ��&�����I~� ��J�n�x�����hz� P蟮T%:jX�7`6]A�g��C�p��s�}��D�j��s�y���̃�ˬTU��c+pbWa�=�On�5\�ڔ?�{t�B�Ҏ�l�Lcb�јo���$̶�6 �!��F�vl�3\,&�R#�VS5���ֲ�IB��7�{<O�~��p=uV��)���p(ًڢ��d�@��l����.S;��+[�>�̽���2�b���ۆ:�G�~�$���H��80;-A� ����M����Sn�łJ� 9�?9�ʱ�zO�'�;��=4�P/�k3�ܛ�ڭ�b�x���Pg�]4�W���d�z������BU��'�;A����vA�tւ��57hE�L���]�QRm�2ڎʤ������@_g����ҧXu=��1${�sB���jT���[A�D��A���8 ?#lS�, J3���� y;Q��]��~J�߿�< ���i�th�4z�����У��. ���{<���%ێ}t�up�nj1:'�̾K�d��9Q��g#�pF��y�3�ڌrf��+v��Z\��_����O�r��:��{�m[s���w1c���K�>�*��1��t��f����1D�h,���En����ܷ���.��t�F��� ��~%U��'�Aa���`�6��cj����&h�f���F4lT�Ό�ۯ���%�Ce��6��a�c�U�z��ڌ�����m`7!��'OY$�~�������HG2��@��^s&U�b��az�Xߕ�c<��C"�Cf��3\�D�Y)����a��$ �)m��r�8�N`�Ɨg��;�1`D�< i��6,�@'�0y�+���(LO����d�yl�T�����U`��ȤB6WWXE�]rU�XS�|��ePk��<����/����^��üި|+d�R$���aȐx��,����U�A�hi�@��^�HZ4�@Vq74*��0��F@o�iG�����"��[V鿇�N%S��n���Ù�淉 �B�)sDQl���ؖ���fAo5����m՜J��T3�X��s�b��,+P;u� O�Ěi�5��m�IOh��]+�GWg���uNB���h� IwX<� ��R���@횫6p��6ծ�S�Z'��ۋ�K�t��}��g��S�����6�=-�H��6��)�J��,� H��?�n#�� s۴��·�j���>��5�A�:7�\φu�W�@t��93���6�B��@��d�2)RW�0�ꗌ ܀����5̯�~��ś�HsO&(뵢�A��'$u���삦ލ�/,Q?�]�G�m��;�W�D��r�ήb ��0x��]�pF�&zL �3��zab���xG�L�:����|#�Ax�67�{lRA��������뱈� p[��I�������*$ܜ���ͣ�߮��N���=X�g���?ߓ���b9�n3�t�ۘE�:M�ޏ��z*�-bY�������g�����=� �7�o�H�L���Ǻ�"���+S��XU�+��e���ȵ��A���U�J��K`��P����w`Ԑ����N�AO*�$͍̯�(d��ˊ��~2�wx�_���?���@U���V�Z!��S��÷fl��dwN����(�+�x-SA�R�$���X�-KrI�`|������+�&7�jȢP�qǚ�-���ȥ9-�֗��I��b�K�Ad��5�\�2<=�鹹^ :*m`J w��5��i�$ �G��8���%(���[$0#����Ad�yjx�dž�b�C/+�V4���IkÆ���5�z4𱳊�T6�Æ�oL��v���,/ s��i��Q^��DX`eU��H�Q}�㼳��LJ;�)p�[h�ٖ�Fi��QX��0�a*�"�=�v=�/3,������j%N�Ə��G`�f�S�@��+?x�ܛr�/�D=���QҔxa�TD�D �z����P"���~"x7� �^�6��V�{�gyJձ{�.2�H�k[���hR�s�;GC�'=JA�Rg�v�ż��lޙ������o4m9�b����S_۶ �s�5;F���L� +P�F��*�dm;$!�R�7�Fi���M���B[�@/Vh�����A5q;xɮU/2ϐ�7�ܲZ��J�N��َ� Zv��־Kw�rR�®����i���QF4������T��mz�`,A��7���d���f�f�M�awz��7ii�[{���q�K-�$�CZ�#��<Ӂ�P�[�A��ŝ�����5z"��Wa��d�� � gT�^s�����+>�c,���C�����i�\��HL�Q�p�E)`�!����h��ű�:m�>æ4��V��Y�iO|� 2U�C}u=m_D�l&r{pQt�Ԯ}v��:���H���m�����"�-ȗ �$7��8q�NUC�m-ީV;i��Pʏ��!.�a���r���@s��Z]��^���vR1���k� �Ɖ��½��Bb��oc����_b5���_v���uYb����ˊ���%/�;z��D��=}8|�QP�ٵ�-�u�,N��ߖK��0 r ��.��W5!����k!���~�{��c�E�ϻ�H���V��[;(,�U'�];�I˼؝ۥ�ST�G�a�w+�����{vu�c��Nb��6�ϋ,�s��!8�5�O5�! y|o���`�*^�k.�aq`\������7������]!0V����AD��:6�Z�W$7u��Q<�-���H+� M\�)���4�$�*�5�tWօL��oP<�z"Y��/�f�� �{L����~&d=fe�\�_�yn��^w?�(x�}ݮ��ǰ� ߆��{ 7ՄIǥy�#�I�_1/����ϡDW�x���CݑB�y���f��o�Y��m7i�*�? a^�w��2A2l|����Z�,�-�|��5�7}$l[�J���x��ߧ�>偦���vu��4���V���گLn`��*/��dZr��Y:o�^B���\� �}�5���c _�6��3�k!�u�ÈX�G6[�$}��K�vRn~�Fz�-6P���E��UH��?�]���� f1��2@#��������2~=@� �}n&�.�b�S��6�;�<����P�l����{9o�^�+�����N�U��|�i+��������~�v�'��$�VV��������fnI���{}~ةF,3�L�4����n�J�V�����+�M1�)�Q���b"���iK�CԜ�z`D�";/,��şV��lU4n5�lH�.�����Ik�O��H���<�Zs���+�n5/E���4�? �)jR�d�F{J�%f��}s�w?Z�S2A�/U5���RwM���B�r�'��I��0�z��6maCQ7��^�A�aD��aQV��k���B����O�X��xXHn��S�T������p�&���l�����w�S:T�-��^�JN��)쫭K]��u(���0(jY����.��'�L�����'U6��N�T=��^��Ð��<�BX�lƄ�)u��{�&�nkd��U��.ެ����,�7-�H�����C�l�C��it{?��+%��i�^�j9�G�訤D��W�h���jK#!�jٰ�D����V��8W�D���<���V��d� �:/�0{}�0���NO�5��6&��{�Ğb����w����� U/oEvw_����LW$����d��'�=�]� !D�Z���r[�=�"@7��j�pY���22C���n� iA��&��؎L��u�������9���8 ?!�wD��*���ǀL�h:�R۱�'��I �E�w=@�l�g�NA�69[ /�+�<F�9����.�6�O�����eB�k6;=�����B�D�t�~s���l ���ɩf�He*Vo�ܐ��A���R����c��w����MF��Y�$������/��w���ō��l1c�b�Q�Z�Cp����M=��2��8d��]���8����v�z�_U��M2�� 蕡x��x�e��W�u8���Z���)�='��/Ȕ��5kf�O��Y��ܮ��Bj��n/�辄�it)]��h��(��'cߢ�'�2*xΊ2�7p 3|�B%֍�����f���,��p�����&�X���(}L���B����IJ���V�"��{,)>jI��=���@����_x�G�e���(,�3,�Bov*@( /��(,'%�ug7W�f���++m��i�Êtk��Ǵ{�u�@��Nt�*G���4n*[;��6&�[��`?3�ϱ����Ȧ�n�Ү[����|b�(�p���0�-����)��5m����G��NF��vtI�tܔY�v\� #(I?;>�����k����vW�7�ô q��M���:�����n8�F��:.m��A����5}V����g���?O��b ki<��*�V��L�P�ya�-dG5���ɖ�X�C~��Y�,�o�{�-���+v�����J{u:�����T��W�)X+�$]J��۟��ʐ#8��5@�J(�-���X����3���9ϭ�&��N��I��|VDs��a:k�ݛ�v�ާ����$ �U0:�[�`��&% ��I���93��vH�\}t-bL�a�ڊ��*�1ޑ�q`�]�� ���A�߈���^9^�����3��F�a&��Q�3�u�We���t��&��A�cc�����`�[H�O�l!�~��ΠA�)��1Au~�V�!Zϙ���D������=�����Iz�"BW� ��ބ�m �J�"��PAu$Ũd�l�����my��Yz�P� �SNB���~�k�]����"$����A�Jf�y���i�r��O\"���?>{z�Əv�wu���#s!�rn�Q����ђju1�D��o�G��}H2]�����_�=�k�ٮ��r�gB����J�(1�����%�U����q\g��K��M����I���P��2���gݵY_��{6�M��)ߦتl+ X��掎e�ƶR!L6�]h��kɲ�'hE�j����B���3�1$�:O������kd�+�Q��(l3�)��w:��E}�>��)9D�ء`C�`B�j��f"w����e��-SS�-X�S���z7�����~�i�.��!�m:U З.rE��V��}��+�@���j����垍(4�6����Ԋ_:����O� sC�:8tY����~�2����Z�q�ڰsH�h�;��� �8�t���3b��@�¨�,tЈ��bdd<���/*���kQm(38�l��?�2g���Jk� ��)��Z����aoOQ�}�M�4-C&g쟥��mI"��y�� �` ҈|i|* Nr<[L 7��qh�L",��˼��*�D%6<�{P͝4?j-������e9Q�w^�oG��w�O�ފA�uO���!DFN�Y��j?��+q���|�nmb�+��Gy��⸸�:2}�#g�F�/�L@+&�eˁ?�nl��� 7cr��Mn��G�'�&� �Sb��F��a'2щ�d����<5��X�!I�F6��u,���p�Ԃ�xו শ��7n,���� ��;(e帞�h��db�a28����a$��Cv.gC��X�� }w��V�+�f��5���^y\���fkӄ~���E�� �RTa��� J�V����8���#�u,Ȱ�DK�w�(�1O�]V݉�[�E��2u�j�]�4 2nt�����]�h � �@{�Ǐ��s�ꑪ�$i�)��_��� �M�"�X1)��E�vZ��O^��LL�2�������B���Dn���l�U�JY*kfA�+��ʋ:��qF@�����r,�܉h��f�C18E?����=q�R,I6p�k�#0�B��J�$�y8�"�|����rco�٪�������'i{:8"�ç���4�n\~�/��v�~V�����5�:9���Ih�Na�܅^+Yg����L���i=J�П.�WYŐj|����<����q%3V&�P�}�TITK��dH�8�w�D�Y6�:�*�b�`JZ8w-!1���l��� �Đ�H�rn���C�0�,:���\U�=s�ѳ�q+:�z��1����������S %�g����oȉf&0����^�ׅ��N1ty��$�cĈ-��Aj��{��i��9A~���<G��U���}ށ��ߺ7�ˌ�׀c �%����ǁx94K(Q��-R:�éD�s��^�X�rޣ3K'3D�Se�4m��=����>k��Og��C���̼?Ta�y���)�>D�ik~*3���T��>�csZ����D;)a<���r�t_�Ӏ�DZ?�+6ȏg�?�C��U �=�N��>?$H������?{@���f��q5��4�HB�� �M �t��-��(T[iY�<��R,>��X,�H�re�2+Un��ϵ���N�Ma��}Lݍ>�D�t����; CV>���Z-�陥�'A��s?&$�Y[j��XȄێ=��b����N��M�)� l��~��S!�!�<x��e�0}~%������4�S2��m=zB����Cs��̷���,�s�f !_�Ѕ��}��jٷ!K���*��|��w;��.�|�T��������z~�DaP�0]L\Ծ�G�@ӏ^-A����*��e�'ߙoR�]�R~~��ɉ3HŹ��8���V��X٭���N�"�;(.S%���c��.�����z<^FI�/�������S���T�t��C�w��w���-A��\�������b?�,��4��:7R�����*z�O#��yT������a���x&3�B�W�.�x�щo�1alT[�������ZJ>b�q����l.�x���2%�ˇ㴷q�A����֍����l<K\ �r�������Ľ�:v�Rw�~��_}��Ľ&O�;`�1�H=�E��b�tFm�n:���X=��z@ՙI=xo�k%h�Rޏi����d�47o s�+w��B�)]�\��{����O.� ���n���䠘�����c�$J���Ge#a[*iٚ}K��,�Ў�4%)2�5l|wQ���,HD��sI�N����N�}�W't�H�~PB�1.U�3҂��τJ;<T�^��(�G�G-|8�X��3N�m������O&�.�`��0�N2F��_)�9E���e�����ɇ���ڎ��z��10`�u,棑���ǁ��.�4��,�eub�0;�Ӷ�0�@z�fe�?�EPV|�����x�:����,��W-�����#�w���N� -�ʴb΄3CR'�s�k�����g��<w�m�Jo�}�������v�۔P��W��N���e@a�+ ����Ӡ{���P(�O�&�DZ��<�pE ��o9�,}���{�������vib���- D�vQ��K<pt��<�P;CE��J��1�%|�BK"�o��,��Qfӏ��imb��c�`X:������yYvLz9_�.Jߜ�GZ�U��?D�X1�ۓ���!��?�Z=H�֪wɪ�� � U��N�¼j%��2�C�xY.����H�uX3bUSb����h"�R��ޠ��^c ��ݸR�(9L�"�Xx�<ؽFU �Jƶ�G�5��߬��Ŗi*���d�9Z�|�RId/��5�����RP�yxՊSb��_��*D��� �-�#�eճ����^�.�\p]G�\� :�/*��m��ƢwS���S:�����1ƗX����JU��LHΔZ�2u���E�".�������Y��r�b&M&��/�� �tB8`-��ޟ�:�=�u��͡?�.4d�o��z��8�/��F�q�ES�d���tiuTG�wZ��ۋ���%�I�,Q����D�<6KD&ط6�Y �^��+���}�'6�aN�}��h=�W(���-$�s̤u��^jБ0&2�n�Prg����\�9Q,���8�;�G�rO�p��K�ዘ�l[�:8S]�&�j���>,Ҥ�X�k{^'�!����/���=v"I�-��s�᧞����%I��ʐD��/�I��B���%���IHg ���i4��f��k�3=���{w��O���^A�w� >�kԂ�ٷ����p�h,��>ܣFrHJ���oH ë�!v� �|�}���M^>���F2Mv6lA6�2��n��hp�j:oO�<�g��g&��k�R~U��~�l���S�Yn�0����P�Ԙ�[��$=��o�F�B���-�~JC��K�a �m0�"�l�"�ʬ�\%�W3v� ��)3$,�ښg�ޠ��Wf�g�ȗ�VVu=�˾ԅ4�p�zx�]F��}�CʀB�����fJ�\�cU;�gJ�}�fr���hY$�Br��55�,���� ���e�f���ͻȠ'et;:�CI��ˢ+�cuP��se`��8@ ������j�S�Gv{O��K)�٢�_(���<o�w��t �7jʜE)�>�S'���΅̀�ŧs#Y5��FO�R�$f�P�A@:��bL,�5��o��Ѿ�_ïiѽx�W��2t�y�x���R��GO�rg���D���Ӈ��^ɐ� jY���eyo��z`���9���z� �랅/�{U�J��y����ft�V���?H�Z=Uю✂m�۫|�<8��E�k<�W T�PE��< ���5-��l�b��� Gk%gxqێ�_����'��_��g�;�=_j1���yz���W<��c��|� G����<�;g�x��b������P���kt�%�WV��લ��i�#5����Iɸ���}�,�s�J�:�;q�I-��Vrm�H^���ҍ��Z0��n��/�h��$i�O2}�|d�K\˪���cU{�7EB����5Xr�^~� .�|��)G��.��5ծԻ���H��~>�:]��˖��s���8y�Z%ִ{ڍj}]�ަu�8��'�m�駋U��+��Rc߂ �:\f���Q���Z�A�D ���r�����y���T���|����L�?"hh'%��+[���(��\T�$��.��>_4�%3���ꑗ:�^�VZ� sr����/�فD�4k�g��Z���7���&\�:?,*G-.���{���0K��ˣY�7�%]7�P��nlHP;�ї�U���W �`��u`� ��6,�JF����pV��m�;aMdS�͠�Y��P��a�Q+Ǝ�X>�@-���8�*���p$�:S%)���' ��?9�E�)��.3���c�Aa�����|��TQ�v��%� r:�*�8���ߌPd1o* �m�yQ9����@��7�@� �r�#a��װ-l�����|�*%�#��Gb7���c� A�E�&MC��9=-h68�{ʨ�@�hf�wW��V�$�w�U*fF�r�:C��k�7@�R;*o���r�Z��R�� ���c2{�C��AK�������g@j���\�ˣ��4j=6ö��%Ǥ��r�j�i�~�>�h5N�>�*�{�Ab������M���S�Y=�Eߞ�tM��Xܦy����Z�����&��f ��e���0p"O pL��lZ�{6H�8�2b�7 ���2HDZ�`x����5d�{�Hl���8�D2��cG�3�6��\e�q��[�rg����6���{$c{"�q�m<X�h�YZ��=�&�p��rwŌ��T�Mf�H%�Vrk�*��ܪv����S�(�h��Z�$����qOЧ��W�U6T��M?uDz z�X7�}d�N����/D+t�A�!$Vvv�k�f���]��T���1;�3���ǧ�Ç�LC]㓋}�gd���J8���f�J����R1��E].����GW���/��2��^J�9�����Mn���gn�驥 ��o�� �l�]taך�@�P�Q���=-B�a�Q-t��F�dIS����ysX�� [�xq)���~u����+p&#F]���G5�!�d9��f�1��c�sj?�K?�*�L��������R����m�ǃj���'�:�>Ib��ð[^Ac@����De�a,��Z�I܂����j��k���O}�,� �m����{6/K����3�N��� Q M��t#Z��ബ�#MQ^0�3���?�x�������N��5�f��w�' ڞ��{Xې��}?^"�sX��Q�l�4���'�W�84;m D$�q�`�7���`ō��t$^�� �!���hXQ����B�*nX���DB3��"IF��{5��|9_�!�c�d$��B0n��xK���$����f9[�z�d���}-pʌ����rgګ�P]x�Y�e���3^��5=�� �:t�t:�P�ߗ[z��ҽ�~��{�w��^,;�v�� u����v�V�7�^x�;?�;�m��+���}R�I���Ìq1�8Mp��_��ž���K�O`u��l�3sߟ��,�~|��Yfrt��+'����;'>G�L*�����g.�eL?�vt�G��db"š�km�==�,s;u�|"�=y0��������&t`5=��ʉ`X����q�໌���t�x��D�ꞑպ��.�y"��PIh�PZ�R��P�I���sGgP-�X��b�����6�L�C��:�ӈ��<,X[�#+ψ͊"�<+�Ę�g���sq�_P���"��9m%���qU�r#�g6�d3R���왃�t��c-k���*� �:�FHW�t �"r��,�DB��$Wp_��:����{[S��\�X߇g%OO��eNħ�*>L�t+A{ʎ�byl�FO� �Z9�V���L ��T���$Nj�}�Lk��>����9o7��a��Č��\^�rŰ���ʒWC��+���X��l��2�Q��]�g�����ae�:�bk�6]��2}IO����3`f�ih*�쥼�q�f�$�\�5�L�$>z=�y�x����<�<��H�-�cfwO�Բ�<��a#Dz}"�.�3��d2 ݬ�Z5�pm� '�}�Ø���lk�@��X5�;�b[����=q��ΐݽ�u��Ɂ�4BC0�i�aD����D�����4��8;��z)�[��~���?�\�<�|϶;��H �b�Q�թl��$�O_�@��ef&��1�B ���w:ro���n㓥�h9>�k�gg{^0�_"�ޤ~�R�Ȭ���eb�iÅ6�{2�}6��>b2 ���~Fi �VaҲN�Ŵi�tg�� ��V����X</n��0u�z���;����!sn�J�ǜQK�m�e�5L��[GT"��X�v� �<����s V���Rm���GP'��p�s�l����d�o��t�`��NJN�Q{�q�L�`خ�ڼv�Ϳ�Z��(B.�/�5��]�f�'b%���#l rϸS�6K�%hANX[�[k>��:�\�%�@ ��V�~���藉�p�hnۖ̂9;˺ �y���qQ*c�k�e���~h}<��V�E���$��� ��f]�����2SY����~)��Q�=j�Le���K��e��{PQJV�c�rwdY�?������^�ƞ��X�l��H���kc �P��Iy����3�B�-{��j��>1�Y�)`'q�ĥBs]�������"4��6�l+R*��cd�PT��E�����x*[��߃�y3\}z؎�G�:�Y�>yS=]��bw<�?���@��j���e�j� v0�G�f��S�� �Ck��ʡ�Y�h�����d���b�az��0�MXIl5��#I���[N ��z�b��Sץ;��7P4%��Y`MQ�:������v2+���I�ʲևOM��� I��~�?u�冕Q�-�w�rS�آ{7���ju�/�#8�b���ę�RШ/E��2���,C^��ScrS�i��!� t�7���m�<W;f@]{���t��A����O3��.�b�ݩ���G�-�+����>����J���%��l�D�1o�ʱ�ڥ@O�т���Bs04������h�Df8ݕ�����m�ԙ6<���5�8B�,��X�̈��\gJ��i4;d�;��[,ݏ�e���Zq�\␏4�)cl?�iA��L�ר�������Zg�ф�5�UO�|M��E�?���lz]c�r���~}��*a� ��[=�}�/�a�j���B��)�pq%��h�Y�h��bR&6B�Ć�� Z]�)����z���'�=X�J�跊��N9~I[4�L� "k$ȇHh}��Zw,�W�*�<��}8�G�X��/B��-����7XS{Hi���3�sA�=x|�MD���o�t��3%crǗ�>:���B6�⬄���u���#��ߤ�3t�ޟUke,��W±�uM;�b=dfT�&�[�<��p��,71�5�6�����ح_�K\r�̈�[<y�$��^��$9������썾�{n�@�y�vK,S6zu��'.�Dq��)�|���r��/������9������M���:0p�v-�$x�:"�w� :�md`����e�o��x���u�(*�5��ʳ}��E����_,Xr��jR��zȖ]IΉ+��Fm���u��U>c4�Od�ؤk����Q�ݭhM�H�p�S�2��z�]�r�1�z7<v��&��^��� ��R��\A��k���D�t���t�.��ӛ�H�{ڳ�@�SXU��f:�=W��߫g�AOퟑ"ç9����T�2�`G�� �RW��*$�}�)�Am��~l*Z�e{����J-��a� ��w�;<A������ )O�&��"Bb�M�э�����B��v��&?>6 �n��t�+K>Ŀ�A����X�sڌ��$��u���rB�z~�n/��븞��r'\�I9�p^2%}��6t�FJ��dPJ;CC�³��Wm1��qO����}�Eϑ?�ʜ�9�kv�q&�Ph~�4d����fI�_q2��S~a���E�{P���C�b/r5�����O�S�v���Q���isOT��p�Ȥ��A���SR�Ц� �Ӿ���� p���%YAֳ�ꆂNPm'-X��zU��G�J��(��u���jP���d�CCc��)?�s+��P�<Nt�I��,`a|v�M)�8h�f��U|�4�qְ�M�w!_DIK$6��"�"r�~��SI��hD��0��%��U'�Ғ�K<����+2�W��h�r.�����!�۸��M�;`���,�J���dh�;T_Ȩ�A�l[?y���ʢ��n�f��=�%=�F���2x@$d:�p��ks�nDBU�i��[�?������D�#���<(N�"IZ� ړpAt��w��ӚpԐs��X��lXA�.Dv�Q7�r����j6�X�;?Be�p����N�} �!������Ob4��Z>��w�2�L���Owl4�(��-�)��Cs�Ӿ��٧��N��_ş�ԙN��i. O7����N�o��1�:�l���>��4C�bi��[���/���M�Ap,j�=����'㩈z��Uy6tre/jY���{E)� h:��:�/l��=�1����|�:5^�C�8I���f�0�O�\RMa����h*��0ha-��z!/�'ҭ���8���ܵ�^��9�ɭZ��?u�����Z�oa��䦏���d����{���LY��d% �pH)��C�WC��:�HGlV�+��Y�q�-*����L9�X#sL�D!�[sQ�I�8�EO�'DV�~����'�a�n?1�Ǻ$`�E�Ƞ���%������4�Y}�$�+*D�J�A4*�t�7I��zr��V�8�N��G픇�窌G��O����Hț>�2�i1���ɹ�H��������'�@p8�)1��c��5��/�&ܘ�j�鄳����b�ڭ�[���:���$?�h���7_<����ba��O�E�L%���C��[i+Wv���E��~ٓeO�A��ԩ�`F�0rw{�"f��W��L�k�>�#;�=Ŀ)�tSr={�Zw��ue�s�KV��/�G��.�^ی��03⿆n�Dx/��k��dp�eȃ>=���ͦ7�!�O\/J�]�< p�i>\!G�ӭ�Vl�3�Ѓav�gpR��P=��͠ E�)p��_a��=��@�PFѨ$Lk������1��N?��V��A��X�Ȋ!d�\)ٌ�{xѺ�ېۛ����P���BxwF��<Ri�#���{b��٠�ا��`�*�w�v�z�p��Jr���2���#��%ږ��I�hX�\n��,�^x�m�7���܇�\�?i�^BKdʪ�=Xm[��#X���N)'���8�Z��ͥP�r�{��/t��UQj��ms���N �`5P��SÅ���4;aZ*.���e� y����qfa�+=f]&4j����2���g� ��5�L�M �H�7 u��}V^�W��x ��(N��I[L��IT����*a��� ���>k���n /�)^�%:�1e0�e���P�E���M���X�[_��܌�5��ˡ؇�`#&/i�bZ�5�K!o2}��(�>V�6�0�Qą�˝�y~�O�Y��7�o����>KY��|4��sQv+���҇Q)h��_�f�}2%Cl9qnG�5�f���l���y�a2���i��y�fw�L+�y���>~i�I�v�vl��~=�Cw����RwO�eRx��F谐���%�l:d���{�T��Y�cL�LQL��Ob8����.F�;��1�r�}�|U�P:L��w��=U'�s4��{<�F�Ia5t��U ����F�Ǥ�A}�lXi;�>�RoR��Sm٩��/巣�2H�0b��XU�V�u���"�`�S��j��%$�J]����>��xJ��d��.�a�f�)�k���3�'��q xA]`��R�I[�O�����}��(3A�hz�О��2��[ؖ������MR�.;�n��r�ꋗ����Q�c��j��Q���8��Aӈ�,�ٟ�Nh8x�㱵U^�~�z���,���68��J[��Gi�5���p�?`ɱt��T� �T�H�.��<�y�ݛj2����&幼�����.i��xrgj����mG�����~q�����:�J�Y�>� 4F��dA��ޯ�����a�"sظ�&3�"~�5�RU��C��R�Q ����v����b�5�Kd[w���[����_sI:׀fՅZ�<�A8�6o酵p�=��Cc����G^�?�7w ��)�=�@�/* ��Θ�Hd��x0lKqN�v�����0xȬ ����OS��_�p0/��3$�Ne�wc����/WD��R���1����o��cR�����+�m~���)Í�����Y(��ޤ�!�}:�x�M�!v���NT����==��Y7)��S�1�IL��^���0y� R��^�:�V��w@j8-vWe����G��t�4M�.M�p����*����T}>4��'�Xѭ��$�rt�B���E6VA�)�W�X�z��o��G�|r�H�@���}��"`�wLS1�k��;v���8=_سI�_�'��A ��c�zT��]��>Y�G�^�x�Ĝ�'s�ĽKyF`-,V�� R�p�Z����W9`�Ѧ����VG����7g':�w!�=e;��)��%���K����c��Z?�^�1�K��� 9�E���z���t*M�� ��Y��%��z�߂��͑�W�t\�JU�@�c��cm��S��M�~�!� u)�Ǡ��9%nY�&Zɫ�����I �Lw`Y"��`@���;��s�O����˷ۑ�2����{})ymR�쳑ԛ>�!� ��HL�M!_3�/F��S{օ\d�6F�Ѐ�3 Ȅ.��r�%��p<�a����\ʪ��L�?U��{�@�g��[E��ؔ� /�u|���4�'�}8�h]r@%^�d�r��v����$��S��}�V�$�� ��Q��x�Z6 ��L��v�_�/MF_\��Wߏ@� ��`���6aE���p��%m�)��w(��zÛx�wo�-Cw�����}��p˓\.��i��h�_��DL��UA� @]����yđ5�F�e-����?�����2>sڟ�b�Y�*�9)!Ь�"�ʏ�І8��(*,���{��V��FKe��x���R��Xɱ�~�֔�9�ҟ��Ѿ�_�sM90�F;��긍2^�.�(��M�m�`����%��*<��8H���W������:CFb��0�o�V8&�*R%g�����'��#R��"���U���^�b^a�K���`��Y�h�t�V$��7�+�T���N���"�9��@ÂM6Ԍb�L�>d�RGZD%)�D��"�����<?���p����ڥ�cL��܁��XPEֶ)�}�þ�i ,���_��^�?��?�� ���}�.3��L�T�)�k�4�[�M'";�Ѵ�} �X�m��'z�C[�܆�#�V�̬�Xv��<�f�J����<o�����h��?�_ �.@^��5(��$#jIy�㭻�}�ս��ҹ {���c�C�eO�OF��ρi�]J�in��DS8ۍyĖ���H�ia�Q�ҤA.���7>�CV��>���ݼ�&���B�Eb�[�,�e݂]c�2��4�e�X����D�HPb���$8���+亭���.�:Dq.�̓zu�+�>W��\�u����Y��8`9��1(o�����ZT���pg鲧_Bw#�C~u2�9>^������).���r��] �)�.�Ď�-����⑀~�)%IK���*5�~y�0��L�9`'�\c`�M��I����TS� z��g�U���Z9� �(1ݛM<Ճ3y���[S�� %�T����{w��"���YpN!��MӴ��θr�v�6YE�Ì�Ͷ����z�A��x� :��t5��qr1)�K�%���9�d��~�ƌ ���&��9L��W�Y�U�)�'�K��l���!��D���{_�o"�'K� Fw8�ZÉc��'uw��Z�oѩ�\Jǭ&���P.���dgj��.NJC������ư��!,��ƻ\J��N�`����_�b��Oe�r�m��ĵ��?��6j��!��鈛=��5� ����_��E\�$8����N�T�"oAOQ'�f`� �� c��,�\�e0U�ź���k�����w��O!�q�Z�Y�F����/Tme�$�n� ���i��[oF�x�l�}Yd-�7��!���e�˶�� A�aoRD�1oD@x�6ETr� �fhC��c�o�Ys)HHAz�Q�)�y��氛DԼFD��]����!�9������/&�*���?�!4�����;m�tb�O1�.��� r�����ߤ.Hz�x��.�~�\&� ��d&Ӎ!jcs��X~(��M6�aS�h�w�C��K�p�|{��6�_K��n�A��}��`��O���3�� �JT.��ڜ��_E:�F.,b�ی����ڍ&����PΝ�%�0���4�� �j������aq!K��R�B �C��Qa��f�<�8��;؏��V,h�x��m{��m�@c�.�� ژc�����*E� �z�uFG��ϐ�7��%\�@�=��;�����]�0��Rw�R�.u����%4o�k��>�g�}�۱��G��$o��]�B$�X�= m��~�-K�1�]0��/iK@��V���Pdž,=��Qc�/&#��{��م��h�ҀT]���X� PY�^���ٕ�M� NX�b{}D�����@�Q��e��oT�*�p�-�����a��lX=��9��DvEV�w7:�KT���Ƕ����ޯ�D�����*X*FB��s���Tq��"N\r٬�y��6]@�CI35��5�f_�؍�ԟMj[����n�1�2m;�I&�@��L���Ͷ�Cݸ��o[^��lсS�ɰ��XQ���"H�1G�b�TQM�9����&��URp^Q��u��`�r��,��kK��|U��5Rd��~��=�<v������si��� �̶���^Y��M1�EP?z;�\ibF2\~��-Z�<�q�#�:�Q7�s��v�ÛXI���� [��Q�3ı ���1�t�Ëqpd5��*�;�Q�WTNv�s:�P�p�L�4 �3~�N^ea�p �*4%\?��j��Krw�P���� ��§C`J?��7]W�ӓ{�T��Yl����V��-:��䇨���դ%6Fϊ��D�ڌ����8Fȩڟ'F(�?���I���+�G��Nr�T5�!���a���ls�c����ay�LE�0�=�5���INTR��) �v�"��\A�Џ��Y�!����j@�Y��N�I�{�ŲRHWX����Z�_Gk˹-�ӈ@�P�-'��K|���I��/w:Lw��|��� Kk3z�X�S�E!$��Y���H�^-X�6�˄�>\ R�1��&���%k�ջ$�ޥ�*��#tM� ��a�����:�d��{�eW��Q!vY7�����)�������l���(F�ӣ����ov��Qb�n��y�˟h6�98p�e��\����Ʌ[H}yrou��8h�NY���qӃ��+u$�m�B�(7��a'5�Z��B�1{?f�p�Ǧ*�B��9{p�2-�2�����(��t��@r��怣h*���yY���K�f���)��;>��}��R�y�Qv�wk!�5�d�%��՚��GH��x�`a�LЎ�e���eɸ��/�\�U�!9��i�:[ ��K��.V 6��. 3ʯ���k�0&�����E���#^�u�(������O4O�:tdZ�}u4P�����1:n��vi�Pbp�v'o����B)pT%���5Iv�k?I�<��ʎ� �ud����~��{�}Vzs�:k��$s�7�j����z�d�7����n"&K,�Ss]t�ń�k�Y�n�1�Hbl��w�醹K���ჽ�lXكy�|V8 ��=����`�$.粝�AF�Ǵp/�+�)�x�A�q�n!���&$rT�dD�ㇺ>��⳧��zK�%IUŭA�P�Qo��ۜ��&jg�#ih*��?�3�/w���+��^4�Y��U���h�k�G��x�w�Z1x�8]��z^��!SO�d�N�ׇ1��K� �����9����6VA��D�����ªĀE���(;���/r����k~��*��P~�1����^��ݕ���N�??¤g|Me�;=�x\<~��{�G��R+�ٴV�2&0B���BSDR!Ћ���d�d����Lb�c��ET�Ί�eTi��f�`f�Ǹ@ � ���Ǹq�d94�?�{k�GPN����+P�Ec Dyv��$�I�6�"�]�����(x͙�Y��Ij�� !�[C?]�̤z�ЊvN/�PG<,�؍�å#pW�2�^��g�'��8��z$rYm Ӿ�T�v1�VG�YB�?װ<@"��n�>��A�-r�� <��d�>)�C�uVb4B4���.#a{ {+ƛ�m�i85#��W���p���t�J�iH��Ʌ��:l%���(�#1B �_],[o�)�N���K�9��'}s�s��\>�rf�?Bo��y��.�јL�u �x,*$���!O����0��4�J�e�IJYɞ��ާI�(�Z�Y�X�5�=f]���Y�2W E~�M/���I��8�V�fqC H뙻a��:��2�"�&& �$���4������ɂ�j([��!n�dZ���+���X��(����É�lL����:'!cFO��H/����@���^�?2���v�!�&���N7_��� ���Xn �5�6~����0�Y�!� =t��j��q뽠r�<j3�0���L"Ō �;K�����s.�a����)�-]�ܭDe�|E��.H�:IS����"�Mx_2����S�kX8ʹ�4�U�5c|�%��v��E���ȯg6E܅�G3V����tR�HƲ��m�}]#_�زt�u�2XӵuU�Y�� a�8�?����j+�j��FQ�F�ԭn��gؠ۳�\k����%�C����qA$^-&�Z�%廠c�^�<O[R�%�ϰ��Q�Y�����Epe��,vC����F��=�P28�e��$�C�`��D�U boZ��AC����M���s}��e�{(���v�����Q���"��H��l8��A^��� L`��١��y �:�t�"V��e�@WA�b)}��@Y���~Hq� �s�B��3�f=8ȉ^��� ��:y千 ���-M�0�õR�������A��#Khڐ)h�׆� �{���N�5�u�/1 �adu2c��:�b >����N���&s3��pm;M��8�2-���rԝm�*�h(�\�3ZĽ����&���4^Ō$s������_=��z^�DzV�g�#C�弁�J�s-[��C�=�=ɣ~Crն����3�Z!��C��\�����(�@0�OWծM��a�I�6,7�#���J!)x�K�2"y@��g�]���T�K�ſ{��_߮G&�6�u���QTQ�'�Ppa��[�p,\�B��c��W2p����!�9YL'+������~H ���k�ېَA�D<���ٲyQ/Ru�[U��S�Ǭ,�u�����.u�(h�&�Oe���"x(��}(�w"�NI9A�� �%vX�'����<x.�f���ՒYr8�R��h��t� y�`-;�3i���u'�DT�����Xr�.�(�;{�Q�dبZI �Q�uۼ8��6T�ʠ�ޮ�\��8>IDv.��� #>���"�==n���-I�!��?��Ӆ��m�^���^�k�Ӛ���k#}b�� �T���}!�[�Td��A�/S�2Cq"D���TZ�H~�.'i�g�E5#I8�A��w�W'���6E��Л'n;�1�ДuE2ڍ`�rq%"��J�з��Ȝ�N��r��ָ��f��6������N�� �����\3�E�����`� V�3��YYhŔ~��v�7�Y�@��7���8��5ӛ0���7��d^K�q��LV�/ƞ~Z�g|�Sk������b����<7g�-�ޥA��89��Ɍ>��1�F����r�|榡�^��l��8؏�03��z��SKoT�[ ]�e�ɻ��<�h��@5�z�S�"?�\�%}��^��S�=L�% ���I��ֳM�CW���qt��&�Y��@փ**K����J;W����r�"�(�_��(@x��y�X_�?V�؇��[�$� ��@s?���|6�IϚ��M�q(6�Q@jg7��)m��b��lx�3���!����ą$��2�^zlX����xƵ��r�/����{�g0�+��= %1>�v��~f�*���&���ũ�ڴ~�uR�g�r.����[e�9����"l������.�>�f3��{Ah]J8�q��ݺH�T�CJ9�~B7�Mik .8��Y-�4�B,�3/9Ŏ}�n��3�ܾ[�rА�Ŷ" "1g'�ҥԽt�U��n�#/���w?0�WM�4s�-\Ϸ��.�N�{�S-lV�q�P��!B"6Q�,)B./.9Ҙ.��wPe�ߦٵ�� ���{/�*h��Y`\w0Y�S?al�0✔���#�,ț3�pp"9����I��ɭ����U� 7�)� ��v���R��0����?�ۅ�(� S�í^S���ٌ#�]���,����ge� ��L����J����SI���+ �{śF��S����| �@�p`��Ԉ�l����u�:�ꋯ/�W�w��(��'�&��M��YʞM��Go�4��Л�)�3��n�X�Za��,��@�])�r�Jq�P��M��!��4�q6��48���6�Ĥ-3�"�*�~�ܣ��m/���7�l�T���1�x���9%��i�M�l��$ҷ��<��Y�Y��}z��O�����}��F�<�\J�-��}�( �|^b�~;�n�BaSl���� ��J���Ur2ey`*zi��@� �ض�n$���v�e��M �cG�y�r�d��8S &�f*����؟���ج\��E�a8m�@}�Hkӳ��/q,[pk䷘�m�v �joC�5ü��i� ͮ�� -q^�M�7Z����H�Ъ `葾��x��ϝ��l��ͫ����(N� >3[M��Xrt�-L,�����S7�7�R�̸�-�r;��Т K��/�+����_�����Z�r� �}�`W�ٮZ���;0]�E����1\����_d +2�c>�g$���VU��z��c�[k<��?}$���w�`~�] �s��,!^��x�v� ��L�H�ϩ����t�u;�]� _�(��/ܜ�j�1��%��\��/^g�fէ�HiL_�B����+F�l�s�7'��46�Z�+�Ŧp�����5&����T��-��5�Y>�儁ێ�X<�4�R)���@�r��I��2�p��R�X~-j��YK�T���\��r�>v�G���z�H���m�g��x�3�O����;҆�.�E%+Zrr_������xF=��N۳�,Z0�#sF�Ɖ�<��]-m"��b����/�a'��έ?h8���I�����p�to������c����OX�N"P��Z�� uq��|*6�IJ��.�4�0&�Σ%�舯��Qѥ�N��-�6�0�3��,�������9�>Xy�4]"���埠�eD�cv�o'^u�z�@ ��%��&.��uQv��'Vf��O�9z��^?�^�I�oR��"#x���W𘱆�,e�X=��+ΜB;��rF@���yeý������Ϫz 6�4�R����vw�kY.� ��.��.)-�vRi�^@����S��Okh�,�w��8#��s��2�y*{W �R+���Q̙�-�Ǜ��7��b͘��cv2<��ԩى�6{�@2&�kĎ��s��hӺ�eɀ[-{Sf��,�~�=�bsܻ�ȇOF��n;NC�B��`�3��V��H@`k�sFP���x��(��~UԎ�@߭���Hȴ�Yg��GE���B���J��j}S�*m-t,Y�����[�@�^z,+�ܨ�9M��:�&K�Zx�GhkD���A��6��'�P�'&�).�FD�F��4��hT.�(H�4���8k��4��L��R�?>@tY �px����Wd���Y����2����V��J�ȸsqfg~ކ��^t��`̴FJ�{���y"ex�����`;kĥ4=[���C��;m����:4"-��1��a[�p:N?V�� $�&�����Q8��q�Ѹ#ʬf~$�+!� �A�L`��Rz2�L]��$�Apn�p�v_��9��m��=��>ne�^h1�p-2�v�,O�h4�{r虫�2֠ �1h����w,}�U��uƦ7�k�ad�=�v�Y/�����]LG� H��u>�S��u�77��Ai�a�T�f74� �L��� o�n���^�����%Vh�uap"�1�H� ��^���7� ���h6�~��M�Hqo枰�Ljk5�59�f���$��U���^k{�:���j��P�.�p��Nr>y��,8�"13����5[��E�j�.�T��@n`d/���z�� ����K�E��*c�QjwbT� �[;D3�lD~ũ�h[�rG���QƯ�V<�V��}V-d*�x]���^xbZ���KE���Q�9Z��)��{�ffi�H�I~��{��Ȕ'�Ie��IV��N��c+�u�E���� ���@T(�x)���r�)����|3� X@(�F-"#֦��ð����>���y��V� �A �&���1�ҽG0�,��}'9��43��c�~w2�H�ׅ����I"�Dׂd�:4�a��4�=�ZQ��˲���0��l�r����s��1�� ���b�*ɇ�L"�tډy�o듵��s���I���w��70�O�|�(��H�b�k�ٚ��y�N8�ĦYcl!�$�Zo�TJ�^�0 4���?�^fZ�K����+���i�����qFԷ�ݣ�4�{����2�Y�t~W�ą�q�J�!��B�?��ٺ� ��!�� �.���k�+|�v7om�4��1�WV/Xb�PS�EO����i=����B�W����h��-ٗ��Y�o���w�J����, Y>TEbE����ނ�m�^����(q��Z��I�: 8��g~1'J�h��j��bfA4�.�ˎ�ڧ��ǰ�����ٖ�^�%<86~��\�FX�ID��j�$��HJ���}��Dy�Kj�6��&��t ;���c?/�epl�ֆ 6Q0��<)%�h뭪�[�~S�)�[��q�7W�'B�==3����J�@ά��5b���#�u���x�����XE�{��}�A�/L��W�D��4��0X����?i]�4�X�j��Y���?![�!�de댂!cZ �Z,#�4F �a�5�J�/ ��f T5����uI�C��K� S�O�J�9�V�OtC��HQ�ITh8C�!C*@pk��>�ea��a%����*E3��r���;��]A}�����3����l�h�J"�nx4d�F �w&M�^�V4 �N!¡��첔�d6�c�c�`��9��)X��/ޮhQTǣ*��Kl U!�N��[�cUJs��S$�% ��E,�{(;��"b�g�N�[��)ݮe�+������4د�'��Pe�m/u 6��#��'W0�mՐ&o�C�w���Mo'w�g��.r�v?�:C������f)8��rPe�z�¯�g_�\�c�?��gÞҴ:�X@�^X�j�-�J�Q蔓8t���lPd���p(�~Q�ڡN��CÎNA.�v�{�#زO�<���Iw:� Ƚeòe����X��v���P&�V�XW��)�W!�R�o�an�rJ,ߢ�iH-l�c���M4wNq�'� !�о�̢��`Z�ꆿ�6I�x`,8�2#��O�5�եj�z/ XmeUW���{��裎��$��#&���U8P�k!y( ��)�v{J{�C!Oqmw��ve�S�e����w��W�q+�9�7(1(���.��{����������n��m�1j/�Nb������4�4��邼3gԇ���9�47����_�V�6��b��q���c��-�S�����L��ď��m�Hމ��[ �P�(]��/�u��纠o/O,�m��X�w�r�=��E�#���`�&T��)s.��wj��[%��{NG'��|z;��&`P���uᚏ�щ��ځՀ�;M/G�+� ���Ȳ�&�ބ0G�Y�4���u�;���$��)&��yQ9y��(�`ƨˀ�O>�.̫�4No��p�,��R�穆�|�&i��[�����嬑�@��*Y*.T4�7�����6{���T/-��˴wd�96��yho�b #�ߠ���ݺ5���S��*��:2�ކG�Ls\�,��5���w��AR �:GS7ﺼ�c� ��e1| ��Cq��9=J �N��Bea����X��t� �p�fغ�ڲ�Ү��!�&��Ip��6't(T]2��J���2�d������� ̆%G[i�sE�-�����ӹ��}����H�-��X�|}(mDK?��TJ�����-� w����gF2���O�e��<��c���9�Y��0I$�t�����q�M�+N����F?��y���ď�e�x�=�8�Gk��cJ��b��!δ�X[�Gv�¸7T>��ч�,[ ��]��lg�Լ�}�$���w�R2)���[|��YI� �8���X��DC�XO� �� c.���s�_� I%[�����)E�=�־���d�!�D��)#���Tu,ۃ.�cC��XS�R�]�)K���S��ʬ{��a�dt�u�x���C���PD�V&�J��4l��;P� �~�ϡ�6�+�kgMW�����I�LWS��w�J+]�&���0��Br�,D*�H�����$广T$��{֢��lI�5�֖���X���!٠�3� (o0�v�V���u��k��zx߬�@J� މm���P{y� /?�|��˛���˄�N,um�L��R��+��I���7:�:��gG��P�n*�ñ���e,�۪�HTL�q��>d�������8Zq@f����f5��z>I[��b�:: ��gO+�Z����nK�YP/���H�lM�#sW�<�hPv�iĿ�F9]��S,�%����%�?}˰Yr c��Fw�/����fI{v�����Orҟ�I?a��@|Yc��n�/Ŭ��8ţ��K �f�������L�V���f걻)��>�QK�wS:��e�k.�p�DIp�ב?�"V;�;�<�D���O��mVi��-�s���`��f���\��;tV�a�9�S*��[�#T[R"� �C����~�%�@Mˠ�0s:��͢(�"� Ay5�۷�T.m�Z:�6A�����g�8��Y�pd�u�V10� �Ѳ�e���%�̗��}�I�����1���).%I�&����� HE8d�a+��E�:���LՅ��{;�"Š�� [�D�Z�p��HG��KIj�H�o=wbN��;���W�(2�Q�(��K�.��>�Uӱ]����@=r��X�M����{�\��F,��Jgߥ��S��}B/8ņ�Һ|�[�nt%�e�7�,tY)�bJacu�s���&��V�pL�e�x���lP�l��X����g&Fqz���Y��åDE*y��,���Ļk�T���v�OS�RJ2�����k��҅ݚrk�B�0�`|�Y�]Yx�u<�A"s_��7ka�H�����B�D���-A�6�]y��/�v��t�0u�ё�.W�Ҁ�8�� L�e�e�@�Y��?����F{G ��X�P���ԧ e�H�����{�>U�S*��-R4�纐%��E ,���g�5���Im�^�ҚNH��r̎����zg�s";��\Z/"7�%���Z��k�;��}�0p� �cM�7����O�$G�g�eS���qZ���C�ٔ�MM��Yo<����RE4E��{Z��WP)�0{��L���Aa��^,�>��y:���A!�6�d�i֊���M�R9J����H�{�jC��w�&���o�Vy�3�2M?I���R��IϏ�����-\ �+����MV*�u���U�ˋF� W�`N%}�jd�0 ���G�����U�$rn�?�)���x7��a� �ρ����8Z@0ֳ�2� ��X%Kл��~�r�8�������S4�z�s"���7�E�h)<-��[8�w�1u~�Uu���#}���Z�և;@��'�/�2G�]6f��+�@�ʓ�d�m�l�L�!W�o�?��:����p.�����\��[���^�����餧0D5��Ht�#�n�[��r�,2�K�d��(�D��N��Gx�W�G��& k:�K�i;>[&�~��k���?�9�_E�*[�Q��y5M�* ,�� ΓND��#� -��S$�[[%LuLZ� gW�pɷ�x�X�z�0ݷ���'{�(�#<?J��l��w�����?�r16L1sPY�F�C�k9��,$˂Y�[���/Ŏ�?AX�}��x�#��͊��:-��uQ�l�|*M�ޭ��Da���"u�֔a8s��S9lr������*�E�t;ѫ���8|���{x_��q��-�����o䆢ķ�N�z�56}'6]&�I�bQ�0>����F�:nt�zVwa�W����u�(@d�;��M��5-�bI|Y�"*�w�W��7�w��L��uM5*�(��^u%9�%���*O�F�<y�w��N�A�z����Ј��H~����%|T0`%����B7^��h橣=w��ͩ,*�n�Q?/]���H30~�bK�յ�=�b��bY��B,x�ާ�p��Y]u�֘��D��f�|L�Dm�C���|�<r�!� ��GMs�<u��<=�#m�d �!']쬅غ�뜁@\��&#]�)^;�a���u��Y��KV2pι���[�ghv2�;A�>p���P&EM���ī������ �OM�6�(��(,��FI?>�$�K�wpT�m)��I=���Dz��J\%�7z�B�fla���^�|���?=a�r@�-�n�:q<������i5�V%�bfmlE�����oR��g=GEkR�S+�}��0���[�u��fܖ�F�_���J�/��~Q8TH�������� ���؟��o�o�EH#V�=� ���#m�X����0��'Ϲ�⏳�B�0@����Z��,�x�V�\�F��J(��;a�?3����(��I�v��ujH:�9:B��f��a�!����҈T�W��N�})B��Л�>/pb-��|e5����h;�{�N���lX�3� l��>Gz��l�Z��/�C_��������+U�jq@4�a��z�䳦�/.��G0K�#�W�I4�M��'��J�Z~r��4�\�y�C��4��/-w��MɻJ&ۆ��������n@���C�L�O�����;�m0�c6H�~'����TЩ�pL���#"gG���J�n��df�/�qiU}W�t�f��|�������ˋI:�p(�ؽ:�TH���[�=+_��>�S��PZ�?��������еO���@'�h��,����h���]J��>p�9W���A������*%��(�jE�w������1f��#M��E��&���?g��A��/�T/���x��Z��.����*�bU�IG�Д6K��w���P��$�a�c� K�4���X�%nB�&�ZT�jܻ�/����%�Al�S�m�X�� ��oC��N�5�hn�� �)�^��!��X�_ϵ呝��]�eڨ�ruKz���?�q�V]��e�ᝩ#i�Yt,��C- ��,ev�T��EfSt ��{�����s�%�b�h5�=$<��5�5�t�����Z� Nីژu}�S~��ͧ�T��*nC�ߔ֩h�"Q(���-6�3{�mMvҶ�r���I�_� &���$�M��#�-�x}ۤ7���x�J���<%d�F|��W]g9F�܅�� ��E��zQE_�|��:o��F���ç#�x�+�궄bNdk�O�̠: �#Җ�� C����� P2�X�p�q�l�<ԥ+6����煇�Rt���ާ�$s�g�!gȊjC�*�9�#q���HZ2٢�����Sx�Չʫ^ߊ\��FT��AK�U�;��X���Y3Q����`펚a\��K�/9gٯ�DP�v@��V���!����~�4��hu��6��Q� �q-� 6��]��W��:�>�� ��1��K���h�����)T G/X���T��K�������_�l�G۩OOg�-�,.�("8|۾!qM�n!ڢ-5��B���J@v�;�d���>��Y3��4��$���)|Ry.笛�P�j)>C�Ns!�~P��3�2[�@/�.>g�LU ���pZ\���1\���ȥ{��*���໕�?��q*����_����G���1�}���7�E0�9���W=� 7�����X�P���g#��y�g�������7��;������a�T�#��O�:���1~��I�x֜>���2?�᷎���G�����1@�(�o��u!7�5#�:rV��E���s���%�@'øʈf+�2tDE�t���>��9��^]�m�:�i�;ѽu���k@Vd4����qЩ�rtO6�ǩ�Vh";�|(�7�x�'t���ԢaS�ʛ�@4���y�;���R������{�H��(}�DS(� ��k�Â�cH��_3t����0�03��^J~YLR�� |όd�-s��գ-�vZ� �S��D���f�B�dF�%��_�.���uZ� � �'�l���1��x�@�Ң����{��&m�S?1�͝X+�@�.�L#�lf���`S̹�GJ6��'^H| �<I*��r������:b�;W�u;��Þy���=��a|�����m�>\{����tâ�+���Oڙ3��~�K�&Cc�����A�BO=(�!Մ���9Ё5�c(� s%��,*�V_ �R�!�t�}|I�gͨ� �g��J0�M�_�Ha���xa}��Hw:0���KY{�h�P=�5�yU����4��)��P�}�|��K�R<Y 5J��.�4u�5�Q�Ua�^ �v�(/虮O�w�f�ꅾ�ɭ���@q����[����*��ˆ��p;=t�0��ʘ ��9QR�G�J���2�wb��`"��L7k�;��tQʗh]�j��m��L�1B���j�ٱ�6:R<��$-�(�LU����)���1<��m��<~VU��2$'ZP�Әuo�~�r�C�t%ƸDT6�"�%ݚ�V�8z: Kh�5��u,l�Wh��t��^�`o�o#�:Tƣ 5�6�xy{>��S��G�eSܑ*��mL�=e�����'t�A��ae=� ס�O�5�ۇQE�o�^ɛ} j�h)��q����p�����Sʲ���Z�Ģe�uaR�N2L��B�&�z�[*��=>�$lfbIR�{[�$�2������N�E ��[�`�q4��MZ%���D[�٥�R�ȀE<�30Ra�ɳ�3 C��cӖJ8ݣ��3T�$S����Mya�Z�1�izG�M�,w��]�mS���U@,��)�� �9^�t���p�갳��:���_P2�V��&(V�VQ7qy'=�{F�����5�w�t5q�bJv>���2Y"KӨ����8� m/[�A�Pp V�>@�]J�2��xG�Y��E�J�\m�!���"��`lx?Rs�7�3��\���:>�+ R���G~겇�\#���B��Nj���l��N��M�>�d��]ul�~� @�"�l�lJ7٩�=�ĉoD��rEl�� u��w��U��E���گ{J�洲{�'1���QF����P \�btI��_��`K��n"ih���[�"�7i�_L��l��K��P3�5X\�*�����矿�4w-P����x�uڂwH�,��A���SO�*�$�0K�Ա�Owr��,�a�2)Ì�Z�����ò���'��ʂkj҈Hd!N���yv���S�}�@��'+Y�U_h�^�_,>k$ܲXϺ�&�}t<G�6���-�t����!|���;�JU��Ȩ\|�>�jP ��wh8���f�����/H�1D�A�7ʆ]Y�Sj�⹏K�%��ф�qzC���i�L�w�<d9H�q�kM����];���oH� +�5���K����A��AU�/�#.�6M���A�t���5a9?����B���j��\�o�?w�I�D�!��E8�ޕc�;���>g)ux�r�>��xA�g��|�P�6]ĈD��#�\ITbR� �tl��D0Q��H��(�4`T��r(��[����!(O�8��� r-��e#[g�gꖮR�b�I���5����#�Ɠ�z�QF�ʅ�K&�) bDp�@��c�R��,�@��p;�U�PdhY�V�w_@p0�9��X�G�Y����l���O{K�s'���:JXO|S�Gw��"90q ��d��n��s]�cgW��|�h��.�@~7�9Gll4+�}C"�z��_�w�D �9�w��L��5E�i")!(�td���{��: Ju7]�1)��/4�G�!� ZF�����[�0%��� ��l"�OZ^�W�����-L�E�8��B(-���m���Z07^m�I��+�@?�#5�=�8� �6N�}�$O�_�>(R�(�ڪ� �Q�Um��|��C���J�2�a�U?}�vn���yp&y�_?��t�3ԝ�d�w5���}�pI,]�l=Jb��:6~��]0�_ȕ�]��Z����-�pn<K�[y|MPn�ehڋ�yj$����O�S��&9?7[[�]��n�����^�71��)�o���j�b ��Y�5X�%^����X�X��.�["��A���'4��}|*����pa]�r²)A�7E4b��"#;��^�h� �N��>Q҄?,PUDq��l\.�v��_�� ��?k�/�_�|�� �?W��c5d�Ks@v��'��s�(wPK,��Kb����S ��˿��5V@,s��*{�3%}�;���&��L�==�e���I��䔭�4Xn/)�H <��~�e��B�,ǯ���K����/��x!v�.͑��^{ʩ��|��8�=��X����ON��o�昪����w#(�ʿ�R�p��,,�~ �n�WW�2����FR�ʐ�ݫ��^�� �ߍ�l�2{��4���F��*���:2���� �`�q7�VN����iʲ���-R�C��wf�����_� z�S�������,P�y�`�c��- ��֤a-ppΒݎ� ��l)e�^�冧�3sT ײ����&!R�L��خJ�9MNLJd�Rk��\�=Rh��dlr�i���삲���Lu�L�t�-�ؽ%� 8�%N��D�19Ϸ+tah����<�w`����3g'ᦟ*`:c�h�/,� Ǖ�:P�Br��Q`7�p��f� {�NҮZ���z���mZ��= F�h5u,��g����������R2 '�-+:�Ǿ8���b��9u<z .��X(v)R�"6Z`UWk�2_u����:�椄��A*���﨟AIg]5U���0���}��v���ZF����йG�� d� ���K(4�=�a=���,F�<��n����~�Ws�أ���mwb]��G"��l���bNx�D!�|��)J�"��N\��>���O����}��e"[=Y����[|�@̧iV��΅$��M�KZ&-�G �<�����&:�#*�<���,|�RHr_�D���P��A�k5o�y�f�Ih�}���fՍZ�q�G�� ���нD�0��u��� ��,��ңk��{�)I�$(�6��Q�թ<���i��CQ]��� �s.!p� ��~�Uمpu�~�=̿�td�d^�͡���d� ��v�<�M�T��*h���T�`ڹ [�]}ݚkj߷�[�� �"���s�n�PR� ;����ݢ�H�ĮIg��S��^\v�y���F��i��%������OGv����uE�j�X�:�� Cke�\���/��*iLDZ�=2��j�n�S��(�'Z1+�햕��]� �-Y8e��f������Pߜ΅���/![����r���D��GM3v��ݶ���~6��x� ����8ɩ|jC�~�*Dj�)a��6�tMH�6 r7�'��`�af��խ ��:�#�S��M|`)�fR�*AV�lKcDq�Բ[+/�%NN3�|���[�ޛ8H<m�AU�DwB�t�F��E���� �"2S���b�� Q�b�e��H�]�b���k}��S(cvS����� �\��o2�b�tihr >���-u샦��;�&�ߍy@�=��+ap��>Ʌ�Z վ�� �X3pq�����L����#����9x��U�nx�uQ��Z���փPG�Wlǁ��L�TE��:o�8��Љ�7��1�h�����,廔E٢��NX�N|�FA��.3�i8NI�W�l�ť��J�*�NF�N�QZ�A�$����>�V� k��&��}�r�u��xG/���9ci#9.������)J.C�G�ۃB�E��(T���[��U7q���N��,�R��i�)L�m�Z���I���ic�i��0#UET�S�F�����Ϗs��b��zg�X�mP��"�>�u���^����l�_�98��ـ�z�-��}AM�3��jǩGi8��2+%m|2�N^�l��} �27��*�� ��_�JS�q ��o�\`��Ӱ�Iߥx�}L�D���� ��rTk��e����)��E�}�����W��s�,B�d&8��T����X�6U�����41��:��4.0��ޜ�4U*��#v �d�ړe5��X�Ľ/#ؾ7ݲYX�l�k��7e�β��?OSB�G��T�e�&[B�1y�$��Vx��g8����۔��ғC)ȿdθ�0��g��m��n��V,`���(�g��3 �fݯ�W�P����c�ᕓ�%�&mI��>$qs��M��L�?V����D~u�+Bi�ټ�w�)]=�{����k'nAu�g��� ��Z�!J�ys�w�>��G8��b��Bm _�hM��B9�<��a���K���Tn�1df��o���~�b���a�`�D��oI��`h�<��JJ6�rܵ:ԬJu$ۄ@�{`����"�:yQzON��83�5x�P��#���ع�Q���Mڗ3�5��G�,���V(,�>Ғ�N�.,��\1�;�*XT#g�C{�?0��1t�Ѹ��[��-rm�`��H�Pq;��L�FU�f��І�O}�؇M�y����*Nx�|4�o5���%N�ו;ӽ�agÒLtӅJ��~W�^��+a�V笹��֑�!�oM�b@ppڑW�u�t�t*���d�L��B}c��c���s��qi�>��ˬ���ݬ{S�# �>��N2� D�f�7����`v~��s �W`t�0�ғ��R=� ᧳���̏*������ qN��l﨎U*�Lb��$D�C�r�yĭ�����L��-��I�&�+Gu�)gX�1ޒ?m~O�6�5���鎬U�M�P�^�s��f��&�]�3]� ئ�ցD5�`�r�+4��n�FW���O(��Lm��,>�x�=�*�;�0����O̚���F�a8�OD��S�nK��U9������?x�_ďRh� ^2ei!�+*D�����q#'��H oFR�z� ��W����4A��!����&b�J�/���8�(��Jt>�;��t�e�J���� ~�#ߕvɒ�?��h�b��+%Zw�I%�r��K��ūk�����H��$#yued�<ى[웩˂�q���F��M�3x�FJj��,�R�}�Gh^��[����Hꄗ�l�\�@�����R).,�DI[q\8y��z���v-/|�T� Ӟ[�c~��&�?]���F�(89j)����Lo.�zAߜ �����Q��ւ,Jwk:�������n:�(�zy�����$��Qt��N18��q��ς�.��U�K(��hm��C�.C*�� �W̌_j��29�֤���s��y��;E[D� �:?��J=|[���(){�mY�}�����,FC^�^x�~uNF'u���9$]��_YW��F&һ����J��O�)8�pC�r���g1o\��r��=ٛd���ֵZ��=��Pփb���3I�F&���aNc�n�?����q�)N��P��,��ҜH�Bש�J�?�eL���.(q,��ٖ��J>ȉ[���/��P4W�E���ǒsS �2 F�@�z��rzWp���V��U�\�)���&�ݿo�tp� ~᭻�8� �����F�3Ե�����+x��L��TzP(è9$�qT��.�� �b��i&0W����Oc�����KA5V�v�(��og%�E�q�b�1EdS2��[�ە���I�w ?}�S�vH�xO���1��v�k֢�s��4��#��/"��JoSbG�~'����_Uy��q�12 ��Ϟr��k�*�[JK�i�~6�H̐�3{"P2��kD'�"���!mS�A��ˬ��>v��Ȋ�=v��-iDJ�/2�I�&��ز��009���I�u��|�"��G�9�8*��`,Ȩ�Vw�>�]������B�a7�4�����_ƴ#�]�%v�+��0�k��T����g�n�J�7\Ϟ��{`;`�TB�ogy�p����!��}>Q�e;p��x +�)���X&�"�hPo��H�/{M>P#��]#f��H^�T5���&uh.��.�6Ń��߆o$����H?i?�t��� }��X{�i�qrA�� ÏxH�B {�*�7Hc�-�{�?�o.�+�G8�#E�]!���������U�Ќ/�S�Si���js0����ۨ�<��6�,S���hJ��z<��*��+&��/���'c Yj��5Q���!�_ܙ�=�l ���}�p>�U���)s�Q~��%C��OS���\���?��Wy��&Q�՞�O��� T ө8�oU%H��!`O��=��T�7��)�1�)1 ֺ� �E~�e��V��~�0����e�`�:��f`]9�Ax��s�D뗡�Һ�)��"'ߠ��X��TA�)�m�Ir��1�BW��@�O0̟ǫ߅��[s���Wm����?�!��D9@L�HQ���5頭A��+i��LT}��F y]M�]��A�r�p}�}Q~��z� ͼ�� �vxR �~X9YC��gq+]�L��Ջ(����!P�����t�4���ΪӤ��l%+�׳���U�Z��1��!8����q����&}�-ӽ4-t��.��4>n�ٝ�6/b���� 0��2�u�P�Dz�����}� ��zfʷ@�3�L��C�#�U�F�J�2��y�K�7�`i���a�H_iK�YkG�?C*��S�C1��� ���/q;�S�c4 u��h�<.aq=4��u���ڽjt����|�o��.^u�r�7炗K"/���I>G%�����>�זa3�@w-6�.gхLk��Hn�� �@}�b\�W2E���DġO�����L�"��Okq�?�1'�#Y�L��9�{F�����s�D�d��ku�=���n,q"�Jޕ@)\�>� D�����8Y�}�)���EmO2Dy�f��]�G$5�ՐG�{��r��$.R��Y;U q�;�[�+��;����V����,m߬�Hb�Y��y���l�~/�S�^�gvs��y�hv0��Q���N���9S��p�A%�� g0��HgSH�)RL��s���;ggB�l�h��c�gA�seB�7;��+���˗�c�{���b��I5y��7���֏E�%L6�����o�n.VN�E�j �/�f�M#$g���U-f���U����tS����)�mJ�ɻ�P�����sgD��Y����3�<otMrf\���Tf�~�� �B�|b�^�H�6Ղ��'���c�r�$���ߵ�v��Ҁ{j�pt��&M�M~��Tl3��������|����/��IA)�^cUXtK��]�U * ��KX��k���ÊP�X�f\(�a����I ��!�b�OXA<1T���00�H�B%E�G�o��'[�U ��(��*��~�5��3%4U�\�lbj�9.��@K�he+��]��X�����ً6O�kWc?;�K���G�q�Ű'��#B}�&#y�15�VJ�,g�T4�����=eQ�I�y)|���%�B�U�M����O�ې�S�ː�Q��zo��b%":�ז֩ �;��H���ʈ�ne�L�f*-��� K�ǃ�S_�4���A�f~u�(Ҡ�q=/�u<&��/����Z�y�+���:����� ��Vp����RD���s���N H��{"��qS}�]�/YsQ�{d�.��Zp��Y%��E���P���N�C�_��!hqn<w�=I�U����|7bQ��An�N�f���H���������?����n㺗~.�=>����k�NUY ��;B�m�<�Z �VbZ�f�kN��� �l��M��ԋ�MlR��p�Oe�>��LouX)�}9t������=�qu���I�(q���a_�#o�$*?�_���/�+� �Z���c�˖\X�^��] l� ���^4�J�wv���#?��9�S�Z�s�[m��n�L�`S�'���aR\�`�����f�0�{{k�f*�S�W�T\~�7�R�!t�֙9��ZapR����W�L&��|5N�Q�[Ҏ�8h��'G�[�E��A2}�z�����y�@�ۄ ��~����`B6�������[ti�N���Qi�c�=����:�P����)��Ng/�~"� S�Ō�z���, �2�鿞����W:����ܷ;�� �[@ǀ�3�p��w膢L`�\R�\�#�,C4�>�K+�gS��cwL�&.2;P��d�(�B~����u��i����<��~�;el�v];�e)*��oj��V��h��Ë�.t�f�x��E ��Km�?M���%�����[�*�n�1H.r�)�� 4�`�0^�p͎��f�H�q����ćMz]�#v��{�<d�̀��.u��s�E�/��s7ɽH���t�#죮*^�I�Z'����E/P�\��6��OZ��}O�*ݵp�� ӿy� '{��B^��<=`[��|8�$�ƚJ�?ˇ Z�I�Q�@�GD��0����C�N�\�M\#�[@�8����c<\~HY��G�_ �H��$��������g�~�f�>��e�O5w�.�b߮ЏA~��?)0�\&SH��ެYt���| �2!iR�Ob&�t0 vK��.U?ٿ���lPy� Uxoc���a�����c ��U4I��'Y�;���;郦�P�'�T��,m�0��i��,{�����G�I���9�����"�� P{)u����+��.{��h"#dA� o��r�g쪲`�����yݐl��?y��ň`�S�����-�1b=V�{2�Ëe��>�@�OS��N���Wg��G��Ye�S��l�t��p}�EF���k/��,��/|��d���TK� �@xfh6N)�n�$ �2��j���� ��VBd��T(]���%�)��f�i��X�*�+�z��1��'���T#n#=�,GZ5�~�U����UH�a��ӆcJ�RM)}c E� ?�#���>�J$K��$-����kn��d_3ùju�|�:X1nF�xE�N��v�1P*���=�'F^z��輨̂�;��n�E��NRƑ�B��@wP�lR��M�8��&ēzx�Z�e�-���\�`��S��p���$�K���c�%��L��U�O�qו��f��@�ΗO�hv��q?��y�F�߭��|�n��}p�"��Ѯ��xj�F՝�kd�(�蟋�>�f�6��&q�:�d�I�_O;�H���n�@�n�B v��w.p~Ӵ��;�����6���� _�,Eum��a�6T�`��?qH!������}r7:����.�����#��,��� �lI�:�TM�q�v>s�G }�\�49�n9m\���y�-\�����Ә�̻� ��ng[*I~ô�;�eJ�n7\��`1�m&7O��<�X��>�A��{��B[�*�úhc� ����~��u�U�{�T��1�A'(R$^4e��h�,]�|< �~evӛ�����XB�.�vB2�VF����d� ��z�[���|2�.K:�¯1)���3)�Z�Q 5���$��q�Oo���8_�M2�w�Tee+Hļ:S�:���#P<���.��B�E�=���ߦ�w'E�6w�5�� ��2�Х�!��*��{��LJ�\��$lH����1������#D���2/nk�����X�+7.2G�r;柧��^��:�!J�ˮ��õ0�&�Ӣ���<��Zzl�>0/���gϊ8���HLw�3��+)Z��*��Ai���A mC�|u�������?ӌ�y� �o�/���NE���o�AOn�����K�^�y�[+�~�r}M@��y����z��hn�a���N�1���bna�1�8BA�H���NA���Vy˒��i���i� ��! |Ș��������풟l��� �sr���a�m�����&*y��=K�"si��2�X-��W���� Ը-�i��>��3�C�D����Twt�e��4q�J�)B���_�r5����w����/=q�/����[:ῑ����U�HlD�g�A��M.���x�]�����+�� ��ʬ�E��<�j��!5�`��Hv��R��7}���ے�\����#�{V�0�uY �f>e�%!ʺ\ R�d+*)� ��Pt�r-/w�d0+��nXk�ˌ t��S�B�ϦZ��9U���&��� 8��!�Lwr� ��~�m�l|q��a��uώ���a�{��܍����)ଖ��֏|��u�� �'��v���S����o�g����|�b��!K��Ě�%T�?y����rp�u���$�or�;ug�-��RU������s��?�N�Q��=o8R��L���><��77�& �%���5�(��<t����-�M?x�v�qҔVk��C� �b�+�-���o@��⢙p]��O��P�Ҭ���~���i�[�����F����]dF%��80mK��k1<?C.t���;p\+�%�Hp@��Qr\������(+x˗�{3{F0����9��@Tx'j�yJ�i��!=`sڶE'�T��,/D��/i��������.��s(�A��?a�k}'�!�E�^��p����D_;)���J��F������%�^���o�ʒ�rP���WJ�.2F-�<�c<Mr�l�uP�gQ�R��!�@e�nf?����P~��2��}J����Gq�� ����C��_�%�9M?m�ZY"�'�O�����]��oc���3�r��h@��z����Ɩ1,E����u�L�7M����{�+T�4���)�v����3a:epA����xh%�[�Q�� �d!U�q�]�c�?���L���A^�|�K�KLl�6��6�L��+;��t=���n|�:�zaǯ��wG��1=����>�'�W3P9S$:�i����|o��t�O�o�P���|pG�"G?��'q��c�a�/N��s Óft�w�p�7h���;a�E� ��KJ�fQ,F��9�!�K��J �t�a����u���l�ET��ݳ��xl[Ju�,4�_���1���`���q�y�j�ou(Q-���E�F�V�29G��=b�Q����}�è�5)Z��J�K�K�y��G7� c�B���+ܐ��BxZ�vg�)!�:y�s#憧��ي(��wٮJ�?Mʹ�� �,��1%��2/O=�d�&-��,|�����؉�F�Ue�tT�z�<��&��ڲOҨ������"�L��Td�003;*#[�*q�g�2+*,^�}�p��?����(�X��XT|�s��Q�h��i��ThV�A��Q=�*l�(|�z�1�n��4���0P�_�rN���Wq}�3�0*Ea�Q�üS�ڹFY��Q��qӬQ;����� �o�Mv�S82�GC��� g��LU����fN���rJ5"��J�*�oju�ֻ֑]��� �F�~�q�_4�L�sYI:�8'�-���OnWb�u�#�t����Y�Ɲ��#ǐ�l�o[}w��??E��;���)��n�)�6�$�0��J������c�!K�0k��É0 �u� ���)�T���)s�f7��P���x��n������"#]��՜���� .y����Ɖ�Ŋ�[Z%��ߞn$k��G�f)V%Mn�6?�8��=���a(��a�~���0�4n�P�+�1|x�rNmI�r�||���wٮ*��b�^�eQ�B_��j��_c�R�K����Q�X��Q�Zk6�O�c�i�5�%��-��玕|���L�a�E���g�JݑN+�� 0���vq���]�bζ8M�q��9��(���25E�I�j���/����B��mH���Ɂ�����xrK�E��ۂR����P���5MZ5�w��>�,��l�v����Vt�XH��S��tO,y�<���N��C�aNAކ��V���t��Ɵ0O�UC#��k�c��BE�hrܗ\ޗ�&"l�,���#���~�y�s_0�Rڒ<�m���c���}saL����Ǯ\PuJ�W�&��u�,"-��F]wV�Hۧ�1.�R�1@�1�D��'T���7%G��7TB��>�b�Z2�_��Yo����G�w1�� �p���B����on�X����ޕCӈ�p4�ji ��Zϸ鳩L��2���5o�������� lw4��d�&�y!�*�Hލ�;�~ �ΐ��yZ�Jx��*@�����ƈσづ��+���y�w�y�i��#Оx�??��o�~�c�:�}H Ju���f��'��r˵n�~���@9�� 4F7ռ�#�a9"�c9�����F}DO���*�(A�YK�!7�%�����Տ!R��O�$#�̖ �&F�22GwԀ��fn�[�)��� ���8�z-��ʾ��F�?���%-t��4`.���M��qC'@��x���u�G�;��v<H��S�:Z���0?�?�ӽ� �-�R��=t�a:�`rp)��@�ɵy�������zIM�ײ�_d�Ux�n��4��/�n{�S~����>��J ^���29�I0R�K6�T��5���3���̔��Ր��ݱ�A�M��M�O������c0��i<�C��*7u�ͷܠD�pG.3�S�4Xd�Y��p�.�I3$�^ITPCwv��-�`4j�쵘OT��jU�����]�\98�$h��N�3b6)}��E��q����n&���#�o�O_D~\�{?+ _�|JX��=���r��^^e^�1�TT��:�_{��K��4Q�Zb�k�у����Q�~ı�ц,���$�4�T���J"���U�)9t�\�����j�82�:�넷e�`p̹��|����1����!]�ͫ��q+��e�R�%�/�_��_�~��*#�*�*7��>e-@8F0M��#�]TL�nǟM�ݦN�&I� �m`J%�N�F���yBX ��Ȥ?G?'�%�*��v��Bo��U���;aY*�-�V�jx��$7�C0g�����~�!� �Z��G:!5�N�M�˸�߹ą�0sL��0�2��P�&{6J�1�N�r/�І] �������'=�� �6*2�1�hD��sjW�teA����I��[��ud��h����.�uֲ��$��eQ6�÷,��N|��X ����'[(bo�V<�W���t�kCXfU�� &�H�SBߊ����.x��'�g�����}1��W �1A�puO��WBa9�v@�I���gU��؞��\@e�՝��� �4��s8� qٛ����җL�{�L��a��ۢ�Q���Y�jˡ�e�(��ŜiS��D�G���Cp2- 'V�w���=��u���75�ғ7�B����_��5�<S�Ӻ����>j�c�@^��:ʼ�-��~2v��1;��~ ��^c h�W���>r����F��)�EaنBISU��p�C))o�JC�I�� �%HhfL]=C�����$朷��wN�nJ�Z^ ��#*����#��ƎA��H��RDG��gC�w��r���w�W�C|g�2P�:����f�HH������thU�ɡ�un6� <Ve�s������~��,�e�c��j��x����ˈ)Z�d` �U*��"_��D�$��pUⲥh��r�S� T��v�mk�O(.S+�j�C� 㢡�{��_2ur;�&8@����m8oz��f�t�1���s V��y�p�M�`��g7-=������Pyd�Ӟ�9KAע魯Dz��+l���,�X�й ��*Lj���Ж͠}/�nO9�?���F��RQT�u�qEÏ;Gr�(;jgBn�� J��Zy�a�$A'��T\K�~�Hw�e��z��C _�8[g�WF1���*��� OHxH�g�l����lrN}FD A"T�#sz�T��V&��B�_-�d���zn���y5�����c`�ٌ��^]tl��ѐ�@j4g�7q`L^J���h�%y-Y�o?1"G��r�S=�z� r�VմEf7om�E�ܣ^xcI��[�ݒ����UeL:��M7�w���r+���i��D�J4�l�0���*� �C�{��5f�[�� H$�� �*?�`�f��O�EFS��n�R+�^(��DYV������o'�)�m~N�� �Mv��bn&�����Y�c.œ"dh����1�-?��灯.���k���9W� ����_����ak��a��zTXą!��0�u�M��D?�˫C|\6���b��`�b+T>���|٢��9T�D�6%�{�e" �8|��LhaY�0��ʟ�zW/Ză.�@�*ս��J�Y�p�k]�ɢ�J�M!?ڱ��"h�`T��r���]�%��P[��}��!���rFUK��y䎹-%a��U���]q�v�����3�ǥSb^�$1�j�W�Cq����Wf%%<V���{Q'G~ܶ��a�2KS��O��ú��ʫ`G䰆��Q�}�X<���B�ju�Ȱ���X%!)C�� �r��7�t����F�T���y�P�N�BeBB���n,7�dB�3 ���-h|��rY*��{��kt=�z-�I+�:~ �ٿG��@1 7�g��e�q�>��1�H���2)��o�ZI��ԑP1I[���,B,NQh��F1JfM#���A_�Z@���4���j��ʲׅ�����-3�1��w�$�!�\����Ҍe��~Ȯ�U�<Ѱaϥ���L0��Ȫ��Լ���%����1>���@���.[�h!*�c�>�V�J��ͮ������S�%[���� ���c��PxP-Y����n�1ΐc q��$�a�ez�v�B�@z���}o�C�T�<Փ��H �X.h����[K�f�8�<�Q�)LȗZ���/uF4[�g<nN3����ֆgy���u����БK��2�U*���#�(�T��,� ցL!�!~��.=;�!W��Q3�Gڻ9���^.7�B@��g�|�U��V�\�*oЧXPS�$��Z�<�ۛ�}�{%��\�u"i��djv�����n�+؎!����-�C��R�� .��w[�$)������]v�Jm��H��?���(&�02W{4��;g�+�y<H3�h�9��2�%j��Q�"�#jR^xi�m�&`�n�B�FS��h��џ���5��E�O�2,�� �$��`�#���)?۴��S����x5��L��9��byޤ�]6Y�sc��X�ǁ�`�N��@C:VN�EPT�Δ!W�|U�C7Kh���� g!07G��v�4�GT $H���I[Bt�= 6i)h��v���f�%��5�яu�4R��ro� ��}�u��{^Y=���}x�ǣRSh��t�f)S���E,�c�ָ��ń1� I���%�K�{�| 9��ƍ:23#fG�$cZ/nKY����}ƪ"Gp'UzM�N�X�#P~��>0:Kp�%x�'𧈯�n��x��e�0���w��EG��9�=�Zd�}�x���Mh'�;$��!�d$}�V�4awN��i���O��Q��J��8s�@��O�>��ʧd��i�a��kJe�(�ҦtWP�!�ڽ�{q��[䭢 %��'ߵ��#q(u�n�]�e��A�羊]��8�d;�!�/ؐ(.�� fD�3RR�Y�T�=�_c%$�����]�������@�Q�e��\�0@v�/I�^)Ijy|��S`f^����j^�)�m�̕ݨi��"����Y�R��6%�X��;=�9�V�;d�ӯC�B�s2�]���I��h6���P�(V.�~��?��^Nk��22f���Zq��a��[_a��}ĕi�-��_�r��C��U,b[<1�]<]�+�:P�����`�wb����q&!]Ef��8�K�Sdho�>ҁ� ���I�� �F���[8��ڠ�,�����H���q|BH�E:�ER2�=#gC��~��[�ơ$�p4���I���u}�֘( �.�����3+�н�Q$�G���RW�g�����죛+,��y���R�%�WI $���d��}55�J�&�~����:�$��WZV���A�Yn��i\��eS�?!��sH�yX�_��*��r3�����@����G�B�af�U���t"�"�eY�Y�8����R��; 郎������[˖�B�Q��IF���]>��b�o�c��Ep���ǀ�@�R%�c�ӆ`[`����7why�(~�:�Ld� /��[SD�%�4B�2O�F���s�XRm*�Rݚ�^�5�M��͉Vգ�A�� a�@���T�l�`�.��N9ɲ��V���1�Sr1�鍞��\'��ͳL���b�"T�s%0}i��`XJ������:��0T�~� ��'g��X}w��E��v��y���@�J�C"�AZ�`�&�ȹ JW�u����ajE�:б��sVmN�u�p�$�]G�^�w�?TWqV�ګ,P� X@a�n}v}ZTW:Dq���_�����#7m#�~��4��N��$�m�i�y\n��/6����y�lf�t��4m1"97%����1�O5hl�U9 ���=R94�CG*�Z�>f���U+�W��dc� �z������bqŖҖ�@�I�<60���O���ۀěV� ��T�h'*P��p�ie���Qk�SW�P��Y�o� ��96�q��;�F���M~��>��.ެ멌��p��-D�����$\7�2�[��t��F����z��M={�{�V�{%�ӣn'���D�]����k��5ڙ�$��tI�*p4���4���^Wy��M�-O ��U-�݇w�S���w7��ZL�qL�\�Kx8 ̚P�UY� \���(��q��6�Et�����'.���4^�D� ų��Z��*|���%�![��B�z���-�)�}�:��4c���P� d�ɔe��MY4ׯ1J�6�}�NP߉���C��#E��t+-Oq��:8i�W�Z�tQǝ ��~�<�W��8��p3�v�1��r��&VnNY)�1lF�l� ��H�f�e�5-%W�uG?#$�r�J���瑥Bl��f�Ι���&�D &��t �6��ȷ�9V�W��Y�H_ ?2E�!��tO�k}���U���N7�S#�HR��C�2���&<�KyH0��_h異tr����٘0^t���/+�q#R��342��"u���:b��0 �|��$�!��='baW�%ˡ2��Pw6��2,��B� z���p��*���7u!%�!���}��Ev��1�5! �dW/��QM��)�41����kZ��OJ��%G^Sb���i��b��?h7��1�ԈYs� � �s���]C��V���s<�G�(���$��)�D�\�G(���P�����l�Z�q���"�8��b���;`���5�o]�Y�)�t��e�|v!�F[���w|'�X������ ����I%F:�E�q��`Ej�WjZ���UR�:���;$'�y��apeQc�h�R��W~�{a����HC��bk�]3��}E'v6*���\쩀��rv84q�o��?�4�v*Z'>&�AK�t�1�����lF.��������Azt�4���a��y�+��ޛ���~�h�F�п���&Ϳ2��b�@�(ӿ���P�ޞf��|<�i9D"��G��O�ir�I�n�y(E�E ���U���P��ॉ[�� �*����o����h�h�Up�� :§��e�ې�vĴjo�x������v�4�DB�b� �h9�Y@M�����iN��o��'�~��Aw�+�F��6��$U8Ů�.j�?R ��Ko�r:H�Ȥ1X|�S��l3��s���A�@�����'I�ZS��S��cby�9��������E�9�4��E���ŗ)rD�����x��'�� ?������<�J���^ ��G1b4��1ƨ���T��hI�I�}��bK��r^�f�z��;RY x��*�^@ ��[�t�8�"��H���`g���s���6*D��\�W� ��[@�R��lĐ6@-��b��v���MP�\~��k �>U+8&Ó�U��D]�ޞo�0rx��U�mBB<5$5���Q��"̙��w�߬kp�CveQ�}V`?�R:2m�X*%[��P�,�V�'!��0GH`&�e����X�霖�N���$z���G�P����ǘo��yw�����������A��?�n��G/8Qn�Z��u2I�ͬS����)bʊD��_T�<�ؿ2Ey��*���n1�B3� Xj/�0���2$��Pr�_k+��$[}��4\J���͊ ��H����?^��[1�R�Md�p[76��e�^�V�g�-���#�i�,��88�E���15��tDϦl��\<��w-��e�:�B �8 ϩc�V�+��jI���o�����~7hь���U ��}�Ϳ�%�b���J�i��*ާ��*VRDHʓ�B�p�3��M7q ������ژ`TPe^ӱpA��O[����C��_ǼE;���qu��V�2�U��C��F��~�a2�',�;��&����@n���K�"ݪ�Ɔ�u`���%��$��1̦a�}z%x�j�Y�\Z3� ���&���y�C�S���PS�5k��8��&? ���5n��1~`�1�U|U��x��O3�_Z'��*;�+��3?l��Y�=t�T⁙ݒ~D~��R�*���1�&�Hm9L�j�pE�Pd:24Wl|�!|=�4(:#�6ύ)OJ��5��lғ����|�x��Re`d�Q�]� o����hdY7�2L�u~�xL*[��8��c���/5��@J?B�7���@�����9�R֒ƒ^{�bZC�gBl?���"T�kk�i�~�&4�,��oz\�.D�Իa&����Ј��]����E�s��m`��X7g�͌�f�S��� ��ˀ/K:�6�~��M��������+�MS�������<���j�����wwJI�T��1�����>�1�X"��f�ú�X+cO��P���s ��}G�r����MY����� �vT��3k-Oh���o�D�H�o�XO��.s@�x���i���/�Ɨ�i�L��(U�<P���F��B��O�P|2���<�o+��!��-c �=H@z 77�4Ke��a\�&�M���U~;7t���d��l���K��=�"Vg�A��0�L��H]'I�$"�,�/�/��h�Ek�䧰�}+�@݊W��?g8�̈́�"�yNR����=5�I�'�C��=�|���Ζ� ���2WVhjܫ��o��@ݻ�Oy��������^b�ĸ�*YW��n��E�i� w��,~�P�!a�ӕ٭�8g�l�Yk��(����l�,-���B��5l�Q�9cMq��t�x}���� �4��$�D]%A.3��km��겯�c7��&�ʦ����t�C�o���(�C��*g�ړ�-!���1D�gB��&o����Q��`ee;eӪY7' �bX�K='W9��W�+�����Siܷ`�Пz,%�4y0�p8qFU�!.��������B7 �Z7�[Z{�&����f���u��3aӞ&ب}�cLOz.�Y9D�E��� �߲�}��U���+�hO��X'*�Eo^!<���� '�h����x�'���|�0��ysP(ޟIbx��Lq��\[&��W�?v���h ��Rw��{��,u� gvP���&�R+�ع�7�,� >��yI���{��v�7w����U�]�ʋ�ٰ⌔�7���E�����l��r�b�Ǐ�y��\$�#Z����=�����z�㹨 5QTr�͂N�HG��ũ�$�ɨ�)VG��/$�yj�H�Ի�Q��'��m���NE�y�+� 9Ɓ\�v��kl�*���-G/�+!�G� S=�i�ij�Y�!=�YF�a�O��;>ε��jU��G�7�sd2^�:��.���L}A��췽/L<��!�V�2�z4/�wYU|L�kf>E�x�|L����O퓖����.nL�zލ �(t�l��=_�6�rT�3�V�C *�MjCَ���U��|��eG�:�b��@D;���q��$̄�l��M�bK�-�����Ƿ�5'.adf�h���)cu��7�!M�[���BJc�!�Om�b$YxZ��e+�)�,?4�q=Ob��m�Z����O�40,<�߮�]�Y����s����,/�xb����y�v�<|5�Տ�1,�,:D12� ����Z��Q��p7#J�- j�o�M�� [��i���[��8�������0�i�=�`���L�:[�xI�3ձJ�s8:�#�5��Sux�ϗcf%,X���������i��~]->)ߋT6�YbA`�Lp�e1��m������g���8�Q~�%���u%SH6�o�b`�RJti�۔Ʈՠ���:�Z��@�,z�8Ѧ9�xփnڱ}Q���6 ��4 ��k�>��w�]�;������%}x��,�+*� ���E��5ʝ��QB"#���'h� :�9Le����.�J�����A�0��}���,�����p:�Rs:��f@m��B��,c�~2R��E�����\A����ȵc�9�T3 -�4m�C��������Gk��[���H3%�h���w��>�&HИ�І?�ElY%�R%{���B�P����s��q��3c��v�W�j(+jV;��M����(�%��d���Ѭ�J`,�ɖ�g��E8L�8�pw�@y��oE�es��o�TZ�[��U��q�T�$��Q����"Q~�����BEԏn�)g��kT�V�ڗ�� ���P#�ʞB�h�� n�-��Q�����I��WS2��W Y�\��!�Ɓ�a���i��C�݂=}رO�4$g��B/�g�������sr�Ɔ�� ���)^}J�I~�ܠ(���53�^�u��/T�#g��V#�c)7 ��*��9�l8�����fa��:�x�b�=�Y�L����a�i˭���S����Ȭ��� �L ䷮��\�,�������J��ҵ*���M9�I��y�$xZeǫ�c+����#́�>=*E�\�L���$Z��}Bک�K�~�����X�c k!@��Ԫ�#L+����A�s�8��z�~c�����]\����͏��ÝG��ˎ2�W���xz��W4`����>�æ��ׁ���9�r@C�����AX�T�.���V�Ť���M���G㿫���%��ͯ�@Ul�W �i?p�̤�[8���n��Y#xg���"�"N�(�=N�:�H'4�h�a�%�����bC�� �O��tFס�`*S�wq�|6x���ȥ����v�_}T��)�D;hϪ���/�yO�bLp�J�_�\F=���i��/~��;�M��fm�� +<��1fp����N���#�i�c��S'���^ ��l"{ϴ�>,"�{L��O�/��a��+��X!4bf�%���h���n�j���m��Z#���)�a���W���@X�%�B�ƨ��b!hz����k�>/L���E��ە � �x�F�N#��u�+�m2�3�mxX��3n�~�U ��z$�s�[������=h�rė���ȩoWVx�T���7���Zy�\1��D�Ѓ����_q�$N�D���ǒj�~�ih)<��R���qj�0�D�k��!� ̈��z��q �[4]�H�d� [���F_PG6IU�"�b���{�r��Q�qM���cS>(b3)��-������td��xޱ�m�_�d�|pl.��Ð@��#9�])Ӆ��7��|x�x��>Oo��h�&��}�טk���c@�nq�<(T�S��_���'�'�#=��a3�K�Z���'2�]u�z��۰�ޙa��s�w/�������1��]�Գ�Vd_�n�ьW�(��(�~<Cuv� )-#�ؕ��Q�O"a�8��amU�\����vo�P�ݢO��5z����!{}��I�͵W䴔�WI��`��с]\/�x^w�����'�F5�j� � ڄ�#IL��1L���5Z0G�����M+��@�⧬ ���}[�ޅ�o�IW�s�ٟ�����iZ�m{ح�X+�����<��\� r�}��mI]x��؏���邝k_0�bhQ-Z'�,m�����⩻m���y����;{�-��y����@"s?G���L��c�ڊ��n5�\+f�P?���,�i�e��,��a�-��n՜�4���ؽ2 ��|���X���pbҬ����.Qt~�Q����������i�MW]'\41&�٣ٷ��dp�\3F/���� Q�wi0�M8]�̘��&4�D`9� �%BB���C�y]c�7s������B��p���)�B����A��ȱ��d;��b�O5iW,���2|h)T���!����~t�q�rC�2�1�g=UZ*�r�H)��;��������<�����^T� a�>�F��e�P�B�����젉�-�}۬#�h�>�Z�f!�n��:�BY�R��uG�+Zu:��\����I�����9���¾�跟V·��iē�?S +��k�Go�D��,e��V-1ɀ�ܟ}K��?���k�Q2�<�e��菂��j%[�&�XQ����bL�C�U�{pE<s�a������dV[�qDŽ_zĸA,�r���#C�M����&�l�1���K>t�>v� R� ř�|�����ά�K4�A� X=�L�N��4 x,�m�;W*�J��ݯG:{}�#%��&ծ�h�}�B0��1�77��Z�1��i�g�L���� j�:�~�X����9I>*�"� ~qe>5�9��q�3�N�2�X)H�9L=���w�E�)�E��]_�J[��8/�>��ÍR�z��O)��,�#Ֆ����p��&7S�e�NTQ�=҄��� /�i�ͰD�I=�hg�+��.U#u3*.7�|}P(�Q}r�Hz�`�� �!�Dv!�5֜����1��^F� ��u�)/}�+B@U����x��ۙ�/���b��#�F�" ? �� ��wMw�3�����D��ƈ�{�Ƚ��j_��:�T+U=#��� �ߖi�U��6�D\ъ;�E�v�k�Fπ/J�����/�6]<w�?���^�Mh�k��FݙU|�����ʹ�CL0��Qf�M�I��,��P4��NW.h�w��~��|����B|�u`�m�����hL��s���/qP�P�����0�b˴݆����K�dxZ���%w�Q ���y��m�RKypfn�$� q�ô�d�Y�4&�H�x�$rDK!(�gbNR��K�ǫv[����#�y�3���@??-$��A��tBDp��jg��O�F����cn��]�7�� ym�k$N�08��&bd�k2\���B^�9�k�&���|�AKm�~L]%�zN� R)���VUj��*�E�덳�V�5�d�{��(��7$I*����R���8�DZ��0�$ß�AJl �ji�>g�Kɐe�u�oK�c�RO�{���d�����N�\|�@N��ᦿ�����=����6�;qNJɣY������Y���pJۏ��ΧTWv�S�:���WL�6$!� ��2�֊���y��GY�E��oEo�5��\��D���� #�,5�l�z�L���1:�`��-���h�D&�qJ>[]�_�dK=�Kam�� W?��j�=篌a4�F3��Y���U5�e� �z�m�a`�*X���oLV�u���>-�є��C�/^�z�,�Xo�'����ئC�w�D�,4�NR��/b��v_ڲ.`��QxM,�C���C�G���8�&8��N�4�B��Ȧb˜�/����p���D���lބ�<�k��\���Fh*$�:����WrV�So�yiuRB�Q:�k��)1)��(|�yW��eǎP����ё(�*%A:��-8$#+���[k=��͌��]؛W~G-����3�j��?E㢇�JB'��ߗ>�{b�K�5�%ʆV�7$H13���!���&��`NK��4�K*�2#��ߵ�w�� u��PHP�<3 �թ&�+^j�4�� }�Y��-"��K�;�|h PS��g{6ۮ��@�E�i�~��4��Xp8.��8�>��nW�Fv�����N\\ �O�a&L*��Za~�:�d�Z��ka�PS�/@��n�H֎�o@Ȩt�^ɈF���dHҾ�F63/B��{������\����r�@��m��X.o!���6�P 9�A�?����ʡ�?�MFCj��F��V3K�)�~NJ��43�z�n��T�P�GV:V���菣c���`�����w�n�~��,�)�#���0D�L�˛�Ĵ ���>��vz�/0��f�4&��4 �� ���P� Fb�+X�`������wNĘYH������\Ѱl�־b��]Q:1F�l?�K��1�#V��!�#W��mAȭ!@�V�\���+sjkWos7uY�E,t^���g�V슝q�c�4�d��ȫd���U��_J���#�b�ʷPs�Lō�9�D�$G�{1/㈻몔��wv.�v-6BN����}g���;uO�t�����2�0�|�a���N�qi}#��+�ei�R�槾m��Y�!i�u����KK0�S4���f�P�����i9��9@��s�z�ƚ��t�+Ow������DP��dp}"m�4��0ܤ�>�P�\�q��:���R��)��c�뎡�����[���t�Ϫ ��x��E�u�����V*��]PQ�a�����mm�����Գ���z��ô��A;�L��#�V"3!}�4&x�]mӽ�M[��uz����D/̙��W/ >��:u�?bT�i�偽�W�X�R��/�-�}��뫖6^��w�=�E`�%�g�� �i�sW+�VH;�K{U�i~ @v��-Ӭ~9D�N%�y8P���լ�AY��Ө}�:f"�. ljq|;�9:�7�6�IR�:���Y�<\��:ʏҰ��M2gs��ʰS{���me�,>8�X��o��` M�+����Q�|~�Z��a��"9��}��� �Vd���2o�� ����HQ+��/�O'jZۆCrğ1��ӿ��6�F�����h��0L��ʆ�7�1aq�m�_�_�U2K�9�-9�Gv�G��G{i}#�"�^�)G��*נ���Bw�|8�<ѕk?~�-#[�O�,��m��Y�r���ɛQ��s�ﻹ��a��"�.�=��+�]q�S�[�t�!�jX��ctA������Қa�M�#�����9��+�HM�qD�:+���A�5��^��b� �E�\� >��f�:]�coWY��g(gt�w��;�"�(���\�z�q��ΓEH�^���u�>˻�������*/����B�Xw{��O���C8���İ�=y��8"�آ��l��9�`�Ё��w_�>��BU���wvÆl�/@�0����4 -��%�K���J����jg���a$+�;)y����@���x����m�%%��6��w�H��{��L⃨/�~���9�D ��e���0_�$�C.h�`��w�ާ�_�f"]0��%����� �j���BxQI�P�����p�j� C�{W/��E)$���Pg?6�ݭu��D�m��DZ9oK�#JQ�z�x��C{_�һs�%|��x܇�Ѩ�d@�_�f�8��-�k(1U(�� )���!��ņ�(��vvLJ�[��lxW�bR+[�H�����鵋6e�o�(��]�! �跦DŽ�,YD�RKM+A@�0�@ۑ��ݙ��BN��ؒj�>��N �� �j�I�a���l�悁�&��^)]y��y'$rg��KQq���� �SR�%�g��u�����>E3)ő6����0��Q�����9��^�{�yS�-�cKN|���w�X9�PQ��Ƕ.�bN��~겐�R���� �K>1э��[KYJ*�|�<��0Uꟿ�{2����}�Nj�X4�Gg3�>� ��;Qd��%�2����n'���?RS�9�=6K��cH�aė��$�Yu]݄�ߤ{� >��ȍ-����v�@X���Z7jhfi9�5����gt��Y��O��wЩ�V��R�[TOE�n _y�:$��[��ra!�BҐ���2q@E���U�$v'8�:�\jj�]�R7�(:(c��C�f�@����7�ó�r���s*ߊ���ָ��Dpo��ua����� ��yf3����t�A��䢓t��h ���<��;O���:�,J��Z���*�+/���S�l����"�(o�_�8������$�6���-?0~��.}�������<G�}'�l���� AU���/������l�z�9~�����{�=a��Jw��tn���lY�y��N��lZ�n���iܯq� u�Ju���� ����rs_����v��e�"^�wy��Z�㍵�YC-K�צ��m1D;�;(��(��3R����r۹>�w�ر�?��p,�l�h�@�+S4���/��v� ɾ\� ��8`Z��z*�B&̨�xa�4v+�^Y�&U$' �_�TȱxD�?kd�=u<W]4���?{�FxP-�U��RJ�\?^����� &��T��}<0U��`Ǜ�;�| �}��O��p7,(�m��i,I�F�df��a^,�C�}HQ��@�rK/�A6J��94T�%�OSp��_e��1��r�� ?&�+�o�l��7�_��R�g<��T�+px�,W�|/c+>�혲 K>��z��1��`��}�@pvT����bE�|?=:Jf�t��ĒG/}���Xjbt`�hg ��H�}��b){��e냲�5��[���x3��@�1U���hMޞe�]����l�����̧zYȏ��� ��/ S�k+�y��m`�%�+�]^ɶ�������?�R5bC�?��u�'���>�f�v�~�f?���oi*N���-�4�����F ���1��d��j��~:�V��0��� y(qp��u��G�����DUR,�K/V~�\��%h�g}���P E�[��0t��*TI\��e�����uP�/�Q��X���L�& f���"S��p�4����5�W�[4�X�d��'�xB��s��՟���W�����e�匠��T[��=Sޞ���ƞ�������o[�����<t2�<U�!��1����{c<?\Q-��UW��c�hV�d�4#�T*�������Q���� ��=�1�8�ӵ�_�cJ~w�@�f!Fs�*�8#ja���B�sf].$���-ZT�C���R8���`�;oe�:w4'ܬI?��#}���y1�g���1mW9�5l����ʾL��H\��U?UĢ��o��k�0x� S�$�%�}�*�1����DՍ���GM(E���pG��E����L��'|(�q��φ}~6�ކ��h� ������m%��� ��,ٖ�8�q%vp���{b�3z�!0@�� 1�n�!c͉��i`ANK6�r��TJS>�i-��0E��@��c �[�܉E����s��@���a�W|�`�-m�4����h�X��Ìy6�����r��8��79��x�� fw:��^���8�E�2�)��@�j�≻�4�&eC/z���* b�d҅�Ǝ�x�,�)�W��xbr�;�*D"aּN<�����7��{�@��+؇F����p��'�G�B_īN����q�@f���Y՜1�ۗ��I�����!�r�$�5Dv��{�?��~BL�~*^~�,�iZ�eK7�l����0M�>@�ѣ���ZUa���ц=m6���|k�6Akr��ɱ~�wcmM/�xB� f�/�^�� '��F{"[�bT�� ��5���5��x�=i��w|���9�T5�K��l}��K��J=`�t5����.�s������ �FM.a�w�:��Z7�� �|���l�Q���Pɝ�|�](y��+}@����5��������L�+��َ7@�GE�xY3Ջ�W�K�CmTT�Vͮk�ަ�ER���,!�w��v=��j��3s�\c��We�������E�E��K|��x�z��4�/�b���_v�|��2c��Rliy/Q5ocGX���o�о�]���G�Ĥ����ۀ��h^-HAȫ,�� 1ہ���MG��ut{�w��o���P���%;�����\�fIa���y���n`�E��I���ؙ���G�֭��V��q��~���s<�}XZЛ��H�5E�{[��lā�m�t7j�:�KSUh� ��@�ٺ�kJh�7�?؏1�qr.i Бl&�\�`��/�D�ȝR0�pA')��`�F?;X!��b+�5ּ;�a����9����+�D!��)�4�/j2pH�{|e�6� '��B�����ȶ ��R���Ԫ��,K��]��g���J��2��xγ�h���*�x�<�����pur���y&���V�߽�� �/�}�p�U��g�8��s�p��Ȼ���H�S=��VF:��b���oS��i U�}F�n(�#q�Q�k����y��=�j���U��oA��5ho?�H���6m�0Ṇ-��q�G�B�ĉ �ii�ɧ�/��[�̢��K6�-ۨ$%{�u�BVO���:~��ȷ�a8���4{Q_zgT����LH�����.�:���`��4;������+8y^`����k ��;�s ��F�\��L��=�"�+�:�� ��T�T9ip�֚���֣�t�[@�����$�|�ɾ>����t�$[��>�*�RV&zC�N�:,��'��\�L�"��ZVoP��z�(7�;K�+3��4o�VM�.s�R�)��ɤĐU3"r��\^�φE�;�1��'z^׃f�gDO��Z���Q�z=2N̙H*$�i��L��F�Y�C��A��iՀF�OC���/����B���>��$�|T�#���%BL�LP�-y 4Lyӣ�d��rh��U|~�j!�P�w� �"n��%���-����(� ���9�X4���=J%eV�Z�7o[N�l���hN��MDJ-!����5٭�Ц�.m �ߦ`�-���^+ص �����k�놨�DSU�U���ļ_yӰU����g�I�.��~��~B� v��t����Ʋ:��#�ю� �l���K A��f��@�e�Ȝ�+SQ�+I�'4��yAn�w�g�=��e�/�0����:�A�й܃4���>���͞�`,���)^8@3U�h�1r�#x��Nk�K���z�Rj��k@�*��3T�AG���{>1�=���}2L��&����&;F����R����Eq�m�Ak�_�k���G�9�C�G�*o�j���;V� �O�T�,x�vO"s@Y��J�goG�]:\�k����RA�t���=\��QFEr,\4��Ǯ+�O��7��7J>�1|'�n6�0����riNtg�ע�S�C�]U���1���� -���#�Δ�/ï�dn�����ќ�\�+���n�щ��fw�7����,�]ovF8��d+�R~�������P����-�)7��X�s\۾��C��W��|e��jF��}sZX��m������N��QM{�M�)�K��c�/�G��@��Yj���YX��^=�ŚW��;�8�,��F��3�'�����*>(~�P(�qNLT�w�s���2��+�EB�c3��cߔݏ�t�!uaJ�y^��W^j�����0yN����|�y�w�Te�����ȹvz�<E�"�HF��mp�چ[�H�a69�A�,E3��ƙɰ���z�!�����d="�T�1n�l�)�40�S����;�u'_��,��Yr1᠐�����z����ʣR8�Q����_��QIm�7D��J�S�ͨ+`9������ng��N�Z�)y�Pϊ��#˓��{:q�M�#�OrJ�n�!u��5I�M�C#�OZ�7��nS!���d���e6i<����(�H�$D}��đ2�=�A5��8h��k���~�}ⱈRp��Q V>U�S�]:<܀0x�K�ʃ�z#+�c}�a����榠~h_��1�y�K-�vP{�Ɇ�:������O��T�f��I��C$��lu�Z���1��!��'^i�ؠ�k�I{��YJ6v��oy0�3Q�!3rwƢ�0w��a �+����%�Q7�k�9��>�d��b�d�1u\�}�Y`�pN���v��n�� ylQӜT��SRE�zm,lvN��7�ol�&�7DB9f�r,Sjj�K��O�̛����Qq�c� H��x^�د��[�E?�q�Ӄ�6�i�;����5��$*;>�`���L��|i=���&>�'�Wv� @%0#-�����~I���;�].���L�?��Tb:]�Ն��ZbmB�=�H=��T%�wP�H�9na��������O>�H4� I��Q�#�X�Č�.2��<�n9�}�[�酗�W�~��8"d���}��h<ܤg�>��P� �q�����@A�@+�M�S��'R�%h�j��{��ء�x�zz�`�(�x�q@�R�L���s�:? ����������E����8:&�^��].t�m�ӧ��Y�bZ�i���4g��>���kl���wΦ��w������N ����ĽH~�� <�d�ɉ������Lۗn���X���^���L� 9�j�<g&�ƴs?{�%<��t0q��(�ɡ��u'9�5��O�}>C��D"�-�����t�����Y�Ie�2Mqnw��eT�v��e-D��w�Nk��5�HD�#Ұ'�Bc�|)1)\��m���oy���Rp��Gp,��4�`B�mq���(��f�A�n��Q~%��oM��<��ǚE�#�t�f�D}��/abX#�I87�bapvご��Æ�- ε*��"يU�.<D�uT�j6�<'b�Z7�{�,'Y����^6���C��Ye�L+���T�n�R6������LWhb��Soh�<�dZ�c��G�Z��`ﻀO!�T9@��03_<Y��,%zx���-"� �Qj>Tޝe��$�R�Ùf/i��XߡԀp��Α�4��D��ޛp)���N�}OZ9&� �7��ؠ�c���u��J��#k}վ�� <�a�Б3�A�͒�e�N;�?�&��W�բG{�y}� ��u\и�;���]��;�}��m7�;��M��hv'Mɼ��A��nA��e5��T��l���:����LX;t�`���x*�A0 ���^�D��?��$�r;�>|d�8R��E�&�N�Sɰ��Ն�8�(�Bf7I���{j�������"��c+��s|��F�pj�g�zH���dej��S��hȴ'{E�o���v8������K&�8��WDɉ>)�ao��)s�Cqr��(�)�1��{��|����Տ�lض��k�L��[2�*[ l4ʎ��Fi���"�5B�}M�x}I��'\2\��6"��>H�g)��~w�ФN�Q���g�2�Ԏ�����V�3���\*��sY��$x �xj�\%~��5�G��ԣ��"g�< |zk�$Hj��C��]��x��e��PO��.�Df0�]�qP�6��/�pF>2�4��P��{���yw*2i���ǟh����iB�$��M�f��!b2�s^����֫�r���/�$O'�ۂ���G�<�}�;�P��a�'�S����ᒹ��G\L2~�G4�i�[�oa��ɲ2w�"W`k���A�D�bo`GB���%�ťLc�� Yh�c�D��2�&w~q�3M�@�.�H��T�Yc��O<ݵ���\y�P�띒*���ݓ�O��H��B}������ɗ%d�W�e�'���[�_�9m�Mӊ��a���%�;_��>�d>��HZ�������Ή��¬Od�P%��Q�l�Gn�'J�tED�����R�u\�6�h��^�O����5��HHy4?��;.ިnt��/B�/_� v�ɂل�q��d�s���}��(�n-|}�l�7��TUٌɍ���I`P7�ޱ�/�e~G$�I�ч��,7��&���v�ϏH�b#w÷v���<1��C���C�2:�c3� It_WL��:�6��>zZ����֖1t���n�"oTl���7��a�A��M��Rb #>n�>�� K�:-(.��7�4'�K����}\`�S>F�RO�^�U����k���� ]��^eS��{�%䟷)��o�lMf0�`C�P�-`v̴`��+�_SZ����눞\���Te'�]O q��|i�r�F�wi�)��Cs||�W��Q�t-o �r_PG)�& �%L�5M>{0��%���Ƭ��v0(;%���7�0Z��:K7(-�r� z`�jzn�Q��M�w)?�ctI)�V�ae2g���p���J �=vc��w��-o�m涧�u�6q�A�M )��ˌ�: angz[m����F�p�bY�0�?���:c��&��O*\��Y>�g{E �Ғ�q���n�۸��m��ɑ�o�$T���z�v�&6���i:�1���(�ͻ��섹k�B�k�2X����Щ�> 7>U�iؤ�4M��@�'���b��N��ɖG����������/�VF��T�kP.S�g��i��wr�?v��i�SK��qۡ��[�23z��A�P�C�[��v���(r��|(E�吢�0*?˥Ǻ��$����mDi���UG�E�ξ�y�Ȫ�v���K)/²�Z7�9�5ҁ��k��.��G,'��nwW\X��6 �2h�)}�_�J���(�M�&�0okwAN�F��c�YT��?�I�T�x�ZV�,?�3��a�a�73��%n���T� �vWq�ݦ/;^D!� �=;���v�R�!����X4l#�Nr�>�}������|�"׳���+������v�ok�.F��3��W�0�eEYx<���4�g=I��)��1!� �Y]���Z��̊H��-֙��:BrOa��p*K�/f�2�5��z��^C�Q��6������̀Q�x�y�4��@�\�ԝ��I�ݵ��B�U8�X�S�C�n�^^E<o����C�L����Jq2��B�fPUĈ�4#����H".�2 �����RJH��,�� ����z�w��^J�^r����#s���&�]*u�����ayL�"u`i1�9��Z7���<�{A!�S��OHo\��5�tR|���&��xe�a�}=އ+�S^5U���C�uj���~��g�OI$ï�}�2>3 )/�B�g�H�ke�`�5�89��jn��6�S�o���A]Ҹ$Y��{�d2� ���]�@��kT���}�i+^����LO���:w\����G+���A돘�g�M!]��=M��(JʼJGv �p�s ��ҕQ;Hd_i�?�W^��%��X7�+ʾ�p���rֶ�q_��� kz� �Q�kqT��é��E2�~��^����R�(�[�G��y��FR���ׯ �]9=Wլ�k�c�� kl�����i�!Sn�dw��q�����w�c�λ��>J��A���zod�T���]��e5z�˛D{�v�|Қ?��ӵ���\zr���*k 2jzէ�!����Xe�\$|���-��˖Z���m��w*��FR�"(RCs�[�h����^{rQP�;�xd�}KޛnRsb}e�wG Ev�A)C錞��n�w��z}r��I��4��:(t~*'���:�qQ�O��5!ݽ��r�]�N���H�R�5>T3����K��'$�V��~Wad��J�'��|@�A��{yX�E�9��ii��_����"�� �2PO���ý=w9��1*�E��j��P��ࣁ�c�te�(����(S��?'M�=ͱ��e�_�('���4���}t�����OVy�'�b,&]���1�}i�(:���䔛]�;D5��FJ-�Q�mr�]U[�����&�X �����i�X�O=#m5l�d�M��w�srlW��"UZ+<�~Lo��qCY�w��2��)וr��0>�H���+�c;��g;���$����8E�Q�g�}A�"�2�����?��*�� =�?p�E�x���D��>�g}J���5{�le���=)ƾ"_֢��L�tҒ��t��m�P��4 � ���v"TJ��1���X�8$LTq8?@�99��o�bV�x�'�x�Y��X`�-��\^�#Yt��&�1�,#�^2���Õ��v�(�F�V14%J�h�1�W\g����i�����^V�6t�\J�<)�M��/�\�8/mt��(,�U0��&���J���y�U�T�ffP��Y��~ ǰ_�j��$F-�� ^�������p����1럘���vϊ|���t��������0�/�X^�Q�#s�~�Sq�ŭ�6Y����AT3�p���ث���R�����?"��dBz8J�� Cq,n&�0��I�M ���D99��+>Ck����OE��K��#��_�;Hz���5��/V���QHRՂ�@ʚXg�N�ٖ�O� ��@<�Hy�����5�J�����\:z�[���u�ñ��A��^I@|��T��0��=w٭&��s+:,g���A�\�2�K=Qz�;�f�`3HJ� P����N��k���&S���ݫr��ix�O�d[�G]݉�wPԘ��g-��H8NI�|��Nݸ�*]f)������$֍>�W4��s�P��2�Pg#�/Aי�4)�J��}��=���< �@z�=H��F���B��l#�Y��ӻ9^jo6ڠ���p��y��[g��O�F�@�[�k�t�/������r�C��/j_`�� ᠃=���{徣����"�A��_#���oL�01�?m�k��Ȓ���d�K�̠��i�$�(K�h�M� VI�&������XQ��O��N� �҄��&� �R��K�ܿ��O�Q�{`�^-ܘ��BRr��~W�(�nN_0�vq�� Ԯ�N��=]�A)����`����8�������ѳ��t~�Y,��(��ղ�/�D(R1�t��_AS20X��uX���̦~atĖ��a㞙<OBs ?�� �MK�E����{�dt:���?&Y�r�M�7��S h��oM�W� sȱ�q�+�\��G�d�M�i��v��:�/vb͠2T��Xټ��/ ��_�1�X�|�m�A9x��%(˟5��PVTĩ3�}G�@z��p��v��5��¶�ӼA���+GgHY�M�Wz�Z���A�]�vJӅ��}�pu�(�z�Ϯ�7=2Xį����T�C��bf=,�u`ϧ"wj��Sb��m��!Ͱ�%?��JL�O�u��Ѹ�x�E�x���d�o4���bث4�C�sV'B �! �M8��@�ǰP����^�lo��#B8�C�2|�0��Y��!e�����Mgs&7p��h�P��Q������Q������{^�Rg0 �G�w73#���]��E,�����F�*��9��J�����[6{�,j�%�As�kz(���S�Q�!��nMɚ�Y}� ���gQיE�\�)���ٍ��I����F�a�/x�K%KJ��+ ���&�?g�u\8c����c5`��V��7ļ���;X`����<2!G2#���Y��e�ذ#��EH��渥������=� mĽ�e�E�+�'8�|�����͖�{��R)f��_&���N�(�@��eZv| %�d�q�}:;��=�-zg��I�< �{<���9O�?�J�v��u�<id�FJ��N�f� ߪ*�P<�Qy�� ���O���)��Fn�v��Gg�(��Ӣm�J���l�}��g��(��R«��ص8Q��=&�#��J� dK��G/*5Y�YVc�īS���&>=�����,u��A��S�>��c1H�{�$NV��WM_�Pc�6�V*��%��M| ���ޖ2��S�n��aHKQ\�%B� � �t�� !�����{O[ �D�: ��X[-�/E�v�kV�hp���ӊU(�-����W�X#��Sh��qS�z� L�ia�әG���M<����!�+,�+`2�de���a{��~�� `�ͣ��9~�cGS������c���'�¾�b}�beET �~�7>���+�cۓԴ�9�Rv�t�~{��~w?jPfQII�(��=�����z�,��BHB1-vJ����Z�.w�� 7��*X�BH���k�ЀU�QɵAwU�5��_p�1\���v�����K^�g�vvo���?���K���J�*�k2��Y��w�o0� ~�Djq�~&���Y$��~�k �r5�w����>�<!6~�)��L)�u������}�K�o��.h钦>��-9��� K�C����Êt����2��pM%g� ��(��[Q���Ʀ �C^��m�a�"]��"F����T�l����&x�\6$��M�I��D�y�ݒzʨ�YDZP�N>���f%U:�s�Ә��r��U���ex� �58����iT��<J-�ђ��[�kZ�6��݄�U߶b�S<�TK��DčRQ.[��z����� w2�X���݃�4��l}>�r�����^Q�t?�%�������w�@���ui[*b�k�ӵ��yчQ��נ��`k^L�7SӇ�{.�N4۷�[�@*���+Ǎ�p�ijc���*���@&��6�%-%#�zڳ��P�ʥ�.��;Hs�Q���^:� ��(�O_͕Y�Ѯ� �/ �2�b��+�IAy�=������ЫH8����<Y�&��y�q�t@��l�v��Z����a� �A�e k��q�w*�^�Y����A3L�g�U.Ad-dea���掕NW��/�{�qH��~<A�ǁCe�|Rf88�%���f� �lB0ubu����4XD5"���5���kV?{�슷 ����{�}.��Q��R�m~˧��0/��M�d߇�K�N��}=�s�3�ԭ�?�&�©�>S���-���Yӟ��V1��`�79�6X�������i��;!�i�}K �W�g跒��UI�:�,��h=��Z������`��Q��b��M���"��>?��/w�*2Gw\�-a����dU�x �J�� )2M�A����o����w�����-��C�ٵ��BV�� �.���S� z�Y����G/�ɶ���˖eEnLRf���p�>��Z+ߺ rb�Q�}k�z5~��(;�bs�U��=ڳ`-. ��%�9A~���@^*�\���E0,��l��n`v�hb��O�ǘ���uηn�fk^��OV�"�m�N�o�VaE� ��G1�*�{��@����U����lݶ�.��Y�_��?<v�"�����|C�h�6u�ߵoA�����0=�ߌ�-�]1��n��̀8�-�Zĕ�̌И�fN��^���"��'� �� �ȍ�C�=���5 ��n׳��pQ�˹��%���J��E�@�\�N��_�}��X�;�u��t��.Ӱ�-��$�o�)(O�R��C�����A���i���9�UZ��秜�}>7�J-s�>�����6�+����s�Z3��O7�H�b����H�I?ほֱe%n����{� ~����2����=ƎGw)�Ѯb�Y�ћ]���\�����%�)�k�M��#�u��>�6'�Ax�h�cb������Z�x��5K�̼S��B�d&���SN1�A��o�� �B�3�C��EN��l��3��߭�vP"cW�Q��˰Ue՟9�a),�c��+��s�J{�,��Q�X\:%�+�L���j���$SQ 4����ㆺ~-&7�r�d�P�k]B�m�C��rj�?ٴ�(�"�%i��ƌ��0ݠd���>;Xq{��-�4 �iJ�Xk`��"Qr�\$�7�X�%���s�[�-SA7�0�M�Ot��-�"��Y7��Ya���NT���!�{�s��!�\�(W�F�0�����/�|���r��R^֞��}�oKK������p p>�� ��b 7�B�,�������v�,�Ծf�]�XG���������}]E#�T%�� Ps� Vhү�#��&�A�����������DT��d_�����8z}Ί�a���~Z�S�]��}ZՏ��yD�����- ����+�Bgf� ?kV`�־�-����Hg��I�85��{��*���r�6M�qh�M]���?�w��x.�ѝ��ڕ�|4F&��}��s *ǽ�,�G��{Jd*B�3gz�5k�`��AkY>T��"A�� ��$뙨`A��ӈhܳ:-�ٮ�:�LM�ڴ|�S���U_LH��x%�@e�7T�R쎛��G�nI�-W/�fdj+��d�b�}�A!��>ʅקޫ:,B�:��ct�A�Bi�r��4l"��Ҁ����|���Ķf�Ġ�Ia�KJ��5�u8��=�V�ѷ��8q���Ȅ]/�������� ��rM�oܱ��%��zt��9�N��o��9,�$N5�<KQJ�L�X���\y���-�QJ �3���Z��Odx�M ���D��{��Q1ʧƿu1r�v q;?�[���s\�����fE��ґ��9׆C���O�X���zt��� i�KQ{$�?��!r!B�yW�ʉv!��#y8Z��� ��ל# [h��s_�U����`�� 37y�(������ZF�öa�5{-3]*�{m�9fhJ�x��[��j�Z�����d%�E)�����a;�hJ\�n8�ι�U��(�h�6��BV�������5�7װ ��֧48V��ߓ���>8�FT�a�)���wE���<�I�)�SF�vH���MX��L�����G�����B���;���dB+&X�S��~���,�DR��w� r�IbO��oOX˱Gמ 嘺��B�}�%L�� {C�`Ǿ |�h��_�T�%������P9� @6�q���_�ߧN�@&>�)�B�)?�`��~ 8��it�A�}������A*a0&�}�k>���3��p��0+�"�l� o#q����F<��ŧy�5,��W�jU+�2��(4?���}���x4J1'�g5N�z�+6�Y�u����m{�(�reXR��.� %\ 0Ǒ)�Ħ3%�ͅ�-R��f�旫�V��#T⼐�ﺸ��]���F�4��v��HLՇJfu��]�f�<`��Pʸ���/��-�>�Nr�߳H��aHH��n=�#�_�nb�|T��8�Y��K��n�LI�qU[���R �stm��r'54z���(�E|T*Yi�c�Q��f��C;��rVh���F��yC�&=��K!i��=g���X����:�pW�a�`0J�O.K�gh6#�ʪj�S#���>����}�?N�2+o$#�����e����U��6k��b��.��i�y��±��8~�� _H�=���T'T�E=$�=ϋ=�N_*B���"c&1ԛ~3�����V������V;폔�6�K�7'&g�� ,=8K�[�< ����6S�#]4�A_d� �Ո�#߰�J�JV���k~����kX~�E� 5�W@�ø�!=W9��!7%T�f��>�y��A)�d��oX67�YCQ�iuׅ��i��p3W�^��Mq�YH��rVX�ȌbSuc/tA�<_"P�UhF�ST��L�#�1f&�t�� 'Q�;�_(Jz�T�*�مn�'�@o�r���������=�w����<���H�=@�I}�g �}/|f�R� �'�P�H;��3$�fR�pNUI� v�90�u���/|k�YP� ����7��<V����zh�6J4�3{5�nFd�{��p�#5�]�ĺK�J�X��������̚��i�c���607��Y4'���?��}��թ�0�Z�@�E�&��)��2y���7�Esf�|��oGU�չ� )/�հ�%�V���u��~��R���EMre�ՖW�@��P�7��Q�BB�}���o)=t��9C�N�B����@��,y?o��vɆJ6�Ld�J��p��0P<��˼��#C���G̾JH�ǼM�Eoخb�oJ��%~Fs�`���S�`��x��}�K�ܜ �m)x�T���5�'gͧ�NNʳ�*iR��n���|��@ F/�ݍ�� �b�=R������n�~��vX+�q��C�����h!����[6/�Lh�"q���/0�<�B��G��z����1�L�5�,���g���2�9sk��;X�&���y��/Jʉ<�F���cd��o�#��H�������岤4�k:�ϸp?�D�@��#'f�A�<����B�fD�}ݕrnd{�d�4v� n��t���K�,���u�9�վQ��W�$��22'�B��d���D�.;}ɿ��Gm8������:���0Iztk�}X�3d+�V����E��8�/2��Fwq]�S�9�B��浜�I�cs^���v#�K��"���yj�wwȔ�����,AN��s��W40!��kn�U�C(���o�CH.�Kz�.cuʁ���py �r�N��� ��k����Ǝ"OGj�p��ӻ�L�(��-:�s&5Ց�����_V���E��ϋ"öu�ģ��i�� ��� �7�ex���:�Б�덨��D�Rq�>U�v<�z�?e��D̮%D�"'�b�(����C^��ܬ�#1�#9�#}�1�{��q�dA�ت�I;b8QFF������-A�&����4���"�;�W������Xu�U�2��%��Z�A���ȸ���8.�s� ��Ԕ�7��!�"$S��DQ%Nq \<���B"�,��H�B���UJ� *sJNCU"p�Gs�+��������a#S^ xÃ��%�J���k��Q2�*��de��X�N�����+ͧ�B��[I���|Tx��]�J-�Cnpu��WȎ��ؿԩW�J[r_�����g�9�`/�H�y�2�hC�0�[�%�z���Y0u�ڻ�JKe��X�-�P" ��$��O� �a:o����a�E��-�)9����b�����#LU��J>Qr\���t��AĘ?�Y����4�N��,?K�d�G���7�PY �U��� !�@< �s�dN�"?��K�/��V˯�W��$������~\wd�H���[$��Ð��xS��F$�Ϸ�d�y���R�58����ț��o z+�lX�|�%�uQ������2$"8�Aںt�����J}�Ȫ��� ��n���=H��$�;PwVߣ�.�]�5y4G�A��Sww��H��kU�3�V��s����I㽗Oȴ�|��~�)�'R��3��gdg��x�X�W�_������0'�t��bA*8h�w_U�u<��`+腭��)U��A�����PT�ۻ_t#�.+�b��{%���#�➚��ZT�Y�֧BW����C� �.�4�q4L���X�x��6~���*L�̣?�"��@i4իA.r���s�DӢ��e�{�z%:h�f�?>�T��72=KTP��l?��ƙd��+�/Ը1��8@�]��*R��F`I��0�{��`%�ǶKd�f��3Wq����6�/r<j6��l�,lӁl�+b"TRn䘱���`��8���?�$T��)��O%�d̓�n�����&g�gGčod�t��<^c11O��K�#��B.(0W���b���'����S`��l����q�� 0)*M�G?�1p�G��ZwN�mM�?���IU[����o@�^���8��E�1�㝣`BGA�E�D��C�`�P��T���B���:Cl�'7Er�;\�%���-�X� 4��l\e�!A�!�7I<M���:~���k��c�U� i�.Ѳ�?���5*�8��P��燒;}��`g�`��)�mz�>�p� ��?�mpw��:���gЃ����@�t"��q��b^�#�`U:�ģ��ް[5�N�n���$N0�\R����1D_V�"�.г�'�7� ^��¿y��E���} YZ����!\$�*I��C#XF<`��x��`�_1�I�����!~�����;��)# ��[�6�a p/ھ��NĞ?S��,K�y� 6�\�!��@p�gG�v�i�t"�o�&&� �� �2�a2ԙ[�5AU��-��������A�!2�2���hNŪ1 V����!�j�N&�$������$L2ir�bԲ�B�H>h�L2��� qUv- ⤧���<e;�&� �J�ԫ{K����p��8I�ײ<��f��q�]���FR�Z�/5�1]}���0��RE�w��Qz���{9�t*���9���c������?T����n5�a,�.�yQ�(�9 �G�Y����Ս�xפb�oC��3�M���T.���[x��,c��e�x�&8���K���bC1��x�eC� �2���/O�?9����#h�k�s�[9��-Ƌ$Ne�N����wrI�_� � �{� �>����<)'�ͪ8ôU��bP|Cnh��.�ln��?��&4ʑ�Y����ʭ.�c��a��dY^�y���w���gͬ�.,�Hb�j~E�#�S]��'�Z� 6�q&s�;�Yi�w��A�A�ԍ�_,���ˤټ>���������a�@����U-���v�:r�j(� ��*g�������CS*?��"�z=%��#�G�ytVR[�Z� �O�����\�NU;�$O7ͭ�T#W��N���;����>H��.�j Ⱥ� \O3C�6�A/ �r(��;���C��ťi���;6�A���Q�*%@5��ŀs��=��]�!뱎v��Gh�[w�i�\�7��a�i�N,D��y.���9�4��$�w���j�>�83�zq�,K��;k���eC�����Ĩ�J=X�Bwn| ���DU����%=�N�+�I$~3���~o���T%� !�����X�<K��@�s�L<��s������Bp�M_�; $�h���$����. <JJ�W{��2��P�6/=�2=j�!�Kk6Hi�y�˽*��:i�q��އ5X�1��4m��00�_�w�"BGV�nZ�U�l�x�� �iI�l�}4��:���"�6,��wO�0�zŁ�L*7F�W4�d��e�L�6ͫ�?���}x�!yb��g*3Z㯠�U+ًx�>Ŵe�ē�����۴7�(�x��S�3 s�Yh� �{�kd��]���x�%s��_7/��d0�pb��K��vBWI��H�I)jHJ���kӍ��UԽAh��>~�A)|�A���|(��U_6Sy�e�GW�7s���$���;Uu��tb� sy�F=4b�.[���jJn��U~'� �<q��K1��� Љ���P�� h_,j�4�a��tnڵ�ʘ��}dI��n��APK�Z���5��)�S+_��캳*��`Wλo���{|��S�u凢<��7�J!�,p˔�u_���9K�;7��l�|=�7�l=�͢$v;�w�IA5o^��KJ�a�7��~�;uLƿ!��z���^��/��)�jP��ox�ԣ�,'����$RR�����q�X4�[�2�4T�`���v���n��r������k�k/�v���) _ARM��Y�I1 �z�ߟt$Ḛ�#��������|�a�s#�ވBռЊu �6�p~�t�nhY�c~0���M1���W�;@X@���W�P��ꦒ�8��'� G�jV�J��G�|4 9vp�c�/i6x)ﭤ�$ ��P:2�a�0V�4D�v|Ѽ��S�A�����ܥF�,nh��Ѽ�� �c&e$HE{$��ϣ��µm�K�]I����7M ����C1�ǩ$0b�73�y�|N���p��g��a5�Qn_���ˮwR�v7�4pp?�U�x�f�����!цO����@�8�NS�����dqG:@���Q��h��K�X���]������cy��PE��j���ȖѾ�U�&1g}��8J����o+�� w�fUэd#}��e�fj/gTf^�pO&,�����uahXcѷ@U�!� ]�e�ɸ����l��A�#�����niKVɅ�k�&Xav��%B�{$�.֩b��osAoW�l���GW�n�EuP)��+N��s�1��t��o]4�D�#��ѥQ(i\���J{�AWKq��=�z<d�MA����3���E3��!,q��$�IV�b�s���y̏�� ެL3�I�?��T\U�g�Kx�7�c�E�5Ѱ݅SG ʌdd0N��ݓi�����7׀�UO��"p0����'���L���0%~�* R�fԢ�Q���Ͳ�2����l����q�X ��Գ��5�PD�yH���qS '�ۯs��t�.��|<^�V�9e��*�,N4�Z��_���e�f�U�r��b�&5_p��л�f��2:�z_ |���F���Yx�q���&�Y��$��**��� ]�:������ �n1�~�nA�QX�����ag}��:hx�Nj���WH=���`��G3�'��)�t��:�����9$.�:=x��":�R��d�a�����|���kU���v��z�����tԨC 1�o����K��;�5r�^��5�-�%�g�5{k5ח2|(s�xj�>�b���@�#�6}�gܘ�S�D��,�;}5;���0�� 5� �$���q�� Ӑ�bpl(���X��P���̙-�Pe�V\�z�s��'�od��Ԅ��ec����G�j��Ȳ]�,�R �5�I�9g��!�9��������w^^%A�=���Ι��bs�v��M5��P�[�:!�A!긋��XUs�̽Ɍ��@�=6o���t���s�� ���C��� ��r�=R|�m$�������Σ�5��}� �=�*���nb�e��JE�����^��!ݵ� �RG���S4����I�hؤ��Ne+���+�V�� =\��}^` �o��z�{�1K�i��T?�ދ{��ס�)�q��6��F4���6{�a'���ίx���j����܇B*�.�����B�E�� 6��a�H������!�4E,�ԩs��TZH�N���>�w?��w0��Ҿ��ٸc��xGEj�2.�+qWQ�w]��j�lr���-pSU�U��i��Ȍ�\!K�g�_�=W����6ځB{ *�SCM^}V��#����fOzW�qc\g�z �9�sҫ��a$�*�@Jb��^�I�ԡ6�c1\L%jۏy:�c"�f��:\m)�lo�%���O���0�o0!�MV���~z��S�k��D;|�c�v�'LB(ji��lV��q�Zh!5wʺ���kS��g\�fpk�m�3n��}ҵ��e5zq�� ��ߟ���n�8e�x1�T�ȳU���=?�i��>�b}�ᣣ����J��z~�0�,������B�9ܕ�/����%���N|\&l�-ܡ z7ef1*���SȂ{&���&z�����?����=�5��7tU�A���"�F���"3N���h��� g)��\v<{|!,{t�G��zR4483�����f7�$8i�����A;�b�M��{%�_9��T�=��JX$V�vbATf��T\�F�2P]�;�^c��p���4F%���aBմt{�a�U/�f�� ����nÊ�[��_���o��9�U�T��ɧ�G�}߇-��`�Ӡ+D����e�sU**r�\�X ���5f�,ズB�SUǰ �E�2 �{3x�����3�;�h��P�R��j7�$ޝT<�Z/�,�:����n��:e�8o��:�{�e1� ��b:[v�����e�k"�sE�_⭟���MVA�P@{�y���x<D��4�U�7;2����Zdem�cǒ�(���س]Y�#J�0C�+[��Mg8>��S�00,�6��n��Eh��%�X��d��7cG#��L��:##����a�UBnz�@s�����X�KLPy��n���$�Y�4z:��+y<<��T�\�(G���&h��b�z��|�1����{��z�^�v�������P쵖��(���$>�*8c)��ۦ�>Q�9��*������-*�ʜ�>='�3"���q�@[�;u�g���a+2����ݞ1y+=�l�q�ҷ�0�W�_����gu�3(����}k˫�ҟ�_������~to+,��Ud]*�� wUӉ�GBX��Y�fF��p������8�s��6��W*��)C]�Ҋ��8FdjM��Cx��Da��쳊��>o��Q�2'#��p�Şia�S��`�G�l�OB�}�1�D��敥_x�3^z�s���P�"���N�+��ǽ9\�yQ��8��9��C�r�\X�a��h���- ��+���c,�s�@�2�>�w���`�� ��9:�kD��c�, ��+Z�y����E��-^�,��"Yo�ڱ�&x��M>')9 ��G�J���t��������C�V����������F�8�0�P�r,o�b}G2\�e�oK^f8�'N�L��hP��Y��2��~ V���ù�(Z<�ֿ�QV���K�R[<ۢa�<����H�vK���k����b%<6�>��2ʽ� [���PH�.x8���2���^5^��\J}��b���R�rP�C���" f��oM��5pc��L8�&g�C�a\�<㩺�+/M>ʯ��w��݉S/-��Νp��ͮE��z��3e��XD��LB�˩�g���4�e����Wױ��;o]���d����.�(r�( �z�V������vV�ɪ� �j�����8�a)�n�U�i��)�BFA� �A��vd$�:C� �g�nˆ3�^]�.�@��e��b�k�����di�_c|c�3����9�2�C� 0��&K��H��c���R��<5�h�z��/n���H��%i��$bQ�p� "}-#d�d�����Q =���7|b�Ջ���nԆ��6A��!R-B�-wYH�)HOPw��4z"c<�oP��KJ,����u�_� �Mv�,�,�:�mN�а�"3*�5^\(��� A��D�Ug� ��V�'��x�P=��j 1_�LDv�� �'>F�Z8��а�m{����Ƌ1��R|�KC2�j�&�d�j�]8\�-�ɯ�Wn$�xA�����P��VZ��m�Qp�=0t�F�`�( ��=����e�W��tQ��}�*hZ�9"��q�qv�㵧"���;����&i}���n�*L�u!�qC�K�b1X�;~�2�]���l����A����e��D8S��N\?{��b��@Ug�JKd0����?��,v,P��m�û0e���bp�6����@�s�2�uL<��Be����̠"�ˎ��6�.�O� LAK�{��H>����Ѱ|�?`�g��v ;¡��T��@<��~���ZJ`W��i2#�wׇ�~\�p�o�����xԋ�-�*���_����+iy��� :��j��0a&����L)B'bV嶐��iQ�WG��.<�|�स��!�8O!��5,ģ0ZёIX ǁ\A��8�C�DZ�n��-@�[#b|�e�[��$'�y��;5��}yǩo�H�R�sm X(���7?�V���$d�mgх*/�D�-�I&m��&���i@ ^Fe�:L����".f^��ܹZ�Y��Kz�s=�q���=]΅$z��:�B{���R���*z�ѝn^���)2ҹ�)�5A�'!>�w9��@MǤǠw�H�e��!�s�ie�M�K�s ����v���qhWl5)]UA=�zs� yn�8��O �MG ^�l���1�~�+��&+�t�o-���&Q��� �ڛ�lxN�_$����șd��ŷ��n-��z����_#�4�����?�g�}|%M=���1e4���K��{n͢��S��#G\H)�20�Y��J8�=}Cɠ��aԖ�E_���-7�w��w���G�<��>�=?��m�GU�Bs&I�\\�:�9�q�"�]�! �y2Wb�������m�j����4�Ӑ�dg���Q=E0��6F��?_��= ��,^-�[�j�zU�yA�渠k��sK�w�Kp,�˞ 2��`<��%�P4T�*�`������{�~Zi�`$�(�K~ϱ�67��XK|��>�P�$&\of3oDN�a�g�*5�X�3V�H� �%f�) ��#�w�h����O � I.�ݛ������ r�X���(���P���Cp`���>�`ܮwP+�?�]�R�����%���*�%]�q��* КK��/�����v�� �m��d�e���1���I�����[����ұ�z=���j�֙Y��N^�$H5�G+S]E�7���8��1��nf�#>�~a�v�_� �Qae�Hu����Gy\z�ԦDZn�5{���:�СM �Y1wV����(!1���-�eE��ڦH��MuEp���\�E��rI#�A� �[�6�2�b]v@3uzj�f��Z�s�>�!2��s�+ozU�D��T��'�d��,�����P2/���u�q�-}��M�|Jf�~���W!c93S�m �������{�xh���q~�8*��͢Jϐ��(~v+��9�T��2��}-�2.���C��q4P��o/D,���K#��!���@C�m����b �[?���dQ��ȱ4�vT��x[i�X�SO�p+�q��F¤7%ا�*��r��\��5|�ĝ�� A����-C��w��F�#���>�+y�d�d���F?�r�_�d]�] ߫n��ʇ������yq핱�H���VR�<.h�7ft� S�`<���+E�D��=��(ޢ��G����;�/�%BUe�=�������3�&&�j����>�ʍ�������%ޣ�li{A[�,�tJ4�W��FB����()�qx�[oOh�dV�hc2{�sA���d�w����8#,?#�jg�سO4����������r��D I�vq!84�Qsט�v�Oqa�&]^�V��a�A��d����GFP��&϶�j���ڿ�"�ء��t�dT�E� 2#w@0���Xٝ�i��K��Ҋ�J�w[u�f�HiGr��HlV�ޣ:�ng��:�q1�,SZY�?��W?�x���1`Zӛ�-�{A�vՏ���5�� .��ݮb��A"X'�MnH���©?�,?)������I{��o����� {o� �3� �#^�]�m�+nlP�{��`�Şa�]W?�S��5�J� ��w�ԥ'}� ϶P�#tlp8ό�� Db?X����K�(��C��`��`.Hb�c扪�X����BO7�BS��� r/4^`،�[�[I�>�R�&�I$����XI2�tm��Ac� <P�-L��7Z����_WH>�Yd鹹ķHm�#�����/�5��>>�{W��j�_&�${� ��j��>��&Gm��'��ޯLg�Y���8p�\�����و�$��1�vwK��^J���k2��Vl�����?Dz�� �5����)�nG�{��CIb���ݜa�߳�Y�3�E���K�\�H��2����|�����A}]H}D�XI8"pVpyG��K���H1r�g���9��L�]�y}��a���ОK��&jM��� Gm�Й�l:TR����gZh�}�'bZ8P����b�v�� ��a�{{q�Q�>u��.���R��<�ѓ�B<pA ��1�T��{�iϹ�x�|QV�O�{啢�nA ��gp�}��c)�='��m�<����̀7�`�O�X��yne��Z!zv�Ͳ��ޱ25R�k�>,-� p���2R~ߗ�G���D��=�jy<�Z�i��Bu�G�>��_�tq�W�y2`�B�(��`ɡ�ee2�h�����cc�89�\�C[ j.[{���|������<�קx��͌���Y}M ={ sZ���uA�(Ad�J\��gh�:[�=�.�sت+���]j�3�����)P��k%қ[FMI�y~��mj��0A�M "���}bx�U�G�m����[hl#wrv��f��DGY��@!d�&�d_z�w(_ �j�z�b�d j�GGd}Q��2�;m����L٦ �d�K��[�\�4{?�,�̿I(�.k�?u��������3�ο�0�0�E��@��\�< �Z� �U��8ٵԦ�b�P�}S���#��(�9��E�I�s��"tc��d� ��l2܄��a%G��IiB0�?W`��"U���;�YՁ2��pi�P�(���P�Y9G6"(z�}�p%>�ܦ��^_K���^a���n�0@^�R5(g���ة��?D�)%2�C�\��a(O��=A���,��$8Ug�����4lY?������o*�ND�����B��m�]�+��L(��k���>=ӊ��u �$<��h[��j|/Xg�8$��?Ƨ� �aߟ�Έe�-�5���a}�a����̾�+��� �W}�H恔�3Z'��1U����;�������Xj|%BW��Ջ�]�A<Ҳ��8��[2��o@� ��\A��8\�!uS��p���1K�J�� ��ŧq�֕ܪ��\�H��d�͍�u�=e|xٚ/�{__o��������9���S���3�4^�@M�\��U�H�����C ��{� ^��L� L���~�VzJ���G�:)��):$J�9���.K%��TpP�v��ԙb?&�?Вљr�,�K�v'�2($��u \���<��6�摱��O���݅�%���#74���OW��C=�>��a�����;� l\�BVD�+eL��4x˄�#�-��B}�3 ���0��;y� p�۾3�q�Z8�F5��O��b�X��C�P���h ���O���\���k�9?CW?�^�^���;&E�T�/G>b��-!��#���8�_j����1C� i=j0mV=��a�X���gq!�e�9K�ND�MK�2�ϱ�^�J~��x�,�*�p���� R,�'��ƒ"��H�S�nm��(�h0 ��Y�bw��\f4��m U�.����fB���h7�kzgj �Ӵ��sJ��n�o�|^S~�J���VvT�~p���7��&�B�fA�l�ꢜ[�b?�;�P�t}��x� �8��[c�Ub'�X���{�Ũ�P���Г�����o)We�S�34�PǕ��P�X� �Q#��|�*t�i��m�cU��@�f{L�#y9#SX,�u~ ú�$���CW���ܪ��(;������uxkW�Vw��3�T��q<Bn�%��9���;�=y��-8��د8�h-)���j��F�Ԋ�%�`X�h�U���<~|��]d�ت�9�j������s�"�I���K�j�t���F]�9{��zWa�A�%v�Y�/ݡmi)ڂ6���NCL�����q�B�R�)�����I`|���K�A�!ITA�۩�_�8�������LªÁ�AD�i"?�el��쏈�x����I/�E�|�UEA=�r�BA�g8[ gm��H_�)蚒�MVY2�Z�'$+B��B�4^y([���+����83�fV|G�D��^��a��^h�i��G�J/��?��bƞ���S�&l���� �\�Os��[sz;��!�*�d�rX��=�E�G��Γ"Мݘ=:c1��(�{z�u:�$���T X{a6����IN�`�ٚ3�K�cJ$Y@yE�O�Y�a�"�6V�O�6���+� �W0�@C��� VV�C�^�ٳ:��z��^c�Ă;����~&�I٨t���u����|�2��o����W߳�"{)5@��Ph�n d+^D#4�[m�#`0���q�k��D��Ԅy`&��5�=y���ƌ�� G�*q����wv�t�*ail�P�(z�6�VHH�eNg�fl��@���}4�P,ve(�ݭ�w��Y|��Rƹ�ס6�h+���<�8d�m§pZӲ���dG:[�m�D8��? ����!�F?�|�#�~&q�d��W� ��/A�n�Vؑ��zl0��r�/�ܿ��A��H;V�*��?A�h�L���%�F�1̃>�&�Ć#���K�U7!�tr� �zM �cSq]�,t���]�����;#�I�1���m��D��Kd�Zq�m>��� .h�g-���z}[�SHE��]re�0�6:�%{b�fs���-�&�Jp8^<Ig��1㪁�Mao�":�E��9�U�W��2o��B����L�TH:�b#bQ��K��ʷ>����A@}㈄ +��3�f��6��<$�F���q$�b�d�����2p��Zw�U�m�U��L��Q��9#�}2��#}��\�(�ϺU���.�]�S;E��*���� �D����/֑g�����'w��q��NR�+�D������Ǝ���FKڠ݁�A��4�*~� �/����m���f5��5�-���?؋��С����.|�,%X�S鑿2���%�p���M�:�� �u�]Ղ��̅ $�~h�$��8��^!�F�d�����f�[���G�+�%�'�x����"eʴ+�Y������W�Qdz陵���P,Q��n��:�ܬɿ����CU�^�����p}�sےdvԮ&���G����6;�n��g��T���:�1����U��O:5���bMF���|��6��y��O�R'��;�I�p���ϧĐ���X 2&#�Td��9��;�nu��D;K ����gj���`���v^$�4 �Ѹ�dH��wJ^UD��L)5t�X,̿bj� �kt 霩D�mU��S�,X{��ҕ����W��-�.�9T����T�$�w�Ou�XZ�T��HS��L�M~�"uN� $� _� JFiC��Ӣ^rEgj��5�/U7�������:F���4�ٌ�^�B��p���aϷv�7��۠�r�Z���Mn2��R2h]Lk�C| 2��f®]Bc;.DW�����J���ʰ�-����N��~�)��yZĭ)f�_W�2`a�Szhc�3������bIyW���r]��_?Ny�LBNa7�V�}���_A�1]GP�p�Ury/�7�jl��S�`�n`i(.K�/����ahX� [ԮE!�����;n�OcN��������Y���``��1[쇳r;G_8�p�N;�x3����Ge [��9d�ɛ�I�{���>��ң�����S.Oy�.��2��@�ۇQ1�����S�G��yv3�ߠξN������J�ge:�/�Jqjl��о�{�E"(�#E�%;'�C�pa�f��w��'����,"� ���;q#�^߀��V;EO� ���L�l�-���p�[gi/\�����a�yqw�S=���:�w�8^<l RO��}3�k���a�]�B1�6�֛����a,C�� ��9��W�Y��Z��ÿ#ϤT�8A�1�b=x�[��E�N�$s���쓯t7��c�/�<Q��Y��e���7��]�ScoS��=;U��^Bi�\%�^��s [�Ԋ Jh;Ug8)E{8[�4Yy>�s%����V���\�p��HL(?����Z;+�ׅ4���*�u�Qy[��Mu�O~H�M ࠕ�(ɵ{� �>��%��NR�d��u������J�*��^ז欩'���㚱D�ݍ.j��`F�il��w��mû�N�Zaݞ> t2+we�O�a�o�{j��v��\X����S�5��0�ǜ��d����e"�F���P�<�u�'d=+wh��O����Hȅ��WL��5rү�AC h�V��J~� A?§�����J�F���c��.q P�{^�g���[O={O<O��L��S�:���X�`p����x<.��)����g8ص@�>)������b�3?ZL��(U��z�xW� Ӧ�BS�Jt%"�_UXE�����y"+� ���!�o_�� ��$l����S��E�d����83 �Ǧ��ؕ|��yK(;�D�ϼ&P)�W�<�9�����J�H��;���I�'Euh.�����0[�_�,2�zNרd�V��Һ�N�{L�I�!���s�Q�Jbd�LAia��H#N�=�]//�)�o8k���ʆ?��d�^�ئ�ޔ��_��6�M���L�g8�g̫w~YA�u��-|�`d��M���yVk�]�d�d�CXZύ��@,q�>ZO��4�Ul�F�Nj<T+o�5Vx��%xj�k�F \S� IcO�'r�8 D��#)�-��'����V46͚��� %�"�*�]z� 3�YjVt�E�R��".Oa)��,��omx�ij�$e�PK�k��a]8�g�|L�nHٖ�[`�s�{`�nF!ꝑ��{�N��t,�V�P��Z�qd��ڀ�Qu�<K�!0FE���I' ]ہ�Vt��:�������[(V��0:$ 9�a�U��X�ڋ?�B������v��Q u�2P4 3�7�4n��mn\E�*�S�<�P��`ڡ��5@ M��������p����x�?c�0��x����nh��.�u����7�@1R��P.#�kC���r����p]R�+ӟw�;�0]t���#�y±7�6��r��Y���0{��m�I��RH��p�n��b��wZ{��X��j���wl7tq��� �؆���� 2� ��K�h�^���}&��Ʈ��9��}�u����S=�r~l��i{v��X<�:�E(�Rk������z�Q���k���;¥�6 ��n��OykE��u����2�����=ː���6�'A!H�*(²��=a��}]�x�cf2ce�,SG��A��L�o�bϻ� 6�\���}TԞ>�K����Ùre�o��B�F�s���D�B`�͢E�+���~� 6{�;G����,�)�S�x���0Тa�c�ӂ�b��lEp�5�9���Mf���ɯA��y��{'!�����z�}��št ,�io� �)�)#�Rը���t��3;n�k��>~�t}R��V�֖}��ys�I�$�V?&T|&t�C�|�1� � ߬��ɢN=^$�P��L_IC(0�����Hk���!�V%��o���H�2�^3쮾��D \��^��a��>�_�2�c.>b�<(�zb^/mT��9{�d�u5A����>���*x$�5?���{�u��{ �*w�A0���'luT��Z�E-.������u���ѩ{X��A�H6����$*��F�&;��9��t�s�xI.VI2y+��e� \� 9R@�s�ʞ���IQ�� vU���Nm���m�1�71��h���W�$�28$Nj����v��#�!"jD���x���Yr�9t2(�]I�DN�N2��Nq��7K��эv�?�dn��$�s6�w��sc�����R� g�⧟�r}��˳�r\e9Щ`�|��g�||�I<B.��qh�V �Ed��y�*����`}_��j>��f|�¸� ���w�[,�I�&{B�{�$�Q��"�7�Upׄ 1u�Ih^+v<�t����s�94�n:^.��s��2d����+�'����7I6鵒�ZE��j�Oxs%�\�`�A�I��C"/�Y��<&����o\+�(�)R5�,�iy���Hna�*�Y����j�#bO,If22NS���x�*r�'�7�"�%���} ��_�E�Z�f����Ƶ�{�I=&�;2��.i��窕x���;ďˮo�h����~R;�SD�y[�+A�;n�r�/4���1L����Va���7��!v(���T��`�W��ݓfVR��s*l]��aV~�8��5泥��w3�����b�N�CL.��N.˴�_;�[4��>�(s��0��|�Ѵ"��1����:�z.w��e���#wT-~$�0�g?�<�$R� ^(�G*�[�<�u�4���-M��7��B��+-C8kpU���ʜrs��Y�m.���oཤ��p H ,����:��6ł�v�DW�4L��}����8��Z�<گ���|}�$�N.����d��.�������~���H8!,w�\�w�ir�A�K�h�B�P�����C����K��]��ְ��:iZy�����1�s e(+4|e��nr�z���<�r��B4�ٓ���:9�+2Er�;�Mʪ�`�B4�t�+�NP�d��t9V�F��cn���RHgW��r>�ÇԿ�Ż\�[�I�$V~��}�M|��?���K�>��=����Ƴ��A�P���ӜdU�*��~���o�����m���աk~��JW�V�����A�P�t� <���P�-G˰�Vu 2�9�Y4Bqf�'a|�ʸ��R�{Q��(Y�m��0�h���&ݿ[����'g� �z-�=� �mu������7����,�����Z���3B&+�nEU�rg#J�ZI�'T54��p��} �!6,�r�<>K���]|�:�.,d��\�v���,`�8@'A��y&���3���_B?m/��Lq�g�]��NyA�yOe0���Ʊ8L .g!.P�D>�� ���.uFY�wP2��Π�_�ШG=b�@E��~^pM�}U���D6���v�JO��5i}�@�x��;z�a���"�I��:�������]�*/��;���H�������HOO���yFD�5%��r�wa�"��&%�̏Z9�طF�~ ������_\�D�� $K�i[h���w�4�P�K\�����)Uq��cx�4�d�r��~AX�{�9e��!ߣ��N��b\#U��'��%�Pa!-�� �G˙#��3�� q�e��K�H��@j��Th�S����/�AY�k"��ğ��<.֪��\�T�/Oz�T3����d�l"$ �[dzQI�/����I\�����D�c�����ז�? _��B~��Q��e��S��p��X�U9��>������8Ck�CZ8g�P}^3�A�A����Mծ�H-h ��:j�87m�Ԛk��^K :��B+ܦش|܊V�=$K�9\s�g�Ag���b̚�݆b�2��k��j��X#�C=Ó�30{D�[��>͑��8�E��ҵ��H.y~���Ӥ� pYI��T�|�>��u�$��"��������b���q��^�7����+�c%y��-�Ԭ)�վ�}�I:��қ��\0�oT%��^�r�8�3�� |ZRBl��,m$��\��֩71*f�O~&�����>����e�̀N�e�d��o�:�?sS�Q{w~�L��=9�f� D�ꭐ�1uX?h�R֯�J<�.����<Q(�z������c"�_K�,��)�P������ΚCMj`�-�T9�氉���#)�˵A n|�^ (�m╝1��p� -�㵢��Q����VL*$�u���a��� oB�m}g����&�@��]�ʓ��c����Q�-�f���g�G�y�?�ĝ�p�[��GA��3��>�/}��c#'�V>Οn�?x���7�](��|�;-P+���Ct 6`s���6�� ��A�����h�+�[���B�9U8�./M���b�9�~\-ͪ�Z=�<Dm�I& �C�=�jL���T���Z$����l�G����,B˂��iO�T�@5(Mv'w��&?W#c�Y�p��-�QAn��D�"Td -����5^�R~�n��1.�,�;��v7֒8����3�L�P�]�ٱ��d�� �P�l=7�j�|��2y�2�E�����m�V��:*�LX�}v~vF] ����`%�J�ʧ�+M6���K�F0p��2� !��)3�dzֲ�uGr�}̀�?��A{&����I�E��K*(&X"?�,���nV��f��j�1`��-� <�ѹ_�À��|��Sͩ]�0��(�-]�̈́&�W麤�,>�ҩ����,��5$�:�h_ `��;(���P/�N� ��l�DEq&�!�A�̔#̾썦?���*��EsK��9�Q��� Qeȉ�{50̭�(#��O��P���mW�Mk��y�PgO�Y�<�|e�[��7�Q��7M=���BEmQ1N��:�T;���d��[iZ���eJ�1/7��0�o~�O�zhj��a����}�M�cAT����<C/�7��T.�3�%3�d��`��9\��IE�S�<`��u0�zIr�m�_�?o�8�Zw�v�P��=�Nj����u�o�œ�jY�-�z�ql:���ϔ�v�i�8����xW�-�\���F�#}g�h��������МF�� �Ԁ�'��Y���NT��D.[k��R����ؘ8 !��&��A���A����Ms<6�ⳣ����!�{YdĘ=�q�#��j�İI2�5:zZo~�����| �/�ߝ?i�=R�����@�8~��j�siXÃ�r�A?� ���x_�S�%�&c"�j�*�0�B�Ӝ����ੲ��^K�M��1�ĬUJ��/ziO�Ֆ�9�z�{����� �گ�l��k�f����zW�h{�}\�/i�k�>�aePG�9�Q�N21��d��~��7Z#y�v.��k-G���1����=@�m�^ 9���M��,<V�u?|Q�b~�9�=Cl�,����O��J92Kx����&����~�7��4���5��܊)�YU��� ]����p)}�l��Țմ��i/v��X�0�hV�m�dv_��lf��KͶ1��:�v$ҡ��r�2��r�>�v]̫PǡPy"���gg���B,4_\�X���t�Wnh�B�B=��0�X.��mbb��y���w������m��l?D�vB�M�G�3��{�ٜh?�3�G߃��,˪Ԯ�� �=�xZ S,jc����7�u:�9�?�6��L^��b'����AI���.D���10��VEU �csN��f�^_�n�����l�6���z�@��U�m�4��f�H9)s���0ׇ�v^��K�� o�dmW���%�9����+�_��cpWg��|�s�����z ����k���䫿���W�5� ���� �� �D���/�T�Yqk�HgL�ǵ���U���N�I�sQ�1Y����,�MZ<�fTn"օ ��E�^�*���o.l2�p��@4���f�x'�OϝIl��}�*U�,�_�� A�C�E <[��(E�5�SCQd�.�{��pt��D�s:�]=۴pu [0�f��N�r�N*���!����� ���J2�p;[�\? Pe3�i�he����>M�v����d�����xޏ���0�Ch��Q�@A?����qǣ�?�q�{������L��)��8�m~���A�(�nb٢Zu'�`6�4�+�M��[.�pyA�v�Odg���pf~.ʜ<A�"082��`<������TLi'^���u8�N �8B��Y 䢙E~��hg�6v����"��k�H����?)��ۨ���s�Wk���n�=��ʚޛ�'���ƺ>����xʄ�s_��1����tM���ez�4��W,���zy�ni�?2���V_)��%�T!�r�Sd�,�O6�{S�ya��g�G3���帇5�1�imAAMo�S�b��ߝ���MwB��f��P���ؒ�hTȰ�'�B�%���8��2O;��W�,Ew�<du����p�I&�$Q*��o��55�)uh��Z\0��0!W� ���DC1�t�?lf�������f�a��>�<-[Q|�!��Ƃ��_��*��ib��V#�^J?�ʍ=��d�6� ְ:�a<*J��PpI����5��#>w�/,��٬�/���X��;�ET�K� ����hA0'#�E7��i���g~7\��Mz� �:_ё�ˇ�e`R�����Q&�&�B���=��q��C�����Ԅvv�|��`�G�s�-4|?{�,��^w(��Ϭ���o__�L�$���Q����y��E�2�]T8߶��(\�>��OЎ��sr�'r��Tjov��`V�� ��N$��K�1�dYR�]��Y����e�@~-Wޅ�$�5��8S�w-�b����?x{h�h4k�A.;a��÷�T�%�w�@�ɲnH���ڼ$0_c���-�d�p�2D�]C�ʠ������VF��9[{��gPCo��jF�I:P&���Y>)���-�Exp�h�U�H"�HZJ�e�A���o��K����� 8��NЖ�2�EI�:��7��1�^Ez.��������R��~o-g��"�Rv����B�o+��/uFxl&_�l�,}�W����Pj!�����V�Gj���HC��1U�zN�U�b��頣�F)<��U(iA�^X`~��9���~7�K�ҕ��'��ֳNE�80p^�g-�7æ͓L�^��w�&�r��4�WU�y���J!L���0F�k֥ܬ-�E��wx�F��=�}����1]� �����E��A��~�r�@���E�%|�A$W]�e ��܉H`~x��ÜwVK�k5AR�c��d�TdK�v�YկAv)�`��x��^g��L�]b�C�pq��E�"� �y����e�z�v����M9=���� f�����P��r{Aw+Gضt�V Η]������p�jFX��?vq�ɷ؆b��lC�LR�4/G<��fv���&�0� *jRT�з°�2��1��-{.Q��mZ������t��5o���U�ܪ�Iq���~%Gk���9��PĴC�����ҁc�\�Ц��%�7Y���W���SՒ�F�m�m/j������j��y1�70�lټO�a��K��CC9�ǖuR��`������p��4��@�CZ�o܉�ϠF��Zӯ��{?�" �̗,��'B�_�m��)����Fݶʣ�s}gz�2�W(RK�� &t!�� ^��h̞,�ڏ��o��H���d%IvW�闛K��Mar�F0�B�����/:��đ�5�8�/4U��JOd����H�w:�9~�^P?��W��"���|Q��3-9c��+�z\U߸�A��ӏn�%a�/Q�����zc6r�)Xt�N"��B�y5�Cp;)��Gm�;��8dxuHh�0�E9އ�:3���Ҷ��ez�=&�T C��!�i�=Z|�=n]+�`t�'�u�Sׂq��Uc[T�|�]j��@�碪ox�C��� ���A��2�k\S�{��B8 2�O�n�\�ӦB���ü],�-��j�0�]zA�E��4fm~^�Ϊ���,������*Թ{"���N�PK+Τ�o>�䈑�!���{}"�� �t KL�M[��\תl&T���n$Ԑ��h�ԓk���N��b�=���`z�)�;��?���X�_��l�yh�M�(���6��^�Tڀ9�-���.�X;��m( ��Z��i�������<����!�Bq��s�ىb�a4)���O�-��vERݯ��� �� ���;8݄�z��܉l�����4d����E�h9�n�O?��3� �n~�/'7�G�6�Td �m��:��s�O4e�}P�f�Ewc�[m7�t �%�x� ��;�D��#H���=�3�H�'�|�.<A���zt���4u���a~9�c��� V5�Ą�l<��`��<�u��'�<f���#�I�Rw�7�D�dk�{��I0�I��H�-�����ٚ���6��~N� �av�'.���3��;g�l��'�?�M�_1�ĺ��Ģ����Qצ��KȾ���z�p#d�k��T{ɭ&9y�-�؈=k<��9aݎӓ��*K�{`!g=�xY�Z���!���F��#W/K���x��W;����_� n��J���p�����V�B]u�y���"�� ���T]������%�Lmz����|��LSU�z��/#���dS�'�'�&)?�~�� ��>��j��3`g~��͖Ǣxx��_�f���VS��~��i��pd�~Q��үܷ!�\���W�W�c2`���!*�1�%�����`.���*���EC��-S�q ��4�^�#fjw=� ���'�١U�� M��B�"A��r��|��}�3Ӵhu���P�B?��������U��B�{&,�`��QWEm�]������x�Iơ���%��N���M������zC�'��%fx~��e��z�|>�\�ߕ!7����D�t�@��#��o��@w�;7UG�!�6��N_�Ա�e��"د�m��:2����ũ]�TB.��+��c���!a�s69�����1Ml�j�� &�%�����&K��鉀�J���o�i�_���]T��<���1���&��7��'x�h�ʵ��G7�Xg��:��&�9 ��K������u(�2��)�F����1$w�/A�8��u&#��=��yA��|���e��t'�b/�L��U�/y-#,ף}Aͪ�Q�y���R�T)n����#Ά9;�S��4�X[�@R ��^�^�i���M�`��խ�<�o���3TYMq�s��(�A��{��L����9=\�|R���� 9��ϫC�Q+�LJο��нK�� �˘fOadԫ�rWɧ�U�t�e�Ԝ���H���X]~>?<���Q� Xre'���5%���<Ƭf�W�7E6����������ʼn���"���K��{P�;R���qB��(+=��Gvh����u$��@�� �H#%�E`z���P-'�V�ߑ�& �:{�o5L�Ο,��V��12[�)�U��{��Y}ڢ=��� i���j{�<�I :�Y��p ��m�lDX)D˽Yנ��#Y���3d�#,�5��,�7�$8i�R�]�j\H+ؑo�c�S��4_�\¦fa܁6'6'����S�En����FG'Y����F�a��`] �>�C���� ��r�\�W�@Q̔1�i sA����%�K��4������m��e���]��J#�kI�����TéE��f�]�V���> =hz1����.��z�����+6Ä�55#� s�mЕ��p���6���ܬ$-�,�[����q�uET�9� ����a�rz�$@Z��G��j�*;�ܒ�{+;%�DT�����6/�5����-��r�Ƀ't�t�I� �����k�]�l���b��[r�dxӹ�J�t��.G���Џ��q��RH٬�tк+��R��!�- �P���;^�g���T�(,�{7�a��iP}j�9��U�t\��̔n� l��L�mF���*��~�(CEfa��eE���ú�8�D�W6�C�5{��l>�M0|�Z�^���x���G�!+�7�F̊�X �ޚ1M����Z1J����,����H��p����M�V����;�B�es����)Ŕ���)��w����Y�x��˩U ����z��{0��ɦic-�PII�o��yV�p_���M2`��s��o�f��*�䊻��f�t�ٗ|�J\�{��m��80S�+ؼb^���䗏�ڞ�d�����9�Iʽ���J��vR�U�2�y�Ʈ%0�nl���|�4K�YwF��9)�ͷ�p�T�f�?��ֆ(���ȼ���ԌK0 A�4�h�O��,�r.�UC�)����� �s8�9[�\]@���d�-~UX�J��l�˒�9W-4� r��K3ر�{?�F��Z����0b��@3�ZZ��;.�i��=L���V^� $HD��MI��d���hUo��b�(*C��y� r��~T�ݓ�1�'�/�>~����� k���7���}�@�~��EW���r.N�S�'! ���#%m�ٵ0a]8�X.�� r�^���KE�P�җ4�\l��NC�)�0�,������8��������L��z�3>AW6O�)���K�\�2�B�n��|��À�n���>��$j��ݞY���Q��/���C�����9$���it�]��Y@�EI��eO��~��J}d�g�Fd�G%P/V�5�X��'P�+/�d6�N�{�H���UH��_E�����~".����i~L�K��O�wM���Ԣ�Y���f�S�����l�����ps�B�>�E��&7DQ�/Q� IV����EӀ�r��?�M�)���P��k�՝F|�\}�2���?h/�������`�0�r3����wx!�㩢 ��QҜ������Z ڴu!b��4�� �j�Z�fo�ؙ�^��t;sU���%��(���[�g�W��Z$����"w��n+�k�r啮�Xm�<l����s�q�L�H������� ��`��<�jmۯ�R��e�<n��x\O�C�/�����pٰt�_��;�)Pu�#�umZ�2��,��@J_�* `mţ��g)�QpR�!)�T��oL�~�����"��\w`��ݿ'f���}6x^ie\Ŋ$AxAB�^�{(C�e7�V6��==jX_��њ��0x&���'y�y N�`�1��-�r/��S��[��o�i1��8'9��l���zѸ[�,��އ5F�l��ݕFY8,8ۨ�-r�a$w����]�CX��l��o�R����j�!C��w�8�����N&��=Y���%�|��N"ڝ��f�$��^ ���l7 ��"%l�1�U�X��_q����7Gv$"H0Bsh���Jcȴ���J�6��^�NTM�e��R3t��#ca��ޞ>�����TɳL<qH���= ��Q"��v�6�l���e�[_i����e}H8���wT{�?�z���E��/�~O��H����IQ�;�SIy=h�[��#y�9�>�❃ˏ��|f�9v�X�6|�-Ψ\X,[�t�j�K�����N�#b\"S�Ҏ��f:x jG�s��hG�ɋ����ל0�&�.2��o����zCuD����豏���f&�D.�y�<bF^� g�a���I �|�7R%Ƴ݄ �, ���WZ��"��5�ң���C,���Ivp���A!�����f L_�\gw����*5>��7_�:�M��{�A�J���kB`{�R怣��b� ��6�t�sw���8�t6� /Y�8`P��5i��d)�0���<�ֳ_�~�_C��!QZ��ݡ*,�I�DP�.,�a���1g��#��_� w5vj(�g��m2Δ�Q}�v� [k���S��u�K�9TA3�u����{?�:3�}����r����w ƀ�3ya�P�8掅qW�@���S��0v�$~�夦�M�Z�/sQ^@��K�@:tiͷ*J )el��"7����ɭ3.ȵ��R�uC�Wa��:A:�Q��ޅ�}~A����Ct:���0���,�aY� 7����?���qk8,��5�.��F��������P�l����p�T����^(x[}�2�b�[a�K���|C�:�y��s�����#n�o��Gcf���&u_ߟ��`�v��D@T=Z�끩��Z�v�'#��A"�&Ǵ��̵M�:�c�sh%�Q�^�LG܅���8s���.�vS;��T�T�S�8RPl8Y�V��ϊ~�c�ϘKE�^�0�͑P�s_%jE6b�cٹ�{vHir]5K<.��2eߤ!��}�t�cj+R&�1=+y��5��GR�^>}��X5g!53c�^���9���ƴ�$�cc�-�B[�0�T1 ���l?J���T�ʂ&�fe��omi���qB }^q�u���W�� ��{ ���1���-옙|$��QD�ӗ�J�� #�"IP@*�I����W��s(W�B���zk|A-5�Z�ˈ��)5K��w��2]�;!['���Fg{#=�TI��K<���֡�F)!�؋�/��i�屵��p}�#�1�R���[��9�&�������X���r�A�O�˿���@��A�h� ��g�O#%K�v�Y)3����ڸd�[Rӕ�ʡ�q!��x�;�D5P�E����� $அ��¦S�E�������SD�>z,j�@�џb���;�yp�� �0�DX��5\>�,�Q'�s�fE�e�2�4ldZ /^خV6��}bw��r��&mj;fwG�?�0��B�TN�My8���%��:W͍7�����HJ�M�O�* ��5�y�r���]60�,~ǐ���MM���\��;Ȭ��#p ӽ�����Au�� ��D!.f�A���z,I�6䁘��' L"��t��*���3E��8pzۈ�������c�/Ҙ�h�3����Q���|�Cw8 �Em%|��)*p͋��A�8�s��Y6��\�}���{U����a-�!fV�$qq�qMM,��̈�Cȍ�b�/k_�[�)}��Y��g�+[E�r�5�l i�����|z?g��a)�JZ�R�h{�}�3N���$��4�nnWVd=�ח��M �˭xT�Q�����F.8�9˺s�wP��5k�@��U`�R#*!ێ�#C�������:�<��R34P%Ýpܣ�����2h�'<S�P�v|�}�<�BN8$��y"�}��Ƨ���cp�Ty��1�@�kߟ�D]K�G%}�&^S����AA��u�W�jm�f'Ǩ�'h-�D���B]q*�~�ݘ6�~��mee��4V�CG���]L�f�/V���Ok3�>/[�)d����ކX�l$߆�ix7�'�v ^�.3���tF5)�366Ȑ T�����.�}Èф �^&�S=f�Vs���K�صKޗ��#�+�ك�ؚRj�/k�7���6Yl�G���%f�)�b��{\+����{I�̎F:���ua���K�ږ.W�t�ƍ����%�ɥ���<i��А첋���������@���Z�����|oK�e|��8<�[#�Lm�8��ƖK��n\V�i�FkQh>�H�qe�/*ܝ�'X�~�m2,���������`��N/�0,35�~�k�*\sq�o�i-?��L�X�H�CݒA�Y�C�8� ��+Ai�~�Q�h��d�6� �j/�ʧm<m�u��t�u�x�yC٭�m��cR�s�U]~�Y�"a���Ɋ�e��-�T�vٲ�N����<���Q>�^��|�jI�JK[�z��A�L�@_���$PT���������9������w� �������:ʇc�˔�;��L�= �� �ІnO��������v> R��ݥ�_� ���O6Σͅ5�4�A�.��[H���k��`m�0�^ХjFԹ����I��vR�i� u+�ɘ�>�� **��ݢ�n�1�1Qq��z��H����gC��Q�#��/��1m�{_��Ζ��5�_S<�5��BY�(ȯl�\/^��a~o�&^)J���L�'��E�"�_�,��yM�����YK�R�Nv���\,�w�Z�m�aǗ����w*�����B9�@ƶ�s�~ۇ��� �� �}j�Ke@�l��r���!-�� �sQ���ɦU�Jr��⸔p!��|&�[=?.!?2��;����~# T�H}�iM�M)���f����EM�����1EX�:���"h�i���L�I<��`ޟ���%���ò�{���m�C)���wF�Q�vf�[�H�!��9Qw�)6`{��� �:��� ��#9�D����g,o8/Jo/ǻ���Y��6H7H�����ްЙ� �r����n�}DgD�a�,���")�7݊|�oB�(�����*��c�}�Z�7ic��1eo�_�nH�zk��XJ?��i��LK �����w@�?V�����л+M��_K��wRw��1��C�ڼ��1v|�v�0�D�f�ot�(pY�t_��V��Mˬ�O�d�#�,��5�]X��3���@�d��?��^�P��3+u�]T��]v�d�%K�e��TLb��_��&��Gҵ�p�S���~�|Z�6E~�~ �|!RA~�1 Q�S3m�����N-]�Ԩ܉_qp4 %��&)MJ��h��+��m�Էz�_ �#Z�"�3���.�������^G �^,\�U"�'07��>�8��#�'Q��hV Q��U"�y�%�0�I4�Z�E���9�ye�Qu��@D��B�2�<������[q���&�����LL�����;t�tИm;%�W�(���5�/�<;0�TJ�;Of�n��*���̔o���;�N1�:F��Q�����y���_?|�(�a���>��)k8r���ZQ/��}�����pnܟ��Eʿ��y�h-j�;CM�bFQ���H�ߤ���>�>�4[����7�BQ\����z��� ��P�,f�4�#R�h�ʨ�:a�#Nn+ų�6h���+�M;�s�r�VD�P��l�C����%1��ey�s��f� �iڶӖ���ψ���bG�D#�.�����#S�Qd���u��v��S���*�r*a ��d\�Q�I�n8m���U���?��!� }���}����g(~���|Q�ۼ<�3ғ4�F��X�$�j����L�}�ksV��9�_=Y9&�+Jm�7:��q?j�I�Vd�2m��u�Z\c�Q�4�WY�Y:J}�<��:�������e���4"�>�%�9�)�|��%S��{o�p*��7{ ����NS(Y�=h���y)N�k,�Fixv��?�� O��>p�ΦZ�E�g�$<��fʄq�V�]ܼ��cD�:N^ذ�N忉�]�6̻p��ͷ� ��ʫP��$\1��?��ٝT/�*�:�~-xkP���B#q��L!+̉˕3}X\(��Z���)�/)e��v��U�$�� ��8훂n�]Ee�= �C�h���:hGo'5�l�ۜ�_li�ޘ�4HkLS{�j�hY½�A�J�4�YN8�8"�$o��W��ۀ���1%�}�ׂ�:�i^���O.b��r�Yֿ'$U7חI,O4�<��N�/�M��E_3�����W��i;$�~d�&�,\�>r�m;�Aۿ�c�Kq�R&\ �"{|v*��v�!�� ��u{UW����rTc��d �t�v�k���/�[�v�!<�����a��`Ū�B������`و�.��-��5Z���/����Z�ꘋ�x!�S��=t�U�:�.�h�g��l��4�G�p�о��e�3&���[v�i��)�iP�&& �T<fjM�@��FU���{���+��7︄�ZX%M������;���8�FW=��Z�j��c��O�%������`�)���U ]2^��-q�3�m��� ��qט���b����kJ�L������ߣ�D&�o�6.U���+��^W[�ox���о���e.Y_�]�u�F_�(a��{e��^O�2Z��/�AUl�I��31S��$�/�:b2�G�`�~��t00TĚA��,�2��$�����)�� ����(8&����*�07ű��<tk���W_�TD� 'X-2�ñ���ԣW�+BrGjzb:��/��ߑ2�Ø�#��E���H�f�N��厭e(!�1`QK��H��<=�5�uQ!�C�ܩN��)�B�݃] ��ުT\�&U��n��l��b݁�2^6���1�߱Rk2M(����M�n�{���q��4����y���`N��m�Cm3���x�B͊`����~c�7��P �m����e�¼�X��}���yٳ Vb@*���@m�ݭ��P�Z�)���tkE}�#�a*�;��'��)�GF�5nq��0�yF�A����e�aF)H������}T��fI�������D!M���K'��];iJ�ے�_X ��g��W��7̽��+xފ.{��D`�/4�0��Fe���-��C��3��L���rW�ħ#�q�z�}V�zW����N,&��!x����6� ���L�؟��$=�?Ho$�O��2�P��I�^�c��"%�Ғ1��&3߄B)�kos�:yگ����%w3^�f�Uj ~�p�"�9�Y�,O�K���p+�UE� �!oc)|�2�N7��7����o�5��_魂�W<�04C��d�oI�l���3�>�i���HD#��l����B]<w�RX���Os�8�V4щ�>�ZmO��M����^+��0:��-;�k7�鵑p%FZ<g�!�À*;��sM��鍳���Ù�� ~u��T{%*��V�0�N2��Eq:AU�|���ٹW�%��8l)D� �pE}�Et�l��۽��5V��c@����Z ip�J1� C�]j�t�4���S��D,f���SO����I�� ���UD����۟Ht�: ��Yr��КL,�~MWf����4�6��]��Er��T.����bV9\X���0�~(7>N��1(4�<;����n�]� �n:�R㸼�����7BZ�_Y�-c�)�J�j� �}�p�2%��3bg���m�:�� �68�،�H �u_Gs!����6C�N���/�)�\��&��09�T��#�����*�#�>DIL2���b�7��� -��fR����n�y�]�k�$�mI7>�m�D�������|��1L���F�[�b��#���8�+�Q��h)Nc,o0�_0yRE�F�9�S��r�+�X�~���٠�+�S/�Q�6Q��ӸvL�����"L���c�v-���j� )-V�N���v��YC_����@�������9�,:B����Qx}!�}g��z%�w��:����[0�t]�Ǫ^4!.��g�� �1���i?�u6&��6Ia&��k����]hy^ͽ�]����A�[�j��ͤ'�>�:�+�o�'�(��Nz�[z�H��y ()A�VHX�@�[r8�N@���[��K�ɩ�1B|�1��X�{�0����|���?�C@)����)�h�[�l"��E�2�v!Cޝ�I~��r�q�b�b,;�:�q7�������,�4^R�ө�����}l���5z�� suC�D�R��"�i�հ;딑p=�d��,�.�B��ʠ������ՠ1����)ƞ��������i#�#d���;ƶ�̕�w+r�'����͚L�~ə�" ��9Gj�?���as�R�1�n<r"^G��8 �#�Hբ�*�$��);����γ<�v�D��V�����>hB�L)- :I�L�q;���n'����S�8#6�-���Hwz��&9�z��u�B ۘ���< ����Ax̄]�I[����7� ���jƹ�K9�}�i��)��Jq�zU(�v��3�saym3]�H�@Q���X1�c��#iG^ �`�[R�;.��C��p�:!�ڼ9�f�LI��j���ԓ��D��@���`bC�kP���)���l�佺E��8ι�z.�/\V�{��~A۽ ��F�s\֡��Th��̍��E ]$��CM(��g���F�?��V�.ڰ�~��(o��e��=��9n�/3]^�#˟�+V���)Kq��h�A�mj�]�����qÅ��p������=��e�3�� ���su-bN�n�\3�M�U����v�fZqv�bsT�S)���Eg-�����������H��Fp�#n�� �;�ڸ�� �Fq��y�l� dZI{�F�Z��5v��\;��ŷ4�+E� T}�ߞYk�l��㷓�|NLm���o�qrT2��&��Y���l�Ψ�h`[[4:�AW�`za��d��U�cX��>Cs<��W�ִӔ��M�̮k�Gl�6�(��賲0j:_6�:�V"�j�I�BE�6�ngQ���[mv���_ !�W�.���@���\�ALQ��1�I3���� }I��l�>�c��?5j_[��}�e��\@(R� A4�n/k?�6Q3��StNU�j��M>�����`���jz5��'��2Ý$wO�o�}��3uK�<_L��\a0�d0��6�4����? �NSoN�� ����, fc<_i6�4���x�g>{ V��4�V�£�.����v�u!��n&�OTr祤5�kRڱ���` �)��P��f�3 �A���Ԝ�Tr`<�2���<��� �86G��mJ;!�L��i�*��A�J�=�,�������d]5 ��M��#-f�^�2���Sw�fl����,ry��P*�����1<�WL5E�Vl�F1 �o���:PkJhK[�i�+Um���x�פwu�=�c�H�z�8(fG�uQ�+�wv��pO<|6��Q�I�}���+��q�P�@۸���or��J��j�YЎC��~��O�=�x�)3�y���\���[i��t���q�|j�s��ډV��9��UDZ��cgX����AVR��FYt�A�%�yS�D?K��V2����Y���Ԓv���H�T�!�o�M�[����}l�_��pr�E�Wd��@�o=��܍!�u_�SӀMg,���h�f�f\�0IFҗ�1F��{�c���,\��&�j1&�,�U�q��N,�,�@�v��T��Q{-�G��2f ��P��I��v��@<g7���r�Ԉ��W�O�R�{ '/h� �Q�O��^G�#��}�?��sSj1|��B��V�>J���j���eӏC�E��"��)h���$��ee�^U�"��3���po������sb� �� ��/�~#��g7RA�+�y����7�f���]Rs��W��|� }�B� J\�g%O�f�I�=G����|4\/ؚK"9�Q-�2��zHQ8���{�8Jg��m+��������k�� �:���d�B��'J W�nE��nUɽ?Z1��r8w��gu�xo�5�s�9�)1)^��~�±�m��]چ 'C0�����NG����"���վ��5%�l(@fU3@�BYɗ�� �����̉PY���Dܫ���S۪;k|&jb߮�kT=�T��gm�g2]3{ِ�̮LeA�����x�d8�}�?L/��D�8jA~����v�)ep��v�G�\��qJ�vbUòek��+��$��v����&l�}�{��m�4�Dt��9mt���C)�.\���Et�u@6�&CZ��;YFM9�Z��|y,ч���ԬLV��!"y�� �%�?W��f�������1�$�LaN�@� ��>RtMi{X�ݑC-�r-6�q��^�a~����`d�1c��Pn��z���4f4 8uK��5o>����E��_��pi�W=lS1�����,� �Y� �i�Mi����OK�p(��p��*>Mw���kCKrW@f��7�m�.�U'v�b�b��&3�o���5hš���M�����Is'����;�1<���Ȋ�Fz���@n� v3�1�"�&����Z���'��8���P�KK��Ȣ�XS�m�]q�U�Y&7^����"����yh?��k �7� +w�*�(<r��y}��[��$h�Uѕ��TS�٩%�� _*wj~�� b�T����z"�"QNi@W�����ݵ��v���9���g���e=���9 F��]�w_k�a���V�j�zx����pQ)7�XI���,f?d��|%�HY�8WU�&q��2�� o3���ծ,�P%��B��롯�>I`n�����l9D`o���#W���j6V���Ke5�y� ��!d�:�D6&�!�Y��� �qG�H�*f��To�\� Є{��GOM��3��ӽMs?��Nʂ�Tt� ^N��s�OHk��,�1ңe�)%4}��!Q��\�]>�>��D���&�)��UA�S~�\6,�1J�7lPl]�0���{���k���6}�W��};9�C���.������o��:yc���T�9�\��-m/[ױ:0� �S��MpwE�]Kh*����n�u���)P�UZ$�J� }-!�i���'^x���"Z������eZ��Pv�6�<`6u��ۜ�71)��my����f$|��4Dj�hQ9������Q`����Ti�x�2��X�u-���%��G;�}%��mi�IB �**�m��`gS==�L�d���;�x����E�o�ߋO��A�?�R1j�{=�äŽz&r����7?�g�x�r�T�x�z�zM-�ۈ���d�<��YA��]����$ZS%$`�%��f�_�5!0/��_Tr���w��z�g#C��IB)�v3_�u=3�R;��bZD:C[��؎�;>�_Z,&�̰�ER��,�D>�wRχ"�*� Ik��(�o�#�%�=C� }��l��mԜ��e(�?S^��H��u� ��lTBn'�Q# �,*��*\�H �߃�Т���������,�p2�:���I��K�n�H�[R��>T�i�Q/&O�3F�34ʰ�}��|+�}���bܩ����_ٰ��"aZHɰ�~e�*0�:���3�Z�D����(�o��vtS�(yˌ��|=R���H�\Dk�0Ϝ��ױՅ-A��h�*�f,�*N||`�����?U�6t�G������Ƕ#lݳx��3�\�A99�p������nFh٣��{n�~�E��)*ika@��9Ҋ]8���_�Vr&.�pV3�n�c����IKc��k�v-2�L̢|r*���C@B��n�t7�=_������D�!�N�E����K�>*�JC���e�!�3<_����=�XF:ݴ�C9�h%��>2�<VN�ro�B�1/seR#_�@x��%��|_R���_��sDh�e���,��Q���"�� ���i�@���U��$��Q ��F��ȬP����Iv6�1J����?ŕuޚ���(N�]F�<�7��De�<imE��7+� �^�T�����3Ҳ���v3���'}�$�B/<d^�Y_�����'�� ��q�&:��daW �����#Vg����Bٵ�a��/�,�s��NPv�O���!ʄ���yy ��˟�6���D} ��i�}�4���_�S�1��Y?�MBt�,�q^�z�\�� �����.2�6�&6�5#<1m��b\^�V2/�QWxg[K%�^j�1�*�ˏD�\o�s�`�9�-F�� �� �G�~�;�?�_�\��kӗ[���O�ifw������G'�u�t�q���Z�p�����U��C�?}��If��x���b7�6V�MVF�2 �D¯�0�Z�ۉ�����t��qiqMEƠ��BKH/ �,�#���QGR~�:C%�$H�����n�������-���g�z�^��͌ �[(��ݑ������b�1���{�F5��A"<��a��:jD���iH�V!,��N�6�k��j�G��?wI m����t>S^ !����&;�IC�����q��!br� t�@�� �Syin�Qmn��y��'c+��s>(�ls�⤽��Ƭt��M���%�c,�� �9�NUQ���6��vHuI��C?BT��^<��1.�]dkNa�4�?^x �l�Jʜ+c64j���e ��v��JDI�6U!��#�b�v%�@Ґ��� �����0{�Z`(A&��Y$�;�L���.� 1��fU�X�Ì��YG+U� MĔjZ�)�S���zW�EW�]�n�sX�)�}�K�vAo���4H��$`�t�X�u�lƆw\�mx~G��C��}h �S\�1͉4�����.ĉW��e*�_a�.��Ƅ�e��X�=Y�wŃ�|���vK s���ӱȵӳ<<>�J¼�J�����]Z99��x��R9��ɕ�Cy�3���y��?:���y 4���D}bS~��۠`����L���ܙʂ�.䜗ðn�w����^��5(�H�J�Ab�N�3@(|� ��|�Ye�����EI�ܬ����'�o3FJԕ�)�A\�aQ�"�k�K�r�M0�A�kfֆ��nm�2y� �� nD�쐲r��˙'q��n��@ⴻ�e~�Q�b$��R�t�a�A��h�YW�`v�.�\���ʩ)�%��w�+��3�;y|����1K(�|��2͆Z�u>�d�d�yT0O8�KR��#�l��0~���6ʩa��V"ގ������_,\I��@r��oƠ]�M�:[��z���C�����5�L�N�"wݫ���Z�*�T̊��'���;��%��~������*��Ou�2����Ɗvk�qE��]�ޯB�Q� � ���*�Q`��0bPd<c�nn�� l*���BEQ����x�7������j��0���>��� ��6����o<�d�Il/�vB�(4��װ�V<��{�>Wb�����}5�J+���3^�E�$v?�������}b"���6c��/����*$����{%��X����ӯ�#\��^���n� �;5�����a{0x)��.zeE''�i�yI�н�oA6�=t~�ħl��H�^^:ҝO#sc����K�#u{����}�^ �}�-tg�� �Dl��r�#d������ Tk�u�ӜPj�/$j�f�@��A���݉-�m IQ�%�7�VK���Z�t��(�2�h���F����~Sg�%[�ql^�ȱ�v����� "���TZ-�]�J���@���s'd�����C\Ñ[YIg�O����ZQ�W�BmG�g�uz�=��W������@�Nף��p���� l8s�~�ϹN:9�-Os1z�@� PJ �D$�/H�(����Hf2Rot���NT�5D�E�U��**�n�P�`� !'ʫz �z��8�m��%�_�iGv9Cz�E��7�5�K�X����f�)s=�<��VL���#ڊ� 9�|����7`����.>�eD���e��U�:1���!�J�7ogN�����4 薆 ��-(R�H�N��'�N���װu�z��6Z2�Z�9�5�X21:VJH��O7���wgߴC!U[*�O�3@�I�=�J���D�.�Pp�����`ߛ�{�k� X�xo������A�@A:}�Lcbߟ��K,�V&�>�]ɵߟ��wy���KK�v���x��_L�"a���'��-��1�s�z6V��V}�e��T4ŜG�=�O�`.9�����MI-0T���.g�п��g�%JwL�i�%������K�\I�����Ă�n���C�s�HfD�6<�����;x�ZA&�Z�u:'���D�\�!���(��_r�C�!6�U!%*x�3����O�U$O�'��g�/`�D�^p,��{�vnZ�](�h�I��v�nP;�lV�g���+u��� T���y�+l���;(�r��d*�i�GN��;U�w0�XǞk��*D�:v�F9�R�,�=����-1'��3�V����*�"?��#*���6����Ov��A�>���pnۣc�]F�3<so��ӳ 6�8��0��Ѯ$�'�i���? J�ә��f-�o��1�����{5�a�k�:u���De��~#M�M�܃�����!��SDHŜ����w)��j#o�E�r{�Pn�y%���l~�9^/� �-�ϭ� H�O�>�Q�\ɕ�D�3Sa�{�<�J������̓d�<c���@yy����x��g�b��%��Y$��:�:��;GU��ɜ�O�]�%ϋR�9V��fy�1�k���ζ��k �wKTF�؊��l�"j��S�s�c�|-���KU�w����/��M8���G�{<E(��#es%N�#���k�u��?�V �9�p��E>lˋZ硠�^�S�����#MY�._���S���������p5u�~a,��U\u��5�]B��':��<���"���lń!�}��TqQ ~���N��H�\����h���[##��(H�vVFud�A�Ҫ���o����0t �:`�'��+?W�5.���>��̘hcqx�W����^RRE�b]�Kl�FQK�~�~���^[�0z��?)�ض'�]�$S ���~}Ҟ_Z��$�*&&�zE���#|�4�s��k�O���ܤь�L�\��Щ�{����uc��eܸ�z�z�Ɖ���C�M���S��$���$�)e+|��G��~x ����eM�@7�D����i>{���>����L�� ��9O���xDn��Vf���2��y�67��ڨ�'d��d}1��ZÊ�A|b�뙫��W�5Q �=m2� � P�̔e<z��ꠘ�D4Ae�,Ʃ><��l'��X�F�_,�=��C�m�9l��U�1@H��Z�ung����9��n�=�&!7&o {o����4����>�q�I|+���|znlZ���W��[Lɞ�qM�4�aο&b^Z(��i��[P4����Ʋ5 ���[�qd�峕��X� �!H��,"]��Ȋ�7Ti{o��Vb�����QJ�Aڙ���C�?����5y�z���s���\ț@¸����x�ZS����n��~��p�t�UBu�8W:�CY`�����̭0QZ6�� �]�ѕBf#c�j�I�oI�� �<��e�� s��O7�!;5&hD1�bu�۬���߰v��fu�Ą��6q�&�4�`u�@ Z�Nx�Ƴ����fdn�h�Ï�PR���@ k�*��J������pMb1�2)S_m)=�?�H [UE�Z܋���;���v ��u��L�RF�j _LJ5����l'��+DAz��X/�$3"��s�7��g��6U}�҂��rN�vQ�FLd�� x�)l=F�ʐ�� ]�A�u��J�p��5�u<�@z���Ĵ��W_��{�O��a�b��qo�5}SC��Hy�c 5"M��mN7�8esW��O���dn��4���!���w� �eTe^UE�_)c9MP�D������f� �lF9�(��~����ES&gj��"�{����i�&�a��c�Ͼ����>hM��U:5���mf�N����S1����V��z��]Ӛ⩂gB�*�6�2+s�M�P`�*�����5Ơ�6р�ec��8�2�v�._�sBɍM���;�H ��5�8;ϥ& @����f�Uy�^ĭ�}8%m~������N`w�X!��|�p��IX��G���R���E;J�b[��S1��'��_H���$_b ��V�<���;L�6�q]�~؛L-�/��-�q��̋�bY���}��n✉$By|Q���y�$����P�O@���J2>��ƀU���-`F���L�1�4L��;��.Ag7F(��\�� �C�h�|ͦwB�k�CD��{8��훳*���"����8�^���Q�Vh&�1N���D��^�?��0E4�U�/�#�+q��� uQׂk��&Qġe��k��7g��������}�1I[v\�i6j�pud);�.�Ր�;դ�Ń��3�<~[�_�r�(;�YN"E�o�8��cO���v�I.�B��5�[�WMP#���)D:�#qZ�A;���*�f��4�o�q]�T`�laʹ%W����8����1>D��Uv��=�f��Y�5�YLkդ��Fz0+_�]Z��Bs�b�K>#�CO�K��,K-�A\rϾƏ"_^wP�""\����ӾWZ}H8Y� �Mk_ �� � B!� y�5s@.�U)O8t�$u\)���=����-rf��q,������!&YQf)h|S��!m��0�)u� �4Pc2^8p1*�0X%cp�)�t�#�|��F[=Vĉ���b�(�&��y��]���/�a7�k�B�,�G���pq���oW�HZ��h�cM<L�L��B~r��!� �f|�k#A/�j��K.��A��g� ��4�S�AJ���!���{���yK�i��3=PNѐ�g�\�slKx"1�֞S�IfN }z{`����5�3K��:ȱ�y��¡ �N|��Nj<9��e�'� ����S {-��������а K�%�Q�4��`_*�ɒ�<E U�t���XDbx��|$��?���x�X��N��$J�Nd/Y_�N��~n&l���*�.�e�L��GT�ؕ<m�g��6�"�_2�7,.�}�I�e< #)�s���-��B,��|Ms[;Q���qK� �<��<\��;�kQC�:`9���#��#���ga�t{����[V���:�g��c���2Kt�7�V �`��V�d%��%� ��=��pь�9�v ���; ����A̩��{�_�I�p~T�x6��f�>��_ ե�>�>_�d��1�ۏ��D������S��E�,)�� �Z&������"f�ۄ�LR\i$��Qo�!P�z��Rf�K�s* � F�X�O��!_v��Ѽ�C��'��Y�._9ݯ��՚��6d�9�Ò���;@��u�=;*�m��<v'ұ��W�/��o�ezb0�U�Y������&lu��Q� �\#-Q ����2w!5��{�8W�ՌvH�W)~�fm ��25@|Q��<��g���X���gމʨ���4� �$�|=��Y���^�^�����a}V��m�Q���{;[9��PZ��p��r�I<̲�B��s(c����w6F�͎M�-�9�vp!�}]':FA&vu �-�����~$�wUV/i:>����_�j/�P��2D>!;�x�Z8�z� ��;?��!��;J�ߝ��ԭa�x�פ���OɹJa��/��4k'��t�H�O��;i��ג���qb0��+$D脭8C*��5Jq�UuցŨ��_߄��Z�Z��x�D6����9���Ž!6���ţ�1c��^IN� �\�|L����}��>A*������+` �;��K�G�h6�ެ�=}�+o2``�*�k�&5��[���R*����I�dNj��B�eQڙڏ�o�k����X`tGg�LՕ��Eu�@ҹ��sT��]�N����J|���P�BD^Y���$����G_6�/�*����J�z|�hu8aN�h��qOt���� �@~o%��-�������m�it�Z�1�'��P�Z��1����֖ey�v8; �H���9_|�I� ��j69����@]{��(G����nZ��I�Z��[���qG�g#3�0h[�=���� R�qY�h�㙫'��.�j>ޯ�w�J��G�B��K#4x �?�C��g {���ЈJ�J��XI��:�)]S/�&�Ne�%�h�4���TI��Űm�� �0�����t�1*�]\yWhNJ�'r�a�������dnw�H<�)�5�1\i�u�Pk* �nۏ4n;���Y�δ�z�w��=���ڽe�4�+g�K�Jos�K�+Ǖ�s��!njܪ�_*�E�*!K�%�]�� E��Jb��?�#V��_����/�;��;}M����q�_���zr+�� ��o��Q�v�2Q���=�����dK��"�V̽f�W� =Vc�,��n�08;��1fVCE��M��gq�^�����I�h���h�M���>��+Cũ z�BL� W��S��.D�h��f�e+��3��:�6 �7M(2|�G�.~&���G䕕O�F�~�=��R ĸ�ű����C]��u6�:%+ �C&2T{n�z�Y�"rH/#�V�A#�>[�X�h�a Z$xa��Lx���-ՠ&�1��7Fy�=���؛�N1?�.�{v���l�b�dM���(��F�=�8�o�% ��CQpđS���Y��W��!�W�]yW����Hî�1d~�E:��*���r������ Ō�ms�!B>�Ck�y�|��.�����D�~%9�D�q%EV����>�kF�Wz�p\1̾�O�V�4��H/qbU"KK����A���ÄSy�w�!�"��NP�3tdŀ�����$ҡe=���L}���cl��~���yp�I&L�0��?�Ґ� TI�� �b �~��3�h�-ך[0�������]�X��6��G,���{�b-�y�ʒw��9m�~_�u*��CCv�~�75����P덴��/��_\�zs�a���M�Ԯ�h���� �? �� +&`�P\�*��X|R=�3e}*���m�Ǭ5c)}���ᒙ�N�ENz�6!���{%�Rz���l3�q���W@s�w��Ep�¾vcZ��s���hLU��+�����Zې������7��V�7�R��|V�������dӼ��{:dn��lwsYD��:V���n ��d�\xAu�Tv��<e�]]�{9�+i�*ƍ�b~���Z��ifZ��c�e��H��K2^V��`ޮ���i����Z��5 ϥ��[~w���L���AGt�Lo��Z�}s��X��8��'�x{ԁ�̄�y]_T%�m��p�R�sXZ��av��WXj�}2{v\Ɖ�oF��_��a�mщJ qO���dH�J^G�'vOXzP�]e��a��>Ʋ�� �.%?8/F$5눵S�Nڳ5��`�V��{����/bGƲ6;Z��r�a�<Gy�� �,����e���7 ֊���!xl�fp��_ul�(���4:wN:E�?MP߸�B� C�˰6I�m�܍�!�I�Ls�����vOku�+�q���Ԋ���ŧnv�/�ʑ#�^>o��̊:+��s��Fv��Y�Q���OV��E����0��l��"�6k�I� src�X �:ռ�����}[]y�#���鞥N�ة8j��T�s ��۷Vs[�-���X�V-n�k��FY#�>�,�,�*�) �����b��J�9��|݀(�,U�椚3R�7A��*���a�g�T�V"H�څ_ؕ�G����x��5�� ߇�� w�혐�]��m+���`��/�$e+�(���ҭ�g�[a��N4��$��m�ML���[s. ӥ'��mCU!��շ�Y�*��7������/W�V��� �y�.*3 KV�4�&*|ħ>��Ԩ7���� >G�sD�#i�jDwT�G�zT8q�]�u��-~�Zyr�{�(}(\�7��;��$�Y���L�`�K�����K����� 1~G��E�7��z�2�c�,�ޙ�٘ـ9Y�6�P����:S~�>�`�@���&���{����B2�1}�O��y�#�-OT�����g_��<D.�{H�sRO:�Y��0�w��v��2Q�>zƂ�36�A�e}�d|h�c�. P��Y�[��U~曕Q_iW� ::��a�Ժ� NMlބ������>���"~�U��S&I��c��N�9��:�3����)�4���ղd����ԓ��rI[�Ns�q���Q\?���2�9��v�0K�i��hr�`�'��9��П��g-m(%{��(���S�!Cw!jz^��Pu��RR��bW~-])t��~sɄ9�%�(��c�S-�O�e(�L��ơ���ȿ�K�f�H��2ZFs�`��(a��ҋ�Kᖆ� �O�s'��tQ/�u�K���0�U�X�N8��x<ߪr4�D�Gh]�&�ՑU������V"�n:-�kYhOzl� �7iq0�����b��h�S#�굻�e�tt��)2�>�� �Wo�ᘟ���iyF�Dޭu �,`=^R�AC O��:�vTl5Mˍ�g"Y����mTp��?����hxyl�4���^Ʃ��?���Y O&�!B9�o>�_���M|de���Y��0,���(D��"}��E������=�D?4bTrG�#�W�~)�\��'�p�knJ�"� �ş�E:}t�~�{��`N��j��J�|����h-B�~= �p�:GAn��)W(`ە�m�^e�>Uk�B- �t���'��D����L�M��N2^��w���)����� �v`�f[�i�/�f�K��YQ^�x2�A�1`�wt�:��X&�s�T�Gj��!������?ħ�ݬ�ܭ����oI0��q݉p�"��/�>�P�X'��M�s�7-\r-qj�䯩m�+gy� z��ܥ�Q�:8�?���M7����6�G��2� ���U�� �U�\�|��#>�t 1������Ŝ��Ƕ���M�|&;n�����p�l����i�%�MvI��>:g�^qx5f���I@0|���/e[I�F�Z�Kޖ*h�&�6$im��ē�o�}/ʒ-�R���s����M��KIJ�$/�y��<�1��m�����z�%,ق�2M7Μ���wK]E�t�V��Tz�*Ox����U$+ �:�����^�e=wBږ;��j6�|dHr� p� �S cÈ}j��E��� s��%KҴ�غm#��I���`��qu���|6��ԧ4B��'�fm�1�o����T�B`m��h�]�1HZٙ�OI�8^CMg�)&-�;��KI�MRU�"$�n $�u��О�x�1�� ƴ��ݾ�'Q�4}��٢X���{���Ҧ�K� ��bj?�sC:���o�Z��q���_��0�{�MA����PY9~�<��<t�q�'�t#v,��IԄJe���SJ�3�(�ED�">����#e9� +nW3�tX2�n�~^ � �3����q�� �+�Ng fIn�}(2�� >4�r����L/8x��I2�j��v�,3�{`����*Bݸ*��a��V Qu�>=��">Yo����T˥t-�^�AkC9Nb�e�j�_��fK��K �"c�=<�i�SG��������m��6���l��o�%�����;HUڄ���}��~Gm������ �rr��݆��Z����=�����1��2��MtΟx����͜�,�ң�.w�/Ǖ2�_¬KM�.��*M,�p$k[)�5s��A6�IPg� ��|ބ��9����s;�:��|��$�_xr�Wg\��F�֢:9.�Q��9� f���d8Z�&Aϋ�Bv`�EA�=::Y�t��y�s�/��_`�㑈�ں0H�%Q��PM$����J;8y��Bl�#��U��U�ͧ|���H��-o]�9p���b�%� To�`�$�?_�&5Y{`zߕ<p���Tec�Bqۯ�R�Z*A&����]ý�V������l���mZ�d�EBV�����l���O^�75���L�I�^��㎴T��t��T ��`���C�u"�6�g2��i��ö�ҥ�51�a���m��y�MUxu�@Cp��v�Y����a�M ̊5_t)\�G�ol��yf~�r�G���`�H.�5x]i�6������'}�@��k����D~x:�UQ��j9�h(.��3��S}c���9M��)C<��ox��_����B�xv���1RQa2�pΩ�Ңij�g+MTh"�%���cղ�|�km�F�&���Ɵn7=oI��fBs �L�z�j��g]cP��):6+q���h�t�B���fƃ��,��N���=�xq:9-��s�V�6s��}�҃�|v�bNEP�%��!!L��?$���J��� �x&�!�^�\u{��R�E<}/KH+���6�d��u��� ���q�E��)�`˷@6�F��w2��F�PQ��cX�X`���:�W~N�,��M�ښD�����7ɤ�ޢ&����"ع�D��J���`d��6`:8���N��7f�wS�� ����e�JZ�-�<��V��jn�_�g��R�� ����� �ȻO%�/���e�z#wd�'����CCh����o����庸{�<~��]�PD��`�Y�W��0�$�R_[�y�V���E �s);=�t���N���z:Ղ�O˝�N���"p���%U�����c��"�� �� oU��[؉7&�H�_�D���,!n�D�J~�8�;%8v�}9�aq)�B�3��� _�Z2��1�ץ�B�������{��8���J�V~�K�w�0�2\��@����q��bP�[!�շ��Yr�z��J��۷�(Ƚ�>�Ȋo�%a��s���Q�&���"��wa&��k�G��b�����VX�kj��M~1��X_ri��>E�"u�z�g+���<c@���gkk��[Иș�$���ȃ8(��`�n[&��|g�= S�Cv@ K92�P}��[�.��OL�pd�.����nEh��D]A�P�%�p�1���e�n���fϯz�V*sC����[�Q 2�Zp�G�����,���)�{Rl�Q'PT7n�of�<C^����*�aUE*A���� ���K� �Y��<3�(r������{����|����&i �q�/��&dW�ˆu�4��e�S9�c���{Z��GM��̪� ^od�i�тʯ]� SCg�W칭M̪ONq~�3�#-�+�a72�4"Y�N��w��(��뾃yo`��L ڊ�N�Ur��:�[�m��M;7J6����G�@� ��0�Of�a�t������)|�6H�]E�`��� �ŠxD��J�N"��(�7������,@턳0�� Tfa$m��{:V�u�A��.b���Φ���N��Q&����G2���`����sƒ_�C��c�K��Wu��y�G��K�w�>�����P��[�$�I�u�l�8j���n���&ћɅ�\� � �NS�$�!9����8��-��gk��M�����FuBa����mP�Y6�ц�9�mU�����O�F{Pf��P�]�f~�F�.��$�I��n����6{<��Xs�y�a�r;Y���;�T���6��I����G�����?K~|:h���C�w�͍�0A��:�ΰU�n�X)STy����M�>&[�UG�Y#l�V���k1bƛ(Uxt�����ea�N�K�?IjE�SA%�j��=�0��M�OsٻOdC\y�ԣn�GF���/���EQ���%`ᩒz�['�-����p}?^%ɼe��)�D�_4���M�5c{/�K�L�Dr�藗)��J���[�$����6�?;T���v���i���mDѽ���g���e_�9���U�Ogʗ0���)tb�~N��WFD���Ç����d�7PS�6��x6�����!\�T�h�V3@���/`�] �p�[��x�4h�I������Ƃ�CĀR1&"�C"�J��Ìy�Rxlj�T� R�V�� �����X��Uw�Fy��}��1��#�|��B�e6�«y9MQ���F�T��4E9BB�\���$�t:LX�����?,�Tt"3RN��}T�4ܖ��G�r�9� �=ʦ7��K�\����A�6��k@��e�r ��Ü��^D ��MG_�����Q̼�c�OؑB�>�U�R��{-5�p�bcymUEp�´�'�~e������4cd�jX��1�\�U`��$�ھ�z��[f-��Bܧ��B������v�-ΘxB�I����C���F���o�#f�&6��h��ZP� ��26V]�H/}�^�q��);�l�l�=��a�ԕ���ₖ3.��x����7���Z�4��.(pmg2��V����������Q��� vV�k��vCX�65��;iH��&}��QސO]����о���N����;0]����EBf\�Mi��CSAKh��֭�~}��JST*8�IO�@�{���M��~�q���XC/rQ��hӚu9ge���*��YH�6���{�������~���sߪ�_����a��t�_�{�� Y�$��b�Ri�� D��Y&��k�XD��I�C'����A�����X����I�#��;Oc��ܷ���nޓ\U7���2u>~�1�s���-�K O4es��^o���TSv��^9T�R��ȗ�b��~����;�.����.>a�i���#�<����� ��T=� C�dI �I3[���$V�G+ߺ��� �;���EX�Ĕc��;[P$��Ū��[b�n�;�Ӧ�v�9�t��6�����̰\�g��z���+h��¥Ğ��w����^�>��!&V=���������;^��-��p$�.���D8���E�>=���<��zO�bk� 4iv�:�oUN�\}�k�P�/}�>�έW���)�z}��"r��;i8 ��cW��uPy*^Zg����#Ck,!�Q�(N�!��t����4��T��D?k#���}�s�*�WSj���v��L�1H�9@o�C�f�Wt,L�3��l�� ��k\C�ϩG+dR%̓5�� ����:P��#zޔCe':Bq��D��_��5��q�І�M/��9R*]�q���3,q����j���v�T���Dm�x��2#������3�`�0�#�K�c#��f� �K�%wb6�+z��#7��G���\oG+��&�*Tq���Nl��7܄q�ۮ[�IF����3z��kG��-q�"�0�J����Q/���l�yq��r������p��dɌE�0�l�k[.bQ,�3L����L"p��Lm����b���\�w9BhFʓ/���f�ˌ�ߤGjz�ߐ��|9uX���'Tʜ2>7 ��D�X�.F,��V�6WR������GG}��=1w^��>�@7-�)R���j&>bֿ����Y�=C�zH�oa��·��2�@�-�ˉ����K��k��M�b=c(�oJC�ĎI�a)�r���st[}*h̼/�<��(� S����婊����?(�1����Ŕ��*;[�.�|�[����Gq�^���ؚ[�����E��9�7q5��o�;�>�zn�ԵY�E�L���g�{�x�4��ə�2��rA���iM���AC��p��Sͤd�è[.|��|�1���zF���4�[���e�찉k��4�#'��|bB 6UZ��>K��<«˵a``�����~����T���'<�7Jw�ͽ��%�8_U�w��N��ӳ���{"��sW`��\���Wǿ}A���GdO�߾�<} �\��^H�G<r��s����M�Id�)G0�B2��"W�gf;wAz2MߍA��z��!g�����J��m-p���n�����f�3k�:��zS����t�8�S<��͏o�+z�l�B��X�4���:��J4�w��v�Y�S!{z�{���f<LR�k"�i�`�Cа7|.;�s��`ґ�:d�{M�Ŝ9\.e�H��64�4=ɖ/��l\SK!�,)˩�WJ�Ӯn|�,��Ǔ���t��I���a�co�q>�H�X�l���7Z��/�� �Ji�.�h�P[y�z�!�~��8�csŞ����'����rw?8��E��ZK��p*5u��3΄34��NSB]�qR�T��Ƚ�eX�[�6���a!�nJ�D�N��xY������ށ�;��l�d�ta�<4T�G��e&WK��r��m(�K��]{�s:�x�+{�.E�@���c�F�[j�O�o�'���7a�����i���6g� 3�F�^#��Y��H0J-C�� ��^5��Yʄ�Uz!G��}��P1���Pw4��EF�#���x�\�q��p*Z��:�+{�I��&�|:�q(݇�{�-���������ҍ!�t�)ջ6(�A�/B�)S����%���S�k�M{����`�Qy���0 �n��,�n�D����``�k��y��d���%�9�^;X������� p�Ǩk ���(���������#׀�;umn<�O��s5��%�ї�?д9Fg�@�|�xAS�d���]�Yb�ZM��� �������4Y"*Ё3ZR �`�~��^ժ�=R�_���1����?�;(�`"�[�WKv8?Y۲V�W(\�Ņ�݊��/����xì����jx�����_�`�Iq?�m�Z;n$!�+k�ܶ|��|�l���v[B���*�Z�61g�#�g����+�w�AW!)��cj�/�ov��^)j>֙X� >�v0��_K7�j�=/�S���1,M��&W��▧���gzR�7�������N8:X���tk�"7U$H}Q������ a�c稿 ��*�%(蒃��_m[�d��`�Q7�ж(^�n�* v� ���'>b���?c.�0&��!�ԣ�*��XV���{��Ă����I�P�t�_�N��h>��Jw�̀��dJ��N'!�iS�?&���c�g��d����h��׳�d��W�.�_�Up>+�U�`��1�� �9��+J�,� V6�Q�x���1����.�P�:X�I"(�nḫ1��"ǩ�|ǝxr��h{����B-o�n0�rZ��L��DU|JۦQ�}�%�z��&-(�J,���c��=Ǡ����K��.� �e�Ϙ/9�ːĽ 6ݕ ?k�a�b>c!��^��qR� �?�#�*�T��(�?���Tɟět���Z*[�ؿ;�Ϥ@��,�����Bd>�Z?��ʹ��&N��C�R1��Q�՝�$&���O��gGObڢ:Gs��ȉ`�P�}���@K�xKq�F�7zs�JA��f5��B�x[��m�[�t%�ݏ�\ߟ�6s��ѕ/���5V��(j�[.b�̋���u�ӱN�D�ܵ��T3���H��:Ea�pr'�g��Wp���˯���%�lۨ��ax� ���dk��j��t4rϸ���K���sk� ����v-Q��|E��gε�ǒ(ΚA����J՚5�65d>'�n�Z��,��׃iw�����X,C�9n��a[gl�¿�F�]Q��%y��$��C�K9Nܮ�f/�������k�V���i_�K�M{/뙆W�ˎ}�t�,k����j�0^��KG�Nq���G�ĞY�N�`�rSI%[���9�L���a�=Y�F���)L�p�T�j����a�;~�3�NR��¿�zx@�^ ���X�(GUOD�m�လ��zk�=�)�ª�tME/��x7�R�'���P���}@K�@��;k9pܡ�'4������u��'n��m��r�R��� ���R1��S��3[D:��q&�[�ˑ7D:fX �a�s���%�4�)��l������� ?2�zxO�N4R��������#���W�1���n��V$�E������_���/[�gH��`Ộ���7˟��-��07�,0���|Ͳ�W��U ���ҟ���W�^��.3L�\�0}C!Zv�-�&_��C�6�X�y/7��muwx�H����+�Z43L~�f�6��k�W�m(�?���Kȹ���t�b�$,��e-�"A��GFTWv����w �{�R1�iڐkC?�bC���xS�oR��[ �a@yk��V1r��.�����%�*�G�!>����G9f3�h��'*�/���.��]�m ��}�"m�~�b��;����dK��yp=�0h��c�_2����9��ucFw6<b�\����G� ۰ ��d�* uT�\xN{�O����w���,P���S��z�שş�� 7�s�tՁ���v�.�&�Kx�f_���t�&���7�#��R?^�������a��gg��9�.�i�h��dԬ$��N)����R��kq���`&g.� �U[$:aFyV��yilJ r��e?���}��>�Qs?�ԡ}-ЅhL5-�d0eH׳\�2�jRپ_1F�6�5L@�=��$n�fht��>�a\�-��A�k` �=��SQ������OM��3�\z:�C���"Ӏz�^!tm8~2/�D��h8}����K�鵷g�?2��ɵ-�v9�$;������=�~d�L9sf�h��_]�|-�"Z�X��6|[�P�%�/�H�9��;\�.�T>e��xu�c�s�o)����`��4�� ̄@p�s/���0� ��50� �=k,�m��i���8���lx6>M ��V�� 8z�W8���k�����ZH��R��>���f� ���� �{����*#9 �+�-� l���ٹdvy���/�֪�լ��s��D��[o$J�W�:�d�>s��A~�,�32CU�˕sѼ���?p[��ΚB��?Q�4�Y��n"K�'e�ut_��zW����~QU=y�M��"��mx%���Uv%E�o��e�>2�Z�= �����f�G�3�q�G�9���S�A2`8�C:3�SM���y"xŕ�Dx�4��(֢fh�|@&~��W+ΚG�� w�ѵ�f%�>������B�o����䜧{�Y�*.��T |b��T�o���Rm]QKrl���%��8��R��ў�x�#]�k�F��î+�jΝ��z4z��w���Y�o�f{|�%�4C�0��^�����C2h��V��G�#A��ZV�������^P����=�s�Kj|�ƽ��U��0�"p˗=W��q �F1��&�Z#��o)�9J\�@ ����~=�S�-�� 䰫�y�/"��$bE��v��Y�b���W���T|F{ɵ�[PE%cZ�t�=���O��A��%���稪0�F�� ?��y�?Ri��N4/؍9���'��f���x�ga��{�G1�E\)�Q$s]O$ET�ڬ�-}��gr������NU��L��+�K�3���A�K��Q��i�*���S����s��ZX�K[մA�g���|��ߣ_)S��wD�}�ȭX���};ZOH���TvZ����=�����"�6/,�a~����4���K�M3�$wD�0EՋ��B�� �"���Xz�8���~I�<��|C�]i�����r��� =�s��+�%k�!0�,�JG��m��<_v瑆��'q�QD���xb��6�h�#�kH}����|�:eTt��)��o�`�H�8��ޒ7JI]�{�J�̞��N `\,8O�'e���5��(#��>����*���l��)�u�m<\���1�4`Jj��ebo�>�ۊ^#�[�K��Bm=[i,<�?�us ��� ]/#\g��;۳Y���K����G�K����FWd����F��ց5���]�*Th�(��-��c�n��z�,����;iֽ��(&�N<]{��{��邧���MR�o�*r���[�:��s��6]V1��2LK�ğ(c,Kp�U�kK��h�&�2��j4o��)��F�yI����(�s���.Х�-� �-���������+�o�Ӆ��Y��+j�D�j]��>�X��,�/�w��-��^�vQ{L� ʩ�n }A����I���V�������45V-(�M�x�:�tB���fKR�=xl�� +�ƶ��٭W�9=���7OikrJ�a%d�9�]͢M)(�rK*r�G�WA�-db=�b��Н�_Rބ��N��i��NQ��~��pg����P��y�Ʃh�q�E���ʆtZ�1��N/0��dC|Sf��HS��G�ޅ�I��fV�[�b �Y�3k�p��ƤC��U��,Q��o��� �%��UF!�����.�����,��k\R�����ȓ̟:�|n2�����(��>��.���K��ғ�9AQo,�Χ�uRm�<�s��$�$c�@�1>��e!(� ��Y(!�Kw�}�G�)�|Gӛ�y*tBNi�����KU �`*�;�SA�hvNRC{����!zqZ�GJ�)�PG}/�67�C����N���` ��;s��vC�0c��V,xA��Tg1�m���";햕$<S[�':�"O���<�f ,1|%�0!�?-��"�S��������y!b�?�O�\ �HS�|�"�\xDh�'��}�F���"I4W3\��F�@�\�� czf��'^�*{[�{�2�ʙ��}�g��Q5� ��`jA�2��ӥ��)���E���_l1 ��?�S�i�m�<��D@�B_�b�&>�ʖ3�9Z��g4QLU�l�%z�<��i��`/EKٞ-.�<f�&��ݱ�h>/�d�{�}���.�蓻!t8�����ʚ����U��}c�+L夌b�]^�FX�X%%�l�� ��>�Z+�تΦ`��������م��I3�����s�ȩ��*��'�T�aN�0��Nyc��j�w����X���z�pGPъ�.�Ł�cx]��Z` W��c��t;3�a���f �(�Mڌ��8��0� �권ɩ��W �ϙ[-��t�7a�·��z"����0�\58{���vZ��7���䏚�� ��@^�v���m���N�4#HA�мQOy/ʹ ���ڞ��Sn�x4�3�Ѕl�>a?)ll��$@N��D�[wI�Ȗ��JU�� �^Ȓ$���g�QUk��>ܼHZ�T������EVd�хv�G���%+sc�jxJ5Z+�?D�7�kai�}o�6�t(E�#�a�'��^�L��Q����qݖFM��Y׳p �Q��B>w�,��\ d�]T�"��j�o�MYx�����oZX�U��J �=2�sɯOu�Dڳ���أY��N2o%B��kFb|��q�1�4�Q�N��g`��lh��iL���3`.ʗ�%� Ͳ�{n��%T���3��QiE�6��1p����?5SE)<\�o>�UdC��H�4t�+f�/�СFh�T����>�I�hM��qܯv�s�G4�AY��6<ڈ���Ӛ��a��z��Y��PL��x�$�BV�5���ֈ��{��6�X�+�� �o; AB�e��x� 쭇K����y�8,$Ԗ����۱.���� �s�3�3L��m��� i�ez��K���J��no���\Y1w|@�ڣ�,���冊n�Z�5�Fl�8-K�,�� ��oA��k*+jR�*��V���}n��$�&) �������M�qI��r�o�|ڧ�(�A4����Ԇ���.��6-����81l� �>�>Y9 � ���~�������3A<�����Hq �c�F̀��>0�-(x�����F�Y�$:h���+�(��W9���~�ݬ��$�е�OJQ�L;��]��5���Fp�/;|�̨M���z��y���_Qbhg%���� �b��b�&\2x��FN����߃�F�[��H�����[)0���=هϤ/I�r�1n.�w��vp�F>:[���g�� '�y�aK�GRG9�W�p�G��Ic/��>�[*�['����IB��`��L<�)2g�²�;����,�T4�'��(h��?��wв��� M^�2�(�&s[��i�Nt� 8����R��U�E�`[�d1�S��kϧ��HR�&L�tQ��H�2�E��KϠ#`=ݖ��ty���a�!�mG����9feQW��/߳c����9�V��-�8�{qQ�6]k��� Zw��Ws�Y��hE���㸜��`�AjJ����K6��Qɱ����_T9��i���5i~� b�G:�|`�@�"pu|�l�tU�L�ŗ��ɪ��$�S�m��H�27����%�q�&e.`��P��S�j=�^�d*D<���_�+?��e�F�-�v x�<�f�q͂����넛xTU�������Mm��3*�f���n:�uf�v4.J��`'�Q��GE�(�7z�]�A�����ړ�q�uƴF�|��虠��U����T��l��uA%�o��~�Y�̝J��1��!�|˃������8�J���h9���k�I�F�]�*������d���yX����W�uex���8�Y9�F@� �6�ц��-�Ji��%q�+9��{�ex���y� ~r���ے�J�`3�)��a><[��s����ѝ�k|A�2r��dM2I$��;�"k��^��y�3گ���Y�����tY�ѐ�x@�A�'�����*�SUl�͵zps�iʂbI�߆���z��|� ��R�t9a!�q3qC��N"t������렯���w�D��j���I��[����02[�Ge�v�F� Zz�{��!�l��gcW�On�m�ȻZ1�!��3U|bW��(5�K�� H�G�LXa(�%K�"�%�+���\Уd�d���=��,=-x�R�>bO�\ᚰ�W�l������A��=br�5�"���+�=�LGV�%%��E`��GDG$;7������F���OE9zue �/�HQ^_e�m# ܰ�R ���qr��� �-��_�x��q�U��@,p��4����j'�#��z�f�� ���-���FkG����y��]�0YJә�2�R��*�+���O�xM4��\qͼ�j8�Z#P�>���fl��H�b�+���u�4�BW*T1MZ���h"5��R�������$ZzS=��J�e��}�b�,�F��������MrA(���Sm��P�J��بl���:��I��:�Cb|�{�Wpղ`�t'x?.��L�T���Ww!Om0?�F��SEy7���誁d���;X���8�:dRM9�t�my)��1TY�X��0������:�q�L�{��.D��U����@�LV҇Mf3S���.���� xX��Za�,�k�t��z�3(�P����-{f�$�� �*�M�v+5M+f���i$$���R�ׇ�l?(�b�q��e���$���J�ӎ d���(l��$Yf��^F�CJq�(�a�kcj2�3�Z�ɚ�o9��J=@� [�4 O�����-R*�������2�����8%��i�q�i�=���f8�o\�d��1��s���'�#�O*_�NXD���*�:(.�7H���|�ZW��Sů��j�fD\�S���4DĊ;�HV���V NN��p8�������z�1�?�;�)Q���&(pgӱ�[`���Hj@�P��7���,��7��o}�Ò�A0h��x� ��>.�ti ������F�]*��\�F�G�F���s� �֔_��Z�%=5�U�ˆۊ3x�L�L���n�{>-q-�An$��Xh$��EX̳�`�su��Q�/�Jϗ ;��#�s���FJ -�m�<�N<w�\�J���X����ΈD����Z�)�%����y.��"V�ƌ��0��u�U&t�{}���J���y*Ӛ]�[�A��a�NˈP��*%$��]�ddB���wA3f�R�gM��1餫?�ėܯw�v�>x��d�M7y��%4i��@��]��3]Y߬P�y������"�nr��d����|�� $wx��h�)�?^�ÇN�$c!�{�j�I���˙�Mfk��N/sP�����nҁE �Ǵ����XS��5E���� �����@�!���ݐ$��j�;8�S����)�\���p��`���*�DF;�Zmw���@vew�E��VH��0��/,$��Wډ�.��^^�Υ��@�`��9�Ё�Ӕ�����W��U�a��T�>��9���$��ghF_�:��{�S�˸ �=mR)�;����ܔ�ɐ��B� = � �h@V��zt��D��>����~Z�yz���?��dejb��|��[��p�e-h!n�<�_{!�b�h;i��+61����ˢ��S�F�}���z����'�p3����xc�1��>���4@ulx��M��pi���k4�P�^F��Zb��g!��G��i�K3�{���79��CƼ��!�F�VM�����T��Ƃ*�:�\3�!ӂ�d��-8m��vLz^����S���A��N�G_��IC��tQ�z���H��n�tL��Y0L�0�"OB[y��',�}�k�����h��W���j�Bݮna�^�lA�.��3#�ݴk�m91g,R���P%w�+�_�����F�N��E$��~43���oܨ�2�j��g�?{�����ߎf�09܄ܧz1�M�!�/�>2 ��C�Z��������+�����og3<��q�Z�Q�Ze݊Dr:�=a���� ��'� 2z��|��-�{���=��b�El�L�j��r��)�Ra)�0����(/�D� ���"F_��W��Z���c(��Z�����04J ��v=��Y��A�� ����P�^J�`n]\�@H:�k"��B�a ��<�`�2�D��j�}�$��泫�L���t�0��"E0�OG��~�G� u@!����Ub�^ȍ��6D(Onc�Wr�5h<u�K�ɱ�Kdob�3Q�N��ǜ(��`�I⩧���3������}�������ɱ]�n�窖��Bj.gF���B�1�����I~ ���$j"�NM�2Y��2]Sh��2��1�`�z����DD���x������x���|$|���I�.����4�� R�`�2i@�\�l6��q���������z����},���i'�u��##E�e�{v���*d��� �FLEnl�A毆O��B�Fwo�3E��\���y�p#AJ��^��. W�1��ȑ�4D/�����?+�~`�� jM�-����ج�v����\��l����w=��� ���Gt���ڴ$���y UG�@u�V0�����H 9�Υ��B_C�r�S�uq��lj|�O¤b�k3u��y�O.���k��GW)����?�uho(awr��CC��-V=WC`E�d�~L�j�+�cI�Ԙ>��At�k�pb�F0TY���&|��ȱ�cR�4U�;��S���n� 0�^3�\����co:�U+�#B'�G~Ԥ1�� �'g_�H~�Z��Ѳ���?��v��*���#�׃~0��*�jy<��3bHd�d�� ��3 � ={����Ų\���v�"�Ծ$�p��+�6lH�mt,�|cRc�R˯�������+��R0 q�|n z�q��-���IR��Ku:��f⧙��h�sk �g�,���������ˤ����T�7c}"�^�ķp ``m�<,��ɖ���*��=M\_�� ����w����� ,r��&l���a���졻4V B �qr��ߪ^\���xp,{Y6^�O��R�� �<��@��b"dO�@�ǿ;U�m�u7�X>�Is��»�����2x�Ut8���u��Z�uQ��d0��syϭ2��U�|��@�"��)����+�iv��-�Or��8���\���Y�@�"�pS'��L~����E�c���Q" 3dP�<C�_�em��!�ù�md�O� sS����|-�&���6���;�#��>#�,���8_=H�E�a�2.������*�u6���Ң>/I�����s��_E �Lm��q���c*�����d\B�f�:n��vJ��p�4���*���mf���P��:�,�?�e�.s�����X�]%�+����o�?Ny�X!vE�|q�{'T�-P���d�R�s-4���Bl�"m����X��RWh���T� ��x��fN2��Naio>���7q��W�n&�D� �kKN��J~�=4|f��dc8v��BU�=!��1� �wN@��܀(~���.C�dz��8���$�༉6<-R� ���tg��{9 �5ks\�-�}S�>� �����v��z�� ��Ո.4�+_\?���ϘwA&����N�|}�K~u�>��{��h.�� O�~"\��5T|�E��"� �V��!SC���g�̾��5��-p�d�{�:�g��w�= (V�'of`�� �s�\��/�0��:/챾5�^�2��_mي2C�������\� ��V���o*���A�bN��l��N����E��x�G�Y���=�����tyk^�Ş�a�������oo 3F����֥Ps@��h�t삞�b|�� ̓ ���U���$r�,�j����i֍H}���G��H�S 6�*T��5p� ����\R����ӂ0�x��I�g+5�����X�d㲼��]q�P�������v&�0z�ͥ��G��͘�Rx��[�"$\���Q��'�{A5�sB�#M�ߘjV�|"N��́1�ƚ���C�j��iY_3����Cl�h).S�.���n?,u�o�! Oje�/Y�u��U)1&iۈ��!�� ���j��V�VV�sp�t��y���ƫ��af �����~�?'�kzG�ͺ��\暌��~����RLȅ��� �cck�B��/!1�E�e�"%_۴�\v�nA>dRm�S���T^�ȄZ �9㣏�. ���{��6�lItFp��jh� ^*��)]�R%O������A�\����uM?�I����'��f���+�v&� ����%"����&�I1 3��d�s���A�ܦ�������kx��o��k�����}�d[���oN71��_��2�O?d�WEn�p�H3�����~P� �Oٯ�E�ݰP�� �� �uB<ޙ*"р��|upz~68���'��&H� ���Xv@�v.lf�އ���2��6*���Q^h���$�w�#�;�@ �l��-|Y*�G2`�]~J+{�o׳L����c�j�R#4��"�eoO`���s����kFI%���}��k���Eܼ��@��2�=�|`���'B=�_V�k�i�������E�H���Pw���W����*R$X4�� #H0�Y%��v$j�rDx��j�;�ƤI�$<���J[C��3����Nʝ�OS�, ��B�e�,VGN�>�3��S}a�V��f��֓� :���|��4���9V|a�U�t��Л���IKs&�]�|�u��yӇ����{�A)���NwDl��'�~@H�3E��yy����ʹL��١m��m�?_��-u���e��`(HQ��UtT(.�x�)��%O�Qw&��'�Օ����:x�0����vg���x$D�\���M�ÎE�Zk�ކ�j&{5��دp[_��ے�z`�@�|$j�3 '�W�a�u'��_|U���ss���Q����y�)v���P��� ����k�>�TV�a�s.����E�8����M&�j�n���v��^���r�t8��� ���ŕ��ˀ� �����Aۖ|�D�l��'~Ta���!}Q�uz60M\�!�ʊ����c�C:s�«X��'`�;g�6-��'�{U�ҡ<7#��K�WZE�u��2�z?�����t�i��u�%�U(��C_H#1�������Do=l��7�o�oҙM��R;�g��4���\���S�U�rrr�t�O�i���IaqsYR ��uvO�.�W?�{�i�'|W��������l1Q>ބ�(�U&�o�j��W�5���*�U��P���A'��9�x�d�C�������H���2�I�u7Q���Po��P�@��R�"�p�:�"�C������u�D1S KL�5��p�?��10���%��+r� ��%6�#�Ry�ƅ���ą�����M"�Rq���/z�ڵ�� �C}Y����E� �C8�iGbCZ��5��I �$����VC���8�' )FH� H�z�_�[��d��v�6��Cc�|ܿ`�2��G�<��}��@�Z�c�!���i`��|u=[$)�En?����K��b�\w|?��ir��n�dg�G�D��h^�J���M�y��U� �Q_3B߸oW3�ǩ��6�~�/�[�S�YQ)�_����!a� �'��������.Zã�8E�+y?���r�����d�fY\���;�(�� �4+�/��ح����OnŪF�I�J*�q�����7��O�qy�(͐_��<$���4�x��Ak�u;�v��Ը��IŁjo�!�E?3��mh��r�{%�e��0�%�O���H�� /�a���&pu\Tu��o5pIt�?|d��^<��dQvB�:6s%��n 7*&���;��jRdD�Q L?w��1����,C�Č]^ �S�4�p2��uLU!�?4|��hL��bq��g�Ll�`�w�dR՜W�[�X4=慃� a�nh_n-7q�A�1�f^�'��{�/)��N.���� a_��ww�~U���^�gq��Y���6I�\η('��B���.��������mG�v�z$�S�� �� ;n�!��<n{_3.�Ois���!��C���:���P�|�V|W�F ?�!.�=i�W�Lh��o/���VD뛐���&����8N�+�lB���"�o\�B~��9��[�O�� �������b�ʞѻ��m��x�JGn��ư=(��_~�9��o�=�I���9�������U�z�N)r��<>���Ț�ż[6��BY��S���c��Ъv�S� .�J�e.��6�i����J�?"r���0�� ̵��=F��I3�-<�>*�`�{� ���� Q�Nd?�m�+G�\@t�����q��4�e$C�6V=�T���mw"Q��)����0��~|�*���j]�K��1�qWaS���Әu�f@g#5��Wj�5b5��s"f5��]�H��Ç�q�!������Az�#te�|qr��N��G|���:=:���K��᯦ӑ�ogV�?F�j��g�1.�Рf�4t;x�4 5�Dț����0���H�yڡ��ڝù/�d���\��a��O���H���N��T�=�2\�x[S��]�^�N����R�I�܁��2�d����Fd�\�� LP�=��Hօ�vB�5cX�g�����8τ%95"3��ۉC� �S31�7 )CH����y�������к����������x� �,��.m�*��VQc8�����^���EK��'U�$�?t�9���Y8���:�$?�,R�P��5�3'��U���v)�������v3��3�{3ډ�`yK�"��--M ��͕�o˾3�'�� >~Y|�v3�rѪ�u�#�w��%^��(�(�ۇ}E�8~(�:r�1i&�6�)$B�ѧ��lrė3���/P��&ѹy�4 D��c������+�`�²f�;����m ���S�{)�d�����[����;���NJ�ſ����,:/�w��v]��C��"O���me�"/�k7}{ۙ�D~d��8yc&�L�m�?��%�X��U���\?�1��Ņ�=�j�].�H`.�߂"�Q~��gW:�B��[i\���q��S�?8�@%B�i<��h�SR`>wé{ǡ��ȡ����;+H�q�!����"㦉�=�$�����"(�pU֤rύ�M��7����nd�}қ�c���4�D��AE�(�҄�[[2u�uA�A8b�Ww� �G��,�*���<��_�E�C�=��m���o���m�3۸��[��)�=v;�ܿ���e����� ����*��D�2�D�D����d������6�^̓�,�c��4oa�q��T��[9�Ө��[:/�r���XG�$��@c#�)C=X�ڛ��wU��&f��79?td�i֞4��Z�0�"��b�O�lS�(l� ��H���w{mBF7h�F�/��\�퐥�\�!�辣5���Zu\�����e�j�"����1v�Q�Ǝ����A`)^J�X�-;m�)�:ޏ!Nh�>�Q��g��px<7:�g�ޙ7[i�^����$��&;��mQT:;lzKِi�r'�n��)E�c�+m�[Q��:-��l�3w���f�h��h)���� ��_��6�L�<�"W��:ߧg/�����bj�BE�f���'8�KS���2�t�<�\iԁH�hA�#<�y��x�$�#��?=�w�v�6¹xK�b�3���E��I~������Z��T��<�����m-�H}~�����/gH���W���3��x�nw�y�ԉ�*U�u�X ����s$�ہ�b�:�Ȁ�0�\�AO��ɔG�GWL%��a/r.�����\�P;Ԛ�{� `��&y�����/uC�Z��(�yi�t">0�8/Pۣ�fG�}q�}5$�]�'��?���g�h��.k�|/�=�t;hQf������VU�C�B���g��K����ѐ慫H̍��3ƥ[��(�c��KQ�='�=B I��(ϱ���6���u�C�����fά��4x�3�U��Q�X`�!W��m�ڳ> �����k�W�qP�L��� $�q��aO?�8DiAb� ���h0���܊��Z��fB`x�as���K��l� GDh�Bg_���M��N��;G�.S�&��7c��l@��H�V�~ %0�T�~>.�! �zϼ���d�~�@/�5�2�c-� �V��h�Aev�;7]T��_]�FA��~��O� /o�SE�Fk�Cd�9KϘ�VX��-P����o�_�;FEM�5��[��F�-� �#5o�o��[B���.7-'|���Ni"�=[ȇ> �zՇf�g���x�'L �w��-T� �"��X��z��F_F# p��\�>V7�ch�Dp�/�@�r*�aQ�]裐3���i�+��n<XQ1���J-��=��b��Mw�V��F�����@ ��+�}��V�K�#�9F���I� <�9&}�SD�JT)�5�0諸��N[Z��l7�S�b�1��]J��� ��}/)sh�Ϩp �M�T4|]cFvA�1������7ds"�=n��|܃;$�1�w��l�>�+sK�\���F3x��(ɖCQƫ�c���e7?Fm��]�Fbd��62z�}��v��@?�l��E��dQ%�I�$�I-�6mwJ�j�x�����I�jg�a�T]KJ쐠������;���u Z�t;���ҙ��8~��\v:JU�颰�'/�x0+|��֖�!�:�u���$�+�ͨBش�χ�J��O�_[&K�ǽ�z�?�g��<d nq̎"7���Ppf/O�g�;�Q݇��`���LU���g�X��l�BpJH��% �)��|���J�1+�nk�q$Nﰅ�Y�K����y���Z֛e �h=a���L�nC���u`�&��U�Q8(�a�ࢿ�%�k&:������"����ZGF��=�IW���MU���?;2�R�|&��;fV�gR��B7w'h9%�#���d���S)uA���pԿ�����"~�g�)�3NوF6�����tg\h��wk�R�#F"��q���lV���B<jx��2;�.�<�}(U͕P9����D�$��g�/���� �O�����L�p�<�5��;vC�hx3�!ͮ�Q��a�<4I#�(���R� ���d Ҡf�T������4x�.[������ܶ������ō�-B5���;��0H5@�N��j�=��o�s� j&y�2�~薏��i��3��8�V�h;��� 㔤K���m�,���R2n����Mh�l���ܘ��Rt�"��ws�?�������BL?��'eyr-�R�%�f�\���/y'�FdK �I��؛�i�X'�Ѻ3��A�?+)�E�v�Rw(c<ZG�Z�punFЧ�V3W�C��*��U��D ��YYsJE �[G8T)�b ��k��4�|6�k\��s@��l��D F!�SZ�6+@��Ra^��mY���Ņ�jl�Q�w�=_��B_�XH��R�|֊�ӕt��Č�^l�%)@�~?z��%fh�չ=��@��P���|*����;�FGk���w��S!��' ���: I(KT��S��!jC�kx�R���Ia�UN�Bd���l<=``�����?*#j�Oηz�[?��i�m A����&��s!�?�8� ��xQ�l�O�6�ZD[�]ġX�a��WYk��t|���ꩋ����/�D�|��#���Hb.A9�A��ҫ��#�i��>���#�23{PT}a.R� ��0��1f*k��<b���gˑ#�=Q*�a�>�/#�S� 5���ه�{)~�����5�D>���ګ�XLz& ��Z�#hb�̢�*T$`ng2���Ĥ�G�I�i����t���j@2@�0�j�֊�j|�ߌ�J��V}��O*���Yu�o\� \� ��~�t]�씞o�^z_��{2!����P�ܷ�_ �r��i>ϻ���!�^�rq��g�Y��������b�B�&��Ds>e�`QSz��� nv�{7��� f=�{+ҳ���)��4���[m� �K9P4�;�G��b�;���X�3�7�`7CJ���Khj�HDh-rp��5�3#�5a��x� �v�&,_�>���������3���U9t�P>�hI�����6/=JU�a�P��Dn��!�;Ž5���4g}��_��Y�a�����/tA~�%��^�`Y$̞�&6��FS����c��������P�6Ġh��C$�(�t��%�eG��� ��V�7Tx��X��̯���:�I�&����bPn��@�_��|]�|�|�b��f �iE��5Í0��=���j�g�o7aK���i ��e*f��\�732g��n��-w��HM"��6�\�v4�:$R.Ύ��Hzƍ<:��{�w���Ŭ�x7V����6��`�����F����[y����7�EfQM��7㏳�}f�`=�㐟�`m�SdB� c��z��$茈��] �p��~U��a�wb&��J��i��a����h���a9ʑt�,�E���(V*f/Gm�F��Q�G� �"l8z��V��%��3���Q���@�Y���L�<��,?�θ��s*1Jec��=x�%��Q������gқD[���0�2�Fa� +�)�_�Ф3�TQU�����҃cZH�P�}쨤���@C�:���>sf[K��Bk�ٶr�� ��&B�:"�^����:����̓"�M���!��0*��tS2����0�s�҈*dI<u���<4����Z(��T�n�LĚ����y���:;pk������P4�[�tQ#�%�����KF�ᇄ �Ƕ�6�$f\�k(KS՞��LF/�xq<�)���9ߤ5��n2.R/$�[��!��Դ�1�����mu>�8U��N� �����;6^p� $� ��B�p��>(�3�>�K����.��2��ؠ>�MJ��J�1ږ�Ϲ�X�D<����P�Ո�Lء�qY��Lڴ�,�����HrzT�]�L�ݯ�ƞ��_Ҩ�]��l�`W,�o�� E�;��^*$̲< ?&De�Y�>^/���1D�":T7B�Q� ^xb7����ѵӈ�6�na \�L�9��7� �����lb։��,�:`�c=p}��\qj .W�����{�R�b!��I;/~��K�]bn��`�+� h��~lU���- ���]�L��ְH�4�a�%�` �A���1�6�?�Η��$�Amĭ���FKvӭ_�T)�����J��̀�Sv�O[�ʵG��a���̕�{��8/Y0�3�7p�_���vg�Y���г\.�AIg�l��5��Bg'��1_�=�&���p㣣�ɠ�3�ֺ {�خ��I �z�L�K�>s[����]~iؽ�Y���gҮ���:� 5��|wA�B9��p*G���CN{7���c� �]�?-x'�����g�%�a��S�0��ԾsN��?5:�ރ�:���@l�<�b�1���Ǡ���]�]����͓m���#v.ۉ��ھ��YU;�90u܇�K�m ��\Zu �}���� .8�ÐM����������'^�Y�/�Y�%�t�͙J5�<E��*bE�%�N�#j1]��hC�M�~A�1��ʃF}� 2QO��^��� L9ʝ�9��^:/�*2��l}��m���`�ս�wȆi ���K|k�"ھ���5����8�r��2͕���V�� ��D*�p)W�!�84�;��(*H� ۭ}DA4x/���@���ѡC�$�nv8lsL�����O���49��z�/�m2{�ת�g����c--QCc\�n$XCk<Sr�2|��'W;��Yʂkj��"V�O �}|}.�h��]���@�*����0���de;d+Y����tA�V��� {�O��T��L��M�VZ�}�j���%�큗�վo$� rZ&Np �D�����Wk�˒��Tt�LL��>*��Ν�m���G��R��n��5�� ,X��2�n ��d߆�O`���ӨV���fc ��N �d� #*^��� �����Dw��'n2^���,��FK���E :6��Ke"T:i��%G.����ܒ{?2m ��P��.�?G�%�<��E2gWJ��U� iӪ9~S���>#Y���T���¾i����:e�إ��������˙�>��ޡ3�/.�̯�.��|���:���D�F���S����+�p���kyx W$(֡ �~z�A��zF�K��FxW"͕��[��-�@�B�bO���Ґ��sa����+���������J�$��/*Oq���[�1?�wy�=Fi��2��Kc1Y<�b���GAZ2v�ۆG�1q��f�i`LT����5E��ǐ��+�������I��&���-%�:�Vf������O]��"���E\$�G9�UN`矣�t.���9�D���״��y��=��&Ǡ��x10��,h Bw���l��/�����2+��-�u�+d) �S��6�"�X�!�L��K�H�))��D�#����6�3�~�9V�M�>��sB�8 Gm�� �Mk��⇘톰��}��E%�����4�+������=��G�R�6�quQ��!�!�jH11�4�7n����,��ng�|-muܑr�\3s�K�$��7��b+d�Fd-y|��qo�랫B-�ά����x��u�7�����e�yՆ\�n�����V%������>G�F�hz|} �#�S��@���|���z�UM+��V�BI�o:�m��D���}��� r��@j�U��~�̆�"j����}i�$�����R��3�)j2ؘ@���\mz��<�(��S�bT}列=#����:�\8��r��E��%���IB�~�p��k�V�C��`�X�%0�QV��x��Z�ܾ�{��L6zn�˨�^B�51�܋ �jӄ�ߟ릝��Z7Yt����Msv*�:�t���4ł�Û�F�A�ZmT�M���NS���˹�x(���z�C�:-{�QK=-��a.��Z�v��ދ����rٛs��w6Do8l��u? K�q�;��I{� �A�l�oHR�:�Ӳ�*�Ϣ�u2s~Qg\G��$O0���]�ҍN��Q��9a��˜i*Dt�N ;�0wJ�ϻ����y��D2U%]��o�`�sP�Q�]�2�� �UEqa����靐���j'���i����ӧ4l��#�V��~�`|�� ��u��B �y'�5ă 8������Б�ę\�{DF��|��p���@��"�zޫo�cKnGy��!�� �.Ƞ����ag�pg@�]THQr!�S��|\:�oԤ���y�W�_tR���]��T�D5`���!i��T�qf��3���&��BC ���&�����G~�4��Ӆ��W��{qE%�S���2�� {�ib�� ��=�-��+�S*�>0��D~�)��*d��m��*{�)�B_7{G��Zok�6Ɛ�|���3�������f'�ds���\s�m;z�V�fe{�J�u��93X �*"���GY��k��Fp� F������X��C>.�%+�mЦ2�hE� ��`j�ē�*�ez���?�� ���I�1R��Ò�tȃ��"0�Y������R�S�:��^]�K��6�q�E��H�BB!K�z'3��GU|ؤMO!M�[�pkuLfݏ��~�C�|�MBV��D���!�>��\ ��y�c6�:����' �E.�I{ Y/��9��������Co��,�H.tj�����bU�, M}Ͳ-� �|�]O߲�J����(3��1��3�_k��F_��L�#Cr|�� S7G�!��M� ���;�yG�)���yE�<((���O"p�ey�~�]H1C-��=!�!m���9E�%����.b�b��ɘ����w@��2��F.n�^��ZԊiI#M�K��/���ɷ�\7HdExc2�I��P���5�@x�djH!��I�߿3(&�XC���6?J������5p n� ���nO�M�*O�\R��42T�����>�@����ƬQ��n�`L�,�7� �����C�1�Z��6�4f��&�kٱ&�9�5w@���ߋ7�"��-�g������Q�A9W���N��z?����u�@2�-&�$��mr*�d:�&�6�7�苾���ex��L5� ���Ζ��Mi ##H��Lӟv0��\�V�t���X��/T+�{ҵv�Gʝv�j1~/<9]�J����e��?4��:M7o6=xl��&�VBê�A_�h^Wxz:��4�a��щ�ly�uw��N� ���Q��b��ˆ6S�Neb��n�V[È`K���r%��]��1�$�O*.-��#� QD��'@N�嫩��BD��5���-8ݗI+ۊ�D�m=)�:��%�d�:�U0���;�t�Y:_*^-�G��ʅ��-c<���#?V����3B�1�#��Sҫq��@�������g>y�`��kG�Q�d�y�g�G����/���x�l���k�1���,�#6��q3��Z{&nq�*�ޅ�^Fb��pv���+hQ_��X��PX!%8�]|��s9!��%�3�Ex���!>����ȽU�4���������4�8�����Y#�pÖռc O�l�|�xg-��k2k����"w �C�J�v,g9u,F�~%��A^�n,���3��b�e����x:Q(\�J���3l� ���c��u9���=�Y� ��i7�O�mA�#^�+#5�F���I�R��1���-�H���!�j99�FXK4�Vε�Y��Lh��{!��V��=ؙKJ�t�}�^���d\��"̓\��e� M���+���];�]P̺�ɠ�v�\�װw�L]��w��<��� uDY I��V�b��"��I I�5�u~к�S-�`���qw��7Rdz �i��X���.��\\NupZ��ݾr?�|�d�/�"�5���t��6�Z�����7?*tŝ�>u�Eʙ����}_��,.���V_�_B�|���y�6s+�}�OD,��0����f�4���U�m�AT�)d�?9.fw��*)ax�[jB)���f��~JA�N���Pġ�j�����S���~�7�`<�5��cI�Gr���t��ݦr����0�tb�Z{�KuY(�S��P����nM}~� ?r�2���l�E�rڿ:���������պE����[��.�c 5d!��Ԣ���7���>.F�D���<� [iL�9#rq&3����gt.��HS"�ӌ'~���?�6LK��?o[E�p�^���eQ�6�D~m�Z�s���G0��b���h���#&��X�O�t�mLTl{t�����-�"���FQ�;�d���#��Dm����6�>��F��hrKNY ;�H�H�<����^p]Geܣ:��] ��ЪT���Ę[�c��O�A*]�Z�=�1���F��"�MR)�z($�o�]���W�x��4�`���_p�Ax&��D/�v����,�v������}�1R*C�w��,zu溃����/D)�~��n�z���| !]�PE�W8�֫������<�aЀK� 6#Y��h�Ν|�i� �F�l�f��h6!{)N@�2W�N#`���.%��E�G�m������-�.�"oD���Ў�; �^���c��Ep#%�K{�}ť.������J���&.�.�h絡q���>U�<��Ĥk�Ă��N �~�N��Y)}0��V���%�lh���N ǂ��4���[@M�m��OȾ��|~^5��/�y��t��+��}�لKb���1G~4x �#��&��Rk�E>FV����z]6��u��w�`�2��!����jke�l�bj�k���;}�U�jY���E^���Z|�e����dUW!��FC���dZ�#i�H+��h�}��P�^��[��l��s��\�'i��q�i��?�]??�܉� eN�}���e��������Np92Y]�f��ޭF�,s��fS4��C��Zi'm������:~����-���Q���P�/�Y���# Ow���C�Ya6��*�q��W��I����S?�����_�W@��J�� ���ʬ=<���3~N�^�ϭ�8�_�~�/R�]�L�)�HП����k;Z+�\O�j^G�Lu^�����ǰ3�GY�ȫ��p�ŋ*���!�m-�S�@�q|}��x�#�B�?��`�P�h�C�r�WվZ��bZx٥.2�9�8�Yz$��X��{�k�_?8 ����p��(������sV[h��@�]VNX�pJd!��tOmG;����XR�n�aS�<���l �Z=��D���dQ^41�.iDž�\�kB�Z$=ދ�����yi�RY^�M m��/@nDU���uo���Tj�o�� G��VE��Z��8!4�0i�E�<�Q�@�h):��r�[�d��pu>�ug ����\.������N@Gz�po�uGfw*�,P(@v�T���iN�)�|I �/����s�C �.�5�b;�w�O[�Pŧ#?����C�+�{��PBf��d1 � �p��!��H�:9n�.zN���Ur 7��%x �h.�$��5���ufl���qo�A��'��E�,>O��-,�yD�Ȕ�R��6%WO�s��xM�����Y��P��$��T!��B�#��[o!�����M�}g�$TZ<�0��*���Œ�Cp��:k���OG�a�`�ɣ���r��{�u���k���7]�M�hڵ���bT������ˮ�S��ق��Z�De?;- {�玌#�h�$�Xc�|�J��(� ���>q�3�݉<vT�m5��1V�� � ����F�}��bR���v!8!�-B���m�M`PQ�"縟�"VLb;]>`]���$��,R���D�T}�ڻ&�n��Y}]f0 �Լ�5�b���D�0�M��_��?�Gw�AxDY����{�~�,!7��n�*�3���0\' ���#�05F �/���:�2ڐi�_vD�^�aklp��nV��NS�m&����|A����yG6�����c�A���(���[ ��L��)��Mc'��g S>kmq�0�Lp;���7"y�����I�Vs{#/��w|R�$�"��6Z�z�������.d{!����;9��0�e�����v�(��{�l�Z��B?ƙI:��͟�BG�N]HѪ����N�!Ā�q�yo!/J�Y#�&��K��rc�g%o�R�&��J��<���H3&&f���'��kذ74��Vʲ�s|J,��nfxu�4tT!Y�h�.P�x�Ѣ�ܝ���L���*�̘�����)�pv]�X-|����� �t��&$("s\���g;�c���{��]<V%_Y�,��p<9��L[0F�]���CU5��照wT��#ǔ�0�y�7��Y�����p* b�`���z���g����-������PCځذ�4��?4A=���Rq0���g�{�4��O��1ͷ�g�a#�\��L�ܸ�ۣ�5��y�x�����u�_�aAJ��n0��N��W����v�X���`�[�Q�E��M�W��_��8�y�j��-�ZY���In�����f2���u��G>DS��A� �=���D ��2x�aֹU�߸�,嗨s�x�+~��� ]�l�w���r�Cf8k�>��^.1�wf�Z=Jm�)+�����;%�-�"�d�1�+�Ʒ��*l���he�ET�9�n��* ��@��Н��F<䶁�̏�����C$x"%��K�^��,m W}���4i�$��T�@!�:��K����-��<R��Hml�s@�^���Cc���~QW�iaz�i���[����-�ښr� <�9KR�ȕ�bU�� 1�t����P�}E? U��[EJK�%���hl�<�ZgV5s���x���뒴u���^&J��b�r� ��%��-���$�����\ V�$ԟ�^����횕��G�����G�>:ߐ�w�K�n���j&:{:��O��f|�{]���\`�սd�'�9�a�_�OY�B��-wT4��:��}���܂�L�|�I4HD'I�)*G$��Q�.K�R��6�����a;_���Z��ܢ�&�dH��]!�<]���ƀo�yݑI��js��C �9#sO�|r���)%h扑N5̚�mQ ����}����;��f�����8|��֤/-Ns�!e��r�ϫ��#?+�$�;��h$���VΡF�p�+�%��\��=���/'��H>�B�EVR!I����4A������Z��#������|"�<ý�X�FeQ����Wfr��Mvi]�s=]�L��c6��l�(��h#)VMo�iV���,/}^���2ք&��n�W/0j����e�7���7�����E����UȮ3;Ć�tv��x�0K��]����bx��ܒ�XUKpө�}����ϒ��@��O�U����WXM���UT�@q�!��]E?��7헹��,h=�̀&���=/VFi�,�@���?xt��du�bv��Jd�V6�\㳆A6�Ѩs.Cl�"(�u���t ;pj.j>�JfIn/(-�}9\�����-,k+ 4�9A���c��y��̐:f۲fU%�Ө�<o _c��keb&_GG�\\9I���Pl��r�h�s�ۄ����������'9])�2&���i��|�O��� �����^489NQ��e�!��C� ��"~��E�!`���K��'�j��J�c�щ#��3��+Ŗ��Yՠ�3^�Q���R�Q��>`��|J6L�#n��� jH����킻���#9u$b�5$�eSej�H�h�1&�k��z�i- ��K�0]a���?�gzB�*{�2O��7J�X���Ƶo�����xF`8'�T�9r��5�j��dc�T��,f��_���"�lj�t9G�*5�{{B~�y%����(��z4��4��U�4�8�\� Y��M�e�B_kyoKN�t�ϩ�G\�8�&JlMYD���5��T�~�5�J5r-n��ƽ ��DD��Kl!�K��2Τ�"n�i<����y��a8g{4p��}���nE�0O��D�\���τ�3��F%����S�H�Q��+R?IX+�^��:8�7p�A�r�=�`EW٠x����T���ou#���䔛�m��]���k�K�B`-�֟x5�/EZf&�n'���$�* ��%Ƥ |���e��P!Jl\�-c��:� �H�R�:)��`���L�Ny���r�!`^���Z�wHU�D��C/ 2W������{,I�ևN���{�6{�����A�S�6����VZׅ�J�d]����&�H!�ݙ�G�<��Is0&`�R��'~������D]ѵr±ɓ_y�q����FX�ҪG{�葖f�U�����>h\w�TvN����3��{]RH5���jF��=��gr��L}o��օ�k��j����?��H�v��U)p��.S�n��I�0��q�iX/zGB��kW���� ���l_�9]'i��T�<'6���$��Fϋ_�OPk����~Ə�.�1�Z�����;�M��QѴm��x����<J��M�¢:(LN������i^�~�F�XASf����S7.�SQ��=�ij�C�~�W{��E��[���<�e�fH�:\}����D��)˿�Uk!#�#z�Q��3����Җ�z��R�����?�k��a卍�����xVf��3Jg���K����@he�$D�Mg��,�p����c$�|�Bd�0��1��G#�ߖ�� �~��r���t1\du�����z�Z��>Z/6V��\�z%L��jz�kh�-*�[�����p�$��\�ۓS8bقR�~���ۻO�.0����u��y)�>2S��:��>��{h�m� �������s�V9^Ѽg�eQJ�A3)���"����� �46�&���]P��D�Э�y<G>d1Ѩz'�:0��5�]�'�8�$����0?�瞙B>��%E�*�:w��l"k!1�B���V%�5t��ٵ=�����"!�0=4g��ګ��Bs�ڊdI����9�5��}D汃ML_ /֏5�*O�`�Rfr�����E����r`��}�^85�*�Ļ�bJX��,�`6e� f�P�S`��`la��;�^KFj�'N.�8���JA�nY��,xS�e)3� )�b��S� [4��W��o$*y�~���W��v�G�"��Q��]I`� I�H�`��?yڮM,c�m�� �|[^�2(�(��_�brk��^n�9�I�c�Pvn�O�Ӛ:�{ߗǧ+m�[7S�<L����(L����7���S�Q��}!��1v:����f����'b�r��D]�'6�{�b���g��O�\�xB+�~��pL�L��h� ўL$9�h����'עZ4����78�[˖�O)��gT 5f��G�\� ˙���w��lP�x��͋��2~���.�NA�Ķ(.�'�/�iM����3Y��\��fd��ݳ�����P���)��a��d��rDpϧC��O�S^HTq)�� <������L��U!����VV3De�M�I{���G�m0>�2o�u-��!����$��Wɔ�%"����!ru�wL&t��k�j#o�ċ�$��tE,�T�#�I/(��գ�"�ƫ�>\���QŜ"�?��J�ǰ��IS�>5z#�=ˡи�����_SO3���Y,DHS�5�h}i�W �&�ޅ /�B�D�F�� .��v�w#�����{���E�Ϭ2Oe�島�pyI�9̎ы�<�l<+4T��²���U����Jղ���n�n^a5O�C5Br�͊�I ���1v0ρ�7�u�*�Ykb�G�K��gt�mx?'�Ȯ��^���|��4+�m�Z��6�!?�$KYf��X�T��{1�l1���ɊK�x � �#��Z2D���g� ����]��*yߗ�xk��T���}� �� ,���z2?-b������nu������^���P�'y�r\n}cYNB�5I��.4���N_�*2��p�Zpw�l��f 6�vQ\����4�4�2����z^��"j4O �W�F�ػL�[��ʡԯ��?�GYL�Aژ��T�U��X�������� 0_�4�����\�jH!*8 h�Lvw�`�� �~t�z���mWb�L��F_�"q�S*��5�ͼ)Ӳ[��s 球nE�#BFw(z�F������;��4\�C�/��1�I�,��}�Th04��os��n�l��h�GV5��,2�0�ÿ��U��5��R���{~��ձ�ķ��/�� �zl$R��G�0x�����c"�B�lIۅ����wd�¾�{�~� V�0�U����� NC<9,3��>�dx{BG~�����K���ܙ��a��r�c�QR���Zpк��u�7��i�*��~�:?%./���=X�t`����D��˔g&NpeԨ��pqW M�}Q)y A�|ڵA���������~p�k�68dt�>�[�P���9Ͱ�ÅyvB_�BFA�g�K���./J�kUpa8{�C�5Q����ju� /�@NL�$e?|�ٮ�'9^A��p�l�"�-�~#v� Q�P�^O3�lKye6K�*k�+T7VB���?i�"|�O���Cj�E���\��I����|A�1�A3 ���]�5�'�#]�죑��R����w~~z�#��$ r=�Fv낄�C��Zħ!�O�dON�4���/���4�A9� %sk��{*M6CA�]����A,�ɞ���n��Mnq%r�~�1M�l�'N[1��|�V�*k����)aU#٢���×ඖ��������]374��䏂e��7:� *Ֆ 1M�f:Rh�7¹�=o� �S~8��ر�4&5>��1���\\8�1!y"S��89�2��Ͽ�*�X��G4P^U�����rw�c ��c��||<� "���r��ziOʡ�?N��d����@�r둁a�� �/@)�:�~��������i�,�<>�Fl��7� ��ݧR��?b��8PM�z��F�6���f��Q&���W��Z_33n����zı?P^ ���^��Y-`�'kFI6ٺ2�d�5T�>�p�^��T��0�.QuB�&/�3f��ҟ� ��c�V@}��b�� ���є`N�Z6#�e�Ʌ��3�M�U�ڽAx�Ȱ� � ����F�'���fI�~K4��"���r���&�%�h����W���7f��~Z����G���~������/#�Q���dYf a���O�|�ze��N_�BA({QO�m�:����-�/S1n[5>��c9%Z�p1k����_Њ�V qµVy����_���v�#-U۽3<��n�4V�c�s[�@��l/�6)q=��i�+���T�$9�z��y �Gn���b4D��o�߷�1%�K(=v��Jhz��"+�j�(Ln{�f�D��Q�0"�GͧA�1���e���Y�.�=�?�Q��.K�Azɝ��q8IB-vT�M��x��ץ��E�LR #(��A&!�hM6R31��9�0]�� 浕�H`7����f���[����T��+;y����[O|l^_Hz����!�L|X>��t�gg�FQ�p�$�Dԃ��FU��猏���F j�8��1��j.����r0��+��@�gȤ�.�N/�G��k��3����G�Ҏ���U "-.��R0��A]0��+�;H�M�cѣ����U�x���D��PC�ř|V�ڌb���D���F��y!�{L&J�� �.���O�z����$��kN7��8��ı��� �$u�6�-�cw<�zp��R�^vv����>rW{��cGT$�bĭ��V���_�l�֩�H3�^�46�.اE��q5x t�:_e_��K3�x���D�ړP�1���hx��ة䆳��EyI7����RY��~(_��a�Q-2ȁbW�V��<XU��|; ��e��V���b)�<m�Q���/-�j�\.�:��v����k�%PȻ*?��c )]t+c']K�pu�I1�M���������k�d�D�g���J�{_5�9�ҳ�_��Vԭ�V���u?[���� J�o��`�]�P�P!��7ε�����k��J����{g����b�?�y-��H�zk.��_UȰ��Z`�Y����,_�T� Y#���d�ʇ�x2��{2j�^�Xe�́�f��K$��T�Lҋ��VNfw���>.Y#I���1D�'@$S�A$g|��8G�߹� o>Jp�R":����+@i]"}�v���UY|�L����k�Pk,b���I�8Yje�9��<�x�i$����1�[+y�kP}_�č(����2R��-#��-�j�הY�.��t.�G̷~М�x��V��2�z�B�}`�隟�Q~�t�ZD��+d����/�z�9.�(2���{��ʉTV<�� rR7΄[�4���D����:��X������2���Cf���e���chN>3`��ll��ͥ��D�B�����J̪Du+����%�3팏{i^p�gK�϶K��,zu���}��#�?�A��^�s�[���J�)�9\v�T�8�E⛵���ΟSl9ыmk�#Kw?�k�����z�`�a�i�\zי�Ax��b6��~�d7��F�(�p�@��?��@2��P�d���S��>0��3�HB]/Za��m���\����V�i���K�$��^�]NU�͟���D��E^���+�BSO��%��C��@n��s�Xx��EM�rnC+i�2��D�uf�\E��f��%{�a�sF&��^���$z���.�ݘ���P�of�;�*T®ᐢ�ȇ��g���@:2�rw/���6Wc_[P���q������.����3�k��E�� �S����B����$�s,�}�8���R.>�A��:�v�&˜�Sv��ϖ%K�� ݶ�-�����I 2Z���d�X�%Г�I��Ag�j�Ca���X'��7��d]�=�-���S��w�q�+���+ޗ�{QA��su�`63W �;g��l�E��g�K:,�>��8C���+Wﺟ�n�sLض�z?`(4:�ʎ4gff�Օxo��F��h=�v<�xs^.,pR�-�[H�چ�:z�z&���G����+��e� �]��M-@�~�"1�AB_ Hx��B���<�ƨ)�#��ے<���X�`!����Ɂ-��ǡ��P��aKѳ���#=�A[ln�T~F�6����9nr�R�K�sಝ�_�Vt��÷��g�7�vւG����x��o����<����$�IK�U�in �o斜>�g����F?I���A���j ��j�K�l�Cw�T��$렚�&� _hK�Z=z*��]�A҂��T|����k��#����.������*�7�.5�NB�RH� ��&�)17}&����-P[3:�����wqG��e�[.�kE��7{�pcvQ<�9o���nAÎ�-�|u��ְ���ky��U��p��I��B�ų���y�j3�������j쉃�^Dm��]��Ow������B�SD�t��[J�dC�|ڊ㒁�Z�t�}X�^Ne�J�/=M��@1dKl$�B��<�� rP3D����L�?��L�������#��c��#����Q��*Y�I��穕"P�үd� }>��� �s%�^�l7sl�E�,s�C �韵62�,QO}HH��?�M�\���(��H�ޓ��S`T��"�9�v&�R��̕Iy )w���g����5>�i&��[�/y� i�sl� a�;�%\�nG���/��鐰m;�+�t��^��w8��,[�X�a���U���n���\�[�<�eY��cV�9qFT�e}{*/�P�Lm�t���"Kq� ���������U��������KVa�6�t�-A��(Y:Δg��ed���W��'��,h�Q����A�|ts�A���]�;���;�x�a�6�!�f���.h7�vxo����Q�l<̚X����Vҥ��P-�N���̱Ic�1�1u��r�����/�Ё�����F���Gt.���45�r����Ճ�`�˿ ���Ks��+�/�t�ڛ���w�iV����k" 4��a@����LE���#U𠖏��f��$>�?x� �W=��M��o�k锸똢|���LM�(�Q�_=Ftb�7Ì�Dta���ޟ�"E�"a����2{��y�5�07i����}�����!�K�fX�*�O��O��zY�w٧��a�2Q��-'�{���ێ��7$s��sO!{T�zƂ��~�dυ�rએ��0��=�7C�\.;��8~2XB�HSh�De�XR��ϯ�9W��[��CC/1�[@�?y�E�̀QBJ�W�c�F�� �p�sfP�}�.��FK��ȱN�JNt�cοP��^ء�l@J�.�[�0>�I�Ac�N;��ޛ占��l�"o��`��ŝ�~���t1#���[К��`u �6:��r�XՏZ�%�%��U�tQ��W���kMGw+�pIR�r��0��_l��"\�֜����;�/҅uw����y���[/[�����r���=Yrq�]ucsUwk�v)!��1:x�1���=��S� �U47k '�3�ʅI`��e-�W��>�M��p��3l�M������ _��l����F�Ԙ_���mP�O@� �\���g�N!XB:��������Bz�t;\Y#9��o6�c���i�w��U��5��S2�z���.�l�u��G$���G�1���,Ҟ�M�UGn�(�_w�:�ۥ��fy�U�״$C�1���E���;̐��`l�+h��-:.�VΕ=K�N��D����}�ې�_i&�]B��[ ��2IF��"��P�-,3��s����������������w�47(�ײ��b}�]��X�� ɷK��_'9����i��>G@C��Ϭ1���f,�;b2ɼ�g�����',�H��7���Q�X��M��6��_����9�e����M��٫�) {��l��x�c�t^�Ŀ�$�f�g�4�`�${�`a�ۧ�&��'v�%�d#ş�cP�L���Ye[ئ%��ѯ�����;P��E��w4R��V�A��8��6~i(_)�{�5� b" ָNdL/����7<l�χg��.qU!�09��f�Բ�$41�v�^�ۅ�udko�ht����i���>�lٞ�%?A݆#�A�&$0�~���bd��I;�� #y0��s��b��p�9�A��H+�N���^ˣ�Չo�C���^_e�S�ʻ};��|�OG��YHV� ��۵Nm:\>���ݴ$ >�"�D.�m�S�_\�3\차�)�th/�."��֪9�=#p� 4Y)ʟ���HJ����+�>\O�e�i��8� tS�r�#�,�vSYaS�*���j����{?��ۏB0�W�%�rh�* k��{��� �L2ɯ���\�W��}u8AW��U2$�L7��H^��7�]_����+R,H%;���}�"�B�_@�ɚ���<01M���o�6H y��i�m}�'�~�z��*�s����1�_j�Apm�L�j���+�罌<<u_S��z��(�٫�v�Lz�G�q9�����V4����&(�~d�V�-[���;��G��Vd�زI[��9��p���rQϸUfU�*%efFh�$?!�3���"��0����K#�B�"�bʼnZm5���8_���&%�Ș*ʫ|�C���yba�H<��P�����%o�TO�U��X�LP�?2ri�0Wd�05��r5N1�m=I|Ү�ދ��R�N����VB��o��t@����N$����ERg2n �G�/W�6 W�yq�~��Ih uw²dY{w�{s���ӂ��?t\wd��V�Q�~Њ7Zf[�Z�`[�x �Li�Z������La���M�ګ�V,�5cf��eB����e����E���.<G�㔚D:V��8������t�I(֮��6�A���-@#��t=�Y��z�֕Ye�E�x�Ձ:Z^�xK�ӿ;x��s*��}'[p���������l���x"�7���)�G9|W3��~�h)%E�aS"�)�6-�0�pԍ\�:�c8L�&�[z���n�?�y!�(��}|�6���R��M�_�M��uĢ>�h��Y�gN`�Z���j�n�g�����ܚ(��;���V>c}��P��P����� :X����q�Z�x�ƶu� @�OI����h^?oOK��=U�O>(@{��i�+V�wB ���I�=qa�<Vt��(~V����3Xn��|�uu�����7%/p���b �J�oL�L�}��17�C���&{���������.Oj�/ T��v��� �uu�+�� {�R*m��1-�I���m�º?�+Х�i=/滟����ꪎv��}DFz����G~�K�Q���-�N �/�S<~�c�\��iE�[�u�=� $k��n�2�#γlMlG��_�Yu;~&��w1}tȩxEj�S��9�<YJ�(���e*��K�*q��G���g���0hV�hk&�K�P,�o��VT��Y]>�;�jqS�<뫖��"Opy���@s' L,�J��>�+�o� J�E�PY��b�ǶU� H�v����d�O�z��7�A%� C�B+����GN�� /ܫ�<m�=V� �垙�~��e�,���C��]m%N$be�˷^�j�8�@����)@9�hUX<�V�Dn�كz��R �J��rG�Fq|�F�Q�.���1�)�?��P�4hl]�D�Ǐ��6�<?z���m��ߍ�$�&4=&��c����&�z���)h�湫wZ���.�P���8��N9�����v��#Ő1�Ml@>�%'�����o��4��G)棞�m�T����̑�{�LT�G5�H�`] ,�������Y����u_c��,e-\����}����J�@3�<���GrҕK��M���-��j�� 94+����5�V禨U*�LdlU���>��A�μ��`˹f�c����ф���G�{g�@�ywن_Q[�^�3Z�~��%Ί���p�%�g6?���ܚ�<S��V;6���M*c��a�ڴ��w�b8���u���RZ�-a���L�w+����;��������Dc�{'Ǥ<ߡ,� ���w/�J�"��*�qv�x�w3�s��Jj� ʷ�^*Wjx�<��s�W���fZh�|��G�J"�lV�0��Qؚ�W��0�c�3zyI^*��I:�&�d*XV1.����N4G�V�hMOI�2���ĝ]4�M��t{�k�!���Q�O�'ފ;����>��%텃-�P�'L���\��Ц�sYo���nao�jS��U8��G������]�I�����v�)� w��E�`���V�bE�OZ�κ�\Rƀr��_0���Qg�����mnڱ锶W��������������ų��Ơ��,��^*gfS���3XU��M��Y�i��%o-=q�Y�a��+~dT3��`+BGw��?'�'c�s�*Y��d���V\[.�����U4h�Q�j���x`q������Et�%W����Ĺެ%���i:�"×��yn��'R}}�z ,]p3n���d��vɏB�Z�0��B����&�lv���NYI���^N�Dž����K�K�h�@�A`���t>Ho��a9�|~���t��W֞���c���q����P��H/�ݒ;�i�N���Y�s �]�%)p�Ƨ^�m��ͦ<K��F��c"��6a!�ڣw��:~�]�`�Yҭ�{ek��&A�ɴŨBo� ��:[�� d��#Ґ�S5'tXt���9�Q��B�x�YQ����'��e.�c�b��t�cGj�n�{sx�GN�� �r3�R�SG �B<y�� N�����"WFRO�4ƻ�`���Qee�ŝd�ω��ݱ1n��I��7MvcN�À���6r�@.d#(i�{���j2 ���Z\6����� ��%�B�H�1�A�� Ҥ�|\�SH9��j/����3�]��_?�M�"!�*��76�;Wּ�4ǥ���N �"�o9�>�i�V�Hu�'>���� ����2^�oG�/6�:Hxf�]I*�Cw}��eL�S�Yusk n&�`QR��BL��d�D�ZwHZ#��.[���<_��p_}�,�7T<�r�7,9o�-�jF?c)�M���*�#A��S5�w0e�1�Yve�u\��㑫��%�I^����Q��EK���}�p�'��%Q��S�|@,�SM�C�F�� 5�~U�G�QnЧH�[�q�@d_/yU�[��Pjw/*�W��)@�6���%-�ݹ�>tt���V;(�{�[�%! �PQnE��J̈́��4���S��� ,�5���>ٝ�b�Wr�z7ؘe�}U�tX=����!��Vo� L]���Tɲ7̤ ����i��Z�Aڦ|HI�T�\Wx���,����p�D�ݔ{������k1!��v\���Tw�DThw��3:���U�i�G�P�E���w1�7��ufN������}��f>�7 G����ݲ���Ts����v�V��E��k -Ō�Ψb� T-�u&�߯����Ѡu���D�sPQ���G<�8�Ǖ쭽���@�$q�Y�H��ɈU��&��u=׳WіJ�̲���eQ%�C��F�3tQ~���~�_��2_��3����J�!�����k�Bժ{ݷS�骇̡kYܧCT~Q�Ǵ>��֥X�A���_��z(���1��`���#��}��u�N�.ͥ��;������"�8�X�'nlt�fKt*�פtn�S�/=کԉ��gW�wV�qK�ϏDV0wg 7�[�&�z<��u�NQ� ��_���d�5>lJ;��\��^��P(��$���$���'�Ξ��^ef�vkB+���V��t�gc�m�*0B}��0�E����9��5i���0լLf�J]%���a� �b�mA� ��G��&�?6�+9��ٜ��E ��~�de�� �̟r�{^���Oy�P��E[&a�kiѪUa-ܐ���Mw�����(�}�����x�:�*^A�de� }��a��*�$��DX��v�9��88V�uZ�6�7x8Oߜd���Fd�NY�WѺG�/�n�w蟯,!�Rs�%��!m��m\���Wf4�#��l�U�z1�Y�j�mY�)��I^yd������2��ws$d��,� j�nJ�Oݗ3�=�����!�z��!���[�(TK��r=���^��1�O��Dqs��� 7 �S7�$~��{����U8!7�'���uL��=<�R!>� *p�>�C�Βv5��(��}�I�::`"ؘ�}l�W�p�/ CU+���q�[n�>O�IW�ib�o�P��� �\o�ɇ;��i6����cFm#�ᐶV���_���y߸��-DW�-��iv��Py�`p�?XaXCec�����SxG�e�#�Y }���E|�;�/� �UH�����p�o�!��<���=.ð]S��g�#�:6���3/���3<�L�be��ʚ�=�g�G��吶��^!6m��%Ч_Bz�W�pF]*�E�҄�ɐać�4�ia��g�a� p��$��㢠�܆���z')���M���-��(�G|��~���rf����ih�{�L{��Lϧ� �����+ʱ=(3�a����P�d������hi�Sh;������х��!����O�w$�ȬA�0�9tY-Dg%��U?�����6F�\��"y��;T��0e�#c�T�WЍ�O�uы%� P�@X;��>m�QX����[$��y���,�`�t�����G���b `Ͷ8�I<y��H���=�C^k��]�[��<`Rg���1�\�k>�;yB;)D���z�xe{�G[8�xu�:5�h}JZ�M��� �`u�.�CKж�3�8�Q���%��+b����;ÑN�M)_���=4 %�/�_��Úpd������{ַ�Ժ� ��O�Q� c����B�h�����2z P�����k�{�&��m7���I`J[��~��%���Z��!\b�.�{�� z{�C��~��� *Ԕ�Yp�s����)G-�/_K�g�+1����%�3!{�� qJU$��|x>5��nn��+s4}NE�T���aSȎ7��cqc�e��fc��L������tF��|�*�#�o�w)QM<&~cp5FNA���S�B��N����mV��wp`��`\����\ ��<�\ �1~�k�Q�Pu�Nx���h��6MǴE}�|���M�q f�yľ�R��I������G�JM���3��J��r���'����2���boWR�4!�����P��B�ױ���P�;bYǸZ��E^2ac�P�R�l DI����)�aB �J��6����K���ǧ\Y�;���j��l3��-U���X�T��߀�˕�l�B�f�etȝ���Kt���K�s͛r��#/Sf��J���xg\{�_��_�[_�d�^�T�:�B�5JV8�u���\Lp[)y�s���s:{�s°8щ�$��b1!}����U� ��"�3xK��+���%}t<�u�C#��dfZ���>`ˣ7P�~`5���@���D�irl��^]�c�-�Lh��A��4C���w���=�?/��q��x��'YN7 �^�5t7 jE�7���Ys�@#E�zsL)*M�2�9Ќ�D#e"��o��MءT������:��)�k|�2.ۨR�t��F� ����w�b|�O1�D4���L�yTqy6� �Q���[����������/�:M�3���S��iB/ާ��+�d�.Ӿ��}�W�4��m�+;��-��I�V��s�/dB����8I�X\�{����~^���|��;��?���>X<v`N�4`�9���{�Ç� TN��7JI���W��P]��:Hꂌ��bw�t��9�S4�#��S�mSz0 ��5��[���\$@��E}p�*p��mY�[����{�j��Sd6u_P ��}+9��&XL0GU�D#Ű��E��#��6`�s�l?���h"}����C���b��yxm:n�~���ԭD��>�z�/%�P��Bᷩt<a�ӮhS�@q4���c*z�ٱ�I�)�wPf1��l�J-r�=+����T������������� �3��M-ܰϷD��^3�| ��[�5�g���)@6�~qRE�F��dT�hQ ��7��Sql����t�m��+��8���L���6 :xڠ�����ؾb>�]e][���BRg��N�g;/���5�#�;�b2�]�9��2�p���]�/��|Y�2�t��'�D,wG���y��)����X �b�/wO�}�v��,nl$J�g�Ò-d���B�"P���JP~X!�f����:,�^S�p����(I�|"�#Nh�@�yLL�]ߣ6a2�f�Œ���|\��U��ӒW\��&�_�[hwWF��}Yin?3L���,�$�����VK`��Zg�)i!��'"e��H��:�,���F{_�h���*Yf�I�%��(���oh�<ٲ)s9)��M|E���O��H���hfg�@������mثhgt�:��u�l��!@�*V��E�i:�����f�Q3�����F�<�s��%Wޝ���N���>\^k7W�����ڴ�$QuԹ�j�y'�C���sw������k�+���e�����֩/(�^�S��\{�:I<��� Z4x�W7��h�.G)�.p�d:��A�)����%υ)gf�-��yE� ������*���~��W,G��̾4G��nG��Y����Bz�������FU�C�f�5�#H]=a<������<�g;3�9ʸ���R����\i�H��S��� �|�֙;EZ��>4�v�C���D�c��a`��_���[��Z~���]� �M��,젗1����Q_�}M8#�6�r{�-��ы��5����n5�ٹ�����l����z��@9�����+�<ϣ�̓�E�b9z̾�����5�[��Q��ܣ|�z��'n�g�h���ހ cEE���ַ=���� )�F�O@���;j�VpTEH]� ��(VV�kqK˅�@*x?�����Ø"1�q��3�,f �&V� ��~����|Ln�%h��@���)/ڨ&�� �m^c,�m���!�:-n4M9����_��J��u�-3���B��=��6E](�o�D�x+ĕ[Q�j"\��%!�o.2����j�'Y{g�CDл6�L2S=����0Q��Q�%��P��<�㌠O�6ߔÅ�D�p�lݧ�2#�� ������0l^��Y��[�R�J_�2�0��q���1�&a{�q+���q� �g�Y�i���Pr��W�Q/|��Ï׃�������Jg��<��ی��������LC/=��_0e�*S(��?������C�8��t\W������t�8�dI�?�v)aZ̅�OT7�;O�h$ْahB��M�. ��W��6����U�����p��]Ђf��p \> ��^�����k������\�< @;���u�����V�#X,�Tw"y���հ�}�:��O� i.�ء�(+����{��Jm��;G��o]���KH���V��㦵��2�2}�G慄�.�_�5#"`�����:�%�T�+z1���p�H�T> f��/yf�i5�B ���2c �Z�sMM�1J8�?��Mt�O/{*WJ���CI�1��/d�?1��W�;No��N�F�/[�<�#�̑Dh�I�p�u #S���/e�;�j����8�c��,Iyj�r���_�D��s�V������B��'�:'P��B��:��3Oq��=S�Xw��U�1#�h��8��Eh��+it����6x�)��c� 9E�:@��6��`����|�1� �j 2\�q�� S�Q�'��:؍Tl���%�L���b �o&mg�1�~8 s�jv�_F�8sɍ�-X�V��7�+�W�B!���^f5�wt���/�I/�ܖ�K��'�k2~��z���P�a.C�F��[-�£�^{��ƨLVss"M�6aGZW��0 �HL�~�E�Upũ���4�l-�\T��$�Ye^��Iھ���{� Rnl�Ny��෫s2�A�͠�m�H��$��R��K&�);B�10TDX���C��)��s�P���pS�]2�@P��]r�XrhG������qͰ� �`Q*od�ZeW�������Nᤖfñ��9���lE�o�[CY3�:�'�ai��Q��~T�F�J+~&�T��8�;ZH��3/���R�?ڶՒ�d��ЩL�*��`�%"��QgM�w�TAo�\H�j@� �m� ��0��lun5��0?{���,D+��!/d�6LX{�,-v:�R�v5!��U��A�84�L����b`�Ԛ��N�W��өCsn6ה����,��[��N�(�H�pjc�\�{��`!=a��åJ��3@Yk�� �i���J'�iM��ݥ�5��]���Jk2���IX�����T�������/>�s�F�u4 �6y��[�զ�����J5�!�pM����`�W��J�#�̸�$�`�mp��şcӸ�X����`�!�3�@i~�a�91��n`�(?3�8�uφ!���b(�E���2��%�t�.��H�Sӝ:��yĽ}!4�?�����*ǡ���J:Z(��+�(E����}�mLps|�����+��۸0u;x�Y8A�}��� ���}�FB���3Wy�2R�'_�1��/�A��gB����jGYw^DI��� �t�e�1n2�j ��kQL$��ly��!�r���u�9HH�=���Y�v��)9E-���z�J�"���A#��5[[̱S���,�x�����8�=V�C#)��t�A�ڨI�# ���"��p[;ɀ���d�Iy��-�E�l�:�gl\����Q�O�p���(gS�hM�Z��Ag�)jq�s�%��P�:B�6��ԥ^�hG�}��l���+S�}��G�m�B������_�ȸ7~����v��K3�@��с;�֖t�q��*�p(�8n�M�ʌֻzG���: �y�;�YzO�����`UDfP�<����؉�Ag����1�Bu+�kBi �z�@,����s���D&��w@����>L���~E��l�ӈ-m ݮÎK��7�"O\�E�PԫE�����1"��D�)!P�Ζ�M���*a���E����"���D �K��]�X�.��qX_- Ϙz�y�t�`,�s�'��k?x�Gw���Y��H^� �}31�F\��WA��$�.�������n6J�MY[plj�&�v,訑�0��\X9d�����t�(|�G���G��@�!�������w�}��qU&D#�<���J^��@ L�c�V<m���b��9�T~?���tP�;*�d,�g7�ŗ����g�v��� BղSQV?�p���� �k�����J�kZ|+�I�Q�$���F���N|��K{��M�)��3�� ��-.4����E�4����@�I,Wd)�2hB�b7����3m��̡�j�m�p� r��� �ޞ.i�J��C�E_%�ć�.O1�f��t*�R�a~�+X�x�%6W�6L�t��Ɠ��>�P���aL�n˶� <b�H]i��?\dG�r�g-���N���`/�J<�m�Ǿ@��.�&ɞ�20� ��p(�0=3�X|�w?AGE������� �z���8 f��tp��Ph��hf,4I�DP pw��3��e0MkcF��HMc�a�#?8��l��"+�� �"�=o;�><Q�>"S�w$��w��_��r.�y}�������w�}`J�Ki~�0�zRfd�\�!ydi�j@���Fz�*�W���mG�,�</�WDL�#�$���9����sg���!A���?-z2P:~r�z,�mkk�Q����� I= 1��p�5������@��K��zj<8�.\ڂ� ����0���F�IG�&�-����i+c'��3�{�����>Z�˸�|����E^#j�+kΨB}4!� �� n1m]�N��1�QU���wW�fx�R�)����8��>@��)F�k1se#�d�=��9�@s��orO*Łh�����������C�y�1+���9�^1V���p8� |C̲�m[,���M��X���a���b�a~�0�pC`*�p�c��"�<0O�z�]�� �<�"c�V7x�>v?3�t����S��:/�����2�0�?�s�ӄ��H�Pnp5=�p{�l�����ۖ��gKXUBf����� �֣�ݐ3�M%I8-�B� �~Ԝ���,�,G(��ڇl5�[�⋷�k��l#�<��d�ZA�� t��j����@�����s��^�)?�1n��Q����[�rph���O��7�=VY9��@�Z�G�џ(7���}Ф��H��mW3l]g虭� �� 0�H p�vԱ_�,U�pY�Ng�H�6*.�_�S��1�z��nd��i�ðap�� �Z�����E{���1�I�(��j]O�!�67H�r�T⽢�7�x�����+x�Vm2U��ۻ[����ה�+�Ӓ�d��+N�(X���K��Gww\���,)�|���nHER7f3>���F��T��@O�J�e�i�U��H��ga�C����u�Y�PdE� �n�YCI��ǰˢ�B[���B�W��S�)�ڨ{o�U|G�@�=�P��=��/�@X\_g��L�xw| ��ÿ4Z�1�C?v��X0���m"ϜȰ��Y[u�!�]U�'u�ڼA�u�m|��z�M[F�m���~B�FI���)!n �jOm�BEß7J_m#}�nM���j!��m���݉�L��c{u�N�� 0��7��Ԝ>N�߈��QI�Z�v�t44vʰCӴ���̊��$����r/���?}�u��;��Ӳ-����N��n�h*J���K]~R�N��"f=��6�;�<�i�}��J�EA��?(���c�.��&:�"��sF���w�aoCyv�(��AF��d���Z�H<��0��"� �yڬ�2���� �w�ۤ��v�s,�O/�����u�*��m �v���K�(D�H�fÀ� ����(*��i�X{�Vx�.g������|C������mT���ylt[��^� yD W��+X,���pL���O pw��,#H��1ҢS��>0G*�Ft�e�nm�1�/�FU�c�?�{#p�pn�����A��� �S�eҾ�m��=���z�O����0Mi�^͏��d��q�L�<�a�N5��yp>�ʽ#6�\��l��� �;��0#� ˡ7/2��`xGcQP��u�LQ����7%�/B�0R�[qPK�?�~7PR6�S`�å-Yu��e$��g����wQ�KBn�� om[l��4�r�F��Mr=�x� �?�$��S$�1��M���B�Q�(���L�ft�� سd�����\�4>�w�b{oL��K1|���֔|Y�� �V����T �~�a���0��EH݂=���J���֖�f����}���BC�3��7�����5,&�Mʖ�w�>`HglބB�����4lN6�}�b)�O���(,���Ar��O%���gDCI��� 8w��)y&O�t��F:[�D���b���|�I������):��0�I��v��ն[Ե�~��c�� �t�C�Jl���g�v*��u�e)Z4A�P):W�b����ȉ��]���t�^QVh����=�m�kZ�-����9.U�#��S&|V��j�;�z�Q�C~AK����,�cw|�_J�uVZ�$k��sȬ�-�Ћ�oĉ���(���K.�瓪�4?5�a������jhQ�<�xD�2��4VL�'~�u/����0�-�д�̴�&_$#2f��8$����w��[vI�ø�8�g� '�.�g�3v�=�m��p7G��@�f�N�&"�g1���cd�z��'N��t���@1�B�w,�D���mm8��JG�{e�I��^[�Y���δnh$��=�|��7����~?1-� ���X�D�%\��\A����*ؔ ��94}�~�%d4]d���+ϲ �R�ܲ���a�A8���#���7���!���K�n"�d��'H�X`c�xz��С�b���S�%K���E� o�o7��[dŔ��J,��Դ����Q��S�\�Ó�n.Uh@�J���Vb�5j\օ��W!k)⦆y 3W5����Y##�]��w��c_m�[��/�4�ꩱQ�z/�95��`�r;�}pBiK�b�\sA����P�K<ݹ@�%xBl�We� ' �.��y�ʬ+�n3��B��[zm�a؇���(>};ƥL�ޥ,���R�^?l��l���`4�dԶ�K�p�s�I����.�4�����t4��S��&OwM�/����}�#�Y-!�ғ�.N:z^i<5�>]V� 0��� ��e#���w�\���b�6��'/� �0�7 V�U�z��΄�[���qJj�a�ُiTe���Xo�#���8]r��GŃzqxL �8���2|��B��w�P�R�h�b�5]��t%�1��|q~;xbV=�(������8d�|����gӼb���t���z��Mp��>^p�@�!�$�G�A��yRM�t)���W?�3����ㄠ��|vrGl�� �uN-�#^N'�q���1C���n���&Q��Y��$�2A&V�.9�_�g�Md��Y��l�Y�����q��n����D�/\��HFyg��Na�NP���)��ʪ�|�6G�%���b�}����u�ߪ|PR];�J�<4ܳ�nA�f�9�wx�b���@�aŬ(��` �+/��z�/U��0�7��E[n����]E�����J� -�z����h��N&�m�ҍ|�C��*�ĊY�>�_�G���q�q.�b�3 /"kFt[��d����_�Ј�Uiz��B�aGS�Z;��a����!�<��i���3PN~Ů�Ο��֔�9��E\'�� ���]�a>ʉ�V-��>2v(��si��ۈ�!�� ��յ-B0��EZ(�U�"�7d�'�sM�=Y�˨���rɀ;`E��E�N�!�˜_s3-��+��M]�Q��vOΪ�n��r��?���{��;3�܇��_0*^N�ĕ�ߔ��+��nGRPǦgip�x�O~Z�k�1a�����l�-o�S����K�m�Q�J��9kc�����z)���Ug7�f�'�DKrQe`&C�U�Y�d��X[��.4�j�6�p��~r�F�ܯ�.t��'��٪�)� ���YĉcK��P[5�������%1�`6r�.^���ίd��&�Z�y��yy���/t�--�PԬ��7(�= � �n��C�xtp:�Pɜґ:}�f�I ��!%7onZ��}�ͪE�vaK2{D�O��Z!nmW�^�K�\8���7(܊~�Iu�ؤ��]R�)�:�?~$�;�n���[�"!�6c��2�]T����-3B]��GF8Ve_�����r�2�]_S�?3�\�w���Z(��zH�U�Y_�w��<@���{9���e���|a��%j�z�S��~�|mā>�ٞ<��;��%=��B��<���כ7<sт<�/Þ�Jh�W h̖J�������רO3�1X�PΈ�b�[b�$qY�[�H�� ,Q��R��{<�2���e<��@6�e�\o&t:h�M�Q/��P�6��qH�h���G�¬7���`���mjCR��Q�⋩[�|�g�N����8��0�ӳ#G�眾�R�Z�@-�2�V�<�0�a��:�\u@�������m@�K3��Ӟ�$t��N��Mk����O��a�s&��yj�k]K�N]�2y�dE��7���9�WK�u��N���T��t_�<��)�A�J����kN&�^\��g�2yx.I�i�jΗԺ|�^)� 3�\��hۼ�c���)י ��0�K@'�W�T*�!��a���E��O���@��S�&�pK�Y��m��%:nyq@r�p]]Uq1���w�{T)&"8�9Ѣ�w(I���Ʋ|�hzk�e�S��'�b�S͝�;�����Cqϑ.�a�)h��z�N��]�ˎrR'�e85�ФѲOL��)k{���f�sժ�bŬP�`�Q(icr{���^B4-]b���ϓ��r�QG��AW��'��pES<¿ד��?hSn ���}�E�)*�f ����ͳu�f*��g�TaW��9��]��1�9���a��.��wY��:�S%�O��vle�����n�0(�Y81�h"��CPiT��M�cKp4cI� �9��C� J`�Ze���/��/Pgz�?�."���§����n������w�u}6��5~_�r����� ��R:u)3Z����5u�����l>%��6�~i�|7�pH�m#ĉ����P&�� �2щ�a�>ƪ�Z���}�e���>]���!D��asl�|� &c�i$�4�&���Fu�.��n֖X��NZ�oĔl*����aDu��>2��$ �!�!�:�mj;���m}_�m�� T�uAR��)�Sĵ���J�=�VX:�h��������މ/��4�ܲ�#6��Շ��FP�W1�����;)�:��Z�E��o�+����j�[Kf��%V:q7�.VQ�F�g���2�ʇ�B����+T���;�wa;Z���]�ބ�P��ǙO��� ��z�_��0��q�A�1}|��>Tq`1m)lF�ȁ�P5�'-n����`tQ�� z��m��I��1��|��s� � ��0�h�FP!��h��;��%x�� �6��(b_ �zS*�0*���51`�C��~��P�y�9�� ���"E�3�{��ۀۚ��pXk��ll�� DF{w�Eȝw�9co�"����1���SL[]Y&g��%ܱ_8��1 �ǩvhw�'t���U�=�O�W���;<\# �X��;e��;���z/�y��m;��,�K�����~�c�[A�qa�Ştu�u`Mz1��'iS1��Bg���b�q|t�uW�F�y=�'�֦s����:(��x���r~TtP=��w� (�#�� ����cø��!��3�u�핋��2�:�2�l{�fA���� T=�r�C������"D3>��N7:����c��ˎ��׃����Ӯ���@����4=k��k��Q��ZJ��J7���f��Dsh�����ݖ�����D���G��S�-�0B�?9��;�m206�»�\%���eb~72�j/�۫�M-��Z�xI�n_��o_��ʠ���%�k�Q7rh�2֢\W�I[%�s���`�N��Rՙ�{0>�]&������6aK&������E,�r1��"�����w7��{�$5jp�"op)q���Z{݁p�).N��+��L�+y$P��A�Ͼv� b��x �C(�����CR=Cɟ6���9����)�%��`X,j�W�Bu�C�%λ>����X����b�;�c�U�w.���9��K}h�~��x��g&�'�:t�O�mRQ$Ed3�(�إ�f�?�a����(=���&X3a�aŕ��2��M"�"�t?^Ad�.$�B�e�&���١����'��KV�6,&�<�x���dJlr��6�U4��?87���)�@�� @�O���gA^�{����������L�'��-ˁ�i�<YADB��P��QF��&�ph:�s�},����Uo�V�$�/v���7�t�X�r�s��x?�1.�k��G�ٛ���P������ ]�}6 �Ь?�6\Oe�� 2�[�ry�j�x�Wz#�X���^�F��n�z9�]b��L��Y*��ξ�"��o*���/�@��:S�U�Z����"�Ɯ�Ϧ��A�Z��o l0�|��$������ޞ����gE�*��)� �|�$`���zX�v����-2����,IL#ڕ����!�� Ilg�jCB����s����u�X!Z�����tJu�B�ܞ�n�N�?z:���/.#T�:� ��c��I�v_�����h�����.��j/t�-"�s����!�<ji�G��)�w:��X���xG�˾`�i�Օ�Mz x�$�k��[aQ��[k�1�%�R0�EwA�z�V$9P�:M�ꡕ���[� ��X ��tlF�%}o�aĔ{���$���N3$�4r��@�Gth����nU�mx�7� ��U긛�%m�0ȹ_�FT�]��%f�DѶ^���~9Z7�b>��c�ީ�1�1������A.Z(���t���y��i|2��s���^���a W�P}/��2b�^�¬�6<�j~�2�~�/iⓐėte��A��_�\*��#�#�+tV��>�����n����i����rpY��4ѐR��#m��Ժ�"c�¿2��s�J�V��|�����,Sz6G�ka�!l � ��������^�Xښ�I�-���;p2����O#e��K�M��(�Lc�� ���}C�J��i�}�/�ND�����zP�C�d,���6/8�Y����R�u$X��x�~I�-� %0�!XbԠ�Q�K�d!x$�a��+�ʞ�\�� � gZN@9�߱���qY[z[%>�0���@B?w�֚��aW�x�m���hP�����+s���=D��p̕���Jg N���N��f���/���R���z�d�N0�?;l�mu��_&:���sEz��3�/�����8�3�N���|&��"���}T�`�u��[�01��o"��{B���c��^A�U�F�3�瘓��괠���|��E6�@g�D�i;[�n;W0�X_۩n(��y�Uf���\�"��8����x;ʼc�6��5�ٍ��H/ӡ׆�<Ud$�[���sK�94���Z�]E�O�f��*q�'[#��Y���7�iE��,�EU�A���k5��w<�P�E2�kG�_���rn3�r�s�>�fEuYb,��z�����z������.y�jP��.�������U��ayj�; 'w��qF��#Bf�3�����@Z�n���W -Ug���$ hV�*�~^/�+c0,}�o.�y�,�p`��j}rI�.� i_L$6�|��va'͘�U�?��a ��i�z�w��c�z!v�/I��@K] ����r����s@��-�t�i�"�%�>V)y��(��*�v�Pە9j�L�A��.ّЖ��8J7�i]0�1B< b�b&A��]�q�*o׆ ���t����w���EK�Bu�[�5>l�4=�j�3M+!���|�B��?��.j��k���lyV�ƿ^E������c� "X��u!p�R��ٵ�����45��2��Rґ� x��G}���'Tu�S¥=9���}� ��-���a,p�)ˌ��g�J&���\�����^1A��;i�w���WB��`�o��|VG�[�pߴ���w��3�ŭ0��\AP�Q�T14�l-�to��k�T<���� ����p�SVH�"mG�ҢcX���9_g�����3z�2�9\�v�g�bi417g9济�?�%}_K���ꀩ�j�����=Fj~������D;�_����T&D���ΌL������.EP0.�� ��&��K�_5�.;�4ĝ��(��6�y��!$1L��"Z}���AX>�-Bx��<���S�J;�x\YF�� #���*MKU���om)+ ��L�|B���g��o�M9�l�i ] e=^/�1�$�+[����Ĝ� ?�P�&��5�� �eb��9C�8��n)+:vi�Α�AG=�����E��Qp3��"�L�3RIY�o:#�Uat�L� ��T��'����b�M@�� uVO1E�WK��|�s�b���)�I0�ôb�v���M9Ϥ����(���r���,�?���mޓ<��=��}Ie����\���+*PV�TY5�q�_iK�,\3i,�`��$��g�{�.d�y���<pۢ�!u�"�H.eY����zo�A��SF҂��)@Aq�bˊ�J�~Յ���( ��Mk�Y��YL�����b�|�BJc��5�Iq��"�1Xl� f=��>���w�?F)N1�~N�`t�V&�#�Y�r>ڒ����@|����q��:pk���e���3���zFNb��Dž2:vmڠ!�E�,1���%�r5&R Yr��DnÆn������C�u��=FץC��2t�x�"~�8O<�Ez#�/4@#�a�4�j�u��o���.���h*i(uu����*���M{��Z�M�\��]N�LJ� ���3Om0�g�]�5ď��!)�j{#�k�/C]٠M���p�)֚�̏ �W��g��%�|����؇z���^����KqŻLXO�H� p�p���u�k��x������m2^ +��� �5D�+Y�-����O�v7[�G�u:C�����Y9c�m���)�%���f���.�V�sP�ϛ1w�<�mdgO'� ��,�f]����G���/Xh����+L>�e�[�˖�x(:�J\�������a��3t�$#��QQHW���A�,���_�Cx���� '���p�>������9�m�w�,��.�/�S\fx0�$z<���|���D)I+:�e�<b?�u"Q�'pI� #�l<=��n4�G8a5ԉ豲��Biɜ�#H�pD*���, qѢ��<A�g�'y�t����w��dM�9����J�Z,P*����K�9� %>�t@5u�xM`~CA�ō1�G�M={��=�\���|�6&�;�jb^���ݩG'��4�pũ��p��jcW�����p�oXq6�P���+Q��g�d�&&��V��j�aT� �k�yrD\H���h��2 ������ɱt{1��J��Qcx���d�S���.OM靠�c)�;��E����!���㬭�)=��2��Bo)݅C�C�� �:��v�_�vx��ۘg��zf���}������K͑X�w}o��vä�|�4���Wލb-���8�D��@ �S�w�\�E���H@����R3���tQ�rq�ߧ�;*qg@*yy/Oߢ]7�8�*m�;���3ԙ2��U|�}L����=v�\)s�<�#��y� �7��[� K�`ߠ�Z�K)��-�-sJz?�6if��"l1�xh}<���'V�.�4�#o�5I��v��6�瀯��7�\a�'�T��s��g�%x��R�D���I�3�BIe��C��%P�"�(R�RqĴ'f��a?�kd��i�:�(��T1�eN��,��t�Y�a���U�f�+��z�12��m5K�a�)=��d�O>���SƉGH�X ?5,m���M�-�-�Ձ��E��r%�G�"m���c6_v��vO��S�Αo���S�GA���6'/������@cL�-|ț���Q�tR�8N�uV :���_�� 8�߾Zs��u f�jQ�(?T��$&Q{~V\���~��k��ΐsGl�2�j���m���0�J���Z�m2��?V*�wm���Z�ĞDX���������X��3��[0�3'��}c��:�m>�~Ck���M����Y�C���ԕm�2�;u�f�G���N�_t�:���%O�;�&��^��NU�5���� �_O��L%�W�4E}_�H���~�9i#Rټ*��кv��1پ/;��0���й�5;��.Jq�Gd�c8,}L�j�ɰLx�bA��묽*y�u�'� �3c�ӿ�l�{���Nl�Q 1�r2�2��Bo�A��W�'���g�x��.��r�V�ߌ�� [�?QCr]�/m��P 䫉Џ����s~������A ��1��f��]�N��>%:g��r�� �-&��x�dn��BVY�7��Gi�S�'P�Ơ�n��[&��/�Y�VD<�8�iU;?~;���G�c����>1�/{�wNlP�|���͊�a�|[�G�FeB%��ڬuTP5����� M�q����֗"�ۖ30���STu�؝�ʳ��1��b�7������T1^H��776<4R����q���B������������he�؉�JTI1���R�fh�ۜr�4U1�f2h����3���GO� �=��+� f�0aMF�[��@G�1s�7Ƌ1w`��HGZQ��v���_C�����y��ҁxO�P�F����Gڿ<w�|����ht�d��Ь�Pb���bC2��%TeF+UGuG�e�ׁ�Y��(��eV����b�����,��O��Qj��JY?"��p���3:D���VJ�>�m�9�<4�5r��I�9$�F�����h\���$�g��|L|)�.7�S���j��E<� `�]��qe�Y��td�!��k�5ԥt�32�0͵}$��:Hp�ot��y���k(f��H�G�n��vn���-� =�"1���\�a-���bZ����Ҥ�I��S�)zh�(+�dt�.�}��Ԧ��y�0�TS�4�Fa*��͎�m���D���1�T�%v:�����A�9��`�w s17eƣP�G��t�_8*��.ă�ֆ�2��K�F�[P�>C�@�]�[�"�E"�f�2�Y�V��}��6�}�Ԋ]AB��fiI4 �S r�w�C~G��δ|z<�9 �="�~ś�8�=�Ν�����cdk��E>~ o��!3�ro 66���N��!� �*q��k5@�vu:�LZ��,u�B���k�%��/�����וVX��l�x�;��O�����إ� (u��4�,Fn��Iuq"�_� )pӣ0�h^!1Ij�������z�2��M����3�.�5���&�[�z^D;�e��!ۧ��GH�;�_F(���nא�#�w;��L8%W�%C��ʝ����<�JL;`; ��ŗ��� ݗLg@m6��2'X��(�e�n��X�s��4^@b_�Ij"\�&�������L�V����ǔ�J�%�����|��gk��Gc�_�U�b�,Ϸz6��N�����ž��>�%�E�����Xyh}����=)���L�������������<8��� �EZ )��<����|������8�\��~~��#v���H���9��z�G!�r��}�qcxD�l��ML���aa�m�����q�.�ee�~G!�1��� ��O.A���ľq��n*�����^�Jy�(rHK��;�f#A B�<)�qF�{��*�h�g�����(4��VZWr�*KQ�j�?�(B�ܪ��+�h�&p��(�c��2��.*��H�߱%�d�[��������~���w�;[c�4�4UI���wC=�t ?��r�v���za�3V�^o����O�U�v0���n�.2�6E^�Z���l_�5�,�h�ԚR4/�m������� �r�|�MX��2$<V�U�P6g12P`���(XכC]A�Y��`��t�����*�6H�aQ�Zi�٧�-8ߜ�1��pg�g'���iX8��@!�z��ۤD���z9.-Sm hXf�l���U%2����=�irrʤ3�N@Nh�a9e`2��~c�!��@W^��K�N"���r���y!�.�����rt9�.�?���i]��E�z�#Z��S�WWKY�F��� ��3_R��a���vb�l����O�?4�$�Hy#�0�mo�=}��A q�f;�C�m�KJ������r?)��=i�y�gS��%d�.x� �s�OA�A�N�+ֆ�F\�#|�o�� ����<r�<N����ht��T �U�tԤ�Zx :J��r�Fd���� ��(' n�X����禾�-gC�x�]>f��M?�ny�̨�0jv��ϲ�Qy�����Y#6δ����Pݞ�S��IFS�T�Z��b�y2&܂#�R��u���m� m��dN��:sW�o��d�G?��qz �#]�f����)�3����*���ӈ��ּ'u�Լ�}�:�- �l��+Ʌ���m8��u4�N�W����6����u�U������V�so�����K���~qm�����9ZR�f�HY���n�O���ě�xxvO��g�9�+��Cn�l>K8�`��Jry`9���5�ɚ�8��h}�wN�?q(�{�>���yi�S��4>��yB��jQ\��U�(�[��~O1 xq է쇵�ѧ���cI����.։��#1�U�����kQ��ȘD���M0�s������s35.0��'Wd{��Ь�Yii=8LY�[l����}) �B57��*��r�|�<UG���h����7Y{��=��}o ?±&!z{}�Ⱦ���+�lzqa��`��SS��N����qqtś$hn�tW��v�8a��I�^�-�k����gF�oM�ld;$�P�%1�m�-w 3<0�W$�P�M�5,���L�!r�Īp��kF%��r5᧑l$� x]A���*�g���D��^��Y�j���\��.�s�;F�����{����׀N��6��n���ݎ���f�I�4�!���BE6�4V�[�h��|2�h�d�y�X~�>v-;.0><��$'7%���F��g-N���p3N��nJ�����Am�:j#t,��r�,S��Z=����h��N�y5}wG5���9NY��.��(�Kf >�kr��ǰv�D��!}A������L����+��E)&�pq�F�V�����RK��B�l,�g�2�x샇"؆+�ȩy�.��+�W�E����0�_����K)�Ÿ�f�t��U�n���/�l$msي��ۄ��z��i��rp�3ۄx��L2�bp�I���8�@hS�ƭ���g� 7�`i3ۂ���w�SZ�� �p9�S�V��n_P�vb�K~� F�r5ƥ����X��\�٣�'�h�A̴��p�MTk�)�@�(�����]��d>}؈�ש^c�x8/����vPt�[��E��!�, ��R��M^�~gˌ ̠?r2�R<@��d�˫p�F��d�8��)����d�56�ܱ���5hDO���'N�)Ul6!/"�캠}�/ܬ�&���"H��^��h?���q�������)�$�2��I���o�WI~� jZ?����O�ė\�������c�-���T*�2�~���>�$�� �'6$s {R;��mx5�q����qH��t�]�(ް5�N�> Ɠe�]�2y��uHl��sC �S�uz��1%HO_bx$+�YAϰ:�E�8��v3��yhP����� �d��%v��:G� 5"��pv6t���"1�Tk���_.��wH���EG���o+ݢ�m\2�5��V)�MJ�{Ưq7���e_+��m�rhm�H�9���� ��i`�����,�hF3���8�4��bXn@��]���[��1K����G�i݂�z+�`�업7 ��4�B86�EO'Ӫc�}���;�4���3��t/f��G@�5��!�?�.C��m>�����l��J��Y��l�$:��;�8d\G{x�( {��8��(1�Ex�z��C���[|�y�>a��H�"kz076>Z%�8�%�(��Y[Dp� x���Z�� j�_@�Ǻ�7/6��T�`�OP��6����O��Y���@���X�y^x�|�{�>���gy��8ښ-w�Xu�b��8K�^�Z����R���-��F�\��H�/����@\���D���E�z1?�� ܕ��&u�@ē�o}�3~N���GH�T��Z��,���S����ń:R�mx�q�C�l�=���������n��:�.��mf��{w�jc*�����ɹ�%>2ـWM��b;V�����=�*Hz:�����g[��-&ëo۽�Hbb#��j8�l���A�"V���{`I�ª�2���UNJ�`�Zx��7 ��#��5�DV���,���~�_x�q�M�t��Ǡ�G�P5�z��"�]��j͠�/=煬r_�,�40A����/Ruk��Im��30�5�Н���X�T_ԝ��x����&��W29:��"����,��Mlq_$SL��|����>�=�ߥ]Y"e����E�C�1�'�<ø���}��3�B�D��"�Ts\��4TN��x\oW�� ��7����� z��8fBof�c>�,�B����jV`���f�2U���3<H����n�W6�q���c��E=֑�\����@��x#}t�^%�^��(��-����xT�d�a�!�,��}s&�c�z$���"4䀤��:���%(/�9DO�ae£ʭ��sB&��ޱ�J�mO ޟ0+:��F�k�@ [?Z��**R�Xg���ut��$�,A�[SƵ�@ιf3#�pތ��ܮ�z�c��=�+|��>��LE�6�{�A#���a)�#A�'�J��<�C�_�=�b�y\��&�ā7�7H�2����֊�b���S�Xq���[�kԏy%�EĴ���#є՚(�A�0K8��`_x�׆#�s֢.�R�-E�*�h��k��s8b<��$~�O���:W��s�@Az����x_|�dd2��R��!�9t�s�$�n����2�wNa�)9}�A��H�j��yj��89�<ư����z`�*��{��_���3��R,S+|�RR��4T�%I�H��6�����z�MLڧ0+v��`�dF6����nt�q���o�ҝ$G t ^n��q7D#��qv. _�2y�;� DF��c,I�=���������9��>w�_��t��Y��T�$�=�"� �����n8��ڌ�R�{V�[P�<�����������-�j1�����Zp��Kc�ֺ�Zp$�\(�&�` gE-� �DTl�}O\J���)i�j���U�29PFCl���4��al\/����Ӛ-�C���Z)�G%����3%�4�"5�'�߈�0 ����m:cQ�δ���?-䷦+b�IO�En:�� "���]��O�0�X������}z��%�DL�y�̢��x��F7�ua�ȱ��`�7F?C�?����r�y��+�r�9����D>�l�Y5U��Eb���Go\X��M{P0��*�$�@��;�Ѡ�3I��gR1,s:LL�,d�nѸ2��B�\ZJ�|���U� ���f3u�j#C`ɀ=`쵛�R W�ҙ���i��y��%�cz��w�J��-�D#3�`�Q6Od�w��7�Zρ����T��{�3�}�A����#n(��"`� G�:���y��Uٯ�0B��XP�@X��auH��j�Fk���٭�^��ޏ��=�4�87���� �J#�/�=(�#��J��� �=>g_�'���?�ˇĀ���).F�A�@O�Q�P��{��͢S�C$� ��+������B4Ş��V�?k�QtqZ�줝:,�W��8��$\��s���]�H�5�w` ꇈ��9���L^ A�-6ִަ�8�H ���/J2�eNr��3�[Yu�\���-נ���ƛ�1�\+Wu���X�HX�)�����+h�݉}�w-���?w�߱�U���C���Ŗb;�F`�1�q����XA�c�k�#r���V����:�6Ix�댐���>E}M�-������G�t���Ӱ���k�o&����[�6-��֭j�\a �� I�C��"�����K�>��v�d��fʐO�_�f���ϙ 'n[�C��#b%T�I�)Ӝo���*_=���5X�and�&ٮZ~�A1o���[�]�r��r�:xL�$��, � �|�L8f�V�W�S���q�d)��A;m>8s�*L�� ������[�X�ƅ�/{�<�+S!e�� t�k%]� � &q^����8��ܘ��j�[Z�ގ�s鑔�'X�Ѣ��F�xZ��~C�����^C>4z��'�RdŶ����$cSsr�/+�����,�����oϽ�*�D-�n��r�D�E3Y�e�(���\^��6݊���Q���_�(���ehrq��h�=�1)u���o��ϒ�"#�J�I]�sE��C�pp��b`���v�B��������5�_;�"İwo��t��ǗK1{�\h�j�2B�u����BOl �9���&�*n��A�0؎${�@���u6�\�F(p�K�<b����H�O �/LO�4��{�s]����M�X5*Z���]lɓ�#�C��ὒ�B�Q�J��"n��x�ܑt�������aה���b�.�ԉyĆ>��p���7|�9&ݣ5B,ϳB�Gg,�{�]�M}�iA��HS�)�B�`ҹ��Z5��"~���v�)����%&4�Q�Љ��\}0�# 9��e�L�_� ��M[Fx��^��/��lY݆��:�2�` 7S��n�Z�d���h[�m6-τ��o��H��^(w�Ʈ�. )��d��n/�F��j��B^4��iaە��w��.����uö�e��J)EQ��#N��`:�;�'�F�,���$���\��́N��L�'5`�@�fa?�G5[�)a���Ly��O��'��^�:�6���z�Âz�V�;vc�0��'@_���K�F���[,s ��jڸ_�*� �\\9�7��a�Fش���s��$�T+�{�G�>B��5 zT5���N~Xz�ŋx��m s�ÛugH ���$^��3�az�����E��-�������b�9��ĥ\����W�;4�g��C�)K�e�Vo~�O��x�U�J��;_�VCL�Ps�mI��� ����O�*`����D��)tf�04�����/�1�C�x<v��7�v�F���tҢƄXP0q9I�,y��)ޒ�-ß8٘@F���X�4T���k��b���C�բ?I d仢P3�*�I\�T��yY�*�j��=Q���<{V�`�@C!�Rb^���}� �ޚhK9�`��"1�����@��+pQd�͞u�κS����X`�һ��"N#�5^R�!g{�c����PZ�qȬ >p�Y&�rIN�]�ZUm��1�\xrL�+�%zZ�3��!l,OJ��x��Z0R9ʈ|&f��d�w� 0�cM��C�`��fG��N�� s�[4z,�ai���0kQ�m�Z[U�*.6��p���Z8���US��[z��V+�و78��p'A�1�Y���U`��8}�y��ˌx��[#I� ��J����ar��7U}�B��p�=��c���XBp�㧸�w�M�fӥ!xA(�{5w�i\�-�3��j:�ã���Y��Í�Ӫ��6���ҏQ���?YU�9?�#�?����{[{GD6y,C����R?~������7�J��m��e�Y�z-�I�6��՟��2ߧL�3Q�h���X?�}"��-`�[w�u���W��R �,'*����e�'b�9/�'�t�Z'�3�gQ��ѵo�x����!EffLQ4��V.� ͷ�D5X�}�:�ᙧ~ǯ>���Lk�Osޖ��|� ~��Ō�� )*_�Tě�^��i�s�|�?���T?o��gPn�Z�L���\�T�w6*�,��1��S=��O7oÔ�ľ�� ���; ɟ�3�x��V-�~M���^^Dz!0v/��������$F �����<䔖{o�x���5!��A1�4=O��W�[��dh��(���:V�"~}�}x!YĩЙS�A�g��w�Q���ƥ^�&�砈��%���î,���c���r�_Ɩ;�'�/'��k�kЃ҃2&˄�=Q�}!�������#��v�Z��c��Q#���ݲT�q�Ѿ��1?�B2�NUB>���N�R.���b����ݮ�?�Mj�dڧư��åG����J������7k�Ƈ�cmf�zV�1>LA70d�Ԓ�,D�g���~?�Z���!�?s����xz�)�����w�SJ<�2��զ�b�����:�]���J���Ӌ��/���~j�I��61z���C�L<��d���H��� ��-��+��*f��iZr����_k�>��* �Q^A&~~r�`�,�Z�X����"_:�-M^_9v�r�=�B��@h�s8��6�R������#Y?�eguO*Vy��z��C��N{�=�aY��P(�v������8�鐨 ���:Em� # ]���u(��۬7�f�H�aUO� ~#U/繂�Y[����\4��>�J���V,�����h��b¦sm��ѭ�X~��N�/@N����D�5l� �Yy�#�U�}�.� z�B�;�:Y�eٽ��,��Z�(Q$���3�m\1PUsO�bZ��"%�\�A4�����!T�~�eZ>�^ƞ�f.;�I�8ϥ^oh�b����>�e53 ��R���D��Ų�=6%�s x���y��<�D�:g����R�d�{�������YŤ�8Zp�cg�� u����.���p�x���T�$9g��O ��m��;q@*V� ~><:9C�Kܬ��x���D����s2�qռw�2�&Z��b>:N�r6C�r Ӆ�D6�@J=��H�H�08EupI���Aq�,��)��HG+J(��Ƴ�?�<�Lb��Ln���=<�c���ݝ��5���Q#�MzN�H��`w-�9��D<�uC��~���=�H���ס����7.]��U��X~�)�m������hO��m2*fD/��Ğ.���\��͊�/���*#1�oזL��x�]�d����.ꆹ �b�u�F��b.�]T����4����7�_Vqv�ķ���{uao�~UB�[����=����X�;��Wg�Y�Xm�t�3 ����q*|r�b_��VF�:�Jo��C-�0��� �K/YK>2�KQ"���0BG���V�ۻ���]`)��:��x��vG����E�i/j|�kN�z�axjyL�\�U� �DB+p��j��h�.s�k��Yd��噸�ts��t[F��:�癦YC��oY �b���ޢ #քaɋ6�a���6I�w3O�[�p ��l$�x`x��>K��+*�|�����#c��A:h��2Js�y���W��M���h�s��Χ���y;���1�s��\�!^�k�^����m�>�6U�]J,W��Ĕ��-{�C��zqP;�=�AС@�c?^4��+�4�@��L˴e��'�_�=�cN�Z�.I��u讒���\-0�o���Ř��䭃��[��vl�p�1dR�i�(P���ۨ�o��I�O�nS�ᖓ��j�2^e�F��Q"CN'��1of�ƆR@����)�UM��D�gyf|��H��Ӹ�~�Qv5���PRU�����Im����}냇��X~�Í�.O �刉�� �>�0�W9dY�ܮP�?�A����/�#�7s����K�ܙ�`&���[Ws��zu��!v�[D�6�>A��ót���7���NA��J���D�ެ��-�={���W�����6If4��� <�Y�뙏�$�M�����/u�^�d�����I�����t:e�� Ko�2C�4��>�"�%�2^?d�KP@8l��1����wr ���i��ƖY�`qj��⚏�0(����`�_ �xm��\���|&Z�2)�iD�����+������Y�U ^.1�M�=��S�z�@��I��O������n��ؘ��zi✌��`(4~ɱ��Pl(�u.�n�����G�՝1s��iX���.2��Z��(��6�'��<�^�1}VȘ�~u� !I�0�Cp�%� �q��1��K��M������ �jh/fC7.�{:H���xt�j��V��-@#Tڮ}B�-s7x�����.(ɟ��Tv�k�#F=+{;��l��?���>��Ou�:s�����;��UX��Q}m�ͯ��Y%��ـ�����.��ǭ���{��F��f*t�4�5:�����$};�$��Z� �_�:��m4]Ʉ�S<�]��P��D�Ճ�ݰ��,�8��C��G�R=������yb��z��1{SsBiXQ�x>�S��YnN��w�f�@��|�p��,~x�����?�M��/j&?Ҡއ#� �8�������Q�j��LO�(��װ���y�$�.����'��[�Z(L b|�p���iS�v�W�?�KM��,�Ŷ�Co�C.OF�0�@�WPB�5+�G�ז�v����g�\/���I��v4W����zα����ik��?y��դi ���Nd6�37�D�r��kR���X�����E�v|�v��5��Љ�?VG��d�C[�\��N��;�v�n/����)Qǥ�c�y`��vn�$u��B��'8������)�������'����M��i��?`�O��0�a�nI�#/��#�n�U���-~} �pP�W#=�o��*�q H�Ѥf��/FZ��C"�i�e�c-�~ ����D:�Ĉ��P'.���t�Iv�:����2�>�����/F6�Ȧ�ֆЭ~��cC�H��5�͒'F�������"�x�dS��<l;\0b%�&D�p�bIe0!�zhgm�8�����FN�I�au��O�ޤ�I���:r���N_��;���ا��њ���%�508o�<�G�)k��i���+�%n6~���6�VR��=�_TR�������E8��T,b$A���ԩnR�װȢ;����FL�TZG��)�g\�%���?�k(,�^A����������A�r�-X6��B��i�7��{P�u�� a�2����7b����9�{����xA�f��P�����d���X한�`}�dY�ci*�����j�v��H��> 8D��;P�&<;��A_�8�=fz��0�CdM�_��!W��w�(�� ���(-��0�c���M��i��[Ο��R� �oC+U)���ٯQ=5:�`K�>A���1�^c�7�3� �H }���{) �5��nY���ӥ8|���J\խ_��γՖ�Y6�b�kI�&�Lz����7I ���f_�5ܥ�i?�m�HgZ�PQw�b�~��� m}�_���7�1�S��E<C� W�7��u'�Ӱ����*I{�.�f�kƵWؔ�eR_��u�F��G �Q믖��^F�P0�s �$ D�����a��f��8��9s�����$2�?I��Q�xC����{�싂�i���.t�:�zc���Tuҩ�LT��Ӽu� #�� G�)i�T���}Q�k��3����3Y-e��������1.Q�-���[k"����g�t��rf�3�֔j`2�0�����ޒ���.�m,��k4/��`(X��E�=`��u��\PwBֱO�?O2�/� ��!x��}yj�W�Ge��ay�O�~��bC}����:t|ܙ��ɥ͙��S��;�� ��A�����ؖ�Y�:�ȝ�`�/��%�Y^"��$F�3�}�6`��.whؖ�3����ȱY~�U\i����Pv�=���/.��[�)s�Ƽ.�@ژr!��yez�<�f��d�G���z=�wE�|7�/B��-O���L5gN�@���n�(*W��@�|`؆CA�ʇQ���=�F�#���[<�ʴ�>}>4�߅�T�n������Zj�=�Y��fk��4���a������#@U� gg�Ӟ�y��#2����6�v� � /ю��m�^c m<�i�`�5^�[�(̑�/Q��\����'�V�w����f�� @ܬ�����%�P���$ғ��=D�˚⤺�@�F��Ɉ�,S�V�8��N/�k2�N}��>c�v�jo�wP�>���a�Y=;��D4h{��"�0�+��f�,���0I��><�a;���"_gG!õ�:�³L-����O������@=��%�og�XHc���'���?�P��_��^��8u@�E��}Y*7�<��<E�9��l;�a�e $F���qU ��_�? S*ȱ"�\���B�y-�Z��i"��T% L:�Tq�J��_8��)��5�r��� �O���oM(�35ܿ <�kKBI���'X��g��5���e�q��<�H\�`&^vK�����Pb�����o�vL�����KH����������V�?t���!�k�n���w��ok�m˯��Lt�zQ?�0��S��zQ��=�ﭶ���k�M����;����1�[�`�C����U/[�g��,�K���ܒ�@HEh-�H�����5��69�+_R�?YZ��S�T��7���������@��k� �b����&�/�'d(�#5���<c�{�#um�6�4M�80�ڴ�L50����t櫯4{7�V���*)�]��Ǜ�c����LG%6O��y�Ѣ�}����+���1_1>��s �@�)6� ���1����@}bc�Ǹ�.���H`J���r�͑c����bC/5Ba�+�_��5]73bC$Ӻ���)>k ]��A(��-��~I���{]�xٰAN����dד���'ډWۄUw��m���]c�vF Eb��^&2I��I;�_V2�-�x\xe�^�a���Μ|Ԉ(�����'�V���͡��8�{NG� ���P�kˋ���L��u��jI.3�e��g���S��^��S.�%�:�1Q�Ìo��z�ܶ�vӝl���ֿh�T���#h����tK��� �;Э�tF>�_d��� J�KS0�ޱ_�����h��4��4Y<��3ù�EO��X6w5���%Jj�#&��$�.a�!��ltP��ii��>���D� 7���_��"{�>�bh�i�2�7�{t��vvp�7���ȃ��0C� 4É:&t�Oju9;z���¯� g�����"=����N>Ge���8V��f'*9Ysy�S�k�9�<O�__]h�1�v� 4 ����jWE�� 9�c���^� �ϳ>�r�> Csj98��k�-�<擈��k��Po���e�K�T��a�%��կN�j�~��]P\]�m��Ѥ?S^R6|F��R��2���@�׆�Г�TFNS�iu*���Y|nd�F�Dj�˺1�O��黢�G�)���*����4�"�!���@2[� ����L��$��r�� ;Ӛ�x��w���|o��~�Zڅ�Z?9Ҕo�$�s����gZF*C<Z|���US��M3�g$�k�Ŷ��eՎ^A���9�d��8ʇZ��ۓ�g"Y��=T#?���I��_�4.���͈2�8���:�Ս��ɇO_��$���Ű9t��ֵd]�}�2��+)<R�v ۏ���a�v��G�Rċ�ഛ�-g��?|�ť�1�W����YRH�x� 7[J����?�dc�cj�.����و���yPr�D�HY���;k �إ���lT���d]��&�D�/6��~��l�hE�"����!þ�획\��)�8��}d`�V���p�_pD��?R�ԥO�0َ��5�������7�;���A��X� R��+�/ݨ.�� ���1�nF��K�+ ڴ^$�`�K��s ��ͪ����x�滄~0���J��xa�"�� �3j(���;���{���9%����ǁm���֙�[�f�<�'�<�c���po�u���E�c�H.���h�=�u�28����ck")��8)��>��l��]�Lm��_,����k?|��R��o�P�_��~,pX�S�6~��ט���k �9��,��9���ь�u��݂T����?�Ʊی�=��q��\�4>�O0_^��,��*co O;��J�୩����� ��b�2��Bx=�܁��hU#�}��+���D)�ļK�� ���)��9�0���7�����/�V)6!e��8����掗�0hO�($�E;�rL˃s.,{�6�[F�W�z�.H�am��6p�~��>��{".�w�ւVj|B��T�Idf��r�'�Dʅ,p������n���-��̌��~*ou���K��AgA�ܟ��Y�%����� �qX��)��{����:y��4�)k ��� Ş����j���U0+����y�충j���-���sJ��:�!x�]hӑD�s�q����<q�].a�I�w`sa$(b���U>tM�ƙ�;��u���Ȑ[d�����a|w%<�YxBa�kyХ�`������J}����M��Ѻ�1�!q������l��t�/0�>�A��9j���,�yX>v�(n3�Q�~W`�E���2�NSUd�<��a�T�%�crʬKE�%,Oy/�>��@���%���gR�i��Or���I6�y�wM��sQsk��}G@M����#�q��9?}u��M;�M�#�K�G��uo�Ȫ;�������D7g��[^�gt�bldW� �B"N� 6�R[�l�RCV�z�T!K���r�bX&'݊���I`�J�:sO��Ҕ�.0m��?�h�w�P�p��n-��u�?�N����5i�5�/v�n�0E-aHYN��b-�q����&s�&�GΉ�mz�£Tn~����Xf)���Y��X��e�ye��.��,�XuRM��p��m�,�������V��[�<�0*�:j/�l�l�=&@��¡�Ef�ؾiG�x��&�?�Kq�斮��h�\X�2��M2��Kv�&��l�����J�T�~�h�l��f��YE�:Y��<��谢 �CQ��E!�EXF&����Р~e L���U�Kh�����PTK�^�Tl�~�V��U�a�k���w�˷4�V��8��k���G�L����DP^�g���<���UT��2l��7����/�z`�0�y�w�%߅��M U",�R���O���qZ���4��R~ttEѐ�������/�X[J뛏 �t��|06i�{u�U?��MJk�y|c��oʍK cg�t*s9�)]�@r^(�jnK��?T���\�ޡ��d�|9�Nw�(7A�ڋ��K�-�~�f��S=��ߥ��[xHln�L�N�I_��,6��̢l�EC�����'�βf�}Ė@�0+��ńH��?2��.����k � @���T��r"�,���6P0�jP����HP��<ύ�`/o{F��kە�0�ʪP�V���[t�ש+�4��srMX��""�6�{��6�֫�� _�3�&9��A>¸�r� 𠖥��bdp;dʾS���k�Y��T=�${g�^��m�i�e'��6� w}\_��w�>��|e��$*���#�4Z�nJE�ς��]�hN�1�f��'����Q� �/q_��'��ȃO7�i�zDHZ.�#�g{�+֥�%�}���_C�o.� yª:l���<��tn�Ӻ�ɨ*�k�+dxS �tw7����a���ʮjφm�& ��4ȚhZ"��m�P�UT��mw�AY�-~U��u�.=C�cX�T\/!a���� |�)5�t�s2�ģ_������R6�zB`:ʼ$ ��Y8��B���6�%��e�G"��ˣF���湷� ��Z�x�� �����Bt�(��#���h�K�Φ�ߐ�_�����7�a�ҟ��Y�u��o�c���1O �h�KƟ����t;���]���\��ҳ^��iE�3�����̧i/ֻ|�=���ɱ B�K#����*���P�~����GR 8=��`��i h#������wڱ٪��^ՎY�s��%L������b?40�&����K8 ;�.w�6�q;�qH�f4 ^�ܢk@ &e�i�zV݊�mp$�{�2���#<}ۨD��iC�V�&|:2���UJՑK-��ġФ�`�vыZ��ټ{U#���2 ;A.�$�ֶq��0�~��y�MC�'Û ���MO���[^�c��i����La��-:��NT�^S�;8gC[T�!n(�"a�^7��գ�dn $ B�Z�zyA����N8� ��⃭m+ �$[��_��%Y�AuOxعF[�:o-럡Dl�4��>Z6{W^B��.�'6R?��lc ��lʧ5/���� �=!���E��]�c�ȃ7�P����H�T���em:H�R-�sʤ~r�����\�;;����|y���r|;=3�-�d�U���Ӣ�%[�w��n�����_JG0;<���`ֈYH�ĔZdg�}w�ca� b �jiʌɯ��ޥ��-v��������#S��^�}L���<��(Y�~�or�=a�r�&���.|��=�Hb�O��U�/�a��s����H��,�XY���ev(����7��!�e!�s��{eџ�ã��y�W'0�&5�2�2�(���[ȼ��4O�e�ߕ���`�&�eھ�ճ&����ϮRV4���y0�z����`�^��f�`�v)�W,I u�q��8;��ލ�FE�OĨ�W`^��c,g�fֵ������йKS�����Ywf�~���RL��H��TQ.�Ⱦ�R ��- ��d��b�Ǿ��fv�C��i��t�]��]�1.��H�Dkb�Ù%8��zfB^�mͽg�#.��x�Tg���s��!.δ�p�����qP8N�� Ú QK>�ّ���A��*���7:H�!_�����]S��f���%��2�����PJ�{^�5�2��6L�|�f[��s�ߗ��&wb{�) �BIE+��x���ύ�����0���"/�䵗�'ݺ��u��gf{��1|�nތ��"pׁ�%Zy=5�Q .�.H�ܲ|@b%{(#[���|��U1Yt-{�����*Э�l�/]B�6"/_�W8q뺟�m`~�%o����H��ۣr̘� щI��E2�|��UO��F��*�wEFE�-���k�� [����NTS�ƍ�� �$�}��3���-��7.~U��bD�/i���ac?�<0e �+����E��WLi�g�������~U@�� b��.�zh0P˅�k��Z5���'E�4y��O�w��4���}�!�d����M� �DYT�)���Z������A��§�����@�Y!���9G��E���9x���tGݩ�G>b�f'D��At���1�Z���[b���T�����Ϝ������ڱ/�ʆ���4�v��~ ��v�pY�ai����_1�>�q�ַ J��o͒p�g�������xv�V�^��bR�8-���hn�d�C2�G��q��~��t�C��KR��y�b�\O�=_�O#]����(�<d����Q��������';��$6һԿ�LB6�'����ħ��'(Ʋbe���&I%<�Q�����/�X��ƈ �2�ߒT�/�"Qb���=4DB�N�ъ��E�k�0�j_�s�+�#�R�v�ִ�s���\m���ѽ�Fږp�G�kGR�4T��d�j���N78��<�_� q� �3NծiB�� �0ܶA�ښk��8�1�w3�%*d̀'2�/�����4�4:����䫗4�ܻcڥX��v��?X�>f:8 ��;ȬC��OuAh��c�+�c�N�;훾���4X���ӏ��M[R�Փf��x��9ƕ���5";� ����bv��G��8\%J��S���A�$L�{a���RD�̈X�f>J��C�A�+��� �T{҃.f���j*��#�� ]��Jꃛe <��~�i���b�h�1��N�U�4�j����ke X,�Đ8C���\��<FVb4�)w��Bm5�b��q� �e���1? �D�۬п �)<�=L�ĠRq�rB��F�� <,�7^R9�@�������cX=܀&�B���=K9�wV1��H�?8��b��]g�ߣTD�/Z��S�2���=B#6s�����uY��7ɽh�)w5�����_Z���H��<�yc��լ�0HN�CdQ���g�E %�*��a�{�[�`��T Ɂ���`�u�pi*���&3�q�py�?�m+A�cQ�L��x����a�Aa��qXY3F��$����Ŝ���)}�j@��^ՍS>�O�hxĥ��Ud�m5c�T� ����YC�W��Dj*�4���mC��]��N��6���l5u>%O�@ؿ[�(���C�� �������Crk��Á$�>����e$��� s����<�ԁ��6�����s@ ����J͡u����^��ʠ=��$N(fn�#�Es([���0㼮X��^�h��_���G���z��o���Ե�8g�M�S����P�Q���y�c�X6n�R �#UZ��-M�+���ո2O�ﶚ��)W�?Tb�fҭyw7�n¶Q�=�m1"��~��J3���.�ò�G��>ւAFS�c$')�H��m��gW���Si�;�"��Kp�t<��>@��b�6�6�c��x�6�<de��d3��Y���}�:5������UkH���DzfMw��;�o[yT���ԯQ���ݙP�=ӭ�(T ��(U��� ��� `���Oj���X�\��B��h�Ar/Wp�����<P�1�Q/�4���E�)�9Pto� q)?���Q7@m5�ezo����ojD'P�XK4)< w��-�T ˰��������5���k�B���Dc�r�-�nX*(�ZѺ�,�5�i'�T����0�?�Q��mƏ�G��y�j�-l�NJ9��Sr��7_A���ʛ2o��x�/�ȍ�*�6�K�X婞~/1/�ؕ�4F��ڌ�#�QZ��A�gQm�,�Tž8;�re�����;-F�fb�-��3 �Ô���U�a6. �;���s�)r��.%��w�]��`�Qߩn/�X%6����2��~8�u1J��5Y��xće��M^f�G�s&��9~ ��� ����xJ�<J,*}Ż�������\�S�O.��\�F��/�2��>^�ط�ްT�� ��^�g=���mz: I*��S���#�ˣG Te���*�q��Vcx���J��b^#��_!f�f��e�Id9(3��な��$io���!���tiӈ!�b���W�)���Vc��*��+)�ǫ���ר͔v ��L��݁8���͂�⮿����� C������kS�^1 �b���g���R��J��ێʻˑ�3�A��T�����&g1Y\n�i'���hi��D�XFJa���䴂~L�n*�g��r�=F"�[I��rH2��rX�`��ԍO ���dA۸!�h�]^��;���q`n1]K9iQ�/£��(�RSKkR����tq�!��A\��|Q��\����֩ȸH��sN� �k��'�S���l��%��J��ed=���'s3���H<�3�|h r�;�1}�7�f ��j���H�zB��ʗW�S<V!��O� z}ro��OF���Ol�ƯJ�=Zf��N��-�k=3g�`׃N2���.�ڜA��'$U��!�*f=�Nz|��;���{�$SF���Doi��3Q�02I�R[��-�2! �@t����1����6�����0�M����T ��d�����D�Wzp�u�-��Д�ٕR=�u� �I ?M�%��#d���('�|�dӏ��䨷�.֫hx�}L���S�z2����d �B|W�u�Kn��B� 8 ���;���F {�u�30/�����y^�5���^��@��˥B���(����]ȿ��mط�a[}����9�E�4`�$O]��ϥЍg��\*�s �"5�5�V[�0�b ��l���(�a{tCt���kT��5��0�7�MT��h_�q�<�8k0�������~k����6&��D�?&�⋠�$I>Bq��s`�1�B�,g��W�#:�Q�LL?����W$�]��B�Ө��mu��\N�P.ġ�A�R�a\�!kO�cW�Ӈ�v �!���P�K���[DDԴ.[$�GGS�jYq ��@�[>�U��w�5Lm^��gx�����;��$Tb��)3�L�Wڡ�e0;�ӭ+��/k�J�=8���K�����ds���`��V�,4�=s�=�Q1��$��l��(�etׂ(�����T��lrp��^Cz5yD��S�}Ř�B��k��tb�M�o���\��T �],P��3���?��ܼ�����<K�SaN��b^�\��Ӊ�=�]�o��*�=(�{�cY��T��J�g4ٙm�1�T=.��OT>���ymC٬�:�T�ʮ��$�wk��h���_TM\���j �Y�h>�A[�S�v$��$��h��*���O(�2�'��U�C ��m���s\u����?gQ��L빋�� OQ�Yۦp�-��Lw��9�%�Ʉ��*���D[��p�vD7S����e��Q1uM�*���a�3�h�;�w��]H p�5"}%��f�ʙ�y���%;�ҊT�ҩٲybn��&�\8Ƀ�e{���/��i�W����>h����S�>Vgc5�Zi�#�֊*K�V��/���(U2��|ٌ���Sw��N= <�E��ݶ3L�3{�,�&[���#�Lw�|o�P@_a3�[��+x�RH��^�\�9����_N9�����4(5�����c(w�0N�S��+�huM�*$�6�0>_ fɱL��G7�O�>�c�՝|���#�2��?���~5|,������P(K�Y��U����:)�$��g�؟���6M��\ȋ��� ���l��za�+1�#b�g�c=�ښ)���Y ��/Ԭ��f~�������=B+��]K�8_� Y-p��V%�|�p�����J�L�� q���PS_2�� &�y+���WKnX�n(D|^��O��A��ܹ���Y��,�&���#Kܮ���!\`��SZzq$>ԧ7��v��my��Ol1<��3��ګ���ͅ��^:��ݾw�U&�d}&�;�ɁD��}�5�m�18PM�*�V�K�J>���#48�Q��!ekp�lyw�}(ό�ƼP��7�|$��/�f;���tX��˺�G�#z�pg$xm��oX�E瑢��)�� ��4�>ZTY���IJ�XC��ڙn�L�m��}�z �l��Kt��w~�Y3��9�N��T�z��/r��L� xN��Rb�'���B����G�e�#sۘO��6�Z�y�S_A���lZTgX���A������\�G�� �FR$�l�+&��|�����ʾK��>��(\[�� ���Ȥ2�A�t�� �jq������w =�F6cڃ�H�<W�9g�ز=����h��� O��?�a�z��HX� �&���)�6�z���v��R3�r�f%a�� S���kR<�R���]}��Y��+�mf�-E>*����f�%�@��X�K��B��1��M��o�V*�ڴ��/�.`��֗W�pF������G����Q�=������6r+uh�&�4ɭ� 6Gک�'�\M_�"+�N�:qD���DآC�h/ϝN5A�W���Y��Գ^�ܦ�]E�ʬQ������������m98��X[�$z:E�v �+��m�;$3"��+�[]�/..~��/��ڱS�j !z�*�*�������:�z�yG�� �l��`��oܱ��BK2}�g4U�/\���8��g���bn;��ݭ�N�;b�q��Ȉ��x��ı_�� =�e� ��Zuk��,4�����Z�Q����Sի�S�����7��(�� ��۵8��*�<k#�2��u�R���R���8����7!FJ��V/d����9)���F�u�(]�9�f\�Q^�s����� ���j��[��ݥg^2e��q3B�o]�TV���yWF_�*ʭ'~�����cQ�W0�Y�� *�d�B4��@��N�p ��\ң�\�k^ �� ۢٚ�/B��h��n��<�x�n�%�Yp� ���6�9 Dm�_<��&ŀ�9�[t"}��L��[�q���:��2O<Pf& ��U�L ��u���U��k(�B�0��ށ�<��B]Gv��Dߺ��H�a��<�m�\�s�OR1G'�¥S���Vj���A�M�@�@�*��'�����Qe哇*t�pg����ә���G_c��[.��u�M=�-�Fn�gƿR^�� ���}���W����^�#Ԁ�/_�_����>����A�Y�& ���q�n=�%�^�4![��|�;^�y_��/~���vd�j�!�@�9���/-l�6a�z<�;Jb�p���vR�Feɏ*)Z�_��-�h �F}_*�o�O#A�� �@d�)\���nq��5[�^!Ą�U�����"4�e�yGB��(���^�i�qZ�]��{?�ԃR�O����;�[��T�� G��7!O/Ҙ�&@sDz��sߐ�.�h1�<�����p��ͯ�`�y��z'����3c���A�L8�b��>0gNCD����V��(�Q�sѧ 覞 �A��zL��L�yz���`�+�]�-EmJKf��� *�QK�z�g�����J�&,�}�{t�O��퍝R�x�f���L���C�m�o�C�O�f*��=*��:��U�z�>OU�[�@�B2�U {�JY����`����=I'�\��Hߡ�͒u��L�m��.��4�����ֈ�Ʌa�����ܨ��c�h��٠�����HFW�@빽n` �xȣ%�7�4~�l��MHyq����%���Ǫ�?���\�g�3�!��A�� %���7般�#���.9���{��PN6�����[ӧe0ܠ��^~�Akn<��6�UF[�M��/���PC9]�����w_��� M/@��~ �rҁ���@��1$�bٽ�L2f<dg%��K�ű�DǞO�f=z��`�ڐ�=" �.����],��7d" �tLS�σ��S���|b�t\��J��(�[D��Uj3�eQ�P^��uw�{���K�Jr���6��`C���9������䄂���[ �G 5:�F�w;������~�*L\�>Lb�}���ZpF��h��c �cOf���t|.�Z�|�� 2!�<��V>�������;a��p�re�A'�LG~�fF�4���$��n/i����|��4�Uwߑ4�j Y�ŁTհ-c%b �0)� <���u'Cs�tɒ��C��u���` Lcjs�m�5�8�bui8Q����|�'k�%Bg�R�VF����5/vN��cP�B�&#m�'��F\�v�%�g���C�Y�(04� \S��.z�]�Ua���>�b4��\���²��y4*���Vs1e��(W]��a�;�5�0� �#ф����pZJ�T�6x��7�'y2Я/�1������F��qi^*S���R�f��yr����yL$R8�,���=��=���|7���B���e@`��A9��՝M�H�Ɨ���A7��&y�ٍ����1��"ϖ&�G ^KEm*�h�~�����o���� ��1�HiC�b�DxgF��a�]p�j��{�?�U�ݬn\��� u Cd�f+ٵ�g1S��?~��f��M���W�z��a��}�)�$�wJ�?���O�Q��k� �D)?]R�\=RV����N��:0�R^���%9�j��J�2q���&Щh�ï� "r�E�K���l��2��ۼz�O�&0B�!p�-�Ie�z�,֨�'4Z�P���d��RTX�bBR���05VA>�?Z>X�QI�����IO���t��@�`�U�ŀ��_�v�@=+�S8[t;;[�W����~���T2g�PS(�E����ny�:�w""��1���Y[��MX���Iߛ�=7�.c���n�Ey�m���.� ��|v'|�pTC'Ec1���)��y���}@���3��4���D��[��F1}�d���]��i�-Bl�;}�h����s��Q�Ey� ]�9 븭�5J�����&B`m+�J��$]�������9N���]�T ���|��pVZqGS��)�l�1B.��4an��9�ٰ�.�<�CR�t�tym5��c�Y.��5��j��<��N�����[�X� a�S����}7�HGS�ۍl���f/�Y�Shʊ�cK���[���?�V��2��ucJ�� �{'b��9�}�tז̓�_('�����f?**அB,���S�K�3�(�L �o���v����q&va�#� +�0$��}��-�?3�Zd�ݸ�\�W|3YĖY�<�tT��b���yB����@q3~ܾ�H�\��� �@[���5gꑮ�*��u~���F�I���ey�/;�m\ҷ�@G�M�-ڿ�C��zv*��ZRnP�6��a��[ܗ�����У��{7��N<�aJ�៰����Z��dQ9dx��)���t.f��'�� ��tͺ��o�sa��K�B����ER�n��T+ݹꑯKe�3�)����u|��x�S�j��ru?�h������WGa�䄍����&*���Ϥ\RdE���{}�;vxs�5h��R�~���0���K-Ƕ|�-�^�p �;�IU+�f5�:�1�� %!��` ]������q�)�N_n�FJ��v�� ����0�fK�T.���M��+��Rɹs��o�C{�߄~�6����6-�%���j$ �d �S^e�l��-?��}1 ��ј��g��!Y�%��Z����ܜ/���D��9����DiMp��yX)Ũԡj'�]��-�F��o����!3����zJ�͡�@s��-땭�D-�W��1�S�f���b�7��Q=T� ��}�m�.0��c���I�"_O\r�̜�(�JP���Y0s��>gM�9�:z�M�F����V���`�3���^�k�H����ml�*ᣤ�N�T gs M,u���G�����cҫ��6��Ї�'�D=��[ڍ[��XVȢ�wL����S߇���3���4x�&!e�?429�O��f�A*2/�`��-��c�f� [��Hy�o���*ì��c~I���(-���`:�lt��q��W1�>:�ߺ�w��[�},I*AeIf6�����ͣ;a�m��P�8{Ѯ�D�J�(��x Wg]5��0�<[;�t|/�F��L�$��G��s���%_��b.�3���oizW&XG�0'!qO�]q�A�e��g��fh�JS-ԍ�6������"S�_E�1���e8B�DЏ�T�b��) J���4H�p���p����xg��H�{J��v��t:AR\T؍ŇM�A��+X���7˷@����|�� �&�yY���ja(Sj+[!�6q��F���U@��0��M�����pP��9nϪ��0�,�ל��Xm�����H��$��X���A%��YEl������[oX�8������L�'�� deb ^ILr 6�{V�9�WP����n����D�܊���/���������g����V���{>˲�)� ƛ�a����CC5� �KjY���E�p8���9w���d����[q���1�h��Nf�i<��g��Kq�0~á�}�ǃ�ӣ����g�F(J?�;��FHe���y��j�G���2-����A�'�*��]1&`>�q������ĸ��S-����s֓r��K*]���X��ߩo\_�EQ@�_E'�G�y��W�Wh����(�F(C���E{h�ϭ}V@sY�z<�ϔtD�� ���I���2�A_�Ԭ�������V�#�V��^�g�*�BC��+��(R�� m�Gl�E֘�[�T���+���9_7m1��O��ר�<� �x���!<0��#u������/��t������RvRϴ��5�za���O��l���1�fb�a7��]{�*����X�� !��Xv\��2�V��~���E�\`դF},f�� Ǐ�<�4ʵV��(���P����5L��E�>Ƌ��5h����luZ�#���s�j����O������!q��9����,F��ta(������Ep��C��!4�*K6k�S���)�K�XkqOlX�A�Ѫ�f���1������lZO�:�ʴ����Nr��k�%�=�ʕ�@|"�O�hk�i�C({&%���T�4����i����"�纽]&dWr7Idn��܇f��ʴ��k9R���Ɛ<m��⸁ �c-��"f85XN r�U��Epk������+$ ����V��,}��V(L>\��� .�xۺ� ��P���>M����x�T�$o9��GŹ|p��_���+�������:)�ͧ�8��*?H���~mOo����JO�Y�����p3>��K�=湖/}a[y�8�s��N�G@�Mv��8�ʡX �N����� �=��66piц\®.��1��+�b���t�N�`Qb� 4���B&ԃM!)�� ���q&� �zA`pp�`p֖�!Q�AV_=�#��9>u��\����f�K�J�{�传Ջ���F�x�7�r����M4&�,�Y�A��2r$�.W���$ ��5��v����os��~�����,�̡�k,�=ri'�ΐM��d�/�z�1W0�S�,�"��?b�N���خ���f�mh�g�U ��BF�M#"�7y=g�+9@h}R��3��upbY7�T<1��g)�Q20PB,s6��zn4��� �y^��V<k��.ClUty��H�%��Y�t�z�y�����MGD�'-y��h��x��?"H�d�"��Q ;h�rgl�`�7�vy*��.C*������k�s�J>V�"b�r˽}��8W�ﵔ������)��jf�@It�Q�|����/'�c*d��W�Y�#�A� �oi�����@��iB6� �\���zM�\�D�"����?E��]�Z�qU,Y�nZu8l�,���d3$o�A@�z#pL��þ��XC^�p$��ko��j�¾�p�H�[��Ŷ�|u1��'�[�5-���m}{�:3C�Nwv�G��$�v�GXTL�z����������&rqY�axv�Atܿ�"��xh�^����K̆쮅#O�I�@m�BX��%̯;|��x�h���_��*>e���DTgI�5�r��n�K� ���l$����365��Ttպ�/��RVI�fV�a!锱dE�O�/2c��X���cnGq� �ix��c6�W�+S�#G� ȅM���a�s\�2i鋷�sZҳzv��09cXEJy�x���(7@�E�k�aȡV��!ɘ��6k��Y��"���x�������A1��� �^�;+���,-�Ť+�@�[Cܹ�y+ m����OՒ}##�Q����bx�c介Բ%����dn@VJ��>K7z��)�I��Fr#���7��-y���Nn3*� �d'R�l��F띄EB�h ����q��y=m�H��K|&��"�t,X9���a�������vvHND��A(怞tWi��[�i��X���fB�]��&�I��4���\ t��)���s�x&�4珓�J#�'�q����� ����7����ue9l���Z�֥�k�(/?_�H�%� ��M����$��yE��<Y�}E� ����J9�L��T) ����1j(�_3;��q~m��I�w����5;�O�H��.�"� �;]u�Q_O�1���@kٛ�2�bPV�́��¾�.�:�~��唛k����|��p喷����>L<���㞽m�#�ʞ�1)`�kL��[����9.CH�.�%o��(��I���߬���U�?*���>�U��t��X����u��sL����b�|�vT�lp��*�,�/����.���F�����d�k؆7��6����U��H�`�i�f� N,���0@���p� ���*���b5�ƾ�Ͳx�LM~�p�J���<誫f�0^}s�Ywǣ�V�E� @��z�g=DWE��w�Kw��߽��Zf��zu�k�g�=D3�I�r&�>�Ǜ���)��Z�7��_ԙHEƭS��+"]�g`�+mo�[D{j�;���Lx�^r*�'��'��"�ї�Jf<}nQ��\O��[�� �Q�F$���u+|^ּ��n(�NP���RAt>�з�K���ݧ|�FS�#�j�PFB`���PCc$^k�������?Jj S�.��F�V��v������>��|�m&Bta��|[������>\����~o�UK�ԯLG��۳��9���c�� �ʬF��Y�&g:��*�Eh��(,���=���A ��Ѱ'�p�HK|�$�Oz���0S[�dz�d���:ڶ��/���cQ�6�(SM}�e���6�(�g�m�e[Di6�^FT%S�ms�*�_��|Յ�{���?��fJa2K,O��?�ވpG�ʸ��UIސ�.�����?�!i�Sm���-�Of�&G(���`(��8(�ʝ:9���S�d�D�~�]����EX���"��]����~��ƞ�b�N�;��A}�=����P&��p"��՝`�����)1�ٰ{S���nz�ǔ{c��0��h�f���,6���7P��ALs��T�<�k��d��9�(|�;OEg<�ïtu��} �t���i�����ZȦ�z����U��%�Nw\�KiYñ�$5����e���>*?\���{���o!��fTa�F����_��8�Y��Р�\i�QtT��³ݷ9:�/�7�^|��)�T���pl��"?v�}>�3N��kPv�Ttଋ��mC(Z�<;I���n�<�5B�e��0O5�·s�2�a�F�5��O H�j@�ЈLsE��\�����UB�Qڧ"nV�%�L<a-Xk�N�6�9a�@J��{i �n�9n�F��l��i�//u�]��Z�z� �`!���g��k6y�\���.��$���b�Uec��E�g�_E�b*��&[�CF�����}a��B�2e���6,8�{��M���Cq�E���;%�5�Э��������Q�7I!�$r �p�);k;�)y �-�~E�Tk�}��� @��msѰz'�~�� �]/�Q�j��ϊ����D�,1�Č u?��T9�L�ضj"��^����.�����2'j(Ҽ���r9���>���f�%I�H���/��.���������I����4��%�oTO� ���(x*��1F�l�oa�q���}� w*&�k�C(��r�e���@do�汌� �n��u:�n�����ӥ<����N���\PL��?7 �3�W��e��²(�&ۦ�C �Kn��(xb��(��Չ �v)䩊�ew{)�g��}�w� �#.%�~|ܻ0�5���jy��0��&�}/�u�z�n��Ѩv��w�:������MŰ =W�"��XSHMh��=(;�"w1G7��HC�}!�͍�H��1˗���!�3��.w�ү'����߱��6��FX�|�E��5����R�R~�q��6��9!���}���[ֶ��$�ĝl�©���݁�c�.F����}[�����ɽ�݁i���Gȱ=�3��:���V�zH� V݆�H�=7nF/ٟ (6�`n�����k"�98���)�kW~��|/8�b���|H�巸_8�[��}��:�R2��'� ���f\tNM��ֈDdj���'���Zޔe�kJ�o�s&�.�.g^��yx�R�){�D�<��o�4Cǿ�2-F{�R�2=0%zL��H�#:5���.�p���X{�[!c��'��`I��"�r�֯#��q�4����$�Xe����{r|�ȿvO�7ܿ��B�هx��WR9����؇�#|�uA�Z����Yk 2��R;�Z̉�m���k���*�_�XX�ڍ�YՕ�#�W~�q!� d���<�\���]:���������3q��^A�/�)�m�81��v��2�֛3�M�����L�u������Mw�:+���`3���) {�(���X�lx�c��� 3�m�0�cX�������{�$��/�~��s�FX@3<÷îzݍ9��&��[ENxl�y����:�#f��^o�5��)O�-�Ys1`��6�G�'%������3dK��r�� N5��-o?��mw���D-�[�^^�3���!ꂪ��a�sm��$�XWx�AàuN���,�N�L�X��p}��._�Å���6{ �� �:����p��l�t�比�X4����"��H��q$a2���H�P�X7=cO'3��MΚjصyW~o�t�:���(���d��g&I���4�༽T:�9����h�3�����%$Z�O��F8�s!��^C�Ex;P�.��5��EI����s�dž�Ø�n�`�(F��)�C��닻N̔�ex�HͫviI_���䕖�)+}4���� n-C��8�2L�v(@�~L�5��:| @�rp�l�]�C�B�\|������TAliK�\^7�{���i������t�l�th�7��0%���e�0�#l�I� U��~#zl�ζ��棢;w�7a�.9�P���K�ݘF>`��#���&�B �-�[��Uv�h�%||����H�-�8�{ȑ�iI���Ȩ�] H&��)MȾO=b���zU�6ŦIjk�nq���iӸ��C�y�P���Z�m��R��v� W*�}�N/~�v%�PlBB���ޣ±W�G��[=Ԫ��)�|�2 b��*�`1vaaUV�&C��&�^�S��dIZ= 0�q?q�yI�L1�)ځ�C�j9�o-1X���k0��!(�P�x���?_�CL�q�56q��<@��Mi��V]��"��)Ω���l[4�O��=O>�V����=F?j�ϩ�R ��.���7��Q�ۑ��z�q���ʻ�S����v�@h��=�4Ps�9�Z`�F��$tJh(DǼ��B�<��`�<�e�~��̒��'�߭G�uR��B��T�z8��ߏ�7�L�= �RyV��@~����o�#E��>KX�i�zΙ�$�V�p�(����Zh,g����ڿ~b�p//$C��VnF��1��'Y���,n�y��)2*|v� � ���m��V��Y.2���6�)�UNc;5��g�8wIf�N�S�[�&9{�RV�[|�|(����}�I�O.��=vb�5�P�U �h�+g,;P���Q�vϽ����oV�H>"r;,��x��4F���{q���bo&�y�d)ȇQ�}����?��1\o�k�$!��Uy%I-Ђ^�~���k�d�"9�à�)',�-u̓����v�L�J��],�=( ԶkG�^��L�J�Kϣu�B�! �r��,�`�iXQ=!�hp��w���I�4���_Z��� F���8W��z�wD�����W<�k|ى�v��i=:,o�~O�n����$C���,�>��XB&i�Qߟ��?ܭ��y�K�"�sQ*��Af� ��R��f@4������i�e��戍� ���?z>��<�ϧ���F����)��/��q�\�պ���=SFU����r�����Br}��'ՠP��=�u4�"/6�:���R.Q7 ШS�����.���c O8jZ� P�q�18������>��o�MO���7�UZ ��m>D7���a��8�+N��e��6`d8d�k����}��#J��=7亍����G9������`]X[�k���^�#��o��T��.d�r�E��TE�3Jζ&��0n� ��ۨ�% �j��B�&k ��h����u�::�����"��@)Nۖ�Y�t�K#y*�"�c/����V�U Gq�]��2��[��!�)u���bI?�l\��^y'#uk�-�����{ �f�ۻ��;�Kl���Z�R�����`�B6����P1B�!_��Іtk%�rej��)B����f;S�U�cpĂ�� ��2��j�Ke)�io)P�:�\��j��ߺ�dØ^;�����)w�y�yB�7:OZ����AǀU� ��ڰե�MXI1�#�[A�w���$��,#\���pi�'!J�BzT̓&�dW[� #�`�,2u�k���#˿aQ�x��e�E W�Yoե\%�$�͏rկ��k.D��4~�9><�C��}>@"C����'8Wd2���.���ū2OY��5�{�g��b5�����Q���� ��_%��nJ�����]B�*�[�&ǒ�᠍���I��fQINAr�T=���Z�P0q~�n�P�53Nا$o(r�L:$�����U�PB�^�!�*���o���o㊩�θ�og o�Ii��$WT �_�(��T�+/05��*j��J|q�N֮&����)z}U.D�x�O0��mL��;�i����f�u<�\���>��������b]�Z.����& ς��d4�-٪�,�DƯ�X� ]�eҩ3��6s+�%{b�3)T�t��� �CE9>?�2��:u<��s��k�#Z�p�͂)����JFK__^��ۍ��v�ъ�W��Ts�I=�q�K(V.߫�/]���[�9j�����`C�5F��?�A��y�n�50�����KԷW����QmC?f�M鍈�3t�,Ͷ葖�#p�.ķ5��m���k��)Ō���'%��7s��aai�vT��D�ST�[v ���ؙ�4�F���o�3m��@�L� s��u�XVf�������L��/Q,ח'��:J���[H=$�旭�\r��[$^{��L���Y¯��������N �*i��f�i��O������ʼV�ʉEk�g�O���Ӊ��S.[X��h�d)���B 9ƅ�5�ܐ(8�@B�].��7mf��q\!��C:`�j�$Lq�fC��t�li��rT�hL�� ��x,�,�Gڠz��L�q�e��od&<��yLj�:c �X&������6)�Ĝ���r�����މ�!!N|Ȯ������4�8?_��R~;s+����Ba���֨� Fcp.��=�^w�8|T�pj� I�# �W�P���Br�c�T���M{1�_.W��yp=}���o�0�q6sM��A7���lݻ�~��'`�V����o۳\���i~z@h�����,;[�]�{�������bd}B9�Q� �q��ap�)X{��$C>s�vˀFv�>E��F4Gb����eJ��P�d�t�� ��s��#Ԅ�]-R�����kȄ�� ?�MY��C��~ TQ�?%�>�؇������T�������7Nôvܞ�1����B�����|���(���g0�E� ��]��� >��d6��ħwW=�Um�S<ŏ+�Kլj�*C^�c�ɉ�$xDZg� 2!�Y碗��F3^vU~�M)|V�����4i_nO���SrS�K�p��9�����t�o���0�s�Y�3��+����}�h�A��/������(�y��;�����:�R#2���9w���}���j������뛅��b)�{� j�hA�]d#r���� ��i�J�"�p�Xt�;5��qT*d�dA����"̆߁*� &1��͏z�/��L��3�7zQ]QY���F��M�:�0�H�{=�p���d�F�+܊൲@�)0�=<�����,���x����Ϋ�q��ULRS(+�{�~p��&{����z-b�>d���"����#�ws����03��Ï��ljn?MK��]!��n���9��Tk>̽��+�z�N2�8�^X�g�`�ORR7�\i�[GY�`��/�ך�|��(q5-�j|�sk1����t�� ��p����@aC�3�H�= ���S!�fMlg�����Kg3R8���f���T?�h��s�40�W�j���<�n�:`�- �Sݳ�[a��w#��V���u�s6�b��M"��Ъi8�d��zyzc��m�S"/�'範���-�K�ۀ�aa HUŒ�>��,8�CG;�2�ْU��� fď<X��d9l�np�^g|[i���Y�JT�(�M�� u����BWϿ�"���J�6�M�3���KFō����N�������\ ���/7������rR�/��p���#���Vb��Tf&� ��m�;���.i�L�L�T��CՖ������l���I��9pX94� 4�+�%��1�{�ay!o6���CݎH�vS�_��%�s��� x�Ӱ�e�v��7o���Tq��q�B�^�ż O1�z�yi�DJ���'�R!^�,k�t�@�2���V�HQ��N�ӡK(Ԋ�lDjf�3� � 'O� ���A��b���T�R,��6���&}_�6�i"WC ���]_�Q_��<N�w>�N 8�T{� � �����*�{κ��~:��G�{�S��K�:����>q����mSr��.zO���M������X��wZ��v�(�6D�M�����8:��緞���Io�C�\xM���FtI�"yDiY��R@�g����FQ�S�?���Ub�6O��o�y�11�����7���)c���ē+��d�]��o��Gl�1)ڝ��ԅ��^�2�ђ��NZ�d+����2�_�h�+屭�'�H:�E���Z���X{�oϟ�I^RsI�~x���kS�D�w�O�f~E��^��k�ż�5�CE}z9���U.hJqS.�8�؎�A:�/��I��9R�����ӵ��z�wc��l��0�Ӑ�y#<����y��D�7�T0^��3RL��wG���x��z%jA�̑OE����F[p�KjC ���^#Ԭ2@�.�]Fz�˯��b3濯E_b"��������A�Y�s�ʷ���Ԉ�v�6'�S�~��b��^�ԆN��B�\JԬ�H��J=�cw<4,$4VH��7J\چp��6���T�(�Eʚ�v�S�/~JFəpv��� N�#"f���s�h����T :�0Re�E����-�c�����OY �,�W��D`�Ekx�Q��%��G*�F���WG����h��.X/x�ei��5����h�t��t4R瑮�}q���'��qc]��7���/�N�R飍`��B@l�V�(������2�u�~� z���dZ�� �0���x;�_Tp��>&���@�+�������/���G�e�|��~�2���R�!3(@��\�A�)L�}Y�[���J8*,�_�Y���t\�Iڇ!� �(hΏ[v���i. .���n�x3+��24|���ޭs�y�0~�CȆnq�Ԙ�d�*C]l�xn����������6Ŷ���gʉ���1����g&�)(NWh��d����@����܉O�{Pv��g���?o�L�2.��#�P��}�����/�P�( H����L-j�g�M\Ā'ĸ�|���:q(��q��3F���6b��B[`��{���������+q 4YH�F�^��FU5p���"�w����^l����ZQ�,V��w�s�o��P^���H�L)�4$�#XħRѥ��5�r2Pg��f�S*F&�]p��`��mX���y^B���[��"�ߺ�d��B��[5Oq�A�ڬ�=����Me�5���������4��*��w�� �$q�3œ�Aa�<Z�t��K/�~��s�m<��a_ ִ�d*�4�I����f��B�D �~�Us��!kX+(���=���{�-��6`[Ҵ�<¯DΕ�v�6A�|��?��N{���v6�-���q�Oi�lU�����Qv��\��_�h5(�x���7����ՌLS�D��G�ش���%\�*���U``�f�W~�V�j)��G�3(r�;u����L����M�^!����UG+�o��YW�օ2b>�u����瑚���^fږmP�����d���W���ҳ��'/�j�Jq���%_���p �"y�yI����q��Ɵ�>�Ӳ�E�C_}�ZM>��뮶��%S��^��g5n���_�wJU�]��Ԗ���y�{rg�W��\�j��ՠ>���'�M4������҆��'b`�L�-�,ůW�tMe��ʈ9#�$���(I^ �w����]�,ˤ�F��0�?u�7+�:���g��c�N�1+�V=���#�چ(�p/E�2E�Eu3�b�czL�����Դi��Z1⨉��{��C�L^�+S�&��ak��6ƴ��X��YA\A��x'u�m:�/P�yO�3��^�F��zn��߱�r�$[ �^��PX(���^�6��4�u�ǹ�,������ )T�_J�v0�Yke�,���[*��苰�G�Mx��kϵ(G��WX ������z� "��>PV9Qso9�p���\M} ��S�u�q4+�#�'�*fX�i^�����+:������"� c�K��q��%t�θ�T��y�z�z,�i��Q�)�Q:��q��ҤD�We��G����')��К��9HU�c(@߈K��������a�/,��l����`~���c�v&6��c,WUR�2�ƱM3c�t��R.�1�ԍ���j��=��4�h��?���Z霢��~nO�D�X~W)�)˒ O�f�D<�Dљ�f�]�Z[ ӓv0�]xQ��ڗ�a�&��e�����U��a�#"����,J�UX��vR^`ŭI&��f93���q��P���l�z:y��?!c 4O�e����H���:t��T����D���\����!K�]y�,���@%�����f0Zk>��ϏI�|ʨ�Gûqa��(zЭ��}��O0�D����V+����'����_�����P Nq,�$T |�Z&��s�D�E�` ��I"�)���w�Y�yWb�e������%�:����N�N]�Y2+�%q�����X�r��vXܤEy~�H=���>���<�<W��Y��7ԯ��ۿ)WP����̈́8��-i���h�˅,䭹OY�>�hý|@A��R� `���JV�'��}�4�Z�8S�����CL��X���(�Q8��P�w���H�{늧����� �gA+E��]�DkGc>�Q��$��4��/�o=z�� ��>�'�����!���x �;D�q��"��ܱODQ��zD@҄���0�uަ�ʳ�2W9���ʨ�l�I���Ћ��{���>�D*�`�נ�x���E�� � �f�"8!'�ynT)�6�Jgfn˄R�D]�:��TYKz�zfk܁փ��W�l�!E#Sh>Ϻv�Љцn�8���Ƅ�'tx�(���-V:Z����4f����-HhD4�4,ZFjB�ľt��7Q�%D�ߢ�'�q��d?�����@ݮ�=g�(������bi�TV}&��5�Ҏ���C�\�Z���`�i��c���VQX�06�������QǠ���I$~ v.q�ZL���6�p�t)��*j�4=�M,��X����#R?4��5.܊'�a�l"�Rȕ�aƤ�3el4c6��V�&r~�h7=KFB�|���P��D4��o�u����|�&�|�5Cm��Kn���E�=���{(��U��S+<�vzq���f(�H��9��|���X�p<����<`��A�8m!��D5P�Pt~%���8�_�@���"4ǃq$�O�*4�$>�E *R9��P7�g ^��]'��"�8����<����NHw>�X�!�5]�����*� ��8�����a��b���5�Q�@U�o�8�ň�sM��i#_E���-� �_�@�X(I��� _�������1+"�d+z�p+ [��Z���3 -3�U�DUo�i���d�n��a�E�?�6��"�N��ؐS,��d�2�S�m�i���-/�in8>�����k�#���t��P���c�qB?�t�Pd�����Q��:��bdmt�:-�ֲX�N~�,yX��z=��m��8�G���'6�S���큦#Ăf`�+��;�AQ��3�A�9�o�1�Pl1=��m!�B����"����x��MX��?�-O< *0�6����2uиs�Ǫ K��+��c�SO(؆#�,�_�F�S�s�<A�|��a-����/n��~�8�!��7�@|���۔�`&XD��nm�S0� |��%e�e�A�[�~�êS F,�ᱼEv?Y&�WR�a������ZͣV��`O�KG�� Ȏk��*i�dv)`�m$��p�^�i�)�H�L�S=;_=�ʠ]kl8�Ͷ��� �L�����"�iVn��L���L��$�-����MZ�Kϑg���?�����}cx2˶:��FL�A�����l^�� |�����+��o�*LȕKLd,�4�+�$S�Z\��o}��,��r�!����]��H�t��*�n�P��� �禶���?KŘ�:�UA 9n_���8��K�Sx*�C4X�Z��%��kS7vWU����uR��(�<8X�雇���ev���Q�}� ��BctzyQZ���$�_��w�(��`��w�g��K6U�僂�W�yȸ������쥯��s��73W�hC"�����Ŵ�.�~0\��ILX ]8�%~3yJ8e��M���O���x�n��7^G�u2��v�.�wY��ټ��lK�D��X��y�?OD��f�9�2��tC�`��D ���P��v~���Z���ߓ�_�������F*��f$�ܲ���w�����6GHkĽ.!m��i��8d�]#� �0Q��IgS��i��V���!:�ͿW' ���F�A���l� E�W��P�����<]q�m3X�^0R��2�A����0�'�G�r*�EF�>��/&�n �Y�U��2�J�h��ϸ(u��u#�HTݙ��%$T*�32+W�H�J� <�m��N�^�άYW~6���7�w�{mx�g�/�'1��0o��/%w��@@:�1R���ؒ\9ОlF�d~0x�-C[U��*g�͋g�p�]<�dt�հ����Pq�(Ї���W ė�!B1lΔ�~o����{����_6��\�����߆��s��$v�+��7DA�ɸ�zr�1ᜰ� ����1y��\���DY��S�{�z�\�����y'��m#�#9{�Ž���P��tn;S�Z�©��\d�I��>��W�;h/���Ǟ7Qs�̀�!L^�i{dM|��!�b@Ng����w���ڳ �J�;q��zP���S����{�x�������q�����Fe �^Ի+���ZY|h!��r���N��� *�z3���k؍Ӛ�v�r�'��=�M�T����� i������Z�Ԧe%�v��y�y��F�)S(�����:ۤ�a���NI�,�QF�����\��#�h��hb, �,X�R�2�;��k��%�!1�)��hZqDh �/�q�Q뱆����d�}�;j9L�ʘ��#_%"I�� ��HL��k�[�+l�Vb�B�ך:U��T&1�����6B�㮖��A�`�c�C���Qpl.=��g-4����E�,��+jD��ȸ�w|e�s��8_�i]u �(*��2 ����q�hX�l|�vR���I���i^����Hи��o�w>QP�TFF����"�Dbʖ~tc�8�M��z�@\c����*�LY��d �v'D�ig�W����qI�eF� �+���D)o�ڌtA�m����$,�R/+�Q�+ u#����.N�)ۤ�y,9�HS��}�M�h�^P��>��V�y����k���,��غ�-�����I�u�}�s.qح�S��"D�D��`'����"ܰk�j��~Q�ׂ�j��#�W�o��+۩��2҂c!!���Lx�_���A�I���(jLK;�<@Ybݨ.��KK��������>��r��ωvyZ�Y3��U��1�)���eA^K���0�:�.y��D8�1Y49���Ҁ��\x@����2 _�s�L�!����V� ^ĵ�ۉ��s�tV��%����ר��J��Z^��q���I$[�v;�pxo�L>���C���J�^�$1\$�ӳ�t(mu��Yw�� ���Y^��vZ4{�(�2�sD��� �e����!��>Ђ0{�uP��J!��%βP��i��XB�oƃIca~�ƔWjB�aӉ�K��? ^](���n*8Iw5�[�n�6��d�vŰnp�l��r�f�=ܵ��dX3�y�c9��v�~LOu)���PO���u��h�<6�J8i �뷭�hZ1�a�5�y8�5�Ll���r`��F�*���3P/dOku�|D>*ܝ$��<ㅠ]>��c��{�(�"� �.�l����tq�"�d�� SO�]43���Ħ���'x@�����9���ҹ�%���s[Aa�<���t�%��ݧ��p �c,��J�2D*@_�<�"P���礮�}{Y �GI���.�;�^��MT��P��o���്9��2�RPa�n ��T����MC�qS�X�W2��ҡq��)��%=C'D���YuGG8Eo�43� �$(��"��>��(|�C�Z�٦�g��D��;I����L��^郏x���OL�Իx�?L�`h/ʘZ3{D0���,4]�bk�&'uG��c�X�v�vN&P�AD֭�%�ɞ�����[�_E���&��{(������`p��=!��Ͼ��c(ˏ��Jx<�� ��\,"d���EoX� �]����.>'��ꚭO�·�p�}�� �O@�/��+���9ne��R>��f4��2�8��m��S�8���1C^C��E�A�ϼq柦����gל2^��ƲՕ"�:��1 ��&I���н_�N�J���^e��쾗T �1��oCE(_�x���x*�xN�� #s��w��H e��~�ҿ�� l���h̯�c��L�9!���.�]���m���!�1���3V���K�1GL^��l`����>�a����\��y9�R��GS�u��{0� 4��?�K�Cп^�j��.�Q4�CQU�_��pFy���߶���E��.2;�.J�i�cDFdu��>���4Md���x�1�, 0):<HM7(%���>1E�N��p%����!���<%����d�s���tF[g�0/I_�u�J��u� |u.,v�O.K�L�m��Q3mӷ�H�uJ�k��9.*e>큗 �it�^H��������h�T8��-zT]��� [ �n�\yЧUG]gأ�1!E��F*���[M��$2��E&y銪X��m�9k���(q�A� U�)�m����ɱK;�� �7���W�Om&���B�Y���fjY�Z��B���p�RV�O�tc�0��7 3��2�F=��0G穟 P�4���Q����^d��Z%���L�f��>������ø�ҽ|7���<q���$_���g ԏr��Gt��W�����簺�H����/*��hl��˨�/��gz⢙��Ę��s�[��s&��W�8��5B��E�U��(ۜ>D��8f�K�ZN��ׄ���E��I^��E���]�g�-�O��7�dS��&X��c^�YZ�)�駶#�"Nc�kH��朢cŤ��4ͣ|��:yU.�Rg��yr�[�a��nzmVp�����)��f�v�����*�Y�H��{���2�_!�<g��Aԥ�_)�z�3��T�0��d}�d��tzODm�`.r*��w;��{���p�S)q���g�M���e����rg���J��g�v�e �@5ѫژt�ֹ��K�v��b���Ŵ�pari<�1g��f;�&J�IV��&��� �#q'���]OU+K1"_���3�w�l��^�Z��E�qJ�� ˌƒ�&*i�;��h�0B#$7�k�*�.�r�:,Oo��%���]����ˊ҅"�G�\'I�:��E�]����o*X8�mQ��T��_��6��{E�8̯\#�jq�xvk��u�g�u� ��������-�U�����HI����%ɴ�g����F��+qF��e(�A'�C �'O��UM9"ʪ:���Jb�QѼ"��2�Ke5Rַ:+�3ص�G�ܫ?��x����LF�#�)b̥�i[G�/8H�CAh$L���qT�C��͆�"��kB��-��Κt(w�3��L�� @*�z�3tzW�Bg�y[��6�-JO�q��7oM7��..��;R�Ѹ9`Gec$o��[[݈�F��2�Ӄ ����kYK`+�8S ��M�J��3�u}u�8Ȑ��o�U�tL��f�3�6��lgM�(�o*��wv �.�ꛫ������mc��;,�6_A �q]ghXծCJ�R�=�.�[#����� �]@�`l�����uӥ���XzjKl��(�,й@.���Z���>��7$��\p`z���Կ�+���g�������IR�(�1���_E�&�(�ݍ ��y��T��=��R��&�s��B��إg���2�'�5o��Oj����j+�uG�<� 8'��7Ӏ��Iy��%��d�Gl���l���!;R@n<�d��U���Ǚ�ڄ>����s���\�p�Z�_P��,����P>"w056�`��Y���DGgM��AG(�K+�7��k�Q�YTd��kFh��8墰���p6�o���J�ж~q3�F¦iL���O�����0ث�٣�w�BvQX��+E\�8��,3��e�|����X;��9��L�oUY8G}��9�a]9�����Z.;��9�8���!�|��e�*4*zb�K����CH����2t��\�E��jrwJ?�8gܘ{C���rbg&+.�������%���#� ��s 7�Z�K ߕT��f H>�-���;ɓDF�~�v��R\?�D۫�fF��gf�%��kj���]��;I}1��>�"*˶��]���ː_����/��Ԑ�*��ln�_6 h>����IMj�-!�j��(3�t�{�6UR�U������y���B�;�H�]� ��C��7�p���� ����&��*��i^�_ݱ����$�Sp�b��9Lu��4�|m%�"���@��~o�)�2��s�a~Q:�B$���4a�7 �R�`����d���C5Ϋ6��u� a��S]I*��HH#�|]5��o��p�K����K�M(Kw�5���V��9��Ƌ� >V_ӅF�[���S�X�\����ƿIM �/A)�鬨� ��������n�F���r]���4�:6��ui2�����E��8�fQq�N�jv��i�|NA=�S�#���R�zd)��'��ҕؽj���(Cu� . �[��:���{Wf?� <�(�!h�_�M\�8���*&���K�<'%�@X� :���C�%.�J�lk��U�z��]Dn�/��F��0��Ak{��J�N�Z�3���iWfC/`�h\�֖y鑅T54�\0t-�Ȍ�L���_o�87���՟��{�F�zIj�1?���B*�4��}��J�-1�-{Rjk�*h�D�Y�c��`2�G{��) �=TM5]Q�W��C }�(�F�E���M�@��L'�v95B�f&�6��qo���p��TT��>nQ*� Nӱ�A��� �B��?g5� �]G�S5��[����W.��K i�����wf� t0�wb%)۩�On��b���c�`��!�4�v�˸��!(F���$p���-w| �6�3�0�z�\LÜS('�� E��$ �A|~�[����/ �"����H�T2{���Q�a��%6,t�7�=��\ ��v,� �:e��-�i9����N���o�ץ^C6~�~Ȫ�H��!Zf3��|�f@��W�Z��s��,|�����}m��zmdV�b�*r?� ���6ZeD��AQ��,�f��eC ����Br�g�Ͼ*1)��ā�Q�i�G��7�X[����F���e��E������p�e�5�}���j��Fj3�;��ފ�v�?�L��[�%��r�D���6���[��,�s��WTa�s�n����׆�=����3�ѽUTFD�$%�@Mj-�}�0�\�@���6���hF^53�� u�fh�M]�h)�<�+*Cr��-��4�zV$��"���|�e���o^ì�=����p�����^ԍτq����|-��U���4�6����yņ[�-��h�siU��o*�9��M���݁�z���E��mz�����uxV�u��p 0��!A��*�1:��y�R .ч���鋛j�-:1#}43���2 ��f�Ƌ��[z) q@y���lAa�Xe���P.�,��ᢽ0�Q?;��ٶ�L��B\j.kA�*�s�X c2-��I5\5�(Dw�w����y�}}��������~|��YRPڄ��;�Nq�0*Z2��*5�XO|(A�2�������e��g��AO ��R�dE��6���N��k����5 ��%���7�w���ȶ�j����t\���UX��el�,��P�<��v�t��Q�DŽ���"��IF~#���S�9���_��쒌�� ��D��Ś���Q�[ �_�=&*mI��4�phB+.�3��x.[p�9��Խ|Pjx�p���.h 30���7��"-�BTZ\��kϙ�%>9wry)�����Z��ih|����f���w��y6V�;-��J�Vd�4����8@?oϸ�t��;w �(1C+�[� IY�2O�k�\�b'�u���� ����Q�܅S�ߘDQ1 h��ϸ��>���)p&�D�㈺5Y(�X���=�Vo�@wKme �~*�y�a[�HW��9�8��o������Ga��(6Ъ�@n���Q����~����h#F��s�RTIf^��OeՌ��/Y��<� �_3�o�<�:��5xa�4�B23����SG $�w2�{T�H�����*�iTss,&W:�ݭ�Q8牔�,�k8��C��,G)�����2�q�j�<^�"D\Aa�h��T���骾���KR}� ˱I8O��C}�&˄��ܽ�$!E��8Q�Le�^)��k��%iԬ���r���[���sb����J0V��C���k����W9Jr-s�������_-Z��;qg\�_T� �N�x�D�f�M�z7餅�T1�Z��|$�bT�+U�x���(���S�)���];ی[I'K�$OC���W����z�˙��㶽�h��@�ڐÂI�g��h�1�p�x�N�%���,L `nIZ) ��hk���,6c_kW�U����v�{�?4��}�l�9�P��ցZ��Jl��n���"P�_�'c������g�AS�r���J5�7� ������J����7B�Vh�Wy�9V��u�0S�z���>��)�]��5f1���I��\���o�}����+�j<�Rz�8Yk�-ܾMjl�q ,�&�ʰ�r�E�/2�mt�oPdA������*9����V��T�G�j�D��G}�.�F����LA+�4űb�\^ȅ�4��m�_h{%� �5���f���,��s(�ڹ V �0$38QX���_PC�f�N `b��&x��s*뛷�"G:�pl ��T����Җ�j�^Mwxa�� U�I�+�f-p��'� ��" ���a��ͥ9�c�s��f�v�� Tr�ALm������T��3ܓ������7u/ڦ=�;1���p����X ��V�I�m��$�%��$p�@��;s�Ӗ�Wφ��n�K#��pC���?���-��/mxg��+�0�gb6'�uMBG��K��BS��XNԇ'���ò� �6�2R�ݪ��Α��^\F*�xB��)�+�]��Z��&��( k;5�3J�b�+m7~�Bs9O�4AM�E�OR�N�}��7~7B �IKt�Wͩn�;����ow�� O�X< o�{��e�d�o���@2XY���X�ݓ��<��ӃXx�-��4��L���T>6*�e��h����V��G�B��ɍ�ư�!���ę@ЙVh�f5�"X+[�s��\L���͢��Ő'9��k ���C_v�?��O\�hn��n��� ��ߙ{g�ޜ��e[����{��i0ʲ��PL��}�e5yYNIF�_~}�۩���A��gC���碱|�ķH7��@�����j��g�}��ǻ�T$ߩ�$�5~�?RB�@����F��0qx$K�ac�k&�,�g��MM�6��4��YO{�����q��41Y���~[��l�Q��q3Q�(�_X�,��Iw���$F��-�j �w6?J\=c��aT�Z������{wm��I��x�q��,� nw���sAF"��~mǶ�X��jB0��F4����0�{�Y��ft^�Z�'tE80��=i8��<�d�-oLP�5��H�̲�e�=��g�Zfy{��n���w�>��E�|�B=�J�y��#\�;���>��y�hg�6�5����<Ǣ>0��;jvڀ�}�m�"�w�SRA Oĥ�.�B"*�RӃNG��Z� .�A�4�F@G�~SL��Vo�3��s�Ԝ"l�D8�!%Z "���}��^��BVނ+5�yI5��`I{/�wU؍�D���ܠU�Dp��7����|�i��4'�v��3�Ӏ��*��&�0d��e?�&�{���|ؐ�&)No��kEP�g��3Y$�C��6U ���Þ�Э��d��� �x� 4����S�,ōe(U>{�gJ�뢋�b���$����Mø@��j�-�0CcfE���d��6��Z�5�_�Dqכs�tV*O��'��L�[���6��R�p��@�}���G�y�q���y̽_����p)C���G �Η�`�%$ �"�K��;j�id�jF2�5M���n�5� ��g~�CK����$8�^�E��E�VN�JԈߞ m�OX�!�3��a���V�]���-Ơ�����>'����� ��+z�%<y�0�!7D �j�)�$8�=ך_��܌EG���X��lK���R1��ǥl�~�K~Om�ls�+�ZVs� \�F����|\f�����^A�`UW{l�U�\��P�!��+���U�T�Q�-�?����@Z�>Ƀ��`�erDt�L��w�|�v���E��g>Y�f�b�ѧ�t;އt�0�d-&f��;x>(KLy�֬ee�uN���,����.��uc��6��ԙ��8���$�=��E����2h�"�e��<�͠����$�����^�M�HlB0����i�'�w��謋���F��zԛ������g�kK��@�n'�{o�џ\��Å�)�]�::ݚ��ʐ"� ��1�P��w��M���%�f���祺 {쎧>����k�b�E+�(�z�N��u�$���KU�]�����L��>h���E���U��N��+ف��z�>�>^����bx�z�!'Rӭ�ɨ�lW/2J�Ty H����.�K�)]��g�����s��_f��_d4*r(�0r^P�]]�CV����?֧��x���"`�??٘���?)dž����p�4��N$GJBJ��1�b�,��J���fN_�[�d�@ J��z��5ނf_N��WR�?�Ó#�]y�^OF�oB�m�aP"Z˷��_3�.Lnn h�>ɡT#��P�I/.�X`�\�K+O�atk6M�q�s�����fdK�+k���מ~��Ed�prd�Qڜ0��{��T \����*N��I�6�Y8&_<t\�LU2A������V�[�,B�`��V-���)���������%����Q���i�OnW���2�,Ŵ��8T^x�l�¬$�?%`@pUt�N�� �,���=v��葠����F�f�v�=�w�05C� ���$�)Y�8<�\(�͉� ���Dc�]��+�V��К}vk���X��r�*�M���Aa�.`>�ؕ_z|��H�j���+�|���:�J l+�u������䷿$�<��*\e�^$�8����%l ����O�ÒJ[�K�!�#��I g�0ſ�(��&��9��+j�C/�hw��*�����Y =�#�7/2��ԏ� Y8澛�����A�&*A��n�)Ez����pV���3�L���w8��!"0V)���j��p����Lw���ʍ�9Oa0���v���u8AUGdFM�zL�n?<�tI�D���ď�h\BZ�nvB�V�LV �8#[����PK�C�Z���ܑ�3p���H!�o����_*���D��OAw7,} 귢�c�F�@��C��`-t̍xĝDž�H��@�=�����P ��F�ߒXK��y�tʅ�Ƽ�R�.-��g�Ɍ� SEA�?Y�=� N�>�[cyKWn��r-t�"� �� h��"��ѩ��=T;���Q�n�W�����g/Ԁ�H�/v�T1�͓�4�ey���L��m�P',�������:������h' �Ӝ�;s2q,7����Ḑ��Ծ('�.�mx �}��`�w�Ml�i�C� �^�BG�Q �ť�~�K���i�0��0@����}�����'�="D��G�b�`'�>�p�Z`���F��9��n'UҐ{��i;���c���:kkg�� �qi�d꽈�SV5��sP I;�����}�x�,$�LP�Zᰴ�!�B�dl� <��WaA��f��Q���Ӹ`]E�[GR�"��{U��x������1l�!в*2�J��́�:9���/.�|��e�~���W�$���n�z�|�j���>F�K �:pt�6��I�~�;ڟ�ա�y���ʍ��/6��/�h/�B�e�uRπ�:+�=��N{��?��K��|g1%߃J��_���)�ջ�]��ׂ�4�"��1�]�G�x/O���q}V?/��G�z��?�)^�� Fzƛa��t�uG�>����l]���QC��lq k�V�j2h�d0հ�$`#/�ZΥGQ��H�������Az��Ξ_����2�0Wqۊ�T<��g&(^��L���vo��*�̂��6���@�h`?#'f!�E�иE��%��^-�x�4���:*g�;g&B��u�G�L.@��4=�),p��91ݱ^q�F�� �b@ˉ� D}ø.�?�{ƍ/�h^9��R��T"^.k�v�v��634�дu�9ޏ[ �j��f�U\�#P$���V� ���A�yZ��/6�(z+}���A���`V-S�����;έ���{eE��u�J��IK��?�T��"Es�/��I�đ��g[���!�}����Zs|�X��ȴzV�K�j��>�#�|��" R_���@��,�\;! ��7�ُUt�fU�z+�AL�-^�G� K)�=���Tc15�ƸqJ�v%kFWv*�](�`Zs>j;گM��[�]�o����{ ��0��5�jîrZ��g�A�IS�SՠԢu\At&ۋAY��1�����io��#hh��]l2�iX�3���Fj��A�x�t�>)������V.?� ?%KҊ�dO����5��Nǭ���X�]M� s$��c�>�-�Э͵�M��MG��N�Ӌ獇5l�J���x���{� l"�f�0X~��)oߒ_J:��|UMoW� ��A��P)����5lU��8�- �'}̲9��4�)��28�N�D���N�3�Ws>��XS�E�U�儋"V���r��BԸ���C�o�1��[�w]�:� ۱. Z��woo��O>�Y/�>�3�-�XCP�Օ�1�:�]o�7����4L?�.G~m�}����Ӧ�����Z��,�����4*����g} ��4�D���Lc���~�\��Z �3@��k��ջ�5hK� ��3���I�i ���q�T�P� i���Y7/�z/3tp�z��}�͂5AE�)��Ϫ~.y�e�y�d�Ӽ>^�o�j�����}�͏��6�:?�GUk}O&ؠI��(J���мx��5��K��S�Aޢ�u�"�$�P���J(���H�:Npkls��CT�XЬȖ�B��#���vt���L���!։L�&:���?�O~u&;<Ĝ<G��<K�[���:=JP�Ó0���@�M)��53S@~��U�՞��DR��_�Ȼ��+B��SCG_z1�4��W��6i�;uNY�Z�er��-3ߌ :r�>�����%f(1�+�UOc=N��f�V���l����<�z�@&*�����q�yܚO��5�&���=N�>9ལB�ۑ��i�j�J�g�Y���>����E��y�� �� �x�)���QN��U��A�ɔ��NA�����Oꇅ��ɿ-Yl�����@��H0;�n�Pu�iͷ�2�n�9ëg�����tDbP��Ǔ���˜*_����z��&�l����!eڈ$6=�'�����s8Ί�u���չ� �7�lC������ u��;u���=� �:��J�&��i��t��O�KV?7^��S!zq!�i�{��o��t�����Q�+��"y�h'I�ST�}�J�ӳ����V t P���������~N��_��G��N����\RU6 JieH�_^:dy<>)K��P ����<~���š��b�w#@[�/ݣ����ǐ�ՠ���*����J]7l��zNJ��� �9Ή�L~?�9�B#�OM1��g�Vh����ƣ�+X��iE�߉#?�ۢn�S)2�yEw�����ݞ��9��i�I���,L�2�J>t�C���C��_n�Ua#�������S+6�W6�'��0@�ǻ�50Gt��t��?� �x�����C��㸊@��v0fX���F�����Fin�� ��V��)�r��1���d��B�\����/�o��y��F�?38��@������_�?����q�xYSh����}�%3�t��Rc��Hj�W�q ~��Y���0 &��U�Ӹ�� ��p��׀=��ࣘ������p)��h���ɕ�7���������o"�l<:�Rq�D� ��^9��O%�#���A~ō#s�T=@W���z��W|�UZ�vO���T���kD���0�t-�~��n��e����ҵ � �q���\]�?;�!}@H&1z�����lq�}͡�K��I���f@�{�j^`~�����P�D�ggȤ~^+3��q�5���/8�@��Vu:(u,�>�g�y+*�d�˿�� IH_���N4�� Xue�����P#�V�>��&F��l�s0k����QA��(�7���nT/�iԽ���G���3u��t$�[i ,�.a@ '&��������l�R�M2��������6�]�WN��H��J��*M�%�b��߰��]����< .#�z��llf��|[3��<�����{aK�U��&7R�Sn(�)R�sA�X�й6��3�40k ���� Y��˻�8Aq��`Sʾ���.��Bõ� �{�e*Sm���T��%����b��Y��-�S��"�m��T�Yu62��g_�&�\#a,�?=Ϊ�l��U+t:!�'��ಆk&D�������+!w{܀Zce �k������X��]j�V��� � �~~ȷ��̰V ����X��ܓ�6b�ga�+�Y����<�P�+_��?_:��A�[�K��3����}���-n�6�u蔼o|Ud�0o�=����#^J=#^�uY��,�hN��?�˹�\[8ETW@�ѥ C(�[I�Ft�� �ߍ~�e��z� �N�3�+�;���؆Z�Vzc&M͎��5Ɍ��k��/&��ẍ́���s8��jjaG���)M{UjN��z�Lހ���e=���4���˽��FMJO�I��jvX�zB���f�;�q~ǭ�>]�V_{{�;�ml�h���pȲ����.��M����1�Ԕ�� >R�1�)0�A�"9`�||/Q�bQ����?�#�&(NʋMG�� �M���Z�gd}ߍ��d�+�;������*Z�2���y }�_�\e�(�lup�T�&V-�}P=Õ��ǚ��v��p�i���k�j�?!�'�`�l�e#Dk�9j� �z ����f��">Ba_2�y��U�g����u��"����)l�N�c{��&��7�.�~�noZ{��9/���ڡ4^�%�#J?c��ˡ͖1��K�����[�X�Ѹ_����E���wo ����˵�v�RU�K]��RzY����cj�y�!';J�b�^ݧ�E(�\���5�2/�"���KZp��'L�g�������D�(�p;�d��bۊt�E;m�gߓI�+�X@�qK ,f��n��Ɖ,i���ݺ�uq�d�#�8u�y��I�p�Y$�V:d�Z�/�e?�`9�( ��٤x�}�rdZ���;Q�TU��)�M����4k9C��|ϊ� w�Pn��F �����?��:+]�Q�6�UxD#guRy2g�tl��Y$�348C!F}��E%�N�U��6��X��6c�M�j���e�)2���ւԴ� �F��W{z����3�灊6U��q {���ԏ��-�/�1�l_~Pg��fv�q����,��0wܧ�h���kB��#k�W[�[GA 7`S����Ա�:�X��#�&�Ym@;����E�&�lJ�mJ٠.���� �Ua�>(&���E`��n��}<E�00?#ٶjD�sn�q�n�V���x��`��b� k r&6'�uwS�̂;� �M��������H$$l�~�MU�$�K��VE�m��"���,`�0U�e���^��q�x�*�4��d�st[]a����Ոqͩ�)"-���^��~��DW�o��E3F�D���e�8`���i*�^3��g�;r��7�𑋀��ND�)�FG&�u�B���8u���ߋ����s5�/}� ��H�5������~�f0�"L�Z]iPy�Z��P���7qA9��2�dO�s*�χ�/��y/�Ow9�u��o������Ǫt�����/3�{PQ��봮� � 3�T��3��(����m2xg����ִ��Yf�Ң���Tǹ< 4ZA�ZS�䠛�����sk�F؏ư�U��A�r�88��f �ԟ�r�=��L��oX�0��PI����"���pbYxg����C ��CQC��v�:i�� �`���Z����d��Y�`��V���K�n��ط�3Py9\h�C�LO��L�K��uO^�j�TIAO6}d�jSa���;�tu��LIt柾�a��"��q�c���>.�Ī]B�J�a�m�I=3Zz<V�U��%��!%��:t��+B{)�r���0��s��Ͳ�[W|����]y%'�& $�9s[���R�#��"��k���ܕ�Y����B)F�$eI)�\0.�"�(@�@��\�V0���(�,��E�j3�v���/B��t�iЁ�� {a6��ա��1IL�A���u�g�N5�=k�&���} �p�M�H��/R��'���h�zԆ�4O��\�tHϙ��[�}z���%�¹�K���ך��R>i�՚�*�e��-�z�#�K�f�R`�2ޒ���XƗ��$�-�l)<��wӠ�"������}���G*�{��5o�ջ豛������9���g:D���n�O��Q��f�Z���#�E6j1v &k���3�{�jb���x��Ds8�-�R~v5���Q���*�<���G����P2�kk�D�.�qru̮ڤK�pt��[Gtl�.�O�S�ol?���Deu�����;B����'��ٍ��/v��{�������^�x���ֺ]א KO!�BѕMs�[�v����noTf���X\Uc'����ǐn�����<=� ��-�l�E�6�O��b��7^�?�� e�C]-c���B3����b��ml�e� C[��k@�SшL� �͐�2���:��#��IuHW�hp5oB][㶾RF�s=v��J��z� %��;X'�u��.��Ė'�!�m�%#K:P$*�3K��='�m <M��_�5S9��������>��`q��.jQ�M�5ƨ�!Qv�0W��[�������Di�ESM1/�Y��䨠��ѱV}��ä��m��gv�l�q{�5 Ŷ|��4�{� )�U�R�&Y�$�@Ca["I��&��N%t�:0a�@Y&"�Rg_<�:`�V�yp��P�E��r�<n�Q�*zuZ�v�>5� M�iWl�e�.dq��w0+9�Ӑv~��Hk`1߄�/����`��b�Bx�5� &�`�;��'0ab��qAL�b�11IY�;�zҔKl1�ؘ�u�W��h��� P_N$7ȃ^|���� �D��1������\L���es��N�yƮP ��K�lw��s`���y�_�0*�����<XE����U靖^�r�w�z��c#�z&�ݢG�Uȣ��6yp�ʪ��Eٮ�J�`S�~T"%'��&��Ĭ�T����A��q�d"�,��c ȥA1�9���fa�H�R���|A�L:�*���,Yu0x(Ч� `h0�K��sjDT7�~�EK^m���_�O�9� ���R��Ϋ�,� Iތ��"��و� -<��}N����� E�s5~i�*�*8yiF i��z����g��w�ș�T��[e�47ޱ�.\����x��K�������H��H�,��ۻ�_ւk�5A�l �8�>���o��X�)��D3���|����3��C� �|lJ��p�3כY�F���b&e�qm,����{�m@� �Ʌ$t�/�.������j.�����Ɔ`m,7��h�� 鴔��b`�zaN��k�i'' ���<�w�������ʶ|Ţh�¿|v�4��P�dY����< |��p�����9��� 9�!A#'���F��j���pHND`��w�-J��Ge�YlY"W9s�A���ǎ0����:0�p��7���NZNH��V�0p-�I]��p��&~�9����P� /������E���sX-t.ƅ��ݫ6�]��U~����R���4���Io#¸��\���#�O�*=y~�_$��՛� ��_[�v�?'�C\���-�i|����!�<��{t�wnQd�ZS'-c�Uer�BP�q9�Jz����v<����7�Q3�,<P����y�IiPh>��ʇ�1��u:[X�^�0�R��]�aA���4�%�x~�~yq$OS&�W�{,�����s,��'�3m_T��Ə�E{`��Jc6�S举AY��"��! v��@>�"d���a��5'>�Mi�:���C&+J@N�bU��D�JI��?�/)vR���|\|���_��EJ�!z���9R�: �n�FT�"JOO]�V�ʶ��t�[-��L��U�ퟴѦ�Pmc�IO&r�<̠�N'Wϛ���$ ���g#ZP�ŵ����nV�X�g vcmp��D<�x �w� ����eH,�Y��ۆ�Er�}i⣬��v����ʌ���L�Q�I���� ҙ �&b}��B���$�]�H� ����4I�g>����BP�&�q�$/�e^�<�>���GVW���ZAP��:��X$��H���0l�Bk�% ��-m$Z��n�=�vD��E��C��B��;Z�U?eP���[�K�_a�2��<0kؔ!UO^z�.W��Q�aj��+d����prY���I�Y�_��P�s*�S��:|��],�ԩ�&^�M���'����ᣧj�� �<ȓ]��i���sw��8c�,�z��ߜR�f�"����l��Ş�-��TFi�������g�y�R�i���p������t5̍��r>X��,zO�ߜ7O�������2�#�)�"p^Y~V~{p|���e:v*�� �����v4�8�Bz�X\w"��n�#�%N���<����Lg��ϦCݩ3Ny.B����#�tB�N�q �m��v}L抪P�D�!J eBbV/��^~0�kY�n�!�%�^�ɵLb�c��*��)t;d�f�1�'��]��L����l�rM������^��<�3��^�K�QAޑA�a}����TË� &#��Z�u?&dE�^��!͠r�fþ[�M�3�\H[����2>�v�%!�l1"�@�\�e�v?;�sm_L{o>2Y�sc���15p7oS'�̺��v�����u�o�`;��j`E��R%�'N��RJ+#� Q�E`�1��2�}ټ$�� ��7�ب*&�nuZ���Q�+��ec��1.�n�,��#�Ҿ�AIJ���"��d�.�ܥ���_ B�B���ۯa�@+�̉d�Ғ2}:WCV�6�D{$ڃ6$�x���dp̸�l�Ԕ�[n�tރufUQ���q�����$ P��o��4���y����Ds�|��(��d�1P����#k�1%f��1o��H��X����^���I��2I�V�zU�s(��:H���}���������Q��z��:��L�*$��Dž�y���J�;��<�.�8ڀ����u����G��d�Ԅ�y�����5e�.���@v���N�%�K�n$Y{���/�>��Շb�պ���P(�$���?�yM�`�=RR���V ���+�� ��Us��'�S4���Be<<�hpJ<�va�;���|¢8�J�/x�Y�K�][}�QB 7��F���x��}׀L7�9�]�M���e��g�LѝA2��UöiJ�a�y�;B9iR]&l������_\�;G=;��<}��2ׄe2< (�a��Cx��k��sE��j�RҪ����4�Ip�(QT��X ]�$�G�k^�L;��m1E�8��,.�$�y�X� +�N;���cT˳|�:�� 3�ޠ���[^7^T�j�3�D�/M����-]ٱ&�Jǒ�f9��zw|O��3�F&M���:+fh]s���U���l�?�D�jn���'K� ,촳��{�X.|�~��2~6��=�=��O�|r�һ���k>IF��ͅ��nH��,��Tj{� ��H&ߍ^%/�Zn5��O��|@D\-�ö�;NY����q�L]���D�!@�V�	F ��!֥F�:8a�R�}�ä�&,�I(��{YW|Ӏ"��Z>ά���D�SpX.�%g�U�i"0 ��N@ ���-y���,$�u'�Q��|pXΕ�,~K��lU�츒� ��,�M���@C"5v*���d�J� �Yg�u��\��/|sW�y�Qq%OH��Ұ�RC.���a<[O����w��8���I �J����q"��6?�Pjm-j�C��U"g��� ?�>��CL��$%��gY���~��.���� ��yt�w��K��S�m�\�4���Y��7kY[�1�|��,�Xf���˽���Swr߈fb ��@�0����3j���6_.�F��(�1R��Ķe�� �}'��/�T/Σ��?��n��r���3�:)3/�<ժXZ5"7Gx�42>d�S[�Dҩ���7��0� .#�zC�qr:]��|v��v�}|�*�ḉN8IJ]�H'��m�̈́�d�z�F���q`C[ې1I�� T{It�~��ܬ�衬W���y��NQy����Z����Q����n��ܓ� �׃�:m��2�lTQ��*t���j����6o��5�����z�Cb�UfX���:�yޫ3sr�°Q�1 ��Ք8���t��:҂W��c+�� yq|��I$+5��4��S^�Љ��b�y��w,��p(��p��;�Rdy]B�%����O~��b�Ţ껰缇z����lDr�K'��1� g�9�S�,�&�/��+{"��I��%�l�$�^���R%� i}T߅e�k>H&#������;�������bk���/Ma�2Y�����Sd�ňlk�z&�����W�H��8�Qb&��ON��Z� Гu�hX��~bPE��4a�@��x��f�U��W�[��E�=��s���*e"Li?�bb�RysY�)�E��+�Requ��r�]SR�I 2P��.�b<M�5/�����TNW��^��d ���y�%�ݩ�~3��X.�h���w�7�Lԣ���IB���� �`��3õ���Ƙ0�;�m�� �nH�I���ŶjZ��E���]�w�^�F Z�6�-�m��`F;�p��>���J9��S�+(�C{x�l�Z� ����=Ň�͔f�OvY���"[���Qxچ:4k%�k w�kcX����`�碑ȗ��$�*�N7��mJG)L�j���"M|S��C乍�G��VDN-E��c�KV�5���!L�m�.�9W@�\/��Xԡc��#��#�'!� ̆V�ݜ �+ܱޒ��ڂ?ou*ε\#�{j�`4���C����XD�F��F�!�h{w���]�{���!����$�`����Ն�������%���#�/��ԁ,���n�|���`�8y:q�Ǻ-طh��E�_'����^�) D��k����H���ޭV�3d���mm���S�Q�"c(p9���L�cm�չ���>7�E�y�NC�-�9ψ�nDo�y��/�`8��&�-h�X� �_�ΐd��0!��^XWMg2[��Uzm'L,����/� %Ou���vɞqc������ g��t��_�*������ jM�B��2��_ռ r�� �<r���ek�?t�f/5d���S���n���BV9���~.Ϋ���i?xbG��?̻��n���q*l�|��І����|�*3�� �}�^���u��c-?(`�����e�sK?���Qp�I�<Y��𮆝P�\�T��}�N��#�{By���7<�=�iF=?O�c�Ũ(M\� )�o� �����+��/�s�<O�e^�����?R�@JB9��2���g �ٕ�r��1 X��|��!�ᘪ۲QIi�y�yWJ[.*��m�Â�S �n�?�}��U� /��7?���q+;��v�������#�[���J�U�]��� ��N���p8��`��w���S\�t}��O��#�;'�;�5��*z���_�*gi�z��T�;���l�I=��Qlj�!�|��W^ֿ�|��yAеK�����4�QhѼ�#V�{Ά�ky~��m|�,����H�����%�b�S�[��m1K|\f�O↱�i�oA���g"<h�2�@<5f���ą8V먑 ೫��R��Ǹ|e'O��r�ڦ�K���t�6�ކ����x"�Þ>i�*�N��;�2��[ϊ�]z+N���mYV/[��֑�/��5#Hc"�&����c���fY��+Of}� ���DX}�R=1�qY�E��H#|7�1Ecn6���L�〱o�d�~A�K�8zv�՟15ӥU�-�T�� ��qN���.�%[���)��=��n��r���r�P&���ɾ�b�o�U&U�{����~cP?N�mI@ϯM���}��m�iC���{H����`ZҢ{��7�g�_-� e�U�3>d�Ȝ,*d:6P����ͿBЩ> 3X_(� r��(*���N�p�y�t7,�V���d|�R�nܠ���Q������Y��Lb��,�9ƽJ�%j�s�n�L����p��5���!s�������]��;�R�����q��6��S\�<y�!�P�K��$�A�:�>1Ӑ����<H;C��h���.���팴�C��;����kCB��;ՕF��� ��OҎ�f�Ӏ�0WP5.D$�d�т�J '#�N�����+m?�+ݸ/{݁D��V�XXF��J���qH�+��ā�P���ê�.�|`|n&�>�����'���k;��rɵ�J�T��*�u�H�3v ��vb�S��{��i��r��������\M�oLK�V���\��dv� Y�/�F`��Ct��/�+&�{�gA�!+:7S��_NI�8�ptᒥ��ߴ����!�,v�6�%O�b�CL��L�6q�U��P�ë����l��J��7���C�¨qƫxv� �Ȥ#��&��:S�$h�<X!� ��Պ��e�v��������R�|��$�B3��[��)�F;e�?��Q��C� �?��G����| ��u�� �En�\�R%�����)�p��t���^k[>��H0�.�R�u�s���k6� ��8���Qu�ӿ�ᮓƁT0t�]�x��1 �pG�HV~a~�F�E�,��?�wRB���/C�P/�*ƺ�j"czPWbq_��u��Y-����"w�|^�)�[���-=I�����0�ɮ�+����V�d���ƻv����hN�JNǀ�>t���R�a�?�Xߔ�U�&d"{�R�乇*2��� n�i�7O�\wM8��]i �̡����N��d ��%o��\y������%} ���[�l�̶�ߥkV���cz�qs�����# `��ӵ�߯ �� �{vC��Q��GK�&��U���6>���'�<Wp�xhuϋ���$��Bϩԉ0Wz,�\M��z9�� ���vd�U�Zv� �:4�zx�K��3� �T���3(�oy�LHA �=�ܶ�3g�����h��4�kg�yt`H��~�c��2b"�,���FL��W�Y�W��$�3��İ}h���}@u|@2���{K��nYF�N���x �L:I��g��l�G�d��4�ϳ�����31ͼ�w��~�W�S���!��CljP�,�1�K��VʩF�/8nmI��It+��[#�֧_�G�U�]La��c�i���9��zJ$h��HEI��^[��̤Ħ?���oy���܆�p��U����q���p�(?��"�)�-cF�? x����!��W����c�X��䏖�@e =��;K/�B�֎�V���2R 'h���D���U`�(��'/����/pɺ�Ivw,@���X�\��o���WL!0; Ĕo(d�o��{�`�r3x?�/�� i���P��o��?:�3a��~��s /��+,i���p�ŃL��7 0S�h6��+м�k���!U�����.Rq1Ӗ,��a0U�P���"6�&���V�j�)�wED�G�s2p�l��0@��Pو�����V�a}�Z�3m�N{���G �8�c������Zvѐ�7��jd;|o�˜�>���5�0lwY��MTX���R�) �Dc�؆�c' :#Z�C=��Z�N��O��2��R�\���H"��Z�7[��<� k�[�ᵹ�=�p X+�;��'���:L$z-g1�P���S�o^���%��6)��`��o����`�MN�~�n�z �1�a������I5����2�����%�����Iud g/Q9 [rzE�&�ͽ.�Φ�;4k�3%��5Ou�,��d��|:K���Z�H�Y�Ш��^���ed�%0�1�NӫJWW�s��F �!��yxyktՏ5�r*����ŕ���ZU�H��eY� ^\���J[�Y�l�JVq�F���4��Kbc2��vz���3'iO�Ĕ�$"<G�>�9m�!�%&z�ܿW48x���R'������Xq߄*��ټ8۱�Vt��T�$!n%SN����l ��[���E���Vx�$)� ̗K�LXQ�7Ga�O�r�n���)��H� DbN^A���B�y�\O�� \P:��S�r����B<��2��*8Q��&D�?�-}ɴP���K�7��n��"���.�(��Y����Jn%�`��5����g���gt�u��f���?�HH�٫�Iy����f���Q�3&{V<a�}�6H˧V���@�iS_��aC���� ���9N���1�b~Q�^��Ç�E��;�c�� s�P;i"@�վ�?���:y��^�_ps\��_���\��/'v}��=H?�ٮ���:���'�9�x�8W����C��t�)�;�q����Et.h7�������2������ �]��`l�j���I1)#]���.�y!s�t�^���b���%3���%�+c��{�wu �x � !. �?T�\�fT�����4wDs�&����@�$��G&�Κ1�F?^���0YSu�H'A��w����W���5U�=��W�An̆�׆��ç�x�Yޖ.�\�hb��r}�R��R@�^}fbR�y%|�v���Q�Z�?�C5H�n��3���nu��Bo\e+���vi�M���q� ����;s���$�#��3�Ky� #.�m�HY��Tպ����� w ?^@��?���̉Ba`.����){��"�F�ʻ��-�Zro�Fl�ki��o�7�U'��p�+����0�A�2T8�� L�h:]H� ��ᑷl�D�zn���5���yRO{ߍq;���#���돿�eԨ��.QS����L�&.df��ħ ���?�����W��𪠡�����[~[0_�EZm�^�[��2��וj@t�'����)��z�ͯCe�6�r-���w��kt��������NqQѠ�7������nE�x�!��6w�ъ����' 9 �^�x�EF�<=�.3%�C�Γ�U��0y(JS.��p�ic�QF��H��q����X�*�*m��֑�ͽ�j�3UIHV "��<KcM�zpa���p���J" e��(�ⳉ�w�<�,ϋ�Z�f�;z�5�+����70&�+G$7<n �Ͼ��B|�EC,�k�M�d�l��FI�0m�B��c�?9��}R�z��1�*.�x���r���'�I� �s}�ʒS� �6��b�#gv�@A�ڨ����[[X/��f,#�����Fx'��=� �#���#勼En� ����=���U����[�=�,Q'tj?�S�=guW��c�h�90�L�"=�9'k�i/�A��R������9?�K��^�5�'g#A���z ��8�&tyX�g�) W�?��`:�'slrb�תg�/���^ �#��i���᳢ @TBWQ(�ˌj>�LG�L��v?@G�>:>w���"tFK �j�P�O1%wJ�;�9 Ҝ���lSg�Ϲ=S��Y%h."��3��:pB_s\�e�h�"�,q `س� ����G�K��@�^���GtΜu�\ॡ�2 ���s�&�� �g(�ՙ��6�ܾ;"����T�> [�5�EL.�(rl��-ى'@��� �|�O��zh�O4�IVM�Z�_ ������1�=S��=�.�~��${7�3��#�.���w(���j���}T�d[ `�':��%�<����9�D��c�| �|gj*W��r^��18l�&>%H���ן����1r�yk�Y�����ױpω��w�UԹ�K�<^�ΐ�Q���r�!�$�T�����g�:7����o�c��Ȱ}T�Ac�N#�n���VX�IͶTʽ<$}�Z� G���z[�vjߺ�&��$��� ���%)3�P�Ŭ���c����eQ�d&SIѡ�[�c��ykdcd���_F{��I{�^��_���h��1�}�x�:x櫩2���3��elꁸe�f볏g�p�S�vt��f��)�ۉ�G��O�xkPx���L6h��<��X���eu�ѻ���MRe�S�x�ƗbsJ�{Ql��#i�^uxs>M�ؠ�m�\��8)�����Lˋ�|uq���4�;��}��'ÇY��*!~T�ET���4�d'��YN>��!^=�6�.�-�q}ȷ��._�蕢9{=W���h��0e��I�SjP�Xoj�2��B� ͒ܒ��\ٰ�A��8E���biHi$�[_y���A��}��2���GFq? q\d|� ]}�SP �7Ͽ����z�u� ���'�xs���1�m����&hr�3%�+`�r�2Qn&����D�1p�,���y�c��;y���S`1/�^����#Z�<��L89irÌ�g20��h�X?�����~9b��ɇ��k|��Q#_�;�c�: O`��X�G�ak0�k�����pH4��܉ ��q��L?��-w�/\��j��� �N=���=�+^^�D��I�|F��W��p,�s)%��<_3�G̙z���oc����~g|X<ٱ�>���Z���ĭX���"-o( VU6K�A��w���ͥo&:E�Z��se;j]4~��[ ��v}eVDIa���KZ�qKs����|HQ�����p���B<�P��0�́��)|�����qE��V�=���n�ą� A��i�� �ܸ=Ѣ����1H9�Zx�*P7tShD�7���:�7Ό�L�dAx0���]����ױ8��G�ʓ؟�|+E@a�O`���f���8�['q�[Y��ZB�j���I)�]����� �p�ü!��dmo�C�u�\m�t0 �5��>%��Ik4�I%|5�&�OzeM�'T����Z��k�ґ��:�R�,�o����lR�w�Ҹ����:�k)��ij�2�Ԙ��<s�ć��r0C҈��E��L~���Z�w��|#��)!����H ��*[:�28vx)$��J0���@�4�K�y���[V����%��<�$��<�R3�Q�F/� �����FZ�Em��\M^L<W�[6���'ݑ���g�YG#3�2���:]},�H���1����X>��=c�RW���`H��i%#�����N'd��İ��EΨ���8�p|(����3�y[`�V�p�I�ov.��\�;|��˪s�C��ˈM��w�gSu���\��8��"B2+s�Mc<Hk �� v��Z�R��9_�+=� ��h6,��rr���ˡ$"��KYZ)�Hc@�ߊF��.2F�K�4��/Ql��[��6 �iλ�$xJP � � �g�K٩�K���� X&�E�ѫ�o��m+�T��n�+��ѩ��*���D�Re-\6\� xm�S̠�g Y9v�6�ٍ3��5����_?$tX�r�� ����i��O���W}��m ��M(Cs�WE.F�2��X�zbPĄ�1����Rf�~��m���7���U)|�88�WW���r����6ލb���?9!㲓� �혤�I?�P���H�|]ȘCuw����� P�5! �u�y�&�H5;�`�V���� =lԖm��?���Tv����_^'� "��7_�:�2�K����l8 �-��(�Bå��'�Br�z[� 6����X��_�Ee� 3��N%u�1K�&\O6��Gp��K@/��e#6�B��w�e����"�T�m�p �I9��V@��eG���ȥ��t��s�����$�O�_���P�3h��g����_�X���o���z����3�7!ƮMQ�@�K�%� �v� O�Z�*2���#�t0�����p)� ��D�#�@���w���״dw3ټ�թ�z "K��DZUr��0���W���@��O��K9�h|�\7��o�9���d6��`����h4�E����Xy��ǣ��ř�e�}��g���b3:���F��qTg"n(~�w��7R�&DR^�ں����}�+be���L�O� ߱�R�����r���5���� 2;,��F Z.�)���ϊwP֟y�S(L6�.c%"�a�d�D���"|��\�*�ӒcF�{H���SB���O�۶�Qr� C�!�������-S�"I� (�Q���ӊ"�H�Ń9�l��!(ty�!t�=E��5f]�&��:��П�K`�lAI�t��D2X������j$\e��<����K+@v�~��N��!�h���>e&ƚ�,��Մ80�� 8���C��VMe�҆)�T<=��FkR>���4���k���{,�� ٸ�&o{��y_��qo����� �B ��uoy|�j�H�������TC�s��`Z&����)EI�>�%6�e�����Rj��X�s[�j�T�1�ihp�{@����OP+6z�V</�ܗl��;$x�fq��vKp1�\z��!@�<����;�a�� @#�r���Z�L}K"n ���O"�T*�����%ha���M�z�x(�d��4LJ�>&�����DƘq��?4�~4c� ]3�ž����1�6�(}&X�1�_3��m�r��4اA�!���|�$B'�0ԍRۓ-���Co�Am����ME%qS@����<^��j�hP�����Ų_�"�*�s��*��������������m��^�ʝK��l����c!ܶjO��@�F�h}�`mh4Ѻ��04��!fN �5�uz��~��U��Q��-Ͱ���7�z��e��&�=���qp���z�[/��l�G"rŹ�y�?x�[�i�K�4�T��}�ŷ�,������@`���g�Eid�������K����D��I)�&:��S�Z_�?&RH�d_�Ƅ9hx��7�C�8�,�!P�م�=�=S�Dr���Z�So�u���;����r3�ί��vv|��|&'a�2�d�?�hCP@���[\u������r�+6bh�C��|�/��Ž�o��ȗ��ɊL�a�d_i7�b�c�����x_�?7}��.�?�Ժ2u.$��x�i�r蕝���؆����q��&���i6�T�2���юX��8��c;L����=���Y}r�#;ב����hp+��$���"/�2.�L���a����u��9��Y�k|��7�]��?�]*�-a��`<}ME)�&��Ժ8_;��+Ƚ�V<��N]L�n��'����οK�H�"`(��8>g&Z�;��.����iE����y�o�M�Ċ�¼��I1�VN?u�AC�=Y0�XsJ�6�Ì���s�ϕ��o��k;��IY�l�w���n����v�k�Ԭ7��앹���bJ=�b��M�� �ɍ�C�̾o���m�ǹ0��2~���6TCH��ms_^x�ۻJ�2��������l��$,'�ڠ�*!ڂ��K( M5\h/�f�1�ֳ���<����:�c�%�T`rK�g��e�Xw��Ϡ:�'h�)w���>Ɋs �:�j�#t�s�������3����ƄrL��/�W�� a��*Jzu�0�>2�b:��6�3]j�)]��|�i�����+;u��c�T��(�3q�1�jeۛ����/�����u�Ay�m���X��Զ�(���l�H��8�~��V�#���6��,�=����R�Q>������ ����1#�nv-b3_Q�B)�)�"~V{���1�G �!�Ն#��aO��R٭ey����6yw#��-���5N�:��P�9q5���eo��`��C�?!�����R�����w�+��f�Y�=�an���Hx8�8���{�Jz͛E}/��"�g�~"Ӿ����� ,�w]ζ��V�p�UF�P��*ȳ>A!v.�]��r/_�m.!ӳG��'�p�:�~� ]���+��B�������WSa��ր����w���cxQ�[|�@�B�e�b����c��]���]��7�ւ�y.�L�ӎڑϛڵL�#���c�ݧ ���?�}�M����uīI�<�J,��S�6^ ��0/Lf7��C�g'��D�H�m��W�T�>�=�T�p/�.� U�o+SbZE��8����1�ɽ���`�ps���bD��"�>�[J)�^^#�:)���� 6G�O�ΊY�D#4�`�ŕ�:}�l��<o �B�1_�>-}tM�dT� "��oZTT�bUh�j� ��Ħ�&�>>M�'�T�gAaaOI��l�5l��N���* ·���z��4<Y��e��^&O$h8�^Bz� ��/[�$��(2��bS�6�����$��|R��٧9�Po(g꺚 QG��G-�7�b��-@���Ѽ�|�ZFz���ŧң79L�zL�&�L���s9��?�n)��5�5�m�:�H8$FLp�Zx�˳�.h?��m�N�����N���[�"���S��X0IA1̏�hF��G!����acp;r�Pw����x!s]��P=b�A�釛�U�"o�������/5�qo��n����2��b��H�����ˡ�.@\ʓ��s��-�6�G �>d�ZQ)�H��L�Qx�.�͛5�W!�v�})�iKԳeO7f�v'IL)�>�����u=ԑ߿�!�:ʽ�j��X���u�mw�l�V�t$���+�|��!�����O����Ņ̥�m/�zP���p)�*�W����=RD �YG����� �; �m�\�Q�a�����vfo�5(�����$��o����O��M��`�����'�`�\.�cW�Fz�c'cF��z��@T�;/����T�D�2� �}뚿8�e��H`(Vg�~�M��(����]0Y�L<��@2�{R��A�p�`ذ���0�R��;�5SlR�2�T�uV�w���@�| �)��Q�\e�4It�n o6 �\��0F���v�Y!��s���F��H��f�-��֍�+{�5����4#�7��u���ۋ�A�`n?��T�z~�~���\ �Ύ� x�=�Bc��g�;�6rl���j�w�d�H>�N�찾넠}y�~(�/~ H��E(Ε�Y���� Cc����hSk�����%T̶3�H�m$�V�ݓ��F���ȍ�l��}H�1M}��]c~��"Rj�ܰO�s�k�CO��&��"��W��$ŭo<b�u$�f�NH�z�5D�g�,�b0Ӑ��|p�P$�0��뾮�e"����B7 }1?���=D��2n1�8��E#P:?���ad�>��$ډ���<�P uO��c�ܑ��.���S V{��C�l�p5�sm1]�dh&HTk*����|Y�ЎV�<�#OE�i߹d�Kڤp�w0|-��y���el=!*p0�ԡ��[�:{=� ���Dp@�p��)�{B��գ��tzOo���9{�^��s�(�lR;�����8Ł<��K��(�B.=׳���H�(���֛M`��i��k�!k����M�4k��9�F��bgw�G%�#��]�L%q���``~Fv8���,�j��&�v� S|��V�b_:O�lP��@6�;�w*�hs�$pю�)��qQ{��x@���D���@��^\�[z�6˛A.���:g��f`o�o�L�lg�ʵ8��3J�N�o���ue|[�F�[C�I�V x�s�% 5>Z>�~Y^�$Ԃ���Q5�Kt�Ɍ��7�)fc���/�İ%���Q�CB� <�re�����Sn��@�$F����Y��O��e��h��tj{�B/O�� ��*yΕ��mc��`�R}@Lwڈ|�q��L>�ʅ��y4_kƳ2��#Q����%r�l��f$��E{^���[�80��11~r���#{�K�����C'p�h�#�ᇯ��Dי�X;���4����-�N�fc�A%m�km-~�G�v�O��A l���m�������xK�L�f�GއZ[4���*z=i�B@9�[�&��0.m�QFﶦ�gdd2���y�6cy��bN�*ƙ��[<`O)/Q�3�Y,OǤBϋ�9��E���T0MP�s��O���e/ �����ް,���l��)N,�i��=�_oy�@=v���Ctz]���LN&9�G��.�(��<֧(��s��a>��Q�6I6oC{�������>��� ��J-n��� rխ[j$�e[{"������K!�Y�� re챳��w�gY!$�KF%��E����-;��&��� jJwJ��ݠz7L�#��D373H� .���G��8��1�>�K��6YR�D#��E��S\�YG�ڏB9]L�qy��&ժq��Q^�����}��ۈ��+��Y�X����g�IC�i�5g�q4y��F��2�T&�1(4�D���� )�?�� �Y}�\s3���`�o�'���H�#� U��s,;�Ԓ��E�T��MF�la�ve1h��ɟ�POX���O�U�O��r:�x�ЎN��R��ƞ�n�,=MY��ZD� -1�Ҹ^�`MMO���A~yࢠi���U琾Kxhὄ��ׯm>n�Q��c�{=�n��rs��h�������tv����Q�ٽV ��mYYݮ�9��� �^cO��m�6aG^����o���Iz�tEY��VF�ݧ���ˀ9�cƦ-�s 6�l� �=D[���`�9�{M@ap�q6�Ip@�O=_����1ҵ�t���7�]-��E,*�R�i���?/�A��2?deu��;����-Auw_ Ly" � �xT:�@�=��k|XPϯy$+�|��c����]�A�8)�_�_2����d��r�#CpS����K��_�K��˯5�+b�q]�?���%�V$| �8�r�C�'�p+��pDV�l�N�oX�m^qq��G=9ʩGg�z��[�����r��t��Zu��%�T� u�i��nQB��`��f*�ʷ�ˏ�=��:���qJ�k�n�ZL�c�W0��BL���Y-����*�ᬻϩ���R���Ͽ���d}ǘ y ?ۭ�,�y24T�z^�j��ѓ��j��N��"�e��f��e �kti� �Jb�Un����B��/��f�@-O(H�H�'��Փ�w��,��-��G:�E�4U㘠��G-�k�#�� ~tAvS�bl��O�\����ۗ��V�D#�}a� �;b��Kl_6u��I����p��I#�n��(t���� �j�fc���_���3O�v��ѹ�lB�gs�R�oW7b�2�iҨ���](k���Ҋ��c�u�vt��k@ʣe�=�4'�ч k�uW^H<;�Az��N�@XHKQ���I����O�@��i������A�9gx"�\<2�Q���U'��e��r��P�-P�P6��i��Y��@U�K�!�&��z�X�ds5���/�6�W��T}q6�bq�P�0Sz1��%�?��s��0�����k`�+��Dv�p�;�e9z�pm���*���-:NAj�g�Vq<}�iW�W�����_%tR��|��%���_5��m�2u�)Kؔ1�Xڀ�ï�D�3W/�(���n"�Ke�w'q�Ւ<#X��y��e����r��&F��,Ou՟f�$ �x��.0�o6;\fQ�t�+sG'�8kg�T� �:ב4:��{}bx����@e�۔ Ҩ�刵5�r����۳�34��,��N�{9�W��K��F�z��k���d�u���d���c����r��%>���_�5�M�@.ą��]���i�� �%��k�i[Ǽ����Ò<FU[$U���ran}�K�� }��Φ���NÝ���%�۩���:P��G� ���<�"VTj�+��s�-ki1u���~�u�����-�U��ݏs���uC�Ѷ���n�d��-ao��3& (L�*^7�KKNt�]�N���K!��ܹ�_\�m������<5{���hJ8�5�J����6�E�豇Q$}VF(�}F�����u�yKO_���j����* ��)����u�c�bU���e4 XZ���ФL��2kV�0���{Q߀M<�@�b~���m����#����K#ښ��:����Fj-6&;��y�i���4s�R�;91l����t��J'��$���&�WUY,a1_" ~/���H�J#wa��uN� ��d̲�{�W�����̯W1�c�I3�Og��x��8M�_����+��y;Y��sy�f ��By�yɬ�I�%@)p����E�u�!�o�j8�<�H�K&�D�?%}B��7��հ�GQ�6�,�v0�y��h��Id�\��k<=��Fslܕ�Q2�����[���g�태T�ki���4u�t3�Bw"�c�*�'}��� F���Dɖ3�A�ad�sR�[��q�� Ow�Vx~��%��� ��}0:LMv��j�'�;B����sj�.3�Q�"P�[����<Փ�I�}J�^o�ᯊ!���a"�c%\V��]��%m|�~1�'*yJ���s��ǹT%�:��R3.���4�"Ș�8�L��jk:��X�cf�Y���>�<J��D{���D���R�����E'�pkh(<��1H�4|��;z�驪E�>�%sI�_T���}�|PK��}D� 9xV>x*��c����힙L,�Ƕu��s�aA�yv����v��u�t�������B��^�he��X�</���g�6��%��I�����B�_�G���N���&����v����� �>���@v��<�V����<3"�欴�'G_�a=U��f�ÄM�;]p�:��L�g!g�K� ����@�݄��V��J�)��V���m�2*7�jp�y��n���<'.�0k�_W~�y�d�[t��c�����Ė���ڹ*���Bk����Ę���Fļ�94k��B��#�� � Ƨ�k�`Y5�a9�ķ�������-���X�s�!�R��ꍆ��J;��� ���#�{�4��������1u�R��iG��A?�qQ9�3 ��O��5־_ki��� �ܣ�nv�)�g�9��t�?8��O~��Ύ,�l��2�sco9����.���T�cb��T,�w��M�2��r����e5�&ca�Um�7�_� K���|��� �|��bQ�v7W5_m��TO.�o�6 �r��|zik��3]���D/p��JW>��b�I��u��aU䵘�2�<�S����l� F^��u^��]��$�"���7��[=���jC�N��549R�n�UE�]�`���m��r�ﵐ�f�A0`/���l%I�?LZ���S#%$@��zd��G*\.�Y�����sB�ZF�q��"�Z�o�`�2v,+z��;����[�y� 8Mr�MۗI���2S �]KSq��U2F�%�Ƽ�XķJ���_�q��f�a���ΐx�=�n]D6�T`�K��O�$3�M"ʖ�Ixڡ{Y�pu����|�q���Gv���J�Sb���*e�ɋ=�$���8�4�*9*�Su��A�2�M_��[e+�yu���k��7����:z� �}�"h��f�Q�`B������:��1���2��P�������������o��Q�ǟ9ռļ�eR���a�]+}����oO6.�*Y� 9�O;�̳�*��G�tI��ΆJ��p�N��य़�%H�D�Sw_�^��z^6���r�˗����"��=��X3�~��T{��=����6���������П%y� ���G���*��U�^ӑ���\��VP���L�G*(�@]옵��a�a�qG��$�W=�4��a��Vo��<�A�N��#5���u�Df#zW;��&UR��ݰ������t�I#�*4���$1U$c�(Ȕ�V�軾fb ��n�:����>��.�,�� >Le^����1%\觽�� q_���R�ILȷ�Ø2<�Q�ay��&�b�U�f��(�Jp�o���h��F�z!�U�����A� g{�4CX��6��p�(e�U���Bޜm�~4��l��A�r��K��p�OIF��l,�D��P�'�Dſ�s0��oc`�w�v ��4���].is����a� 7�i$P��@�F���G��J|%+��y�_�R�(�����xHb��hhsG*'g��z�b�ʳa��nRZ�ha�8T��LA���Қ?�� ��#��Erx��R����ؗ��M�+�O��c��h`�k 9�4j ���L�۸2jz(j�*y�6*�~/��1�®����:f� 7�����k�� ԶO~��$nL����3'��a[���B���T��b�ݨm䨌x�����@Pp��H$A�)�fT���D�G+t5=�D���,��'��mC�X��ݮ�3�<ʈ�X�������FLt�X��Bh�Z����kaV�j�TUI�➥�Y��L��g�T<s��G��мa���#�eWIe�Hn�TLEu[���7��9��/��s�,��t�_�B��S������d����Q���pD5[+T�Em�c*Q�&w� ����%�s�6�q��&?��I��lL�Q��b��h�a���z�l�t�Vƹ����[-�*�㶀�?�J�_�!X�� o� ���-�)̃�Ͻ&�fH���@��3YHE�F��H�Rقy�ݤ�4�ˉSJ:!��p��' +�}���Рqe/�߅�T3�[��A���^0O�JxB��:�F��9r)1��o���s=v��0!@#nF�����פqlL���[7�F:}{�v�A�$��g�j�/z�Ӂ�V�+��re�6�q����-�S�%���7C��0խO��l2f��.�h�Ye� ���&��@�|]P&r�48���l��ڱM�A�P��3�e�(�}/��m�� b���[�!3�zq�8��@��?vZ�A6VH� t1斩p�"�^P�s�NT�>�.��I�#���}������ ko�L�������YĿ�9:&u J���AP�����h��ߦ9g�,���p>9��s�WRB��iw^_�ϯ��&u�6fodF����>�Vˍ�X5m>��4������m��6����n{�[x�\���#�~rn����i�����0�k觨�Q��ϧ��] � U>v�uB�Fw���}�လ%��2<|$�b�gĤ�إ�D٩��Yu�c�w9�W�1yXI bw��@'��, ���L��D�̓P2��F��1�o"��(���2��:)���>�t��uL=l�R����W\��)y1G�HϜHB_�4u���v� ����]ax{�/�Jb��!ְF��l�S#��k���٦c[�1%F(IL�f<y�L�٨�W����p$eׇAh�ie�=�k�m�t��n8���k�gn>*z�zĹ~lh��g�����ӽ;]a��PƉ�u���F�T!����p�4�2;��Ж�$"�@�`q���&��Gt[����~�M��H�^X�d��·�x�9�Z�5h(���9n);K��6?������ rq�5���@�� �h)��j֑i�);�� #��Tm���jPe�!��cyR�{���2Z�}GU/��9i�?x_(=�W<?H�)10���ݡe���� ��hj=�������-�V������bjR��1�Y�e��CVv*��v��~P��_�7��M��r���i����$���k2���ޥ�أ�Li^vH�s���aV*��I�0^)%���� ��jSi�fmf�ĉ��Zƙ�A�RbدRt~��eѐ ���Evx�i��MA9EEc��w��T�J�]�ժ�|�U2h?��[X�=zU�aS�=�y�.gI����0vީ.�,���&�"�5�&�9Y���.a��`�yJ �A�"�:2��Bxn�O,O�|qGa+u�eW:Sֻ:��lp�w�!��*~j&C��F/�կ֠9Y[��ė�i��}Ec� B.���rR٘����`��=O6u"��ۉ@G��ӫ�FP���c�t=w�t���ӗ�xM�fUB��P��xm�j/Ym��{���5����\yoĶ��{�Ha<KB����$P�Q$�����Ϛ���Z�fJ�)����G�x/>���-�"��G�j����&F]������,�N���Fh~� ���Nh(^Y��Э����H��C@�\���M��*WIh����s�Ȩ�{��*� �|:�É�( �a��M*�n~-�e+�,��|WMi�Z����0�lm}��W��z§��.9�9�\�0���l��_�r�=��u�8�a�%K ��P�^�u�n� �m!��Q��MYGC��Dl�ӂ����8m�H���)@��g��x��WWE39}��?7�]��3�'�F���ѺB�yi�� ̓/��Z�����Ĥ��î�&gW�<�Һ-�lj������ �� �L}���U�BI��'�`����1Dv�-��f\�]��d��*��5�#Gp��7oc�-�� t� �;�I���%���FTyp�}~�7����wQr�5�wí��&��Y��R?T�epM�@�|�xZc��)�ob�]������f�\s;6n���;�`��{�� �)��E+� �,!3������4��h1��\��A���'GOȀ��~�`qER�Y�;q��u�w6 �b:�J�ܫ��$�������1�G}���^�.K�T��,���Z�!�CR�X͒~�jOGC:���u�/2�~����3�J��e5��ST�xu�ct�J�]�S��ap��� �%cOOUj�7?LE�r�&�;�C����w��Y�ά�4A/p#�����qgEy�o��O!1C��^�YNר|ۗ��Y��ĭ5�ply��K�s��|� Zs=ei�R�-�I��ͷ�#��̟�M�<Z�^���ɢ�8W3��t � �c6z���v���Y����z鈯k<D���#��R�9WR�#���gY�6�qk��~� �Pˌ�Z�Y��,����;��EH�����FP�ƿrrn�&��p8����n��o�>��o�'CbW_�%k��A*�,l�+�F�D� [��<&)�}fְ�Zত����^�e�:8x�k��P��s�$L�7��ĬEH�M@�u~~3��G�Yǥ/u�w�n ���]����l"�k���X��@�@���)��՛���ѯů��M�4�:� 9?:�?D��ōA��>I�^��->� �U0�q�:Ȓ@�q����d�˲��(�����m�g(�H�!��Y~&��Jf�0^n��ی����j�l��]�V«�>Te�>��Lj����Q�!�_����]���+V�����<s�y{e94\�����o��B����օg�"OZc�%yNW2Ehou�"�}����` ��a��� �d�v�$c���x\�5m[Һ�߲4��,QJ�55��|��sK�����?I� �1#�R`�Aw���;:�dž���:��}��V >�]j��(�6��_`�~�ɵ%�<&|/~&V�-����H�K�2���f6Sm�q��J�o���3�.F�̈����I �G3 ��<طz�n;D��sޛ�m3�� ��c� ���S��GɼA�8�"#�S��e����&�2�/�+��d0���M����`�lf\���/�I�"ڨ�頔X�戋o�� �$�A�{�ry91(�j����:�ѯv��OAi����L�\�z�75+DB�*n�32b���Bm�}0�:b��ѱ�0p�Y�(�c�Y�'���3�4E��f,�I_6���� �����7�~�&y�3� �u��W�r�8����-��{�p���qE��2[��i�_��8�l&������_Lq(�a�E��,��{�� a���'v��)�G�ڢȳA��c_�����ݗ�;��$�[Tr�0�z;hD*�����4�g�蕨���r�<3���\[���K�=:�c��70����9s��^����<ׁ0[?:4�d���3�Lu�.���gG)y�����X��e��E MX ��t;��s� �{8Ԁ��~�#�\��ɔ�����>�dF�-�^���݇�ar/l{�?тO>�v�[��� G�i�-�p��G�ğ������x`@;a%��QCι"���Ìb� эi�FAN�`$��0����`pPS�J��%h˸��#h�?w��c����~L�,�f����%��:��Q�m�N��.������4� ���9~�WWA]��,N�g��]�]��cE|�x�������~�f���kGr���\��!-�^-?�hG���;ݸ��ٹ!�R�8�����Dͮ��]���A�,jvVG�P���~�ی�:��:����kJuwO}/�R�~����t�8�Hc18�.S��`��h��ӷ����@����O2�=�7¨<�wkv�E(�s�,��ty�� T�S��{^y@,�C`�����?Z֭��}W�G����l�l�W��7u�pZH� 1��No ��Z�kT�R�ﯰŽ����n��+�4d�=.��WIOHUۂc�D�n�zf�E��nԋ���LJF�6gm�_tSwŁ=� 2U�J�y�7�*z��i�����Ϳ6(��SX6i�e��:�z�?��}�!dw�H�Wדܥ�9=,���q�jk��HI��=�1p���2�����ܯ%�1(1 qoW͢��4)�ۅ�CN�ў��p��J�ب�q&I&�9k�uϵpl�UL :���5&�Z$u�k�u�.A��4#Ń1�ҕP �EJ�KM2�������s��o6O%���q�}�=��ʇ�[�{�qBu����jORC�� ���a}$�%B��$�:dvc�v�|d=���G��=U{�"�F��նdtc�����)B/���5}BoC](n]sG���N�5�#M}e�,�Ϫ;fHmsT_s��W꧴@��]���B��=6�e��>�\$�Д��EM�#����,�3�p'����X��i�D4�h�]�O>��8at©:��2Y T(�LX�]Y�J'Y��q��>Sd�'�+~Ij ڱ�J�*z*vs�vb1z��f����E�B��5�zi���k�BK�6n-$��~�ĨتK������ @o%I�I�2p� {����[Gs,�Һ2���M�G}�b'~�c��h�������b#��D�,㏂/K��ئ�� φVEճ���0���$5�F1gT mE�@�h��\3* 0Fȕ,�,䒚8(�C;�%s܂�̌��%�8 �dZ�p�~�u5���+}A[C����1~T�=8����;���5,�j���c��P�j��u�ɘ�:>�hi?�P'`���(nw�5f]5�yO�F�a|���� F�˂m�Xa�D�&: 0���'�,��5)�tl%��Ƿa��h,��6�ޖ[�f��*� "���Tڥ!��7���{P"��|�����4��)T�`G<^L�\���:�##jl�X_9���0_�?��q:s���"����^�z��Ku�c�[={Ia)!���U�غ�1�\k��4Ng��잔�s��5Ł'���14�m��u��6~�o9eX*ܱ1ϝ����]K���żb�J��G�3�B���BJ�Z��۵Lڥz^nccg��8���.1H������ޜܝ��C��5�q��k_%Ƕ���3�W4]��ŝ�s���`¨� ��(����I�����4��(p{���B ���)SCSQZ�6e��bѣ�:\j�k-� �͝��̽W�wTt�oXD��5U�3զw�鶜ϡv��S� f^+��B� �e�,s�� ������ �F��7K��:��n��I��г�٧�yq�4�I�������/�.�6X��ŧ�?y[>��Zco,��ٮ :��+�GTd�M�K+@����O�����'�5s�8��͈[�ap�"���:���d�jW�#�:-�%�G*^� �Pj�H�m%��6�C吭I�A8W�@z+��e:�3t�@m�#1�tb9�~l�1H�]8|��z"0SV�?~��Y�q*��,�� �����a�H��y�-DY9����;��Y1Mgh�G`�f�օ�{�p>ׄ�"�=���������m��*�{��X�)�ݽq��ֶK�A���ٚ��a�YF�]�r�)N����o��-�]����;y��;�yO_Ռ�ѯ?��Iw���q�`��ē��Y�X��7+��1�Ѕ�ŽQV&�D�NP�=���! F�ڧ��o���U�2J|,V�Y7�:���z���p]��6&c��K%Cl�\I$v��?�;�C-yi��Q:��I�#�7y.'�.���<y�if�v9�yWE�ǧ�CN-c"9-̃���v3���"���Л�8-rK�yNa��cc��2Ֆ�_�8.� ĭ�]�B�$)�9L�AH�L��n�j���ǿuI�[�%�[�"i<2��&�y�i���Ϣ����L~�q�0�`�a3&�;d�{i�T���-ޛ�m:���V1�ڟ�-h���M�$wEF�]�Ikm�A��ax�-p��d�R�q�۽�~�,NV�B�b�,}�|'�Ռ�S��HY6!6#�t7>"�x;=;?�(on��5ۅ(T�O� ��t�{����To�.��Z8qg �����_�����d�C;�SkI!՜`=��zj ���z�dn�=EG�^��]�)=D�E6������> ��� J��w��0�d'xzr��nQ��G�|�չP~�-B��!Iҧ �|F9.�`Zd��K�y�fzEcl���{]��L��_��y��t��*� mqU�M�uXX���-�HJCא$�#���E��i���=��gC� [�B<���8��G��ī��Jo �� �:'�S=�:P9��B���Q&f�0����@��ݴ.q�K ��&�xJ\���S�>�D����j.�3n�8Oebī��X�G�� ��H�;�{��|@�� S���be�6�����gq5kC��&�[��O����Rߖ�Hͱ-�_�����x�0���(�*��CYESrrȑx=��<oU��9�=���+s�}병hѭ�냀�[�%P�qGR� bX�$eI ț&�uaC�l�J���*����e �V=��?�\Q�ʝ���� ��D�}��W�9$Ẹ��+�[@ŋ��!�F��sh6Æ]*����ADj+�U�+g�W�>��4�#��Z�;R��L����/"�~dH��fu���S�ʭ+������=�'� ����4�ф��y�al��9K�wh����r��_%wK𗱚��j^�n�?�T�k �1�p�KG,����W����Ƅ�6� X����ܱ�t��Q�]?`�թ���d����SC(����D��f�2���>�_O$"ҽ���d�75�ID�@/;��Έ �*6g�Q� �-�L(���U��l�n����(3i�1,����Yq�i9m�2�ʜ{ H�\z]���\0��"YU���������=S�Ot��w� 3��22� �D��='�����x�+���_�g�e0�2�� 瀊��f�I���)<�-K�h��@��!g�E<x�M�%f�rm\�m�[�ʆ������I?P3�t�H}����z�O���p���g��nȓ�j�>�fe�cA���$ሊrF��v.Ck�h㪓�^$c��O�3�kDzs?�_:����jK�㜑�E��M���?�*� CI��J�g����\Lc%p�/�� ��"ª������7 �������e�qBt)����3�g����G��%�`r,'����X�ZG������߰�#<�Ғr�G���(��D��aN�T.�G��P�`�Y��H �L~�Z�o` �eC����ש�j�:�� ��?&�U�����ޙ����"�k����w�,�1,E�`jw�<�� $n����N&q;Y<��!��l�W� 3J�AE�7Dy��蕘��zT��$Cg���P����XŽ������x}�� x�3��8��Da�Ln�22�1o�Q�8U+њ`mr���9���"N"��zN��ǼEΙ�^����/��f�kK��0�4�*-$�-5�[��m�K��C���",K�Q����N��`c5���=](=��s��K��+��S�����$]$�Ѡ���e��>#Ct��Vkf>~6�n�e�R��x���f���K�)CY��rg����4qV�/����W��}��]cQٞ�C�t]~V�>�d2��K)!�� s�3㻄0@���a'��MJHBV(�t 3�2��?�+>7(ݽ�z��W`D�eTʚK<M�4>�H�S.s���є���0�眺䈰+�����n�����UTݡ��35����vsz2}yl��¯B��+"��(;�fG2�' �]���-F��CD��#A�_��r�(�q��W}%��.���p�)f�>T/�TVD����L34�:���7�k,�!��B�����E�o�V�-6I^^�x�w�����(��6��EW̒�'�=�n�2�n�n�8�a��G�9:��G�z�&R%���N���ƭ������_����֥�U��2��AL�ϋx�,r d7��Ο����K5���S���[�����%�X�tg&=!<r��Gɧ�Υ! ��]� ���_�?E=(p�~�d�I��T���^����[�!,� ��������8�Ϋ\>*x�"�OA�P��؞���/�#%k�Ί�T�u�bQ����ԏ�>�S ��L�:�� 7�d�%�u��l4}]�g�%^� r����!W��cv���s$�p��s{��w9�ب8SGJ{�s@»��)�{VG�fT�~ ����� W�d�]7ӊ�Z�i�� Iq|w�e� '�%X��cP��@B�92a��0e���Ҝ���~�G�q� h0g�E��a�0O�-�)T�7WM�����ˡؐ�A��BP��B�`���ſ�3�hZځB+�v+�'�-�Wp�t�F�k�>��!�dM�,��ZZ��!���t�X�e�_:l�|� ��5,^��t��B���%=^w��4x9$A_N;ֆW��T�=S��zV�wa ,]�7/zt��0r�"p"����(|}�<�qe�ۡ� ��m�2��$�*G������[�B��q>슖r��8���|!}�nm��J �,+�<�^}�V�>?:�^dGZ��e������9��0�+F�ܣV�[)��%����% �>-e.D�hS\�VA��`���" �[�|���7�b=/h�s�%la�̛*F���I�4�+���b�و=�F$�ʥM ?Qj�?�KӻE�SO�����8�7�oÈ�_"&�D��yY��o��5Z¥]9�g im/�撸>���̛��z�| �T&�L�AK� ���u��s�L�O&Ě&O%��o^'Zmj@A�/!t�6�9�F#��7/�@�Z�5�ݒ�4-�ӯ����k�l����kFB����D�� :�SL�x�m�c�58�<D���q���� {(� 1�(+� �'"x�U��Xp1v���6[��$�Vf���<�%����+��6McB/�Nc�!N�c����T�"�����z��OGG�"�T��Af嵘�[�B)�6�v$�������n�~�th�; �~�;�U�X���K�XLF��6iқ�%�e�r�?J5s^��Lb?���MU�gu��ݲ��V��z�� n��`I7Z���� �J ~J��ϕ+�MX�R˜��$�>�X!�bcA��e 9��s��6�#��X��I��@+gYO�,�lV�ċ�'�u�k:�>[��(~RV����@i֒�7q�a�p|�������G�ݽ}��@S�^8�O��y%�.|���d��uWEDYФ�Y�䀰ԋ0� (�O�w+5�y�`��9�@��/$�:�02������~�3�9ĥƷa9B�`�{�h��q�O��ָw��x�X�O�*��e#.dM:���5��h@ ^�|,�< ZF�f����;�H�9.�$|1�a��恈�&��5��s�i�0��;��E�=T}� '�Wl����uW�ڀ�%��0:����8�� G=����/��*T� �nI��l���%Q��V�)\p��Pk�Zɠn6P��6e�v��c�l�U���Q>�)�L�@�q�0(��A�we�����N"��S�7K�c���:��q����W^¿p�7�Q��ljڣ�k��,���Å�KL�dc���>AɅ���N8ܒ��_OTX�d���U�` $���Q ,/�"g�xgϗv,�PiK#G�q���<��YĉPꪓF=��������k�*F�sV�Y�S�H���@�zu��$����WI��@��ք��g6���~��Y#�*6��b1�aw��Mo�M��-�-����yRW�٣)�n�{C�!�$w�F��\H犍�p�x�!�Bd�}�d�<�L��9���ۍ�&�j�-��8�<ڦ=�Wb��'GV�}!�ΆS�����<:��|��0��ƭ�"T�~z]����:\\�������'M��q]���(���8��#���W�B؏c\�MuW�;�W��S�Ʈ't�i�"G;gY盢a��P�� cVO(�j��6���� ���#9�bE&���;*G78��E�C�ə���[P ^rj7�����֍�IM �z��'g��1 �2Fz-���y\5�;��u'x�\D�6�4n��[6E�j7�w_a1�����N�v.+C�BT�9fB�y�+��4�ߑ�<������4u(���Ie�h�T�ϴq6k��i.|l��Z�evy�nQ>#K��[v�"G%��[�w���+n�+� �j^pf-s'/Y�rwt�6P7��A�CY��Vc����~ž"ol<�m�@��Y:Y��)>�����(( ȱ�R�[l��Z�@���x$�K�9F_lAԨ~Y�� [�� �8�1������!���N�3�6Єcf�Ы������v��W�ͩ�E��m~A����X���L#�"�w��]F�-Vp��ԣg���s��葆IEA�+'~�%pI$����1�,g�(�=�1���� �/(�%a��d�G!�'�⠔{����ޞ��44��,�L �!�>�� ��TM̝�:V��\8��?ɟ�V�$��������4S��'���F�9\��*�~@�)��Ze:�|o�� !Tnq�(�U,NS�G�s�y��L��wl��niEb�0k�/W<�O,�~4�C��$'�eU�데D���*!�2�K������'�MNU��S �O�tv#��\=�=y�'"8�Y�aWÑ���$H����Q�vg����E�YyK�M6�ފW6��^iH{7�f�V��}����{R�M+ס�r`�O����i���Qi�r��M��x*.6ɼ���GJ��CL��;�H��]���sWq�\V��z8�os�x`��|A;�P�89RO�7ߚ�aH����5�x��@�D�U�s�|CP���T�؉̓�3:@�5�@��B��@��jz*��r��gvTV�+9 :��]tE���ǣ��fu�:�`m�ʠ���\���/�����ts��G�p{������3&���NB�T3�����9[��N��l��g�ʣ�]�M�6���L�e��ˌ��b�/��E��j̖�p��<,*�(�KK��I����@�~��gƽ7�ϗ���۬?��\%�[�#� Kj�|�K#OI��ʈ�nn��'J�qZ������Y�|��x�ڰ�]"��X�R�����.�yw�R^��\=h���Ϥl+�A gl<R�/3��̽#Pܶ{����������5��cJ�U�@ O�#��h��Χ��ܻa�U���H�`F.� ��~�`'ш�B����k��r����O��(!ª�c�F����7�&��ߤDˣ��-*����h���rl���8�Ϛ�ǵ�(���{ H![ �M(gK f�"�_40_�(�n��rX)b�Pm��}1 ��wG�� *��N��˨����+I�Y���:L�x�aer|�s�c�gsk�{��m�c\�$Axt�M�/)����u����d%Zsve�B��}XiV� B�h7d� �L��j�͌�������Iaߏ�`J=<.����;�(�IZ�̗���21��o�D]$G\&R�EI/w������W�iW��zBr�O�;�է�� Gn�����Â�m�`e��ك�t���(Yg��gˑ%>����K�9��XB8�`�!��'jU�~��M߄��-�R���69���75���s{��9pl$,n�����$��P�(���"Y��$��F���v�&�0hӽ��OFDs;��[�����ik)�2�J\��x����q�`��d��K��^�$�,��'`݁�xN+�DB�ԧ��sW���ڇ���ZY3���� �+r5�[��j�<-�a�Տ-���U��ZA�0��y�&���7ٚ���W��N$|�?�)���,��w@Z�1���U[Q,��^�c6La(�֟<�>�x>�0��aǬ+]v����%�C�1aƽ �)+�VZ;�S�vnmF%��T �,2��7A�������bK@,�-�bR����q���kY |�d9Λ�3'�g���p'��Qe�M�(���¿鯸��)�������xB�ƌy��Z���p��)B[�Ħ��b��2��1S�%��>6nt����o���8��j�h���B��u�8M�ٸ��p�҈2���_X.t1�[�*����&� y��ķ�e�0"��B���V]�L�n�_�T�'�d�d����*!:�M���|�\������=E]���+��>T�A��'��h�Ϊ��[M+���+�P�0d��B���Q��q4��^Z$o:��9�~ȧ���Zc<K�>n�pO����a�6'������=��/��q�Xm��f����f��3R���>�1 [b�t�3��k�CM7�@��U��2ֱ��S N��ҧ�q�N(n8��b�R�GM��d���h�$�M�^�s����m�V���$�O�u«F�j������'x����4G�cjǰ�'�<5��� i����{B�'dݶI�|X��ې�n7[�[NhH�T�XCO�Sz�V�F�<����g���+��k�z��m�V��pu�.��6(E���;�V�I3�`�� 6��q�珴�% ��%8��I�<Z�7{�@�7G��ڇE(u �yH�}1V�u��< ���,1N�������s�YU�po6�%����'�j��#�Y]�&�(vG���Gﰭ���t��z�pr4g=�[K6����y%�T�>H�_B�t�"��r]�YR�(S��JZ�v/�~j(�{m=nT�h{[� #�x$�K"��u3�-"��T�0X�b�!~JVn��v��+�x�L�=W�[��cjшY��'*Y_V���,ʱ2gXXym��fhN��=�웓�#l�#���iJO���o��`�2���sK|IWI��W�|:���Z���:��Ys��qV�����FՅ4<�ߙډY�������E��`����Tz��̚�U^2�pþ���� �L�P�YJٝ䑪��\��r��G���.�\�}F8�������S �H��%h��% [U�2����m(��D� �T7sW��'ӭ�����/��t%ͦ@ƕ3o3�����,N��n������L�������v��w��>u-<v� �s�\�y�=��ۃ���r%�L�(R���2��J��w�5nߍcz�q���4�E�[����2���W|`�1������69�ɇI�����g�/yV�ݽ���eo�|�u�"��%��:�r���N�c��lS)M8j2%�r����˚c�ە �Y����O&!°6g��P�2��l:��0ϱ�c�M�l��� [U3�%�~��&8.�i�0"v�e��Q�7�+Ƴ؇�"�o,���+eA����3p���N��!���߿?M`Q �c8���Dæ�B&�T.�[| n�\C^ql��c����#-OE����p�uZMn2����OFh��@Ӫ`���e� 6}��R��1�ɸ�>�<P@��~�L�1�@OԒ��:#x�u�l2k�ѫTu���C�-����#O�u��Ld@f&Ek�"���r��k~O#��L$J��}����]�su�y�ы�s��f-t�i������r���]����� $7�]"ֻ�#qRH ����bo�u��h���sĵ�ac�X�TOSOs��̍��@���}%��T�q�� �N�/�u"U���|�@Pq/��vV�{���q��;(� �h�+�*�c���ٍ�Ż}�ZC�,�o�Y8��F��%�YF�*���'֠�� L�t�n>O0G#�w��J hϥ1tFr߶��WN�\q��13��gZ'x��Ge�hMt�����'gP:s�]��Ks)���<���� b6���ӫ\�|�j=�;�\��N�z|���Re8��a��G�>�#����賋ک���L 㐏�BˡA�$ e~�S[���Fvg� � bU�kiI�����zï�on,�jV(eNH pJa8����f���;0�;�\j�l��$7�q���?�cm��l��y`U���B�����?{����n�Gg[�.�0`ޕ�۵\GwMC�}p]&��Y[� ���`Tu?!���"hWb����X]]���Kg���h��bJ�?�laJ9e��+t�&]�I*{���A��h�����P�0��vу�^��ۊHF�P�2��B`b�B]?��Obf�ˣ�p��D����i`4�|x��螘OY5++� ��{��=��T�T1��o�Hp�E�%3�t�컭m�s" ����~�_K� H�Ӏm��Q���<��D����ٝ��X��3�d � 1D^$�IAu�A>������R�n���nL�M�(�^���{k�~̘��R��i�� _���E�0��x_XG�7��"%Ȩ�ÉNҠ'����n�� ��H&�}�V� \٪���%�����$y���;8�ow+�8�|}X�K�u��C�҇��G��^��i�12 ��G ՅNB�v2=Ba�x!��Q� /u2!H �Ϝ"� �6� �g�"�����¹��_��۱��𓈌� �(�La�(�c)iTܬ�� �H��Xs�YQ���M�8ʬ/c�ꮧ2�]���b���1�.�~� �% l Aojc@���9���H���$�M����i>��zO�B�g\����XK�sI8݈D'�xMf)`�\xr�m�4;�a�?"�M�چHL�@WY�t�z�ֶUM�W(�L!3��BR�8=q�{�^e�Q�k������P�ɽ8ْ��ϴڣ;M�.!8Q���w�ߖ$tہ�V��]kH����2�O%m�]r��#��%m�SP�ćF�-�� ~�;l m|F��S��P���q�þ�=ia�>���^��6���l�����wO�u��$��h��i��,� �T����cL�o)��:E���%��?+��i��>Q� 6�`1|$W���tۋ0�`d��,����a @Dq���+dhzc��-����n��כ���27�/:}�V���>.^�n�l�\��T����M��(��H&�Y��\agJ��cwdPG�j�_㶤�]Q`��)�n�}����6)�!�<���Ɵ��άO��H��Nԙtbz#G��ݠ��eT�I�}��?"�n)���+�5�4��;$��Ц���o`lt�C��p�=D!�e�+%B����7ű�i4�@������5��Ϲ�e㟂�])���/q7"�jk�+���r�K �\�o�^�1|���������ђ}��v^���谴{��Xjʇp`8�Q�W�D5Ԣ�Uz��Q���N��/OP",0 �1�)�K���f�� z�'��z;Kոk�7 �m�8���1��pD�b�$��dlb��4f4��5�Iljk&v�7�ۣ�5�}.`�FZ����:Iy��a:�u�p!�qÛ;Gb�_�KΦI�ș��M�`w�(���L����{Fޙ)�g�ޤ�����B��oVױXR�"99j#2"]��E�xT�������X�؊������^��R�=N|e: b|b��2��6x���d��=�K9�!|�D�dt��ph��&%��}^Ҷ��e׆�4���dG�h�Z��D1M��2�Y�rC�, �'0�v�_$ǻ��s8 �"k�H[�#s <>`{d"�Hz&�9���Igiw�盥ʴ I��7G��e���Թ�}J�W |�a@��z�����Hi¡X����;q�$ <6���xu��E��,*�����Ϙ�c&No��2��: !c4�s���-�Msn��'z�?�A�Qb��a�?r#2�VM���j��|~��t�[��Q���1�ǥzZRJBaAL{��u=wՓo� �^��"������a�B�X����X�p������}ZG�U6;7�Hk%Y�L��nU�Or0s���xߧ8���#�Ok�{ϖRk�5�#@Y G8����R梜2�����f�DAv8n-?4Ų5m�E�M�\oU[��[!�:_xHrKqU`Լ9��ґ�O(Q=fڑ"�� �D!�rNW�1�|��(B�*�NE�]iC�D��⏄�FZ���p�A��3٬j��dK'* ��u��;�g�'�w1��c1*��-�0��xG�s��p�mr��w\���,*{y/m�+��#��B�m�T!��<�_�� �n�V��X�{�e)^�%� �7g�d���!&�}g��!t� ���N���r��AFf%��;��Hh������?�.4 .+�X�a�64$��ylX����ժ� �N q�2k(����,We���C�Z�ZBgDu ��j�;�7�}Ol�܇����x+V�r���1�3�&�gI�z߇ 8PU �"��m�Ժ5 d���3+��=�!�����>�6������H7��"��P�^ʂ�k;����<憞]�{rO�L4e�˝�0���U�y��ڍ,�6/ �-�:GȧѷX��7w牤廠�0�ױ�l�m�Ʒ�[ZVKO؛!F,c��u��.�D��� ��0Ya�T���I�NJ�#�T��Ev��cjwtu�B@j�d.1%~>y>�>�1��\���� �?���N�I�N���톷�XH�&��؍yǰ,��rX��1��*�t�����x���+uA��B6�M�|����1��9RhO�hss&���'I�� B�)V1R�d=�+#%�㯩��OY����,�+����R��0���C=V� �s�P��`&2�l%�b̝���T��)15�L�k�m|�p �o3I�C�CGӹhm� Z~��U\�j ��\�) Z�#��~D��uwt�C&�\�m`kQ�^�N�I��!�iBQ�\Tj˫!<�=U�l�U^�^Y{U)x�� �ɲ�qv���l���535K��0�T�/�ޖ��P�pꌫ��#~;=�p�F�8�o��3 &*��]�Km�/���h/�v��~RH)���9�ܻ��{,8X��WX����:v�lh�Raj��������x��G�S�j��i �X-Tp�B����u�q�9{)�G�&S��d��ͺ�r�`�gV��4s�}l�S0 ���_v�?5C�� xF�]��D�'G̹vɊ�����qh��M�Ҥ�0��S��9��cr���Nh?�p=�qN�=���H�f���m��N���Q�A@��U��V��C툺~|At[�����^�wd�"U��WM��& ��{ 4��0�1@&��!�ƣbe��f+�+�U��������n|O��S �B��-I���Y�|�C:�]��Y�e��'���)� Ѝ\����ʧ����]�'����B[[1�K�?�/�R-y��' ��"L�\\ ��{�!J��x�_1?d��щ|R�2�Ŕ(���1��h@Y4Ι�q��[`oť�RЬ�py��Kvx���@�|՞�S0O���j��>?�����ܜt�Y�L��Չ> 2ąȇ�t_��$����?Д����o���3�ʛ jՖn=�N�)O�;�BK��2T2Ju��f�֢��~��%1M�0̀�c���I%��]�J��5{]G�a�N7���ҭ���193�j����{�D�b?"@F]u>�m�e/<��/z���pWk(�7`0.��/�JP�v�p���6v�c�G�UV���4cΩ_�/���u��F����3[���Qeb�a�J���]�j4�}�R4��9MW<�ȍ-/�-��/&{�w���qh��x�6�^�P��h�&��(S��;����Z�����rJν�kH鞜J�l�x�[�"�0K�H6��?=9�B�� H��Y�S��m6w�X� �r_�(�����@.��3��|_�@�ގ�J<��'Q�:��-�� ;c���pH]��1���� *7�~�9����jcY�?�߁�>b���Cm����/�Od"���"��hkx����ae��ה����b�N�vJ����.����;�~�fB�k2��UI� �9�?4M�%���*����Q3S�U �� �����d���/��I�ƍ#�[U_6��^-�m�8�#�l���ޗ$�ݙ��Q�5}+��ա9���-��Q����aV@J�,%mA�W. �efikIt�Q�XNMI����jвSL��t����1��P���֍���.H����{*���c���Q�PQN)��xgu5���&�uǯ���lz�����!mUP4�@L���;��u�"&���ҜZa�_B<7�Im" ���/�4!h���M�� ���ژ'әt6v)N�4ceP��Q��g^�����Z�k��w۩I4�>��M�ͽʓ����+�[�Y �m��o��vBi��[;a7?M�L~�C�K�G�)1" ���f���1�b�Gs?x����l�<�?���e��0������{'k�JZ�K�A��OPPB�Y�Q�����<J\��A2��ة��e�{pM5 _�� ��l�5rS������/w��'�����GԃZ�_�%�4K��@.u��c�!�(Q�����D����/6��:�u ���]���Ł"p����F�T��ͦۈ#����o���z��ī}Q����#'{V�Xʡ��E�<}�#Fr�ɗ$�(�XEȗ.~؆��]��^�3"� )�*q���Ӈ}�lx����T��T��4�8��H֦��f�#�DZ�q{��� TJ���'�R�7dYς��.�}�L�����S�B�N�Z��=t�8%e�<���%s���x�������{�m��o�BZZ�R�n�͗ ~k�/^���1P7%�4Ԍ�J]� 1C��g�vZ�ip��߳A;ʪ�\d���%h��;����ZS�dHl#%c��(�+w� �+�(���])J�c��n#�p��%�8�_ �E�+04[��pk � 8�Ͳ��&�kP�=B�|z&�6._iX�n �{[�8����2KRƾt;0x=�Hpa� }��)�Z�}�**U�72�1*��@��Z�o>��܊�_��3���ya[A��Q\Q�W��}<�c�_-���rqF���Tͥ$��2q�-�Iu�)2֎̷C�PH/u[��뎕�v��h9�b$�![�xFx�j���w-�q+��iثL�_N���N�&�+�ܚ <F��i��#&T�O�F�k�D���Ӗy��ڠ �F� ܜ]��/�s��Pn���~ޏ�v�-�,|k<�w��J�.}]J>���� 4��S��K�#ϒ�J�]��x��Ֆ��X�:]f�h�|�A{G�`�&S9]�P��-�����ʞ� �Q9���1����̰2�2���%9�VD̴�x �^`Gy��Q��E�-4��~��@C������^~�������@A@��h���#�&��nW��.�3U�| y��X�4'�����")��9��a뷊όR� 3ᑬ���G��}�*L!M@�ż�̩]A}9�IlQ���`��*�j��}�P��E�e�m���#Jmy�2�l��NBe-�r����C)bd�b�&����7LayݯJ�x|�R(�e�,3P7�н[K�S�P�a�`��$��tl04��&����.�cj���aL����1Q���VR�n�{�&8��ȗ�Z�G "��P��yy�w��28UCU��'bR�j�~��%�O�јm�1]����Y�NC�J��i|}r|�Ih�U��"Z�w���E�y�!µ�p-dE�'9�>.�B���b�(�dZ���eٸ�:��N�H hLn¯�����eL�A�/�X��w�UI)4NI��I��S��Xv���c/E���A�Ǻ�E�9��)�X��u�O����9�5+��sY6^�r*ٖ�:������4�%V�R㬾��+/c�ڥ�Йc{���6��|a��E�q>_8���0�s��a�}��(�oɻe7�p���;Yr��O#u��=s؉CD<�|K��O!��j%��n?�<!w�������X���+�����Օ�8D��S2d�cimA����&�OI�7�j֛ҍG�}��vA� S��z}� ��\�S݉�O|M���TX�/�4�B���a �öe8�V�]�g~��t�;���.�m�~���(,U V�KOS᷌����ջ����!q,b��L�7��k-� =G�o���23��ܥz�!'E�y�t�'��m_b+LK����hhڢ�U�-������k��B� ��'����%�jqz}v���Z��)U&N���˿cCY����BÖ�jV�DHF��8`�d_�aЕ�KÐv��=����Z.�)�����Q����ёj�:��3���XO��:�úi��MJ���x$��z�R�����k-�*t�����Y�p��2�O�H�I��&�0�x���a�+� �v���g�6����d)x �u5��d�6S�TEe@$�~G݅2���[괁���i���$0�"�r�h��7�J�s�^!`j��Kv9k_ȧ9��Uk䳵����$Q���6s�z�dU+,�8HU�fr�AAO���⭄7�V���1�w��X�K��Sr@��̓���avԕ�@<��D���&,X��R�P]c�+_Le�l6��BK8�L2}�9Fq�(r|�~GJ����+̙挚� �4d;z?�\��U��Y`�$�#+[0��p�Gשd��uWj��'�uji%�[x�#W��9�D�=���+�eYoB��6��Ʋ(#�U�6�ES�U��A���Z�u�P����G�4°�������|'!��}' ��R�m5�'���#�(a�e�ӟ,d���Q����(Qd��-�s�k]�:"97!^f����ɔ'���)��);w�A�E�w;��%�t����5�˪��w��]�S�q���]㩬����n��N�����S~�y�\&�)������|R�wчP���BJ�vahi]�^ޖ�ᗀ|��W���*�YY<��8f��Y5��V?/ �&0���b$�����=-�9��[�����(堠B���E9D_�)�\� 7߰�Y3b�m�[z%T�Cu��>�0�0��r@�������?�py^�MG������2��l�c�J�2N�dĐ����B��vu�_TZQ���HYS1�� �`�Y`}� 4\P��TT����YY-���ޞc��6�N9m7t7h��@Lֺ����Y=���&�����ۃD���Y;�!<At�K9��Mp���7�E��:��eb��ДI�E1{�1`yP�S۳�G9�'�� |�|��/�$v��Y��f@��^Ēj](.�C��xu��C�T�ܡN�B�A�Z�L�)@��t4Q (AܵTH���!-�+^��������Z/s���ts�.\��f�lA�����O���f��T8��>MrA���QM=k��h?7��l�)���d��Gj?�||K����K�6�lL�yQ�_3��-&����[�rȶ�1" ��a7���C@�y9ND������ ?[g�ja@�p��W�)��_Y�\v�Agu�(}7���3�@�L��d��nP�z>UM��lJ_�4 ��)����I�t)55~���P���$<��`�����S ^�������6��?S�����O [�k��|%~~ig-���d��݀c.{*c���<��"P7V�W^�u�1�����]{�ݥ��<e��� �c6|�t��⠐�1Z[�z#����ڒ�L9(nhS��]u����!G��_�z]�\����Y0�n8�|�)<��)�']&i�@J�4�s�*9�4�]�C���P�+8x�}^�"�F�'�zߖP�� �q�@���YB�[ �L�`GǗh��� ����5� /��^U���ƭ�&,����\fL�J����*։�1�: �����#��~A���!�2ŢG�tI��gLK���U�y �'S�i~/o'�i'Wj�"5h�%>���E����?=]����L�N�B�K'v����������2��������`� ���>�l�j�,%,�]+@߰/�qPT�9� �T� о���2v��m���]��g8g��O�썇�Qj0H�0�M+ybbx�H�u�B�n����h�ɱô��#3d+t'��8ឆd�{q�$/���bu~��W��yU�u|�=�gW�.�ߞ�_��&�V,&���ک���kM(�q=��Zޅ� :E"Ol�<?%�:mt�Q�#�����RK*Uݽr��@B�ּ�ߔ����^��1#�ͫ���6[�y�>l?��D��O�c�;?�v�3ǰ��n�#���WT����Y!u[憿�Ӭu��D?�8��T����)��v8��d'W�=��q��O<�i�[w=� }�* ��o*g6�#ڔ���&1���X���?g���B�Zm_�aU�����!L�O �J1��??�W�dV!�@���g����X� ����oD�����\�䓗?�2�r�O6 �[�n@Ӳ�N���<9NT�P�#@��S�R�P�i�"Ir���K���q/��r���}a��@�P�Ql��cf:�^� ���Mq`�i��^0���,�R�p��ٮ��u��?9�� S��;o��q��p�23����+z���~~�u��%��P�_�?��Bl?b��U�S��{���+��`�kŦj:�]��mu��r&Pw$W�T(=gs�~��X��)�-�C�5�1}���jd������m��D�hh��.���j�w1�Њj������ �*���>�.3���F�KY����2�������)r豞�z����aj��t@�ᚔ�y�m��e�с�}C�.J�A��k�r0� '��c9�*ߒ*��� ����[��K�}^��6p�H����aX��`H/��������ד�߰�e�A<��M�+��3�ŷG�]X�����(T{8���\�6`A���֟��v���@<9I�� 4]D��i��Z�#���1:�LqA ����� �Ec$�T]$)ϑ�}�7��Z�ɻ�������ks�Z��n���w��D70:ze5� ����u���)��r�_��aGGA�ޫ���8:��x�s��j��/w��2������T�1��M3����'�[d��~�����e���V ?����P�5���6{� �vTi��\��T���!�8����b���J��&�.{�w�?C<4(U�".��'@T՟���cѷ�^P�؎�ؾ�n2�K!���h�p��W�L�M}8��\@�\Hؠ���cU�B�#%�&6-��N\ ��R8���]<��J"<��]&Y�u/�a�t�!�O���mk�i�9u�M��8�� $�z��9g�@ �Um%�۵��(��'V��v�i��Ã{�u�"�I6 L�9C�"����O�K2Z�1I���Am�z�\�Z~�Z�5�Gh#��a8��n)�<%���!h�oj욨oZ1�d+M�q6�J@X{"S��[-�B�d�A���)�3�R��-����e^WT2�B'%x�h^:X���#6=#��D|��SG����a�0͍|_nړ�@��M���Q6�Ա��0�s$G:Տ/<eaf��Ǻ����d�54{���3�a�8���A¼�����fk�e��DAr*iZ(4��#�H[5=L��/&�kG����d����R�O�2-���f� 6Q�K���4/�����Ȉ���v�GnHG�S���h�9.4���~^�7�)T���!��ZHXӼ�1�ЩԮ?��C��������P 7;���Q�)�w��R�>�/JÃ�B�x��-)��G|W09z��0ЈȤ���]�hSjM,��8Ⱥ[��QCK �ś�X�aO�D���? %I���HL����U^�&��Bm >0���e �e&8��i�la�=������>��@ �ڗI�a��ҙeϻXN��#��!҈e@b�V��&�=1J6/��a���A�O��W},La5q,�X��gy߱�j@a�lըl����m7���=x��f�*�(��G�&�4�9�O�E�3��+��W����扚h�`_[����e�3�1D�]����[ԄKWԚ���}�� � ;i�4�Og��Ų��)��%O"�ܱ�S��@���}�փ�s��F�7�M�u뢁�3�ה�h���hA�}o�K ���sX��<��D�H���������U3�kB���t���N�ઇ�׳�t���Y2x�H �� [8��@�c�.A8�J:��4f������sf�*Bd(��q��|Q����!���+��,2ڧڏ�d�4e�{�}���>Oe���]�8�|LJߖ�_o�>�`�Ʋ���긒�}HB�*_���$p� L�? �e&:��JJT9B/���-�Bw��?���0{���������0����L�9>y���_ ԓ'���K�'��ۂ��Q@�Pe�)d!�k�Б�����u���� ���M��;Rfe�B���e�J�923�eR��,�@��c��b��P�����x��&��("�! - w�WUoTQ��T!$۶o���DG�撜�iSH{oÁܤT#��ȁ`J�а3>���cR)�l?��vq�����y(h�Ŧ�;��䎸O���E��4>Rj��v���Pm}���{�!h}>��T�Ly,:�l70��C�|3��=�L��[���X�y�n�'����z��L�PJ`WXo�cB��&�p��UG��(/Ϧ�5�!�_���4-(3�(솧�-��� >XL9мE�1��8Q����[?� `��s:����Cm�o�$7X�i��g��,ܲw��7զ�Z�k�ȓ4�����T˘^��%���~���[*bav(\��K%��D��q�a�o"(g:���с�BJ�`�菪Ÿ�ޡ��5k���0f�% 8���짋��qo[69M�P2([�gV�I蟖6�b��$�p���*d���$m��/M!Q�5#�=]ʶ��M���3��!�� Co-�77ؗ�g��S�K_Q8��<���R�����5{���d�0"Jy�6��u*O\� *+�Q#I�\--���ݟ� ��=���(�2�[�ķ�fj�DKJ�#��Y�W�K噔;�Az�ۏeA"���Q?;�{S�*䪂@R1�bXAT��\&���6�I�`>q� �Lq�� 0���{��m�y�s����e|!ª�W.o㪈�����f�?ʤ�Z��Es*�7�@3�_՜ �!���Ч�p�� =`nđp)��2��:��\�Z>C^ht���}Z܂""Q`�&���?M���>ʦ Y�HCq7lRz�X!{��������r�P�+�GϿMF[�d-c2�{���F\ۮɈ�^ŨI8��Vu��:.��%����jzf�Zl�{6X�.�n/̭/�Oa����<�s���<�8�ᔗ�` ]�O��O١<�A�����~��\�&0 !ֺOQ;�xJ�_뷃�C�Vh�'���(x"il�n#�[LIɷ;3S�S���AW�9H�Z��XW��J'���ϵ��+ �wh���: ��Sߚz@��C^�}(�į��>�sw|Ec)=�� ����m� ��W ��l�y2���H��A����� ݇�["�I�����5�����p�QJ�} X]۲��X�v���w ӂ#���* �]$O��R�� �n�5��Df�(���k*�v=N��eJ�[��^YǷi��$��J/�����;ڷj����mt�/��R1u���y�o`�Vn�(jz$�=X8��?���2�Ɩ�Ĥ�16q���z����^m��~,6+(��G���/��Z��E�A�c�H�|�]���N��V8���ഁ��=2'��U'��L+U�R��)���k���ë�C����*!��.,P ��l.��V�o�JE���z���a�HG��%2��ظP��=A���;x4V��,O?W,.|i��!`J���Q0�}Mr��@�^�j�[��u�V��N��<���v�K p�s��z��Ux��X����2�u��� V$����!g6�-n�W$ͺ���%U!��Y�8������O�y\�|I9��9�v��[H��ѡNwb>��B�4�5'��� ZE1�I��{�挛M�����+��G� ڇ�O�M���uS��6|����r�I��(�I���Q>Q�7р���f?��G��y��w�dR�t�~hO.u�02i�����%@vaɁ��=���y�w��Ք�F�n�ֆ�$��1-H58ը�w�� .�s3�V`�)�6E����(_U�O�2���͡��_-��<�Mr)�hN��Y��ǎ{n�BN��A��1���`1Kr���_�|���� �~�KA觜}��/F�0zUk/F/�0y\�,�*ױ]~���rP���\�VH1w��/S�x��s{��3>ύ9�,�����h6�^�(�r��E��b�R�A�E)&TF|9g��_ëUe���g->3&1���]5��I�7��MB�G�W��3�~1����x�� �o?�n9��sF>���f�J����/�bB^zʇ��"*������0�c��1�\�2X���L�m�I.���X�G��G���6l�����P�q�����S���K��������{d�ӎǒk�0m�2��7��A��9��f\!h��>q�p��1�gQR3Δ��e��biM"s`Q���n�z����1_�]�$�VĶ��p��5��J �D���Q�,G@|>���!��Baq?��(Y�g��G��D-��)8r�bv&�����P�͔3���t�{�`����E��6=⇖K�N[�Z.n3���Ƙ&/F�L=�<�m/��_1��gԫz Xy�eċ�W?�(Q�$/4��mwx\#Hb"��}�m��R�}�3�3�>�<�o���:Sv�������*��e�.ӯ`�4��w� bw���oԄ� �+*o=�KԌw�����S������L�������7�ri�Y&��0�#B�\� �i�$j�'5O���YC���K/��S}l :_c�����p�a�oY�oi��l�G���5uD��B�Jd�.��d���;��G�F]埯e��a<=�����i�_��Iъ���58q�a�]��O�p;ۑ'�X/���y�2`�O��E=v�ϼ0�0p�v8#զ�WrEU{X�� ��]�|�(�,���ާo�7K2�`N���k�=O���o;%{<Oh�@)�,?E��Z]R�1��C�8!0��[@�>� E�X��ң��H�MЋX�f����5t��RC��j��!栗��`��婫�'̈́�n,�pb7�� 3�$�T����bu�ZQ|���L�F�����iB����?�D�xW9OFنfڍ�p��\2%M�d�tJ8�h�Nw7G@��V�'�X͓�ppՅ�_V��8� #ݾ���s;U;p�K��Y����L���ʑ�WDqYA����ʆXB�Z�j0@4)ے�T�+�~C%��%�ɘ���6��i=�w~�tL�)ʒ�;���&*�2�>Z��H=���L��*I�I+��ZD@?Z���m)�a2�/����]k#@�uJ����������\��٬�gB�ށ~�X"�<#��<V�A2-h���U��?@N|���#�O��upN�֡l�kI��A;�ZКm�햮�C�r��a�O@ t�J�d�����Z8쉓����r������T���1I[)�e�I7���S�]L-�,!|��S�y�����N�G��rK���R[Cj��ݺ�8�܋Z���}�VRI���9q�(}�f�x�@�i�c ����C�b���ޕYJ%A�h���[�(�>S�reg)�� �kxEɴ�c��2� ����q&�v�,%� +ϕa�א��/�VA���M2Q�b���ˉ��f*d��ժ�c�Ɵ�R��?���m��}�*h���L ?�ᑌ���2ɚ�3�d��r1 �a{��t�m�M�ƿ� B�zGE`�;�@S��@�A�X�����^�y�zT&�@�?"[��Q؆�a�`�G��ރ��Zl ��zDqq��i8�ş���́�h���*i���g㫳(����%?���Wt�K]v܌��g��2i �` �0�Ǎ/+u2iԫ-Q²V�2es�C~n�5���yf�Ng����4��,Pv�w�}��a���7�ޤ���ԭr��<7Ёw4�8=��5J�����CL����x.s(�F�&�Um�s33}t*`��oȂ���1)js�Cl�QH-!��U���c �R�Q`�eI��_�y&��������o҉f�^ ?~}������^�S�Mɯ$7Y��srQ��w� � 1�k����y|�h<>�M�L��w��r�a#���E�$��f��h��~ө��YkB�A��2F��j�pi�w:e�sD��W���D��!�N*.����̫ގ�tk̇<ʧ�������<mS��%=�T��%Q�l���:��1O�nj���j\1���zw�WcՁoI�nh�\gI6�ba�'ʇu�a�I�>�.0=�Y��'r�.�Q��%�X�Z�GŻ8��&��mg����&�����f��Cw+V=豺S�4����J��ɽ�췟��yk�Rd|\�'�H �wQs_�������c� �^�O�j|9.A�T�h��<�B%��G�]E�?]D�K '�'�J^ir�0<��[M�,����1p��j4>�$�9�(�����<\P�8k�%��@I�[oFL��%�P�hig��2Kd 0Ɇ�(o�Y<\���7�B�gu��qd�A�9���C!Gɷ!q���cӱ�����=� 8,���ݲ�*��U�jp��z��NI��+ŜV�Ě,�5_����߱#��� K�q<���j��- ?���*J�Vq;]��7����� 0�[�OD�2����mu��ŹeNX�#�x����L���xcd��)ͨ�ZH�����\��[Gδ��M�~[��~f��g|VX�kyD��%vt�o�zz��k��T���@�N�M���u$�.���IKm����=t�w����-.�ڶZ�+�b؎t�&W����uL�ŏ��ڪSY��k�'�#!�ͦ�0Y�y��!]`���%2j�$���\��m85*�OZ���α�O���j�0�h��_�Y��Z��0��^��-%�b���T�Ԗ���C����3���M.`7`Lh�*[��'Wi\�7���%"�����vaE͠���#��BV� �(��88j��4�e�^�z�����~G����XW��7�ԫ,�ho���1�=ZY_l�r���%vSllmћ&$X�. ���(_�SC �� *���1�-��l � ��Ը�� Mk�>�O$H�6A$y�|�|��p� �q(3���xn&���t, � ��h�[5�[>�Z�@���yv��7�,t�� HeȜ��+\ vD���NTw��١(h~>9��ϧ����������c�ׂ~LF+Ɏ���R�N�|�R�Xf�K�l!�=ܯ#��8';�X�)n������qވk*����Zj$���7s*�x̻��'��g+�̌�ݢ��&��s+����F���7q����o�(F��Uo�� b0�$��1�+pcZ �]��� �#`yNGw&-�O����^� �"�]�cʋ*���]9$!T��GK5��yz+��N|}d��lJ�f�9�F�:.� ����<Y��e�ɕ�^��/K��D�L��"d��!��$�H��T��qC��&�)ͼbͦas *⿰7 �M7��:�O�NF3�:3���� ɴ=)Nfv��*���B\&��.G���8�*�n����gc@�=� 8)D��<v� �V'F}Pҫ=��%�ZF!���x��Î����^��E#;�[n���D�@X_%��59Qj�<U�0G��9�%�˭������g�����%3I�6���z����|7g��{;_�hνcTեHLjƜ'����Y�1!(����eԨ���fc�T�)ڭ�&��.��3/ɷ�6��蝅�+x�F��?�!6X�ȇ��K����&��H⼪�:�����Ћ��Q�)���X�����њ���H̝��>cI�Η�l�T������ �q��'�>�N�Z5�|JfB�!L-��zTӶ���x�~�u�=�^8��G ��k?f>�9���d�|? �r��xh?>Px��.h�J"��wA�I)�Ɯ�<�d��q���9��M�{ 7k}o����ӭ姡�)�\���vפ��S�� m�E��(��Ģ�=�hv��L�@��̒h����+_��2$<e�~W��}�BD��h�vU��{)j��y漗es�a��I��aF�|G�Fޮ's\A]��Q��Q�0j D ���g{�n�Y���L�_%�ݖ�c��)�*�7Y�@���!��� ��/b���Vq;AAxt�`?j�呄�Q��TO�j��< ��,�8�fZ�4ڽy��u��nW��'5�y�TS�~��;k�}�#?�U\�#�1�sr�zk����a���忛?-`���K�E�� ���QjH�}�`R0)��*4����h�ƕ9hJ>��W�^0�oH�7�~��i\R�g��^$��r?v_�S���+VkJJ�J���?�4�κaK�To��#;���c ��M�3����C0�ߊ����/�ď��44Y���,A�!�y��W�/Ɛ�и{I-E{��mDo�m{�Ju܆f�>��{��� ���gD�� |=1+�R7�Ϊ2Z�4�E�s�~d���Ww����cަ�L&�@<�����2�M�8�K�����S^]�f&�q+�����u� }w�z�4���e& VglL\T��>�tzzn>�]�tny5ܐ ,���<e%��/��y�z�FR�L!�ay#�H����&ڎ-P-ڴ7�;(��G�YLBژU�����X���Fc��%���vn�4Z`������j��1�Bf쑩�/l��(ggȘC�Ac?�=���5����-u�q�-� ܥ����T�������I��o��X��}U�tVl���Ź���?)9r����~9~��c�[�nQvv�C���b�Ϩ�)��:�VԼ2�d��be��!�1Xp�bd@��8�嶍L)��$�)ի�t�DoOR�Xx�W|4�����+��W��c�V��2��j�Xj�z���Bi�9k�3K���{{Pb�� �6�;{�!����k�{OR���<}�9���hͷps���bN,�Ve_�9���o��lZ��:�ƛ���( �a��#z�h��`��xx �pT�ό��s��6�m��s�v����\��o�R�u�@Fd3=��u����MXV���c�TZ-�?����sDS�W�(Ϣ��*�����#Τk�m1i�9z��rЖ���tk����̡��=j����|�6�������m+5�|�ZrZ�Uau��i���x_3[c.�K�������uskk���LJ�{ � ~�#3��FB����� �M|�SG*�X�����+�S%d3�=��<�ӓ�O�>J��K�ુ&Gs�����z���}�M��g��GM<�͛f����6(��<U2� "H��)ɹ�5�4mV�z�G� �ͼJ �r��Ar��fA��v�]'�2(:�U�S���C�_��}��n��wY�n�S_�������6�d�AيF�<����_��Tٕ5��ee�O:ļqrB5w�[�(T>r������ёNJxR*0a52 w�E0^v 81�#)�7���~��s��v�)��X�� �R�^� u nL� Ϥ�/��UeTL���D�bw�,�7N���I�^(�83jݵB���iwf�'�z��z8�~��Vd���ߵ�p�BcCd��0�.sH���X��xU�&0���y�|�?��`��.�)C!� t�{!� Sci%\�Om}��L�%Jc[�=0�u��+�sD�+�eUx����-� ���A��"zRQf�k+�0s���N�F鳙��v�H�f���H�YR�.�S�q�?�>��bx��,��X��H肏��),�t��U�e���pU�o�lց��7�A�밅���cY���H�����vi@k�+�S�1���"��';bǨ��o�,mKT�J|��E����?�Ҍus�`<:f��%��7�AoxZXwX�+_��{F�>=�Be�[���p�^)H��:�ҝ�6�I�8}աԻ���;��Y Y��H9�oKQCj�i�o�&7��q�|�Y����DO��"_�Jk�{7crƎ΅ �����}ћsB�;�y�.�=M��a�t�So�Cت�[��J���" 8r���Յ0{��~�*+S���ʧ41��0�*yK����1l$���N�v��8����\~�m����7�2�� �,G�%~f�`���`��J�]�@��y��p���FE� `qX�mi.�����$�T���<�uA�A��D4��w�Z{{�t�)�ƯP(�Y'��o!�ú�#i��TS�� а��ĆT���H�߭ ����}<@��ۯ���2k�����2[���xl u�����:�T���-�[�au�zRz��E+����`�����k��<S�H� ���/ݹ�#̭M?��n�e��V�4E�O�� ��IaȘ�]��~��`u�iO+���7���2T;L�3��<��S�7��&~L��:`�8a�3C (�f7�q�j���*P�Pz�4H�^��ho����t�UY�v ;t~���}F)���8�8A�}�,�v���HE���p) q}n,XZ� ǴD����V�9��Ԟ�|�h��}��?a���u2/��aj��RK��%�"v�vS�D�}�W�5�D�E��hV�R�e ��ͷ�7v'�k���H\<����_m�2Ț\�O��t� ���L@���^��B�T�i�V��6�ixz��@Ba4��&���)�*� �rYD��3�_*up����Q�yـ����M߂�%/�K`uE6�\���]���VXj��e7�,�؝0��h*<c��`4���r�>\<Vw���/r��PUC���L��%�GyKx��T�dS6��%�6{�u K�Q�R.�n3�(%�� <^��!��(ƻn/�{���[nIC��6�g�����@�n82\�����o*�<���e�������Q;�3�t���i=QT���+�~����O���^�E���%��2���}�&:�A�C��/���g���.��L��O�'�C_��ݍ��Q\��ḧ́��)�8hS�����PC��xsӚ�D*���l>��h���X�j� fȓ�����8��� tµ�N㛖�ab�`�Z;��+��+�VM��SN}cB�dVm�H�T��,���t�O�n�s��D�n�-�0{>,m�.T��Y<�Lf�]ھQN�,���h�b���/�-2�(0�Ec%{j���OS���x��f��Fe ���h"���h�_� ��q�(3��8�� ��V��"��&%{� �e$�y��+=HR�4�~�|�8y&�&-�?c9�E��� hP�M�F�Y}��?�I�]������0Ͻ����e;���{���K��l����<���O4��b � �ڍ�+�&$�����ٟ1��j,���K�t�1��G��t3���J����7��t!��U�~��>�V���쀊i�Cf� %T#��GG'�-F�֥1oSY���5Z�e�6F/Y��:�4 ��=�di����M�L�L�G�!Gt�f��4�$�i�mkXʝ+�.�Ŵ��U��x)y�������H,h�\��֫>��Wڀ �p��+�L���e�:���Fp�Ⲋ��[�U<��Cv�_ߝ����CÍ�t�]-�2��O�O��X?�)����P��z�oӃ9�h��*}u�%�Y�,��T�(/[�vB��6(G��w��+��Mv�3U�M�$�6K�9�Տ�ЮH�R�uI�U��Ò�I��j�w�ū��d-��y�tv���w>�"����g�����wq��U��8���wҞo��!�b�V˂W9�:+=��A�n� ���qU,�N��R[x����;l@��D�{�Djô� (�pξy^��}F-N�f�y ��9i��";+M��e �24��S�;��Hzw�R��y�Bk�F�W�rS�j����FѪ��ߑ�hx�^5��{*�0�o�1��C�o�q���6��Q΅�dW���0�v$��P�.��;���)����G�w�����W�`�w��D�.�ǖ��J� -!��?��42eK*�kl�����F2�seӺ���2��ps��Z��͍r4AԞ��]�FS��RI|q�ҺV:̑p�����I�D;�w�Cڝ�#Kg�����j_�.@�O�3�s�ީ�0�c}��UV#/��%p�j.�#��y�6#u��;�����*�B�w�r4����)��+M@�5�?��۷�(nK �����=M\��A�Q�;��f ����c�h(>�:���H��m���&y�h��ڞ��͒n���ÿ۱���9���1>�8ͽ���@Ԏ���� ��gL�fw)J3�TcD ��P�_��|�Ŗj95�q �{W�,UZ�μG� 9l�1(�G�:an8�4CЇhPt�{�����ad����b\_��б��f|�c�����u�=���lb��;�~��ΆE�nrvΩg��?f�Y������^vu�"?�~"�͟\���؊�"R�L� �}�]+=#7RЇ�CM�ࠈ���R1e��!CP�OZ���]��;��+-W"�u��C挷��D�mY�=Q��xT�x�8G��j2������\-��1x�Q��o�l��\UƢ��r LSl���t)�`r*b }��ܓ�]_����nW�w�FfKo�����4^7"�����620�us�>�>3�I���+�`��>�����\��q�l�P#H�hz�E�}Dd �e�ZNB5X='��bX�V�O��rm��(�a6xh@��ڑ���L'�p�=���J*������M<�x)�ItC��z��)��ٿ�{��/lX���WE!L�d�Ń��Rqƨ��������7��ŁrSl ���oj�HM��w��2�pz�<Yň�"(�����$q�|` ���͋g�߸���R���c��ji\��hB+�xn!�i���;�r�YO�x�0�>L�jvS:��=pΙ�n����{���(��9P�ˎ���m&9���%��ר����IC�!��oK�*ꚅ|Ռ1� ���8{��NV=��I�1�F�)�1`B�I��������榧-���U4'w�~���1�j�����<�!�]�5��+XЇ���2w�\9��s5~K-�p�$1�-��&��@c5uau}����$>���Og\>k��M��r�&!ЕIR��+�]!��o��=�2���y*��"���*H�O�'���`�d-J��K)��4�i��8eڠ͝SMh�ih<ϝe����rT�_(����c�884�&��V���_Y%�=�ߺRC��K��r�:���3� F� �L6N`�<A�w{]�Q�k����4K��$�k���� ���~?+�c�-Eh��B��{�� J_5kmt��6�'��*q�F�J� �M��So`���W�p���űE�"�"j��b+�X�"�7����Sh0*��S{fF��������o��:�Q�~��{��`rG��J�H�����ʞ��Xs� ��Oz�{p��nTѭ/i�����傮������&~����V]�=�9���Vh���pa6I�i~���X�ʈI�{u�ZCC٠MB{��O��M��<�0�O�|����'��"����}f�6�8G���l"�6�*Y/���ٲ-fȕ��r��<�����H�͌*�1�*�<�] �RJ� �n��$������� p/2D�ܙ�D�l�<�2e��I/�0*]��j�Pv,������v�fGr|�r��<,�a�F�U��r��Ejh���lY��b�\�]�TV*�{|�\E&d���$�î�tÛաX���ۺ�p�~I��Y��^CdO�-��t#Y�I��9����$�Bb�AU�Z���T����v�Q��w}v;�MY��F�IM"�m�"Y,���e�A���ӷ�,Ky �c���/V������K�� qN��y\��)����q�fg ~w���?�������a_wF�3���&�X�~� �Q'�<���0�Ѱ�=c�w��4gGu��Җ��݃ �gY����Բ�h�b�S `�������i�c�����>i�m��X�V�|+��)ed_����x2.� mG� �v�3�[�]��IwP8�n3pR�,�_�m�P:Z�����x�v4��"��e���Oӷ�:I�2�}�!.����9>��[�F����K��f �d��9�2C��"��-G�f�d��N���'ܨ|�\T��Œ}��<�y��_�iGĹ�u^$��b]q�h�"���������x��_��_l8�%kh�6U �4�2�pY�IIM�n^y*ls`�iX�p���Cv�x����u�0���y@(js=OݟQ���Q�?��T祈5�˺�x `��ؓ8�����'�<� ��W&M;��pw�7eY�s�#��ɢ���~�����/!�H)��!e�?o�6ˌ�� @��i�Z&*����B�Y��;D� /O�M���J�;-iN�����®v����~.K�rY�߉wL;-m�ơ}�Ɏ@Wn������t���QD�q��~�a'��ԛ6��R���8�ፇ-m���;vO���)k�@ugOv6���te�|���{#ҝ'9�Ja������|G��洕�{� �rr�pu������^ޕyvRG �����IW�f��9}�<��/�AJ����~�����=Ŏ� ��;ADB$����+�0e8:� �U?֧�@�G�.�+�+���Oϭq#i-VU^{8�Ն��!s���-��n���Њ"�� �Sΐ�1���gL4���hV ����~.Mr��(Tʛ����~0��$��߷�h��p�A��цS�����ᠱ �k�\X��>��H:5�ܠ�4�[�@gU㑘|+���9���c�j� ց�~��@�t̀�lʳ�W~`ʪCW)�ȈV��H��"�G@�v��}oC�"I���v��tv���^.�TV �hJӌܡV:�00I�3.OǴ;j����3v�*���ɽlԫ�p(߭�=��;��AEx*�GW���ܱ�\(�}�u���j9@}S|al!S~U��R����{,}���?������T��Q���&����6�U�Ǡ��L�i"X��"�SC!�h���$X�:"3�0��1k�s�l�_�Ev�`�������P*h}}�C~���Q��h�x��w�*�TE ��/P$]y�ۼ>�\�X��;�Y�YWwF�!��"��#��ݯLJ#�?�H�]�k�4M����c���O�FW��:�x�OFY� A>��hn�`�5�q� ��sb�7r;�L�~Euh\Aׅ_l��RVe��ʪo"���¢8��ԇ������C]ДC��c-Ƈ���M�� ��S�&��J��k���"�2~�h��6��4K����}�|Aaş�vqq�^q�Yn�w�j� �U�����c>.qʸcaUTFRP���7���*�ޡσD��^]��R��߰x\QS��.�~-p���V����p��.I0�ZC.V|*?�KyPGtʩ���5n9Jq#�ǖn�2��P/���m)M���� X!_�wBv��hR�~��Bd�Q��5C�����+P��\���bA�3� =P��ͼ�w���q�X��ྥ�vh~ZRCk���+�a����*a��uQ90��.����i4@��T�6����`X7R�kU�*�^�� ���Ѻ��a��ڹ �R���K���P�@�s��gL'��%���w�����9�5x�u�y�`�2���^���ˋ�/c�=;��l(P\�����ri��ͮ �6G-��;�fx�Fv�/�2�#,��A/�2��2�[�8"�&�����0M8x@�(����&y��~�<5J��B�̙f��4�������IQ ؠᚽ�F�N3���%t�>|�������rM!���/ߎD�c_ �pz!�m�����ѓ�S�.�>ЏiJ��R�~���%|,�jCF��.T��q4gQ��=��Y��:���S#,)�E6/����]� s����T��q��̚��륩^y���D8Ƿ� �0ړ*+��1a�D��q��b)��j�Lj�B�z�l?��tN�]Xn"�o�h�(�c��ui�O&�g�?�~˼����E_]�X�`�G�YJ��Cu��7��"u��gRX�$$k��&w�&�L>���P���=VqӠގP�C���G� �РXP8��x�� �VV�RTa��S��7�b�2Lb8.`�\`���֤�8��0u�o͎7�3�;�]������H!d:c2Y��T��uj��q���O̻ݩ��{��=�TC��?/�V�#mn��L����%��k77�f��l��%wS�p����n�o>�.�G��j�IƽE� oZ���eP # Dn|ÏS��F4?����리��y!˱�V_x;�i�f�I����X}dx>d���m2�|�t�C����xH3uy�,���`�zFh�r@��V �NU�d��AC�ސt5\��Ca)f?51�Oj�ݖxnY_�CG�@����?���� ���o�� �X �'v����:U,��g��z`��(��]�� �V� �o ��ܱ��u�>�>\���LS��J!}n~l�K`xͲ��P��x�K?L�R�C��ʂ�eN>gX�g�_M��9�g\���#���x S!�JŻ���S�l� G_�-����GS=��c�n@ɥ��wJ�?}�oZz�uB8:�5�>߈G�Y�2�E�; �]|���{�Y�f�5+k%ϰ�����-)Mnc!@:h��3<��� SU��'�jj!.�>u�����j�c�GR��LYf�L�KM4���sx�V�2muA��6��L�0!��N�d�����g�>Ԡ2�4�.t�.�5q$�*/�O�E�_�j��j(��nLa�Jt X��; ��xP,����9����CNk�4�,���Ԭ��c�L�+�̊�х'ä�]b�q3Ǘ�XX�/�B �_rY2�6$x&>RbM,+���>����ն�~��i�e�>���E3��D�Ar`��*�-�Lh�v������� ҊE��y��I���}��b��Rz��S �7Cx���B��ۍWbap1�SX2���w Tb��ͥ�#�d-!!-�<�'WȓxK+뺹�*M`(��E*\Jr^F�r���.:!f���yRz����6I%��nI3��D�0t,/9P�iR��q�BYjk%��ap���Յ�+"~7NG:���)'�p��'a�;&��z�7a<l��gg�#O��f�\_�-��v�}�<�9`��{f�:D娦v���b�����vO0![t�����#iJ�ɘ��O�tӛM��o���N���@�(�CvC�K���'\#��N�Ͱ��H�1�53K_�K/!�3�ʹp6�v8c3Gb��V�#g�n� |Fh9�q���(��F���ӆ�����~%���7�2]�&�i�%�$u�h;��2�׀�Pz��b��-��Y����Y��T�84����饭�{5i�NFO��N�(:6ԝҊ8;��s�}�l�N�)p�E{�v*^� �0�Ŀp3��� J=�w��5u����k$H�lx�J�h��|��_�~�k5�m��hS���xLװ�Ӟ�v�.�y���e�8P�'w�`=��jy=+3"���M�����㵽���Y$<s���\0�Lb"HM���k9���]8�)������Z�哵�J����*i��0b���mr:�*�.=|��=M�E�?'q���+�����.X������@:�~Ww矜�=����4?2�q�.���>�V��'���S�0F�,��s���*��{?�,i����.#y��yo�h�4Iכ<u�m�ga��i䭼�<g�����h)5�u-rG��̨?�z�යՒ�Y�k�O��05ل$4:�ȇ��{D�z�;|��P1i�w�5`+f�2���R��_X��t��@Q�SBa�����C�!4z}[��+�a�a uj �� �O��vȽַ\bх��I���u�����\�#ONRW� �z��TKX�㲖���L��T3K:�n�J٫7Y/��p !��#��&�T�c\,79�����V����L �}��u��S�v�P�*6L�z���KJ��)�& <9n� �𠿡�|�vϳ��8Ŕ�� V�;��̌ş��Wuݔ���)[ �~UE�)���?����G$ς��_H)�pٛ�����EOZ�"��|^�2�e�Wi�8V�L>�>��m�a�^a�@��e�&��Oj�M�����`�Z�[�̶�TV�s�r�� �.�1W�U*�N��f7+r����܂�ۃ{��@����G��s_�*Ү����vuĂ8�t�K�u�$�x���S�Tꣅ�{$<��8#��,���?�GxK3E�MQ�F���m4�����*��z�G�� �#s�i�B��c?���n��%_��;�Z�-��^2�[/,��N"H�l�ER1nvҚ����%�D��Y��<1�5��#V�ds �V�*]�g�7��a\N����V���U+�bKqﳼ�h�նٻ�WE���Ʒt��y�`ٜF��?�~�сk�2�]���#e��g_\�w!9E�P�Q�o�`]0|��z`�}��8[�r��R��.�G3X�w���")��Ė:{q#Æ��(�n��z�Y�|�+e��s�- ��� �/��Z;�]D6��d�L{���A�D��T���:�/��[�&�����:.)*�:�e-�=KWAʨ����L5��8`�&.p�ӤT�2�g���W��Z���=�Q��`IGuLP��!�����1m� 1!fWh��D�,�'�-�[���q�фA}ء|0l5n�$�e������Su�%��m���p�-�O�0y$���q/�����#a��2����|Ѡt�i+��F>Wy�b�z|Tgw�(�;���!�b�,!���o� P���%C#ʦ��ધIF���&�K�Z/�*IJb�YЀ��t���D��8p[ ���������4]H����3)o����i�m�M���A�I�۰��PT����`א&q��z����.� ��g��̳�<Ȥ��p�%����*�l�L�Տ���(4Y]��?%�q�Ĥ�zER?8~�r��I��Z�oB,g���Z7N\���:�~Yw����Y/�(�MZRL�T�-��="��?�y>�����_��OIx���H ,�����7���s��u�O&�h�$D�y�ʂ�q9 >��D��k�j�D�K/��{���� ��k0%��-�Ј��� T�-o���`�-ͣ�@ݝ�E&�CQ&l��{���7�î~�dQ�t|�-�g �-�t�ܐ�#�B,.�J�x�e����.�8�0�����D�ERnjȣ�t�̾�n4��-e�.;?��#��I�а� v ��]�5W�떖�N ֕��p*^sk�s�?H��n��w(�b0rE،����l��� ӂ�z��*|��9w�g��|OyA�} �:���v2}�b�m�G��;�OC��ŸN��g�c?�¨�p��\��iȌejHT���#�F���>�ET�n��OQ虻�9 �|K�a}����K�r_�f�~E�arh��6.L2zOy(Ab}BNk�-1��&�� �]-����י����r=��iJw�������\�V��]ڠ��ο��y/�䟴rG�jL2�`M�>v��F.�0�4Ǵ���8Qe�w��aF�/f0p`�^Q8v��ꐙ=����'��N��#���kk^:\��Ku�� �q���J���WMZ��LP���d.�D�7����,@�J��5��g����W��O������^��\̩"N�Ī�E��;�Am�C��h ��L*�s��sp�6h�!��z8O?麜'3I����|����N��Vx�(�E�菅���H���D�Ӭ�����hv��7��&�S�^U�b-v�$t᧾����68�$A��x�nߔ� �u�H03��Kk�Ȱ�y�S�;���N�5�����4�]���l�k�����=�����FK�G?�~&�X�m�o���.�v��J]�|-�c���cٌP6Ҷ�ɷn�+~e��T8�` Q0_2� ɿlw�������]�]��͢⨹���l��%��^�_�,�ە'�k$�B�q�����n^3J��N�롖L��LHQT�Ĩ��[�;�À��p��8�rm�d�d�[&�{ڪ��[3�6��g��n��:�6�~��t��[�~I��MRө��<_!�}�?�g����ĊWii�꿴�f��$� w�#�6I�PP8�F��I&^1��#}z:�W�"���j�^n�R�>a���L�����7#n�̒ �t{'����.�� �1t�:�T���߇凩z�{o���}N<ʆ�3}[m��OP��.o��0DŽ�ץ��8�e���,�WEd{���8�sl�Li�*}_rLq�h�b�OQk�B�<Q�1�{������i�c�C�˔���d�ٔV�B-��EV݅�H�IP����F��U����m��$M�L:�Pc�)�PL�A�ܭ�늽I��ћX����3�[�xM�ΐ&�o��3�)��`=b����C� ��ТCBl�1��l�iS�Ձ�ixf���3�ȮK#~T�lc:� y�;i�F�ۏ?�?_O������*�cgf��Ghb?b�/���$f��5�(������I����N���@����|�|[H,����zX�����\Ϝ��Q���J�zL�9_�t�Z�tCX[���ν�86��e�V�����7���(���� �5>��g5H&��d������l��)�Ťd����8�3���e{t�;{�i$������E�fK���#�5v6����V�v�Z��'�Ŭ����9�p��_�:0bޅ~n)�_R�xT*��E���P1�G�|���әԱ�f����f���4����ab��s�ef;g��ѩj�.�:_�}��(^�]�Vif��˺z�T�0?����0䑍��$t������O��\\�j%��ױ�G���+7<�xLp�7����)� �re5��V�?�&)J�> O&��^o���6�|�$�e�f��2y�|�<d���vw����Q�o��#xL���S�}_'���r��b�_�K���g@9 ����O��?Vc�6�b)����i|T_)�ɓ������]�h'ƀ-hs���TU6'�EN;��|[}Z�I������WYG���|}/.>Mw(߫�5���Q���]�)i�/����S�&G)xJ�����B^�\0N�3��Ü�d��x���`)"Hx4V:�H�)Nk��j��/���[����#����.�'��!�m/�O��@`B�"1�1���g*w�h�K^f�Ԥ����q��+�7l�R�$�������[K�u/���������p��Ь�6��˙[� �,�+~cd#�W���ɂI`�2V2v]V�@N�Ӫ=җ��)Ħ/41@p���u���R6N_S�#�?�D���Z`�ω���]�x��q�����N�L�1�2�Y"�Д�����b{��~�2ux�p��^��1Q��-L���L� �D���3�"Efmѫ֗�մ�Q߯)X`��F��������D:���n�� ���k4 ��][I �7�`�:��_�Zn*k�T��Y.��> �F�0N�%J�m�÷�~I�8�DN|��G��F�3�<���A�f$R�q�0d2!���:HhU���%� W��@?��4nXH��$~������eY����^���d�% �d+̠�K�6���C{f%a'����3�������������b���rѶ�vz*��8 ~<���֧W�0v�e�T�b�n �Sw�����/�V&�Iip0��\=�4S�b����xD���S'̊�m������U���9=��={�lwmA�u� ?��*���p��zN��dhZR��><`�E��T� �`�8Lz����-B$/ն]��:f=��1�4#���f"���g���X���{���_�!�~����bCN{�ʉw6B��][��S��1��z<\+�Ƅ��x���>�) K�����-e?�xC�8�g��[�9�A�}eÎ� ޢeS�D��X�:�����C��m����2AGI�Ͼ>w���U�4��D.��_h5M�*d�M^�:���h`{`��~���p�bT�-�/��4\����6A��Yk� Wɚ��_e!�4�ܕs�*�=?���%���_��߰|S�"u\��B_ܭ,��SX�>�|)�N�}��Ý��M 6��un���?`��P;��+�R���0T�mHD Z�k�y�8!�Y��>2���/��w����غK�< ����V�/��T��� [���v��S�E����z�1 p,;4�gU�.� � �3s{���f)&W'M�7xx�~�L�{�EŒu��Ӽ��\����_p���}���c`C<�~�j�צ���P���X;C:6�ӡ���6m��Ʊx�7#N��"�:e�p�ݲ���`&-,�9&ѭ8����´��bi��K��5�z�8iO�-,�9&ѭ8����´��bi��K��5�z�7�)A���assets/uikit-themes/master-vibe/images/list-bullet.svg000064400000000251151666572400017134 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="2" cx="5" cy="5" r="4" /> </svg> assets/uikit-themes/master-vibe/images/divider-icon.svg000064400000000726151666572400017257 0ustar00<svg width="30" height="17" viewBox="0 0 30 17" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <path id="a" d="M145 750l15 17h-30z" /> <mask id="b" width="30" height="17" fill="#fff" x="0" y="0"> <use xlink:href="#a" /> </mask> </defs> <use xlink:href="#a" fill="none" fill-rule="evenodd" stroke="#000" stroke-width="4" mask="url(#b)" transform="matrix(1 0 0 -1 -130 767)" /> </svg> assets/uikit-themes/master-kojiro/images/divider-icon.svg000064400000000550151666572400017622 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="m5.25,5.24C5.25,2.62,7.39.5,10,.5s4.75,2.12,4.75,4.74v.09c2.62,0,4.74,2.09,4.74,4.7s-2.03,4.53-4.55,4.64v.16c0,2.62-2.12,4.67-4.74,4.67s-4.59-2.13-4.59-4.75h-.36c-2.63.02-4.75-2.11-4.75-4.72s2.13-4.7,4.75-4.7c0,0,0-.09,0-.09Z" /> </svg> assets/uikit-themes/master-kojiro/images/box-decoration-image-01.svg000064400000010176151666572400021466 0ustar00<svg width="200" height="30" viewBox="0 0 200 30" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="m58.56,3.11c-.08-.05-.13.04,0,0m65.64-1.94s.04,0,.06,0c.05-.31.09-.58.14-.78l-.2.79Zm10.55,1.99s.04.05.06.08c0-.18,0-.37-.06-.08m-34.88.78c-.09-.02-.14.05-.18.15.04-.06.11-.12.18-.15m-60.65.72s.03-.02.05-.03c-.04-.06-.08-.12-.11-.19l.07.21h0Zm.21-.53c.23.23-.06.44-.17.5.25.42.51.45.78.26,0-.48-.49-.41-.6-.77M4.11,5.82l.11-.19c-.04.06-.08.12-.11.19m96.7,21.69s-.11.06-.16.11c.08.01.13-.04.16-.11M9.65,6.33l.06-.76c-.04.25-.07.5-.06.76M124.4.38l.08-.29c-.03.09-.06.19-.08.29m20.11,3.32c0,.19.02.39.05.58h.03l-.08-.58h0Zm49.12,12.36c0-.1,0-.2-.02-.29l-.2.54c.1-.05.18-.13.22-.24m-35.75-8.99c.02-.08.03-.17.05-.26-.23-.25-.83-.31-1.61-.29l-.05.93,1.61-.38Zm14.55,21.86l-1.42-1.89c4.58-.84,6.71,1.05,10.63-.44l-.22.4c.57.44.91-3.78,7.19,1.4v.19c.22-.03.22-.4.65.09l-1.09-1.16c.65-.47,1.22-1.36,2.1-1.49.18.26.27.58.26.89l2.14-.3.65,1.21c.65-.65.37-3.22,2.11-1.78-.65-1.78.87-1.06.66-1.97.09.22.29.55.44.85,1.04-.2,3-.69,3.48-1.6,0,0-4.05-3.76-5.13-5.67,1.46.49.39-.21.1-.81l-.1.44c-.87-.44-.87-1.56-1.31-1.87,0,.1,0,.21.02.31l.05-.15c.04.15.02.3-.03.44,0,.24-.03.43-.27.36l.05-.11c-.42.09-.87.05-1.27-.1v-.93c-.65,1.78-4.35-2.75-5.22-2.81-.87-1.19-1.96.28-3.05-.31-1.74-.31-.87-1.37-1.74-2.19-1.09-.59.22,1.09-.22,1.15l-1.3-1.31c.76-.11.35-.68.21-1.04-1.13-.16-2.91-1.89-3.26-.02-1.52-.9-1.52-1.65-2.18-1.75.22.34.65.65.65,1.03-.6-.83-.29.2-.04.38-.93.8-4.83-3.43-5.03-1.38v-.37c-.22,1.53.12,3.01-.53,3.86l-.43-.68-.65.65c-.26-.3-.35-.71-.22-1.09-1.07.7-2.55-.15-3.84-.36l1.35,4.18c-1.09-.97-3.04-2.93-3.26-1.59l-.65-1.4c-2.17-2.69-1.53,1.15-2.4.34l-1.09-1.53,1.09.03c-.9-.64-1.7-1.41-2.39-2.28,0,.01,0,.02,0,.04.06.06.1.14.11.23l-.15.03c-.09.74-.74,1.28-1.47,1.22-1.09-.22-1.95.9-3.68-.72l-.44,1.56-1.3-.93v-1.24c1.29.08,3.7-.38,5.35-.43l.03-.57c-.98,0-2.09.54-2.73.41-.31-.25-1.11-1.54-.53-2.38l-.6,1.21c-3.26.12-3.28.18-6.68-1.24l.29.62c-.68.36-1.35.71-1.54-.29-2.04-.21-4.16-1.01-5.48-2.59l-.3,1.46c-.43-.08-1.07-2.3-1.29-.25l-.93.64c-.59-.11-.95.72-1.62-.12h0c-.04-.06-.09-.11-.13-.17,0,.04,0,.08,0,.12-1.33-.65,0,1.31-1.52.46-.49-1.04-.55,1.85-1.29,1.52l-.74-2.1c-1.34-1.21-1.58.89-3.54.89-.94-.75-1.38-2.55-.76-4.14-.86,1.92-.4,1.25-1.53,2.17-.17-.79-.05-.95.2-1.67-1.01-.93-.62.71-1.38.66-.22,1.49-.49,3.86-.74,3.96l.29.46c-.81.79-1.69,1.16-2.62.4l.04-.75-1,.37-.06-.96-1.42.29.2.26c-.34.12-1.43.45-2.05-.05l.02-.53c-1.76-1.67-3.23.5-5.3.66l.27-1.09c-.7-1.08-.2,1.67-1.04,1.13l-.04-1.34c-.75,1.75-.96-.38-1.46-1.04l.23,1.75-.96-.37c-1.05-.58-.64-2.21-.48-3.13l-.73,1.37-.14-1.54c-.53,1.79-.53-.29-1.45.67-.07-.58.16-.92-.15-1.17l-1.53,2.17.92-.96-.12,2.26c-.96,1.71-1.29-.25-1.98.37l.47-.67c-1.11.54-1.17-.42-1.8-.92.2.42.49,1.04.04,1.34-.33.12-.18-.79-.49-1.04-.08,1.5-.88,2.3-1.6,1.58,0-.19.02-.37.07-.56-.19.24-.28.63-.6.27l.2-1.67-.63,1.59c-.41-.46-1.01.75-.96-.38l.23-.33-3.12-.42-.04-1.34c-.32,1.84-1.7-.71-1.61,1.59-.59-1.25-2.32.87-1.97-1.72-2.05-.21-3.17,2.28-5.66,1-.88-2.2-3.32-1.5-4.92-1.74-3.13.9-5.16,1.72-8.37,2.41-1.91-3.08-4.81,1.03-6.87-.71l-.57,1.21c-1.37-1.95-3.48.41-5.41-1.49-.23.3-.51.55-.83.74.09.06.22.29.26,1.06-.55-.54-1.67.12-1.58-1.42l.14-.16c.09-1.54-1.68.71-2.29-.63l.33,1.66-1.04-.28.28-.31c-4.55,3.66-6.58-1.61-10.86,1.72.57-1.8-.84.94-.89-1.03-1.07-2.49-1.99.52-2.88,1.18,0,.12-.02.24-.06.36l-1.54-.24c.93-2.49-1.12,2.06-.26-.05-4.01-1.89-9.26-.01-13.91-.89l.2.64c-1.18-.13-2.65.64-3.54-.38s-1.96,1.62-2.31,1.72c-.99,1.1-1.87-1.1-1.45-.98-1.05.3-2.04,2.58-3.5,1.59-.49-2.12-3.98,2.06-4.01-.33v.2c-1.87-1.69-3.64,1.16-5.65-.37.02-.11.06-.22.11-.33L0,13.04l1.14,7.98,3.52,6.49,9.6-1.35,7.65,2.57,18.64-.76,1.34-1.79c3.65,3.16,8.36-.43,12.3,1.83l.09-1.55c1.11-.08,1.03.87,1.31,1.14,10.35-.29,21.01-2.3,30.31-.3.89,1.03,3.63.44,4.33,1.52,3.03-1.88,6.24-1.84,9.26-1.63l-.12.17,1.42-.29c.06.13.07.29.02.43,1.61-1.36,4.14,0,6.11.57l-.12.17c11.49.34,22.17-2.49,33.56-.27,5.29,2.55,11.47-.9,17.54,1.23,1.11,1.55,13.42.45,14.51-.26m18.11-1.98h-.05c0,.66.07.41.05,0m-25.34-17.96s.05.01.08.01l-.3-.92.21.9h0Zm16.28-.45c-.73-.21-.77-.05-.66.21.24.06.5-.02.66-.21m15.05,17.2c.39.05.24-.33.01-.77-.39.08-.66.11-.66.11.21.15.43.5.65.65m-1.54-8.86l.12-.52c-.22.12-.22.32-.12.52" /> </svg> assets/uikit-themes/master-kojiro/images/mask-default-border-image.svg000064400000043721151666572400022165 0ustar00<svg width="390" height="390" preserveAspectRatio="none" viewBox="0 0 390 390" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M19.11,38.57c.36-.56.92-.74,1.65-.38-.18,2.58.36,5.17-.36,5.73-.55,2.4-.55,1.84,0,4.43-.36,1.1-1.65.18-2.2.56.18,1.47-.56,1.29-.38,3.13,1.1-.18,1.65,1.66,1.47,5.17,1.1-1.1,1.47.74,1.83,2.58,0,2.58-1.29,1.86-1.29,4.44-.36,3.13-.73,6.09-1.27,7.56,0,0-1.49-3.28-1.61-.66-.1,2.62-2.25,1.22-2.25,1.22-.36-1.48-.73.74-.91-.74,1.65-2.58.55-9.59.36-12.74,0,0,.09-.63-.55-.92-.74,0-6.27.69-5.35,1.99.73-1.3-.55,3.87.36,3.87.18,1.66,0,4.25,0,3.14-.36-.74-1.1-.74-1.47-1.29-.55,1.66.92,4.05,1.47,5.71-.55.38,0,2.96-.73,3.14-.19,1.66.36,1.1-.56,1.3-.55,3.13.65,4.38-.09,5.86-.73-.18-.36-.92-.73,1.3-1.1.36-.36,2.03-.36,4.97-.92.19-.74-2.21-1.47-.73.18,8.11-1.1,14.76.18,19.55-.36.93-.92,1.48-.92,3.14,0,.92.56,1.1.56,1.84-.92,1.12-.19,3.32-.38,5.73-.14,3.56-1.36,3.64-1.62,7.95l-.36,5.12c-.03,1.66.08,5.08.82,4.89.17,1.66.36,4.57-.36,4.38.52,2.41-.55,2.62-.21,5.95.45-.32.03,1.74.39,1.93-.42,5.35-.65,10.7-.71,17.71.53,1.48-.21.51-.04,3.69.49.75.55,1.53.53,1.86-.18,7.34-.05,16.7-.06,25.6v.26c-.08,8.91.06,18.16.17,25.51.01.31-.4,1.19-.9,1.93-.21,3.19.55,2.22,0,3.7v1.44c.04,6.32.22,11.29.56,16.27-.36.19.96,5.86.42,8.26.33,1.19.26,4.03.23,6.43,0,.47-.01.93-.01,1.36-.36.92-.56-.38-.92,1.29v4.43c0,.92.56.56.56,1.3-.38,1.1-.74,2.09-.92,3.75,0,0-.01.8-.01.86v1.66h-.55c0,2.22-.62,1.86-.81,4.44-.74.56,1.66,1.69,1.29,2.79-.36-1.48-.45,4.22.45,11.61.78.77-1.56,4.71-.39,10.14.18,4.23-1.09,8.46-.19,11.96-.18-.26-.14,3.74,1.29,3.92-.55.74-1.27,1.29-1.27,3.14.36.55,0,2.58,0,2.58-.19,2.21.91,1.84.91,3.87-1.65-1.48-.73,4.06-.73,4.43,0-.74,1.45,2.58,1.45,3.7-.91.92-1.45,2.77-1.27,6.27,1.27-.74.36,2.4,0,1.84v6.83c.55.56.55,2.05.55,6.3,0,2.95.56,3.13,0,4.99,0,1.12.14,2.09.3,3.05.27,1.12,1.17,5.49,1.17,5.62,0,.18,1.08,2.6,1.45,3.52,0,0,1.09,1.48.73,1.3,1.1,2.95,2.57,4.99,4.21,6.65.74.92,1.65,1.66,2.75,2.58,1.1.74,2.38,1.66,3.84,2.4,2.21.55.95-3.13,2.23-2.21.36.18,4.03.01,5.31.38.91.36,1.65.56,2.01.92,1.83.18,3.48.36,5.31.36,4.03,0,7.51,0,10.62.38.18-.38.36-.74,2.2-.56.92.18,1.83.18,2.57.18h4.95c1.09-.18,1.27-.55,2.56-.55s2.94.55,4.4.36c.73-.18,1.29-.56,1.83-.56,0,0,.36.19.73.38,0,0,.04.55.4.19.38-.35.75-.57,2.57-.83,1.83-.27.38.9.38.9,5.6,0,11.5.78,16.46.31,1.09-.16,2.01-.78,3.26-.31,0,.31-.94.31-1.56.31,1.25.47,6.21.47,5.9-.62.47.62,1.4.31,3.26.47.94.16,2.17.93,4.82.47.31-.47-.78-.47-1.56-.47.31-.31,1.09-.93-.62-.78.31-.77,1.25.31,2.18,0-.47-.31-.62-.61-.62-1.08,1.39-.16,1.39.47,2.64.31-.62-1.09,1.55-1.25,2.64-.78-.62.93-2.95,1.09-3.1,2.17.78.47,2.17.47,2.64,1.09.78-.47.78-1.09,1.56-1.4,1.55,0,1.39,1.25-.47,1.09,2.01.93,3.42-.62,3.73-1.4,1.08.62,3.25.62,2.79,1.87.77,0,1.39,0,1.55.31,1.09-.62,3.57-.47,3.73-1.4-1.4-.16-2.79-.16-2.17.78h-2.65c-.45-1.09,2.49-.47,2.03-1.4-1.71-.31-1.4-.16-2.64.31.16-.78,2.33-.78,2.64-1.54,1.55-.16,2.48.77,3.73.16,0-1.25-3.88-2.03-3.26-2.64-1.25-.47-2.95.3-4.82-.16.94.61,0,.31,0,1.08-2.48.16-1.08-1.7-3.71-1.54-1.25,0-.62.16-.47.47-1.09.16-.78-.47-1.56-.47-1.23-.16-1.7,0-2.32.31,1.55-.16,1.55.47,2.48.77-.94-.16-3.1.31-3.1-.3.31,0,.62-.16.47-.47-.47.16-.94.31-1.7.31-1.87-.47,1.08-.78.45-1.4-.3.47-2.48,0-2.64.62-1.23,0,.62-.62,1.09-.78-1.25-.47-3.73.31-5.27-.47,1.08-.78,1.86.47,3.26.31.31-.62,2.32-.78,1.08-1.39,0,0-.36.19-.96-.64-.58-.83-1.07-.34-1.79-.51-.73-.16-1.36-.3-1.55-.58-.19-.3-1.43-.14-2.84.64-1.42.78-1.57-.4-1.57-.4-.55-.55-1.83-.55-2.56-.74-2.01-.18-3.48.56-5.13.56-.74,0-.92-.36-1.83-.36-4.77.18-10.26.36-16.31.18-1.47.36,1.1.92-.73,1.29-.74,0-1.29-1.29-1.83-.36.73.36-.38.74-1.65.92.36-.36.55-.74-.56-.92-.18,1.29-2.56-.36-3.1.56,1.09.18,1.45.55,2.2.73-.36,0-.55,0-.74.19-.36-1.12-3.48-.18-1.83-1.66-1.27-.18-1.27.36-1.83.55,0,0,.34,1.67-.51,1.3-.86-.38-1.56-1.19-.92-1.84.64-.64,1.45-.03,1.17-.88-.29-.86-1.1-.51-.64-.83.45-.31-.96-.29-.78-1s.58-.79.58-.79c1.09-1.3,5.86-.92,8.98-.92v.92c3.84.18,4.03,0,6.96.73,1.65-.55,5.86.93,7.33.38-.73,0-.73-.56-.55-.92,2.31-.36,4.99.32,6.82-.83.22.09.69.27,1.25.65,3.84-.56,6.4,1.1,10.62.18-.18.74,2.38.74,3.12.74,4.57.36,7.14-.19,10.62.73.73-.73,3.48-.55,5.68-.55.92-.19,5.13-.56,6.96-.19,2.2-.18,6.96-.55,8.79.19h5.69s2.14-.21,3.42-.01c5.87.6,12.83-.27,19.43-.22.92,0,2.2.38,3.12.39,3.66.03,8.23-.13,8.79-.86,3.3,1.13,8.25-.13,10.08-.12,1.29.01,2.38.39,3.84.4,1.1,0,1.47-.36,2.57-.35.73,0,.91.36,1.83.38.18,0,1.29-.55,1.83-.55.74.01,2.57.21,3.84.4.92,0,1.83.57,3.12.77,1.45,0,3.12-.53,4.95-.16.73.01.91.38,1.82.39,1.65.01,3.49-.71,5.14-.52,3.3.21,8.25-.13,11.91-.1,1.47.01,2.56.39,3.84.4.91,0,3.84-.53,4.4-.52,1.45,0,4.39.03,4.57-.34,1.1,0,3.12.03,3.68.03,2.2-.17,8.98.25,10.62.26,1.83.01,3.48-.53,5.13-.52.73.01,1.47.38,1.83.39,1.1-.18,2.2-.9,3.1-.91,0,.06,1.32.57,1.84.57,1.53.19,2.58.07,3.42-.1.87-.18,1.52-.41,2.27-.4.73,0,1.82.38,3.1.39,1.65.01,3.3-.17,4.4-.16.73,0,.91.38,1.83.38,4.95-.13,18.35.27,18.35.32h2.53c.73.03,1.29-.16,1.47-.16.36-.18-.36-.38-2.57-.57,1.84-.17,3.68-.16,5.69-.14-.18,0-.36.18-.18.36,1.65-.17,3.48-.16,4.77-.34,1.65.01,3.48.03,5.13-.14,0,0,3.21,0,1.62.4-1.83.92-4.77,0-6.23.55.55.19,2.75.92,1.29.92-.18-.73-2.75-.18-3.12-.73-.74.74,2.74,1.1.55,1.66-.91,0-1.47-.19-2.01-.38-.18.38.18.56.55.56,0,.74-2.56.18-3.66.36,1.1-.36,1.1-1.1,2.94-.92-.73-.36-1.29-.55-2.75-.36-.91,0-.55.74-1.83.55.18-.36.92-.55-.55-.55-3.12-.18-1.47,2.03-4.4,1.84,0-.92-1.09-.56,0-1.3-2.2.56-4.21-.36-5.68.19.73.74-3.84,1.66-3.84,3.13,1.47.74,2.56-.36,4.39-.18.38.92,2.94.92,3.12,1.84-1.47-.55-1.09-.74-3.12-.36-.55,1.1,2.94.36,2.39,1.66h-3.12c.73-1.12-.92-1.1-2.57-.92.19,1.1,3.12.92,4.4,1.66.18-.38.92-.38,1.83-.38-.55-1.48,2.01-1.48,3.3-2.21.36.92,2.01,2.77,4.4,1.66-2.21.18-2.39-1.3-.56-1.3.92.36.92,1.1,1.83,1.66.56-.74,2.21-.74,3.12-1.3-.18-1.29-2.94-1.47-3.66-2.58,1.29-.55,3.84-.36,3.12.92,1.47.19,1.47-.55,3.12-.36,0,.56-.18.92-.74,1.3,1.1.36,2.2-.93,2.57,0-2.01-.19-1.1.55-.74.92-.91,0-2.2,0-1.83.55,3.12.56,4.59-.36,5.69-.55,2.2-.19,2.64.48,3.69-.1,1.01,1.17,5.65.83,7.12.29.91-.18.73-.18,2.01,0,5.86.55,12.82-.38,19.42-.38.92,0,2.21.38,3.12.38,3.66,0,8.25-.19,8.79-.92,3.3,1.1,8.25-.19,10.08-.19,1.29,0,2.39.38,3.84.38,1.1,0,1.47-.38,2.57-.38.73,0,.91.38,1.83.38.18,0,1.29-.56,1.83-.56l1.53-.73c.92-.36,1.83-.55,2.75-.74.73-.18,1.65-.36,2.56-.55.92-.19,1.65-.56,2.57-1.12,1.65-.92,3.3-2.39,4.39-4.25.56-.92,1.1-1.84,1.47-2.77.36-.92.55-1.84.73-2.95.38-2.04.74-4.06.92-6.1.18-2.03.18-4.23.18-6.45v-5.91c0-3.32,0-6.09.18-8.13v-.12c-.1-.47.08-1.53-.1-2.08,0-4.06-.61-6.13.12-7.97-.36-.18-.91,0-.91-.74.73-1.47-.19-2.77,0-4.99,0-1.65,1.27-.36.91-2.58-.36,0-.73-.18-.55-1.29,0-1.3.91-.74.73-2.58-1.09-.74-.36-2.58-.36-3.88,0-4.05-.18-12,.18-15.86.18-1.84-.18-3.51-.18-5.73,0-.74.36-.92.36-1.84,0-1.84-.55-3.32-.18-5.17,0-1.18.77-.83.77-2.14,0-.13-.01-.27-.03-.44-.56-1.66-1.1-3.7-1.47-5.73-.18,2.22-1.47.92-1.83,0-.36,1.84,0,17.83-.18,20.41,0,1.3.55,2.77,0,3.88-.74-2.04-.74-4.62-1.84-4.99.19-2.4-1.09-1.3-1.64-.74,0-1.1-1.1-.56-.92-1.84,0-7.57,1.25-36.09,2.53-33.87.55.92,2.01,0,2.38,2.03,0-1.1.18-2.03.74-2.58,1.44,2.13,2.01,0,2.01,0,0-.67-.02-1.38-.04-2.1-.1-2.6-.36-5.24-.66-6.41.74-10.33.38-20.85-.91-29.9.18-.92.55-1.66.73-2.58-.73-2.21-.91-6.09-.55-8.85-.36-1.48-.91-2.22-.91-4.43.36,0,.91,2.58,1.27.74-.73-.38-.73-2.4-.91-3.88h.91c-.18-3.32-1.09-7.75,0-10.15-.36-.36-.73-.74-.91-1.29.18-2.96-.55-8.13-.18-12.74,0-.18.55-1.12.55-1.3.36-1.84-.18-3.69.36-4.43.38,0,.18,1.1.56,1.3.36-2.96-.56-3.14-.92-4.44.74.19.92-.55.92-1.84.18-1.48-.56-1.84-.56-3.14,0-1.1.74-2.58.74-3.69,0-1.66-.55-1.48-.55-3.14.18-.18.36-.55.36-1.29.36.18.73,1.1.91,0-1.47-6.83,0-18.64-.36-27.87,0-.17-.02-.33-.02-.5-.14-3.44.03-7.79.21-11.49-.73-.55-.91-6.45,0-3.13-.73-3.52.38-7.02.19-11.45-.74-.18-1.1-1.66-1.29-3.14.36,0,.36-.55.55-.55.55,0,.18,1.84.55,1.84.38-2.95-.36-3.88-.91-5.17,1.83-1.48.73-8.85,1.1-13.29.18-.74,0-3.87-.38-1.84,0,1.1.38,3.14-.73,2.58.55-3.51-.18-3.32-.55-6.27-.92-.56-1.1.56-1.83.56,0-.93-.56-1.12-.56-1.86l.77-17.07c-1.47-.74-1.13.65-1.49.65-1.29-.74,0-2.58-.18-5.17,0,0,1.88-.4,1.62-1.3-.39-1.17-5.55.3-5.65-14.38v-16.06c0-4.25-3.3-7.57-7.52-7.57l-104.83-.36h-6.21c-.18,0-.18.18-.18.18h-.22l-.26-.06c-.28-.05-.51-.12-.73-.2-.67-.23-1.3-.49-2.94-.2.55.36-.43.29-.97.47h-1.42c.73-.18,1.27-.55.91-.92-1.65,0-1.65-.55-3.12-.74-2.01,0-3.82.74-4.73,1.66h-6.66c0-.18-.19-1.47-1.83-1.47-.56,0-.56.74-1.84.55-1.45-.18-1.09-.92-3.1-.92-1.1.38-2.57.56-2.57,1.48,2.39.56,2.43.26,5.18.08,0,0,1.27-.17,1.82-.17.18.38.52.09.32.27,0,0-2.18,0-2.36.18h-18.5c2.01,0,.51-.64-.1-.73-1.29,0-.83-.56-2.66-.38-.18.38,0,.92-.74.92-2.56-.74-2.56.19-4.95.19,0,0-.49-.39-2.1-.75-.91-.23-1.92.75-1.92.75-.18-.19-.36-.38-1.29-.19l-.61.19h-5.34c.18-.74-3.78-.6-3.96-.6-.74-.19-1.82-.32-2.55-.52-.36,0-1.27.12-1.47.3-.36.18-2.56.08-2.38.26.55.18.95.34,1.09.56h-5.29c.19-1.3-3.92.44-3.56-.86-3.66.38-2.94-1.29-6.23-.92-.91.19-2.68,1.26-2.68,1.26-.36-.36-6.35-.73-10.01-.55-1.1,1.1-12.82-.66-13.38.08-.55,0-2.38-.74-4.39-.56-.36.92-1.83.56-3.3.92-1.1.18-1.32-.29-2.97-.47-1.65,0-3.97,1.08-5.29,1.09-.69,0-1.36-.06-2.01-.16-4.05-.67-7.29-3.19-8.48-3.11-1.65.36.56,1.48-.73,1.48-1.83-.38-4.21-.9-4.77-1.08.19-1.69-11.01-1.01-13.76-.45-.14-.86-2.01-1.06-3.07-1.36h-1.17s-.86-.47-.91-.48-.43-.95.05-2.39c.48-1.45-.42-.75-1-.17-.58.6-.75.48-1.23-.91-.47-1.39,2.38-1.14,2.38-1.14.36.73,3.12,1.47,4.4,1.29,3.66,0,8.07.36,10.08-.56,5.96-.73,15.02-.55,15.39-2.03-2.39-.18-.42.61-3.16.25-.74-.92-1.43-2.83,1.14-3.21,0,.38-.38.74-.74.93,1.92.06,3.74-1.08,4.83.05.03.03.04.04.05.04-.14-.18-1.32-1.47-1.32-1.47-.91-.73-4.48.1-6.3.26-2.94.18-5.87-.74-6.97.18h5.69c-1.1.93.18.38,1.83,1.3.55.36-.03,1.31.52,1.49-.36.18-2.17.17-2.35-.57.73-.18,1.47-.36,1.83-.56-3.12-.36-2.57,1.12-4.4,1.3-1.27-.18-4.39.56-3.66-.74-3.12.38-6.96.18-8.25,1.48-1.47-.56-2.01-1.48-3.3-1.84-.73.36-.55,1.47-2.56,1.29-1.47-.36-1.83-1.47-4.4-1.29-.18.55.18,1.1-.73,1.29-1.47,0-2.2.56-3.12.56s-1.1-.56-1.83-.56c-.18,0-1.1.92-1.29.38,0-.56,1.65-.19,1.29-.92-2.56.36-1.83-.92-4.4-.74.19,1.1-4.57.55-4.39,0,.91-.92,2.94.74,3.84-.38-1.65.56-1.83-1.1-.55-.92,1.29.18,2.2.74,4.39.74-.18.56.74.92,1.29.38-1.65-.38-1.47-1.48,1.29-1.3-.18,1.3,1.47,2.03,3.12,2.58,2.01-1.48-2.75-.92-1.83-2.77,2.92-.38,3.1,1.29,4.95.36.91.56.91,1.66,2.38,1.84.55-.36,1.29-.55,1.83-.92,1.1.74,7.51-.18,5.68.92,2.01.19,1.65-.74,3.12-.92,3.3-.36,5.49.56,7.51-.55-1.45-.93-3.1.18-4.39,0-.18,0-.36,0,0,.36-2.38.18-3.12-.36-3.12-1.3-2.75.01-6.42.01-9.9-.18-.18.56.92.74,0,.92-2.01,0-1.09-1.29-2.38-1.66-3.84.74-10.62-.36-12.64.56.73,0,1.83,0,1.83.38-2.75.36-2.75-.56-4.4-.74-2.94-.18-4.4.55-6.23.92,0-.56.19-1.1-1.27-.92-2.39.36-2.21.55-3.86.74-4.39-.19-8.26.17-9.88-.38-.92.18-3.3-.36-3.12.38,1.09.36-4.04,1.66-5.87,0,1.29,0,2.03-.18,1.83-.92-2.56-.19-3.48.55-6.22.18-1.29-.18-1.1-.92-3.12-.74-.36,1.48-2.94,1.84-5.13,2.4-.99.32-2.2.74-2.01.18-4.22.56-8.43-.74-10.62.92,1.09.56,2.38.18,3.84,0,.91.56.91,1.66,2.38,1.84.92-.73,1.65-1.1,1.29.38,4.77-.18.18,1.48,0,2.21,1.65.74,2.2,1.12,4.95.74.36.92,2.21,1.12,5.04,1.77,0,0,1.82.22,2.47-.1,1.47-.92,3.86-.74,6.23-.92,2.01-.18,4.03-.74,5.68-.92,3.3-.18,7.52.36,11.37.18,0,0,2.69-1.86,7.1-1.53,4.4.32,7.27.96,3.88,1.18-3.4.21-5.22-.6-4.95.16.18.51,1.22.87,1.87,1.06-.74-.16-1.99-.3-1.71.55.38,1.18.16,1.49-.74.96-.91-.53-2.08-.43-2.08-.43l-1,.45c-2.01,0-5.31.18-6.23.92,1.1,0,3.12-.36,2.57.74-1.47.18-1.29-.56-3.12-.38-1.83.56-.18,1.48-1.29,1.86.55-1.3-3.12-.56-3.66-1.3-2.01,0-4.59-.36-3.3-.56,2.57-.36,3.84-.18,6.23,0,.36-.55,2.38-.18,2.01-1.29-4.77.74-11.91-.36-15.03.56-.18-.38-1.29-.38-1.83-.56-.36.36-.92.36-1.65.36h-2.38c-1.29,0-3.48.38-4.22.38-.36,0-3.3,1.66-6.6,2.03-.73,0-1.27.56-2.38.74-1.47-.55.18-.55-.73-1.48-1.1,0-1.47.56-2.03,0q-1.47.19-3.1.56c-.92-.74-1.29-1.29-2.21-.92,0,.56-.91,1.48-.91,1.48-.18,0-.38,0-.74.18-.18,0-.55.18-.91.56,0,.36,0,.55-.74,1.29-.36.74-.91,1.48-1.09,2.22-.38.74-.56,1.29-.74,2.03-.18.56-.36,1.3-.36,1.84-.18.74-.18,1.3-.18,2.04,0,.18.36.74.18,1.47,0,.38-.36.93-.36,1.12s1.09,1.1.55,2.4c0,1.1-.73.18-.73,1.84-.38,2.21,1.09,1.29.91,3.51-.91,1.75,0,3.14,0,3.14ZM19.29,43.36,19.76,343.58s-.04,0-.05-.01c0,0-.12.36-.09.58.04.21-.25.49-.64.78-.39.29-.32.18-.71.75-.39.57-.22.82-.53,1.67-.32.86-.61.04-1.08-1.92-.47-1.96-1-.61-1-.61v2.99c.17,1.66-1.12,2.4-1.12.38-.19-3.52.55-7.39,0-9.79h-.01c.92-1.67.43-.95.23-4.27,0-.38-.55-1.3-.55-1.86-.18-1.1.55-4.43-.56-3.87-.92.18.18-1.1,0-3.14-.36-1.66-1.1,1.3-1.48-.74,1.12-.18.74-3.51,1.86-3.69.36-2.03-.56-2.03-.56-3.14l.36-.73c.19-.38.38-.93.38-1.3v-2.58c.92.36,1.1-.74,1.29-1.3.19-.36.56-.92,0-1.29,0,.74-.36.92-.55,1.29,0-2.58-.19-2.95-.74,0-.18.56-.92,2.78-.92,1.3.18-.74.36-1.66.36-3.14-.36-.36-.74-.74-.92-1.29,0-5.28.38-6.91.21-12.31.04-.45.25-3.22,1.27-3.8.74-5.73.64-8.92.82-14.09-.01-1.25.35-4.49.47-5.98.43-1.66,1.09-6.49.53-8.52,0,.36-.53-.16-.53-.9.3-.89.46-1.85.54-2.88.26-3.47-.45-7.69-.16-12.24-.38-.19-.92,0-.92-.74,0-2.04.92-2.58.92-4.99,0-1.1-.56-2.58-.56-3.88v-1.29c-.36-4.06.38-10.15-.92-10.71-.18-4.61,1.3-4.99,1.3-10.15-.56-.92-.56-2.21,0-2.58.18-3.51-.19-7.56-.19-10.15,0-1.29-.55-3.51-.18-4.97.18-.74,0-3.88-.36-1.86,0,.74-1.66,1.66-1.66-.18,1.1-.18,1.66-4.79,1.29-4.99-.18-2.03.18-3.51.92-4.05,0-2.78-.36-5.36,0-7.95-.36-1.47-.74.74-.92-.74.18-1.29.74-2.21.74-4.43,0-.92-.56-.55-.56-1.29,0-2.58.38-4.8.38-7.01,0-.74-1.1-2.58,0-2.58,0,0,.77-1.64-.16-3.13-.94-1.51-.57-4.14-.57-4.14l.64-4.08s.94-3.49.22-5.78c-.71-2.28-.57-2.86-.57-2.86,0,0,1.07.29,1-1.71-.08-2,.14-3.71.14-3.71,0,0-.71-1.79-.51-3.08.15-.86.45-3.05.64-4.42.1-.69.16-1.17.16-1.17,0,0-.09-1.35-.16-1.83-.27-2.06-.86-1.64.06-2.35,0,0,4.74-2.08,3.45-4.97-1.29-2.88,1.77-1.49,1.61,0l-.17,1.51c.53,2.35-.64,6.53-.75,7.39-.07.61-.31.9-.29,1.43,0,.22.06.48.19.81.43,1.18-.1,1.4-.32,1.93-.21.53.12,2.14.12,2.14,0,0,.96,2.9,1.17,5.35.22,2.47-1.39,3.12-2.45,4.83-1.08,1.71-.12,4.39-.12,5.35s.43,4.18.43,4.18l-.43,2.78s-.53.97-.53,1.4,1.18.74,1.51,2.45c.31,1.71-1.73,2.4-1.73,2.4-.56,4.06-.36,8.31.56,12-.56,4.8-1.3,10.15-.74,16.44.92,0,.92.74-.18,2.03-.56,2.22.55,2.22.55,3.14,0,.18-.36,1.84,0,3.13,0,1.3-.92.74-.74,2.58.19,4.62.56,12.01.56,17.72,0,5.35-.92,10.13.17,13.27-.14,0,.19,8.01.19,9.44,0,.92.56.56.56,1.29-.74,5.31-.18,9.44-.11,15.01.02,1.41,0,2.91-.07,4.55,0,.92.55.56.55,1.3-.73,2.03-.36,2.4-.36,4.99.18,4.79-.56,10.52.56,12-.74,1.66.18,3.32,0,5.71,1.45-.36.21,1.27,1.26,2.01,0-.16.95-1.17.95.03-.36,2.03.18,2.4-.74,3.69-1.47,0,.74-3.32-.92-3.14-.18,3.52.19,6.83,1.12,7.57.18,2.04.73,2.22-.19,1.86,0,1.65-1.47,3.51,0,4.43-.36,2.77-.36,5.71.19,8.85-1.3-1.66.18,2.22-.74,3.69.36,1.66,1.47-.55,1.47.74.38,2.96-1.29,1.48-.92,4.43.19,2.22,1.3-1.65.92,1.3-.36,1.29-1.29-.92-1.65,1.29,0-.73-.94.93.36.74-.36,3.32.18,5.17,1.1,5.73-.36,4.43.51,1.31.13,6.1-.36,0-.55,1.86-.74,2.96-.17,1.05-.68,2.61-1.04,2.61ZM28.58,377.97c-2.13-1.08,1.39-.51,1.39-.51-.55-2.69-5.47-2.75-8.94-5.7,3.46-3.08,9.98,4.41,11.86,5.96,3.1,2.17,2.66-2.26,5.88,1.17-1.01,4.3-7.4-1.92-10.2-.92ZM348.59,369.61c-1.81,0-2.21.61-2.82,1.01-4.62-.4-9.66-.4-13.9-.21-.81,0-2.22,0-2.82.61-1.82.19-1.42-.61-2.82-.8-3.43.4-1.42,1.4-4.23,1.61.61.6,0,1.21,0,.8-1.4-.4-2.82.4-4.23.4,0,0,.21-.61,0-.61-.4-.19-4.22,0-4.83,0-.19,0-.81-1-1.4-1-1.82,1.21-4.23.19-7.66.19,0,.61,2.42.21,2.82.8-.81,1.82-4.03-.6-4.83.21-.81,0-.4-.4,0-.4-.4-1.82-5.04.4-6.25.6-1.21.21-2.42,0-3.42-.4.6-1.21,1.21-.19,3.42-.4.81-1-1.61-.6-2.82-.8-.4,1.01-4.64.21-4.23,1.62-1.61,0-2.01-1.01-3.42-1.01-.21,0-3.43,1.01-2.82-.4-2.42.19-3.22,1-5.44.19.19,1.01-15.91,1.42-12.5-.8,2.42.21.4.8,3.43.4,1.61-.19,3.62-.4,4.83-.6-.81-1.01-3.22-.21-6.25-.8,1.01-1.42,2.22,0,4.23,0,.81-.4,1.01-1.01,1.61-1.42h1.01c0,.21-.61.4-.61.8,1.01.8,5.23.8,9.68,1.21,1.21-.19,1-1.4,3.42-1-.6.19-.81.8-.81,1.4,1.21-1,3.43-.8,6.25-.6,1.82.19,3.43-.8,2.01.4,1.21.19,1.42-.21,1.42-.61,2.82-.4,5.84,1.01,6.25-.19.19-.8-3.64.19-2.83-1.01h2.03c1.4.21,2.42.4,4.03,0h.19c-.19.61-1.81.61-2.01,1.42,1.42-.61,5.64.4,4.83-1.42,2.01.61,4.84.61,7.46,0,2.42,1.01,7.46.21,12.5.4.19-.19.81-.4,1.21-.6h2.82v.19c.81,0,1.61-.19,2.42-.19h32.84c-6.85.6-10.27.8-17.73,1Z" /> <path fill="#000" d="M107.93,389.18c-.78.47-2.79.31-2.64-.47,1.24-.16,2.64-.16,2.64.47ZM114.76,387.93c2.33,0-.78,1.24,1.71,1.09-.31.31-1.24.31-1.09.78.93.16,1.71-.16,2.64-.31.93-.16,3.1.31,2.64-.62-1.24,0-2.02.16-2.64.31-1.09,0-.16-.93,0-.78-.47-.62-2.48,0-1.71-1.09-2.48.62-2.95-.62-4.81,0,.31.16.62.47.62.78.78-.16,2.79.31,2.64-.16ZM23.79,8.64c-1.66.18-1.85-.55-2.95-.74-.55.37-1.48.55-2.22.74s-1.66.55-2.4.92c-1.66.74-2.77,1.85-2.95,3.14,1.48-1.66,2.77-2.21,2.95-1.29-.92.74-1.29,1.11-1.85,1.29-.55.37-.92.74-1.66,1.66.55.18,0,1.29.55,1.48.74-1.85,2.59-4.43,2.03-2.03,1.48-1.48,2.22-2.21,2.95-2.95.74-.74,1.29-1.48,2.4-1.85.18.37,1.11.18,1.29.74-1.11.18-2.4.55-1.66.92.92-.18,1.29-.37,1.48-.55.18-.18.37-.37.92-.55.92.55,4.25-.37,4.25-.92-2.4,0,.37-.74-.55-1.29-1.48.18-2.4.18-3.32.18-.37.55,2.95.55.74,1.11ZM19.36,6.61h2.03c.55,0,.92,0,.37-.55-1.29-.18-3.69,0-5.72,1.11-2.22,1.11-3.69,2.95-3.69,3.32.92-.55,2.03-1.66,3.32-2.4s2.59-1.29,3.69-1.48ZM12.71,17.32c-.74,0-.74-.74-.74-1.48s.37-1.66.18-2.03c-.92,1.11-.92,1.66-.74,2.03s.18.92-.18,2.03c.55.55.92.55,1.48-.55ZM11.42,25.99c-.18,1.29-.18,2.58-.18,3.88.55.74.74-.37.74-1.66,0-1.11,0-2.4-.55-2.21ZM10.68,21.01c.37-.74.55-1.29.74.18.37-2.21,0-2.58-.55-2.21-.18.18-.55.74-.74,1.29s-.37,1.29-.55,2.21c.55.55.92-.55,1.11-1.48ZM9.94,29.32c-.37,2.4-.37,1.85,0,3.32.18,1.11.18,2.58.18,3.69,0,1.29,0,2.4.74,2.95,0-.37.37-3.14.37-5.54s-.18-4.61-1.29-4.43ZM14.56,229.01,11.42,47.4c-.18-1.11-.18-2.21-.37-3.51v-2.03c0-.74,0-1.48-.18-2.21l-2.26,1.49c.18,1.29-1.07,1.13-1.26,2.24-.18.92-.18,1.66.18,2.21,0-.92.74-.55.55.74,0,.92-.74.37-.92,0-.18,3.69,1.76,5.66-.74,11.44,1.11.55,3.15-2.07,3.52-3.18,0-.18.55.74.55.74.55-1.85-.18-2.4.74-3.14l.18-4.8ZM287.04,384.98c.92.55,3.32.37,3.14-.55-1.48-.18-3.14-.18-3.14.55ZM263.89,385.1c-.92.55-7.57.37-1.85.55,1.29.18,1.11.92,3.14.74h1.29c0-.74-1.85-.74-2.59-1.29ZM261.66,380.96c-.37.92.82.88,1.01,1.62-.74-.18-3.88,0-1.85.37h6.28c.92-.18.18-1.29,1.29-1.29,2.03.37,1.66.18,3.14-.37.37.92.18,1.48,1.66,1.29h0c.55-1.29.92-1.48,1.29-2.21.74,0,1.85,0,1.85.37-1.29.55-1.11,1.85-2.59,2.21,3.51-.18,2.95-2.21,5.17-3.14.55,0,1.29,0,1.29-.37-1.85.37-2.59-.37-3.88-.37-1.66,0-2.4.92-4.43.18-.92,1.29,1.29.92,1.11,1.85-.74.37-1.29-.37-1.29-.55-2.95-.18-4.21,1.66-7.72.92,0-1.29-1.5-1.08-3.71-1.26,0,0,.92.12,1.37.76ZM282.06,383.68c0-.37.37-.74.74-.92-2.22-.74-2.77.74-5.72,0,.92,1.29-1.48.55-2.03,1.29.18-.18,1.29.92,0,.92-.74-.18-1.66-.37-3.14-.37-.55,1.11,2.03.55,3.14.74,1.11.18,2.03.55,3.14.37.18-.55-.92-.55-1.29-.92,2.95.18-.74-1.29,2.03-1.29-.18.55,2.22,0,3.14.18ZM120.81,385.45" /> </svg> assets/uikit-themes/master-kojiro/images/styles/white-yellow/base-body-overlay.png000064400000145642151666572400024547 0ustar00�PNG IHDR��<q� pHYs���iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 9.0-c001 79.c0204b2def, 2023/02/02-12:14:24 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/" xmp:CreatorTool="Adobe Photoshop 24.3 (Macintosh)" xmp:CreateDate="2023-03-31T15:53:14+02:00" xmp:ModifyDate="2023-04-05T10:53:58+02:00" xmp:MetadataDate="2023-04-05T10:53:58+02:00" xmpMM:InstanceID="xmp.iid:990025e3-a552-4f31-9556-2ce89269c005" xmpMM:DocumentID="xmp.did:B9670104C7EF11EDB3D68D785770D3BE" xmpMM:OriginalDocumentID="xmp.did:B9670104C7EF11EDB3D68D785770D3BE" dc:format="image/png" photoshop:ColorMode="3"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B9670101C7EF11EDB3D68D785770D3BE" stRef:documentID="xmp.did:B9670102C7EF11EDB3D68D785770D3BE"/> <xmpMM:History> <rdf:Seq> <rdf:li stEvt:action="saved" stEvt:instanceID="xmp.iid:7313126c-8a16-418a-ac75-4b2ca7dc5c7c" stEvt:when="2023-03-31T16:04:54+02:00" stEvt:softwareAgent="Adobe Photoshop 24.3 (Macintosh)" stEvt:changed="/"/> <rdf:li stEvt:action="saved" stEvt:instanceID="xmp.iid:990025e3-a552-4f31-9556-2ce89269c005" stEvt:when="2023-04-05T10:53:58+02:00" stEvt:softwareAgent="Adobe Photoshop 24.3 (Macintosh)" stEvt:changed="/"/> </rdf:Seq> </xmpMM:History> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>"k�hIJIDATx�T�}X��&|�G@D�KxDDA��$�L06�P(�N)vm]�q��u2��㺮˛avd�IWש�V[ ���@"%ѨT"�"(" �(�|����2�Ǒè<����q^�qO���x����m��Y���@'�.���Sx�Tՙ"R���t��Q�`������ `LDf��["�oŊ3����]__�"�ް�СC�oذ�1��+W�����ǵ��x��`�:��h����B�n��P""�U������Yiii�}�Q��|g���~!"C� ྈ�8{��k�T��\OP�q���&"�u��ɩS���PU$&&>pww�r�ڵ�௷E�!��|Tu@��_���h%"OT�@'����]UM�{���m۶=0OD���'�%vF������ʕ+������j8�2�"2��ϝNgthh藪�@(��o߾�����3���^<pwJ@@���B��Q�����2<�XDx� V�X{H��&�>"���x����SU�\��999mǏw�)**Z�cǎ"���" `HU�lS���e��A�h�@UEvv�HYYY���� `�]I�nݺ��#G�����;��H���p�)����.�|����ͩS���\���j����JUC �}t�j���T�y�***f�\�2����憨��D��������233Ǯ\�ҡ�&sL oٞD��!"/T�9�D�-M�:�-MDΩ�BY���~m��f�[��U��C3�8]�D�]U��@����D���} S��)%"�Uu�m�\�"2OU @�iP,��p<77�RII�j���Z/�����Tu��4�f�-ɧ���"Ҥ��Ed��K�E��U ���p ���3����+U�@����<���ȯT5QD�T����<����͝VRR���Lp�)Є9���WZD$FU���>]U+�����,X����ɓ�"⧪�m_^��Xy������o��?���u@Xyy�{VV�٣���<<<jm��v�ɦ,�������a(�YX �%??���ӧ_i୪�m/����l������P�2dgg���@˾}�<��� `�����ƍߟ211�tu+D��m�w�T�����0N���k�1`\U�E$\U���GLLL��˗g�����|��L��lܸ����&?� �/|��?���d�!TH�6UЕ�����ZwیE���JD^��w�0�� t��"�PUCA��:� �dS��'N��� �+����=zv˖-߈H���������KT�/�՝�tU�+"T�a�- �o�7��˪��4c&�A�5@kvv�Ҳ��.�ݵ;�y���!�2��{�M�RЕ��[U� `��g����n9�رc����lU�]�ui4��uuu� 7��x�T��:a�gx*@��Ę�=�9?U��@a��L�zUu�pC��v���G}tUU�/_�| ��˗/�X�~��U�V9EdJiii� �����Z�N�_�jU����V��O������j�e3w�)"�"R�����RU��<�aU] ED�����;�477��JU��C��aÆ~��Е۳gOGaa����ٳg����|���D�<y��沲�9�칝������)�=�RU��`�=��H�YZVV6&"c"�&"���#��\� �3==�������T��)�@#h8������cǎ�����갈�,������x�WBBB5�i"�?ebb"�O@�ԫ��"2UU�-"gU5SD.�VhQdd䴖��FiQ����R������3=����#�O�81oÆ PΙ;v옶w��+"��Ԃ�"��桠�i�vw:��:�3��Z��0�i����f7A2Z�ۘ�Z���6����WUU�������\����b������ˇ<TU��7����=z4�0hhA� �����9QQQA�^�t�gŊ�ȑ#G:�n�ࢪn�l� {���p)nAAA��ݻS����{���/�BDB���'�������^�~vv�Huu�TU�6��Z�U��l]ݶW>&��@�v�<�l�n"�@��x@LL�<[�0��h�`/[ZZn�c@�NNNN:��m۶ŀ8`��Ed���n��`Æ U����OV{�������N�� FM�z ���n�}�Futt�2��ӕ+WV�9s�@���JD|N�8""}�������6YA�:��c��훦�SEdQ}}=utt\����e�('O�W�o�`쫯�j=x�`��G�mz��t����`pp�k�+V��8/���<���f�j��&���������T�� ��g�j*�p �u�o1AD�UՈ���.D$ @ȪU���+�e_\]]��{`��u�V����*�om���9�"���@�����X�v��LLL��t�S��� .��5�x����6��[�n}z�ȑ4;�`y���A�g�qatt4���㞈D��s7�D?����u�ֈ����}���mDDUu��������g;v�h(**�7� ��l�wUUDd6hY��d�?f��#Z��@ ]c?�;���`|O��-^P*"�KU}����{�Ed |��{���/��_����̙3!yyy��硡���|��K�.}���铠��1�� �ؽ{�#Z�n���Ç]�0h��p]]�Ä��Y��v� �7l]�Al��L�W��|���f��MXT���U�nMM�L7�m���Ύ����$��g]]]�x�S"�"2 �K�� &T��fz��~#"_�����t�ƻ��x�֭[0짪��xb�|���>ݻw�T5ݞ� ��ʕ+S���ZU���ٳ�Ц�OT5� �����w���F?�*&D_��}�����������=�5k�|("������h������\˶n�:�~��7E$AU��fdd�X-"^�ׯ�7[�[�N���֭o�ޠ�����o8�ι�.]�V�4}��ͽ �ؽ{w ��|>� �@��<ߺu���':E �����AC2@w]]]�z��m�\z�$�mgY�SF�����}�ԩФ�$甉����*��d/@�t��AU��]�I�lU�����j��W466^����OSU��*Ĵ�IDf�j���)9�3���FDDT��ֆ����͛7�����W����'&$��:w���O�;�#"��` ��F��>�T5WHmT��\0�Z�τ��� �竪quuu�'##�=U}""��ݲeK'ߢ�"ǎ;�ׯ_?r���&�uF�D���u��Dd���]�}a$��)�� �� 9��ȑ#1[�nW�pc`��`��S�)��v��t�-(�9�Q�����n�]S�YB���.�>B�0Y���YGGG 肛�uN�S&&&ր�8����)'''��l� r:c��� �XDF@�5,"c ����� ���yJ�g�}g� �0wϞ=__��ݻwOp�6�̀hh�#칳A�Wի>���yHDf�^��.\Ȳ _���R! Z�y�:h;�6�M;�1P�����������W__ߤ���}�i�����,"�Jo\UCE䙪��HLIIɃ��\_s7�`�R���Vrrr����ߨ�Oǟ���6��l�v�֭[���@��V� �]�FsO�:5}ݺuw_;��Ҧ�����9�����B����F����a��cB�T�<��q1�"��}�Y$9�������P�m�m����?7�W�\�`��:��84��������>q�Hg:�����_<x�q���]�����lp�23lB� �}�T{��������0��9."��:����?QU�u�� ���LU�b�D;� &P�+W�D��W__� c��y �]`kWU������{��Y�gÆ ��]��x]DB�Ng��;k��m@�?�T�sŊ�U�� L���KNN�2�l�sU=�;���ݦ �\�u�V&1���(������T�)>>>��u��}*"s�B�����2!�2a�1����0;55�.T�����j�W�κ����Ç����ꚦ�!�����K^�l���^"���TuAfff����R��������)��ڵk&��y�%��j�m۶4a�Ν]�r%\�v�Z� ��}��=7�^j�sP1��o۶�����uuuQ���M�"����u�ԩ٪("=���S222�E�SDׯ_�>#)))��x�+"3�o�>*"����_���C�F��Qw<� ��СC��<�~wS�?y{{?��"���Ky^WWמ��}����������?07:��eTDޱw�����1HU��s���f{U�*++�Nqq�ȭ[�>������ �1�o��Ӟ����������3�Z����@#1x� ����N���� Ⱥ��f�����h���&Ϯ���������`�Z�3���4��T�=�h%I����"�3�����"����>�}%��Bc�%�۟�����mЧר�RaTy��j����@��f�6�\�r��3{_O��9"� Z�lnѣ���=**��:��8q"`�Νw��H�<x�}˖-����~6����>h!=@�ಚ`t8 Fi_��KDf��֎FDD��ľA"2EI/�V��ή�������5v6@�,"�Tu��t) �%�'#������h��9744���$�u�H���`�~��S&&&��a�0� ���آ_���}�L3�/���[`��e/` z�=S@ K���p��i 0h�鵅BH����7A lx䞈�U�+��p�Ex�A��t:_y{{ǁ��m�888������O�P;��(_% ��\���@��5� ��m�m̄�$l�Yaaa�����ꨈx����lkk{����ٌOTu� �;����%%%KE�VU�l?/��*U��?�Z;������a�ʅ!���Na� "dۯ�tL�}_����7c��]XX�k"ү���,v�\X������;ODA>Դd�\eLU�sL[A版�'"_�A١,7P�f�v��\�pa�8b9d�C��d��5U}`��nH.//w� �%"oVTTL�(44�-����߾p�Bkxx�=��<���_���KU��*�W�yė�"ң���2�M�\�=}}}�A�}��[�n��焪jpZZ�3۫>e�G���ٳ���K�.8o�6OU;����!��"���@��<-v���y�'�`n��hill��s���1�ﯪc��B�a�v�jV�DhMLL0�MD��:z��o,~��頪>ߴ��W���Ǡ�z`��(p@��.U��� WYǻ �5��v��5� ??��0��H��.���mU�[�~}�m� ����.0:����rE�1III��\�2ʘ�t�����JJV�^�cU�jB� h۶m�"""�233����)�-k1��H�����T&�EU/lYAK[ ����������ʈ�������ӧ�@�� ��Y�UD<x0���(`h��>����%&3T�����0=S�f�D�`d��+WƂ��+W��nٲe:�e111uL<4K�p8`�Vh*..YSS��Uyyy��.��yY[[� ��c�3�5���gΜyw�֭?�{7X�6����PsfX$"���A�U����+Sմ���۶m�0�U�ggΜy������L�X���>2�~��7o^r�ܹf[�&��^�??�S BD��;9�H������2;� �蒓�(�]��<z��e���|u"�HU��E�!:sss���%�߿���O>��zӦMѠq^�"�';po�$�Bsl�҄�#@F{6H�����uQQ�Goo����������/._�<����;�[/����� ۟����'iii�B�vۣA�S��.1533���Q0�)"l]U%�š���p�5[D���5��2u���SU�'&&����:@0Z��Ч���9�~HD�lm���q�H���}KKKh�n�~�t��2��槀�וd�ZD�T�g2���f����55�����]X|�����788x9h�>k�f�ܱcG��|a u����4h�@V���dٺ=���N���W���si�f������\����� �p�0�ꌣG�:�l٢����iiin�X9::����#VHL�c25��j��I�:�N��_\\�@UU�s���,((p+,,t7��&L,G�AL���<ߵ��j�0�噝��&$�,2��e`u�To���444��O���� ��0�X%"D�ȥK���Y��!���}��z�X�����"�e��%==}��c��"�@-J3�.��;v��{�G=z�&�U]��X[߇���Y�I�`^,@�;<����Ԃ�E�����Y�:UUשj���0� $-�������5e��� �`���/D*S=�&��ez��^����[�l�����1P�f�H����*�����cccT@wyâ�!s���o��tuu�`�������`Ŋ�l��7i ��LS�C/���ٸ�IMMm.++�r�M�oT��pC h%F���`<!!��̙3;w�t��w;�?��w��+V�h=v�XܥK�� �g������j���?}��=LV,�w�ޗ ��u|������s�ν�m�67����#0!'"��lٲ�zt�ߘе�Vx�y��)Q"2`��`ֹs�f�浂��k 3��#"_�� e2b�_)����\�2y���S�s],�ȗ"��폶Woݺ�h�i�G}t��P��ӳ�`D�O����444,HLL� ��B���S �����D�����T�rOII�U���`.5���2�HDZ@����߿ۄq���iooCD��211�����]����]����L_�8��@�M���$��0�`��t>����0��ڬb����_�~��ɓ���� a�0==ݳ���]D\!� U�d�x����/**�۶w0����f��6��J�e�� ;KKKW���8@�> �)i�V�R���)�@!��nzz�����&�� �l�XI��naTY���e�)"c�:�j�*����(U}����˜���`�s����˶�� ,Y����\b�qe�s�^!��*�)�,���ܹ��СC��58p`���4��������[�n���h���h�[X;�S!���̙3�yyy��ٵk�+;�T0�k4m[ :22r5X��\bA��;�#�%��Ey� ��|������N�< 0_>888MU����o�����WUW�j��$��1)99� t#K@�=O����"�A~~�7�Y���/L؞��oܸ��* �[QQQ���e Z�\U��ˋ�gSS�l����������f�M?T��(�;������Ըx����ᵪ�YPP�w��E�j��oܸ�ۄ��j����c�<)�E�]�QQQI I�.���{_�D�bNoE��Q`��NLL̘ �Ў;��f��c? ���g����<Wv�����ht��j��d�ꛠ{_������VN����g;�G q�|�K�jڢ�,*..ٶm���:�n?�'"�Z�2A��GU�\�7O�<y++++�%`D� �O�-�X�gr4�~fvuu�7�ڴ�An���k��/�8�����Y "S@��݄��������^TT�cǎ��ڞ��� �c\��ik���������;w�:t���L�V�w�J)" ���Y�0�_�^�v��ٳg[���ݟ[0��o߾����;��MI8��[��{�2--m������#nS0��ƍ?~���d't����o���] �.y�aÆ� ���w��Z�m����`��Q�tś�:=44�V��Y��:�@f�@U ���J�t�ҥO�_�� "2_D�/�yw���2�w� y�y`��H����={����c���9Ԩ.%c""m���233��7::�r�̙����3g���Խ{�F�ț��-" Z��NW�hH�� 4`��C��L@a?_cB�*0L4��A��[�:��ѣ��$��vۛ?�F`X��x���N���2������jg\e��7&؛��ׄ��������KD�oܸ<���Ŕo���h3���Ǐ� &�=A��#P9�0/--m����k�.���N�ȡC�b�5=������t�@-�K8|b����i��֢A >��������X��ە��]--- �(��n�nP�%W��D@�0b�e� ~h�GA��5A]b� Z�� �X`X�����+W������ZZZ�w��9UD�v��q]Uݔ�U�KD���;`�� Z�a��'tg?3e�� P �L�e���5���8qb�{�:�!�ݲeK��� �p��ݻG@�@Μ9�i����z��&�o�T��� !�E;�����)..^k����NE�q����Ht��sL���%��ǹ S&&&��"n�0I��S/��ED���E$���cqww�m��fUm6S("�0}@�cB� ��;��S��깪�vX��V&t���@+�B�j��W�ʂmc>�bppp��t �"Riڼ�~������G�۲e��vP��� n�R2����|r�������eC�_��<6�3�Z�����ڼFFF.kii��;k֬�:w��U� КU|AWf���-��@��u��Z!l�{)"_��d�F@��^���y�j)�G�OLL����m;�j��p#|JKK�������� �R젦���{&��ה���(I1�����fU����>"�sn)���_�me�����:ׯ_�f`{@X( rE+8�WR����^�x�t��*�y���>®�砶ۿu��&x! W5@G[[[���j� �r�U���59�U�*�l����ͽ@tqq�e��y~������n�11"�Iyy�Hvv�H���OB��ڒ`�|KK�]am{�c�+�!cx���|m�?���Q&<~�:����a�pIUCT��A��/S@�Z���^�WV�>��'���ի�T�\�K|*�HNNN{qq���"U�۷o�kn�I}MD�\�� @1�7T��6�jjj�fee�0����C����hV#���0f�.�2�k<<�)//�Q__��ҥK b�c�}n]]]W:::�MП(���ܹ�Ȅ`(88�[UW������K��R���� �Z�����`��R�*?��j?{�-���7�7AK�a9=k߾}��r��w1}� �7U�=++k��&���%��0O�u�ԩ��0a�w4�7nl��"2�����:�d|!�{���h {�����?�&��s�"2T635`!�a��@kx������7l��@���G�F^������������orS�N��:��ٳc]]]i"r]D�XaQ[[[��\ [���?��?s'�`T��^���jWTTTxQPP0@��ӧ����_�u�2�]0�z����jpp�,P�@\6("�����^�5k<Ć�����{�X��GGGK@P���� �Hw/�����g����������ɿ\�~}������JKK炖�]a�rDmm�;HG�455���������z�����*3��egg���\�%��-���Ϗ6+��֭��#G�������.[�?���ɓ'����*�M� �?i�o@��#"��_5�x�����_*~�n]�;J�bX�4_Dgee��D�����E"�-�^#�aU��p�BHii�k���^L�����=��o ����1�0���-������@��o/6�g��%K�����׃Ɏ�P0�\���(55u���E`�h��&"�T�������VYY�� ���p!! ��y����ӧOw655��@�������[�;�;U��wdd��~(���sO����`E��F����Mn:����� &h [A\�@��ds� ��3���_�RH-��sB@�����&U��?��w�koo�*3��+?��u&��m��w�ܹ�СC��s�@o� �Ђ=��x�����a�]Df��>?::�z__�W��v���<@_;`Ε+W�333����@f�Z�@Dx#..n���j(44����#t'N��J#�O���c>X�2ʍ����<=**�%��~��Y�uoL6nx���h뤞*k�.�jLAAAXaaa�����n'$$,�R �z!���P]U���_ww�������6k7��o��]�x�=)))����>>>��J&��0Uv Հ��[ |�-�(� ����Hii���Ȉs͚5v:=5�p����H�������)��Qe�TD�ŧ��U�� }��c"�� "��/w�mܸq��� F�"�5%%%�/_�ܾs��+� 3��y�U=.Lox��c"::ڣ��g��$8 �BM�B���e���ƺ�D��h^��Z��\�x1 �Se�-�h.���ŠuJ���6�*��Ja��=0�u�.c�m�&�5AJ\\�˪��qaj� T��'(wU�=�E�=U�dk|F|�ڃ����7O�>����L�Z|����a��V{U�~vvvGYYY�p����E��|j�$�3��U��.���VVr�*+9<����r*�;�e�ܪ�������h���0��^0��,��=z���={�Ī�� �}$,w�(pkll<�'��L2�z �ʤ��^���%�Y===�Z�ƭ[�~ $�x�q����V�Z5�0�Uu��.QՐ���!i�������d�+((x ���?��<|�p��������w,�L3���K���Ϫ:[U��o��o*@�%Xu]U�`��W�1������0:������� @,���cZ�+I�?544| K��H}fff��^�����>u8/�"|cB~@�Y�qNU}��agΜ�}�+{�A��p�`˭}��y�$���x�W����{� �5�T�����gM)�E��-[n���������$_�211��R��4�<%]��n᠈�[�������ae�"�W�#��t�����I��{�Y�E����\�|�����%Ĭ���G̨���Q`'Ȱ��(�0�2��� ��x4�%�s���o�V� �1�y�~�A�WPPP_SSӥ.�X�z���J5��:&6`ND*����`N����7o�?v���P�9`�2��W˝+1�� ��/"���_�HpXXز��������)���AizRWWך��`QQQ���܀�bY�lP��0�r?}��y`J�GU'��`D�-P���>�t7��� �Q1��9s��s����@k�������Py���{�|����ڍ7z��X#ؤi�=n�|��?X�� Fq~`��+y쵛 2�ꖘ��@D"������ܹ��Vv�\DTD���}�9�JJ��������:y �_�w�0RQQ��Ԟ�����z���,��U�V�j��۟+k��U5V������`D�� �@II����S�.�cA��`1�����n7�����vvo��[���������v�/�u�N�섄�TК��ر���cXr} ���U5$??�,Q���@�0�0v�0��@���nS��)�۷oO=|��Ua�+�y�V�!7��Ǖ��������`KK���-\�@�h��[\\�m۶����N���y�+W��1�� ���E���i����YYY�1x;�Nghh�e�? t�5۷oO;|��/�_Eچ��6��s��AL䩪?2� ���]�v���q����9sf ///˄w�C��N瀷�����xEE����ǻ+V����1ۧe�����(�Ⱥ����r��.�.�3�)S��8�����J�R�2&ˢjl��A�;$$J�����)~q�ܹ�5k�(�E��*++��3��}��0�<�w��0{��/�28����P����j� �� ���m�4�^N��3�;@��}&VDƮ_�>ݴ�&ˑ����ҥKa�{l��ʚ�YSS����������Uu��x�H������Ç�(� P0��a2���l���T����gϞP�v��6A�i��a����j�}h� V���������O�<�����k�!%!�ki�� } �ӂ��8a vZ��(i;u�������_n�j ��xp�̙i���h1LU����t�X���t��2�U���5k|@�XYY�]YY�S�N9Az:%$$�'N��.X�&�����02+���j�}GGG�<<<�@7�i���LU5����+--�Ӵ��@W-"=`�b6��۷oo=u��+U�o"rL�><??����� u���0�/A<�09�g� �Oee�wBB��0���V��˛���ar"�� ^� ����ƅ111��_;u�T�u�~ V���t� ��e��'����Y�p�⸲{�� aP9�� G���9�Y|֮];x���W�322�+++��';w�t*��!���版����5b��ng;����^�¦#���,��0�rw���a���6?$+�U�k��5�X���,��˔��5��괴4O���]H��z��lPq��)O�Ќ-�z�^�sժU�|N�>=vP���� ÅEEE��?��HMM�s���,��N��`�b�e�R�ά���7� ;���W���/��wmLL�Ȣw��nݺk"��ĉ7M����}0m��0n0��N�%�v]�vmh���U5ADf?~<L��pbJ��&gϞ�k?3����!"�"2{Æ P&�g[�eg=U�rVa�0��4���`{1n��Uw{lߢA�r)22r\U��ە��L~��T{�1z��u;���e���>3��i /Y�ɑE�/((�j��*��+ \�$���_�duǷl��s�N?����w{����"2����(**J�q������z+[�x���4���>3RRRVw���"�s������(,,O���j0y��_y8S@>m�Y�ƅ砅�i�����M(���������;m�ӿ�����;�� ����ҥ�N��-�Җ��a��)���u�TV�����GU}�lj�e�C8����H�곳�σ�v����cPI�L��ZZZ�L���xG8Ex)H&*�U�XĴ�*���<s�L�֭[�U5�J?��-jll�OMM=��1 Nz� M��-͗���RVV��>�c��#li�6hy8���{{zz��VU?�xU�/��b�������@{dd�{---'����2��'"�9ғ���k/� KM����sL���E$ �rºv`�a���)�E�*��k��� �/o� �]�Bpu�0�2����%����*<<|YUU�牉�NU�[�7�CE�æ������/A�qIU3�ٍ)�{��A\� �0����9�a�}&�"A���d����bŊ� �M��d�g �=(�^̅#^چIiii@NNN���>|�����LTNJȗ���0D� j5@y+����N�"*���i � �=��&��mm'�X""w�Na��K���G�Khy�|��R#�����ȘSYY�HD^���=��^��Tl&�2tw��� �+�D����ď>����?4<����kB�֧=��?���qO�}l=NpXǗ ~�3P�Z�(���L��� 滘�Y� �E�������ߛ��1\WW��i����谇��i������%���===A 736��}�f���@W�0''�*�ê�ٺu�V��n���w*�o>�*���mQ㶑ʤt��oot�%>�F;�@3�.�����>�h�0�둑��l�x������Iiii^�������e�����2A���3g<*++o��n�����p^�x�AU��j�������x�.� X����:�����O>�6�i��+�i*a�7����OMHc�� .��^�v9� z��Z�4���-j��}����ޏ���)�����A����������OUg6���zxx���n;v�Y�v����fP+�@mo�H8j0Ȥ7��p|���!�XH=�"V��: �O:}��7`��>0��K0�X!�(��Ν;����Z j˰iu���GY!����~"Rc��O^?y�d-�����&��w��u���c��p|�Qvv�/�m�������b�aIںuk�������}��Q/lƜN�`AA������q��h���{@��M�>����O�?���g{� ��2E�����՛�PR��� Z%�9b�`eJ��X!t@}{{{��\�Qկ����֡ŀ�,i�Ν�n�6�kغnp���w��%�ۮ���&o1�����D9r�7//�)hJ�`r�2�`��k������;��]#��M��q:��-Zt���*D�z�M�0;##�cǜQQQ�A�������K����50Z������������MwXbb����!�|Hll�`WWW� ��T�?威@�T�qa�÷�)���&����0U�_�jՓ�/���ڵK@��.x�^�z0<<�����ŠN�U�:0Zs�O���H�t��������L:MȂA�Xf��,e�ѓ��x�[�n�ع� 6_�ȷ�Y�&�_�����z݅��+0]w ăs@���3����ýT�ۆs�kll\�0� WU��kv�U��;v�HKK�¤�t�@��0������*$::���Osk#j���GEEy�$j�� C����;���-B����� ��Ќލ7���TwkkkW���,M�hCCC��~axm�5y��m�l�8��S�Nq:���h��\�4��1�&8�?FD��x�bہ��ڵ+�a��իW�p���U�����U�_Yz�t�OM��L�>���#B�b���k�a�C���Ni)**�o ��������.o0���<j˒��W�w0�,__���cyyy~����y���>�Su�{>sɱk֬�`[[��d>s�.S�x�z뱺��4L���eee Z�`����>}���Q���PSS�me�}���{f%''��u럙f�P�O�?~aKK��j>�*�����X���KJJz)"ӄ�[K@����;`��[���C]�nݺ?�,44ԫ��|X�b���/^�8τ1N�\1[D����f��q]MMM� �2����f�n���U4wUY�#��Q��37L�9L�5 {y�������a{�����eSSӜ���~�E`�o��.�{ ��ݾ}{�����w�&��رc5`���ݮ���>��c�m����k��,���Ū�KI�8| ��9�WM�>]H��Sz��ի���f��a,���3hiB����j�еkמ�a���� �^v)r��u�&l��s�&"wa#�=:KH���iJ ����s�ҥ&�ڼ�tzxx�)�}."�,��&++�,n�OA띑����T5IY�@�z�jnRR�1ћ7o�������7�Z."��Ν���n/��o ��P87��)��w�TR7Ssrr�*g������ŘY��0"t�Ѷ��~bX�T��|�����~�$y�jjj�A�\5% �'�����Q_PP�{��X������=����asm3�222����f�ս���/�����^�!�� ��5M ��4��}����v!`h�`/&��=�g��h�Al�L�Y��ǎ[ɷA�;Z��v������� �+k̂JKKg���i�9"�[U/����ILL���|u� �իW-"���> �=z_X����#������&��A����Pۣ�`��\��S"�}۶m#��� �|��T�L�fM�@+�0"_��0��`�|aq�m��2a=�cs��d�hb�L+����l,s ^s�E��:� ���FA?�p2��E.����s߿��|�IئM�L(`�o�����j/�g6����:.a~`����`�g{��y��ST���� ����xt�ʪ�!{�~{V� kl��mR�pVԧ nZj�Tb?."��-5�^���RPP�����5e�v��=N�<�$@;d����-�e�\�(�b�Y�aæ鶗�A~1��>�7���/y�q�����/^����$��/����(k����f_&�G�܅�]B��Y}T�.�@_0�z��w1�t��tz�H�0�7Uȋ��"$J_*ID_�����.,=�ɦM�� �����.X�ࡼ�%55������`�3����� U�Q��l�bE䅈<ijj�%k�|���B����&� �H�2�(��1P�:ABu�62ڄ�>44��{�:���� �|hh�T[O�2���tXT�.���aaa�4A �[^^��RF�a�������+QUGggff����@ﯪ?V��^�o�p[D�+V��k�ƍQº�,�mo<==}������8KJJV��9��z.�W�Q��xںz��"����m���4.SU�bll����b/L&���U�7�(���,0���9�/~p��aצ=��?�����U=��\ڐ���AXM*$'g+;��1��#<<������ZP���ڐ��na��)��+W�d����Kz+�a�+����,�� u8_��-9��EEE���c�B/�t��2@\�j���IX�3�,������?3�}�4w��~h]pX��S�zP�{���"����A��c�[p��b>���M�6���;���� 7;;;�����Ϟ=�r��>��f^�p�&??�Ө���]�d��sCCC�N'Tu��|���PYYY�z�~L�=�o���>�������(��+++�>��jU�M�� ���~q^�p�iN� ����ֵ����_� �cP���]���v��w������A�lT����_a( @mff����~eB����T��P�Lޕ�#l���着�Y�>#;v���c���p��t�U�h���텅���LU��*,]d*���v�Srr�/��2`2i� �^EE�2Xwqppp�0�����{_U��d���>��Y�0P���q5����� h�ʕ�J�1�W�^w��IwW0�b�C����utt@U{���N�QYY�V>�-נ���Kֿw��y�1��P�LLL������5k�kAA�kʲW����:v���С0Y뮼�h.8�}Т��t�ҥ���u��+Mk�@�u� ������^WW����Ў�[&��ill����p8n���KEdƶm��߿߅-���r�2���� ��HX��\���R�&�c�Ɗ���s�f͚�ddd�TVV��d����S`��!����;���V�_ �E ���E�Q&�t���� p�N�W{߬���Ġ��pК��-��_�^� �������/�=|��4�Ŧ���joo�n�xHp���<�u��?z��W[�li�3���`d�?غ6��/��t�����ͷv���}��ɩ«n}���}l�2,����3��f3�� t鉀L����{�� d��Y�z�k�� �W�\QO���_��bbb����贝;wBUہ �H��ի�*3�����dj5X��LS<�(�mL�:E�*<<����6d�WVV���l!����͜���ԩꃶ�����禀��\U[/]�4 ���WVt6�css�K��i.Hq�y�QU팏�/��FGGljȗ`�t��&T�`Y|��������^lٲ%��[�� Z�t[jg8F��}���� �䇵��~��m�V��wl�߃|e���3%z���n7�E�P�o�*����ᬪnP.y[`�0r778�����ŕ��!�^;Wnr� ]4�d�gk��>�?���3$�Tu�p�o��?� h�:w�\���.����������/���u�ӎ�pAD^���h��� ��Xc��/���������הj�f��ڹa9L��͛�X7�m�G�ٳgO�2�������ȸ���zLZ�p��'"�s% � ���U��j��u��ѻ[�l -��e�S>Ѡ�R�����A2��O@�S%���w�4���d���^Uȟ*++}�N�����]UUy������Z�A���;����R��� ��PV���{�+{i�r��.S&0��Ȟ�& 6d$�j��)�߄s����*,���}^RR� Z�oT5��0_Hi�&�F����Na��R�W�U���rD�)[�^�$F�ڳg�����v$99y����-ۇ!s�_X��9��Z���w���y��r��t-S�qP#��3m��Ρ�=B f��~���:�`��W<@UUU0��g��Uii��o����Ǐ�S^Ø,)���`����\�z�|BCC�;::������<pgttt`OO�cU�t3����� '�ՂJ��ș m?�$_*�i�6��%T��P:ccc�����%3讬.��3..Ε�R%(C�D%���q�i�y������n����箪����^T��qB�ʞ9q��uUMU�n寡�[���C/ޅ�īj�ѣG��ꓒ��Hؠ��{�N�E_�]�v�-�j�x����,L;��?��/�b�9X���k� i�e��#a�w�����1�`�IHB6����tb���#�/_�q��I����@S��V��������D���v���4�A����z���jjj���a��<���x��@�O��^U��S&&&�Mݸ��EEE�;v�� ��������t7p��ˍ �.��̙3�yyy�A�<���+"[U�w�����y(��(�:��� &� N�qS��VG)S2�ܚ��ˣ��:�����Z�~��k������])�v6{���ha�(k�׀M "�kת����P�L�� &e_�Q���y���$mŊ�A�����u�/�����\[[��qܔ* t�M�gؙ�������� >kk۟`rJ��q!��."y�vh}}=���n�z����_IĔYDaE�&�/��qqqЇ~x�_��_�~���u`���Gpp� O��տ2x�`�O��_L���8c/pӬ��/��U-���Gu}���s��sm�09�`6�4�Q�[̷gN���8}���]wK�i(1`�!h)g�{�����w|��5`���߂nf� ��:���sU���Ș^YY�Zә�3�\?w�ܢ5k֜���}�?�H�Y�y&$�aoн4�rա5�Z� �6���B>o ����#����ݞ` �U�Ig���JU���/����E���ya�1���~&��&�j�?�������oذamz'%�C�Rm�OM�V {�������0�e���<K"�����kn�8f_������:���ر�7;;;OD��~��!0�ߪ)aB0�����(��,�� -5w�����T�ٹ�{�ԩW���C���[�Ջ#��:Awsτ�}6�,y]�� ` �-;� ���U�6t5�����r�'v@��/%�^�Ł���8p`����耐hoo��e� �3L��JW����f�lRF��`�q���YQQQ.��V֧�;��rk��L����LȅE�:''�pÆ KDd����)Chxxx/�P���� w0����-�� "��7o^�����<!w5��鍃n�aQ����Ga?�|���G?w�YY�}Uu����C��C�5�;@GGG����$Y9;둰�A��@�2UD�ϝ;��۷o����Ɓ�",2_��>��j��,JJJ�BXS�pǎ�t�lYA�=�d�M9b$x{{_ݑ��111FRSS_?r��?���w��<`t�o�Kg����ȫ �TN-&����d�ς�bQ �� �|�%,��<S�0�ڌ���O �Ke������NW�hS�!УD)oi�} innhkk3Hn�q~۶mY�lo� �pЉCU{�;�v�̙0�yW���-f����m7�o��g��YZZz݄��9���x;�ۜo�y Q���_ ���S2�7@<0MUG�Q^,��dݔ�Y�F�IӐ��foe7,�$ ������6 [�a���\K�2D�ػw�a�����@����[�n}�VpFE��� .,,t�Y�_�|yv^^�[UU�<L�6�ݻu�V��>���y������ �5���":oU�244��A}MMM&+b�)((Xd��u[y�N���O��w{��A`�����0��� 䝺��K~�jnTT� �:4��0c���U&XѶO���1Y�����w�(玦����2W:��Ç{�����Y�t:��ڵ+4��7n�Dy+��v�K���������jΜ93ݢ�P����� #�m ===@K� J7ؾ)�R�HtXU}}}}�4ϯ�v�o?u��w��ޠ�兒W��>;���Ν;���|�9�I����'Ju��(Ws�T��`O�[���Z��w��x��s?�t�5�w�~��x���K���ĬZ�Ꝩ��M�5k1��ZXX8��ߋ� ��q�FOX{��$E����~����f��Z�%$$T��j\D��Ԡ�� qÆ ��������[��fg�""V�{]��v��HD�������e�ڵk����ٳg*<=u������ݻ;M�z�?����?��cOaF6�W���PUٺu�!���:;T5���4IDn�knn��U�V�-�k`2��|{���; �裏��OOO�Ө�u��t)�d�R�iW����:t萫R�����Ȭ�V����`0�HY��ʩ��[�l��=U:t��^�0�i�}��~ttt���`!hE�]��d�Ôѩ��ŋ_���_1N�}�3ß�Af�v����K��_��Evv�����{��.�l���Z�'FΜ9,$))���ݻ��0c����H7��ۑ#G�rss�A��}���_�i(?�w8��n���)--}y���S&&&�c��`����ċ��ɋ���=U����3�^`+T���M!g5��DD�?��c�M�6�=z{��yC�,R&��L�{+++�322�h�G؈$L�Ł�]�H~���n�裏^~���^ �ө�f�]-^�)t�rW���g�a'��������O�^��B�Wv�Dd���m����hq�������V�Z\\<�m�6Å����N�oo�߃����` <<ܷ���p:a�+�;XPP�{�n/P�~ �Y__F���:�o�l{-�Kv��V~)8fI�����_��hh�GGG�#aU�8�{��w�^����ϿHIIY�Z�a�Q7L�5�j��f�,"�]k^�z�'����� V��P%�0G�������� lڴi��[�ly7//�Oh�bzzz�&�Q�ڗ��pW9G>�癭meFF�hrrr7h��٦�AU<0A����� �&�u�Y҅i�$�*w���JC��ɾ"R�d��oAx���Ӱ�����'N�oxxx�'�|�Ka���.P�媚@ضm�|�S��O7��E����xSh-�����Llٲ%����ᅅ�N縙"�HOO_d���Rx��E�5jK�n�ڧ��2�%�Z�Q�7���������Y�����z#11qxkX/����U N9%�m����_�H���ǧ����I�7���e:��7�%'�0|��'�|�iӦo�b���O 8d$::z��� ��&���QI~���ԩS �֭�K�d�y /��),,<�kd0�렰�ݩ�C���-�v�1�b��y������ɉ�+W��0%%ebժU�_�x�:�8V@�����݈��� Pwե/���FU�r��XJJJ�)�U�5���a�Y���|L���K���\;�A��w&cvs�R8"�%��k���:GGG�=<<���ђ�k��={�1t��`�r,��@1�<��������c 8�#�>7��� �[�y�]�p�+�������Nؚ���N琹���D�6mʰ?7x###c���/ȡ���`!��EU�� ֭[�����sssW>�^onn.ݵk�[�6�q{��W�\ Sr*�"���������㜜���G�.�~JJ����߹x��Om�S���$|dDD�~�|�ئ�'�J�' JIIYn�;�6��iТ��T�?���O�s5����s�ڕ����Ta�|�E��L�z|6�K9�g9XQ��L8�xxxܵ��17��Y\\����� �TTT�LNN�T�[�B.+��KU?�?����322�@E0e���)>�r���oذ!���� s��!`�R�r�LN~�4�����=^VV��8����2�j����4�����[WW���Yb���A[��iO�p*^-خ�i�m �5VZZ�<''g%hepl���c�����ǣ����L�af���5N0��iqU���?����30�7Wɷu+�7W���܈����{�w���"�V�:� �L��3!� �̙3�yyy��=�t�$`�@�w�n��e��4mݺu��#G\}�vN�E�^^�fA�&�#<��.Vn�����r����Ę!��V����UTT�X�r�4��)E`-�YUU_���{����|3��ÈH{�Y��OA�����G�)7��-NOOXUU��#�dW$��۠� ����3**�]ۤ��g�>���8:: U�BDv��Y�g ����j�@0e�V�677�FEEU��F��WJJ����χ� Ղ�H�ܱ � d�)���=%%%��扻��M���1Y��Z�0a�ߧ�;o^���y$���>ad�TY�aA�_��ku�b?Wr|�%J�jjj��\��|۶mW>����<P�\E�A�B�D `z{{�Ӱ��`08\�f��cǎM-�8�!r����?٦]𰸸�o۶m) ���#Z���$�vMM�7III#�����m)))i5����@-}�{7�qa)n��^�G�M�\4D����������� )�̜�n����� Z�U�������r�OE�Um���uN�>}^yyy���������d+�H x�V�;v�[A�eVv���b�r� �U�V�q��E��&e]|X'5��ϔ7��]���Ϣ��"�ʧ����9� ^Z�SKD����?nhh��>W��¸5�%ञTS�D���4,uW�\��/x)˓����2MY����=�0�1u۶m�4�۷o�6�2� �&�:���{���gժU.��`�����#"o�`p�0���q۰�����J�7PU�T���۩�㡡�+�r��������t:Ӕ��,���I�v?�\����g�Z�1�����ɓ'[�=�fff:����'Nԁ�������09>2HDJ�d�\�l}`�̙3�s7@��k�^�xqDI���*�Ђ����vqq�]0�Mxů}_8�*�� ~H_=v�X���J6�S�o�*f8�%377wD��{��͛7x-%%ejAA���S�}wh$��,�211�Z�G�����V=�l0t%�� ��-��¤i�ƍǏ?^ ���(�>Sՠ�������QL^�;]xa��igΜ����d�Z ��5�m��cr�F�0w5�1���KH�FZ��H8����A�3�"������#�w�Tճ�������0�zDD6)G*U(��7���~L^k7�o���㣢�*X�Iޱ��Wq ��=�6�vH���^d� V#��y*�}Py���{ ,��y��bM�\�˃`�w\Y�z���������C#""�jkk#�|V+��� �z�L�-79𭩩i�r�l۶���n,��(**Bkk�+{��י3g��<�e���Ds���x~����Yw��q^y}��MOO�������e�_Cjj꽼�<_ye�&8�P��Ԅ���3KkA����e�W���tV�f��⚛�����j�2��硦��GY�q���Ʃd�_*�=���׃P ���ފ��rX�,!�.����l��.:�d}&��>�S&�&Pc��]��aӦMu---���P��\�"U]��ܹs7��;Xv햛�+�-� �y�ȑ���v��������E��Q[[��t:{L�ް3x�����/��`�|����}�gzz�s����@IߵkWȎ;�:4�����֭[��ݨ ����_����p8�mC$;;�{".�s&@��$--� �ݍ.�|���ޙ�PO�|�Hv�RV�^�r�ʸ ~?�y���KL�L��++V{������&�}A�Uok�١�?�߿�tK��7o�+l�d��V����5 7AO�wlP�aM۸q#����)**�1�#�����L`E� 逪�&#/Oе<;{�l��������ʣ�}��<�<<<��O��OI[�n�j�,�hII�8�\2_D����T�/i����f��E���_|��W������(((�*�&�1�4 pttt`�oN�������!�#��MԘ�V�i��͛7��رcsA+pd�c̔�G��3�����IHH�=p����i���u��1;`7нd������~�0� ��i��WMC?Y�S��M����&�qe��/� �M ����mm_�)̹�*#�'&|��2�)I�/��㞲E� 0�l�S�D$h��8p�MW�ı��@�OH�.]�5�d���s|����ZVVZ�[��>#�������v��ى'�ްaC�}� �������θ��aaQ���g�577kTT�]�e�1� C�>8�"##��OLLp�.��ϕ�������;�HlҊI�Re�#�SWWw�p�W^OHH��D;v컪ڽb� O� ���5YD���������Q;���;�&M@��uy'�\��� �F/y�; ��Ƈ�5�PPXX�@UUHJ�a�/�zz���CC6�T�@�] =Fr��t������'袚8�}e#�� U X���B��$�/4%������9`���eee7AO�,�s1� �r~&"v� ���nذ��6��<�+..�>�k� �D����;QQQ����g�F���Є�!"��)�L���6xp��A/!���+})�~�וsQଁ2���JHH��N�s�4�]�fM��K�.����fyyy;Xu0���T51++k�DW||�}af��S�*Ն�7�vuu��>%��F+= �ٱcG,x�[jj�U�����j��t��^�p��]��/G��jQQ�p~�;H�~�yGGGh]]��h3��O��������=-pkVVV���G�$q�����σ�Y��ʆo0��)"I"r955uL�Հ��:�-�ٝ�k�@݅Z�ȯ@þ}��(//�ݻw�����v+�nץ�����/M���>o(ˀx���G(o�w���U5s����va�/��w���wA"�����ۨWV>�r�J�={�״�@���N�< �B�T_�@���`�� Gh ��P��,�4����ƍk�?�I���R���r��S.�w:��CCC&$$�����0�V��@8\��-�&Su��[__��X�>�1(RXX�d]�@Z$J8\�OYY�t��E���� ����VTT|����unnn����Z�j�ŋ�է!&P�´���'�-PN�����p8ƺ�����m۶��߿�-КVfee�e�3��X�����sd�(�?��$���6%(((���;$�<�0��J�AU lnnv+,,�y�ܹeS�ۤ^{�z�R|��������:a/a�2�Wo�v>�������� 3�m�[�Fv �Y�U|��'ʨ��^l��!dI7�>� �"�6�����������p� ���|�%����111jkzDŽ���NC���������^��x0��LII ,((ؽ{w�}_�Ν;�:ԋ��|����}U�۹sg�C���> �{7��]�,LF�h���ϕ#�C�yn������Ϸ�X�w�8!����+��3�o>��W���|���G���bʐ�w����T�`u�����.<*--���.[�������s�ι�F��f���>P���-0Yک��Xy�+���������."WCCCπn�io ��tW2�s0y�� LNK��ds砭ቲ�������"�`�ƍ�ȾիW7���mpp�YLL�X���a�:��U�ljjz�ҥK� T�UJJ��w���)"s���o�>t��Ts=�j�V{_U}~�ĉg��[�n.�hSA���{o����[$\��X랝��L���HfWW�;�_�p���5����p%����+++�A�j�E�wC��:��ܐ������o߾������GDDD��7 R�'�W�~��K ;�GL��^]��U"��6a@D'&&������g�k�pOU/%&&���z�,����͠�Y�KhO�:Ub��k<���� ��P�[""U����O��q��� ���x���N�k�����.�b|��=f��Ԅ�X���m��~ *�SU�SRR�a���۪��9���Ν;}D亵�� h����p-N�L�t���M��&%!���YD���燘�H�]�:<[�b�� ~"�aV9��nʑ�>"Rr�o۹ں�@ު�LDn�����wS6C�i�����^�2��:�����<��Q�9�v�Z�^�Y[[�����ɪ������Ϗ������}�����R����u��A�5fe9ؚ�`թS�`B� ID�@٣�>Z�����Fs�3O�<��}���!��ڐ�4�Q�����:0o�`Aii�;�III��V�?��G��8ķ�رc>梢\.�����]J��fOe0�M��������^Z�fM:�!�5]���gg���)�ԍ���c�8A����,���++��<11�[`g�{VV�ȱ��d;� �6 7�?��U�����������f/�./������������>}��b�����F�5����%�%��э6l����hɅ�ba���������u!�yA���� ַVWW�BD�E�qcc�֭[7�b��0>��9.|���% O���6�)--M2��FW��TU���o(/.kii .//��y���T'?/6�z�'�R(!G��UF�W���3=���� TUöl�2�k["�fk)��(��䩌���no۹s�ܳ˫�*���0Bmk�F333�g�M���JR0��VUU}@SGG�{mmm������'O�7�,�1a5���~YXX�)�D���������d7W�v5x�;����4�n�(;�&0�p������ �h�@�zzzZ��;v� �4�u��`����V�Zu^8�8L�8��a��[����������>�e�U��'�|⦜��'�ق;��v�冪���i4 (99�|�Ν�L���feeu�����ddd$���}�^����u(//�߲e�t]����L9n��T�\5�z=z����¹`+]�Ey�֯_�j���y��Tuh���9'N�xY������Z�����͊�^c{�LY�ܬ�?=q��,;����� 1[�ò������)vn `Nzz��Y�!?ڵk���&0���S&&&��yR���Hӻ.Y����_���.\�X�z�t�Um���\#�`۴�29P$j����'O��c݄z^yy�Ԭ��q�܆_�/,��^���a<33�W�ϟ�к���_�+�QzC~�4aq�� �WU�-�|FO�[8J|�& 9�V�&y�5cr2O� K��۷>|�kw���K�@k� ���&�KU�?�L�z����588���]���E��L�mM�~T]]�����7@��W�\�JII�s:����ޞ�Q� �������@�h���Trrr>OOO�UUU�,�qĴ�J�m6�[n"�h/�`��t��u�� L6�Fn߾��p��k������� �1�n ������$.�\NTrr������ɓ'��^���,߳gOmVVV�]��M_��[�Ν{�"����Xˎ;�k�8Z�aL2�O�E�1I]]�L;�WBRv@U����]�����r�|u���� h���@k�T���~p<R���P{���6!kmX��|��G}`E�?(SJ�Br��d���d�}v<888,��+s�����LQ�Z(W�B���h���n�l��s��=����?oo�!asʒ���>ۯ� ��j�Oy�����W���+��� 4Ra��TN�tᱨ)?��Ϸ��� �_��T�ێ�MX.�C��Q�0ȱ�1����1�j����ˈ�v�~ ����f�U�����:A���Š� j�S��<U�Dan��g^bb�����A�l���ذ���z���.v�2s�>&�uO�v�`Yv��j�Oٻ*���@k�4�eu���p__������������km����"/�:��j`�ָT�Zн��1���;w�l<t���.**��cǎ�&(+��K||�Э[��A�����W�g��c������Lx]�`~ll쓆����X��u��JpII��[^^^8�Hvq+���7�`��$�K{�� sO���%EU(">'O��7i�g.�2�8b���Ӗ���c�Ru�>L&{� �8��%n G.�����Y��}��=lhh�0%�s�+6�(sy�A�<(,�� ��ɓ'��WSS���E8M����hH;�b�ʗ��9�VT���ƪ����-��111�]�z�������e��,c���_X�rett4�ڵk��z�С����;v�h֨�Q�P�D$�֭[����O�M��F=<<��c��[�>�3_ �(hH�t������ T�����|M&ދ�� ��<T5@U�X���U�?]��^�=]U�+**:A�� `�O>�1L�b�l���L_<kll|���W��9q℗��~ӠPa��0�t� ���HWB�_UW���j�ń���ݻ�;���T�����6A�߿��9I��=�TD �AWު���߭��K���m]����p۶m&Գ@���[����Q���놆��/]�4f�ү��+++������ U-s���V��6ez�,jR�o+�yDxxxxEEE����7edd��������Q�%=z�i���`�ƍ��?��0p��� k��@L�s01��-:::�����0�`�����r�ۇ^444���f�)��EEE����ȧkjj����\�h3�0����4��@�-?�� F�0��g,�������Щ� �@zff���Ͽ��u �4�oǪ����h����7ȹ�Z@�+$u=��d�/����l�7�)���v\�����5&�{A�%�<�`QMM�����s���o� �o�j���h������a�Xg���L/-HXX� R-z ،�{S�����111�쳵 Q��SA }�s�^�~�����;555������}S���T�?Ϥ��ދ/���ް�ݹ��������T�+X��˒)i®��z�� ��/"+T��'�|2����488�7111*88�����O�9�?�wB?��� -�C&o�r��uY"Op�K���X�����#w�9ħ���C�O8��#M��<�3U�����۶mk��������ϟ���� jhh� �i��OL��� ���r�����3)))�#��%%%~�~�g�AxqR��^���O�N�A%� ���YIq�����yH��#�� ���K{��/Uu��(�W�ml� �U��I����u���f0���p/@��f�m{b�v8MQ������� �}�.\+**Zz���{n�٢`��T(�M�466γE�nڴi088�m����^:���_[Ap��Jmx[��M���O������֭skhhx��)��10zUV��oy6��@U���֥�m"�ڶm�Z���ϟv���0��9���ad��A�6_��NO�n�i������|������R9[RR��*�m}��|l?~��7��ӧO��:��[`��w+V�hY�v����vuu5[�lB�Z����_�$%�Tu\Yz�bw�;o����-����~�s��I_ Gfwk�F��2�=���[���@Xjj�fgg?Uձ����U5EUכP `���٫W��ŋ��sS�����ܪ�3cbbEd���k`��a)��0��j�s�����r�������ҙyKD:7m��������k�B�"{�:u�VXXX 8�<@ձc�*�,@�}�������{���}-"m)))#�{{{7���O߷o_��&i����ƺ��7w���7K���������(//�/bcc��G��p�3gڄ�wWsrr<��ܕ�ޡ��1�����URR���ٳ�f����2�%�������ۻ-���3g^(Qr^�s~��_!�� ���k ���熪����8���I����YYY>`��˗/?.++�����/"##��c�C�466�� gW=ebbb}bb�Hmm�T�����W���m�0/�{��]�vunܸq~iii��#G���Ƽ֭[�9�V�M��V�:�;0D�v]��C�zL/..�ݶm�Ma�9TD����y���YB���;�m��}�R�D�TVV6/;;�K93�~_��"�ŪU��T����蒒���VSAr�h�S,�x�Oa���N�M��8q"eÆ ��������,3--�@ohh贎�O�D �ޕ�R�P' c� O��;��KKK���9�\����g�<y�ED~���ׯ�9y��=RΌl����>�6SH������}1h1_��{�()�nۛ�0Y7�~��j����=�knn�s� �Z�:aC�<��q1�:J@3$����e:,"�� �Gx�D�xi�����z_ps8������W ����� �4x��a�u�L����<L���!��i�y&��`ײ}��9����o� aƼ[�n�����z�*� ����e�Ν;[:4::����mk��#%]U/ ���z�=�����?���/G����w�L�U�v*�m����"<<ܣ���Δ���͛7�y�ܹ{�Â�?ޟ��3l�D��E��Df)��oU=-l/��r��Tu����{U����� Q�o��/�M����;v�pknn~@ ���'`��ב��S1�&~���]�ř���G��@��Ç]�c� �L*ǹs�>�P]]��o�������=��5��پ}{2�F��c�u���;��("ؾ}�t�s ����gTT�r�"�&���������W�\IP��U�jXXX&���߾}��i�mkkkSե�Z���7��C�y������?WDVTTTD)C������ iy.O�SU���o�Aww���^���xZ�&���SU��nݺ_����u �� =�m�?w�\�a���>������7rt��շm�}���n{�s7lؐ$��7�Q �A0���TTT+ǔ�0%))il��)��n㥠o�5�Z������<Mx��ODz���WUUy��t���+V���;O��$���`�}0�xn/�k�s�}3&ۿg�.���P`lll�w��]<x��Voٺ������@g ��LW���Z",�r���=ztp˖->��'�@vȩ«�<m�9�T� l�R+A�3Sxz 0""�O?��OB�l���<�t:�N���|�1ـ�nk���M��{���u�����X���677�����HU�Z��k�U�ّ�uuu��v�S��/�sH����ɓ'�au��܅+ͪ�����&�>)S&&&V�9s����ت�۷w���B�x &av�^ �� �c19��9�!oГ���|����-[�`۶m�Ύg�b���Z�I�H�ߞ=@kjj^KJJr��d�=�]9��B�V0�oI���{�� ���8q"{Æ �lB�������������wtt���o��uس��4J���{�� И)@�����܉�ӧ�w���0 xo���N�<�g�5MH��cr�LH��Р�y�AYx7�I�j��'�r@y��#ei�La�,�+c k2�����<**�m��9L5av��DyCI��D0Q%�36�kS&&&~�#v���n�Zb��_�B��� ��o��u�;�E=W��(��"R����ڴiӏ���Mv@�L(��*�'� ,s�\�9l�����u��L�d)�?�{�By��%�&� �9�,�M%i�@����z��*�+]���" ,a�(��DTI�H4$�X,��Tα��6ut�I3�(�8���X���d2�V�Zm �&dm0$�(�EP��E>6�DE��u��מ}r]�� �ϳ���u�{�G"���Ng����[��k9`�S֯_�[^^���%��P�����(D8�d6�?�+��6�0[89�H�|�Y<��`P:>j��Pڔ�q��_(��7���S�7����«şW__���r���ڱf͚[�`E��l�7V�ܹ��ԩS��w��>��q��r�(E �wn{�����_�%�w̨�W��3m�ډ����miiq���|�L{/o٩�>[�n}R8>)�6�a���;ibA��H�%��� 0���r��i���v�Z7�����ov��o��d�������� �=W���0���m����G���w���:�,�!�@D�rh��m x�n����a�u$@�T&O� ��3���O���V<�J��6i|�,j;|�̺!-&*I�U�YO�MIII��֬Y b�I`���s ���cǦ/Z���~'U��vh�)((����2x�O}��t��WEEEӅM]��ݪ�����U�l1��Pz3��hU��`�� �f7 cz���/�pn+����{̐��u �D�}ې�����Yk��a�g�j����AJ#JU����`��v�� ����*,�.�V^^���7��yj���`�CD��(C�m�x5�UP1�c�wVU��d�l��A����D0����%[����Q`�>l����P�h帡.��ȫ`�P��999N[��"�t��!���g��� x5��|�l���h��f�����s@ �Pnnn�\ux�������O�fx!�_�]T�ӎ��'����m������q�ƛJnc9�sunݺ5e߾}�'N���a����'%%���_��S5 �d����[�l ,//���z�wA��g(u]Mr�SMҕ��Np{Z��Q���A�U��5v�ςx#���S4�^�:�����������=�<Y�����J؏y۶m8x��4��6��6vؽ4F�AUŻV���� �������%��ikk{2..��~�*���Y�g���o�>�Uu"�RO[��'TC�'v�|�P���e�I\{RRR7���T;��ܝ0>>��$� @��\�����k;w�k���s;5Q�Rjkk��?�믯��u�M�w�P��0U�4\�a�_�����%\���ӷm�v��1`}췪�#�ׂ��W�=)� N7��Cʻ�rkO��y8ϰ�x0�3�b�� }�7����x�~������f�c�Ŧ���Ғ�`��8����������9��|,�tEFFftvv~eF�HDz222"jjjn��&�4}b�Ngghh�vwwG)KmSZZZB�� 0]�P=6����U�y�Μe�g��W��s�o_��$r)�`d��{>��3�pi���>?}��yyy�6l���6��Q���iii����3uuuw��+��nZ�W�[�����\���b�X9�E���W #�9q��<��G�x9���Y���6�/���<�����s�� �)###!j�����9FὨ����Q����@�,�6*TD�)��G���=8�����̠���Ύ]�re`aaa���p>s����U���ׯ��߿��=�3 �{@tgg�>��RU���?[�%"���t��n������ Ȍ�,��3MD�777x[n��ݻ�^�j���Gv�<Y�s�L�+��6�����0Z�1��O?�LKKK�m8�G�"�Tevw{�ڵZWW7�_���o ����wk֬���]��I�����S֯_�*�@u��PWW�X�v��e���~�q9���1���I3/�!Ճ�c\_���W!���}���f��������^i��MM�xFF�DP��� F��<�� ��f�B�dl;�.//�e˳`&;_�)���ɶvSm�ͰN����恣�����Sm�g��g��N�A���XYVV�?rrr��0�w����R���<�j���b??�1S? �"����eR�S�j��h0�哖��!"c����B�G�p�g7������������vY�������CJJJ\\�fMxqfWvvv&~6�_�~��t�Q]�w�B4Y�bE��2Y*,�V�FevxbG�m�6@����$xl���̘FA�3�~~@�{����瘑���ξd�o��ݿgFF��G����_aPW �������m��ׯ�W�iǏ_��iB�c�y�E`6��[� �o�k��[PPpb�'j7�������)�}�RRR ɱժ���ѡ���."�����gF� �Uu��v���0��`?��W����e˖;�LS�f�GL����Sx��g�����}Y��I����~3&&&m���c{��9 �ӣ�4;@���z�'����+o�r���u���/���^�u�*��S��<яۦ���^�^�'"��B!o6�""g��]�v����+3�ZW��Nꥮ�������������,Ĕ�B��������u�3��SU��ڵ����F@���>����� �����T{h�a0����P�B�}�Ja����`�6���q\VrS} P�����x��A�;K�3f�5�f$�D�`��sU(������YvGw�U?0��Tv�<^n��@� ����:�q����hll\�����y$"c{�� �P����TUQ�=���w���B��yϚ�X���?�����Peee���Oa����JJ�p��!����� ��K���8� ������:��ٙ��+���MUu���T�3"�DD�SRR��Add�f�^*:`hh�kej�b�5Km�PTTT����{N����i�F��� a��PM�s�}�Uf�&ځ2�|<��`���}~4��Ed��G�&(aB=�P�zY����m3��7_��X~����ceee��0�Ax� ��6�@,��ﰓ,�6("C~~~���HJJ��iSS�/�MJ�\��S�se���۔aP�u�`m��QQQ��Ȃ�����`�Tu������w�ԩ `���Oppp���mq���nll|�8 NJJ�bdd��C�o�����}����r�igg��N�3Q9��#U�x��g��d�����8�9x�`?�1�H������7�M(g�/�x�OU}���� ����=0#0��:y��rP��;s�c0c�z���?@en��\.--}MU�SR.�B�Y^'�|�pyyy-���L�[�����Y�����`������2 ě#�*��"|@)��[�g/?QX����KGFF� �~�������"�XY� z�k�"r����VKK˃���E��y�P\8�ٜ.X6�N�7�OLL�/�Ğ%"�233o��I�I�a[��G�y䗮�ei1���D��%�wU�)777�iz����,r��5`��EEEQG�=[YY�#����^������ ��7+���f�m��Auh��k/��[�X;22���:6S?--� ��6o��t/gmm�ʋܛ��sK�G:rss�U�g���kA�c�Ν;�Tu�Q} Ew�������0�^�9� E�y�ڵ�"R�}��}}}� ��rT5ɢEUcc�dU�0>>��N��.=3�S�����W���p�Bع�k@y�Â����{�V��"HD��_#����@W����V�C`��l��+W>:}��G�s���`�{?��ߵ�3���!@@QQ�@~~��8DGG���t�� �wU5���)811�!X�R�:kE�O����͛ێ=� `H�g%��������Qft�Y]���Qպ��҅QQQ���Һ��j��?zAl� zɅ��aNNeee����V<��e�j���K���ŋ�/\� ���`2����-nW-Ѹjaxϣ���U]!"U��@�}�=W� ê���A ���e��P�i������?,,�jAP�vq�R�{=Y�g��I��Ԕ��F����e;@�;*,�ă�Y �����@�{��km����)��{�!�5$�r��,�T�DdA```�_5 ���"rZ8�m�����k� M���'O��G��,"a��������ʺ��Pr�֣ID��b�1x/����ɑM�6 ��M---�xc���z��=b _�3#�����;��{��b0T���:\.\�]TT�&C��\�����߃�@���NMM�]__�����mEEEA;w��\ ���U�����g�5 ,�/�A���Ȳ ���fV�7U� �Wi��2��b��2�ϴ��y0�o�������IYYY�{�+��L9�v���m�5fEJ9H'�{�3Ѓ@�J���!���`Fۧ�3 $���σ���{�?;;;��ɓ-f����<A�4�D�a��|�i�p�ZYY9�����YUw���r[��A�������9s�#�!x��t0kK� �u?[��1��h�k<*#�@����.��k��N����:ǂ���`�:E(�Y�NEEŃu���P�sqq����1�̆tp��9�e�;v�I0����oU�{��<1"��wآ?g\4�9]D����8_]]=G)Q]���U��w�(**Z�k�U�c�fƲ����d��������hkk������ f�?���<��`�{.E�C8� FDp����0<�gf�`Q;�'�E�>%�6]8�(Ğ�����1v!���_�N�r�ٟ�Ҟi�Μ9�'"[���}�����'������&��9l��P6����QՃd�n۶-�Q�7�������i�?`�>�����P� `D]�n�Ds����*"Å��7���w���z�p*�%��,^����{w��x&X����=�ک�#�c0в�Pۄ���B�]�v9�4�;��{����c_��π�\.W���+W>8}��R�#�S�A �o�WL)�h������q'**jUqq��_}��t�c��+� ր�� t8*1�=>�Ttt�R�����Hk��J8x�`��Ç�֯_�+"O��_�z��Bƿ_D�*�A��g��[D�V�3S��ݻ�0�$����x/r�z�P~\�GHܷ�`����{��'JJJz�Ly�}Ɯ;v�,))���ρ�}�9D ���rHUÒ��_hhh�^|<��|3[�E�%����͓/�r:�Q���7���%eK�-U��g�@��-�v����|�n����6�����@(���ϱ���oZ�-S�`�.By_�T��m3>���P �'�FA�d${�;�_�%�/^�� U�qPW?�3���n9��ѣ�G��}�Nq����QR>���{d�b^0���M�j��a� )����.U�� J��Ӣ��Y�r�ǧO�^�o����-[������)�_�;:j���㠷J��{ ��WտDGGOv�\O *,\{�T{n� �,���RU}�`S�p�ߕ�x�@~&���M�6-Sf n�n���'�H��\����Q[[�����}[����g6�DcȻ\��D�r�,ηpWUU��<~�x���aLf$Y��������\ M�šC�>O�oEEE�RU�.,y4�K8���Z�QYY9[(��=ﴒ��O�<z�h#�&����+U�^�������;tX�b�����q��*�1��g;hO��CU[��xT�5�k�1f�Q��>}zvBB�`AA��¡%8|�p��;��"��o�!���K�l���vyz``���w�?J �%� b�@��7�� �cU��t:=���J7�����D��"̳v��M9S@�{�-`L_a<�y��ƣG�ƃ!R@|�3,,likk�{����YYY�7M}m��p����ҫQQQU����]-��7m!��g���������I`f2��,{��{��f��BH�L��QQQ�O�<ٕ��\��u��;i��Lj���+..~PXX�h'�S���K"g)���A<j��W~B9pv�-�d�L;^�=}nP��N#�h)IJ���DžZ ��g��� /��H�%�_� H���^����������ۻ�W���߾}�|@��RUO����={��{N��<%��l�5��M�6�zN�}�=(,~>0C�HDf]����sB���x����B��FU��>�����$P�����BΤ��������9�@σ�i���6����������@ {ٌ*�N�Z��0�|���O17��lGG���;���ς!&ȼ��'*3��"�yaaa��>e�,��B�w\U/�ȃ�����g�������'��[��O���`��~*d�["##��U�B3̯m;@aߠ�O4�����N�"3�]�8������F�/�c����=;a�4�}���f@RXXC����i�1����g�:t���iÛ;A�}��w��iii�vx|����pP����#G�d�����O����x])�}<777@U����oTTT���ܼ��i�KXXV��ZZZΙ��Pջǎ��~qq��¬nԌ:t�-�E����[��X%L��+**�@���I"����%��a^bсn_b��q��X����aOy���ς5�^��)�0۫��lU��`��~ۈ���ׯ�P�%8ߞ�#X��� 6�pvvv���o��0�UrG�+��_ �g���g(��Ę��w���� k��ʬ}��8ȯ5Hܲe�@AA�\{�������ef/B!�APP8 ���[�F��*(10�:��9�� ���?�>q���۶m��-|�m�hSSS�_~�����Fᐏd��v���299�\CC�a���Wڻ���QU]�/n�p��U{��`Y撪�mۼ�� %��iTe�6�>���w���*� ����].W���ifX���փ��*���#a�w�N����������S�?�B�~68q�&W��j���H�2�n� �Gw����F���F3�K U�+˕IO�R����r�����)))s���π��? ��Knuww/ wk���8l��)H/��� R-�B������+VԊH�����k֬I�� �� qqq�iii����[�`V����6lxS)���Y�����μ�<fxcʆO���ƈHhCCØ�\�po``@��� 6Dى�l^b�3����I)�|��)�T�q����=��pf�5e���~���s�\��q>`��䒒����� "K����KA�����'-�.v ��>����5��i��� �{��W+6����q;�3��T� Gnn�:p�ܳ��@�7IUCDDG�Pe��6�CU/UVV>��/�����.�EFF� 0�L�`�rkU5����&��o���F�9��:�uo��FFBB�+V��&J#k֬�oF�U����6�ȑ#��Y)"��c��糳��A]�mP����Ԕ �-�l)���}��\LV�,�]���~������9� �q�)Q��,�i� z��N���;�F�++=��f��ە���@��ev�kF�رc�7�HVձ���P���R��%��� 0L��{�}�R�������9��&�����hFqCU�#���T�A���mF���=�/��\�����?fff.��eU����·UUU� �v���x��oڴ�]x/z����j�.�7cZz�TP�ߜ����߾}����0g���P՞�����ׂ2�P�p�sCVO�j��v455}i�7��>�FJJ��'OF �:[�'o�������?888�\�J��py�ڵWA��2onY'N�� ���Rj';�8��� "R�����p^^^8�0l~p�B����~*++�6�-E�l����Z%��T��M����z������i��o(�`�A�����s��w�^>�(�`�Ψ��Ȼ�xbU5����CHj^𨢢���c4��u��}������9@��LNII=dX\\�=�k���x�U C�#�>��y�0�/�1�8z�RЧaaa�A��>�[EEE��m�vSU��A���l�~ z�)���a�g���E�{UUU���^( �`�u�"���9��c`���9��������_�R �RJh=t�y%w(�<c@,�."uB�NVjj�艉� 4C����w���5k�L2co0yݺu��IKK�3�a+�9p�\��0� U kll�ٵk��P�:�B��d��5�f�����(�� ��1]H�����fpwv��1߾}��C�֭s�!�Qnnn7�i�ׯ4��� ���u�����f�������7�}�(�0W)�9���lo�>`�ݜ���c�,����ĉ���7w�o���MMM�D�?@0O��M/NͻYZZڞ��������^ �-��¿�Xs����V���W�2��dx�! ����ډ�S1�p B햂M ��s6o�ٓ�67�>���~��U�okk[����J�%t�T���V:� ~�(������?[���p�����-??�,v8�uvvεg^iF��- `v���SN���n�{H����A�W(��ŋ�wttt������ �.�.:��m ���T ��[Z RG7��[J�.Ky�j�}������k`BQ��Ħ�� u>B].�m�sss�\�W"�����_RR��.� i���υfg\+** �Oo/�2Ga�Y0�����J�0�s�8@��o���d*/�'l�7�~ `�P{����������*C:H/R�6�wH�������;�����^���6X�8���~~~W�#�OvvvƁa�5p��ᡡ��|q`�����n�ҔLJ���$[��.ܲu� ���(l��=Ob{{{8��]�>$"�D�C0��`kF�c����`�w�c�Z&"��w�3?������LnlllU��y����PX���0�E��.���Y��� u&�!�&"���t���:L���_b�^0�X�����E(e#�b�`��YH�$3C� �<;1 �ɺ(� #�;;].�UJKK��5�&�}= `�i��<*((���aF�-�&��n��� � 3؇`M�SU��@+**"�����N�B]�(��$�#;S���EH�]v8G��.���\�={�����`��ǢK���+�"�������d�Szꚳ�0<�l����ST5!))�)0Z����'0��jN!ڏ��1���a7n� �-[��3�+ �0'??�鑑�>��}�ĉ�Y�m����l�c��x;8�:�jm�(ۧ<�M�4d��$���ڼys���n���kU ڴiS�v��8V�^�����?۶m�u3R0��Y��ɴ��ZU�7���w322f���'+��INN>���2ƌ��:9&����3���~���5k����^p.�)p`���&?qv� $/()� #M�������� ܈}�G`3)Aw�0�1��מ���U�F{{� �� F��]-��S�����kSl�3� J��lú�����/ߞ�in�bttt����z� ��!"�%&&>ljj��쾝�q!�K*a���o/d�����PWj��c�vG�(��Nb�-��)����III���#T��*��x�E�4;vlV^^�a�դ����-�Knn�x3�.����/X� �6|?0#��pvg'��������Z=z���͛'�����B���?jmm�P#$h����3Ӟó-V�������)'�\�?�,"��~��鹹���3&�^���)%%e��t~�v��������A��_U���Fm��Ꮇ��e�sT��� <F����daa�Ñ���v��0�0��r���� �.U��S�N�3/V���A���������"�-,N4#��|}}�Cs+++lexBW�ai8k���*{���T�G�IIIU`��c�W���'ن�PY`�0���w��&�{��߾}�,�T^^>ۙ" ��\�2� Ƚ����fo�7333��ɓ���پCx���E3�I����E�]__?�͠8��J���|�aP�B�bt�m4*++�Q�o���֙��ݿ�G~�RJJJ)�N��"��@u���,ljjjT�q!���@� Jk|@����;wBI����_pL&��z��\ڵkׅ={�������w����@d ��<��2��j�� ��*���̠̕.f�_���;-�fhK�@�a�rP�te���uw�fl�Ƭ9��}V�mR�m�4{�V[�x��_�g��k���۴i�<��o�%���������ݻ��X�055�y���@??�y`��Q���sf�`����B�ۇBje�=��́w2��~�FD:��&�<�ꢢ���������͛7/=z��I�@U�-��H�L\[�lq>|��p�`����ޞk��j�p�С�[�n} n˖-�>| ����\> z�~��pa��@tt�b{�+`t , D {�jm��`�ѳqw�������M��m�����x'�)l��[%d���t�6$t������(d���&� Mm��&q�A��̳���zY�iӦ���5�s�k<�}��W{���; ��*"sΜ9����7z��9d7f���w�q�?����;::&��l/�{٦zz,/�%ư�П���洈4GEE}"^;`���P\\<@�R�1���Ã���-���O��}/HD�u���,"�}}}�"� 66���Ç��؋R�'����3Clٲ b�?��i��P�o/����BTT�hݲeK��Ç/��F�!_uR��������o)�ɘ��Cu.--�k7�=��0�S�Q/��~U�K-� %�����?y��׃.��?��- %2�7@���z���O�;��S�=�Y�!O�f�����@E��o!��{lŊ|�����Ǡ��� ��C���w�3D������L8�[���#Ak��,a�b���C)a�P9`���@�e`f�pW�j �ς:� �-�x��]RR���^@LL�DZ��I�����&����^&� 6\�؇����1���'N�ڶm�$U<q��� 6�����t-11��r�����3��Ħ$''�644��"<��1C� ,uLV��^&�].U�ضm����@l7 {�>忝��K`#�ǖ��� ��`��m�ҕ���������� �K=H(�a.�����+N�3�}��4�ͷ�Ӷ���r��_����r4@�R�������rd�x�"loc���"�4����Ovww_JHHpڻ�� ����`�}�СC��n�:&��%''�444,�����Ύ�4y:l�W�NU v:�~��3�)�0�����$_:�Uu�HІ �m3������rdd��갰����ڗ���t�gCC�d�522�/�H��*��`Y� ��B�}mt��r�� g�.KP���㠧q��k�f���~U�}�9������)VD�6n���%ǎ��r��}�9???Q��~�G7�»�B.̓Uz���ݽ{�]ὃ1`7�<�fq������y�I����C�o��i�9Y�BJKK#Al4 �{X <<<|��z�פ���7Ou �$��[�:@h� ���a>�Xv���?�آnU����0��v?��E0Ԅ�jOJJʗ��[�.�������眈\���[i��+--�e!7A�2Y�mW�}e�1fYS 8G�Ti:�;֩�~�ׯ �<ދ˃��pQjSSS����6�k��6m�b^`2x��srr��e�$0a��� ��o �ѥ�sT�W8@�@]KK�e0L����3I���-�A�(fp���7諮��4��+���f4s���k�߹s��+����T��J���Z[[���A���>"�_ZZ:���Ǜ]QQ�˾��N����@�0$�x�<tWww��9sf�mEDN�[p�c�z����sf�9"""�wvvzN�JA���uuu�+V��'0d�ۻw��Q�e�57{ސ�k���2���%�x���G)���6�(z�ޏ|-�Xxy�l��uHڿ�¢��C`���:�C��vXY�g��� � �NU�"##ǟx�y555Q�z'!!�Vss�T0ˬ��ə[VV�s�N����3�yN;(�a3!\��̜RUU���'�1�i��P�X!���K��g���f8�����\__?'%%e�U5�@��z�7���z绻�;�������Y) ���/��D/��=g���Ͼ���Alz���~*77��=�� �HɃu��0>>��aϝ�wA�<mఴ9�6o���[�Pق5f��Y����O%�f�+i�D[�A%�g��.--�����b�����-V���?�ʶ)O�<��m1=j�V�������@Lwt�wͨSD�S��z�!������8Ы�ٚ9D��،����˵�4̬��LKKx�&�a�eOS�i! f�>`���Py�d� F�>�B�Ѯ��;dw�����G���5`�7�>g>��F�{8������ɹ����<~�x�sڨ�j@�,���}�N(V�az��@���ۼy�B����$�)u�_��X&#�a�����]8��OU�ڰa��%k9L�aF�+@�ak��ƿ �'�`&�l��rR����""o�˭݆WN�����R��o�H-�=� �333C�}�|���w�L9n`�y��/{`��M�y��T8�r�F�9rd�����;��D$BHN:�(o��XU�/~�PP���TKd�!�AX�|z����O����)Tz�uvv����<��S�Os�ўW���|�}����ssrrZkjj?~��>|�>X���F/"�H�I> ���_��_� ���X8z��,��?//�[0�REE�wo�2�����?���xN�|�`�]�^��~�����;vd e���� 0}lll�wݻwo��\UM��/~� 0# 4z�������"�?�������D8 o����~illl�s�=����0��)ޮ�f��,��<yr���~�߄��č7~�7 �����g����n���zzժU������������H����Y?���]D����?�2�� b�������k�\�r��ĉ��$�n�����sT5���l �~�t)gb��&���������� n����Ovuu}SD�nݺ?٥��ɱ}���>���n݊���z��h��4iǎ�.]��F��o��f��f�<yr��ٳ��V���N^�jUʑ#G^jhh����ׯ_�|�� �����ر�,�{���u� l�2��}m �*:1X7���>nhh�+22�+OA�7t�# �Tj��Aw<��>��v剰¿��kD ݍ����r�i��^���N�����xnj~**ׁ�����8�s999�eee� �V�+� _~�唷�z�&���g ���y�+`�� Uu�y�`U��Ic��-{�"�Fyfn!F������=m�P�� ��"2p���5k���hYY�HFF�-;df��X��EII�kǎ��@��A)"UVOB���o�:u*�Ԛ������I�y��Qa��@D�����V��-Pq������_�!`�Q4�<b������u��#����Ed��p�Q�[_���LONN㣪�U��l�2 �"+D䤐�� ��E `�c�"jkk[�a��ev~����GFF���u��XTT4CD�G��_VV���0�D�#YU���[�DdTX�����s=m�����v��'{��HH0^����c����r��.3<�J�~pæ����]���@��6��. J�p�ΝTГ����poȸ���^� �_�;v�p��_�����bbb�0cv�:u* ֱ����][�ۃB�>X+��-[�\.W0�(MT�'��魦��Va�}<m������-V�X�c_�'"��S����߿���+V��jhh�议���?yN��ÇjjjbU�m��x��A�ذ������U��7 b�,����獰�J[�f��狪���曭$))�"�K��(�G[/V�qE�\N�=W\II��СC�����wwwO�/��!�&7Tu$33۶m�(4R!"���٣`]���v���յ�X��ss}3�A��+Խ��� ���b��˓T�+11�#3�Ax/��4� �ޣ�=�s�lhhh///��3nj7�8�X���s�B����a�v���P����{�7n)I����ħ'�������fJJ�"�LuX8��.�REd 88�������.{�$x�s��S|ޱ��B���0M��p�\n������4btttř3g��=�� ���S�WoWP�]=a�}<��@��i���Y9{����JĎ;ր�ܣ�O����w�,1`�j���LII�7�z���f�X���;9�S���� z,1���z �톎`���� {w2 P*c�͘ܪ�#l���BuNNNhYY�3�Z���W��7�0��H���iP��R�/��qK��{j� �}<�����)fL�f�?p��N�h !�8d�y<U��ZZZ�Z꞊��a%=�>�L�_��6$L���s��,�߿c/�P�����ŋ?�P�vK(S �lѓQ��1g�?z������;v�����o���@��糪�Ɲ&"C+W���9a�ƍ@�q��1P;""�©�O��զݻw_��Xyy�V;U�U����[^Z5�`���]v��,"�"2�������]O�aaa_)g��I�[��o߾��Y��Xii�DY]VV�Hx�T0��"���?�(55���\��08,�}�����'��>�c���斖��� !!!�(�.��^�(g!"�_A��w�S�z�% hw:t�}�֭/�rO�H��o��v�-��m�aۧ�],�xɼ�#�������;���l�G�8v 8��6 8�A��h�A��=<00��3�Bz���O�_�ڻ� ����l������7 ��l{��f˅ͼA�7��q�g=��ڮ���:W��;D�iM���wމz�W��s�>��lMb��s;PY����a�(/�������y���� ��c@���w�b��K�H��~GQQQHN�=�q�_�Q$��E�IEND�B`�assets/uikit-themes/master-kojiro/images/mask-default-image.svg000064400000051217151666572400020711 0ustar00<svg width="390" height="390" preserveAspectRatio="none" viewBox="0 0 390 390" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M10.85,171.52h0ZM17.75,6.76c-1.24.14-1.38-.41-2.21-.55-.41.28-1.1.41-1.66.55s-1.24.41-1.79.69c-1.24.55-2.07,1.38-2.21,2.35,1.1-1.24,2.07-1.66,2.21-.97-.69.55-.97.83-1.38.97-.41.28-.69.55-1.24,1.24.41.14,0,.97.41,1.1.55-1.38,1.93-3.31,1.52-1.52,1.1-1.1,1.66-1.66,2.21-2.21.55-.55.97-1.1,1.79-1.38.14.28.83.14.97.55-.83.14-1.79.41-1.24.69.69-.14.97-.28,1.1-.41.14-.14.28-.28.69-.41.69.41,3.17-.28,3.17-.69-1.79,0,.28-.55-.41-.97-1.1.14-1.79.14-2.48.14-.28.41,2.21.41.55.83ZM14.44,5.24h1.52c.41,0,.69,0,.28-.41-.97-.14-2.76,0-4.28.83-1.66.83-2.76,2.21-2.76,2.48.69-.41,1.52-1.24,2.48-1.79s1.93-.97,2.76-1.1ZM9.47,13.24c-.55,0-.55-.55-.55-1.1s.28-1.24.14-1.52c-.69.83-.69,1.24-.55,1.52s.14.69-.14,1.52c.41.41.69.41,1.1-.41ZM8.51,19.73c-.14.97-.14,1.93-.14,2.9.41.55.55-.28.55-1.24,0-.83,0-1.79-.41-1.66ZM7.96,16c.28-.55.41-.97.55.14.28-1.66,0-1.93-.41-1.66-.14.14-.41.55-.55.97s-.28.97-.41,1.66c.41.41.69-.41.83-1.1ZM7.4,22.21c-.28,1.79-.28,1.38,0,2.48.14.83.14,1.93.14,2.76,0,.97,0,1.79.55,2.21,0-.28.28-2.35.28-4.14s-.14-3.45-.97-3.31ZM8.51,35.74c-.14-.83-.14-1.66-.28-2.62v-1.52c0-.55,0-1.1-.14-1.66l-1.69,1.11c.14.97-.8.85-.94,1.67-.14.69-.14,1.24.14,1.66,0-.69.55-.41.41.55,0,.69-.55.28-.69,0-.14,2.76,1.32,4.23-.55,8.56.83.41,2.36-1.55,2.63-2.37,0-.14.41.55.41.55.41-1.38-.14-1.79.55-2.35l.14-3.59ZM85.74,388.79c1.74,0-.58.93,1.28.81-.23.23-.93.23-.81.58.7.12,1.28-.12,1.97-.23.7-.12,2.32.23,1.97-.46-.93,0-1.51.12-1.97.23-.81,0-.12-.7,0-.58-.35-.46-1.86,0-1.28-.81-1.86.46-2.2-.46-3.6,0,.23.12.46.35.46.58.58-.12,2.09.23,1.97-.12ZM312.39,386.45c.69.41,2.48.28,2.35-.41-1.1-.14-2.35-.14-2.35.41ZM295.09,386.55c-.69.41-5.66.28-1.38.41.97.14.83.69,2.35.55h.97c0-.55-1.38-.55-1.93-.97ZM293.42,383.45c-.28.69.61.66.75,1.21-.55-.14-2.9,0-1.38.28h4.69c.69-.14.14-.97.97-.97,1.52.28,1.24.14,2.35-.28.28.69.14,1.1,1.24.97h0c.41-.97.69-1.1.97-1.66.55,0,1.38,0,1.38.28-.97.41-.83,1.38-1.93,1.66,2.62-.14,2.21-1.66,3.86-2.35.41,0,.97,0,.97-.28-1.38.28-1.93-.28-2.9-.28-1.24,0-1.79.69-3.31.14-.69.97.97.69.83,1.38-.55.28-.97-.28-.97-.41-2.21-.14-3.14,1.24-5.77.69,0-.97-1.12-.8-2.77-.94,0,0,.69.09,1.03.57ZM308.66,385.49c0-.28.28-.55.55-.69-1.66-.55-2.07.55-4.28,0,.69.97-1.1.41-1.52.97.14-.14.97.69,0,.69-.55-.14-1.24-.28-2.35-.28-.41.83,1.52.41,2.35.55.83.14,1.52.41,2.35.28.14-.41-.69-.41-.97-.69,2.21.14-.55-.97,1.52-.97-.14.41,1.66,0,2.35.14ZM90.26,386.94h0Z" /> <path fill="#000" d="M10.15,43.36c-.55,0-4.69.51-4,1.48.55-.97-.4,2.9.27,2.9.14,1.24,0,3.17,0,2.35-.27-.56-.82-.56-1.09-.97-.41,1.25.69,3.03,1.09,4.28-.4.28,0,2.21-.54,2.34-.14,1.25.27.83-.42.98-.4,2.33.49,3.27-.06,4.37-.55-.13-.28-.69-.55.97-.82.28-.27,1.52-.27,3.72-.69.15-.55-1.65-1.1-.54.14,6.06-.82,11.03.14,14.62-.27.7-.69,1.1-.69,2.35,0,.68.42.82.42,1.37-.69.84-.15,2.49-.28,4.28-.11,2.66-1.02,2.72-1.22,5.95l-.26,3.7v.12c-.03,1.24.05,3.8.6,3.66.13,1.24.27,3.42-.27,3.27.39,1.81-.41,1.96-.15,4.45.34-.25.02,1.3.29,1.44-.31,4-.49,8-.54,13.24.4,1.11-.15.38-.03,2.76.37.56.41,1.15.4,1.39-.13,5.48-.04,12.48-.05,19.14v.19c-.05,6.66.05,13.58.13,19.08.01.23-.3.89-.67,1.44-.16,2.39.41,1.66,0,2.77v1.08c.03,4.73.16,8.44.42,12.16-.27.15.72,4.38.31,6.18.24.88.19,2.97.17,4.76l-.02.24c-.02,1.24-.39,4.19.16,4.05.13,1.25.27,3.42-.27,3.27.39,1.81-.41,1.96-.15,4.45.34-.24.02,1.3.29,1.45-.31,4-.49,7.99-.54,13.24.4,1.1-.15.38-.03,2.75.37.57.41,1.15.4,1.39-.13,5.49-.04,12.48-.05,19.14v.2c-.05,6.66.05,13.58.13,19.07,0,.23-.3.89-.67,1.45-.16,2.39.41,1.66,0,2.76v1.08c.03,4.73.16,8.45.42,12.16-.27.15.72,4.38.31,6.18.24.88.19,2.97.17,4.76l-.15.85c0,.35-.01.7-.01,1.01-.27.69-.41-.28-.69.96v3.31c0,.69.42.42.42.98-.28.82-.55,1.56-.69,2.8,0,0-.01.6-.01.64v1.24h-.41c0,1.66-.46,1.39-.6,3.32-.55.42,1.25,1.27.96,2.09-.27-1.11-.34,3.16.34,8.68.59.57-1.16,3.52-.29,7.58.14,3.16-.81,6.33-.14,8.94-.14-.19-.11,2.8.96,2.93-.41.55-.95.96-.95,2.35.27.41,0,1.93,0,1.93-.15,1.65.68,1.38.68,2.9-1.24-1.11-.55,3.03-.55,3.31,0-.56,1.09,1.93,1.09,2.76-.68.69-1.09,2.07-.95,4.69.95-.55.27,1.8,0,1.38v5.1c.41.42.41,1.54.41,4.71,0,2.21.41,2.34,0,3.73,0,.83.1,1.56.22,2.28.2.84.87,4.11.87,4.2,0,.14.81,1.95,1.09,2.63,0,0,.82,1.11.54.98.83,2.2,1.93,3.72,3.15,4.97.55.68,1.23,1.24,2.06,1.93.82.55,1.77,1.24,2.87,1.79,1.65.41.71-2.34,1.67-1.65.27.14,3.01,0,3.97.28.68.28,1.23.42,1.5.69,1.37.14,2.61.27,3.97.27,3.01,0,5.61,0,7.94.29.14-.29.28-.56,1.64-.42.69.13,1.37.13,1.93.13h3.7c.81-.13.95-.4,1.91-.4s2.19.4,3.29.27c.54-.14.96-.42,1.37-.42,0,0,.27.15.54.28,0,0,.03.41.3.15.28-.26.56-.43,1.92-.62,1.37-.21.28.67.28.67,4.19,0,8.6.58,12.3.23.82-.12,1.51-.58,2.44-.23,0,.23-.7.23-1.17.23.94.35,4.64.35,4.41-.47.35.47,1.05.24,2.44.35.7.12,1.62.7,3.6.35.23-.35-.58-.35-1.17-.35.24-.23.82-.7-.46-.58.23-.57.93.23,1.63,0-.35-.23-.47-.45-.47-.8,1.04-.12,1.04.35,1.97.23-.46-.82,1.16-.93,1.97-.58-.46.7-2.2.81-2.32,1.62.59.35,1.63.35,1.98.81.58-.35.58-.81,1.16-1.05,1.16,0,1.04.94-.35.82,1.51.7,2.55-.47,2.79-1.05.8.47,2.42.47,2.08,1.4.58,0,1.04,0,1.16.23.81-.46,2.67-.35,2.78-1.05-1.04-.11-2.08-.11-1.62.59h-1.98c-.34-.82,1.87-.35,1.52-1.05-1.28-.24-1.05-.12-1.97.23.11-.58,1.73-.58,1.97-1.15,1.15-.12,1.85.57,2.78.11,0-.93-2.9-1.51-2.43-1.97-.93-.35-2.21.22-3.6-.11.69.45,0,.23,0,.8-1.86.12-.81-1.27-2.78-1.15-.93,0-.47.11-.35.35-.82.11-.58-.35-1.16-.35-.93-.12-1.28,0-1.74.23,1.15-.12,1.15.35,1.85.57-.7-.12-2.32.23-2.32-.22.23,0,.47-.12.35-.35-.35.12-.7.23-1.27.23-1.4-.35.81-.58.34-1.05-.22.35-1.85,0-1.97.47-.92,0,.46-.47.81-.58-.93-.35-2.78.23-3.94-.35.81-.59,1.39.35,2.44.23.23-.47,1.74-.58.81-1.04,0,0-.28.15-.72-.47-.44-.63-.8-.26-1.34-.38-.55-.12-1.02-.23-1.16-.44-.14-.22-1.07-.11-2.12.48-1.06.58-1.18-.3-1.18-.3-.41-.41-1.37-.41-1.91-.56-1.5-.13-2.6.42-3.83.42-.56,0-.69-.27-1.37-.27-3.57.13-7.67.27-12.2.13-1.09.28.83.69-.54.96-.55,0-.96-.96-1.37-.27.55.27-.28.56-1.23.69.27-.27.41-.55-.42-.69-.13.96-1.91-.27-2.32.42.82.14,1.09.41,1.64.54-.27,0-.4,0-.55.15-.27-.84-2.6-.14-1.37-1.24-.95-.14-.95.27-1.37.4,0,0,.25,1.26-.38.98-.64-.29-1.16-.9-.69-1.38.48-.48,1.09-.02.88-.66-.22-.64-.83-.38-.48-.62.34-.24-.72-.22-.58-.75.14-.54.44-.59.44-.59.81-.97,4.37-.69,6.7-.69v.69c2.88.13,3.01,0,5.21.54,1.23-.41,4.38.7,5.47.28-.54,0-.54-.42-.41-.69,1.73-.27,3.73.24,5.1-.62.17.07.51.2.93.49,2.88-.42,4.79.82,7.94.13-.13.56,1.78.56,2.33.56,3.42.27,5.34-.15,7.94.54.55-.54,2.6-.41,4.24-.41.69-.14,3.84-.42,5.21-.14,1.64-.14,5.2-.41,6.57.14h4.25s1.6-.15,2.55-.01c4.39.45,9.59-.2,14.53-.16.68,0,1.64.28,2.32.29,2.74.02,6.16-.1,6.58-.64,2.46.84,6.16-.1,7.53-.09.96.01,1.78.29,2.87.3.83,0,1.1-.27,1.92-.26.55,0,.68.27,1.37.28.14,0,.96-.41,1.37-.41.55.01,1.92.16,2.87.3.69,0,1.37.43,2.33.58,1.09,0,2.33-.4,3.7-.12.55.01.68.28,1.36.29,1.23.01,2.61-.53,3.85-.39,2.46.16,6.16-.09,8.9-.08,1.09.01,1.91.3,2.87.31.68,0,2.87-.4,3.29-.39,1.09,0,3.28.02,3.42-.26.82,0,2.33.02,2.75.02,1.64-.12,6.7.19,7.94.2,1.36.01,2.6-.4,3.83-.39.54.01,1.1.28,1.37.29.82-.13,1.64-.67,2.32-.68,0,.05.99.43,1.38.43,1.14.14,1.92.05,2.55-.08l.38-.07h1.3s1.6-.15,2.55-.01c4.39.45,9.59-.2,14.52-.16.69,0,1.64.28,2.33.29,2.74.02,6.16-.1,6.58-.64,2.46.84,6.16-.1,7.53-.09.96.01,1.77.29,2.87.3.83,0,1.1-.27,1.92-.26.55,0,.68.27,1.37.28.14,0,.96-.41,1.37-.41.55.01,1.92.16,2.87.31.69,0,1.37.42,2.33.57,1.09,0,2.33-.4,3.7-.12.55.01.68.28,1.36.29,1.23.01,2.61-.53,3.84-.39,2.47.16,6.17-.09,8.91-.07,1.09.01,1.91.29,2.87.3.68,0,2.87-.4,3.29-.39,1.09,0,3.28.02,3.42-.25.82,0,2.33.02,2.74.02,1.64-.13,6.71.18,7.94.19,1.37.01,2.61-.4,3.84-.39.54.01,1.1.28,1.37.29.82-.13,1.64-.67,2.32-.68,0,.05.99.43,1.38.43,1.14.14,1.92.05,2.55-.08l.49.61c.63-.13,1.11-.3,1.65-.3s1.36.29,2.32.3c1.24.01,2.47-.13,3.3-.12.54,0,.67.28,1.36.28,3.7-.1,13.72.2,13.72.24h1.89c.55.02.96-.11,1.1-.11.27-.14-.27-.28-1.92-.43,1.38-.13,2.74-.12,4.25-.11-.14,0-.27.14-.14.28,1.24-.13,2.6-.12,3.57-.26,1.23,0,2.6.02,3.83-.1,0,0,2.4,0,1.21.3-1.37.69-3.56,0-4.66.4.41.15,2.06.69.96.69-.13-.54-2.05-.13-2.32-.54-.56.55,2.04.83.4,1.24-.68,0-1.09-.14-1.5-.28-.14.28.13.42.41.42,0,.55-1.92.13-2.74.27.82-.27.82-.82,2.19-.69-.54-.27-.96-.41-2.06-.27-.67,0-.4.55-1.36.41.13-.27.69-.41-.41-.41-2.33-.14-1.1,1.51-3.29,1.38,0-.69-.82-.42,0-.97-1.64.41-3.15-.27-4.24.14.54.56-2.88,1.25-2.88,2.34,1.1.56,1.91-.27,3.28-.13.28.69,2.2.69,2.33,1.37-1.09-.4-.81-.55-2.33-.27-.4.83,2.2.27,1.79,1.25h-2.33c.54-.84-.69-.83-1.92-.69.14.82,2.33.69,3.29,1.24.13-.28.69-.28,1.37-.28-.41-1.11,1.5-1.11,2.46-1.65.27.69,1.51,2.06,3.29,1.24-1.65.14-1.78-.97-.41-.97.69.27.69.82,1.36,1.24.42-.55,1.65-.55,2.33-.97-.13-.96-2.19-1.1-2.73-1.93.96-.41,2.87-.27,2.33.69,1.09.14,1.09-.41,2.33-.27,0,.41-.14.69-.56.97.83.27,1.64-.7,1.92,0-1.5-.15-.82.4-.55.69-.68,0-1.64,0-1.37.4,2.33.42,3.43-.27,4.25-.4,1.65-.15,1.98.36,2.76-.08.76.87,4.22.62,5.32.21.68-.13.54-.13,1.51,0,4.37.41,9.58-.28,14.51-.28.69,0,1.65.28,2.33.28,2.73,0,6.16-.14,6.57-.69,2.46.83,6.16-.14,7.53-.14.96,0,1.79.28,2.87.28.83,0,1.1-.28,1.93-.28.54,0,.68.28,1.37.28.13,0,.96-.42,1.36-.42l1.15-.54c.69-.27,1.37-.41,2.06-.56.54-.13,1.23-.27,1.91-.4.69-.15,1.23-.42,1.92-.84,1.23-.69,2.47-1.78,3.28-3.17.42-.69.83-1.38,1.1-2.07.27-.69.41-1.38.54-2.2.28-1.53.56-3.04.69-4.57.14-1.51.14-3.16.14-4.82v-4.42c0-2.48,0-4.55.13-6.07v-.09c-.07-.35.06-1.15-.07-1.55,0-3.04-.46-4.59.08-5.96-.27-.14-.68,0-.68-.56.55-1.09-.14-2.06,0-3.72,0-1.24.96-.28.68-1.94-.27,0-.54-.13-.4-.96,0-.97.68-.55.54-1.93-.82-.55-.27-1.93-.27-2.9,0-3.03-.14-8.97.13-11.86.14-1.38-.13-2.62-.13-4.28,0-.56.27-.69.27-1.38,0-1.38-.41-2.49-.14-3.87,0-.88.58-.62.58-1.6,0-.09-.01-.2-.02-.33-.42-1.24-.83-2.76-1.1-4.28-.14,1.66-1.1.69-1.37,0-.27,1.38,0,13.33-.13,15.26,0,.97.4,2.07,0,2.9-.56-1.52-.56-3.45-1.38-3.72.14-1.8-.82-.97-1.23-.56,0-.82-.82-.41-.69-1.38,0-5.65.94-26.98,1.9-25.32.41.69,1.5,0,1.77,1.51,0-.82.14-1.51.56-1.93,1.07,1.59,1.5,0,1.5,0,0-.46-.01-.95-.03-1.44v-.64c-.06-1.95-.26-3.92-.48-4.79.55-7.73.28-15.59-.68-22.36.14-.69.41-1.24.54-1.93-.54-1.65-.68-4.55-.4-6.62-.28-1.11-.68-1.66-.68-3.31.27,0,.68,1.93.95.55-.55-.28-.55-1.79-.68-2.9h.68c-.14-2.48-.82-5.79,0-7.59-.27-.27-.55-.55-.68-.96.13-2.21-.41-6.08-.14-9.52,0-.14.41-.84.41-.97.27-1.38-.14-2.76.27-3.31.28,0,.14.82.42.97.27-2.22-.42-2.35-.69-3.32.55.14.69-.41.69-1.38.13-1.11-.42-1.38-.42-2.35,0-.83.55-1.93.55-2.76,0-1.24-.4-1.1-.4-2.35.13-.13.27-.4.27-.96.27.14.54.83.68,0-1.1-5.1,0-13.94-.27-20.84-.01-.06-.01-.12-.01-.18l.08-.65c-.07-1.94-.27-3.92-.49-4.79.55-7.72.28-15.58-.68-22.35.14-.69.41-1.24.54-1.93-.54-1.65-.68-4.55-.4-6.62-.28-1.11-.68-1.66-.68-3.31.27,0,.68,1.93.95.55-.55-.28-.55-1.8-.68-2.9h.68c-.14-2.49-.82-5.8,0-7.59-.27-.27-.55-.56-.68-.96.13-2.22-.41-6.08-.14-9.53,0-.13.41-.83.41-.97.27-1.38-.14-2.75.27-3.31.28,0,.14.83.42.97.27-2.21-.42-2.35-.69-3.32.55.15.69-.4.69-1.37.13-1.11-.42-1.38-.42-2.35,0-.83.55-1.93.55-2.76,0-1.24-.4-1.11-.4-2.35.13-.14.27-.41.27-.96.27.14.54.82.68,0-1.1-5.11,0-13.94-.27-20.84-.01-.06-.01-.12-.01-.18l-.09-.48c-.1-2.57.03-5.82.16-8.59-.55-.41-.68-4.82,0-2.34-.55-2.63.28-5.25.14-8.56-.55-.14-.82-1.24-.96-2.35.27,0,.27-.41.41-.41.41,0,.14,1.38.41,1.38.28-2.2-.27-2.9-.68-3.86,1.37-1.11.54-6.62.82-9.94.14-.56,0-2.9-.28-1.38,0,.82.28,2.35-.54,1.93.41-2.62-.14-2.48-.41-4.69-.69-.42-.83.42-1.37.42,0-.7-.42-.84-.42-1.39l.58-12.76c-1.1-.56-.85.48-1.12.48-.96-.55,0-1.93-.14-3.86,0,0,1.41-.3,1.22-.97-.29-.88-4.15.22-4.22-10.76v-12c0-3.18-2.47-5.66-5.62-5.66l-78.35-.28h-4.64c-.14,0-.14.14-.14.14h-.16l-.19-.05c-.16-.03-.29-.06-.42-.1l-.67-.05c-.51-.17-.97-.36-2.2-.15.4.27-.32.21-.73.35h-1.06c.54-.14.95-.41.68-.69-1.23,0-1.23-.41-2.33-.55-1.5,0-2.85.55-3.53,1.24h-4.98c0-.14-.15-1.1-1.37-1.1-.42,0-.42.56-1.38.41-1.09-.13-.81-.69-2.32-.69-.82.28-1.92.42-1.92,1.11,1.79.42,1.81.19,3.87.06,0,0,.95-.13,1.36-.13.14.28.39.07.24.2,0,0-1.63,0-1.76.14h-13.83c1.51,0,.38-.48-.07-.54-.96,0-.62-.42-1.99-.28-.14.28,0,.68-.56.68-1.91-.55-1.91.15-3.69.15,0,0-.37-.29-1.58-.56-.68-.18-1.43.56-1.43.56-.14-.15-.28-.28-.97-.15l-.45.15h-3.99c.13-.55-2.83-.45-2.96-.45-.55-.14-1.36-.24-1.9-.38-.28,0-.96.08-1.1.22-.27.13-1.91.06-1.78.19.41.14.71.25.82.42h-3.95c.14-.97-2.93.33-2.66-.64-2.74.28-2.2-.96-4.66-.69-.68.15-2,.94-2,.94-.27-.27-4.75-.54-7.49-.41-.82.83-9.58-.49-9.99.06-.41,0-1.78-.55-3.28-.42-.28.69-1.37.42-2.47.69-.83.14-.99-.21-2.22-.35-1.24,0-2.97.81-3.95.82-.52,0-1.02-.04-1.51-.12l-.2-.09c-.51-.17-.97-.36-2.2-.15.4.27-.32.21-.73.35h-1.06c.54-.14.95-.41.68-.69-1.23,0-1.23-.41-2.33-.55-1.51,0-2.85.55-3.53,1.24h-4.98c0-.14-.15-1.1-1.37-1.1-.42,0-.42.56-1.38.41-1.09-.13-.82-.69-2.32-.69-.83.28-1.92.42-1.92,1.11,1.78.42,1.81.19,3.87.06,0,0,.95-.13,1.36-.13.14.28.39.07.24.2,0,0-1.63,0-1.76.14h-13.83c1.51,0,.38-.48-.08-.54-.96,0-.62-.42-1.99-.28-.13.28,0,.68-.55.68-1.91-.55-1.91.15-3.7.15,0,0-.37-.29-1.57-.56-.68-.18-1.44.56-1.44.56-.13-.15-.27-.28-.96-.15l-.45.15h-3.99c.13-.55-2.83-.45-2.96-.45-.56-.14-1.36-.24-1.91-.38-.27,0-.95.08-1.09.22-.27.13-1.92.06-1.78.19.41.14.71.25.82.42h-3.95c.14-.97-2.94.33-2.66-.64-2.74.28-2.2-.96-4.66-.69-.68.15-2,.94-2,.94-.27-.27-4.75-.54-7.49-.41-.82.83-9.58-.49-10,.06-.4,0-1.77-.55-3.28-.42-.27.69-1.36.42-2.46.69-.83.14-.99-.21-2.22-.35-1.24,0-2.98.81-3.96.82-.51,0-1.01-.04-1.5-.12l-.11-.02c-2.98-.53-5.35-2.36-6.23-2.31-1.23.28.42,1.11-.54,1.11-1.37-.28-3.15-.67-3.56-.81.14-1.26-8.24-.75-10.28-.34-.11-.64-1.51-.79-2.3-1.01h-.87s-.64-.35-.68-.36c-.04-.01-.32-.71.04-1.79.36-1.09-.31-.56-.75-.13-.43.45-.56.36-.92-.68-.35-1.03,1.78-.85,1.78-.85.27.54,2.33,1.1,3.29.96,2.74,0,6.03.27,7.53-.42,4.46-.54,11.22-.4,11.5-1.51-1.78-.14-.31.46-2.36.18-.55-.68-1.06-2.11.86-2.39,0,.28-.28.55-.55.7,1.43.04,2.79-.81,3.61.03-.2-.24-.95-1.06-.95-1.06-.68-.55-3.35.07-4.71.19-2.2.14-4.39-.55-5.22.14h4.26c-.83.7.13.28,1.36.97.41.27-.01.98.39,1.11-.27.14-1.62.13-1.75-.42.54-.14,1.09-.28,1.36-.42-2.32-.27-1.92.83-3.29.97-.95-.14-3.28.42-2.73-.55-2.33.28-5.21.13-6.17,1.1-1.09-.41-1.5-1.1-2.46-1.38-.55.28-.41,1.1-1.91.97-1.1-.28-1.37-1.1-3.3-.97-.13.41.14.83-.54.97-1.1,0-1.64.41-2.33.41s-.82-.41-1.37-.41c-.13,0-.82.68-.96.28,0-.42,1.23-.15.96-.69-1.91.27-1.37-.69-3.29-.56.15.83-3.41.41-3.28,0,.68-.68,2.19.56,2.87-.28-1.23.42-1.36-.82-.4-.69.96.14,1.64.56,3.28.56-.14.41.55.69.96.28-1.23-.28-1.1-1.11.96-.97-.14.97,1.1,1.51,2.33,1.93,1.5-1.11-2.06-.69-1.37-2.07,2.18-.28,2.32.96,3.7.27.68.42.68,1.25,1.78,1.38.4-.27.96-.41,1.36-.69.83.56,5.61-.13,4.25.69,1.5.15,1.23-.55,2.33-.69,2.46-.27,4.1.42,5.61-.4-1.09-.7-2.32.13-3.28,0-.14,0-.28,0,0,.27-1.78.13-2.33-.27-2.33-.97-2.06.01-4.8.01-7.4-.14-.14.42.69.55,0,.69-1.51,0-.82-.96-1.78-1.24-2.87.55-7.94-.27-9.44.41.54,0,1.37,0,1.37.29-2.06.27-2.06-.42-3.29-.56-2.2-.13-3.3.41-4.66.69,0-.42.14-.82-.96-.69-1.78.27-1.65.41-2.88.56-3.28-.15-6.17.12-7.39-.29-.68.14-2.46-.27-2.32.29.81.27-3.02,1.24-4.39,0,.96,0,1.51-.14,1.37-.69-1.92-.15-2.61.4-4.65.13-.96-.13-.83-.69-2.33-.55-.27,1.11-2.2,1.38-3.84,1.8-.73.24-1.64.55-1.5.13-3.16.42-6.3-.55-7.94.69.81.42,1.77.14,2.87,0,.68.42.68,1.24,1.78,1.38.69-.54,1.23-.83.96.28,3.56-.14.13,1.11,0,1.65,1.23.55,1.64.84,3.7.55.27.69,1.65.84,3.76,1.32,0,0,1.36.17,1.85-.07,1.09-.69,2.88-.56,4.66-.69,1.5-.14,3.01-.56,4.24-.69,2.46-.14,5.62.27,8.49.13,0,0,2.01-1.38,5.31-1.14,3.29.24,5.44.72,2.9.88-2.54.16-3.9-.44-3.69.12.13.38.91.65,1.39.79-.55-.11-1.48-.22-1.28.41.28.89.12,1.12-.55.72-.68-.4-1.55-.32-1.55-.32l-.75.34c-1.51,0-3.97.14-4.66.69.82,0,2.33-.27,1.92.55-1.1.14-.96-.42-2.33-.28-1.37.42-.13,1.11-.96,1.39.41-.97-2.33-.42-2.74-.97-1.5,0-3.42-.27-2.46-.42,1.92-.27,2.87-.14,4.66,0,.27-.41,1.77-.14,1.5-.96-3.56.55-8.9-.27-11.23.42-.14-.28-.96-.28-1.37-.42-.27.27-.69.27-1.23.27h-1.78c-.96,0-2.6.28-3.15.28-.27,0-2.47,1.25-4.93,1.52-.55,0-.95.41-1.78.55-1.1-.41.14-.41-.54-1.11-.83,0-1.1.42-1.52,0q-1.09.15-2.32.42c-.69-.55-.96-.96-1.65-.69,0,.42-.68,1.11-.68,1.11-.13,0-.28,0-.55.13-.14,0-.41.14-.68.42,0,.27,0,.41-.55.96-.27.56-.68,1.11-.82,1.66-.28.56-.42.96-.55,1.52-.14.41-.27.97-.27,1.38-.14.55-.14.97-.14,1.52,0,.14.27.55.14,1.1,0,.28-.28.7-.28.83,0,.14.82.83.41,1.8,0,.82-.54.13-.54,1.38-.28,1.65.81.96.68,2.62-.42.43.58,1.43,1.23,2.06-.13,1.94.27,3.87-.27,4.28-.41,1.8-.41,1.38,0,3.31-.27.83-1.23.14-1.64.42.13,1.1-.42.96-.28,2.34.82-.13,1.23,1.24,1.09,3.86.83-.82,1.1.56,1.37,1.94,0,1.93-.96,1.38-.96,3.32-.27,2.34-.54,4.55-.95,5.65,0,0-1.12-2.46-1.2-.5-.08,1.96-1.68.91-1.68.91-.27-1.1-.55.56-.68-.55,1.23-1.93.41-7.17.27-9.52M14.74,355.39s-.03,0-.03-.01c0,0-.09.27-.07.43.03.16-.19.37-.48.58-.29.22-.24.14-.53.57-.29.42-.17.61-.4,1.25-.24.64-.46.03-.81-1.44-.35-1.46-.74-.45-.74-.45v2.23c.12,1.24-.84,1.8-.84.28-.14-2.63.41-5.52,0-7.32h-.01c.69-1.25.32-.71.18-3.19,0-.28-.41-.97-.41-1.39-.14-.82.41-3.31-.42-2.89-.69.13.14-.83,0-2.35-.27-1.24-.82.97-1.1-.55.83-.14.55-2.63,1.38-2.76.27-1.52-.41-1.52-.41-2.35l.27-.54c.14-.29.28-.7.28-.97v-1.94c.69.28.82-.55.96-.97.15-.27.42-.69,0-.96,0,.56-.27.69-.41.96,0-1.93-.14-2.2-.55,0-.14.42-.69,2.08-.69.97.14-.55.27-1.24.27-2.35-.27-.27-.55-.55-.69-.96,0-3.95.28-5.16.16-9.2.03-.34.18-2.41.95-2.84.55-4.28.47-6.67.61-10.53-.01-.94.26-3.36.35-4.48.32-1.24.82-4.85.4-6.37,0,.27-.4-.11-.4-.67.21-.63.33-1.31.39-2.04l.16-.91c.19-2.59-.34-5.75-.12-9.16-.28-.14-.69,0-.69-.55,0-1.52.69-1.93.69-3.73,0-.82-.42-1.93-.42-2.9v-.96c-.27-3.04.29-7.59-.69-8.01-.13-3.45.98-3.73.98-7.59-.42-.69-.42-1.65,0-1.93.13-2.62-.15-5.65-.15-7.59,0-.96-.41-2.62-.14-3.72.14-.55,0-2.9-.27-1.39,0,.55-1.24,1.24-1.24-.13.82-.14,1.24-3.59.96-3.73-.14-1.52.14-2.62.69-3.03,0-2.08-.27-4.01,0-5.94-.27-1.1-.55.55-.69-.55.14-.97.55-1.65.55-3.31,0-.69-.41-.41-.41-.97,0-1.93.28-3.59.28-5.24,0-.55-.83-1.93,0-1.93,0,0,.57-1.22-.12-2.34-.7-1.12-.43-3.09-.43-3.09l.48-3.05s.7-2.61.17-4.32c-.54-1.71-.43-2.14-.43-2.14,0,0,.79.22.75-1.28-.06-1.49.1-2.78.1-2.78,0,0-.53-1.33-.38-2.3.11-.64.34-2.28.49-3.3l-.11-.69c.19-2.59-.34-5.75-.12-9.15-.28-.15-.69,0-.69-.55,0-1.53.69-1.94.69-3.73,0-.83-.42-1.93-.42-2.9v-.96c-.27-3.04.29-7.6-.69-8.01-.13-3.45.98-3.73.98-7.59-.42-.69-.42-1.65,0-1.94.13-2.62-.15-5.64-.15-7.59,0-.96-.41-2.62-.14-3.71.14-.56,0-2.91-.27-1.39,0,.55-1.24,1.24-1.24-.14.82-.13,1.24-3.58.96-3.73-.14-1.51.14-2.62.69-3.02,0-2.08-.27-4.01,0-5.94-.27-1.1-.55.55-.69-.56.14-.96.55-1.65.55-3.31,0-.69-.41-.41-.41-.96,0-1.93.28-3.59.28-5.24,0-.55-.83-1.93,0-1.93,0,0,.57-1.23-.12-2.34-.7-1.13-.43-3.1-.43-3.1l.48-3.05s.7-2.61.17-4.32c-.54-1.7-.43-2.13-.43-2.13,0,0,.79.21.75-1.28-.06-1.5.1-2.78.1-2.78,0,0-.53-1.34-.38-2.3.11-.64.34-2.28.49-3.31v-.09c.07-.46.12-.78.12-.78,0,0-.07-1.01-.12-1.37-.2-1.55-.64-1.22.05-1.76,0,0,3.54-1.55,2.58-3.72-.96-2.15,1.32-1.11,1.2,0l-.12,1.13c.4,1.76-.48,4.88-.57,5.52-.04.39-.18.61-.21.91v.16c0,.17.04.36.14.61.32.89-.08,1.05-.25,1.45-.15.4.09,1.6.09,1.6,0,0,.72,2.16.87,4,.17,1.84-1.03,2.33-1.83,3.61-.81,1.28-.09,3.28-.09,4s.32,3.13.32,3.13l-.32,2.07s-.4.73-.4,1.05.89.55,1.13,1.84c.23,1.28-1.29,1.79-1.29,1.79-.42,3.04-.27,6.21.42,8.97-.42,3.59-.97,7.59-.56,12.29.69,0,.69.55-.13,1.51-.42,1.66.41,1.66.41,2.35,0,.14-.28,1.38,0,2.34,0,.97-.69.56-.56,1.93.15,3.46.42,8.98.42,13.25,0,4-.69,7.58.13,9.92-.11,0,.14,5.99.14,7.06,0,.69.42.42.42.96-.55,3.97-.14,7.06-.08,11.23l.26.52c0,.16.62.6.72.85.32.89-.11.91-.27,1.31-.16.4.44,1.66.44,1.66,0,0,.72,2.17.87,4,.17,1.85-1.03,2.33-1.83,3.61-.81,1.29-.09,3.28-.09,4s.32,3.13.32,3.13l-.32,2.08s-.39.72-.39,1.04.88.56,1.12,1.84c.23,1.28-1.29,1.79-1.29,1.79-.42,3.04-.27,6.22.42,8.97-.42,3.6-.97,7.59-.56,12.29.69,0,.69.56-.13,1.52-.42,1.66.41,1.66.41,2.35,0,.13-.28,1.37,0,2.34,0,.97-.69.55-.56,1.93.15,3.45.42,8.98.42,13.25,0,4-.69,7.57.13,9.92-.11,0,.14,5.99.14,7.05,0,.69.42.42.42.97-.55,3.96-.14,7.05-.08,11.22l-.15.92c.01,1.02,0,2.11-.06,3.29,0,.68.41.41.41.97-.54,1.51-.27,1.79-.27,3.72.13,3.59-.42,7.87.42,8.97-.56,1.25.13,2.49,0,4.27,1.08-.27.15.96.94,1.51,0-.12.71-.88.71.02-.28,1.51.13,1.79-.56,2.75-1.09,0,.56-2.48-.69-2.34-.13,2.63.15,5.1.84,5.65.13,1.53.54,1.66-.15,1.39,0,1.24-1.09,2.62,0,3.31-.27,2.07-.27,4.27.15,6.62-.97-1.24.13,1.66-.55,2.76.27,1.24,1.09-.41,1.09.55.28,2.22-.96,1.11-.69,3.31.15,1.66.97-1.23.69.97-.27.96-.96-.69-1.23.96,0-.54-.7.7.27.56-.27,2.48.14,3.86.83,4.28-.28,3.31.38.98.09,4.56-.27,0-.4,1.39-.55,2.21-.13.79-.5,1.96-.78,1.96ZM21.33,381.1c-1.59-.81,1.04-.38,1.04-.38-.4-2.01-4.08-2.06-6.67-4.26,2.58-2.3,7.45,3.3,8.86,4.45,2.32,1.63,1.99-1.68,4.39.88-.75,3.21-5.53-1.44-7.62-.69ZM358.38,374.72c-1.35,0-1.65.46-2.11.76-3.45-.3-7.22-.3-10.38-.16-.6,0-1.66,0-2.11.46-1.36.15-1.06-.46-2.1-.6-2.57.3-1.06,1.05-3.17,1.2.46.45,0,.9,0,.6-1.05-.3-2.11.3-3.16.3,0,0,.15-.45,0-.45-.3-.15-3.16,0-3.61,0-.15,0-.61-.75-1.05-.75-1.36.9-3.17.15-5.73.15,0,.45,1.81.15,2.11.6-.61,1.36-3.01-.45-3.61.15-.61,0-.31-.3,0-.3-.31-1.36-3.77.3-4.67.45-.91.15-1.81,0-2.56-.3.45-.9.91-.15,2.56-.3.6-.75-1.21-.45-2.11-.6-.3.75-3.47.15-3.16,1.21-1.21,0-1.51-.76-2.56-.76-.15,0-2.56.76-2.1-.3-1.81.15-2.41.75-4.07.15.14.75-11.89,1.05-9.34-.61,1.81.16.3.61,2.56.31,1.21-.15,2.71-.31,3.61-.45-.6-.76-2.4-.16-4.66-.6.75-1.06,1.66,0,3.16,0,.6-.3.76-.76,1.2-1.06h.76c0,.15-.46.3-.46.6.76.6,3.92.6,7.24.9.9-.14.74-1.04,2.55-.74-.45.14-.6.6-.6,1.04.9-.74,2.56-.6,4.67-.44,1.36.14,2.56-.6,1.5.3.9.14,1.06-.16,1.06-.46,2.11-.3,4.37.76,4.67-.14.14-.6-2.72.14-2.12-.76h1.52c1.04.16,1.8.3,3.01,0h.14c-.14.46-1.35.46-1.5,1.06,1.05-.46,4.21.3,3.61-1.06,1.5.46,3.62.46,5.57,0,1.8.76,5.57.16,9.34.3.14-.14.6-.3.9-.45h2.11v.15c.6,0,1.2-.15,1.8-.15h24.54c-5.11.45-7.68.61-13.25.75Z" /> </svg> assets/uikit-themes/master-kojiro/images/box-decoration-image-02.svg000064400000010212151666572400021456 0ustar00<svg width="30" height="200" viewBox="0 0 30 200" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="m26.89,58.56c.05-.08-.04-.13,0,0m1.94,65.64s0,.04,0,.06c.31.05.58.09.78.14,0,0-.79-.2-.79-.2Zm-1.99,10.55s-.05.04-.08.06c.18,0,.37,0,.08-.06m-.78-34.88c.02-.09-.05-.14-.15-.18.06.04.12.11.15.18m-.72-60.65s.02.03.03.05c.06-.04.12-.08.19-.11l-.21.07h0Zm.53.21c-.23.23-.44-.06-.5-.17-.42.25-.45.51-.26.78.48,0,.41-.49.77-.6m-1.68-35.31l.19.11c-.06-.04-.12-.08-.19-.11M2.49,100.81s-.06-.11-.11-.16c-.01.08.04.13.11.16M23.67,9.65l.76.06c-.25-.04-.5-.07-.76-.06m5.95,114.74l.29.08c-.09-.03-.19-.06-.29-.08m-3.32,20.11c-.19,0-.39.02-.58.05v.03l.58-.08h0Zm-12.36,49.12c.1,0,.2,0,.29-.02l-.54-.2c.05.1.13.18.24.22m8.99-35.75c.08.02.17.03.26.05.25-.23.31-.83.29-1.61l-.93-.05.38,1.61Zm-21.86,14.55l1.89-1.42c.84,4.58-1.05,6.71.44,10.63l-.4-.22c-.44.57,3.78.91-1.4,7.19h-.19c.03.22.4.22-.09.65l1.16-1.09c.47.65,1.36,1.22,1.49,2.1-.26.18-.58.27-.89.26l.3,2.14-1.21.65c.65.65,3.22.37,1.78,2.11,1.78-.65,1.06.87,1.97.66-.22.09-.55.29-.85.44.2,1.04.69,3,1.6,3.48,0,0,3.76-4.05,5.67-5.13-.49,1.46.21.39.81.1l-.44-.1c.44-.87,1.56-.87,1.87-1.31-.1,0-.21,0-.31.02l.15.05c-.15.04-.3.02-.44-.03-.24,0-.43-.03-.36-.27l.11.05c-.09-.42-.05-.87.1-1.27h.93c-1.78-.65,2.75-4.35,2.81-5.22,1.19-.87-.28-1.96.31-3.05.31-1.74,1.37-.87,2.19-1.74.59-1.09-1.09.22-1.15-.22l1.31-1.3c.11.76.68.35,1.04.21.16-1.13,1.89-2.91.02-3.26.9-1.52,1.65-1.52,1.75-2.18-.34.22-.65.65-1.03.65.83-.6-.2-.29-.38-.04-.8-.93,3.43-4.83,1.38-5.03h.37c-1.53-.22-3.01.12-3.86-.53l.68-.43-.65-.65c.3-.26.71-.35,1.09-.22-.7-1.07.15-2.55.36-3.84l-4.18,1.35c.97-1.09,2.93-3.04,1.59-3.26l1.4-.65c2.69-2.17-1.15-1.53-.34-2.4l1.53-1.09-.03,1.09c.64-.9,1.41-1.7,2.28-2.39-.01,0-.02,0-.04,0-.06.06-.14.1-.23.11l-.03-.15c-.74-.09-1.28-.74-1.22-1.47.22-1.09-.9-1.95.72-3.68l-1.56-.44.93-1.3h1.24c-.08,1.29.38,3.7.43,5.35l.57.03c0-.98-.54-2.09-.41-2.73.25-.31,1.54-1.11,2.38-.53l-1.21-.6c-.12-3.26-.18-3.28,1.24-6.68l-.62.29c-.36-.68-.71-1.35.29-1.54.21-2.04,1.01-4.16,2.59-5.48l-1.46-.3c.08-.43,2.3-1.07.25-1.29l-.64-.93c.11-.59-.72-.95.12-1.62h0c.05-.05.11-.09.17-.13-.04,0-.08,0-.12,0,.65-1.33-1.31,0-.46-1.52,1.04-.49-1.85-.55-1.52-1.29l2.1-.74c1.21-1.34-.89-1.58-.89-3.54.75-.94,2.55-1.38,4.14-.76-1.92-.86-1.25-.4-2.17-1.53.79-.17.95-.05,1.67.2.93-1.01-.71-.62-.66-1.38-1.49-.22-3.86-.49-3.96-.74l-.46.29c-.79-.81-1.16-1.69-.4-2.62l.75.04-.37-1,.96-.06-.29-1.42-.26.2c-.12-.34-.45-1.43.05-2.05l.53.02c1.67-1.76-.5-3.23-.66-5.3l1.09.27c1.08-.7-1.67-.2-1.13-1.04l1.34-.04c-1.75-.75.38-.96,1.04-1.46l-1.75.23.37-.96c.58-1.05,2.21-.64,3.13-.48l-1.37-.73,1.54-.14c-1.79-.53.29-.53-.67-1.45.58-.07.92.16,1.17-.15l-2.17-1.53.96.92-2.26-.12c-1.71-.96.25-1.29-.37-1.98l.67.47c-.54-1.11.42-1.17.92-1.8-.42.2-1.04.49-1.34.04-.12-.33.79-.18,1.04-.49-1.5-.08-2.3-.88-1.58-1.6.19,0,.37.02.56.07-.24-.19-.63-.28-.27-.6l1.67.2-1.59-.63c.46-.41-.75-1.01.38-.96l.33.23.42-3.12,1.34-.04c-1.84-.32.71-1.7-1.59-1.61,1.25-.59-.87-2.32,1.72-1.97.21-2.05-2.28-3.17-1-5.66,2.2-.88,1.5-3.32,1.74-4.92-.9-3.13-1.72-5.16-2.41-8.37,3.08-1.91-1.03-4.81.71-6.87l-1.21-.57c1.95-1.37-.41-3.48,1.49-5.41-.3-.23-.55-.51-.74-.83-.06.09-.29.22-1.06.26.54-.55-.12-1.67,1.42-1.58l.16.14c1.54.09-.71-1.68.63-2.29l-1.66.33.28-1.04.31.28c-3.66-4.55,1.61-6.58-1.72-10.86,1.8.57-.94-.84,1.03-.89,2.49-1.07-.52-1.99-1.18-2.88-.12,0-.24-.02-.36-.06l.24-1.54c2.49.93-2.06-1.12.05-.26,1.89-4.01.01-9.26.89-13.91l-.64.2c.13-1.18-.64-2.65.38-3.54s-1.62-1.96-1.72-2.31c-1.1-.99,1.1-1.87.98-1.45-.3-1.05-2.58-2.04-1.59-3.5,2.12-.49-2.06-3.98.33-4.01h-.2c1.69-1.87-1.16-3.64.37-5.65.11.02.22.06.33.11L16.96,0l-7.98,1.14-6.49,3.52,1.35,9.6-2.57,7.65.76,18.64,1.79,1.34c-3.16,3.65.43,8.36-1.83,12.3l1.55.09c.08,1.11-.87,1.03-1.14,1.31.29,10.35,2.3,21.01.3,30.31-1.03.89-.44,3.63-1.52,4.33,1.88,3.03,1.84,6.24,1.63,9.26l-.17-.12.29,1.42c-.13.06-.29.07-.43.02,1.36,1.61,0,4.14-.57,6.11l-.17-.12c-.34,11.49,2.49,22.17.27,33.56-2.55,5.29.9,11.47-1.23,17.54-1.55,1.11-.45,13.42.26,14.51m1.98,18.11v-.05c-.66,0-.41.07,0,.05m17.96-25.34s-.01.05-.01.08l.92-.3-.9.21h0Zm.45,16.28c.21-.73.05-.77-.21-.66-.06.24.02.5.21.66m-17.2,15.05c-.05.39.33.24.77.01-.08-.39-.11-.66-.11-.66-.15.21-.5.43-.65.65m8.86-1.54l.52.12c-.12-.22-.32-.22-.52-.12" /> </svg> assets/uikit-themes/master-kojiro/_import.less000064400000047551151666572400015635 0ustar00@internal-fonts: 'Manrope:400,500,600'; @global-font-family: Manrope; @global-font-size: 16px; @global-line-height: 1.5; @global-xxlarge-font-size: 42px; @global-xlarge-font-size: 32px; @global-large-font-size: 24px; @global-medium-font-size: 20px; @global-small-font-size: 14px; @global-primary-font-family: inherit; @global-primary-font-weight: 600; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: inherit; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #000; @global-emphasis-color: #000; @global-muted-color: #AAA; @global-link-color: #E3A154; @global-link-hover-color: #C0853D; @global-inverse-color: #FFF; @global-background: #FFF; @global-muted-background: #F8F8F8; @global-primary-background: #E3A154; @global-secondary-background: #3E5249; @global-success-background: #80B485; @global-warning-background: #E5BA43; @global-danger-background: #D15F3C; @global-border-width: 1px; @global-border: #E5E5E5; @global-border-radius: 2px; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-ins-background: #FFEEBC; @base-mark-background: #FFEEBC; @base-heading-font-weight: 600; @base-blockquote-font-style: normal; @base-selection-background: @global-primary-background; @base-blockquote-padding-left: 22px; @base-pre-padding: 20px; @base-pre-background: @global-muted-background; @base-blockquote-font-weight: 500; @base-blockquote-footer-font-style: normal; @base-blockquote-border-mode: -left; @base-blockquote-border-width: 2px; @base-blockquote-border: @global-primary-background; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @inverse-base-color: fade(@global-inverse-color, 77%); @inverse-base-link-hover-color: @inverse-global-muted-color; @inverse-base-code-color: #D15F3C; @inverse-base-em-color: #D15F3C; @inverse-base-blockquote-border: @global-primary-background; @link-muted-hover-color: @global-primary-background; @link-text-hover-color: @global-primary-background; @inverse-link-muted-hover-color: @global-primary-background; @inverse-link-text-hover-color: @global-primary-background; @inverse-link-heading-hover-color: @global-primary-background; @heading-divider-border: @global-primary-background; @heading-bullet-border: @global-primary-background; @heading-line-border: @global-emphasis-color; @inverse-heading-divider-border: @inverse-global-emphasis-color; @inverse-heading-bullet-border: @inverse-global-emphasis-color; @inverse-heading-line-border: @inverse-global-emphasis-color; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-kojiro/images/divider-icon.svg"; @divider-small-border-width: 2px; @divider-small-border: @global-primary-background; @divider-vertical-border-width: 2px; @divider-vertical-border: @global-primary-background; @inverse-divider-icon-color: @global-primary-background; @inverse-divider-small-border: @global-primary-background; @inverse-divider-vertical-border: @global-primary-background; @inverse-list-striped-background: rgba(255, 255, 255, 0.05); @description-list-term-font-size: 18px; @table-header-cell-font-weight: 500; @table-caption-font-size: @global-font-size; @table-row-active-background: rgba(227, 161, 84, 0.12); @table-header-cell-text-transform: inherit; @inverse-table-header-cell-color: fade(@global-inverse-color, 85%); @icon-link-hover-color: @global-primary-background; @icon-button-background: @global-primary-background; @icon-button-color: @global-inverse-color; @icon-button-hover-color: @global-inverse-color; @icon-button-active-color: @global-inverse-color; @icon-button-border-width: 2px; @icon-button-hover-box-shadow: 0 0 0 5px fade(@icon-button-background, 30%); @icon-button-active-box-shadow: 0 0 0 3px fade(@icon-button-background, 30%); @inverse-icon-link-color: fade(@global-inverse-color, 95%); @inverse-icon-link-hover-color: @global-primary-background; @inverse-icon-link-active-color: fade(@global-inverse-color, 95%); @inverse-icon-button-background: @global-primary-background; @inverse-icon-button-color: @global-inverse-color; @inverse-icon-button-hover-background: darken(@global-primary-background, 5%); @inverse-icon-button-hover-color: fade(@global-inverse-color, 85%); @inverse-icon-button-active-background: darken(@global-primary-background, 10%); @inverse-icon-button-active-color: fade(@global-inverse-color, 95%); @form-range-track-height: 2px; @form-range-track-focus-background: @global-border; @form-range-thumb-background: @global-primary-background; @form-padding-horizontal: 0; @form-padding-vertical: 7px; @form-background: transparent; @form-disabled-background: transparent; @form-small-font-size: @global-font-size; @form-icon-color: @global-inverse-color; @form-multi-line-padding-horizontal: 12px; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-primary-background; @form-disabled-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-select-icon-color: rgba(255, 255, 255, 0.90); @inverse-form-radio-checked-background: @global-primary-background; @inverse-form-radio-checked-focus-background: @global-primary-background; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @global-primary-background; @button-padding-horizontal: 23px; @button-link-hover-color: @global-primary-background; @button-text-mode: border-bottom; @button-text-border-width: 2px; @button-text-hover-border: @global-primary-background; @button-font-family: @global-primary-font-family; @button-font-weight: @global-primary-font-weight; @button-text-transform: @global-primary-text-transform; @button-letter-spacing: @global-primary-letter-spacing; @button-font-style: @global-primary-font-style; @button-border-radius: 500px; @button-default-hover-box-shadow: 0 0 0 5px fade(@button-default-background, 95%); @button-default-active-box-shadow: 0 0 0 3px fade(@button-default-background, 95%); @button-primary-hover-box-shadow: 0 0 0 5px fade(@button-primary-background, 30%); @button-primary-active-box-shadow: 0 0 0 3px fade(@button-primary-background, 30%); @button-secondary-hover-box-shadow: 0 0 0 5px fade(@button-secondary-background, 20%); @button-secondary-active-box-shadow: 0 0 0 2px fade(@button-secondary-background, 20%); @button-danger-hover-box-shadow: 0 0 0 5px fade(@button-danger-background, 15%); @button-danger-active-box-shadow: 0 0 0 2px fade(@button-danger-background, 15%); @inverse-button-default-background: @global-muted-background; @inverse-button-default-hover-background: #DFDFDF; @inverse-button-primary-background: @global-primary-background; @inverse-button-primary-color: @inverse-global-emphasis-color; @inverse-button-primary-hover-color: @inverse-global-emphasis-color; @inverse-button-primary-active-color: @inverse-global-emphasis-color; @inverse-button-default-hover-box-shadow: 0 0 0 4px fade(@inverse-button-default-hover-background, 24%); @inverse-button-default-active-box-shadow: 0 0 0 3px fade(@inverse-button-default-hover-background, 24%); @inverse-button-primary-hover-box-shadow: 0 0 0 4px fade(@global-primary-background, 30%); @inverse-button-primary-active-box-shadow: 0 0 0 3px fade(@global-primary-background, 30%); @inverse-button-secondary-hover-box-shadow: 0 0 0 4px fade(@inverse-button-secondary-background, 24%); @inverse-button-secondary-active-box-shadow: 0 0 0 3px fade(@inverse-button-secondary-background, 24%); @progress-height: 7px; @progress-background: darken(@global-muted-background, 5%); @card-default-hover-background: @card-default-background; @card-primary-hover-background: @card-primary-background; @card-secondary-hover-background: @card-secondary-background; @card-hover-box-shadow: 0 0 0 6px darken(@global-muted-background, 3%); @card-default-hover-box-shadow: 0 0 0 6px darken(@card-default-background, 3%); @card-primary-hover-box-shadow: 0 0 0 6px darken(@card-primary-background, 5%); @card-secondary-hover-box-shadow: 0 0 0 6px darken(@card-secondary-background, 5%); @close-color: @global-color; @close-hover-color: @global-primary-background; @marker-background: @global-primary-background; @marker-hover-background: darken(@global-primary-background, 5%); @inverse-marker-background: @global-inverse-color; @inverse-marker-color: @global-secondary-background; @inverse-marker-hover-color: @global-secondary-background; @inverse-marker-hover-background: fade(@global-inverse-color, 80%); @totop-hover-color: @global-primary-background; @totop-active-color: @global-primary-background; @inverse-totop-hover-color: @global-primary-background; @inverse-totop-active-color: @global-primary-background; @alert-success-background: lighten(tint(@global-success-background, 30%), 22%); @alert-close-opacity: 0.8; @inverse-badge-background: @global-primary-background; @inverse-badge-color: @global-inverse-color; @label-font-weight: 500; @label-border-width: 2px; @overlay-primary-background: fade(@global-primary-background, 85%); @article-meta-font-size: @global-font-size; @comment-meta-font-size: @global-font-size; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-default-icon-padding: 12px; @search-navbar-padding-horizontal: 18px; @search-navbar-background: @global-muted-background; @search-navbar-focus-background: @global-muted-background; @search-medium-padding-horizontal: 0; @search-medium-font-size: 21px; @search-large-padding-horizontal: 0; @search-toggle-hover-color: @global-primary-background; @search-navbar-font-weight: 500; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-primary-background; @search-navbar-border-width: 2px; @search-navbar-focus-border: @global-primary-background; @search-medium-border-mode: -bottom; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-primary-background; @search-large-border-mode: -bottom; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-primary-background; @search-navbar-border-radius: 500px; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-toggle-color: rgba(255, 255, 255, 0.62); @inverse-search-toggle-hover-color: @global-primary-background; @inverse-search-default-border: rgba(229, 229, 229, 0.46); @inverse-search-default-focus-border: @global-primary-background; @inverse-search-navbar-focus-border: darken(@global-primary-background, 5%); @inverse-search-medium-border: rgba(229, 229, 229, 0.46); @inverse-search-medium-focus-border: @global-primary-background; @inverse-search-large-border: rgba(229, 229, 229, 0.46); @inverse-search-large-focus-border: @global-primary-background; @accordion-item-border-width: 1px; @accordion-item-border: @global-border; @dropdown-padding: 40px; @dropdown-background: @global-secondary-background; @dropdown-color-mode: light; @dropdown-nav-item-color: @global-inverse-color; @dropdown-nav-item-hover-color: @global-primary-background; @dropdown-nav-header-color: @global-inverse-color; @dropdown-nav-sublist-item-color: @global-inverse-color; @dropdown-nav-sublist-item-hover-color: @global-primary-background; @dropdown-nav-font-size: 18px; @dropdown-nav-font-weight: 500; @dropbar-background: @global-secondary-background; @dropbar-color-mode: light; @tooltip-background: @global-primary-background; @nav-header-font-size: @global-font-size; @nav-header-text-transform: inherit; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-default-sublist-item-hover-color: @global-primary-background; @nav-default-sublist-item-active-color: @global-primary-background; @nav-primary-font-size: @global-xxlarge-font-size; @nav-primary-item-color: @global-color; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-secondary-item-color: @global-color; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-sublist-item-hover-color: @global-primary-background; @nav-primary-subtitle-color: @global-muted-color; @nav-secondary-font-weight: 500; @inverse-nav-default-item-color: fade(@global-inverse-color, 90%); @inverse-nav-default-item-hover-color: @global-primary-background; @inverse-nav-default-item-active-color: @global-primary-background; @inverse-nav-default-sublist-item-hover-color: @global-primary-background; @inverse-nav-default-sublist-item-active-color: @global-primary-background; @inverse-nav-primary-item-color: fade(@global-inverse-color, 90%); @inverse-nav-primary-item-hover-color: @global-primary-background; @inverse-nav-primary-item-active-color: @global-primary-background; @inverse-nav-primary-sublist-item-hover-color: @global-primary-background; @inverse-nav-primary-sublist-item-active-color: fade(@global-inverse-color, 90%); @inverse-nav-secondary-item-hover-color: @global-primary-background; @inverse-nav-secondary-item-active-color: @global-primary-background; @inverse-nav-secondary-subtitle-hover-color: @global-primary-background; @inverse-nav-secondary-sublist-item-hover-color: @global-primary-background; @navbar-background: @global-background; @navbar-nav-item-height: 110px; @navbar-nav-item-color: @global-color; @navbar-nav-item-font-size: 18px; @navbar-nav-item-hover-color: @global-primary-background; @navbar-nav-item-active-color: @global-color; @navbar-toggle-color: @global-color; @navbar-subtitle-font-size: @global-font-size; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 40px; @navbar-dropdown-background: @global-secondary-background; @navbar-dropdown-color: @global-inverse-color; @navbar-dropdown-color-mode: light; @navbar-dropdown-nav-item-color: @global-inverse-color; @navbar-dropdown-nav-item-hover-color: @global-primary-background; @navbar-dropdown-nav-item-active-color: @global-primary-background; @navbar-dropdown-nav-header-color: @global-inverse-color; @navbar-dropdown-nav-divider-border: rgba(250, 250, 250, 0.2); @navbar-dropdown-nav-sublist-item-color: @global-inverse-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-primary-background; @navbar-dropdown-nav-sublist-item-active-color: @global-primary-background; @navbar-padding-top: 5px; @navbar-padding-bottom: @navbar-padding-top; @navbar-padding-top-m: 15px; @navbar-padding-bottom-m: @navbar-padding-top-m; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-margin-vertical: 30px; @navbar-nav-item-line-height: 0; @navbar-nav-item-line-background: @global-primary-background; @navbar-nav-item-line-border-radius: 2px; @navbar-nav-item-line-hover-height: 2px; @navbar-nav-item-line-onclick-height: 2px; @navbar-nav-item-line-active-height: 2px; @navbar-nav-item-font-weight: 500; @navbar-primary-nav-item-hover-color: @global-primary-background; @inverse-navbar-nav-item-color: fade(@global-inverse-color, 84%); @inverse-navbar-nav-item-active-color: @global-inverse-color; @inverse-navbar-nav-item-line-hover-background: @global-primary-background; @inverse-navbar-nav-item-line-onclick-background: @global-primary-background; @inverse-navbar-nav-item-line-active-background: @global-primary-background; @subnav-item-color: @global-color; @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; @subnav-divider-margin-horizontal: 25px; @subnav-pill-item-padding-vertical: 7px; @subnav-pill-item-padding-horizontal: 20px; @subnav-pill-item-onclick-color: @global-primary-background; @subnav-item-font-weight: 500; @subnav-pill-item-border-radius: 500px; @inverse-subnav-pill-item-active-color: rgb(194, 127, 44); @breadcrumb-item-font-size: @global-font-size; @breadcrumb-item-color: @global-color; @breadcrumb-item-hover-color: @global-primary-background; @breadcrumb-divider: "|"; @breadcrumb-item-font-weight: 500; @breadcrumb-item-disabled-color: @global-muted-color; @inverse-breadcrumb-item-color: fade(@global-inverse-color, 84%); @inverse-breadcrumb-item-active-color: fade(@global-inverse-color, 84%); @inverse-breadcrumb-item-disabled-color: @inverse-global-muted-color; @pagination-item-color: @global-color; @pagination-item-hover-color: @global-primary-background; @pagination-item-active-color: @global-primary-background; @pagination-item-font-weight: 500; @inverse-pagination-item-color: fade(@global-inverse-color, 85%); @inverse-pagination-item-hover-color: @global-primary-background; @inverse-pagination-item-active-color: @global-primary-background; @tab-item-hover-color: @global-primary-background; @tab-item-font-weight: 500; @inverse-tab-item-color: fade(@global-inverse-color, 84%); @inverse-tab-item-hover-color: @global-primary-background; @inverse-tab-item-active-border: @global-primary-background; @slidenav-color: @global-inverse-color; @slidenav-hover-color: @global-inverse-color; @slidenav-active-color: @global-inverse-color; @slidenav-background: @global-secondary-background; @slidenav-hover-background: darken(@global-secondary-background,10%); @slidenav-active-background: darken(@global-secondary-background,15%); @inverse-slidenav-color: @global-emphasis-color; @inverse-slidenav-hover-color: @global-emphasis-color; @inverse-slidenav-active-color: @global-emphasis-color; @inverse-slidenav-background: @global-inverse-color; @inverse-slidenav-hover-background: fade(@global-inverse-color, 80%); @inverse-slidenav-active-background: fade(@global-inverse-color, 70%); @dotnav-item-background: transparent; @dotnav-item-hover-background: @global-primary-background; @dotnav-item-onclick-background: @global-primary-background; @dotnav-item-active-background: @global-primary-background; @dotnav-item-border-width: @global-border-width; @dotnav-item-border: @global-primary-background; @dotnav-item-hover-box-shadow: 0 0 0 3px fade(@dotnav-item-border, 30%); @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-hover-background: @inverse-global-muted-color; @inverse-dotnav-item-onclick-background: @global-inverse-color; @inverse-dotnav-item-active-background: @global-inverse-color; @inverse-dotnav-item-border: @global-inverse-color; @iconnav-item-hover-color: @global-primary-background; @inverse-iconnav-item-color: fade(@global-inverse-color, 90%); @inverse-iconnav-item-hover-color: @global-primary-background; @inverse-iconnav-item-active-color: @global-inverse-color; @text-lead-font-size: @global-medium-font-size; @text-meta-font-size: @global-font-size; @text-small-font-size: @global-font-size; @text-large-font-size: 21px; @text-lead-font-weight: 500; @text-meta-font-weight: 400; @inverse-text-primary-color: @global-primary-background; @inverse-text-secondary-color: lighten(@global-secondary-background, 15%);assets/uikit-themes/master-kojiro/icons/slidenav-next-large.svg000064400000000541151666572400020765 0ustar00<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"> <path d="m24.36,16.43c-1.49,1.3-2.98,2.59-4.5,3.91.34.38.66.76,1.02,1.17,2.27-1.97,4.52-3.93,6.82-5.92-2.31-2.01-4.59-4-6.92-6.03-.34.39-.68.77-1.03,1.17,1.55,1.35,3.08,2.68,4.66,4.06-7.36,0-14.64,0-21.94,0v1.55c7.27,0,14.56,0,21.84,0,.01.03.02.07.04.1Z" /> </svg> assets/uikit-themes/master-kojiro/icons/slidenav-next.svg000064400000000542151666572400017676 0ustar00<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"> <path d="m24.18,16.41c-1.48,1.3-2.96,2.6-4.46,3.92.33.38.66.76,1.02,1.17,2.25-1.98,4.48-3.94,6.76-5.95-2.28-2.02-4.55-4.01-6.86-6.05-.34.39-.67.77-1.02,1.17,1.54,1.35,3.05,2.69,4.62,4.08-7.3,0-14.5,0-21.74,0v1.56c7.21,0,14.43,0,21.65,0,.01.03.02.07.04.1Z" /> </svg> assets/uikit-themes/master-kojiro/icons/slidenav-previous.svg000064400000000543151666572400020575 0ustar00<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"> <path d="m5.82,15.41c1.48,1.3,2.96,2.6,4.46,3.92-.33.38-.66.76-1.02,1.17-2.25-1.98-4.48-3.94-6.76-5.95,2.28-2.02,4.55-4.01,6.86-6.05.34.39.67.77,1.02,1.17-1.54,1.35-3.05,2.69-4.62,4.08,7.3,0,14.5,0,21.74,0v1.56c-7.21,0-14.43,0-21.65,0-.01.03-.02.07-.04.1Z" /> </svg> assets/uikit-themes/master-kojiro/icons/slidenav-previous-large.svg000064400000000542151666572410021665 0ustar00<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"> <path d="m5.83,15.43c1.49,1.3,2.98,2.59,4.5,3.91-.34.38-.66.76-1.02,1.17-2.27-1.97-4.52-3.93-6.82-5.92,2.31-2.01,4.59-4,6.92-6.03.34.39.68.77,1.03,1.17-1.55,1.35-3.08,2.68-4.66,4.06,7.36,0,14.64,0,21.94,0v1.55c-7.27,0-14.56,0-21.84,0-.01.03-.02.07-.04.1Z" /> </svg> assets/uikit-themes/master-kojiro/styles/white-red.less000064400000003647151666572410017376 0ustar00// // Global // @global-link-color: #CC5134; @global-muted-color: #B4ADA7; @global-link-hover-color: #CC5134; @global-danger-background: #AA3838; @global-muted-background: #FBF4EC; @global-primary-background: #CC5134; @global-secondary-background: #3A4F38; // // Background // @background-muted-background: #FFFBF8; // // Base // @base-link-hover-color: #AD422A; @base-ins-background: #FFD5C2; @base-mark-background: #FFD5C2; // // Button // @button-default-background: #FBF4EC; @button-default-hover-background: #FDF5EE; @button-disabled-background: #FBF4EC; // // Card // @card-hover-background: #FFFBF8; @card-hover-box-shadow: 0 0 0 6px #FAF4ED; @card-default-background: #FBF4EC; @card-default-hover-box-shadow: 0 0 0 6px #FAF4ED; // // Dropdown // @dropdown-nav-item-hover-color: #F34E26; @dropdown-nav-header-color: #FFFFFF; @dropdown-nav-sublist-item-hover-color: #F34E26; // // Nav // @nav-default-item-hover-color: #F34E26; @nav-default-item-active-color: #F34E26; @nav-default-sublist-item-hover-color: #F34E26; @nav-default-sublist-item-active-color: #F34E26; @nav-primary-item-hover-color: #F34E26; @nav-primary-item-active-color: #F34E26; @nav-primary-sublist-item-hover-color: #F34E26; @nav-secondary-item-hover-color: #F34E26; @nav-secondary-item-active-color: #F34E26; @nav-secondary-subtitle-hover-color: #F34E26; @nav-secondary-sublist-item-hover-color: #F34E26; // // Navbar // @navbar-primary-nav-item-hover-color: #F34E26; @navbar-dropdown-nav-item-hover-color: #F34E26; @navbar-dropdown-nav-item-active-color: #F34E26; @navbar-dropdown-nav-sublist-item-hover-color: #F34E26; @navbar-dropdown-nav-sublist-item-active-color: #F34E26; // // Section // @section-muted-background: #FBF4EC; // // Table // @table-row-active-background: #FFFBF8; assets/uikit-themes/master-kojiro/styles/white-green.less000064400000002076151666572410017717 0ustar00// // Global // @global-link-color: #9FB083; @global-link-hover-color: #7C8A67; @global-muted-background: #F0F2EE; @global-primary-background: #9FB083; @global-secondary-background: #364D4C; @global-success-background: #92C898; // // Alert // @alert-primary-background: #F9FBF1; @alert-primary-color: #89A154; @alert-success-background: #F9FEF9; @alert-success-color: #7DBA84; @alert-warning-background: #FEFBF4; @alert-danger-background: #FFF6F3; // // Background // @background-muted-background: #F0F2EE; // // Base // @base-link-color: #809A58; @base-link-hover-color: #72805D; @base-ins-background: #E5F2CF; @base-mark-background: #E5F2CF; // // Button // @button-default-background: #F0F2EE; @button-disabled-background: #F0F2EE; // // Card // @card-default-background: #F0F2EE; // // Dropdown // @dropdown-color: #FFFFFF; @dropdown-nav-header-color: #FFFFFF; @dropdown-nav-divider-border: #F0F2EE; // // Section // @section-muted-background: #F0F2EE; // // Table // @table-row-active-background: #EDF1E9; assets/uikit-themes/master-kojiro/styles/white-yellow.less000064400000000776151666572410020137 0ustar00// // Global // @global-link-color: #E3B844; @global-link-hover-color: #C8A43A; @global-primary-background: #E3B844; @global-secondary-background: #22404F; @global-warning-background: #E59643; // // Base // @internal-base-body-mode: overlay; @internal-base-body-overlay-image: "../../master-kojiro/images/styles/white-yellow/base-body-overlay.png"; // // Dropdown // @dropdown-nav-header-color: #FFFFFF; // // Table // @table-row-active-background: rgba(251, 238, 193, 0.25); assets/uikit-themes/master-kojiro/styles/white-darkred.less000064400000001054151666572410020226 0ustar00// // Global // @global-link-color: #BE3D2C; @global-link-hover-color: #9D3325; @global-primary-background: #BE3D2C; @global-secondary-background: #2B2B2B; // // Base // @base-ins-background: #EA6452; @base-ins-color: #FFFFFF; @base-mark-background: #EA6452; @base-mark-color: #FFFFFF; // // Dropdown // @dropdown-nav-item-hover-color: #E03F2D; @dropdown-nav-header-color: #FFFFFF; @dropdown-nav-sublist-item-hover-color: #E03F2D; // // Table // @table-row-active-background: rgba(165, 52, 11, 0.13); assets/uikit-themes/master-kojiro/styles/dark-red.less000064400000017407151666572410017176 0ustar00// // Global // @global-color: #F1F1F1; @global-emphasis-color: #F6F6F6; @global-inverse-color: #222222; @global-link-color: #B53329; @global-link-hover-color: #701108; @global-background: #222222; @global-muted-background: #191919; @global-primary-background: #8C2018; @global-secondary-background: #C6AB84; @global-border: rgba(255, 255, 255, 0.06); // // Theme // @theme-page-container-color-mode: light; // // Alert // @alert-background: #191919; @alert-color: #FFFFFF; @alert-primary-background: #8C2018; @alert-primary-color: #FFFFFF; @alert-success-background: #80B485; @alert-success-color: #FFFFFF; @alert-warning-background: #E5BA43; @alert-warning-color: #FFFFFF; @alert-danger-background: #D15F3C; @alert-danger-color: #FFFFFF; // // Background // @background-muted-background: #191919; // // Badge // @badge-color: #FFFFFF; // // Base // @base-link-color: #E63C2F; @base-ins-background: #882D25; @base-ins-color: #F7F7F7; @base-mark-background: #882D25; @base-mark-color: #F7F7F7; @base-pre-background: #191919; @base-pre-border: #2D2D2D; @base-selection-color: #FFFFFF; // // Button // @button-default-background: #191919; @button-primary-color: #FFFFFF; @button-primary-hover-color: #FFFFFF; @button-primary-active-color: #FFFFFF; @button-secondary-color: #FFFFFF; @button-secondary-hover-color: #FFFFFF; @button-secondary-active-color: #FFFFFF; @button-danger-color: #FFFFFF; @button-danger-hover-color: #FFFFFF; @button-danger-active-color: #FFFFFF; @button-disabled-background: #191919; // // Card // @card-badge-color: #FFFFFF; @card-hover-background: #191919; @card-hover-box-shadow: 0 0 0 6px #181818; @card-default-background: #191919; @card-default-color-mode: light; @card-default-hover-box-shadow: 0 0 0 6px #181818; @card-primary-color: #FFFFFF; @card-primary-color-mode: light; @card-secondary-color: #FFFFFF; @card-secondary-color-mode: light; // // Divider // @divider-icon-line-border: @global-border; // // Dropbar // @dropbar-color-mode: light; // // Dropdown // @dropdown-nav-item-color: #FFFFFF; @dropdown-nav-item-hover-color: #E63C2F; @dropdown-nav-subtitle-color: #FFFFFF; @dropdown-nav-sublist-item-color: #FFFFFF; @dropdown-nav-sublist-item-hover-color: #E63C2F; // // Form // @form-range-track-background: rgba(255, 255, 255, 0.27); @form-radio-background: rgba(255, 255, 255, 0.08); @form-radio-checked-focus-background: #A7271D; @form-radio-checked-background: #A7271D; // // Icon // @icon-button-color: #FFFFFF; @icon-button-hover-color: #FFFFFF; @icon-button-active-color: #FFFFFF; // // Inverse // @inverse-global-color-mode: dark; @inverse-badge-color: #FFFFFF; @inverse-base-blockquote-border: #BC2D21; @inverse-base-link-color: #E63C2F; @inverse-base-link-hover-color: #B22F25; @inverse-button-default-background: #F1F1F1; @inverse-button-default-color: #222222; @inverse-button-default-hover-color: #222222; @inverse-button-default-active-color: #222222; @inverse-button-primary-color: #FFFFFF; @inverse-button-primary-hover-color: #FFFFFF; @inverse-button-primary-active-color: #FFFFFF; @inverse-button-secondary-color: #FFFFFF; @inverse-dotnav-item-border: #000000; @inverse-dotnav-item-hover-background: rgba(34, 34, 34, 0.81); @inverse-dotnav-item-hover-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.17); @inverse-icon-button-color: #FFFFFF; @inverse-marker-color: #FFFFFF; @inverse-marker-hover-color: #FFFFFF; @inverse-subnav-pill-item-active-color: #FFFFFF; @inverse-text-lead-color: #000000; // // Label // @label-color: #FFFFFF; @label-success-color: #FFFFFF; @label-warning-color: #FFFFFF; @label-danger-color: #FFFFFF; // // List // @list-striped-background: rgba(25, 25, 25, 0.4); // // Marker // @marker-background: #A6281D; @marker-color: #FFFFFF; @marker-hover-background: #902119; @marker-hover-color: #FFFFFF; // // Nav // @nav-default-item-hover-color: #CF352A; @nav-default-item-active-color: #CF352A; @nav-default-sublist-item-color: #FFFFFF; @nav-default-sublist-item-hover-color: #CF352A; @nav-default-sublist-item-active-color: #CF352A; @nav-primary-item-hover-color: #CF352A; @nav-primary-item-active-color: #CF352A; @nav-primary-subtitle-color: #FFFFFF; @nav-primary-sublist-item-color: #FFFFFF; @nav-primary-sublist-item-hover-color: #CF352A; @nav-primary-sublist-item-active-color: #CF352A; @nav-secondary-item-hover-color: #CF352A; @nav-secondary-item-active-color: #CF352A; @nav-secondary-subtitle-color: #FFFFFF; @nav-secondary-subtitle-hover-color: #CF352A; @nav-secondary-sublist-item-color: #FFFFFF; @nav-secondary-sublist-item-hover-color: #CF352A; // // Navbar // @navbar-color-mode: light; @navbar-nav-item-color: #FFFFFF; @navbar-nav-item-hover-color: #CF352A; @navbar-nav-item-active-color: #FFFFFF; @navbar-nav-item-line-background: #CF352A; @navbar-nav-item-line-hover-background: #CF352A; @navbar-nav-item-line-onclick-background: #CF352A; @navbar-nav-item-line-active-background: #CF352A; @navbar-item-color: #FFFFFF; @navbar-toggle-color: #FFFFFF; @navbar-toggle-hover-color: #FFFFFF; @navbar-primary-nav-item-hover-color: #CF352A; @navbar-dropdown-color: #FFFFFF; @navbar-dropdown-color-mode: light; @navbar-dropdown-nav-item-color: #FFFFFF; @navbar-dropdown-nav-item-hover-color: #CF352A; @navbar-dropdown-nav-item-active-color: #CF352A; @navbar-dropdown-nav-header-color: #FFFFFF; @navbar-dropdown-nav-sublist-item-color: #FFFFFF; @navbar-dropdown-nav-sublist-item-hover-color: #CF352A; @navbar-dropdown-nav-sublist-item-active-color: #CF352A; // // Notification // @notification-message-background: #191919; @notification-message-primary-color: #FFFFFF; @notification-message-success-color: #FFFFFF; @notification-message-warning-color: #FFFFFF; @notification-message-danger-color: #FFFFFF; @notification-message-danger-color-mode: light; // // Offcanvas // @offcanvas-overlay-background: rgba(18, 17, 17, 0.4); // // Overlay // @overlay-default-color-mode: light; @overlay-primary-color-mode: light; // // Progress // @progress-background: rgba(255, 255, 255, 0.15); // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-muted-background: #191919; @section-primary-color-mode: light; @section-secondary-color-mode: light; // // Slidenav // @slidenav-color: #FFFFFF; @slidenav-hover-color: #FFFFFF; @slidenav-active-color: #FFFFFF; // // Subnav // @subnav-item-hover-color: #CB2E22; @subnav-item-active-color: #CB2E22; @subnav-pill-item-hover-background: #1A1A1A; @subnav-pill-item-active-color: #FFFFFF; // // Tab // @tab-item-color: #FFFFFF; // // Table // @table-row-active-background: rgba(249, 34, 0, 0.12); // // Text // @text-primary-color: #BC2C22; // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-default-hover-background: #191919; @tile-muted-background: #191919; @tile-primary-color-mode: light; @tile-secondary-color-mode: light; // // Tooltip // @tooltip-color: #FFFFFF; assets/uikit-themes/master-nioh-studio/icons/marker.svg000064400000000212151666572410017336 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <circle fill="#000" cx="5" cy="5" r="3" /> </svg> assets/uikit-themes/master-nioh-studio/icons/slidenav-next.svg000064400000000276151666572410020650 0ustar00<svg width="18" height="16" viewBox="0 0 18 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="17.41,8 9.71,15.71 8.29,14.29 13.59,9 0,9 0,7 13.59,7 8.29,1.71 9.71,0.29" /> </svg> assets/uikit-themes/master-nioh-studio/icons/slidenav-next-large.svg000064400000000276151666572410021740 0ustar00<svg width="18" height="16" viewBox="0 0 18 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="17.41,8 9.71,15.71 8.29,14.29 13.59,9 0,9 0,7 13.59,7 8.29,1.71 9.71,0.29" /> </svg> assets/uikit-themes/master-nioh-studio/icons/slidenav-previous.svg000064400000000275151666572410021545 0ustar00<svg width="18" height="16" viewBox="0 0 18 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="18,9 4.41,9 9.71,14.29 8.29,15.71 0.59,8 8.29,0.29 9.71,1.71 4.41,7 18,7" /> </svg> assets/uikit-themes/master-nioh-studio/icons/nav-parent-icon-large.svg000064400000000260151666572410022151 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-nioh-studio/icons/pagination-next.svg000064400000000373151666572410021172 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5" /> <line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5" /> </svg> assets/uikit-themes/master-nioh-studio/icons/slidenav-previous-large.svg000064400000000275151666572410022635 0ustar00<svg width="18" height="16" viewBox="0 0 18 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="18,9 4.41,9 9.71,14.29 8.29,15.71 0.59,8 8.29,0.29 9.71,1.71 4.41,7 18,7" /> </svg> assets/uikit-themes/master-nioh-studio/icons/totop.svg000064400000000260151666572410017225 0ustar00<svg width="16" height="18" viewBox="0 0 16 18" xmlns="http://www.w3.org/2000/svg"> <polygon points="15.7,7.9 14.3,9.3 9,4 9,17.5 7,17.5 7,4 1.7,9.3 0.3,7.9 8,0" /> </svg> assets/uikit-themes/master-nioh-studio/icons/pagination-previous.svg000064400000000372151666572410022067 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5" /> <line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5" /> </svg> assets/uikit-themes/master-nioh-studio/styles/white-pink.less000064400000001016151666572410020516 0ustar00// // Global // @global-link-color: #fd5a89; @global-link-hover-color: #2e2226; @global-danger-background: #fd675a; @global-muted-background: #fafafa; @global-primary-background: #fd5a89; @global-secondary-background: #393d46; @global-success-background: #49d9a0; @global-warning-background: #fdc85a; // // Alert // @alert-background: @global-muted-background; @alert-primary-background: rgba(253, 90, 137, 0.07); // // Comment // @comment-primary-background: @global-muted-background; assets/uikit-themes/master-nioh-studio/styles/black-blue.less000064400000014060151666572410020443 0ustar00// // Global // @global-color: rgba(255, 255, 255, 0.7); @global-emphasis-color: #ffffff; @global-muted-color: rgba(255, 255, 255, 0.55); @global-inverse-color: #181818; @global-link-color: #ffffff; @global-link-hover-color: rgba(255, 255, 255, 0.7); @global-background: #181818; @global-muted-background: rgba(243, 243, 243, 0.04); @global-primary-background: #009acc; @global-secondary-background: #1d1f20; @global-success-background: #49D981; @global-warning-background: #F1BC54; @global-border: rgba(229, 229, 229, 0.15); // // Theme // @theme-page-container-color-mode: light; @theme-box-decoration-default-border: lighten(@global-muted-background, 10%); @theme-box-decoration-secondary-border: lighten(@global-secondary-background, 8%); @inverse-theme-box-decoration-default-border: fadein(@inverse-global-muted-background, 24%); // // Alert // @alert-primary-background: #364a50; // // Badge // @badge-color: @global-emphasis-color; // // Base // @base-ins-background: rgba(255, 255, 221, 0.12); @base-mark-background: rgba(255, 236, 132, 0.14); @base-hr-border: #ffffff; // // Button // @button-default-hover-border: @global-emphasis-color; @button-default-active-border: @global-emphasis-color; @button-primary-color: @global-link-color; @button-primary-hover-background: @global-emphasis-color; @button-primary-hover-color: @global-primary-background; @button-primary-active-background: @global-emphasis-color; @button-primary-active-color: @global-primary-background; @button-secondary-background: @global-emphasis-color; @button-secondary-color: @global-primary-background; @button-secondary-hover-color: @global-link-color; @button-secondary-active-background: @global-primary-background; @button-secondary-active-color: @global-link-color; @button-danger-color: @global-emphasis-color; @button-danger-hover-color: @button-danger-color; @button-danger-active-color: @button-danger-color; // // Card // @card-badge-color: @global-emphasis-color; @card-default-color-mode: light; @card-default-border: #313131; @card-primary-color-mode: light; @card-primary-hover-border: #313131; @card-primary-title-color: @global-emphasis-color; @card-secondary-color: #acacac; @card-secondary-color-mode: light; @card-secondary-title-color: @global-link-color; // // Divider // @divider-small-border: #e5e5e5; // // Dropbar // @dropbar-color-mode: light; @dropbar-top-box-shadow: 0 6px 5px -3px rgba(0, 0, 0, 0.3); @dropbar-bottom-box-shadow: 0 -6px 5px -3px rgba(0, 0, 0, 0.3); @dropbar-left-box-shadow: 6px 0 5px -3px rgba(0, 0, 0, 0.3); @dropbar-right-box-shadow: -6px 0 5px -3px rgba(0, 0, 0, 0.3); // // Dropdown // @dropdown-color-mode: light; // // Form Range // @form-range-thumb-border: @global-emphasis-color; // // Form // @form-radio-border: lighten(@global-border, 2%); // // Heading // @heading-divider-border: @global-emphasis-color; @heading-bullet-border: @global-emphasis-color; @heading-line-border: @global-emphasis-color; // // Icon // @icon-button-hover-color: @global-emphasis-color; // // Iconnav // @iconnav-item-color: @global-color; @iconnav-item-hover-color: @global-emphasis-color; @iconnav-item-active-color: @global-emphasis-color; // // Inverse // @inverse-global-color-mode: dark; @inverse-marker-background: #181818; @inverse-marker-hover-background: #181818; @inverse-marker-hover-color: #fff; // // Label // @label-color: @global-emphasis-color; @label-success-color: @global-emphasis-color; @label-warning-color: @global-emphasis-color; @label-danger-color: @global-emphasis-color; // // Marker // @marker-background: @global-emphasis-color; @marker-color: @global-emphasis-color; @marker-hover-color: @global-emphasis-color; // // Nav // @nav-default-item-hover-color: @global-emphasis-color; @nav-default-item-active-color: @nav-default-item-hover-color; @nav-default-sublist-item-hover-color: @nav-default-item-hover-color; @nav-primary-item-hover-color: @global-emphasis-color; @nav-primary-item-active-color: @nav-primary-item-hover-color; @nav-primary-sublist-item-hover-color: @nav-primary-item-hover-color; // // Navbar // @navbar-color-mode: light; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-nav-item-active-color: @navbar-nav-item-hover-color; @navbar-toggle-hover-color: @global-emphasis-color; @navbar-dropdown-color-mode: light; @navbar-dropdown-border: #303436; // // Notification // @notification-message-background: lighten(@global-background, 5%); // // Overlay // @overlay-default-color-mode: light; // // Subnav // @subnav-pill-item-active-color: @global-emphasis-color; // // Search // @search-toggle-color: @global-color; @search-toggle-hover-color: @global-emphasis-color; @inverse-search-default-background: fade(@inverse-global-inverse-color, 10%); @inverse-search-default-focus-background: fade(@inverse-global-inverse-color, 20%); // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; @section-secondary-color-mode: light; // // Table // @table-row-active-background: @global-muted-background; // // Text // @text-secondary-color: desaturate(lighten(@global-primary-background, 15%), 60%); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: dark; // // Totop // @totop-color: @global-emphasis-color; // // WooCommerce // @woocommerce-rating-background-color: fade(@global-muted-background, 20%); @woocommerce-rating-color: @global-primary-background; @woocommerce-widget-link-hover-color: @global-color; assets/uikit-themes/master-nioh-studio/styles/white-turquoise.less000064400000001236151666572410021621 0ustar00// // Global // @global-color: #3e3e3e; @global-emphasis-color: #3f3f41; @global-link-color: #90cfc6; @global-muted-color: #a6b0af; @global-link-hover-color: #7cb8b0; @global-muted-background: #f3f9f9; @global-primary-background: #90cfc6; @global-success-background: #49d9aa; // // Alert // @alert-background: desaturate(lighten(@global-muted-background, 1%), 15%); @alert-primary-background: #eefbfa; // // Comment // @comment-primary-background: desaturate(lighten(@global-muted-background, 1%), 15%); // // Woocommerce // @woocommerce-rating-background-color: desaturate(darken(@global-muted-background, 10%), 20%); assets/uikit-themes/master-nioh-studio/styles/white-blue.less000064400000000656151666572410020515 0ustar00// // Global // @global-link-color: #09a5dc; @global-link-hover-color: #141717; @global-muted-background: #f7f7f7; @global-primary-background: #09a5dc; @global-secondary-background: #263a40; @global-success-background: #2cddb6; // // Alert // @alert-background: @global-muted-background; @alert-primary-background: #def3fb; // // Comment // @comment-primary-background: @global-muted-background; assets/uikit-themes/master-nioh-studio/styles/white-orange.less000064400000001066151666572410021035 0ustar00// // Global // @global-color: #3c3c3c; @global-link-color: #fe7902; @global-link-hover-color: #1b1816; @global-danger-background: #f13b37; @global-muted-background: #f7f7f7; @global-primary-background: #fe7902; @global-secondary-background: #303031; @global-success-background: #78f202; @global-warning-background: #ffcf03; // // Alert // @alert-background: @global-muted-background; @alert-primary-background: rgba(255, 228, 205, 0.45); // // Comment // @comment-primary-background: @global-muted-background; assets/uikit-themes/master-nioh-studio/_import.less000064400000043360151666572410016575 0ustar00@internal-fonts: 'Poppins:400,500,700'; @global-font-family: Poppins; @global-font-size: 16px; @global-line-height: 1.5; @global-2xlarge-font-size: 40px; @global-xlarge-font-size: 30px; @global-large-font-size: 24px; @global-medium-font-size: 19px; @global-small-font-size: 14px; @global-primary-font-family: Poppins; @global-primary-font-weight: 700; @global-primary-text-transform: uppercase; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: 400; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #3d3d3d; @global-emphasis-color: #404042; @global-muted-color: #999999; @global-link-color: #51cd98; @global-link-hover-color: #60aa8d; @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #f3f3f3; @global-primary-background: #51cd98; @global-secondary-background: #404042; @global-success-background: #4CBE8E; @global-warning-background: #ffd481; @global-danger-background: #fd6251; @global-border: #eaeaea; @global-border-width: 1px; @global-border-radius: 0; @global-small-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1); @global-medium-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.05); @global-large-box-shadow: 0 15px 55px rgba(0,0,0,0.08); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 40px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 42px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-h1-line-height: 1.1; @base-h2-line-height: 1.1; @base-h3-line-height: 1.1; @base-h4-line-height: 1.1; @base-h5-line-height: 1.1; @base-h6-line-height: 1.1; @base-hr-border-width: 4px; @base-hr-border: @global-secondary-background; @base-blockquote-font-size: 20px; @base-blockquote-font-style: normal; @base-blockquote-margin-vertical: 50px; @base-blockquote-footer-margin-top: 20px; @base-h4-font-weight: 700; @base-h4-text-transform: uppercase; @base-h5-text-transform: uppercase; @base-h6-text-transform: uppercase; @base-blockquote-font-weight: 500; @base-blockquote-text-transform: none; @base-blockquote-footer-text-transform: none; @inverse-base-link-hover-color: @inverse-global-muted-color; @heading-small-font-size-m: 50px; @heading-medium-font-size-l: 70px; @heading-large-font-size-l: 100px; @heading-divider-border-width: ~'calc(1px + 0.1em)'; @heading-divider-border: @global-emphasis-color; @heading-bullet-border: @global-muted-color; @heading-line-top: 80%; @heading-line-width: 180px; @heading-line-border-width: ~'calc(1.2px + 0.1em)'; @heading-line-border: @global-secondary-background; @heading-line-margin-horizontal: 0.4em; @inverse-heading-line-border: #ffffff; @divider-small-width: 180px; @divider-small-border-width: 4px; @divider-small-border: @global-secondary-background; @list-striped-padding-horizontal: 20px; @list-large-margin-top: 16px; @list-large-divider-margin-top: 16px; @list-large-striped-padding-vertical: 16px; @table-large-cell-padding-vertical: 34px; @icon-button-hover-background: @global-primary-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: @global-primary-background; @icon-button-active-color: fade(@icon-button-hover-color, 78%); @inverse-icon-button-hover-background: @inverse-global-primary-background; @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-background: @inverse-global-primary-background; @inverse-icon-button-active-color: fade(@inverse-global-inverse-color, 78%); @form-range-track-height: 2px; @form-range-track-background: @global-border; @form-range-track-focus-background: @form-range-thumb-border; @form-range-thumb-height: 12px; @form-range-thumb-background: @global-background; @form-range-thumb-border-width: 2px; @form-range-thumb-border: @global-secondary-background; @form-padding-horizontal: 4px; @form-padding-vertical: 7px; @form-background: fade(@global-background, 50%); @form-focus-background: fade(@global-background, 70%); @form-radio-background: fade(@global-background, 50%); @form-radio-focus-background: fade(@global-background, 70%); @form-multi-line-padding-horizontal: 12px; @form-label-font-size: @global-small-font-size; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-primary-background; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @form-focus-border; @form-radio-border-width: @global-border-width; @form-radio-border: darken(@global-border, 2%); @form-radio-focus-border: @global-primary-background; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-focus-color: @global-inverse-color; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @inverse-global-primary-background; @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: @inverse-global-primary-background; @button-line-height: @global-control-height; @button-padding-horizontal: 26px; @button-large-padding-horizontal: 32px; @button-default-background: rgba(255, 255, 255, 0); @button-default-color: @global-primary-background; @button-primary-hover-background: @global-secondary-background; @button-primary-active-background: @global-secondary-background; @button-secondary-hover-background: @global-primary-background; @button-link-hover-color: @global-primary-background; @button-text-mode: ~''; @button-text-icon-mode: arrow; @button-border-width: 2px; @button-default-border: @global-primary-background; @button-default-hover-border: @global-secondary-background; @button-default-active-border: @global-secondary-background; @container-max-width: 1300px; @container-small-max-width: 980px; @container-large-max-width: 1500px; @container-xlarge-max-width: 1700px; @card-body-padding-horizontal-l: 54px; @card-body-padding-vertical-l: 54px; @card-badge-height: 30px; @card-badge-padding-horizontal: 12px; @card-hover-background: rgba(248, 248, 248, 0); @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-primary-background: @global-background; @card-primary-color: @global-color; @card-primary-hover-background: @global-background; @card-primary-color-mode: dark; @card-badge-font-weight: 500; @card-badge-text-transform: uppercase; @card-hover-border-width: 4px; @card-hover-border: @global-primary-background; @card-default-border-width: 4px; @card-default-border: #f8f8f8; @card-default-hover-border: @global-primary-background; @card-primary-border-width: 4px; @card-primary-border: @global-primary-background; @card-primary-hover-border: @global-secondary-background; @marker-padding: 0; @marker-background: @global-background; @marker-border-width: 6px; @marker-border: @global-primary-background; @marker-hover-border: @global-secondary-background; @totop-color: @global-secondary-background; @totop-hover-color: @global-primary-background; @totop-active-color: @global-primary-background; @alert-background: lighten(@global-muted-background, 2%); @alert-success-background: fade(@global-success-background, 10%); @alert-warning-background: fade(@global-warning-background, 10%); @alert-danger-background: fade(@global-danger-background, 10%); @badge-size: 20px; @badge-font-weight: 500; @label-padding-vertical: 3px; @label-font-size: 13px; @label-font-weight: 500; @label-text-transform: uppercase; @overlay-default-background: @global-background; @overlay-primary-background: @global-secondary-background; @article-title-font-size: @article-title-font-size-m * 0.7; @article-meta-link-color: @global-primary-background; @article-meta-text-transform: none; @comment-primary-background: lighten(@global-muted-background, 2%); @search-color: @global-emphasis-color; @search-default-padding-horizontal: 0; @search-default-background: fade(@global-background, 50%); @search-default-focus-background: fade(@global-background, 70%); @search-default-icon-padding: 11px; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-primary-background; @search-navbar-icon-color: @global-emphasis-color; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-primary-background; @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: @search-navbar-border; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-border; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-border; @inverse-search-color: @inverse-global-emphasis-color; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-medium-background: @inverse-global-muted-background; @inverse-search-large-background: @inverse-global-muted-background; @inverse-search-navbar-icon-color: @global-inverse-color; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-border: @inverse-global-border; @inverse-search-navbar-focus-border: @inverse-global-border; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @inverse-global-border; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @inverse-global-border; @accordion-title-font-size: 22px; @accordion-title-hover-color: @global-primary-background; @accordion-item-border-width: 1px; @accordion-item-border: @global-border; @dropdown-padding: 20px; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 5px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 5px)'; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-primary-background; @dropdown-nav-subtitle-font-size: 12px; @dropdown-nav-sublist-item-hover-color: @global-primary-background; @dropdown-nav-font-weight: 500; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-border-width: 4px; @dropdown-border: @global-secondary-background; @dropbar-padding-top: 0; @dropbar-padding-bottom: 48px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 6px 5px -3px rgba(0, 0, 0, 0.05); @dropbar-bottom-box-shadow: 0 -6px 5px -3px rgba(0, 0, 0, 0.05); @dropbar-left-box-shadow: 14px 0 12px -14px rgba(0, 0, 0, 0.07); @dropbar-right-box-shadow: -14px 0 12px -14px rgba(0, 0, 0, 0.07); @offcanvas-bar-background: @global-primary-background; @offcanvas-overlay-background: fade(@global-background, 80%); @leader-color: @global-muted-color; @leader-letter-spacing: 2px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-default-subtitle-font-size: 12px; @nav-default-sublist-item-hover-color: @global-primary-background; @nav-primary-item-color: @global-color; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-secondary-font-size: @global-medium-font-size; @nav-secondary-line-height: 1.3; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-subtitle-active-color: @global-primary-background; @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-medium-font-size-l: 70px; @nav-large-font-size-l: 100px; @nav-dividers-margin-top: 8px; @nav-secondary-margin-top: 5px; @nav-default-subtitle-color: @global-muted-color; @nav-primary-font-weight: @global-secondary-font-weight; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-text-transform: none; @nav-secondary-font-family: @global-primary-font-family; @nav-secondary-font-weight: @global-primary-font-weight; @nav-secondary-text-transform: @global-primary-text-transform; @nav-secondary-letter-spacing: @global-primary-letter-spacing; @nav-secondary-subtitle-font-weight: normal; @nav-secondary-subtitle-text-transform: none; @nav-secondary-subtitle-line-height: 1.5; @inverse-nav-default-item-color: @inverse-global-color; @inverse-nav-default-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-default-sublist-item-color: @inverse-global-color; @inverse-nav-default-sublist-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-primary-item-color: @inverse-global-color; @inverse-nav-primary-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-primary-sublist-item-color: @inverse-global-color; @inverse-nav-primary-sublist-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-nav-item-color: @global-color; @navbar-nav-item-onclick-color: @global-color; @navbar-nav-item-active-color: @global-color; @navbar-toggle-color: @global-color; @navbar-toggle-hover-color: @global-primary-background; @navbar-subtitle-font-size: 12px; @navbar-dropdown-shift-margin: -(@navbar-dropdown-padding + @navbar-dropdown-border-width); @navbar-dropdown-width: 260px; @navbar-dropdown-padding: 20px; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -(@navbar-dropdown-large-padding + @navbar-dropdown-border-width); @navbar-dropdown-dropbar-padding-top: 31px; @navbar-dropdown-dropbar-padding-bottom: 48px; @navbar-dropdown-nav-item-color: @global-color; @navbar-dropdown-nav-item-hover-color: @global-primary-background; @navbar-dropdown-nav-item-active-color: @global-primary-background; @navbar-dropdown-nav-subtitle-font-size: 12px; @navbar-dropdown-nav-sublist-item-hover-color: @global-primary-background; @navbar-padding-top-m: 32px; @navbar-padding-bottom-m: 32px; @navbar-gap-m: 52px; @navbar-nav-gap-m: 52px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: 16px; @navbar-nav-item-line-height: 0; @navbar-nav-item-line-background: @global-primary-background; @navbar-nav-item-line-transition-duration: 0.2s; @navbar-nav-item-line-hover-height: 2px; @navbar-nav-item-line-onclick-height: 2px; @navbar-nav-item-line-active-height: 2px; @navbar-subtitle-color: @global-muted-color; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-dropdown-border-width: 4px; @navbar-dropdown-border: @global-secondary-background; @navbar-sticky-box-shadow: @global-small-box-shadow; @inverse-navbar-nav-item-color: @global-inverse-color; @inverse-navbar-nav-item-hover-color: @global-inverse-color; @inverse-navbar-nav-item-line-background: @global-inverse-color; @subnav-item-hover-color: @global-emphasis-color; @subnav-divider-margin-horizontal: 30px; @subnav-divider-border-height: 1.2em; @breadcrumb-item-hover-color: @global-emphasis-color; @breadcrumb-item-active-color: @global-emphasis-color; @breadcrumb-divider: "I"; @pagination-margin-horizontal: 20px; @pagination-item-padding-vertical: 8px; @pagination-item-padding-horizontal: 8px; @pagination-item-color: @global-color; @pagination-item-hover-color: @global-muted-color; @pagination-item-min-width: 39px; @pagination-item-font-size: 14px; @pagination-item-border-width: 2px; @pagination-item-active-border: @global-color; @tab-margin-horizontal: 0; @tab-item-padding-horizontal: 26px; @tab-item-padding-vertical: 10px; @tab-item-color: @global-color; @tab-item-text-transform: uppercase; @tab-item-border-width: 3px; @tab-item-hover-border: @global-primary-background; @slidenav-padding-vertical: 20px; @slidenav-padding-horizontal: 20px; @slidenav-color: @global-color; @slidenav-hover-color: @global-primary-background; @slidenav-active-color: @global-primary-background; @slidenav-large-padding-vertical: 32px; @slidenav-large-padding-horizontal: 32px; @slidenav-background: @global-background; @slidenav-hover-background: @global-background; @slidenav-active-background: @global-background; @inverse-slidenav-color: @inverse-global-inverse-color; @inverse-slidenav-hover-color: @global-primary-background; @inverse-slidenav-active-color: @global-primary-background; @dotnav-item-background: rgba(61, 61, 61, 0); @dotnav-item-hover-background: @global-color; @dotnav-item-onclick-background: @global-color; @dotnav-item-active-background: @global-color; @dotnav-item-border-width: 2px; @dotnav-item-border: @global-color; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-primary-background; @iconnav-item-active-color: @global-primary-background; @text-lead-font-size: 19px; @text-large-font-size: 20px; @text-meta-link-color: @global-primary-background; @text-lead-font-weight: @global-secondary-font-weight; @text-lead-text-transform: none; @logo-font-family: @global-primary-font-family; @logo-font-weight: @global-primary-font-weight; @logo-text-transform: @global-primary-text-transform; @inverse-global-inverse-color: @global-emphasis-color;assets/uikit-themes/master-sonic/icons/slidenav-previous-large.svg000064400000000262151666572410021502 0ustar00<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="10,1 1,10 10,19" /> </svg> assets/uikit-themes/master-sonic/icons/slidenav-next-large.svg000064400000000261151666572410020603 0ustar00<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="2,19 11,10 2,1" /> </svg> assets/uikit-themes/master-sonic/icons/slidenav-next.svg000064400000000255151666572410017516 0ustar00<svg width="8" height="12" viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="2,11 7,6 2,1" /> </svg> assets/uikit-themes/master-sonic/icons/slidenav-previous.svg000064400000000255151666572410020414 0ustar00<svg width="8" height="12" viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="6,1 1,6 6,11" /> </svg> assets/uikit-themes/master-sonic/styles/white-pink.less000064400000006012151666572410017370 0ustar00// // Global // @global-link-color: @global-primary-background; @global-link-hover-color: @global-secondary-background; @global-danger-background: #eb376a; @global-primary-background: #D84996; @global-secondary-background: #6B4483; // // Theme // @internal-theme-box-decoration-primary-border-gradient: linear-gradient(100deg, #C14AAC, #ED4882); @internal-theme-box-decoration-secondary-border-gradient: linear-gradient(100deg, #554389, #713B6A); @internal-theme-transition-border-border-gradient: linear-gradient(100deg, #C14AAC, #ED4882); // // Article // @article-meta-link-color: #111111; @article-meta-link-hover-color: #b6b6b6; // // Base // @base-em-color: @global-secondary-background; // // Button // @internal-button-primary-gradient: linear-gradient(100deg, #C14AAC, #ED4882); @internal-button-default-hover-gradient: linear-gradient(100deg, #C14AAC, #ED4882); @internal-button-primary-hover-gradient: linear-gradient(100deg, #c14ac0 0%, #ed489d); @internal-button-default-active-gradient: linear-gradient(100deg, #b43e9f, #eb3172); @internal-button-primary-active-gradient: linear-gradient(100deg, #ae4ac1 0%, #ed48b9); // // Card // @inverse-card-badge-color: @global-secondary-background; @internal-card-primary-gradient: linear-gradient(100deg, #C14AAC, #ED4882); @internal-card-secondary-gradient: linear-gradient(100deg, #554389, #713B6A); @internal-card-primary-hover-gradient: linear-gradient(100deg, #c555b1, #ee568c); @internal-card-secondary-hover-gradient: linear-gradient(100deg, #5b4893, #7b4073); @internal-card-badge-gradient: linear-gradient(100deg, #C14AAC, #ED4882); // // Divider // @internal-divider-small-border-gradient: linear-gradient(100deg, #C14AAC, #ED4882); // // Form // @form-danger-border: #eb376a; @form-blank-focus-border: #e7e7e7; @form-blank-focus-border-style: dashed; // // Icon // @internal-icon-button-hover-gradient: linear-gradient(135deg, #C14AAC, #ED4882); @internal-icon-button-active-gradient: linear-gradient(135deg, #b84ac1, #ed48ab); // // List // @internal-list-bullet-image: "../../../../uikit-themes/master-sonic/images/styles/white-pink/list-bullet.svg"; // // Navbar // @internal-navbar-nav-item-line-gradient: linear-gradient(100deg, #C14AAC, #ED4882); // // Progress // @internal-progress-bar-gradient: linear-gradient(45deg, #C14AAC, #ED4882); // // Section // @internal-section-primary-gradient: linear-gradient(135deg, #C14AAC, #ED4882); @internal-section-secondary-gradient: linear-gradient(135deg, #554389, #713B6A); // // Subnav // @internal-subnav-pill-item-active-gradient: linear-gradient(100deg, #C14AAC, #ED4882); // // Text // @internal-text-background-color-gradient: linear-gradient(45deg, #C14AAC, #ED4882); // // Tile // @tile-primary-background: #c14aac; @tile-secondary-background: #554389; @internal-tile-primary-gradient: linear-gradient(135deg, #C14AAC, #ED4882); @internal-tile-secondary-gradient: linear-gradient(135deg, #554389, #713B6A); assets/uikit-themes/master-sonic/styles/white-purple.less000064400000006167151666572410017751 0ustar00// // Global // @global-link-color: @global-primary-background; @global-primary-background: #8b8cf7; // // Theme // @internal-theme-box-decoration-primary-border-gradient: linear-gradient(135deg, #b791f8, #8f8cf7 50%, #5788ff); @internal-theme-box-decoration-secondary-border-gradient: linear-gradient(135deg, #3f405e, #323259); @internal-theme-transition-border-border-gradient: linear-gradient(135deg, #b791f8, #8f8cf7 50%, #5788ff); // // Article // @article-meta-link-color: #111111; @article-meta-link-hover-color: #b6b6b6; // // Button // @button-secondary-background: #40415f; @internal-button-primary-gradient: linear-gradient(100deg, #b791f8 0%, #8f8cf7 35%, #5788ff 100%); @internal-button-secondary-gradient: ~''; @internal-button-default-hover-gradient: linear-gradient(100deg, #5e5f84 0%, #323259 100%); @internal-button-primary-hover-gradient: linear-gradient(100deg, #5e5f84 0%, #323259 100%); @internal-button-secondary-hover-gradient: linear-gradient(100deg, #b791f8 0%, #8f8cf7 35%, #5788ff 100%); @internal-button-default-active-gradient: linear-gradient(100deg, #5e5f84 0%, #323259 100%); @internal-button-primary-active-gradient: linear-gradient(100deg, #5e5f84 0%, #323259 100%); @internal-button-secondary-active-gradient: linear-gradient(100deg, #b791f8 0%, #8f8cf7 35%, #5788ff 100%); // // Card // @card-secondary-background: #201f80; @internal-card-primary-gradient: linear-gradient(135deg, #b791f8, #8f8cf7 50%, #5788ff); @internal-card-secondary-gradient: linear-gradient(135deg, #3f405e, #323259); @internal-card-primary-hover-gradient: linear-gradient(135deg, #a987f1, #8386f0 50%, #4f88fa); @internal-card-secondary-hover-gradient: linear-gradient(135deg, #2f314e, #25254b); @internal-card-badge-gradient: linear-gradient(100deg, #b791f8 0%, #8f8cf7 35%, #5788ff 100%); // // Divider // @internal-divider-small-border-gradient: linear-gradient(90deg, #b791f8 0%, #8f8cf7 35%, #5788ff 100%); // // Icon // @icon-button-hover-border: rgba(139, 140, 247, 0); @icon-button-active-background: @global-primary-background; @internal-icon-button-hover-gradient: ~''; @internal-icon-button-active-gradient: ~''; // // List // @internal-list-bullet-image: "../../../../uikit-themes/master-sonic/images/styles/white-purple/list-bullet.svg"; // // Navbar // @navbar-nav-item-line-background: @global-primary-background; @internal-navbar-nav-item-line-gradient: ~''; // // Section // @internal-section-primary-gradient: linear-gradient(135deg, #b791f8 0%, #8f8cf7 60%, #5788ff 100%); @internal-section-secondary-gradient: linear-gradient(135deg, #3f405e 0%, #323259 100%); // // Subnav // @internal-subnav-pill-item-active-gradient: linear-gradient(100deg, #b791f8 0%, #8f8cf7 35%, #5788ff 100%); // // Text // @internal-text-background-color-gradient: linear-gradient(45deg, #b791f8 0%, #8f8cf7 35%, #5788ff 100%); // // Tile // @internal-tile-primary-gradient: linear-gradient(135deg, #b791f8 0%, #8f8cf7 60%, #5788ff 100%); @internal-tile-secondary-gradient: linear-gradient(135deg, #3f405e 0%, #323259 100%); assets/uikit-themes/master-sonic/styles/dark-turquoise.less000064400000020076151666572410020276 0ustar00// // Global // @global-color: rgba(255, 255, 255, 0.9); @global-emphasis-color: #ffffff; @global-inverse-color: @global-background; @global-link-color: @global-primary-background; @global-muted-color: rgba(255, 255, 255, 0.5); @global-link-hover-color: @global-secondary-background; @global-background: #2c2e2f; @global-danger-background: #e65171; @global-muted-background: #333739; @global-primary-background: #2ee2b6; @global-secondary-background: #8f6cd4; @global-success-background: #61d48c; @global-border: #404446; @global-large-box-shadow: 0 8px 50px 0 rgba(0, 0, 0, 0.3); @global-medium-box-shadow: 0 8px 50px -6px rgba(0, 0, 0, 0.3); @global-small-box-shadow: 0 8px 40px -6px rgba(0, 0, 0, 0.3); @global-xlarge-box-shadow: 0 8px 50px 0 rgba(0, 0, 0, 0.3); // // Theme // @theme-page-container-color-mode: light; @theme-box-decoration-default-border: lighten(@global-muted-background, 5%); @internal-theme-box-decoration-primary-border-gradient: linear-gradient(135deg, #10C3CB, #45FAA5); @internal-theme-box-decoration-secondary-border-gradient: linear-gradient(135deg, #7977e0, @global-secondary-background); @internal-theme-transition-border-border-gradient: linear-gradient(135deg, #10C3CB, #45FAA5); // // Alert // @alert-primary-background: #3a3e3f; @alert-primary-color: @global-primary-background; @alert-success-background: #3a3e3f; @alert-success-color: #72bcc8; @alert-warning-background: #3a3e3f; @alert-warning-color: #ffc15e; @alert-danger-background: #3a3e3f; @alert-danger-color: @global-danger-background; // // Base // @base-code-color: #d65aa4; @base-em-color: @global-secondary-background; @base-ins-background: rgba(46, 226, 182, 0.4); @base-ins-color: @global-emphasis-color; @base-mark-background: rgba(46, 226, 182, 0.4); @base-mark-color: @global-emphasis-color; // // Button // @button-default-border: @global-primary-background; @button-default-color: @global-primary-background; @button-secondary-color: @global-background; @button-secondary-hover-color: @global-background; @button-secondary-active-color: @global-background; @button-danger-color: @global-background; @button-danger-hover-color: @global-background; @button-danger-active-color: @global-background; @internal-button-primary-gradient: linear-gradient(100deg, #10C3CB, #45FAA5); @internal-button-default-hover-gradient: linear-gradient(100deg, #10C3CB, #45FAA5); @internal-button-primary-hover-gradient: linear-gradient(100deg, #10a4cb, #45fac3); @internal-button-default-active-gradient: linear-gradient(100deg, #10a4cb, #45fac3); @internal-button-primary-active-gradient: linear-gradient(100deg, #1094cb, #45fad2); // // Card // @card-default-color-mode: light; @card-default-hover-box-shadow: 0 8px 50px -6px rgba(7, 24, 28, 0.9); @card-primary-color: @global-emphasis-color; @card-primary-color-mode: dark; @card-primary-hover-box-shadow: 0 8px 50px 0 rgba(6, 24, 29, 0.9); @card-secondary-color: rgba(255, 255, 255, 0.9); @card-secondary-color-mode: dark; @card-secondary-hover-box-shadow: 0 8px 50px 0 rgba(5, 29, 34, 0.9); @internal-card-primary-gradient: linear-gradient(135deg, #10C3CB, #45FAA5); @internal-card-secondary-gradient: linear-gradient(135deg, #7977e0, @global-secondary-background); @internal-card-primary-hover-gradient: linear-gradient(135deg, #10cbc3, #45fa96); @internal-card-secondary-hover-gradient: linear-gradient(135deg, #807ee5, #6f6ee0); @internal-card-badge-gradient: linear-gradient(100deg, #10C3CB, #45FAA5); // // Dotnav // @dotnav-item-border: fade(@global-emphasis-color, 70%); // // Divider // @internal-divider-small-border-gradient: linear-gradient(90deg, #10C3CB, #45FAA5); // // Dropbar // @dropbar-color-mode: light; @dropbar-top-box-shadow: 0 30px 50px -40px rgba(7, 28, 23, 0.5); @dropbar-bottom-box-shadow: 0 -30px 50px -40px rgba(7, 28, 23, 0.5); @dropbar-left-box-shadow: 30px 0 50px -40px rgba(7, 28, 23, 0.5); @dropbar-right-box-shadow: -30px 0 50px -40px rgba(7, 28, 23, 0.5); // // Dropdown // @dropdown-color-mode: light; @dropdown-box-shadow: 0 8px 50px -6px rgba(7, 28, 23, 0.5); // // Form // @form-danger-border: #cf3d5e; // // Form Range // @form-range-track-background: @global-border; @form-range-track-focus-background: lighten(@global-border, 20%); // // Icon // @icon-link-hover-color: @global-primary-background; @internal-icon-button-hover-gradient: linear-gradient(135deg, #10C3CB, #45FAA5); @internal-icon-button-active-gradient: linear-gradient(135deg, #10a4cb, #45fac3); // // Inverse // @inverse-global-color-mode: dark; @inverse-nav-secondary-item-hover-background: fade(@inverse-global-muted-background, 5%); @inverse-navbar-item-color: rgba(255, 255, 255, 0.7); @inverse-navbar-toggle-color: rgba(255, 255, 255, 0.5); @inverse-navbar-toggle-hover-color: rgba(255, 255, 255, 0.7); @inverse-navbar-nav-item-color: rgba(255, 255, 255, 0.5); @inverse-navbar-nav-item-hover-color: rgba(255, 255, 255, 0.7); @inverse-navbar-nav-item-onclick-color: @global-emphasis-color; @inverse-navbar-nav-item-active-color: @global-emphasis-color; // // Label // @label-background: @global-secondary-background; // // List // @internal-list-bullet-image: "../../../../uikit-themes/master-sonic/images/styles/dark-turquoise/list-bullet.svg"; // // Navbar // @navbar-color-mode: light; @navbar-nav-item-color: rgba(255, 255, 255, 0.67); @navbar-sticky-box-shadow: 0 2px 5px 0 rgba(7, 28, 23, 0.3); @navbar-dropdown-color-mode: light; @navbar-dropdown-box-shadow: 0 4px 15px 3px rgba(7, 28, 23, 0.3); @internal-navbar-nav-item-line-gradient: linear-gradient(100deg, #10C3CB, #45FAA5); // // Notification // @notification-message-primary-color: #ffffff; @notification-message-success-color: #ffffff; @notification-message-warning-color: #ffffff; @notification-message-warning-color-mode: light; @notification-message-danger-color: #ffffff; // // Offcanvas // @offcanvas-bar-color-mode: light; // // Overlay // @overlay-default-color-mode: light; @overlay-primary-color-mode: light; // // Progress // @internal-progress-bar-gradient: linear-gradient(100deg, #10C3CB, #45FAA5); // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @internal-section-primary-gradient: linear-gradient(135deg, #10C3CB, #45FAA5); @internal-section-secondary-gradient: linear-gradient(135deg, #7977e0, @global-secondary-background); // // Subnav // @subnav-pill-item-hover-background: #3a3e3f; @subnav-pill-item-hover-box-shadow: 0 8px 40px -6px rgba(7, 24, 28, 0.9); @internal-subnav-pill-item-active-gradient: linear-gradient(100deg, #10C3CB, #45FAA5); // // Table // @table-row-active-background: #383c3f; // // Text // @internal-text-background-color-gradient: linear-gradient(45deg, #10C3CB, #45FAA5); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: dark; @tile-secondary-color-mode: dark; @internal-tile-primary-gradient: linear-gradient(135deg, #10C3CB, #45FAA5); @internal-tile-secondary-gradient: linear-gradient(135deg, #7977e0, @global-secondary-background); // // Utility // @box-shadow-bottom-background: rgba(0, 0, 0, 0.7); @dragover-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3); // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 10%); assets/uikit-themes/master-sonic/styles/white-turquoise.less000064400000006022151666572410020470 0ustar00// // Global // @global-link-color: @global-primary-background; @global-link-hover-color: #8d55c6; @global-primary-background: #21D6BF; @global-secondary-background: #af74e2; @global-success-background: #03c28f; // // Theme // @internal-theme-box-decoration-primary-border-gradient: linear-gradient(135deg, #10C3CB, #30E6B3); @internal-theme-box-decoration-secondary-border-gradient: linear-gradient(135deg, #7b50c4, @global-secondary-background); @internal-theme-transition-border-border-gradient: linear-gradient(135deg, #10C3CB, #30E6B3); // // Base // @base-em-color: @global-secondary-background; // // Button // @internal-button-primary-gradient: linear-gradient(100deg, #10C3CB, #30E6B3); @internal-button-default-hover-gradient: linear-gradient(100deg, #10C3CB, #30E6B3); @internal-button-primary-hover-gradient: linear-gradient(100deg, #10b3cb 0%, #30e6c2); @internal-button-default-active-gradient: linear-gradient(100deg, #0eacb3, #1be1aa); @internal-button-primary-active-gradient: linear-gradient(100deg, #10adcb 0%, #30e6c8); // // Card // @internal-card-primary-gradient: linear-gradient(135deg, #10C3CB, #30E6B3); @internal-card-secondary-gradient: linear-gradient(135deg, #7b50c4, @global-secondary-background); @internal-card-primary-hover-gradient: linear-gradient(135deg, #10c9cb, #30e6ad); @internal-card-secondary-hover-gradient: linear-gradient(135deg, #8660c9, #b680e5); @internal-card-badge-gradient: linear-gradient(100deg, #10C3CB, #30E6B3); // // Divider // @internal-divider-small-border-gradient: linear-gradient(90deg, #10C3CB, #30E6B3); // // Form // @form-danger-border: #f95860; @form-range-track-background: #f5f5f5; @form-range-track-focus-background: #e7e7e7; @form-radio-checked-focus-background: #10C3CB; // // Icon // @internal-icon-button-hover-gradient: linear-gradient(135deg, #10C3CB, #30E6B3); @internal-icon-button-active-gradient: linear-gradient(135deg, #10b3cb, #30e6c2); // // Inverse // @inverse-global-color: rgba(255, 255, 255, 0.8); // // List // @internal-list-bullet-image: "../../../../uikit-themes/master-sonic/images/styles/white-turquoise/list-bullet.svg"; // // Navbar // @internal-navbar-nav-item-line-gradient: linear-gradient(100deg, #10C3CB, #30E6B3); // // Progress // @internal-progress-bar-gradient: linear-gradient(45deg, #10C3CB, #30E6B3); // // Section // @internal-section-primary-gradient: linear-gradient(100deg, #10C3CB, #45FAA5); @internal-section-secondary-gradient: linear-gradient(135deg, #7b50c4, @global-secondary-background); // // Subnav // @internal-subnav-pill-item-active-gradient: linear-gradient(100deg, #10C3CB, #30E6B3); // // Text // @internal-text-background-color-gradient: linear-gradient(100deg, #10C3CB, #30E6B3); // // Tile // @tile-primary-background: #10c3cb; @tile-secondary-background: #623eae; @internal-tile-primary-gradient: linear-gradient(135deg, #10C3CB, #45FAA5); @internal-tile-secondary-gradient: linear-gradient(135deg, 7b50c4, #B56ADB); assets/uikit-themes/master-sonic/styles/white-blue.less000064400000006475151666572410017373 0ustar00// // Global // @global-link-color: @global-primary-background; @global-link-hover-color: #0171cd; @global-primary-background: #32beff; @global-secondary-background: #393939; // // Theme // @internal-theme-box-decoration-primary-border-gradient: linear-gradient(135deg, #19b1f0, @global-link-hover-color); @internal-theme-box-decoration-secondary-border-gradient: linear-gradient(135deg, @global-secondary-background, #242424); @internal-theme-transition-border-border-gradient: linear-gradient(135deg, #19b1f0, #0171cd); // // Button // @button-default-active-background: #19b1f0; @button-primary-background: #19b1f0; @internal-button-primary-gradient: linear-gradient(100deg, #19b1f0, #0b70d8); @internal-button-secondary-gradient: linear-gradient(100deg, @global-secondary-background, #242424); @internal-button-default-hover-gradient: linear-gradient(100deg, #19b1f0, @global-link-hover-color); @internal-button-primary-hover-gradient: linear-gradient(100deg, #19b1f0, @global-link-hover-color); @internal-button-secondary-hover-gradient: linear-gradient(100deg, #242424, #000000); @internal-button-default-active-gradient: linear-gradient(100deg, #19b1f0, @global-link-hover-color); @internal-button-primary-active-gradient: linear-gradient(100deg, #19b1f0, @global-link-hover-color); // // Card // @card-primary-background: @global-primary-background; @card-secondary-background: #5b86dc; @card-secondary-hover-background: #1b1b1b; @internal-card-primary-gradient: linear-gradient(135deg, #19b1f0, @global-link-hover-color); @internal-card-secondary-gradient: linear-gradient(135deg, @global-secondary-background, #242424); @internal-card-primary-hover-gradient: linear-gradient(135deg, #34bdf6, #2185d8); @internal-card-secondary-hover-gradient: linear-gradient(135deg, #1b1b1b, #111111); @internal-card-badge-gradient: ~''; // // Divider // @internal-divider-small-border-gradient: linear-gradient(90deg, #19b1f0, #0b70d8); // // Icon // @icon-link-color: #19b1f0; @icon-link-hover-color: @global-secondary-background; @icon-link-active-color: @global-secondary-background; @icon-button-color: #19b1f0; @internal-icon-button-hover-gradient: linear-gradient(135deg, #19b1f0, @global-link-hover-color); @internal-icon-button-active-gradient: linear-gradient(135deg, #34bdf6, #2185d8); // // List // @internal-list-bullet-image: "../../../../uikit-themes/master-sonic/images/styles/white-blue/list-bullet.svg"; // // Navbar // @navbar-nav-item-line-background: @global-primary-background; @internal-navbar-nav-item-line-gradient: ~''; // // Overlay // @overlay-primary-background: rgba(50, 190, 255, 0.85); // // Section // @internal-section-primary-gradient: linear-gradient(135deg, #19b1f0, @global-link-hover-color); @internal-section-secondary-gradient: linear-gradient(135deg, #303030, #242424); // // Subnav // @internal-subnav-pill-item-active-gradient: ~''; // // Text // @internal-text-background-color-gradient: linear-gradient(45deg, #19b1f0, #0b70d8); // // Tile // @internal-tile-primary-gradient: linear-gradient(135deg, #19b1f0, @global-link-hover-color); @internal-tile-secondary-gradient: linear-gradient(135deg, #303030, #242424); assets/uikit-themes/master-sonic/_import.less000064400000051633151666572410015450 0ustar00@internal-fonts: 'Lato:100,300|Open+Sans:300,400'; @global-font-family: 'Open Sans'; @global-font-size: 15px; @global-line-height: 1.86; @global-2xlarge-font-size: 42px; @global-xlarge-font-size: 36px; @global-large-font-size: 22px; @global-medium-font-size: 20px; @global-small-font-size: 13px; @global-primary-font-family: Lato; @global-primary-font-weight: 300; @global-primary-text-transform: uppercase; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: inherit; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #343434; @global-emphasis-color: #111; @global-muted-color: #b6b6b6; @global-link-color: #f95860; @global-link-hover-color: #5f5eea; @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #f9fafe; @global-primary-background: #f95860; @global-secondary-background: #6766db; @global-success-background: #02c2bb; @global-warning-background: #ffc15e; @global-danger-background: #f95860; @global-border: #e7e7e7; @global-border-width: 1px; @global-border-radius: 2px; @global-small-box-shadow: 0 8px 40px -6px rgba(105, 104, 178, 0.18); @global-medium-box-shadow: 0 8px 50px -6px rgba(84, 84, 120, 0.26); @global-large-box-shadow: 0 8px 50px 0 rgba(84, 84, 120, 0.30); @global-xlarge-box-shadow: 0 8px 50px 0 rgba(84, 84, 120, 0.42); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 65px; @global-xlarge-margin: 130px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 65px; @global-control-height: 45px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-body-font-weight: 300; @base-link-hover-text-decoration: none; @base-code-color: #d65a60; @base-em-color: #3c9bd2; @base-h1-font-size: @global-2xlarge-font-size * 0.8; // 48px @base-h2-line-height: 1.238; @base-h3-line-height: 1.455; @base-h5-line-height: 1.444; @base-h6-line-height: 1.467; @base-blockquote-font-size: 18px; @base-selection-background: @global-primary-background; @base-pre-padding: 20px; @base-pre-background: @global-muted-background; @base-h4-font-family: @global-primary-font-family; @base-h4-font-weight: @global-primary-font-weight; @base-h4-text-transform: @global-primary-text-transform; @base-h4-letter-spacing: @global-primary-letter-spacing; @base-h4-font-style: @global-primary-font-style; @base-h5-font-family: @global-primary-font-family; @base-h5-font-weight: @global-primary-font-weight; @base-h5-text-transform: @global-primary-text-transform; @base-h5-letter-spacing: @global-primary-letter-spacing; @base-h5-font-style: @global-primary-font-style; @base-h6-font-family: @global-primary-font-family; @base-h6-font-weight: @global-primary-font-weight; @base-h6-text-transform: @global-primary-text-transform; @base-h6-letter-spacing: @global-primary-letter-spacing; @base-h6-font-style: @global-primary-font-style; @base-blockquote-text-transform: none; @inverse-base-link-hover-color: @inverse-global-muted-color; @heading-small-font-size-m: 60px; @heading-medium-font-size-l: 72px; @heading-xlarge-font-size-l: 130px; @heading-bullet-border-width: ~'calc(2px + 0.05em)'; @heading-bullet-border: @global-link-color; @heading-line-border-width: ~'calc(2px + 0.02em)'; @heading-small-font-weight: 100; @heading-medium-font-weight: 100; @heading-large-font-weight: 100; @heading-xlarge-font-weight: 100; @heading-2xlarge-font-weight: 100; @heading-3xlarge-font-weight: 100; @divider-small-width: 80px; @divider-small-border-width: 2px; @divider-small-border: @global-primary-background; @internal-divider-small-border-gradient: linear-gradient(90deg, #FE8155 0%, #F95462 35%, #ED7AA3 100%); @list-margin-top: 14px; @internal-list-bullet-image: "../../../../uikit-themes/master-sonic/images/list-bullet.svg"; @description-list-term-text-transform: @global-primary-text-transform; @icon-link-color: @global-color; @icon-link-hover-color: @global-link-color; @icon-link-active-color: darken(@global-link-color, 10%); @icon-button-size: 40px; @icon-button-background: transparent; @icon-button-color: @global-color; @icon-button-hover-background: @global-primary-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: @global-color; @icon-button-active-color: @global-inverse-color; @icon-button-border-width: @global-border-width; @icon-button-border: @icon-link-color; @internal-icon-button-hover-gradient: linear-gradient(135deg, #ff7f58, #f95860); @internal-icon-button-active-gradient: linear-gradient(135deg, spin(#ff7f58, 10%), spin(#f95860, 10%)); @inverse-icon-button-background: transparent; @inverse-icon-button-color: @inverse-global-emphasis-color; @inverse-icon-button-hover-background: @inverse-global-emphasis-color; @inverse-icon-button-hover-color: @global-primary-background; @inverse-icon-button-active-background: fade(@inverse-global-emphasis-color, 90%); @inverse-icon-button-active-color: @global-primary-background; @inverse-icon-button-border: @inverse-global-emphasis-color; @form-range-track-height: @global-border-width; @form-range-thumb-height: 13px; @form-range-thumb-background: @global-primary-background; @form-background: @global-background; @form-focus-background: @global-background; @form-large-font-size: 18px; @form-radio-background: @global-background; @form-radio-focus-background: @global-background; @form-legend-font-size: @global-medium-font-size; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-color; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @form-focus-border; @form-radio-border-width: @global-border-width; @form-radio-border: @global-border; @form-radio-focus-border: @global-color; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @inverse-global-color; @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: @inverse-global-color; @button-line-height: 42px; @button-large-line-height: 48px; @button-font-size: 17px; @button-large-font-size: 17px; @button-padding-horizontal: 20px; @button-large-padding-horizontal: 30px; @button-default-background: rgba(249, 250, 254, 0); @button-default-color: @global-link-color; @button-default-hover-background: @global-link-color; @button-default-hover-color: @global-inverse-color; @button-default-active-color: @global-inverse-color; @button-primary-background: @global-link-color; @button-disabled-background: transparent; @button-text-line-height: 32px; @button-text-hover-color: @global-primary-background; @button-link-hover-color: @global-primary-background; @button-text-mode: ~''; @button-text-icon-mode: dash; @internal-button-text-dash-padding: 10px; @internal-button-text-dash-size: 15px; @button-border-width: 1px; @button-default-border: @global-link-color; @button-disabled-border: @global-border; @button-border-radius: 500px; @internal-button-default-hover-gradient: linear-gradient(100deg, #FE8155 0%, #F95462 35%, #ED7AA3 100%); @internal-button-default-active-gradient: linear-gradient(100deg, darken(#FE8155, 5%) 0%, darken(#F95462, 5%) 35%, darken(#ED7AA3, 5%) 100%); @internal-button-primary-gradient: linear-gradient(100deg, #FE8155 0%, #F95462 35%, #ED7AA3 100%); @internal-button-primary-hover-gradient: linear-gradient(100deg, spin(#FE8155, 10%) 0%, spin(#F95462, 10%) 35%, spin(#ED7AA3, 10%) 100%); @internal-button-primary-active-gradient: linear-gradient(100deg, spin(#FE8155, 8%) 0%, spin(#F95462, 8%) 35%, spin(#ED7AA3, 8%) 100%); @button-default-hover-box-shadow: @global-medium-box-shadow; @button-primary-hover-box-shadow: @global-medium-box-shadow; @button-secondary-hover-box-shadow: @global-medium-box-shadow; @button-danger-hover-box-shadow: @global-medium-box-shadow; @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-emphasis-color; @inverse-button-default-hover-background: @inverse-global-emphasis-color; @inverse-button-default-hover-color: @global-link-color; @inverse-button-default-active-background: @inverse-global-emphasis-color; @inverse-button-default-active-color: @global-link-color; @inverse-button-primary-color: @global-link-color; @inverse-button-primary-hover-background: fade(@inverse-button-primary-background, 90%); @inverse-button-primary-hover-color: @global-link-color; @inverse-button-secondary-color: @global-link-hover-color; @inverse-button-secondary-hover-background: fade(@inverse-button-secondary-background, 90%); @inverse-button-secondary-hover-color: @global-link-hover-color; @inverse-button-default-border: @global-inverse-color; @internal-progress-bar-gradient: linear-gradient(45deg, #FE8155 0%, #F95462 35%, #ED7AA3 100%); @internal-section-primary-gradient: linear-gradient(135deg, #fe8155 0%, #fa5565 30%, #f07297 70%, #febdd5 100%); @internal-section-secondary-gradient: linear-gradient(135deg, #605cee 0%, #7571c8 100%); @internal-section-default-image: "../../master-sonic/images/section-background-image-lines.svg"; @internal-tile-primary-gradient: linear-gradient(135deg, #f95860, #ff7f58); @internal-tile-secondary-gradient: linear-gradient(135deg, #605cee, #7571c8); @card-title-font-size: 26px; @card-badge-height: 28px; @card-badge-padding-horizontal: 13px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-large-body-padding-horizontal-l: 55px; @card-large-body-padding-vertical-l: 55px; @card-badge-font-weight: 400; @card-badge-border-radius: 500px; @internal-card-badge-gradient: linear-gradient(100deg, #FE8155 0%, #F95462 50%, #ED7AA3 100%); @internal-card-primary-gradient: linear-gradient(135deg, #f95860, #ff7f58); @internal-card-primary-hover-gradient: linear-gradient(135deg, spin(#f95860, -5%), spin(#ff7f58, -5%)); @internal-card-secondary-gradient: linear-gradient(135deg, #605cee, #7571c8); @internal-card-secondary-hover-gradient: linear-gradient(135deg, spin(#605cee, -5%), spin(#7571c8, -5%)); @card-hover-box-shadow: @global-medium-box-shadow; @card-default-box-shadow: @global-small-box-shadow; @card-default-hover-box-shadow: @global-medium-box-shadow; @card-primary-box-shadow: @global-large-box-shadow; @card-primary-hover-box-shadow: @global-xlarge-box-shadow; @card-secondary-box-shadow: @global-large-box-shadow; @card-secondary-hover-box-shadow: @global-xlarge-box-shadow; @alert-primary-background: #f4f4ff; @alert-primary-color: #525298; @alert-success-background: #e8f6ee; @alert-success-color: #3f7758; @alert-warning-color: #dd810a; @alert-danger-background: #ffefed; @alert-danger-color: #bd4b3e; @label-font-weight: 400; @label-border-radius: 500px; @article-title-text-transform: inherit; @article-meta-text-transform: @global-primary-text-transform; @comment-title-font-size: @global-font-size; @search-default-padding-horizontal: 0; @search-default-background: @global-background; @search-default-focus-background: @global-background; @search-default-icon-padding: 12px; @search-navbar-padding-horizontal: 20px; @search-navbar-focus-background: darken(@search-navbar-background, 2%); @search-medium-padding-horizontal: 20px; @search-medium-font-size: @global-medium-font-size; @search-large-padding-horizontal: 30px; @search-large-font-size: 40px; @search-toggle-color: @global-color; @search-toggle-hover-color: @global-link-color; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-color; @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: @search-navbar-border; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @search-medium-border; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @search-large-border; @search-navbar-border-radius: 500px; @search-medium-border-radius: 500px; @search-large-border-radius: 500px; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-medium-background: @inverse-global-muted-background; @inverse-search-large-background: @inverse-global-muted-background; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-color; @inverse-search-navbar-border: @inverse-global-border; @inverse-search-navbar-focus-border: @inverse-global-border; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @inverse-global-border; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @inverse-global-border; @accordion-title-font-size: 18px; @accordion-title-hover-color: @global-link-color; @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 7px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 7px)'; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-link-color; @dropdown-nav-subtitle-font-size: 12px; @dropdown-nav-sublist-item-hover-color: @global-link-color; @dropdown-nav-sublist-padding-left: 20px; @dropdown-nav-font-size: 18px; @dropdown-nav-text-transform: none; @dropdown-box-shadow: @global-medium-box-shadow; @dropbar-padding-top: 5px; @dropbar-padding-bottom: 40px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 4px 4px -2px rgba(30, 30, 30, 0.07); @dropbar-bottom-box-shadow: 0 -4px 4px -2px rgba(30, 30, 30, 0.07); @dropbar-left-box-shadow: 12px 0 10px -12px rgba(30, 30, 30, 0.1); @dropbar-right-box-shadow: -12px 0 10px -12px rgba(30, 30, 30, 0.1); @modal-title-font-size: 30px; @slider-container-margin-top: -42px; @slider-container-margin-bottom: -58px; @slider-container-margin-left: -50px; @slider-container-margin-right: -50px; @offcanvas-bar-padding-vertical: 15px; @offcanvas-bar-padding-horizontal: 25px; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-bar-box-shadow: 5px 0 14px 0 rgba(0, 0, 0, 0.06); @countdown-item-font-family: @global-primary-font-family; @countdown-item-font-weight: 100; @countdown-label-text-transform: uppercase; @nav-default-subtitle-font-size: 12px; @nav-primary-font-size: 30px; @nav-primary-line-height: 1.2; @nav-primary-subtitle-font-size: @global-font-size; @nav-secondary-subtitle-color: @global-emphasis-color; @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-secondary-sublist-item-color: @global-emphasis-color; @nav-secondary-sublist-item-hover-color: @global-muted-color; @nav-secondary-sublist-item-active-color: @global-primary-background; @nav-medium-font-size: 52px; @nav-medium-font-size-m: 63px; @nav-medium-font-size-l: 72px; @nav-large-font-size: @nav-medium-font-size-m; @nav-large-font-size-m: @nav-medium-font-size-l; @nav-large-font-size-l: 90px; @nav-xlarge-font-size: @nav-large-font-size-m; @nav-xlarge-font-size-m: @nav-large-font-size-l; @nav-xlarge-font-size-l: 130px; @nav-primary-item-padding-vertical: 8px; @nav-secondary-margin-top: 2px; @nav-secondary-item-padding-vertical: 10px; @nav-secondary-item-padding-horizontal: 14px; @nav-secondary-item-hover-background: @global-muted-background; @nav-secondary-item-active-background: @global-muted-background; @nav-primary-subtitle-text-transform: none; @nav-primary-subtitle-line-height: 1.2; @inverse-nav-secondary-item-hover-background: @inverse-global-muted-background; @inverse-nav-secondary-item-active-background: @inverse-nav-secondary-item-hover-background; @navbar-background: @global-background; @navbar-nav-item-height: 106px; @navbar-nav-item-color: @global-color; @navbar-nav-item-hover-color: @global-link-color; @navbar-nav-item-onclick-color: @global-link-color; @navbar-nav-item-active-color: @global-link-color; @navbar-toggle-color: @global-color; @navbar-toggle-hover-color: @global-link-color; @navbar-subtitle-font-size: 12px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 25px; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-color: @global-color; @navbar-dropdown-nav-item-hover-color: @global-link-color; @navbar-dropdown-nav-item-active-color: @global-link-color; @navbar-dropdown-nav-subtitle-font-size: 12px; @navbar-dropdown-nav-sublist-item-hover-color: @global-link-color; @navbar-gap-m: 50px; @navbar-nav-gap-m: 50px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: (@navbar-nav-item-height / 3); @navbar-nav-item-line-height: 2px; @navbar-nav-item-line-transition-duration: 0.4s; @navbar-nav-item-line-hover-height: @navbar-nav-item-line-height; @navbar-nav-item-line-onclick-height: @navbar-nav-item-line-height; @navbar-nav-item-line-active-height: @navbar-nav-item-line-height; @navbar-subtitle-color: @global-color; @navbar-subtitle-line-height: 1.4; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-primary-nav-item-font-weight: @navbar-nav-item-font-weight; @navbar-dropdown-nav-subtitle-color: @global-color; @navbar-dropdown-nav-subtitle-line-height: 1.4; @internal-navbar-nav-item-line-gradient: linear-gradient(100deg, #FE8155 0%, #F95462 35%, #ED7AA3 100%); @navbar-sticky-box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.09); @navbar-dropdown-box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.09); @subnav-divider-margin-horizontal: 10px; @subnav-divider-border-height: 1px; @subnav-divider-border-width: 12px; @subnav-pill-item-padding-vertical: 3px; @subnav-pill-item-padding-horizontal: 15px; @subnav-pill-item-hover-background: @global-background; @subnav-item-font-size: 13px; @subnav-item-text-transform: @global-primary-text-transform; @subnav-pill-item-border-radius: 500px; @internal-subnav-pill-item-active-gradient: linear-gradient(100deg, #FE8155 0%, #F95462 50%, #ED7AA3 100%); @subnav-pill-item-hover-box-shadow: @global-small-box-shadow; @inverse-subnav-item-color: @inverse-global-emphasis-color; @inverse-subnav-item-hover-color: fade(@global-inverse-color, 80%); @inverse-subnav-pill-item-onclick-background: @inverse-global-emphasis-color; @inverse-subnav-pill-item-onclick-color: @global-color; @inverse-subnav-pill-item-active-background: @inverse-global-emphasis-color; @inverse-subnav-pill-item-active-color: @global-color; @breadcrumb-divider: "//"; @pagination-item-padding-vertical: 0; @tab-item-color: @global-color; @tab-item-hover-color: @global-link-color; @tab-item-active-color: @global-link-color; @tab-item-text-transform: @global-primary-text-transform; @tab-border: rgba(0, 0, 0, 0); @tab-item-border-width: 2px; @tab-item-hover-border: @global-link-color; @tab-item-active-border: @global-link-color; @slidenav-padding-vertical: 11px; @slidenav-padding-horizontal: 13px; @slidenav-color: fade(@global-color, 70%); @slidenav-hover-color: @global-color; @slidenav-active-color: @global-color; @slidenav-large-padding-vertical: 16px; @slidenav-large-padding-horizontal: 20px; @slidenav-border-width: 1px; @slidenav-border: fade(@global-color, 70%); @slidenav-hover-border: @global-color; @slidenav-active-border: @global-color; @slidenav-border-radius: 50%; @inverse-slidenav-border: fade(@global-inverse-color, 60%); @inverse-slidenav-hover-border: @global-inverse-color; @inverse-slidenav-active-border: @global-inverse-color; @dotnav-item-width: 14px; @dotnav-item-background: transparent; @dotnav-item-hover-background: @global-primary-background; @dotnav-item-onclick-background: @global-primary-background; @dotnav-item-active-background: @global-primary-background; @dotnav-item-border-width: 1px; @dotnav-item-border: fade(@global-muted-color, 50%); @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-border: @global-inverse-color; @inverse-dotnav-item-active-border: @global-inverse-color; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-color; @iconnav-item-hover-color: @global-primary-background; @iconnav-item-active-color: @global-primary-background; @width-small-width: 120px; @text-lead-font-size: @global-medium-font-size; @text-meta-font-size: 16px; @text-meta-line-height: 1.188; @text-large-font-size: 26px; @text-lead-font-family: @global-font-family; @text-lead-text-transform: none; @text-meta-text-transform: uppercase; @internal-text-background-color-gradient: linear-gradient(45deg, #FE8155 0%, #F95462 35%, #f36884 60%, #F69EBE 100%); @logo-font-family: @global-primary-font-family; @logo-text-transform: @global-primary-text-transform;assets/uikit-themes/master-sonic/images/section-background-image-lines.svg000064400000000320151666572410023031 0ustar00<svg width="290" height="100" viewBox="0 0 290 100" xmlns="http://www.w3.org/2000/svg"> <path fill="none" opacity=".04" stroke="#1d1d1b" stroke-miterlimit="10" d="M.5,0v100" isolation="isolate" /> </svg> assets/uikit-themes/master-sonic/images/list-bullet.svg000064400000001045151666572410017325 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <linearGradient id="a" x1="3.54" y1=".907" x2="8.29" y2="10.74" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#FF7F58" /> <stop offset=".54" stop-color="#F95462" /> <stop offset="1" stop-color="#F26985" /> </linearGradient> <path fill="url(#a)" d="M6 11.5C2.97 11.5.5 9.03.5 6S2.97.5 6 .5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5zm0-10C3.52 1.5 1.5 3.52 1.5 6s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5S8.48 1.5 6 1.5z" /> </svg> assets/uikit-themes/master-sonic/images/styles/white-turquoise/list-bullet.svg000064400000000762151666572410024033 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <linearGradient id="a" x1="3.54" y1=".907" x2="8.29" y2="10.74" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#10C3CB" /> <stop offset="1" stop-color="#30E6B3" /> </linearGradient> <path fill="url(#a)" d="M6 11.5C2.97 11.5.5 9.03.5 6S2.97.5 6 .5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5zm0-10C3.52 1.5 1.5 3.52 1.5 6s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5S8.48 1.5 6 1.5z" /> </svg> assets/uikit-themes/master-sonic/images/styles/white-blue/list-bullet.svg000064400000000762151666572410022722 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <linearGradient id="a" x1="3.54" y1=".907" x2="8.29" y2="10.74" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#0C71D8" /> <stop offset="1" stop-color="#1AB0F0" /> </linearGradient> <path fill="url(#a)" d="M6 11.5C2.97 11.5.5 9.03.5 6S2.97.5 6 .5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5zm0-10C3.52 1.5 1.5 3.52 1.5 6s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5S8.48 1.5 6 1.5z" /> </svg> assets/uikit-themes/master-sonic/images/styles/white-pink/list-bullet.svg000064400000000762151666572410022734 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <linearGradient id="a" x1="3.54" y1=".907" x2="8.29" y2="10.74" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#C14AAC" /> <stop offset="1" stop-color="#ED4882" /> </linearGradient> <path fill="url(#a)" d="M6 11.5C2.97 11.5.5 9.03.5 6S2.97.5 6 .5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5zm0-10C3.52 1.5 1.5 3.52 1.5 6s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5S8.48 1.5 6 1.5z" /> </svg> assets/uikit-themes/master-sonic/images/styles/white-purple/list-bullet.svg000064400000000762151666572410023302 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <linearGradient id="a" x1="3.54" y1=".907" x2="8.29" y2="10.74" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#5888FF" /> <stop offset="1" stop-color="#B691F8" /> </linearGradient> <path fill="url(#a)" d="M6 11.5C2.97 11.5.5 9.03.5 6S2.97.5 6 .5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5zm0-10C3.52 1.5 1.5 3.52 1.5 6s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5S8.48 1.5 6 1.5z" /> </svg> assets/uikit-themes/master-sonic/images/styles/dark-turquoise/list-bullet.svg000064400000000762151666572410023634 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <linearGradient id="a" x1="3.54" y1=".907" x2="8.29" y2="10.74" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#10C3CB" /> <stop offset="1" stop-color="#45FAA5" /> </linearGradient> <path fill="url(#a)" d="M6 11.5C2.97 11.5.5 9.03.5 6S2.97.5 6 .5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5zm0-10C3.52 1.5 1.5 3.52 1.5 6s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5S8.48 1.5 6 1.5z" /> </svg> assets/uikit-themes/master-morgan-consulting/images/divider-icon.svg000064400000000413151666572410021772 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.1" x1="0" y1="0" x2="10" y2="10" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="10" y1="0" x2="0" y2="10" /> </svg> assets/uikit-themes/master-morgan-consulting/images/list-bullet.svg000064400000000251151666572410021656 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1" cx="5" cy="5" r="4" /> </svg> assets/uikit-themes/master-morgan-consulting/images/section-background-image-noise.png000064400000012763151666572410025372 0ustar00�PNG IHDRddp�TgAMA���a�IDATx��#G�D{?}"�I��5t]BGӦ��P/A$[f�3��Q�������Z���۷�z]iו���o��D#|����o�O?�D>#<p�n��x}���_;?�Y���?�Ně�9���}[<�z��ၧ�p�ڼ�|?�8�l`�wm�qt��Z���M���?�����<x�y>c��<bx�����a�r4D�Dp�ī�MH��e���z��n|6�^o��������p��硼��x������Y˭&��9�����by�)қmrO��)�3��W��ϕ ߽�4�[���|[�`���Ƿ�5𨜏1���9 u"�-7`��ܲ�?rOc�R��5�[���e�`��<XF�q�L͋-�Ѷ����q��7RM��U}�擧�0]������.>p�s�߭����s�x�A{t�m�ɽD��&y8x8�h��G��� L����|�p�>�k~�>��c_�7'y���h{>NjO3p�ć�u���f����"�ĭ,�S�Ÿs�УƇ����[����$�Z�a3�C�k/u����ۆMz�6��1���zr���ҭ��'����OYy����ISܼi���:c~""8��_�G�yy�ǁý��̘0"Ʈ�II���6�}|'��z�/�"�#��]WS}��N8�Ozz�Ōg�͒�B�gN�I��n�_���Q?i�����Goz'��+x������>ym�;I�z���j��f?�cg5�JR�*�?c<��8 �ͫ\k�����p��!M ��?qn��p��~���v�� m���O��&��!i�k��o>�ӼFy��>pt���wF�D����{� ��u�.�#y�j�Ʀ��8s��2&��u��O���ИO��/-�h��hM��`�xv+�DŽX��K���>E�O��,�S�6�NΦ �aݜ����#�M�zƢ�Ȣ9�\'/����6?���[��ȁ.�V�C·5$W��Ǥv��{g�GR}t��/���M�!~�M���NL�Y��܃���ƛ��7L�#����h��k����e-�;�v���%g����H� ���[�r��+N�t�)3=�3/�������#]ih���4~�� �_2t"���!��7�4g�x,�&�i��?���Omys�Ln�����S��^��bi�� �m�ߵ�0 ���LT<�E�O?z���3�7�9}����G���ZoM�s;�%��9o !l"0�o??��<�H�?>��xO>����h��P'��k_zz|M.5-18�����%�&>��Cq�)�|���5�9����,|�ī�uv��3ױ>�0#"�|F�}z��C=8ub�S��J�7<�U�i :"zj"��{�Dx���_�#Dc!�c�Vo��msO��#���Юq<����Y�?��{��|O���M���E4�<�ķ�0�q��ԅ~�;�����מG���Q3�[}���}�z�?��f\L���+p���^5F����9��"�c���BJ�@�ޜ�^dz<��<�ٟu�s� �ǧ�>����a��̉q���Ixּ� �p0�p��r]i�;��O�1G.u"�٣���P���k���>́N�,�nyi�y���{1�4��~���o\]����Z'�>���{�x��j4�n�Z�����ܼ:��f~@� Ơ?k��k�\}h�u�]���-�3�pg~�f]�,s����@�� �B-�9���k���ݷ��wo<*�w_@<��(kZsk�Cb=�o����mAnL�P?ct_�Gi.���|��Q�����؈H�I}��F�s�f� �A��B_��ȉ֢���q�)�p~;�#�����Mo�����o}5=���{�O.����o����;��|�����jx�1�i|U}擷�h}�X{,n�8��!wD7�7�9}t[��'�}���P�}V�U1jL��0W���9Μ�Ŧ#�GNKm,x�{��cz��|�����z�,�}�_ ��^p�s�Io�U2���O��g,1��s���{�wLz�����J�G�1+�'���̮��Lj�IC����c>_"Z�$'��}�ݙ�����J��c>�z� �\��˓;���Eu�Kߍ2B�,�>�Z�H�c�����ua�~�E�ό�{˷o|��`M�齘_���2Xb����f�|����S~d��7��[�G��*�M����<cOy�_�x�1�gΝ>�o� o��@4 g��#��o��G���]���q�����o���7,�F�� w�s�w�=���:� 6z�c���ql���F��O婗Wzs�����!����`z�%f��<�X��6�&+�W�~�;y��D�`�nq�<�֕�_�P�},���<�~�mR���l*��Ǽ�� �x�ُ����3?xk�b���O���d��CO��6z56���,��.����D��劶n��X��=rb�p�M�*Ǵ��e"_(���mњZ�9���`F���k������о����ϼ5�n���T�;���318/0Gr83�'�?�>��{�ЦS��뉖G!{�9�/uU�>tD�O�8�~��>�xGll�����f�ۈ����M�G8���qE�@�ȩ;� gx�ux�+<<�K�Q�q_���^���.2���ܘ9u�6>+��+2��[�ެ'7���[O�7�G����Q�5 �Gv�W�X9��W�+WW �U�� ^�E� 8�[��|��c#~�Ꮧ���c���ϳOd1L��=�6-s�9��l<y�q����2��+���䵇/p�6g\���w�k��;�y��X�=Ov��Gs�w,{[������X�~�ԫ�&��S�xeL��_������ϪMW���O�l�ƁϚ�q�\��Ww��7��{���c�1��̋ |�YÛz�����]5B�B��yzn��Kl���~����k�<����=4��P?��%f_�y"h�ࠣ.! &����J�����p=/��H?Ï��j��oL��9h��ҥ�#wo��u.�1�-��qr>�n��Z���|�<k���_�6:�m}KY��yp�����;����W� ���Lo����T�� ���Ɉ����>i�AO7��v��C��c���O�̏U=g�V��m.�u��+1�=��X��e�s4�M���5�G~�X��5�����9G;뚓�;�Q5�Q�'�������s��yͷf�[=�Ԟ�Mf^z�Ic�-��� ~�N�:I�U���z �xZ� K����+˜���ȧ8�G���I����|�p�>�9��8)��'`�"��O�����!ҷ3��G�'�l2�ęS{�`��ȉ`���w���5�*VC�U�� +��#s�g�7�1�����VkË]rj��3�w�N�j�rp�������k��Z�8���XL�1�z��C�J�y�z�gb ]��+��ox�g��z����B�]nn��������@p�\Wh�[����Bĵa�0̟�B�q�]`q�g����h2���k/��{���x�'�c��f24�R�z�x��3���d83��fj�������q��Y�>q��0]�D�c�9sjbL�y'�W��pk�fr��zrG{���NF�A �w����O�^OZE�k�����KVz�Eh�����~qW���?x�������n���=a>xԷ��-�{?�u�ͽ��&�F�px�4f.���D{$�4�S�N��q����H�yc��Q��Գ���J9�=���ӱ�n=��`"^��'�/�N6|������I����4i�y��@mڦ� ''O��)N <��?�p���h�e����^4���t�=+/�U�m��uOuu�a�_�Q�c��z�3�'n�� %��~u��h�C�ExviR�3>���i��.s��7�|��L�|�o�S�ms[��O�e2n!��9g�}���V�m��9�8���f'���zr�@����xk�����< L!���O�=b�*�y�gF��by複������2���g��?��oE�&�CL=:b��9��?��^�zy>��W�4o|��<p��0���y��^5/�j�Y^��1H�c�>\�s�YO�>���h�s�����cf Dx����%��"������`FO�tu�������2� ?sL�YO|�U_���ւGįxg ��]G�a��^�Iz�1I �3^���>������G�U����'�1z��N-����@������������+�_!8�rS�p��c�;�=�yNr��'�ǹ��:�$M���s��'�2��s��6��@�+�z���)��['Q�J�7w��~ʏ�킳�y���7\w<�<�5I�?'|�����2 ��6q����%�D�ж�'��<����)ڇ.�l��W�qқ�� XG��|����G�q�w5���U$��ZX�G1�_o��W5�`{N�bx��P�,�6�����V�ԛ>��������Mt&��f������ }ùc⧫�y�/n��0���a����ל��e��N�n����J���|�x��Dm<9�ñ�5��pcΧn��7�<�����Wׅ �.���\e�J�q�Ϝ����y�0X����_.��1�x� /"=��s�O��'>��ü���;��?�o�[��=�u�˅^��h�������0��dGt�l�����8`��y����&wn(��I>������/=j��9�93�%�`��s���\`�}�Z���0�����|�Ot7�}�/}�Yt�M^��Q�?D C7�pr�F�19�hjl���w4��"<�4��KA�ɏ6�7ѷ,N�g<zs/9zs&��i�C�W練��s�����k��F����������kb6�*��p$�<Jtt�KsN4>D��x��\�O~��|��h���{!��=��/�8���'�Tۄ���=��YC]���U�7�oEl�crFm��+�J���zDp"xG����ќ O��p�SO�k�An�`���[�\77�5R{Po<���5�q���G?X��-ǣ��图L����������:�O�_x'a���'ֆKғ�+i��&�Il��u�W��]U�GG��'Dp<�<�x�õ�{:&������/����<����g���.�>t�/�<�^3|�ד�Z���Gko{�p��B=�����O>5}������ǹ�Y��@��q�Ԑ�1�ڏ�q���Ñ~�%����oWؗ����ČG�z�h�x�{d���p�%�As�Ԝɛ��=������>Z��x$N���Y[�.��ܚ�� ������9ø�.�,IEND�B`�assets/uikit-themes/master-morgan-consulting/icons/slidenav-next.svg000064400000000276151666572410022054 0ustar00<svg width="18" height="16" viewBox="0 0 18 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="17.41,8 9.71,15.71 8.29,14.29 13.59,9 0,9 0,7 13.59,7 8.29,1.71 9.71,0.29" /> </svg> assets/uikit-themes/master-morgan-consulting/icons/slidenav-previous.svg000064400000000275151666572410022751 0ustar00<svg width="18" height="16" viewBox="0 0 18 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="18,9 4.41,9 9.71,14.29 8.29,15.71 0.59,8 8.29,0.29 9.71,1.71 4.41,7 18,7" /> </svg> assets/uikit-themes/master-morgan-consulting/icons/totop.svg000064400000000356151666572410020437 0ustar00<svg width="15" height="22" viewBox="0 0 15 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#0000" stroke-width="1.1" points="1,8 7.5,1.5 14,8" /> <rect width="1" height="20" fill="000" x="7" y="2" /> </svg> assets/uikit-themes/master-morgan-consulting/icons/slidenav-next-large.svg000064400000000307151666572410023137 0ustar00<svg width="27" height="24" viewBox="0 0 27 24" xmlns="http://www.w3.org/2000/svg"> <polygon points="0,11 22.59,11 13.29,1.71 14.71,0.29 26.41,12 14.71,23.71 13.29,22.29 22.59,13 0,13" /> </svg> assets/uikit-themes/master-morgan-consulting/icons/slidenav-previous-large.svg000064400000000306151666572410024034 0ustar00<svg width="27" height="24" viewBox="0 0 27 24" xmlns="http://www.w3.org/2000/svg"> <polygon points="27,13 4.41,13 13.71,22.29 12.29,23.71 0.59,12 12.29,0.29 13.71,1.71 4.41,11 27,11" /> </svg> assets/uikit-themes/master-morgan-consulting/styles/white-dove.less000064400000001601151666572410021716 0ustar00// // Global // @global-link-color: #5571bd; @global-danger-background: #e85058; @global-muted-background: #eeeff3; @global-primary-background: #5578ce; @global-secondary-background: #476abf; @global-success-background: #49b774; @global-border: #e5e6ed; @global-large-box-shadow: 0 8px 18px 0 rgba(63, 73, 97, 0.12); @global-medium-box-shadow: 0 5px 45px 0 rgba(63, 73, 97, 0.12); @global-small-box-shadow: 0 1px 4px 0 rgba(63, 73, 97, 0.12); @global-xlarge-box-shadow: 0 14px 50px 0 rgba(63, 73, 97, 0.12); // // Theme // @theme-page-container-background: #f4f5f7; @theme-page-container-color-mode: dark; // // Card // @card-default-hover-background: #f5f6f8; // // Offcanvas // @offcanvas-overlay-background: rgba(119, 122, 137, 0.2); // // Section // @section-muted-background: #f5f6f8; // // Tile // @tile-muted-background: #f5f6f8; assets/uikit-themes/master-morgan-consulting/styles/white-red.less000064400000001241151666572410021533 0ustar00// // Theme // @theme-page-container-background: #f6f6f6; @theme-page-container-color-mode: dark; // // Global // @global-color: #737373; @global-emphasis-color: #242424; @global-link-color: @global-secondary-background; @global-danger-background: #ff2e17; @global-primary-background: #f03f37; @global-secondary-background: #d42725; @global-success-background: #5de234; @global-warning-background: #f18430; // // Totop // @inverse-totop-hover-background: lighten(@global-primary-background, 10%); // // Inverse // @inverse-global-color: rgba(255, 255, 255, 0.73); @inverse-global-muted-color: rgba(255, 255, 255, 0.59); assets/uikit-themes/master-morgan-consulting/styles/white-orange.less000064400000001166151666572410022242 0ustar00// // Global // @global-primary-background: #ea861b; @global-secondary-background: #1f3e5c; @global-emphasis-color: #28333e; @global-color: #4e555c; @global-link-color: #e37b00; @global-link-hover-color: #c16900; @global-danger-background: #ea561b; @global-warning-background: #ef9b0c; @global-success-background: #8fd915; // // Theme // @theme-page-container-background: #16222d; // // Form // @form-radio-checked-focus-background: darken(saturate(@global-primary-background, 10%), 5%); @form-radio-focus-border: darken(saturate(@global-primary-background, 10%), 5%); assets/uikit-themes/master-morgan-consulting/styles/white-green.less000064400000004424151666572410022067 0ustar00// // Global // @global-link-color: #86cd6d; @global-muted-background: #f0f3f7; @global-primary-background: #86cd6d; @global-secondary-background: #4285f4; @global-border: #e8ecef; @global-large-box-shadow: 0 8px 18px 0 rgba(147, 162, 185, 0.16); @global-medium-box-shadow: 0 8px 40px 0 rgba(147, 162, 185, 0.16); @global-small-box-shadow: 0 3px 10px 0 rgba(147, 162, 185, 0.36); @global-xlarge-box-shadow: 0 14px 50px 0 rgba(147, 162, 185, 0.16); // // Theme // @theme-page-container-background: #f5f7fa; @theme-page-container-color-mode: dark; // // Badge // @badge-background: @global-secondary-background; // // Button // @button-link-hover-color: @global-secondary-background; // // Iconnav // @iconnav-item-hover-color: @global-secondary-background; @iconnav-item-active-color: @global-secondary-background; // // Inverse // @inverse-global-color: rgba(255, 255, 255, 0.8); @inverse-global-muted-color: rgba(255, 255, 255, 0.6); @inverse-button-primary-color: #ffffff; @inverse-link-muted-color: rgba(255, 255, 255, 0.6); // // Nav // @nav-default-item-hover-color: @global-secondary-background; @nav-primary-item-hover-color: @global-secondary-background; @nav-secondary-item-hover-color: @global-secondary-background; @nav-secondary-item-active-color: @global-secondary-background; @nav-secondary-subtitle-hover-color: @global-secondary-background; @nav-secondary-subtitle-active-color: @global-secondary-background; // // Navbar // @navbar-nav-item-hover-color: @global-secondary-background; @navbar-nav-item-line-hover-background: @global-secondary-background; @navbar-nav-item-line-onclick-background: @global-secondary-background; @navbar-nav-item-line-active-background: @global-secondary-background; @navbar-dropdown-nav-item-hover-color: @global-secondary-background; @navbar-dropdown-nav-sublist-item-hover-color: @global-secondary-background; @navbar-toggle-hover-color: @global-secondary-background; // // Search // @search-toggle-hover-color: @global-secondary-background; // // Section // @section-muted-background: #f6f8fb; // // Text // @text-primary-color: @global-secondary-background; // // Tile // @tile-muted-background: #f6f8fb; assets/uikit-themes/master-morgan-consulting/styles/white-yellow.less000064400000001166151666572410022302 0ustar00// // Global // @global-color: #818181; @global-emphasis-color: #2b2b2b; @global-muted-color: #b2b0b3; @global-danger-background: #d55d50; @global-primary-background: #edbb5f; @global-secondary-background: #2b2b2b; @global-success-background: #7cc685; @global-warning-background: #eb9658; // // Card // @card-badge-background: fade(@global-secondary-background, 80%); // // Inverse // @inverse-button-primary-color: @global-inverse-color; // // Offcanvas // @offcanvas-bar-background: #2b2b2b; @offcanvas-bar-color-mode: light; // // Table // @table-row-active-background: #f4f4f4; assets/uikit-themes/master-morgan-consulting/_import.less000064400000052067151666572410020005 0ustar00@internal-fonts: 'Montserrat:400,500'; @global-font-family: Montserrat; @global-font-size: 15px; @global-line-height: 1.74; @global-2xlarge-font-size: 45px; @global-xlarge-font-size: 36px; @global-large-font-size: 24px; @global-medium-font-size: 20px; @global-small-font-size: 13px; @global-primary-font-family: inherit; @global-primary-font-weight: inherit; @global-primary-text-transform: inherit; @global-primary-letter-spacing: 0; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: inherit; @global-secondary-text-transform: none; @global-secondary-letter-spacing: 0; @global-secondary-font-style: inherit; @global-color: #6C6D74; @global-emphasis-color: #2D2E33; @global-muted-color: #a3a4a8; @global-link-color: #b7a088; @global-link-hover-color: darken(@global-link-color, 15%); @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #F7F7F7; @global-primary-background: #b7a088; @global-secondary-background: #1e3684; @global-success-background: #3DC372; @global-warning-background: #FF9E45; @global-danger-background: #E44E56; @global-border-width: 1px; @global-border: #E5E5E7; @global-border-radius: 0; @global-small-box-shadow: 0 1px 4px rgba(0,0,0,0.14); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08); @global-large-box-shadow: 0 8px 18px rgba(0,0,0,0.14); @global-xlarge-box-shadow: 0 14px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 20px; @global-small-gutter: 10px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 38px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-code-color: @global-emphasis-color; @base-em-color: @global-emphasis-color; @base-h1-font-size: @base-h1-font-size-m * 0.8; // 36px @base-h2-font-size: @base-h2-font-size-m * 0.78; // 28px @base-h5-font-size: 18px; @base-h6-font-size: 16px; @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 2px; @base-blockquote-padding-left: 30px; @base-pre-padding: 10px; @base-pre-background: @global-background; @base-code-border-width: @global-border-width; @base-code-border: @global-border; @base-blockquote-border-mode: -left; @base-blockquote-border-width: 3px; @base-blockquote-border: @global-primary-background; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @base-code-border-radius: 1px; @base-pre-border-radius: @global-border-radius; @inverse-base-link-hover-color: fade(@inverse-global-color, 70%); @inverse-base-code-border: @inverse-global-border; @heading-xlarge-font-size-m: 90px; @heading-medium-font-size-l: 64px; @heading-xlarge-font-size-l: 120px; @heading-bullet-border-width: ~'calc(2px + 0.05em)'; @heading-bullet-border: @global-secondary-background; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-morgan-consulting/images/divider-icon.svg"; @list-margin-top: 4px; @list-bullet-icon-color: darken(@global-border, 8%); @internal-list-bullet-image: "../../../../uikit-themes/master-morgan-consulting/images/list-bullet.svg"; @description-list-term-font-size: @global-small-font-size; @table-row-active-background: #f2f4f9; @inverse-table-row-active-background: fadeout(@inverse-global-muted-background, 6%); @icon-link-hover-color: @global-secondary-background; @icon-link-active-color: @global-secondary-background; @icon-button-background: @global-background; @icon-button-color: @global-color; @icon-button-hover-background: @global-background; @icon-button-hover-color: @global-secondary-background; @icon-button-active-background: @global-secondary-background; @icon-button-active-color: @global-inverse-color; @icon-button-border-width: @global-border-width; @icon-button-border: @global-border; @icon-button-hover-border: @icon-button-hover-color; @icon-button-active-border: @icon-button-active-background; @inverse-icon-button-background: transparent; @inverse-icon-button-color: @inverse-global-color; @inverse-icon-button-hover-background: transparent; @inverse-icon-button-hover-color: @inverse-global-emphasis-color; @inverse-icon-button-active-background: @inverse-global-primary-background; @inverse-icon-button-active-color: @inverse-global-inverse-color; @inverse-icon-button-border: @inverse-global-border; @inverse-icon-button-hover-border: @inverse-global-color; @form-range-track-height: 2px; @form-range-thumb-height: 12px; @form-range-thumb-background: @global-secondary-background; @form-background: @global-background; @form-focus-background: @global-background; @form-danger-color: @form-color; @form-success-color: @form-color; @form-radio-background: transparent; @form-stacked-margin-bottom: 5px; @form-label-font-size: @global-small-font-size; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-secondary-background; @form-disabled-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @form-focus-border; @form-radio-border-width: @global-border-width; @form-radio-border: darken(@global-border, 10%); @form-radio-focus-border: darken(@global-primary-background, 10%); @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: fade(@global-inverse-color, 24%); @inverse-form-focus-border: @global-inverse-color; @inverse-form-radio-border: fade(@global-inverse-color, 24%); @inverse-form-radio-focus-border: @inverse-global-primary-background; @button-line-height: 38px; @button-font-size: 14px; @button-large-font-size: @button-font-size; @button-padding-horizontal: 25px; @button-default-color: @global-color; @button-default-hover-background: transparent; @button-default-active-background: transparent; @button-default-active-color: @global-color; @button-primary-hover-background: transparent; @button-primary-hover-color: @global-primary-background; @button-primary-active-background: transparent; @button-primary-active-color: fade(@button-primary-hover-color, 80%); @button-secondary-hover-background: transparent; @button-secondary-hover-color: @global-secondary-background; @button-secondary-active-background: transparent; @button-secondary-active-color: fade(@button-secondary-hover-color, 80%); @button-danger-hover-background: transparent; @button-danger-hover-color: @global-danger-background; @button-danger-active-background: transparent; @button-danger-active-color: fade(@button-danger-hover-color, 80%); @button-link-hover-color: @global-primary-background; @button-text-mode: ~''; @button-text-icon-mode: arrow; @button-border-width: @global-border-width; @button-default-hover-border: @global-border; @button-default-active-border: darken(@global-border, 10%); @button-primary-hover-border: @global-primary-background; @button-primary-active-border: fade(@global-primary-background, 60%); @button-secondary-hover-border: @global-secondary-background; @button-secondary-active-border: fade(@global-secondary-background, 60%); @button-danger-hover-border: @global-danger-background; @button-danger-active-border: fade(@global-danger-background, 60%); @button-border-radius: 500px; @inverse-button-primary-background: @global-primary-background; @inverse-button-primary-color: @inverse-global-emphasis-color; @inverse-button-primary-hover-background: @inverse-global-emphasis-color; @inverse-button-primary-active-background: darken(@inverse-global-emphasis-color, 10%); @inverse-button-link-hover-color: @inverse-global-color; @section-muted-background: darken(@global-muted-background, 2%); @container-max-width: 1040px; @container-large-max-width: 1300px; @card-badge-height: 27px; @card-badge-padding-horizontal: 13px; @card-badge-background: @global-secondary-background; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-primary-background: lighten(@global-primary-background, 3%); @card-primary-hover-background: lighten(@card-primary-background, 7%); @card-secondary-background: lighten(@global-secondary-background, 3%); @card-secondary-hover-background: lighten(@card-secondary-background, 5%); @card-hover-border: @global-border; @card-badge-border-radius: 500px; @card-hover-box-shadow: @global-medium-box-shadow; @card-default-box-shadow: @global-medium-box-shadow; @card-default-hover-box-shadow: @global-large-box-shadow; @marker-hover-background: @global-secondary-background; @totop-padding: 9px 12px; @totop-color: #fff; @totop-hover-color: @global-primary-background; @totop-active-color: @global-primary-background; @totop-background: @global-primary-background; @totop-hover-background: lighten(@global-primary-background, 28%); @totop-active-background: lighten(@global-primary-background, 28%); @inverse-totop-background: @global-primary-background; @inverse-totop-hover-background: darken(@global-primary-background, 10%); @inverse-totop-active-background: @global-primary-background; @alert-background: @global-background; @alert-primary-background: @global-background; @alert-success-background: @global-background; @alert-warning-background: @global-background; @alert-danger-background: @global-background; @alert-border-width: @global-border-width; @alert-border: @global-border; @alert-primary-border: @global-primary-background; @alert-success-border: @global-success-background; @alert-warning-border: @global-warning-background; @alert-danger-border: @global-danger-background; @badge-font-size: 10px; @badge-font-weight: 500; @inverse-badge-color: @global-emphasis-color; @label-padding-horizontal: 6px; @label-background: transparent; @label-color: @global-secondary-background; @label-success-background: transparent; @label-success-color: @global-success-background; @label-warning-background: transparent; @label-warning-color: @global-warning-background; @label-danger-background: transparent; @label-danger-color: @global-danger-background; @label-border-width: @global-border-width; @label-border: @global-secondary-background; @label-success-border: @global-success-background; @label-warning-border: @global-warning-background; @label-danger-border: @global-danger-background; @inverse-label-background: transparent; @inverse-label-color: @inverse-global-emphasis-color; @inverse-label-border: @inverse-global-primary-background; @article-title-font-size-m: @global-xlarge-font-size; @article-title-font-size: @article-title-font-size-m * 0.9; @article-meta-font-size: 14px; @comment-title-font-size: @global-font-size; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-default-icon-padding: 9px; @search-navbar-padding-horizontal: 14px; @search-navbar-background: @global-muted-background; @search-medium-padding-horizontal: 20px; @search-medium-background: @global-muted-background; @search-medium-font-size: @global-medium-font-size; @search-large-padding-horizontal: 30px; @search-large-background: @global-muted-background; @search-large-font-size: @global-xlarge-font-size; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-primary-background; @search-navbar-icon-color: @global-emphasis-color; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-secondary-background; @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: @search-navbar-border; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-border; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-border; @search-navbar-border-radius: 500px; @search-medium-border-radius: 500px; @search-large-border-radius: 500px; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-medium-background: @inverse-global-muted-background; @inverse-search-large-background: @inverse-global-muted-background; @inverse-search-navbar-icon-color: @global-inverse-color; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-border: @inverse-global-border; @inverse-search-navbar-focus-border: @inverse-global-border; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @inverse-global-border; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @inverse-global-border; @accordion-item-margin-top: 14px; @accordion-title-font-size: 18px; @accordion-title-hover-color: @global-link-color; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 7px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 7px)'; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-item-padding-vertical: 6px; @dropdown-nav-divider-margin-horizontal: -@dropdown-padding; @dropdown-nav-font-size: @global-small-font-size; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-box-shadow: @global-small-box-shadow; @dropbar-padding-top: 0; @dropbar-padding-bottom: 25px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 8px 8px -6px fade(@global-emphasis-color, 10%); @dropbar-bottom-box-shadow: 0 -8px 8px -6px fade(@global-emphasis-color, 10%); @dropbar-left-box-shadow: 14px 0 12px -14px fade(@global-emphasis-color, 10%); @dropbar-right-box-shadow: -14px 0 12px -14px fade(@global-emphasis-color, 10%); @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @countdown-item-font-family: @global-secondary-font-family; @countdown-item-font-weight: @global-secondary-font-weight; @countdown-item-text-transform: @global-secondary-text-transform; @countdown-item-letter-spacing: 0; @countdown-item-font-style: @global-secondary-font-style; @nav-item-padding-vertical: 8px; @nav-divider-margin-vertical: 15px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @nav-default-item-hover-color; @nav-default-header-color: @global-muted-color; @nav-default-sublist-item-hover-color: @nav-default-item-hover-color; @nav-primary-line-height: 1.4; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @nav-primary-item-hover-color; @nav-primary-subtitle-font-size: 14px; @nav-primary-sublist-item-hover-color: @nav-primary-item-hover-color; @nav-secondary-font-size: 16px; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-subtitle-active-color: @global-primary-background; @nav-secondary-sublist-font-size: @global-font-size; @nav-xlarge-font-size-m: 90px; @nav-xlarge-font-size-l: 120px; @nav-dividers-margin-top: 7px; @nav-secondary-margin-top: 20px; @nav-default-subtitle-color: @global-muted-color; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-line-height: 1.5; @nav-secondary-subtitle-line-height: 1.5; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-nav-item-height: 100px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-font-size: 15px; @navbar-nav-item-hover-color: @global-primary-background; @navbar-nav-item-onclick-color: @navbar-nav-item-hover-color; @navbar-nav-item-active-color: @navbar-nav-item-hover-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-primary-background; @navbar-dropdown-margin: -15px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 25px; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-dropbar-padding-bottom: (@navbar-dropdown-dropbar-padding-top + 30px); @navbar-dropdown-nav-item-hover-color: @global-primary-background; @navbar-dropdown-nav-item-active-color: @navbar-dropdown-nav-item-hover-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-primary-background; @navbar-gap-m: 40px; @navbar-nav-gap-m: 40px; @navbar-nav-item-padding-horizontal-m: 0; @navbar-nav-item-line-active-mode: false; @navbar-dropdown-nav-item-padding-vertical: 6px; @navbar-dropdown-nav-divider-margin-vertical: 8px; @navbar-nav-item-font-weight: normal; @navbar-nav-item-text-transform: none; @navbar-nav-item-letter-spacing: 0; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-line-height: 1.3; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-dropdown-nav-subtitle-line-height: 1.4; @navbar-dropdown-box-shadow: @global-small-box-shadow; @subnav-item-color: @global-color; @subnav-item-hover-color: @global-emphasis-color; @subnav-divider-border-height: 1em; @subnav-pill-item-padding-vertical: 7px; @subnav-pill-item-padding-horizontal: 14px; @subnav-item-font-size: 15px; @inverse-subnav-item-color: @inverse-global-color; @inverse-subnav-item-hover-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-hover-color: @inverse-global-emphasis-color; @breadcrumb-divider-margin-horizontal: 15px; @breadcrumb-divider-color: @global-border; @pagination-margin-horizontal: 16px; @pagination-item-padding-vertical: 3px; @pagination-item-padding-horizontal: 2px; @pagination-item-color: @global-color; @pagination-item-hover-color: @global-secondary-background; @pagination-item-active-color: @global-emphasis-color; @pagination-item-height: 30px; @pagination-item-font-size: @global-small-font-size; @pagination-item-letter-spacing: 0; @pagination-item-border-mode: -bottom; @pagination-item-border-width: @global-border-width; @pagination-item-hover-border: @global-border; @pagination-item-active-border: @global-secondary-background; @inverse-pagination-item-hover-color: @inverse-global-emphasis-color; @inverse-pagination-item-hover-border: @inverse-global-border; @inverse-pagination-item-active-border: @inverse-global-primary-background; @tab-item-padding-vertical: 10px; @tab-item-font-size: 15px; @tab-item-line-height: 20px; @tab-item-letter-spacing: 0; @tab-border-width: 0; @tab-item-border-width: 3px; @tab-item-hover-border: @global-primary-background; @inverse-tab-item-hover-color: @inverse-global-muted-color; @inverse-tab-border: transparent; @inverse-tab-item-hover-border: @inverse-global-border; @slidenav-padding-vertical: 10px; @slidenav-padding-horizontal: 12px; @slidenav-color: @global-inverse-color; @slidenav-hover-color: @global-inverse-color; @slidenav-active-color: @global-inverse-color; @slidenav-large-padding-vertical: 16px; @slidenav-large-padding-horizontal: 20px; @slidenav-background: @global-secondary-background; @slidenav-hover-background: darken(@global-secondary-background, 5%); @slidenav-active-background: darken(@global-secondary-background, 10%); @inverse-slidenav-color: @global-emphasis-color; @inverse-slidenav-hover-color: @inverse-slidenav-color; @inverse-slidenav-active-color: @inverse-slidenav-color; @inverse-slidenav-background: @global-inverse-color; @inverse-slidenav-hover-background: fade(@global-inverse-color, 70%); @inverse-slidenav-active-background: fade(@global-inverse-color, 60%); @dotnav-margin-horizontal: 14px; @dotnav-item-width: 11px; @dotnav-item-background: fadeout(@global-color, 90%); @dotnav-item-hover-background: @global-secondary-background; @dotnav-item-onclick-background: @global-secondary-background; @dotnav-item-active-background: @global-secondary-background; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-primary-background; @iconnav-item-active-color: @global-primary-background; @text-lead-font-size: 20px; @text-meta-font-size: 14px; @text-large-font-size: 20px; @text-lead-font-weight: normal; @internal-text-background-color-gradient: linear-gradient(135deg, lighten(@global-secondary-background, 15%), @global-secondary-background); @logo-font-size: @global-medium-font-size; @logo-font-family: @global-primary-font-family; @logo-font-weight: 500; @logo-text-transform: uppercase; @inverse-global-muted-color: fade(@inverse-global-color, 40%); @inverse-global-inverse-color: @global-primary-background; @inverse-global-primary-background: @inverse-global-emphasis-color; @inverse-global-border: fade(@inverse-global-color, 10%);assets/uikit-themes/master-devstack/styles/dark-purple.less000064400000031766151666572410020246 0ustar00// // Global // @global-color: rgba(255, 255, 255, 0.9); @global-emphasis-color: #fff; @global-inverse-color: #000; @global-link-color: #a92ae7; @global-link-hover-color: #701699; @global-muted-color: rgba(252, 252, 255, 0.35); @global-background: #303751; @global-danger-background: #e81898; @global-muted-background: #2a3049; @global-primary-background: #be2af0; @global-secondary-background: #141826; @global-success-background: #09e07a; @global-warning-background: #aac900; @global-border: #272c42; @global-large-box-shadow: -4px -4px 12px rgba(255, 255, 255, 0.03), 4px 4px 12px rgba(0, 0, 0, 0.2); @global-medium-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.03), 2px 2px 4px rgba(0, 0, 0, 0.2); @global-small-box-shadow: -1px -1px 1px rgba(255, 255, 255, 0.03), 1px 1px 1px rgba(0, 0, 0, 0.2); @global-xlarge-box-shadow: -10px -10px 30px rgba(255, 255, 255, 0.03), 10px 10px 30px rgba(0, 0, 0, 0.2); // // Theme // @theme-page-container-color-mode: light; @internal-theme-page-border-gradient: linear-gradient(90deg, #732edf 10%, #a92ae7 70%, #c729f4 100%); @internal-theme-transition-border-border-gradient: linear-gradient(51deg, #732edf 0%, #a92ae7 40%, #c729f4 100%); // // Accordion // @accordion-item-box-shadow: inset 0 1px rgba(255, 255, 255, 0.04); // // Alert // @alert-background: #394160; @alert-primary-color: @global-emphasis-color; @alert-success-color: @global-emphasis-color; @alert-warning-color: @global-emphasis-color; @alert-danger-color: @global-emphasis-color; // // Badge // @badge-background: #ffffff; // // Base // @base-ins-background: rgba(0, 0, 0, 0.2); @base-mark-background: rgba(0, 0, 0, 0.2); @base-hr-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); @base-pre-background: #394160; @base-selection-color: #ffffff; // // Button // @button-default-hover-color: @global-emphasis-color; @button-default-active-color: @global-emphasis-color; @button-primary-background: #a92ae7; @button-primary-box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.04), 5px 5px 15px rgba(0, 0, 0, 0.2); @button-primary-color: @global-emphasis-color; @button-primary-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.04), 2px 2px 5px rgba(0, 0, 0, 0.2); @button-primary-hover-color: @global-emphasis-color; @button-primary-active-color: @global-emphasis-color; @button-secondary-border: rgba(255, 255, 255, 0.7); @button-secondary-box-shadow: inset 3px 3px 10px rgba(0, 0, 0, 0.1), -4px -4px 12px rgba(255, 255, 255, 0.04), 4px 4px 12px rgba(0, 0, 0, 0.15); @button-secondary-color: @global-emphasis-color; @button-secondary-hover-background: @global-emphasis-color; @button-secondary-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.04), 2px 2px 4px rgba(0, 0, 0, 0.2); @button-secondary-hover-color: #be2af0; @button-secondary-active-background: rgba(255, 255, 255, 0.8); @button-secondary-active-box-shadow: -1px -1px 1px rgba(255, 255, 255, 0.04), 1px 1px 1px rgba(0, 0, 0, 0.2); @button-secondary-active-color: #be2af0; @button-danger-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); @button-danger-color: @global-emphasis-color; @button-danger-hover-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); @button-danger-hover-color: @global-emphasis-color; @button-danger-active-color: @global-emphasis-color; @internal-button-primary-gradient: linear-gradient(51deg, #732edf 50%, #a92ae7 75%, #db29f4 100%); @internal-button-primary-active-gradient: linear-gradient(51deg, #731fd6 50%, #a903dc 70%, #db00e8 100%); @internal-button-secondary-hover-gradient: none; @internal-button-secondary-active-gradient: none; // // Card // @card-badge-color: @inverse-global-inverse-color; @internal-card-badge-gradient: linear-gradient(51deg, #732edf 25%, #a92ae7 60%, #c429f2 100%); @card-hover-box-shadow: -10px -10px 20px rgba(115, 130, 190, 0.08), 10px 10px 20px rgba(27, 30, 45, 0.3); @card-default-color-mode: light; @card-default-box-shadow: -10px -10px 20px rgba(115, 130, 190, 0.08), 10px 10px 20px rgba(27, 30, 45, 0.2); @card-primary-box-shadow: -10px -10px 20px rgba(115, 130, 190, 0.08), 5px 5px 20px rgba(19, 2, 25, 0.14); @card-primary-color: fade(@global-emphasis-color, 70%); @card-primary-hover-box-shadow: -2px -2px 5px rgba(115, 130, 190, 0.08), 2px 2px 4px rgba(19, 2, 25, 0.14); @card-secondary-box-shadow: -10px -10px 20px rgba(115, 130, 190, 0.08), 10px 10px 20px rgba(27, 30, 45, 0.3); @card-secondary-color: fade(@global-emphasis-color, 70%); @card-secondary-hover-box-shadow: -2px -2px 5px rgba(115, 130, 190, 0.08), 2px 2px 4px rgba(27, 30, 45, 0.3); @internal-card-default-gradient: linear-gradient(51deg, #303751 0%, #323a52 100%); @internal-card-primary-gradient: linear-gradient(51deg, #732edf 0%, #a92ae7 40%, #c729f4 100%); @internal-card-secondary-gradient: linear-gradient(40deg, #1d2337 0%, #262d47 90%); // // Description list // @description-list-divider-term-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04); // // Divider // @divider-icon-line-border: @global-border; @divider-icon-line-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); @internal-divider-small-border-gradient: linear-gradient(40deg, #732edf 0%, #a92ae7 40%, #c729f4 100%); // // Dotnav // @dotnav-item-background: rgba(23, 27, 41, 0.5); @dotnav-item-box-shadow: inset 1px 1px 1px rgba(0,0,0, 0.15), 1px 1px 1px rgba(255, 255, 255, 0.05); // // Dropbar // @dropbar-color-mode: light; @dropbar-top-box-shadow: 0 33px 45px -37px rgba(0, 0, 0, 0.2); @dropbar-bottom-box-shadow: 0 -33px 45px -37px rgba(0, 0, 0, 0.2); @dropbar-left-box-shadow: 33px 0 45px -37px rgba(0, 0, 0, 0.2); @dropbar-right-box-shadow: -33px 0 45px -37px rgba(0, 0, 0, 0.2); // // Dropdown // @dropdown-color-mode: light; // // Form // @form-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.27), inset -2px -2px 5px rgba(255, 255, 255, 0.05); @form-focus-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.27), inset -1px -1px 2px rgba(255, 255, 255, 0.05); @form-disabled-background: lighten(@global-background, 2%); @form-disabled-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.27), inset -1px -1px 2px rgba(255, 255, 255, 0.05); @form-range-thumb-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); @form-range-track-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08); @form-range-track-focus-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08); @form-radio-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.5), inset -1px -1px 2px rgba(255, 255, 255, 0.2); @form-radio-focus-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.5), inset -1px -1px 1px rgba(255, 255, 255, 0.2); // // Grid // @grid-divider-border: @global-border; @grid-divider-horizontal-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.04); @grid-divider-vertical-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); // // Heading // @heading-divider-border: @global-border; @heading-divider-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); @heading-line-border: @global-border; @heading-line-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); // // Inverse // @inverse-global-color-mode: dark; @inverse-navbar-nav-item-hover-color: linear-gradient(90deg, #732edf 0%, #a92ae7 40%, #c729f4 100%); @inverse-search-color: @global-inverse-color; @inverse-search-icon-color: @global-secondary-background; @inverse-search-placeholder-color: @global-secondary-background; // // Label // @label-color: @global-emphasis-color; @label-success-color: @global-emphasis-color; @label-warning-color: @global-emphasis-color; @label-danger-color: @global-emphasis-color; // // Lightbox // @lightbox-color-mode: light; // // Link // @link-heading-hover-color: @global-emphasis-color; // // List // @list-divider-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04); @list-striped-background: rgba(255, 255, 255, 0.05); // // Nav // @nav-default-divider-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); @nav-primary-divider-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); @nav-dividers-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04); // // Navbar // @navbar-color-mode: light; @navbar-dropdown-color-mode: light; @navbar-dropdown-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); @navbar-nav-item-color: rgba(255, 255, 255, 0.5); @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-nav-item-onclick-color: @global-emphasis-color; @navbar-nav-item-active-color: @global-emphasis-color; @navbar-nav-item-line-hover-background: @global-emphasis-color; @navbar-nav-item-line-onclick-background: @global-emphasis-color; @navbar-nav-item-line-active-background: @global-emphasis-color; @internal-navbar-nav-item-line-gradient: ~''; // // Notification // @notification-message-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); // // Offcanvas // @offcanvas-bar-color-mode: light; @offcanvas-overlay-background: rgba(30, 35, 50, 0.5); // // Overlay // @overlay-default-color-mode: light; // // Pagination // @pagination-item-color: rgba(255, 255, 255, 0.65); // // Progress // @progress-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.5), inset -1px -1px 1px rgba(255, 255, 255, 0.1); @internal-progress-bar-gradient: linear-gradient(40deg, #732edf 0%, #a92ae7 40%, #c729f4 100%); // // Search // @search-default-input-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.27), inset -2px -2px 5px rgba(255, 255, 255, 0.05); @search-default-input-focus-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.05); @search-default-focus-background: darken(@global-background, 1%); @search-navbar-input-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.27), inset -2px -2px 5px rgba(255, 255, 255, 0.05); @search-navbar-input-focus-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.05); @search-navbar-focus-background: darken(@global-background, 1%); @search-medium-input-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.27), inset -2px -2px 5px rgba(255, 255, 255, 0.05); @search-medium-input-focus-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.05); @search-medium-focus-background: darken(@global-background, 1%); @search-large-input-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.27), inset -2px -2px 5px rgba(255, 255, 255, 0.05); @search-large-input-focus-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.05); @search-medium-focus-background: darken(@global-background, 1%); // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @internal-section-primary-gradient: linear-gradient(40deg, #732edf 0%, #a92ae7 40%, #bd29f0 100%); // // Slidenav // @slidenav-hover-color: @global-emphasis-color; @slidenav-active-color: @global-emphasis-color; // // Subnav // @subnav-item-color: fade(@global-muted-color, 50%); @subnav-item-hover-color: @global-emphasis-color; @subnav-item-active-color: @global-emphasis-color; // // Tab // @tab-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); // // Table // @table-divider-box-shadow: inset 0 2px 0 0 rgba(255, 255, 255, 0.04); @table-hover-row-background: rgba(42, 48, 73, 0.4); // // Text // @text-lead-color: rgba(255, 255, 255, 0.65); @text-secondary-color: #a89edf; @internal-text-background-color-gradient: linear-gradient(40deg, #732edf 0%, #a92ae7 40%, #c729f4 100%); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @internal-tile-primary-gradient: linear-gradient(40deg, #732edf 0%, #a92ae7 40%, #c729f4 100%); // // Utility // @box-shadow-bottom-background: rgba(0, 0, 0, 0.4); // // Woocommerce // @woocommerce-rating-background-color: fade(@global-muted-color, 15%); // Miscellaneous // ======================================================================== .hook-button-misc() { .uk-tile-primary .uk-button-primary, .uk-card-primary .uk-button-primary, .uk-section-primary .uk-button-primary, .uk-tile-primary .uk-button-default, .uk-card-primary .uk-button-default, .uk-section-primary .uk-button-default { background: @global-emphasis-color; color: #303751; &:hover { color: #be2af0; } } } .hook-link-misc() { :where(.uk-tile-primary) a, :where(.uk-card-primary) a, :where(.uk-section-primary) a { color: #fdac5c; &:hover { color: #7c2c13; } } } assets/uikit-themes/master-devstack/styles/dark-red.less000064400000031134151666572410017476 0ustar00// // Global // @global-color: rgba(255, 255, 255, 0.90); @global-emphasis-color: #ffffff; @global-inverse-color: #000; @global-link-color: #e0271a; @global-muted-color: rgba(252, 252, 255, 0.4); @global-link-hover-color: #e65522; @global-background: #1e2225; @global-danger-background: #ff1350; @global-muted-background: #151a1d; @global-primary-background: #ff3b2e; @global-secondary-background: #12161a; @global-success-background: #44c209; @global-warning-background: #ff8313; @global-border: #15181a; @global-large-box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.03), 5px 5px 15px rgba(0, 0, 0, 0.35); @global-medium-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.03), 2px 2px 4px rgba(0, 0, 0, 0.35); @global-small-box-shadow: -1px -1px 1px rgba(255, 255, 255, 0.03), 1px 1px 1px rgba(0, 0, 0, 0.35); @global-xlarge-box-shadow: -10px -10px 30px rgba(255, 255, 255, 0.03), 10px 10px 30px rgba(0, 0, 0, 0.35); // // Theme // @theme-page-container-color-mode: light; @internal-theme-page-border-gradient: linear-gradient(90deg, #e4212e 10%, #e0271a 65%, #e65522 100%); @internal-theme-transition-border-border-gradient: linear-gradient(51deg, #ee3040 0%, #e4212e 15%, #e65522 100%); // // Accordion // @accordion-item-box-shadow: inset 0 1px rgba(255, 255, 255, 0.04); // // Alert // @alert-background: #15181a; @alert-primary-color: #ffffff; @alert-success-color: #ffffff; @alert-warning-color: #ffffff; @alert-danger-color: #ffffff; // // Badge // @badge-background: #ffffff; // // Base // @base-hr-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); @base-pre-background: #1a1e21; @base-selection-color: #ffffff; // // Breadcrumb // @breadcrumb-item-disabled-color: rgba(252, 252, 255, 0.25); // // Button // @button-default-background: #262a2c; @button-default-hover-color: #ffffff; @button-default-active-color: #ffffff; @button-primary-background: #ff3b2e; @button-primary-box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.03), 5px 5px 15px rgba(0, 0, 0, 0.35); @button-primary-color: #ffffff; @button-primary-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.03), 2px 2px 5px rgba(0, 0, 0, 0.35); @button-primary-hover-color: #ffffff; @button-primary-active-color: #ffffff; @button-secondary-border: rgba(255, 255, 255, 0.7); @button-secondary-box-shadow: inset 3px 3px 10px rgba(0, 0, 0, 0.35), -5px -5px 15px rgba(255, 255, 255, 0.03), 5px 5px 15px rgba(0, 0, 0, 0.35); @button-secondary-color: #ffffff; @button-secondary-hover-background: #ffffff; @button-secondary-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.03), 2px 2px 4px rgba(0, 0, 0, 0.35); @button-secondary-hover-color: #ff3b2e; @button-secondary-active-background: rgba(255, 255, 255, 0.8); @button-secondary-active-box-shadow: -1px -1px 1px rgba(255, 255, 255, 0.03), 1px 1px 1px rgba(0, 0, 0, 0.35); @button-secondary-active-color: #ff3b2e; @button-danger-box-shadow: 5px 5px 15px rgba(172, 0, 44, 0.3); @button-danger-color: #ffffff; @button-danger-hover-box-shadow: 2px 2px 5px rgba(172, 0, 44, 0.3); @button-danger-hover-color: #ffffff; @button-danger-active-color: #ffffff; @internal-button-primary-gradient: linear-gradient(51deg, #ee3040 50%, #e4212e 65%, #e65522 100%); @internal-button-primary-active-gradient: linear-gradient(51deg, #eb0032 50%, #e5001d 70%, #e54000 100%); @internal-button-secondary-hover-gradient: none; @internal-button-secondary-active-gradient: none; // // Card // @card-badge-color: @inverse-global-inverse-color; @internal-card-badge-gradient: linear-gradient(51deg, #ee3040 35%, #e4212e 50%, #e65522 100%); @card-hover-box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.04), 8px 8px 20px rgba(0, 0, 0, 0.35); @card-default-background: #202326; @card-default-color-mode: light; @card-default-box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.04), 8px 8px 20px rgba(0, 0, 0, 0.35); @card-primary-box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.03), 8px 8px 20px rgba(46, 3, 0, 0.4); @card-primary-color: rgba(255, 255, 255, 0.7); @card-primary-hover-box-shadow: -2px -2px 10px rgba(255, 255, 255, 0.04), 2px 2px 5px rgba(46, 3, 0, 0.4); @card-secondary-box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.04), 8px 8px 20px rgba(0, 0, 0, 0.35); @card-secondary-color: rgba(255, 255, 255, 0.7); @card-secondary-hover-box-shadow: -2px -2px 10px rgba(44, 49, 54, 0.7), 2px 2px 5px rgba(0, 0, 0, 0.35); @internal-card-primary-gradient: linear-gradient(51deg, #ee3040 0%, #e4212e 15%, #e65522 100%); @internal-card-secondary-gradient: linear-gradient(40deg, #08090b 0%, #12161a, 90%); // // Description list // @description-list-divider-term-box-shadow: inset 0 1px rgba(255, 255, 255, 0.04); // // Divider // @divider-icon-line-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); @internal-divider-small-border-gradient: linear-gradient(40deg, #e4212e 0%, #e0271a 40%, #e65522 100%); // // Dotnav // @dotnav-item-background: rgba(0, 0, 0, 0.35); @dotnav-item-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.2), 1px 1px 1px rgba(82, 89, 98, 0.2); // // Dropbar // @dropbar-color-mode: light; @dropbar-top-box-shadow: 0 33px 45px -37px rgba(0, 0, 0, 0.2); @dropbar-bottom-box-shadow: 0 -33px 45px -37px rgba(0, 0, 0, 0.2); @dropbar-left-box-shadow: 33px 0 45px -37px rgba(0, 0, 0, 0.2); @dropbar-right-box-shadow: -33px 0 45px -37px rgba(0, 0, 0, 0.2); // // Dropdown // @dropdown-color-mode: light; // // Form // @form-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.35), inset -2px -2px 5px rgba(82, 89, 98, 0.2); @form-focus-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.35), inset -1px -1px 2px rgba(82, 89, 98, 0.2); @form-disabled-background: #23272b; @form-disabled-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.35), inset -1px -1px 2px rgba(82, 89, 98, 0.2); @form-range-thumb-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35); @form-range-track-box-shadow: 0 1px 0 rgba(61, 66, 73, 0.4); @form-range-track-focus-box-shadow: 0 1px 0 #3d4249; @form-radio-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.5), inset -1px -1px 2px rgba(82, 89, 98, 0.4); @form-radio-focus-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.5), inset -1px -1px 1px rgba(82, 89, 98, 0.4); // // Grid // @grid-divider-horizontal-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.04); @grid-divider-vertical-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); // // Heading // @heading-divider-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); @heading-line-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); // // Icon // @icon-button-background: #23272b; // // Inverse // @inverse-global-color-mode: dark; // // Label // @label-color: #ffffff; @label-success-color: #ffffff; @label-warning-color: #ffffff; @label-danger-color: #ffffff; // // Lightbox // @lightbox-color-mode: light; // // Link // @link-heading-hover-color: #ffffff; // // List // @list-divider-box-shadow: inset 0 1px rgba(255, 255, 255, 0.04); @list-striped-background: rgba(255, 255, 255, 0.04); // // Nav // @nav-default-divider-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); @nav-primary-divider-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); @nav-dividers-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04); // // Navbar // @navbar-color-mode: light; @navbar-dropdown-color-mode: light; @navbar-dropdown-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35); @navbar-nav-item-color: rgba(255, 255, 255, 0.4); @navbar-nav-item-hover-color: #ffffff; @navbar-nav-item-onclick-color: #ffffff; @navbar-nav-item-active-color: #ffffff; @navbar-nav-item-line-hover-background: #ffffff; @navbar-nav-item-line-onclick-background: #ffffff; @navbar-nav-item-line-active-background: #ffffff; @internal-navbar-nav-item-line-gradient: ~''; // // Notification // @notification-message-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); // // Offcanvas // @offcanvas-bar-color-mode: light; @offcanvas-overlay-background: rgba(18, 22, 26, 0.9); // // Overlay // @overlay-default-color-mode: light; // // Pagination // @pagination-item-background: #23272b; // // Progress // @progress-background: #15181a; @progress-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.35), inset -1px -1px 1px rgba(82, 89, 98, 0.2); @internal-progress-bar-gradient: linear-gradient(40deg, #e4212e 0%, #e0271a 40%, #e65522 100%); // // Search // @search-default-input-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.35), inset -2px -2px 5px rgba(82, 89, 98, 0.2); @search-default-input-focus-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.35), inset -1px -1px 2px rgba(82, 89, 98, 0.2); @search-navbar-input-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.35), inset -2px -2px 5px rgba(82, 89, 98, 0.2); @search-navbar-input-focus-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.35), inset -1px -1px 2px rgba(82, 89, 98, 0.2); @search-medium-input-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.35), inset -2px -2px 5px rgba(82, 89, 98, 0.2); @search-medium-input-focus-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.35), inset -1px -1px 2px rgba(82, 89, 98, 0.2); @search-large-input-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.35), inset -2px -2px 5px rgba(82, 89, 98, 0.2); @search-large-input-focus-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.35), inset -1px -1px 2px rgba(82, 89, 98, 0.2); // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @internal-section-primary-gradient: linear-gradient(40deg, #e4212e 0%, #e0271a 40%, #ed6424 100%); // // Slidenav // @slidenav-hover-color: #ffffff; @slidenav-active-color: #ffffff; // // Subnav // @subnav-item-color: @global-muted-color; @subnav-item-hover-color: @global-emphasis-color; @subnav-item-active-color: @global-emphasis-color; @subnav-pill-item-hover-background: #23272b; @subnav-pill-item-active-background: #23272b; // // Tab // @tab-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04); // // Table // @table-divider-box-shadow: inset 0 2px 0 0 rgba(255, 255, 255, 0.04); @table-hover-row-background: rgba(21, 26, 29, 0.2); // // Text // @text-secondary-color: #a3a3a3; @text-lead-color: rgba(255, 255, 255, 0.65); @internal-text-background-color-gradient: linear-gradient(40deg, #e4212e 0%, #e0271a 40%, #e65522 100%); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @internal-tile-primary-gradient: linear-gradient(40deg, #e4212e 0%, #e0271a 40%, #ed6424 100%); // // Tooltip // @tooltip-color: #ffffff; // // Utility // @box-shadow-bottom-background: rgba(0, 0, 0, 0.45); // // Woocommerce // @woocommerce-rating-background-color: fade(@global-muted-color, 15%); // Miscellaneous // ======================================================================== .hook-button-misc() { .uk-tile-primary .uk-button-primary, .uk-card-primary .uk-button-primary, .uk-section-primary .uk-button-primary, .uk-tile-primary .uk-button-default, .uk-card-primary .uk-button-default, .uk-section-primary .uk-button-default { background: @global-emphasis-color; color: #1e2225; box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.02), 5px 5px 15px rgba(0, 0, 0, 0.2); &:hover { color: #e0271a; box-shadow: -1px -1px 1px rgba(255, 255, 255, 0.02), 1px 1px 1px rgba(0, 0, 0, 0.2); } } .uk-tile-primary .uk-button-secondary, .uk-card-primary .uk-button-secondary, .uk-section-primary .uk-button-secondary { box-shadow: inset 3px 3px 10px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.02), 5px 5px 15px rgba(0, 0, 0, 0.2); &:hover { box-shadow: -1px -1px 1px rgba(255, 255, 255, 0.02), 1px 1px 1px rgba(0, 0, 0, 0.2); } } } .hook-link-misc() { :where(.uk-tile-primary) a, :where(.uk-card-primary) a, :where(.uk-section-primary) a { color: #ffa854; &:hover { color: #7c2c13; } } } assets/uikit-themes/master-devstack/styles/light-green.less000064400000007040151666572410020211 0ustar00// // Global // @global-color: #5B5D60; @global-emphasis-color: #1A1F23; @global-link-color: #5AD081; @global-muted-color: #8C8F90; @global-link-hover-color: #37C5B7; @global-danger-background: #FF4352; @global-primary-background: #65E38F; @global-secondary-background: #383942; @global-success-background: #2ADCB2; @global-warning-background: #ff9642; // // Theme // @internal-theme-page-border-gradient: linear-gradient(90deg, #46d4aa 10%, #72e475 65%); @internal-theme-transition-border-border-gradient: linear-gradient(40deg, #46d4aa 0%, #56dd9a 40%, #72e475 100%); // // Base // @base-ins-background: rgba(50, 210, 150, 0.11); @base-ins-color: #57BA78; @base-mark-background: rgba(50, 210, 150, 0.11); @base-mark-color: #57BA78; // // Button // @button-primary-background: #2FFA73; @button-text-color: @global-link-color; @button-text-hover-color: @global-link-color; @internal-button-primary-gradient: linear-gradient(51deg, #46d4aa 50%, #56dd9a 65%, #72e475 100%); @internal-button-secondary-hover-gradient: linear-gradient(51deg, #46d4aa 0%, #56dd9a 15%, #72e475 50%); @internal-button-primary-active-gradient: linear-gradient(51deg, #00c698 50%, #00cd84 65%, #2dd55c 100%); @internal-button-secondary-active-gradient: linear-gradient(51deg, #00c698 0%, #00cd84 15%, #2dd55c 50%); @inverse-button-default-box-shadow: 0 5px 15px rgba(0,0,0,0.15); @inverse-button-primary-box-shadow: 0 5px 15px rgba(0,0,0,0.15); // // Card // @internal-card-badge-gradient: linear-gradient(51deg, #46d4aa 50%, #56dd9a 65%, #72e475 100%); @internal-card-primary-gradient: linear-gradient(40deg, #46d4aa 0%, #56dd9a 40%, #72e475 100%); // // Divider // @internal-divider-small-border-gradient: linear-gradient(40deg, #46d4aa 0%, #56dd9a 40%, #72e475 100%); // // Nav // @nav-default-item-hover-color: @global-link-color; @nav-default-sublist-item-hover-color: @global-link-color; @nav-primary-item-hover-color: @global-link-color; @nav-primary-sublist-item-hover-color: @global-link-color; @nav-secondary-item-hover-color: @global-link-color; @nav-secondary-sublist-item-hover-color: @global-link-color; // // Navbar // @navbar-nav-item-hover-color: @global-link-color; @navbar-nav-item-onclick-color: @global-link-color; @navbar-nav-item-active-color: @global-link-color; @navbar-toggle-hover-color: @global-link-color; @navbar-dropdown-nav-item-hover-color: @global-link-color; @navbar-dropdown-nav-item-active-color: @global-link-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-link-color; @navbar-dropdown-nav-sublist-item-active-color: @global-link-color; @internal-navbar-nav-item-line-gradient: linear-gradient(90deg, #46d4aa 0%, #56dd9a 40%, #72e475 100%); // // Progress // @internal-progress-bar-gradient: linear-gradient(40deg, #46d4aa 0%, #56dd9a 40%, #72e475 100%); // // Section // @internal-section-primary-gradient: linear-gradient(40deg, #46d4aa 0%, #56dd9a 40%, #72e475 100%); // // Subnav // @subnav-item-hover-color: @global-link-color; @subnav-item-active-color: @global-link-color; // // Text // @text-primary-color: @global-link-color; @internal-text-background-color-gradient: linear-gradient(40deg, #46d4aa 0%, #56dd9a 40%, #72e475 100%); // // Tile // @internal-tile-primary-gradient: linear-gradient(40deg, #46d4aa 0%, #56dd9a 40%, #72e475 100%); assets/uikit-themes/master-devstack/styles/light-orange.less000064400000004041151666572410020362 0ustar00// // Global // @global-color: #6D6F72; @global-emphasis-color: #1A1A1A; @global-link-color: #FF450A; @global-muted-color: #94949A; @global-link-hover-color: #FE6C3E; @global-danger-background: #FF4352; @global-primary-background: #FF450A; @global-success-background: #2ADCB2; @global-warning-background: #E9D962; // // Theme // @internal-theme-page-border-gradient: linear-gradient(90deg, #fe3a6a 10%, #fe8c45 65%); @internal-theme-transition-border-border-gradient: linear-gradient(40deg, #fe3a6a 0%, #ff4a39 40%, #fe8c45 100%); // // Button // @button-primary-background: #ff3600; @button-danger-box-shadow: 2px 2px 5px rgba(172, 0, 44, 0.3); @internal-button-primary-gradient: linear-gradient(51deg, #fe3966 50%, #ff4538 70%, #ff8a42 100%); @internal-button-secondary-hover-gradient: linear-gradient(51deg, #fe3966 0%, #ff4538 20%, #ff8a42 50%); @internal-button-primary-active-gradient: linear-gradient(51deg, #f1025c 50%, #f12624 70%, #f17a24 100%); @internal-button-secondary-active-gradient: linear-gradient(51deg, #f1025c 0%, #f12624 20%, #f17a24 50%); // // Card // @internal-card-badge-gradient: linear-gradient(51deg, #fe3966 50%, #ff4538 70%, #ff8a42 100%); @internal-card-primary-gradient: linear-gradient(40deg, #fe3a6a 0%, #ff4a39 40%, #fe8c45 100%); // // Divider // @internal-divider-small-border-gradient: linear-gradient(40deg, #fe3a6a 0%, #ff4a39 40%, #fe8c45 100%); // // Navbar // @internal-navbar-nav-item-line-gradient: linear-gradient(90deg, #fe3a6a 0%, #ff4a39 40%, #fe8c45 100%); // // Progress // @internal-progress-bar-gradient: linear-gradient(40deg, #fe3a6a 0%, #ff4a39 40%, #fe8c45 100%); // // Section // @internal-section-primary-gradient: linear-gradient(40deg, #fe3a6a 0%, #ff4a39 40%, #fe8c45 100%); // // Text // @internal-text-background-color-gradient: linear-gradient(40deg, #fe3a6a 0%, #ff4a39 40%, #fe8c45 100%); // // Tile // @internal-tile-primary-gradient: linear-gradient(40deg, #fe3a6a 0%, #ff4a39 40%, #fe8c45 100%); assets/uikit-themes/master-devstack/styles/light-blue.less000064400000005275151666572410020050 0ustar00// // Global // @global-color: #2D3847; @global-emphasis-color: #223650; @global-link-color: #1991EE; @global-link-hover-color: #52B0F9; @global-background: #EDF1FA; @global-danger-background: #FF4352; @global-muted-background: #E4EAF7; @global-primary-background: #1991EE; @global-secondary-background: #0C273A; @global-success-background: #19EEA5; @global-warning-background: #FFCD19; @global-border: #e0e5ed; // // Theme // @internal-theme-page-border-gradient: linear-gradient(90deg, #1865E0 10%, #199EF2 50%, #16B6F5 100%); @internal-theme-transition-border-border-gradient: linear-gradient(40deg, #1865E0 0%, #199EF2 60%, #16B6F5 100%); // // Button // @button-primary-background: #1991EE; @button-primary-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.7), 2px 2px 5px rgba(11, 89, 150, 0.3); @internal-button-primary-gradient: linear-gradient(51deg, #1865E0 50%, #199EF2 80%, #16B6F5 100%); @internal-button-secondary-hover-gradient: linear-gradient(51deg, #1865E0 0%, #199EF2 30%, #16B6F5 50%); @internal-button-primary-active-gradient: linear-gradient(51deg, #005cd7 50%, #0093e6 80%, #00aae8 100%); @internal-button-secondary-active-gradient: linear-gradient(51deg, #005cd7 0%, #0093e6 30%, #00aae8 50%); // // Card // @internal-card-badge-gradient: linear-gradient(51deg, #1865E0 50%, #199EF2 80%, #16B6F5 100%); @card-hover-box-shadow: -15px -15px 20px rgba(255, 255, 255, 0.6), 15px 15px 20px rgba(57, 65, 124, 0.1); @card-default-box-shadow: -15px -15px 20px rgba(255, 255, 255, 0.6), 15px 15px 20px rgba(57, 65, 124, 0.1); @card-default-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.8), 2px 2px 4px rgba(57, 65, 124, 0.2); @internal-card-primary-gradient: linear-gradient(40deg, #1865E0 0%, #199EF2 60%, #16B6F5 100%); // // Divider // @internal-divider-small-border-gradient: linear-gradient(40deg, #1865E0 0%, #199EF2 50%, #16B6F5 100%); // // List // @list-striped-background: rgba(34, 54, 80, 0.05); // // Navbar // @internal-navbar-nav-item-line-gradient: linear-gradient(90deg, #1865E0 0%, #199EF2 50%, #16B6F5 100%); // // Progress // @internal-progress-bar-gradient: linear-gradient(40deg, #1865E0 0%, #199EF2 50%, #16B6F5 100%); // // Section // @internal-section-primary-gradient: linear-gradient(40deg, #1865E0 0%, #199EF2 50%, #16B6F5 100%); // // Table // @table-hover-row-background: rgba(228, 234, 247, 0.75); // // Text // @internal-text-background-color-gradient: linear-gradient(40deg, #1865E0 0%, #199EF2 50%, #16B6F5 100%); // // Tile // @internal-tile-primary-gradient: linear-gradient(40deg, #1865E0 0%, #199EF2 50%, #16B6F5 100%); assets/uikit-themes/master-devstack/_import.less000064400000076424151666572410016146 0ustar00@internal-fonts: 'Manrope:500,600,700'; @global-font-family: Manrope; @global-font-size: 16px; @global-line-height: 1.5; @global-2xlarge-font-size: 44px; @global-xlarge-font-size: 34px; @global-large-font-size: 24px; @global-medium-font-size: 20px; @global-small-font-size: 14px; @global-primary-font-family: inherit; @global-primary-font-weight: 600; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: 600; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #555371; @global-emphasis-color: #0D0A46; @global-muted-color: #747A96; @global-link-color: #6F40F1; @global-link-hover-color: #828FFF; @global-inverse-color: #FFF; @global-background: #F7F8FC; @global-muted-background: #ECEEF6; @global-primary-background: #6F40F1; @global-secondary-background: #171258; @global-success-background: #32D296; @global-warning-background: #FFA255; @global-danger-background: #FF4151; @global-border-width: 1px; @global-border: #E5E9ED; @global-border-radius: 2px; @global-small-box-shadow: -1px -1px 1px rgba(255, 255, 255, 0.9), 1px 1px 1px rgba(57,65,124, 0.1); @global-medium-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.9), 2px 2px 4px rgba(57,65,124, 0.2); @global-large-box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.9), 4px 4px 12px rgba(57,65,124, 0.2); @global-xlarge-box-shadow: -10px -10px 30px rgba(255, 255, 255, 0.9), 10px 10px 30px rgba(57,65,124,0.1); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 48px; @global-control-small-height: 40px; @global-control-large-height: 56px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-ins-background: fade(@global-primary-background, 8%); @base-ins-color: @global-primary-background; @base-mark-background: fade(@global-primary-background, 8%); @base-mark-color: @global-primary-background; @base-h5-font-size: 17px; @base-h6-font-size: @global-font-size; @base-blockquote-font-style: normal; @base-blockquote-footer-margin-top: 15px; @base-selection-background: @global-primary-background; @base-pre-padding: 20px; @base-pre-background: #FFF; @base-blockquote-footer-em-dash: false; @base-h3-font-weight: 600; @base-pre-border-radius: 4px; @base-hr-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); @heading-small-font-size-m: 54px; @heading-medium-font-size-l: 62px; @heading-medium-line-height: 1.2; @heading-bullet-border-width: calc(4px + 0.1em); @heading-bullet-border: @global-primary-background; @heading-small-font-weight: 700; @heading-medium-font-weight: 700; @heading-divider-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); @heading-line-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); @divider-icon-color: @global-primary-background; @divider-small-width: 40px; @divider-small-border-width: 3px; @divider-small-border: @global-primary-background; @internal-divider-small-border-gradient: linear-gradient(40deg, #7141F1 0%, #4D6BD8 70%, #3183E2 100%); @divider-icon-line-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); @inverse-divider-icon-color: @inverse-global-emphasis-color; @inverse-divider-small-border: @inverse-global-emphasis-color; @list-marker-height: 1.5em; @list-bullet-icon-color: @global-primary-background; @list-striped-background: fade(@global-muted-background, 98%); @internal-list-bullet-image: "../../../../uikit-themes/master-devstack/images/list-bullet.svg"; @list-divider-box-shadow: inset 0 1px rgba(255, 255, 255, 0.6); @description-list-divider-term-box-shadow: inset 0 1px rgba(255, 255, 255, 0.6); @table-header-cell-font-size: 13px; @table-row-active-background: fade(@global-muted-background, 98%); @table-striped-row-background: fade(@global-muted-background, 98%); @table-hover-row-background: fade(@global-muted-background, 98%); @table-divider-box-shadow: inset 0 2px 0 0 rgba(255, 255, 255, 0.6); @icon-link-color: @global-emphasis-color; @icon-link-hover-color: @global-primary-background; @icon-button-size: @global-control-height; @icon-button-background: @global-background; @icon-button-color: @global-emphasis-color; @icon-button-hover-background: @icon-button-background; @icon-button-hover-color: @global-primary-background; @icon-button-active-background: @icon-button-background; @icon-button-box-shadow: @global-large-box-shadow; @icon-button-hover-box-shadow: @global-medium-box-shadow; @icon-button-active-box-shadow: @global-small-box-shadow; @inverse-icon-button-background: @inverse-global-primary-background; @inverse-icon-button-color: @inverse-global-inverse-color; @inverse-icon-button-hover-background: darken(@inverse-icon-button-background, 5%); @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-background: darken(@inverse-icon-button-background, 10%); @inverse-icon-button-active-color: @inverse-global-inverse-color; @inverse-icon-button-box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.03), 4px 4px 12px rgba(0,0,0, 0.2); @inverse-icon-button-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.03), 2px 2px 4px rgba(0,0,0, 0.2); @inverse-icon-button-active-box-shadow: -1px -1px 1px rgba(255, 255, 255, 0.03), 1px 1px 1px rgba(0,0,0, 0.3); @form-range-track-height: 2px; @form-range-track-focus-background: @global-primary-background; @form-range-thumb-height: 16px; @form-range-thumb-background: lighten(@global-background, 3%); @form-range-thumb-box-shadow: 2px 2px 5px rgba(80,110,140, 0.3); @form-range-track-box-shadow: 0 1px 0 rgba(255,255,255, 0.6); @form-range-track-focus-box-shadow: #fff; @form-padding-horizontal: @global-small-gutter; @form-background: darken(@global-background, 1%); @form-focus-background: darken(@global-background, 3%); @form-danger-focus-background: fade(@global-danger-background, 5%); @form-success-focus-background: fade(@global-success-background, 5%); @form-disabled-background: darken(@global-background, 3%); @form-large-padding-horizontal: 20px; @form-large-font-size: 18px; @form-radio-background: @global-background; @form-radio-checked-icon-color: @global-background; @form-radio-disabled-background: darken(@global-muted-background, 5%); @form-label-font-size: @global-small-font-size; @form-border-radius: 500px; @form-multi-line-border-radius: 8px; @form-box-shadow: inset 3px 3px 6px rgba(57, 65, 124, 0.1), inset -3px -3px 6px #fff; @form-focus-box-shadow: inset 1px 1px 2px rgba(80,110,140, 0.2), inset -1px -1px 2px #fff; @form-disabled-box-shadow: inset 1px 1px 1px rgba(80, 110, 140, 0.25), inset -1px -1px 4px rgba(255, 255, 255, 0.6); @form-radio-box-shadow: inset 1px 1px 2px rgba(80,110,140, 0.2), inset -1px -1px 2px rgba(255, 255, 255, 0.9); @form-radio-focus-box-shadow: inset 1px 1px 1px rgba(80,110,140, 0.2), inset -1px -1px 1px rgba(255, 255, 255, 0.7); @inverse-form-box-shadow: inset 3px 3px 6px rgba(0,0,0, 0.4), inset -3px -3px 6px rgba(255, 255, 255, 0.04); @inverse-form-focus-box-shadow: inset 1px 1px 2px rgba(0,0,0, 0.6), inset -1px -1px 2px rgba(255, 255, 255, 0.04); @inverse-form-radio-box-shadow: inset 1px 1px 2px rgba(0,0,0, 0.2), inset -1px -1px 2px rgba(255, 255, 255, 0.06); @inverse-form-radio-focus-box-shadow: inset 1px 1px 1px rgba(0,0,0, 0.2), inset -1px -1px 1px rgba(255, 255, 255, 0.06); @button-font-size: 15px; @button-large-font-size: @global-font-size; @button-small-padding-horizontal: 20px; @button-default-background: @global-background; @button-default-hover-background: @button-default-background; @button-default-hover-color: @global-primary-background; @button-default-active-background: @button-default-background; @button-default-active-color: @global-primary-background; @button-secondary-background: transparent; @button-secondary-color: @global-primary-background; @button-secondary-hover-background: @global-primary-background; @button-disabled-background: darken(@global-background, 3%); @button-text-color: @global-primary-background; @button-text-hover-color: @global-primary-background; @button-link-hover-color: @global-primary-background; @button-transition-duration: 0.2s; @button-text-mode: ~''; @button-text-icon-mode: arrow; @internal-button-text-arrow-image: "../../../../uikit-themes/master-devstack/images/button-text-arrow.svg"; @internal-button-text-arrow-width: 20px; @internal-button-text-arrow-color: @global-primary-background; @internal-button-text-arrow-hover-color: @internal-button-text-arrow-color; @button-border-width: 2px; @button-secondary-border: @global-primary-background; @button-border-radius: 500px; @button-background-size: 200%; @button-background-position-x: 100%; @internal-button-primary-gradient: linear-gradient(51deg,#7141F1 50%, #4D6BD8 75%, #3183E2 100%); @internal-button-primary-hover-gradient: @internal-button-primary-gradient; @internal-button-primary-active-gradient: linear-gradient(51deg, #7335ed 50%, #3f64d3 75%, #007bde 100%); @internal-button-secondary-hover-gradient: linear-gradient(51deg, #7141F1 0%, #4D6BD8 35%, #3183E2 50%); @internal-button-secondary-active-gradient: linear-gradient(51deg, #7335ed 0%, #3f64d3 35%, #007bde 50%); @button-default-box-shadow: @global-large-box-shadow; @button-default-hover-box-shadow: @global-medium-box-shadow; @button-default-active-box-shadow: @global-small-box-shadow; @button-primary-box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.9), 5px 5px 15px fade(darken(@global-primary-background, 20%), 30%); @button-primary-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.9), 2px 2px 5px fade(darken(@global-primary-background, 20%), 30%); @button-primary-active-box-shadow: 1px 1px 1px rgba(57,65,124, 0.1); @button-secondary-box-shadow: inset 3px 3px 10px fade(darken(@global-primary-background, 10%), 10%), 3px 3px 10px fade(darken(@global-primary-background, 10%), 10%); @button-secondary-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.9), 2px 2px 5px fade(darken(@global-primary-background, 20%), 30%); @button-secondary-active-box-shadow: 1px 1px 1px rgba(57,65,124, 0.1); @button-danger-box-shadow: 5px 5px 15px rgba(57,65,124, 0.2); @button-danger-hover-box-shadow: 2px 2px 5px rgba(57,65,124, 0.2); @inverse-button-secondary-background: transparent; @inverse-button-secondary-color: @global-inverse-color; @inverse-button-secondary-hover-background: @global-inverse-color; @inverse-button-secondary-active-background: rgba(255, 255, 255, 0.8); @inverse-button-secondary-border: @global-inverse-color; @inverse-button-default-box-shadow: 0 5px 15px rgba(0,0,0,0.2); @inverse-button-primary-box-shadow: 0 5px 15px rgba(0,0,0,0.2); @progress-height: 6px; @internal-progress-bar-gradient: linear-gradient(40deg, #7141F1 0%, #4D6BD8 70%, #3183E2 100%); @progress-box-shadow: inset 1px 1px 1px rgba(80,110,140, 0.2), inset -1px -1px 1px rgba(255, 255, 255, 0.9); @internal-section-primary-gradient: linear-gradient(40deg, #7141F1 0%, #4D6BD8 70%, #3183E2 100%); @internal-section-secondary-gradient: linear-gradient(-40deg, @global-secondary-background, darken(@global-secondary-background, 5%)); @container-small-max-width: 960px; @internal-tile-primary-gradient: linear-gradient(40deg, #7141F1 0%, #4D6BD8 70%, #3183E2 100%); @internal-tile-secondary-gradient: linear-gradient(-40deg, @global-secondary-background, darken(@global-secondary-background, 5%)); @card-badge-height: 26px; @card-badge-padding-horizontal: 12px; @card-badge-font-size: 13px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-primary-hover-background: @global-primary-background; @card-secondary-hover-background: @global-secondary-background; @card-border-radius: 12px; @card-badge-border-radius: 500px; @internal-card-badge-gradient: linear-gradient(51deg,#7141F1 50%, #4D6BD8 75%, #3183E2 100%); @internal-card-primary-gradient: linear-gradient(40deg, #7141F1 0%, #4D6BD8 70%, #3183E2 100%); @internal-card-secondary-gradient: linear-gradient(40deg, darken(@global-secondary-background, 5%) 0%, lighten(@global-secondary-background, 5%) 90%); @card-hover-box-shadow: -15px -15px 20px rgba(255, 255, 255, 0.8), 15px 15px 20px rgba(57,65,124, 0.08); @internal-card-hover-transition-box-shadow: 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(80,110,140, 0); @card-default-box-shadow: -15px -15px 20px rgba(255, 255, 255, 0.8), 15px 15px 20px rgba(57,65,124, 0.08); @card-default-hover-box-shadow: @global-medium-box-shadow; @card-primary-box-shadow: -5px -5px 20px rgba(255, 255, 255, 0.9), 5px 5px 20px fade(darken(@global-primary-background, 20%), 30%); @card-primary-hover-box-shadow: -2px -2px 10px rgba(255, 255, 255, 0.8), 2px 2px 5px fade(darken(@global-primary-background, 20%), 30%); @card-secondary-box-shadow: -5px -5px 20px rgba(255, 255, 255, 0.9), 5px 5px 20px fade(darken(@global-secondary-background, 20%), 30%); @card-secondary-hover-box-shadow: -2px -2px 10px rgba(255, 255, 255, 0.8), 2px 2px 5px fade(darken(@global-secondary-background, 20%), 30%); @card-hover-translate-vertical: -2px; @card-default-hover-translate-vertical: 3px; @card-primary-hover-translate-vertical: 3px; @card-secondary-hover-translate-vertical: 3px; @close-color: @global-emphasis-color; @close-hover-color: @global-primary-background; @marker-padding: 8px; @marker-background: @global-background; @marker-color: @global-primary-background; @marker-hover-color: fade(@marker-color, 80%); @inverse-marker-color: fade(@global-primary-background, 90%); @inverse-marker-hover-color: @global-primary-background; @inverse-marker-hover-background: fade(@global-background, 70%); @totop-padding: 16px; @totop-color: @global-emphasis-color; @totop-hover-color: @global-primary-background; @totop-active-color: darken(@global-primary-background, 10%); @totop-background: @global-background; @totop-hover-background: @global-background; @totop-active-background: @global-background; @totop-border-radius: 500px; @totop-box-shadow: @global-large-box-shadow; @totop-hover-box-shadow: @global-medium-box-shadow; @totop-active-box-shadow: @global-small-box-shadow; @inverse-totop-box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.03), 4px 4px 12px rgba(0,0,0, 0.2); @inverse-totop-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.03), 2px 2px 4px rgba(0,0,0, 0.2); @inverse-totop-active-box-shadow: -1px -1px 1px rgba(255, 255, 255, 0.03), 1px 1px 1px rgba(0,0,0, 0.3); @alert-background: #FFF; @alert-primary-background: @global-primary-background; @alert-primary-color: @global-inverse-color; @alert-success-background: @global-success-background; @alert-success-color: @global-inverse-color; @alert-warning-background: @global-warning-background; @alert-warning-color: @global-inverse-color; @alert-danger-background: @global-danger-background; @alert-danger-color: @global-inverse-color; @alert-close-opacity: 1; @alert-border-radius: 4px; @badge-size: 20px; @badge-font-size: 12px; @badge-font-weight: @global-secondary-font-weight; @label-line-height: 1.8; @label-font-size: 13px; @label-border-radius: 500px; @overlay-primary-background: fade(@global-primary-background, 80%); @comment-title-font-size: @global-font-size; @comment-primary-background: @global-background; @comment-primary-border-radius: 4px; @comment-primary-box-shadow: @global-large-box-shadow; @search-icon-color: @global-emphasis-color; @search-default-padding-horizontal: 18px; @search-default-background: darken(@global-background, 1%); @search-default-focus-background: darken(@global-background, 3%); @search-navbar-padding-horizontal: 18px; @search-navbar-focus-background: darken(@global-background, 3%); @search-medium-padding-horizontal: 20px; @search-medium-focus-background: darken(@global-background, 3%); @search-large-padding-horizontal: 30px; @search-large-focus-background: darken(@global-background, 3%); @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-primary-background; @search-navbar-focus-border: @global-secondary-background; @search-default-border-radius: 500px; @search-navbar-border-radius: 500px; @search-medium-border-radius: 500px; @search-large-border-radius: 500px; @search-default-input-box-shadow: inset 3px 3px 6px rgba(57, 65, 124, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 1); @search-default-input-focus-box-shadow: inset 1px 1px 2px rgba(80,110,140, 0.2), inset -1px -1px 2px rgba(255, 255, 255, 1); @search-navbar-input-box-shadow: inset 3px 3px 6px rgba(57, 65, 124, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 1); @search-navbar-input-focus-box-shadow: inset 1px 1px 2px rgba(80,110,140, 0.2), inset -1px -1px 2px rgba(255, 255, 255, 1); @search-medium-input-box-shadow: inset 3px 3px 6px rgba(57, 65, 124, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 1); @search-medium-input-focus-box-shadow: inset 1px 1px 2px rgba(80,110,140, 0.2), inset -1px -1px 2px rgba(255, 255, 255, 1); @search-large-input-box-shadow: inset 3px 3px 6px rgba(57, 65, 124, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 1); @search-large-input-focus-box-shadow: inset 1px 1px 2px rgba(80,110,140, 0.2), inset -1px -1px 2px rgba(255, 255, 255, 1); @inverse-search-color: @global-emphasis-color; @inverse-search-placeholder-color: @global-muted-color; @inverse-search-icon-color: @global-muted-color; @inverse-search-default-background: @inverse-global-primary-background; @inverse-search-default-focus-background: fade(@inverse-search-default-background, 85%); @inverse-search-navbar-color: @global-inverse-color; @inverse-search-navbar-placeholder-color: @global-inverse-color; @inverse-search-navbar-icon-color: @global-inverse-color; @accordion-item-margin-top: 15px; @accordion-title-font-size: 18px; @accordion-title-hover-color: @global-primary-background; @accordion-content-margin-top: 15px; @accordion-title-padding-vertical: 5px; @accordion-icon-color: @global-primary-background; @internal-accordion-icon-close-image: "../../../../uikit-themes/master-devstack/images/accordion-close.svg"; @internal-accordion-icon-open-image: "../../../../uikit-themes/master-devstack/images/accordion-open.svg"; @accordion-title-font-weight: @global-secondary-font-weight; @accordion-title-letter-spacing: @global-secondary-letter-spacing; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @accordion-item-box-shadow: inset 0 1px rgba(255, 255, 255, 0.6); @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 5px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 5px)'; @dropdown-nav-item-color: @global-emphasis-color; @dropdown-nav-item-hover-color: @global-primary-background; @dropdown-nav-subtitle-font-size: 12px; @dropdown-nav-header-color: @global-color; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-border-radius: 12px; @dropdown-box-shadow: 0 15px 40px rgba(0,0,0,0.1); @dropdown-nav-divider-box-shadow: 0 2px 0 rgba(255, 255, 255, 0.6); @dropbar-padding-top: 20px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 33px 45px -37px rgba(57, 65, 124, 0.1); @dropbar-bottom-box-shadow: 0 -33px 45px -37px rgba(57, 65, 124, 0.1); @dropbar-left-box-shadow: 33px 0 45px -37px rgba(57, 65, 124, 0.1); @dropbar-right-box-shadow: -33px 0 45px -37px rgba(57, 65, 124, 0.1); @slider-container-margin-top: -35px; @slider-container-margin-bottom: -35px; @slider-container-margin-left: -35px; @slider-container-margin-right: -35px; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-overlay-background: rgba(79, 79, 90, 0.6); @notification-message-background: @global-background; @notification-message-primary-color: @global-primary-background; @notification-message-success-color: @global-success-background; @notification-message-warning-color: @global-warning-background; @notification-message-danger-color: @global-danger-background; @notification-message-primary-background: @global-background; @notification-message-success-background: @global-background; @notification-message-warning-background: @global-background; @notification-message-danger-background: @global-background; @notification-message-primary-color-mode: dark; @notification-message-success-color-mode: dark; @notification-message-warning-color-mode: dark; @notification-message-danger-color-mode: dark; @notification-message-box-shadow: 0 15px 40px rgba(57,65,124,0.1); @tooltip-background: @global-primary-background; @grid-divider-horizontal-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.6); @grid-divider-vertical-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); @nav-divider-margin-vertical: 0; @nav-default-item-color: @global-emphasis-color; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @nav-default-item-hover-color; @nav-default-subtitle-font-size: 12px; @nav-default-header-color: @global-color; @nav-default-sublist-item-hover-color: @global-primary-background; @nav-default-sublist-item-active-color: @nav-default-sublist-item-hover-color; @nav-primary-item-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @nav-primary-item-hover-color; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-header-color: @global-color; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-primary-sublist-item-active-color: @nav-primary-sublist-item-hover-color; @nav-secondary-line-height: 1.6; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @nav-secondary-item-hover-color; @nav-secondary-subtitle-active-color: @global-color; @nav-secondary-sublist-font-size: 16px; @nav-secondary-sublist-item-hover-color: @global-primary-background; @nav-secondary-sublist-item-active-color: @nav-secondary-sublist-item-hover-color; @nav-medium-line-height: 1.2; @nav-medium-font-size-l: 62px; @nav-dividers-margin-top: 10px; @nav-secondary-margin-top: 4px; @nav-secondary-item-padding-vertical: 15px; @nav-secondary-item-padding-horizontal: 15px; @nav-secondary-item-hover-background: darken(@global-background, 2%); @nav-secondary-item-active-background: @nav-secondary-item-hover-background; @nav-default-subtitle-color: @global-muted-color; @nav-default-subtitle-font-weight: normal; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-font-weight: normal; @nav-secondary-subtitle-font-weight: normal; @nav-secondary-item-border-radius: 7px; @nav-default-divider-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); @nav-primary-divider-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); @nav-dividers-box-shadow: inset 0 1px rgba(255, 255, 255, 0.6); @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-item-hover-background: @inverse-global-muted-background; @inverse-nav-secondary-item-active-background: @inverse-nav-secondary-item-hover-background; @navbar-background: fade(@global-background, 90%); @navbar-gap: 10px; @navbar-nav-gap: 10px; @navbar-nav-item-height: 90px; @navbar-nav-item-padding-horizontal: 7px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-font-size: 15px; @navbar-nav-item-hover-color: @global-primary-background; @navbar-nav-item-onclick-color: darken(@global-primary-background, 10%); @navbar-nav-item-active-color: @global-primary-background; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-primary-background; @navbar-subtitle-font-size: 12px; @navbar-dropdown-margin: 5px; @navbar-dropdown-shift-margin: -(@navbar-dropdown-padding - @navbar-nav-item-padding-horizontal); @navbar-dropdown-width: 260px; @navbar-dropdown-padding: 26px; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -(@navbar-dropdown-large-padding - @navbar-nav-item-padding-horizontal); @navbar-dropdown-dropbar-shift-margin: @navbar-nav-item-padding-horizontal; @navbar-dropdown-dropbar-padding-top: 20px; @navbar-dropdown-dropbar-large-shift-margin: @navbar-nav-item-padding-horizontal; @navbar-dropdown-nav-item-color: @global-emphasis-color; @navbar-dropdown-nav-item-hover-color: @global-primary-background; @navbar-dropdown-nav-item-active-color: @global-primary-background; @navbar-dropdown-nav-subtitle-font-size: 12px; @navbar-dropdown-nav-sublist-item-hover-color: @global-primary-background; @navbar-dropdown-nav-sublist-item-active-color: @global-primary-background; @navbar-backdrop-filter: blur(5px); @navbar-gap-m: 20px; @navbar-nav-gap-m: 20px; @navbar-nav-item-padding-horizontal-m: 14px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-position-mode: top; @navbar-nav-item-line-slide-mode: center; @navbar-nav-item-line-height: 3px; @navbar-nav-item-line-transition-duration: 0.35s; @navbar-nav-item-line-hover-height: 3px; @navbar-nav-item-line-onclick-height: 3px; @navbar-nav-item-line-active-height: 3px; @navbar-nav-item-line-opacity: 0; @navbar-item-padding-horizontal-m: 0; @navbar-dropdown-shift-margin-m: -(@navbar-dropdown-padding - @navbar-nav-item-padding-horizontal-m); @navbar-dropdown-dropbar-shift-margin-m: @navbar-nav-item-padding-horizontal-m; @navbar-dropdown-dropbar-large-shift-margin-m: @navbar-nav-item-padding-horizontal-m; @navbar-dropdown-nav-item-padding-vertical: 4px; @navbar-subtitle-color: @global-muted-color; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-font-size: @navbar-nav-item-font-size; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-mode: border; @navbar-border-width: @global-border-width; @navbar-border: @global-border; @navbar-dropdown-border-radius: 12px; @internal-navbar-nav-item-line-gradient: linear-gradient(90deg, #7141F1 0%, #4D6BD8 70%, #3183E2 100%); @navbar-dropdown-box-shadow: 0 15px 40px rgba(57,65,124,0.1); @inverse-navbar-nav-item-hover-color: @inverse-global-primary-background; @subnav-item-color: @global-emphasis-color; @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; @subnav-pill-item-padding-vertical: 8px; @subnav-pill-item-padding-horizontal: 20px; @subnav-pill-item-color: @global-muted-color; @subnav-pill-item-hover-background: @global-background; @subnav-pill-item-hover-color: @global-emphasis-color; @subnav-pill-item-active-background: @global-background; @subnav-pill-item-active-color: @global-emphasis-color; @subnav-item-font-weight: 500; @subnav-pill-item-border-radius: 500px; @subnav-pill-item-hover-box-shadow: @global-large-box-shadow; @subnav-pill-item-onclick-box-shadow: @global-small-box-shadow; @subnav-pill-item-active-box-shadow: @global-large-box-shadow; @inverse-subnav-item-hover-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-hover-color: @inverse-global-emphasis-color; @breadcrumb-item-active-color: @global-primary-background; @breadcrumb-divider: "∙"; @breadcrumb-divider-margin-horizontal: @global-small-margin; @breadcrumb-item-font-family: @global-font-family; @breadcrumb-item-font-weight: 400; @breadcrumb-item-text-transform: inherit; @breadcrumb-item-letter-spacing: inherit; @breadcrumb-item-font-style: inherit; @breadcrumb-item-disabled-color: fade(@breadcrumb-item-color, 50%); @pagination-margin-horizontal: 15px; @pagination-item-padding-vertical: 10px; @pagination-item-padding-horizontal: 16px; @pagination-item-color: @global-emphasis-color; @pagination-item-hover-color: @global-primary-background; @pagination-item-active-color: @global-primary-background; @pagination-item-min-width: 42px; @pagination-item-height: @pagination-item-min-width; @pagination-item-font-size: 15px; @pagination-item-border-radius: 500px; @pagination-item-box-shadow: @global-large-box-shadow; @pagination-item-hover-box-shadow: @global-medium-box-shadow; @inverse-pagination-item-hover-color: @inverse-global-emphasis-color; @inverse-pagination-item-active-color: @inverse-global-emphasis-color; @inverse-pagination-item-background: @inverse-global-muted-background; @inverse-pagination-item-hover-background: fadein(@inverse-global-muted-background, 10%); @inverse-pagination-item-active-background: fadein(@inverse-global-muted-background, 15%); @inverse-pagination-item-box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.03), 4px 4px 12px rgba(0,0,0, 0.2); @inverse-pagination-item-hover-box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.03), 2px 2px 4px rgba(0,0,0, 0.2); @tab-item-padding-vertical: 15px; @tab-item-hover-color: @global-emphasis-color; @tab-item-font-weight: 500; @tab-item-border-width: 2px; @tab-item-hover-border: @global-primary-background; @tab-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); @inverse-tab-item-hover-color: @inverse-global-emphasis-color; @inverse-tab-border: rgba(0, 0, 0, 0.2); @inverse-tab-box-shadow: 1px 1px 1px 0 rgba(255, 255, 255, 0.04); @slidenav-padding-vertical: 14px; @slidenav-padding-horizontal: 14px; @slidenav-color: @global-emphasis-color; @slidenav-hover-color: lighten(@global-background, 5%); @slidenav-active-color: lighten(@global-background, 5%); @slidenav-large-padding-vertical: 24px; @slidenav-background: lighten(@global-background, 5%); @slidenav-hover-background: @global-primary-background; @slidenav-active-background: darken(@global-primary-background, 5%); @slidenav-border-radius: 500px; @inverse-slidenav-color: @global-emphasis-color; @inverse-slidenav-hover-color: @global-emphasis-color; @inverse-slidenav-active-color: @global-emphasis-color; @inverse-slidenav-background: @inverse-global-primary-background; @inverse-slidenav-hover-background: fade(@inverse-slidenav-background, 90%); @inverse-slidenav-active-background: fade(@inverse-slidenav-background, 80%); @dotnav-item-width: 12px; @dotnav-item-background: darken(@global-muted-background, 10%); @dotnav-item-hover-background: @global-primary-background; @dotnav-item-onclick-background: darken(@global-muted-background, 10%); @dotnav-item-active-background: @global-primary-background; @dotnav-item-box-shadow: inset 1px 1px 1px rgba(0,0,0, 0.15), 1px 1px 1px #fff; @inverse-dotnav-item-hover-background: @global-primary-background; @inverse-dotnav-item-onclick-background: @global-primary-background; @inverse-dotnav-item-active-background: @global-primary-background; @inverse-dotnav-item-box-shadow: inset 1px 1px 1px rgba(0,0,0, 0.4), inset -1px -1px 1px rgba(255,255,255, 0.2); @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-primary-background; @iconnav-item-active-color: @iconnav-item-hover-color; @lightbox-background: rgba(215, 215, 215, 0.7); @lightbox-color-mode: dark; @lightbox-caption-background: @global-background; @lightbox-caption-color: @global-emphasis-color; @lightbox-backdrop-filter: blur(25px); @text-lead-font-size: @global-medium-font-size; @text-large-font-size: 18px; @text-lead-font-weight: 400; @text-meta-font-weight: 400; @internal-text-background-color-gradient: linear-gradient(40deg, #7141F1 0%, #4D6BD8 70%, #3183E2 100%); @border-rounded-border-radius: 12px; @box-shadow-bottom-height: 40px; @box-shadow-bottom-background: rgba(49, 55, 77, 0.35); @dropcap-margin-right: 20px; @dropcap-font-size: 2.8em; @logo-font-family: @global-primary-font-family; @logo-font-weight: @global-primary-font-weight; @inverse-global-muted-color: fade(@global-inverse-color, 60%); @inverse-global-inverse-color: @global-emphasis-color; @inverse-global-border: fade(@global-inverse-color, 10%);assets/uikit-themes/master-devstack/images/accordion-open.svg000064400000000230151666572410020451 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <rect width="13" height="1.5" fill="#000" x="0" y="6" /> </svg> assets/uikit-themes/master-devstack/images/button-text-arrow.svg000064400000000421151666572410021200 0ustar00<svg width="20" height="11" viewBox="0 0 20 11" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.2" points="13 1 18 5.5 13 10" /> <line fill="none" stroke="#000" stroke-width="1.2" x1="0" y1="5.5" x2="18.4" y2="5.5" /> </svg> assets/uikit-themes/master-devstack/images/list-bullet.svg000064400000000206151666572410020014 0ustar00<svg width="4" height="4" viewBox="0 0 4 4" xmlns="http://www.w3.org/2000/svg"> <circle fill="#000" cx="2" cy="2" r="2" /> </svg> assets/uikit-themes/master-devstack/images/accordion-close.svg000064400000000325151666572410020622 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <rect width="13" height="1.5" fill="#000" x="0" y="6" /> <rect width="1.5" height="13" fill="#000" x="6" y="0" /> </svg> assets/uikit-themes/master-devstack/icons/marker.svg000064400000000220151666572410016677 0ustar00<svg width="11" height="11" viewBox="0 0 11 11" xmlns="http://www.w3.org/2000/svg"> <circle fill="#000" cx="5.5" cy="5.5" r="5.5" /> </svg> assets/uikit-themes/master-devstack/icons/pagination-previous.svg000064400000000267151666572410021434 0ustar00<svg width="8" height="11" viewBox="0 0 8 11" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.2" points="7.5 0.5 1 5.5 7.5 10.5" /> </svg> assets/uikit-themes/master-devstack/icons/pagination-next.svg000064400000000271151666572410020531 0ustar00<svg width="8" height="11" viewBox="0 0 8 11" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.2" points="0.5 10.5 6.5 5.5 0.5 0.5" /> </svg> assets/uikit-themes/master-devstack/icons/slidenav-previous.svg000064400000000364151666572410021106 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.6" d="M9.07,17l-7-7,7-7" /> <path fill="none" stroke="#000" stroke-width="1.6" d="M19,9.83H2" /> </svg> assets/uikit-themes/master-devstack/icons/slidenav-next.svg000064400000000367151666572410020213 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.6" d="M10.93,2.87l7,7-7,7.05" /> <path fill="none" stroke="#000" stroke-width="1.6" d="M1,10H18" /> </svg> assets/uikit-themes/master-devstack/icons/close-large.svg000064400000000407151666572410017622 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="2" x1="1" y1="1" x2="19" y2="19" /> <line fill="none" stroke="#000" stroke-width="2" x1="19" y1="1" x2="1" y2="19" /> </svg> assets/uikit-themes/master-devstack/icons/slidenav-previous-large.svg000064400000000364151666572410022176 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.6" d="M9.07,17l-7-7,7-7" /> <path fill="none" stroke="#000" stroke-width="1.6" d="M19,9.83H2" /> </svg> assets/uikit-themes/master-devstack/icons/nav-parent-icon.svg000064400000000267151666572410020432 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.5" points="1.5 3.7 6 8 10.5 3.7" /> </svg> assets/uikit-themes/master-devstack/icons/close-icon.svg000064400000000413151666572410017455 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.6" x1="1" y1="1" x2="13" y2="13" /> <line fill="none" stroke="#000" stroke-width="1.6" x1="13" y1="1" x2="1" y2="13" /> </svg> assets/uikit-themes/master-devstack/icons/nav-parent-icon-large.svg000064400000000260151666572410021513 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-devstack/icons/slidenav-next-large.svg000064400000000367151666572410021303 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="1.6" d="M10.93,2.87l7,7-7,7.05" /> <path fill="none" stroke="#000" stroke-width="1.6" d="M1,10H18" /> </svg> assets/uikit-themes/master-devstack/icons/navbar-parent-icon.svg000064400000000267151666572410021117 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.5" points="1.5 3.7 6 8 10.5 3.7" /> </svg> assets/uikit-themes/master-devstack/icons/totop.svg000064400000000323151666572410016567 0ustar00<svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="1 6.17 2.28 7.39 6.59 3.3 6.59 15 8.41 15 8.41 3.3 12.72 7.39 14 6.17 7.5 0 1 6.17" /> </svg> assets/uikit-themes/master-pinewood-lake/styles/light-petrol.less000064400000005271151666572410021354 0ustar00// // Global // @global-color: #58453d; @global-emphasis-color: #473a2c; @global-link-color: #037c72; @global-muted-color: #a6b3b2; @global-link-hover-color: #72b6b0; @global-muted-background: #e9efef; @global-primary-background: #037c72; @global-secondary-background: #1b3534; @global-border: rgba(164, 172, 163, 0.3); @global-large-box-shadow: 2px 18px 48px 0 rgba(30, 34, 30, 0.06); @global-medium-box-shadow: 2px 12px 32px 0 rgba(30, 34, 30, 0.06); @global-small-box-shadow: 2px 4px 16px 0 rgba(30, 34, 30, 0.06); @global-xlarge-box-shadow: 2px 26px 56px 0 rgba(30, 34, 30, 0.06); // // Base // @base-ins-background: rgba(93, 195, 186, 0.6); @base-mark-background: rgba(93, 195, 186, 0.6); // // Button // @button-primary-hover-border: #72b6b0; @button-primary-hover-color: #72b6b0; // // Comment // @comment-primary-background: fade(@global-muted-background, 50%); // // Card // @card-default-hover-background: #ececec; @card-default-hover-box-shadow: none; @internal-card-default-gradient: url("../../master-pinewood-lake/images/background-texture-petrol.png"); @internal-card-primary-gradient: url("../../master-pinewood-lake/images/background-texture-petrol.png"); @internal-card-secondary-gradient: url("../../master-pinewood-lake/images/background-texture-petrol.png"); // // Section // @internal-section-default-image: "../../master-pinewood-lake/images/background-texture-petrol.png"; @internal-section-muted-image: "../../master-pinewood-lake/images/background-texture-petrol.png"; @internal-section-primary-image: "../../master-pinewood-lake/images/background-texture-petrol.png"; @internal-section-secondary-image: "../../master-pinewood-lake/images/background-texture-petrol.png"; @internal-section-default-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-petrol.svg"; @internal-section-muted-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-petrol.svg"; @internal-section-primary-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-petrol.svg"; @internal-section-secondary-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-petrol.svg"; @internal-section-overlap-height: 18px; // // Tile // @internal-tile-default-image: "../../master-pinewood-lake/images/background-texture-petrol.png"; @internal-tile-muted-image: "../../master-pinewood-lake/images/background-texture-petrol.png"; @internal-tile-primary-image: "../../master-pinewood-lake/images/background-texture-petrol.png"; @internal-tile-secondary-image: "../../master-pinewood-lake/images/background-texture-petrol.png"; assets/uikit-themes/master-pinewood-lake/styles/light-umber.less000064400000002053151666572410021154 0ustar00// // Global // @global-color: #665a55; @global-emphasis-color: #4f3c30; @global-inverse-color: #fffcf7; @global-link-color: #ad604b; @global-muted-color: #a5a09e; @global-link-hover-color: #9a593d; @global-background: #e9e6e1; @global-danger-background: #ba4545; @global-muted-background: #e2ded8; @global-primary-background: #bd7960; @global-secondary-background: #2e2723; @global-success-background: #6f9643; @global-warning-background: #c9a163; @global-border: rgba(161, 150, 145, 0.38); @global-large-box-shadow: 2px 18px 48px 0 rgba(34, 32, 30, 0.09); @global-medium-box-shadow: 2px 12px 32px 0 rgba(34, 32, 30, 0.09); @global-small-box-shadow: 2px 4px 16px 0 rgba(34, 32, 30, 0.09); @global-xlarge-box-shadow: 2px 26px 56px 0 rgba(34, 32, 30, 0.09); // // Base // @base-ins-background: rgba(255, 255, 221, 0.37); @base-mark-background: rgba(255, 245, 221, 0.46); // // Card // @card-default-background: lighten(@global-background, 2%); // // List // @list-striped-background: rgba(0, 0, 0, 0.03); assets/uikit-themes/master-pinewood-lake/styles/light-blue.less000064400000005444151666572410021000 0ustar00// // Global // @global-color: #454d61; @global-emphasis-color: #1f2229; @global-inverse-color: #ecf4ff; @global-link-color: #4272d1; @global-muted-color: #8f9bb5; @global-link-hover-color: #2153b5; @global-background: #f7faff; @global-muted-background: #ecf0f7; @global-primary-background: #3c67bb; @global-secondary-background: #0f101a; @global-border: rgba(141, 157, 181, 0.3); @global-large-box-shadow: 2px 18px 48px 0 rgba(22, 26, 41, 0.06); @global-medium-box-shadow: 2px 12px 32px 0 rgba(22, 26, 41, 0.06); @global-small-box-shadow: 2px 4px 16px 0 rgba(22, 26, 41, 0.06); @global-xlarge-box-shadow: 2px 26px 56px 0 rgba(22, 26, 41, 0.06); // // Button // @button-disabled-background: rgba(15, 16, 26, 0.02); @button-disabled-border: rgba(15, 16, 26, 0.02); // // Card // @card-hover-background: rgba(255, 255, 255, 0.52); @card-hover-box-shadow: @global-small-box-shadow; @card-default-background: #ffffff; @card-default-box-shadow: @global-xlarge-box-shadow; @card-default-hover-background: #ffffff; @card-default-hover-box-shadow: @global-small-box-shadow; @internal-card-default-gradient: url("../../master-pinewood-lake/images/background-texture-small.png"); @internal-card-primary-gradient: url("../../master-pinewood-lake/images/background-texture-small.png"); @internal-card-secondary-gradient: url("../../master-pinewood-lake/images/background-texture-small.png"); // // Section // @internal-section-default-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-section-muted-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-section-primary-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-section-secondary-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-section-default-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-small.svg"; @internal-section-muted-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-small.svg"; @internal-section-primary-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-small.svg"; @internal-section-secondary-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-small.svg"; @internal-section-overlap-height: 18px; // // Tile // @internal-tile-default-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-tile-muted-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-tile-primary-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-tile-secondary-image: "../../master-pinewood-lake/images/background-texture-small.png"; assets/uikit-themes/master-pinewood-lake/styles/light-orange.less000064400000005252151666572410021321 0ustar00// // Global // @global-color: #463229; @global-emphasis-color: #5f3b2d; @global-link-color: #de8864; @global-muted-color: #ac9f98; @global-link-hover-color: #cf6843; @global-background: #fffef9; @global-muted-background: #f7f3ea; @global-primary-background: #ed8f6c; @global-secondary-background: #261d1a; @global-border: rgba(177, 163, 148, 0.3); @global-large-box-shadow: 2px 18px 48px 0 rgba(85, 41, 29, 0.13); @global-medium-box-shadow: 2px 12px 32px 0 rgba(37, 29, 27, 0.06); @global-small-box-shadow: 2px 4px 16px 0 rgba(85, 41, 29, 0.13); @global-xlarge-box-shadow: 2px 26px 56px 0 rgba(37, 29, 27, 0.06); // // Card // @card-hover-box-shadow: @global-large-box-shadow; @card-default-background: #faf5ee; @card-default-box-shadow: @global-small-box-shadow; @card-default-hover-background: #faf5ee; @card-default-hover-box-shadow: @global-large-box-shadow; @internal-card-default-gradient: url("../../master-pinewood-lake/images/background-texture-small.png"); @internal-card-primary-gradient: url("../../master-pinewood-lake/images/background-texture-small.png"); @internal-card-secondary-gradient: url("../../master-pinewood-lake/images/background-texture-small.png"); // // Form Range // @form-range-thumb-box-shadow: 2px 2px 5px 0 rgba(37, 29, 27, 0.2); // // Section // @internal-section-default-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-section-muted-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-section-primary-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-section-secondary-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-section-default-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-small.svg"; @internal-section-muted-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-small.svg"; @internal-section-primary-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-small.svg"; @internal-section-secondary-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image-small.svg"; @internal-section-overlap-height: 18px; // // Tile // @internal-tile-default-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-tile-muted-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-tile-primary-image: "../../master-pinewood-lake/images/background-texture-small.png"; @internal-tile-secondary-image: "../../master-pinewood-lake/images/background-texture-small.png"; assets/uikit-themes/master-pinewood-lake/styles/light-green.less000064400000001545151666572410021147 0ustar00// // Global // @global-color: #223225; @global-emphasis-color: #424b42; @global-link-color: #4f9d57; @global-muted-color: #a3a8a3; @global-muted-background: #f6f7f6; @global-primary-background: #60934c; @global-secondary-background: #1e221e; @global-success-background: #4bc7ab; @global-border: rgba(164, 172, 163, 0.3); @global-large-box-shadow: 2px 18px 48px 0 rgba(30, 34, 30, 0.16); @global-medium-box-shadow: 2px 12px 32px 0 rgba(30, 34, 30, 0.06); @global-small-box-shadow: 2px 4px 16px 0 rgba(30, 34, 30, 0.03); @global-xlarge-box-shadow: 2px 26px 56px 0 rgba(30, 34, 30, 0.06); @list-striped-background: rgba(0, 0, 0, 0.03); // // Card // @card-hover-box-shadow: @global-large-box-shadow; @card-default-box-shadow: none; @card-default-hover-background: #ededed; @card-default-hover-box-shadow: @global-small-box-shadow; assets/uikit-themes/master-pinewood-lake/icons/nav-parent-icon-large.svg000064400000000260151666572410022445 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.6" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-pinewood-lake/icons/navbar-toggle-icon.svg000064400000002422151666572410022034 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <style> .uk-navbar-toggle-icon svg > [class*='line-'] { transition: 0.2s ease-in-out; transition-property: transform, opacity,; transform-origin: center; opacity: 1; } .uk-navbar-toggle-icon svg > .line-3 { opacity: 0; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-3 { opacity: 1; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-2 { transform: rotate(45deg); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-3 { transform: rotate(-45deg); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-1, .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-4 { opacity: 0; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-1 { transform: translateY(6px) scaleX(0); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-4 { transform: translateY(-6px) scaleX(0); } </style> <rect class="line-1" width="20" height="1" y="3" /> <rect class="line-2" width="20" height="1" y="9" /> <rect class="line-3" width="20" height="1" y="9" /> <rect class="line-4" width="20" height="1" y="15" /> </svg> assets/uikit-themes/master-pinewood-lake/icons/totop.svg000064400000000413151666572410017521 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="3.5,10 10,3 16.5,10" /> <line fill="none" stroke="#000" stroke-width="2" x1="10" y1="18" x2="10" y2="4" /> </svg> assets/uikit-themes/master-pinewood-lake/icons/pagination-next.svg000064400000000373151666572410021466 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5" /> <line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5" /> </svg> assets/uikit-themes/master-pinewood-lake/icons/pagination-previous.svg000064400000000372151666572410022363 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5" /> <line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5" /> </svg> assets/uikit-themes/master-pinewood-lake/images/section-overlap-image-petrol.svg000064400000015513151666572410024212 0ustar00<svg width="700" height="18" viewBox="0 0 700 18" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <clipPath id="mask"> <path d="M668.8 5.3L669 4l-5.3 1.4c-2.8-1 1.7-1 .8-1.6-5.6.6-2.3 1.7-8.9 2-3.3-.7 1.2-.8 2.8-1.2-6.2.5-15.3 1.2-19.6.5-.1.2-.4.4-.2.4-4 .6-9.5 0-14 .1 0-.5 1.2-.6 2.3-.7-1.6 0-3.8-.5-5.2 0l1.7-1c-3.5-.1-10.2.8-11-.4.5.5.3 1.3-2.7 1.3-1.6-1.8-8.2.7-13-.2.6-.4 4.1-.5 3.1-.6-2.4-.4-4.5.4-6.7 1l.7-.8-11.2 1c-1.7-1.8-10.6.3-9.8-1-4 0 3.3.8-1.7 1-1.4-.8-4.6.3-4.4-.8l.5-.2-3.5.1 2.2-1.1c-3 .2-5.3 1.4-5.4 2.2-2.9-.6-7 0-8.3-1.1l1-.3c-8 .5-13.4-3.1-19.8-1.2-.4-.1-.4-.4.6-.4h-5l1.2-1L522 3l.1-.6c-5.4-.2-14 0-21 .2l1-.2c-7.7.8-7.4-.6-13 0l.5-.2h-5l1.1-.5c-3.7 1.2-10.7-1.7-8.4-.6-2.1.5-5.8 1.2-6.4 1.9-5.5 0-1.4-.7-4.8-1.2-4 0-4.7.9-10 .4v-.6c-2.5.1-4 .5-7.6.6l1-.3c-5.7 1.2-7.1-1.7-11.6.9-2.4-.5-7-.2-6.8-1.3-7.2.7-12.7 1-19.8 1.5-1.2-1.9-1.6.2-5.9-1l.4 1.1C395.6 3.1 384 .6 373 1l-.3-1-2.3 1.1C358.5.6 343.1.2 333.5.2c-3 .6-7.8 1.8-12.8 1.4l.6-.1c-8.7.6-17.8 1-27.2.4.5-.4 0-.6.4-.9-2.2.9-5.3 0-7.2 0l2.3.7c-2.6 1-6.5 0-7.8-.7l-4.3 1c-.2 0-.7-.2-.7-.4l-.8.6-2.2-1.4c-1 .3-6.7.7-8.4 2-.4-.5-4.4-.9-1.3-1.1l-15.5-.4 2.5.5c.3 1-4.4 1.6-6.8 1.2 3.2-.8.3-1.5-1-2.2-2.2.5 1.7.9.6 1.4a29 29 0 0 1-9.6.6l1.6-.4c-3.6.4-5.2-1.4-8.8-1.3-3.1.8-5.5 0-4.8 1.8-4.6.4-1.8-1.2-3.3-1.4-2.1.9-8.6.3-9.4-.5-2.5 2.5-12.3-1-13.3 1.2L192.6 1c-.1.5-.9 1.8-4 2-2.8-.6-2.1-1.6-3-2.2l-2 2.2C167.2.7 145.3 2.2 127.2.3c-8.1.5-18.4 1.5-27.8 1.2l1-.3L91 .6l6.9 1c-2.1.2-3.7.7-5.7.6-10.3-.9-24-2-36.8-.9C47 3.8 49.8-.9 41.9 1c.7-.2 1-.5 1.6-.8C35 1 30.4 1.4 21.9 2.8c1-2.4-5.6 0-4.8-1.2l-.7 1c-2-.6-6.4-.9-5.7-1.6L6.9 2.3l-.3-1H0V18h700V1.3c-9.5.7-20.7 2.8-31.2 4z" /> </clipPath> <pattern id="image" width="243" height="243" patternUnits="userSpaceOnUse"> <image xlink:href="data:image/png;base64,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" width="243" height="243" x="0" y="0" /> </pattern> </defs> <rect width="700" height="18" fill="#000" clip-path="url(#mask)" /> <rect width="700" height="18" fill="url(#image)" clip-path="url(#mask)" /> </svg> assets/uikit-themes/master-pinewood-lake/images/mask-default-image.svg000064400000011507151666572410022151 0ustar00<svg width="500" height="500" preserveAspectRatio="none" viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg"> <path d="M1.3 493.5s.6 1.3.5 1.8c-.1.3.9 3 1.2 1.3.9 1.1 2 2.5 3.3 1.4 2.1-1.6 6.6-1.6 6.6-1.6l.5 2.1s8.9 1 10.9.4l-2.3-.5c-.8-1.2 14.2 2 13.2-.4 6.8 1.1 9.7-.9 11.2-.1.4.2-2.4.5-3.1 1 9-.1 10.7-1.9 17-.2 5.3.5 11.5-.4 16.8-.5-17.2-2.3 14 .1 20-.4 2-.1 8.2 1 8.2 1s5.2.3 9.6.5c.4 0-4.5-.9-.1-1.3 13.3.5 33.9 2.2 45.9.5l7.4.6c.9-.6 6.9.2 9.8-.4 3.8-3 12-1 11.9.2 0 0 5.9-.6 4.5-1.9s6.9.7 6.9.7c.4.9 2.5 2.2 7.3-.9 4.6.2 9.2 2.2 13.1 2.2.8-.8 1.1-2.5 5.7-2.1-.7 1.8 1.7 1 4.8 1.8 3.6.1 7.1-.3 10.7.1-.5-.1 1.5-.8 3.9-1.4.9-.2.7.9 2.6.9 2.4 0 7-.9 6.8-.3 0 0-5.6 1.4-2.1 1.3s5.6.4 8.5 0c4.7-.6 7.6-2 7.8-2.3.8.6 2.7.1 4.2.4.4.1-1.1 2.2 2.1 2 .4.1-2.2-1.8 0-.7.9.1 1.7.2 2 .3l2.2-1.4s1.3.2 1.5.2l11.6 1.3c1.3-.7 5.2-1.9 7.8-.9 0 0 1.1.3-4.9.7 2 .4 6.4.1 8.2.1 7.7 0 14.4-.4 17.5-1.5 1.7 0 3.5 1.4 5.5 1.5 3.3.1 6.6-.7 10.4-.7-4.4 1.8 15.4.7 21.9.5l1.5.5 2.5-1c3.6.1 11.1-.6 16.5 1.3.3-1 .5-1.5 1.2-1.5 7.4.1 14.8.6 18.9.2-3.2-2.9 9.4-.5 9.4-.5 4.3-1.2 10-2.1 8.4.1 5.4.4 18.2 1.4 16.6-.3 1.8 0 3.5 0 5.2.2-1 1.6 11.5-.8 13.8.1-1.3-1.3 7.1.7 7.1.7.5-.1 0 .9.5.8 3.9-.4 5.5-1.4 9.1-1.4 3.4-.5-.7-1.2 4.8-1.2.6.7 4.3 1.4 6.4 1.9-2.3 1.1 8.7-3 7.3-1.1-.6.8 0 1.3 2.9 1.2-1-.8 3.2-1.4 3.7-1.4 2.1-.1 1.2-1.3 1.2-1.5.1-.4 1.6-.2 1.6-.2v-5l-.2.5c.6-5.6-.8-5.3 0-13l-2.7-.7c.2-7 2.9-13.9 2.7-19.3l-.6.1-.3-8.2.9 1.2s1-3.4 0-5-.4-3.6-.5-4c1-7-1.6-7.2-1.1-15.2l-.3 1c-1.1-1.3-.5-5.4-1.1-8.3.8-.1 2-2.4 2.2-5.4l-1.1 2.2.1-3.5-.2.5c-1.1.2 0-3-.8-4.4.2-5 1 2.3 1-1.7-1.3.8.8-8.1-1-9.8l1-11.2-.8.7c.6-2.2 1.4-4.3 1-6.7-.1-1-.2 2.5-.6 3.1-.9-4.8 1.6-11.4-.2-13 0-3 .8-3.2 1.3-2.7-1.2-.8-.3-7.5-.4-11l-1 1.7c.5-1.4 0-3.6 0-5.2-.1 1.1-.2 2.3-.7 2.3.1-4.5-.5-10 .1-14 0 .2.2-.1.4-.2-.3-1.9-.4-10.8 1-7.5 0-3.7-1.3-7.4-1.7-9.3.3-6.6-2.9-3.3.4-8.1 0 0 .7-1.4.6-3.5s1.5-7 1.5-7c.4-3.5-1.1-12.6-1-15.5.2-5.8.1-4.9.5-11.2 0 0 .7-4.8.7-6.4 0-1.6.8-2-.3-2.8-1.1-.8.5-2.7.5-2.7s.3-1.8-.2-3.3c-.5-1.5.7-7.9.4-5.4-.3 2.5-1.6-6.1-1.6-6.1s-.3-6.9.5-7.3-.3-3.6-.8-5.3c-.5-1.7 1.3-1.6 1.3-2.5 0-.5.5-4.4.2-5.7-.4-1.2-1.6.3-1.6.3s.3-5.2 1.5-5c1.2.1.9-1.1.7-1.7-.3-.7-.4-5.9-.4-5.9l-1-16.7c.1-7.4-.1-4.2-1.3-14.7l1.3.2-1.4-5.3c1-2.8 1 1.7 1.6.8-.6-5.6-1.7-2.3-2-8.9.7-3.3.8 1.2 1.2 2.8-.5-6.2-1.2-15.3-.5-19.6-.2-.1-.4-.4-.4-.2-.6-4 0-9.5-.1-14 .5 0 .6 1.2.7 2.3 0-1.6.5-3.8 0-5.2l1 1.7c.1-3.5-.8-10.2.4-11-.5.5-1.3.3-1.3-2.7 1.8-1.6-.7-8.2.2-13 .4.6.5 4.1.6 3.1.4-2.4-.4-4.5-1-6.7l.8.7-1-11.2c1.8-1.7-.3-10.6 1-9.8 0-4-.8 3.3-1-1.7.8-1.4-.3-4.6.8-4.4l.2.5-.1-3.5 1.1 2.2c-.2-3-1.4-5.3-2.2-5.4.6-2.9 0-7 1.1-8.3l.3 1c-.5-8 3.1-13.4 1.2-19.8.1-.4.4-.4.4.6v-5l1 1.2-1.6-8.2.6.1c.2-5.4 0-14-.2-21l.2 1c-.8-7.7.6-7.4 0-13l.2.5V4s-.6-2.2-.7-2.6-1.8.4-2 .8-1.9-.6-2.5-.5c-.7.1-.5-.4-.9.2s-3.4.1-3.4.1l1.1-.5C487 2.9 480 0 482.3 1.1c-2.1.5-5.8 1.2-6.4 1.9-5.5 0-1.4-.7-4.8-1.2-4 0-4.7.9-10 .4v-.6c-2.5.1-4 .5-7.6.6l1-.3c-5.7 1.2-7.1-1.7-11.6.9-2.4-.5-7-.2-6.8-1.3-7.2.7-12.7 1-19.8 1.5-1.2-1.9-1.6.2-5.9-1l.4 1.1C400.6 3.1 389 .6 378 1l-.3-1-2.3 1.1C363.5.6 348.1.2 338.5.2c-3 .6-7.8 1.8-12.8 1.4l.6-.1c-8.7.6-17.8 1-27.2.4.5-.4 0-.6.4-.9-2.2.9-5.3 0-7.2 0l2.3.7c-2.6 1-6.5 0-7.8-.7l-4.3 1c-.2 0-.7-.2-.7-.4l-.8.6-2.2-1.4c-1 .3-6.7.7-8.4 2-.4-.5-4.4-.9-1.3-1.1l-15.5-.4 2.5.5c.3 1-4.4 1.6-6.8 1.2 3.2-.8.3-1.5-1-2.2-2.2.5 1.7.9.6 1.4-3.1.7-6.4.9-9.6.6l1.6-.4c-3.6.4-5.2-1.4-8.8-1.3-3.1.8-5.5 0-4.8 1.8-4.6.4-1.8-1.2-3.3-1.4-2.1.9-8.6.3-9.4-.5-2.5 2.5-12.3-1-13.3 1.2L197.6 1c-.1.5-.9 1.8-4 2-2.8-.6-2.1-1.6-3-2.2l-2 2.2C172.2.7 150.3 2.2 132.2.3c-8.1.5-18.4 1.5-27.8 1.2l1-.3L96 .6l6.9 1c-2.1.2-3.7.7-5.7.6-10.3-.9-24-2-36.8-.9C52 3.8 54.8-.9 46.9 1c.7-.2 1-.5 1.6-.8C40 1 35.4 1.4 26.9 2.8c1-2.4-5.6 0-4.8-1.2l-.7 1c-2-.6-6.4-.9-5.7-1.6l-3.8 1.3-.3-1H5C4.5 1.7 1.6 0 1.6 0c-.5.1.4 1.8.7 2 .3.3-.6 1.9-.5 2.5.1.7-1.5 2.4-.8 2.7.7.4.7 6.3.7 6.3l-1.5-.8c1.2 3.7.2 17 .9 17.6 1.2-3 1.5 1.6 1 6.9h-.5c.1 2.1-.7 9.3-.7 13.2 0 .6.8-.1.8.4 0 0-3 7.3-.4 11.8-.5 2.4-1.9 8.1-.2 7.9.7 7.2-1.8 16.9.4 16.8-.8 2.3 1.5 8.3.3 12.6L.3 98.4c0 10.2-.2 18.1.2 29.1l1.1 1.6-.9 1.5c-.2 4.3 2.5 12.6-.4 10.1 0 13.2.7 29.2.7 35.3.6 3 2 12.1.2 9.5 0 0 .5 7 .2 6.6-1.1-5.6-.7 13.6-.7 13.6 1 2.6.9 4.5.2 5.8l1 4.3c0 .2-1.1 4.2-1.3 4.2 0 0 1.9-1 2.1 2.4.2 3.4-2.3-1.5-2.3-1.5s1 5.3 2.3 7c-.6-.8-2.4-2.7-1.2 10.1l.2 4.2c1-.3 1.6 4.4 1.2 6.8-3.4 6.1-1.6 5.7-1.9 9 0 0 1.7 4.5 1.2 6.1-1.1-6.9-1.2.5-1.1 2.2.8 3.1 0 5.5 1.8 4.8.4 4.6-1.2 1.8-1.4 3.3.9 2.1.3 8.6-.5 9.4 2.5 2.5-1 12.3 1.2 13.3 0 0-.6 4.7-.4 7.8-.6 2.8-.4 2-1 2.9 0 0 1.1 1.2 1.2 2.6-2.3-1.3-.7 3-.3 3.6.4.7 0 3.6-.2 8.5-.2 3.4.2 8.5-1.1 11.3-.1 4.9.8 10.1.9 15-.6-.5-.4 11.8-1 17.3.1 1.8 1.8 2.3 1.9 3.7-3.3-2.3-1.1 5.1-.9 7.2.1 1-.9 5.3-.8 6.4 1.6-6.3 1.1.2 1 2.5l.1 9.6c.2 2.1 1.7 4.8-.1 5.6-.4 4.6-1.8 26.2-.6 17.3 1.9 4.9-.6 16.8 0 23.9 2.5 8.4 1.1 16.3.4 18.4s-.2 6.3-.5 5.7c1.5-4.4 2.2-4.1 3.6 4.4-2.7 1 2 .7 1.5 5.1-.6 4.4-3.4 1.1-3.4 1.1-.6 2-.9 6.4-1.6 5.7l1.3 3.8-1 .3s-1.1 4.3-.1 4.9c1.2.5.2 1.8.2 1.8z" /> </svg> assets/uikit-themes/master-pinewood-lake/images/box-decoration-image.svg000064400000023103151666572410022504 0ustar00<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg"> <path d="M263.2 1.5c0 .1.1.1.1.2l-.1-.2zM300 76.4v0zm0-9.3V23.6l-2.4-1 2.4-.3v-6.1c0 .1-.9 1.7-1.2.2 0-.2.8-.6.8-.6l.3-1.2s-1.5.8-.8-.5l.9-.6s-1.3.2-1.7.1c.1-.4.7-1.1 1.7-1.3V9.8c-1 .2-4.8 1.5-4.2-1.3.4.3 2.6.6 2.8 1L300 9V5.3l-1.4-.2c-.4-.3-.1-.9.3-1 0-.2 1.1-.8 1.1-.8l-.2-2.4-.9.3c-.3-.1.2-.7.2-.8l-.8-.4h-1.2v.1h-.5c-.2.7-.5 4.2-1 4.6V5h-.5l-.1.2-.2.2c-.3.2-.6.6-1 .6h-1.3c.3 0 .7-.5 1-.7 1.3-.5 1.6-5.2 2.6-5.2V0h-2.7v.2c-.2 0-.2-.2-.2-.2h-.3v.2c.3 0 .3.2.6.3 0 .2-.4.4-.6.3V1h-.5V0H291s-.1.1-.4 0h-8.5c-.2 0-.4.5-.7.7.6.3.3.3.3.6v.2c.4.2.7 0 1 .3v-.2h-.2s-.1-.2.1-.1l.3.1-.2.3c.2.3.4.1.3 1.1h-.3c-.2 0-.5-.3-.6-.6l-.4-.8v.2c-.3 0-.4.2-.7.1-.2-.7.3-.6.3-1.1l-.3.2c-.2 0-.3.4-.5.6-.4 0-.2-.5-.1-.7-.3 0-.3.2-.4.3 0-.3.4-.7.8-1V0h-.5v.2L280 0h-6l.4.7c0 .1.2.2.2.5.5 0 .7-.2 1 .1.1.2.1.4 0 .6.2 0 .3.2.4.3l-.5-.1v.3c-.5-.2-.6-.2-1.1-.1-.2-.3-.5-.6-.8-.9l-.7.1c.1.3-.3.6-.2 0l-3 .8c.3.2-.8.3 0 .5V3h-.7v-.6c-1 .2-1.2.6-2 .6h-3.8c0-1-.7 0-.8 0v-.5c-.1.1-.3 0-.4 0 0-.4.1-.5.5-.5v.2c.2-.2.4-.3.7-.3-.1 0-.4-.1 0-.4h-.3s-.2.1-.1.3c-.2-.1-.2-.2-.2-.4h-.4c-.4-.6-.3-1.4 0-1.4H259c.2 1 0 1.3-.2 2-.1.2-.2.4-.4.6h-.6s.1.4 0 .4h-1.9l.1-.3h.2c.1-.4.4-.8.6-1.1-.6-.2-1.3.5-1.7-.2l-1-.2V1c0-.9.8-.4.9-.4l.3-.6h-3.8c.3 0 .7.4.8.8-.6 0-.8-.1-1 .3-.1-.4-.6-.4-.4-1l.4-.1s-52.8-.3-53.9 0-1.4 4.2-1.6 4.2c-.2-.1-1-4.2-1-4.2h-19.5s11.3.3-2.4.7c-3.6.1-4.3-.3-4.3-.3s-.1.4-5.7.8c-5.6.3-1.2-1.1-1.2-1.1h-24.1s-1.2.6-2.5.5c-1.2-.1-2.5.6-2.5.6s-.7-1.2-1.1-.5c-.4.6-1.2-.6-1.2-.6h-13.8s-.6.4-1.2.5c-.6 0-1.7-.5-1.7-.5H65.8l.2.1c0 .1-.1.2-.3.2 0 .2-.2.3-.4.3v.1H65c.6.3 1.1.6 1.7.6l.5-.1.1.1c-.2-.1 0 0 0 .2.2.2.3.5.2.7-.6 0-1.2-.1-1.5.4-.5-.5-1.6-.4-2.3-.8h-.8c.1-.2.2-.2.4-.2-.2-.1-.3 0-.4 0v-1c-.3-.1-.4-.7-.4-.7h-1v.1l-.6-.1H60c.6 0-.2 1 0 0h-.6c.5 0-.8 1 0 0h-7.6c.3 1 .5 1.6-.5 1.7-.2-.3-.5-1-.4-1.4h.2V0h-.5v.1c-.1 0-.1-.1 0-.1h-2.8s.3.2.3.5c-.3 0-.4-.5-.6-.5h-6.9l-.3.1L40 0h-2.2l-.1.2-.2-.2h-1.4v.3l-.5-.3h-9.8l.3.3v.1c.1.2.5 0 .7.3-.2 0-.2 0-.2.2.7-.6 1.4.4 2.1 0 .6.4 1.8.4 2.3.4.3.4 1 .3 1.5.5v-.2c0-.1 0-.1.1-.1s.1 0 .1.1c0 0 .2 0 .2-.3.3 0 .4.2.4.3.2 0 .3.2.3.4h.1c0-.3.2-.7.5-.8l.4.5.1.1.4.4h3V2h.4v.2h2.2l.4.2v-.9s.3.3.5.3V2h.2s0 .5-.4.5c.2 0 .5 1.2.6 1.5h-7.8v-.2h-.5c-.1-.1-.2-.3-.2-.5-.1.1-.3.1-.4.1-.2-.1-.4-.2-.6-.2-1-.2-2-1-2.8-1.3l-.2.4c-.9-.5-1.8.2-2.8 0v.3c-.3 0-.3-.3-.2-.4h-.4c.2 0 .3.2.4.4-.3.3-.7.3-1 0l.1.1V3s-.2 0-.2.2c-.2 0-.2-.3-.4-.3 0-.2.2-.3.5-.3-.2-.2 0-.4 0-.5-.7-.1-1.3-.1-2 0 1 .3-.9 3.3-.1 0-.3.1-.7.2-1 .3l-.1.2c.2.1.3.3.3.6 0 .1 0 .1-.1.2 0-.1-.2-.1-.2 0h.1c-.1.1-.2.1-.3.1H22l-.2-.5-.6 1v-.8H21c0-.2-.5-.2-1 .8h-.7c.2-1 .7-2 1.2-2.4v-.2c.2 0 .2-.2.4-.1l-.2-.6c.1 0 .2 0 .3.1v.1l.2.3.4-.2V.9c.3 0 .5-.2.8-.3l.2-.6h-.9v.6c-.3-.2-.2-.6-.2-.6h-5.3v.2l.4.4c.6 0 1.8-.6 2 .4h.5v.5s-.3 0-.3-.2l-.2.4h-.1c-.2 0-.5-.1-.7-.2.1 0 .1.1.2.1-.1.3-.2.7-.3 1-.6 0-.6 1-1 1.2V4h-2.2l.1-2.6h-.2c0-.4.1-.7.5-.6l.8-.4c-1-.4-2 .3-3 0 .1-.1.3-.4.5-.4H12c.2 1-.7 1-.6 0H8.2c0 .4-.4 0-.4 0h-5v.2h-.2c.5.1 1.3 0 1.2.6l.4-.1c0-.2.2-.2.4-.2h.3c.5 0 1 0 1.2.4.4-.3.2-.1 0 0l.1.5H6c-.3 0-.3-.4-.6-.5h-.2c-.1.1-.1.2-.1.3-.8 0-.8.1-1.5-.4h.2C3.3.8 3.1.5 2.5.6c0-.2-.2-.2-.1-.4h.1L2.4 0H2l-.2.2h-.2l.1.2c-.1.3-.2 0-.2-.2C1 .4.5 1 .3 0H0v.4h.2L0 .7v3.1h.1V4l-.1.2v7.3c0-.3 1.8-.3 2.4 0 .1 0 .1-.1.2-.1v.1l.3.3.1-.5.4.1-.3.5c0 .3.4 0 .3.4-.3.2-.6 0-1-.3-.2.3-1.6.4-2 .5v.7c-.2 0-.4-.2-.4-.4V14l.2.1c-.1 0-.2.1-.2 0v.4c1-.2 2.8-.3 3 0l.6.3c0-.3.4-.8.4.2v2.2l-.4-.3c-.3.1-.7.2-1 .2l.2.4h-.3l.1.4h-.2c0 .2-.1.2 0 .4h-.2v.1h.4c.3-.3.4-.5 1.4-.5v.3c0 .2-.6.4-1 .4-.2.3-.5 1.6-.8 1.8H4v.5h-.4c-.7.2-2.4.1-3.1-.2H.2v.2H.1v8.8s2.7-.2 2.3.7c-.1.2-.1.4.1.6.1.1 0 .9.4.3.4-.6.3.2.5.3.3.2.6.2.6.2l-1.3.8s-1.5-.7-1.2.2c.3.9-.5.2-.5.2l-.9.1v35.1s1.8.4 1.8.7c0 .3-1.8.8-1.8.8v16.9l.6.8-.6 1.3V90l.8-.2-.8 1.6v18.1s.8-.1.3 1.2c-.4 1.3.3 1.7.3 1.7l-.6.8v11.3s.1 2.3.8 4.9c.9 3.1-.9 5.1.3 8.8.2.6.3 1.1.3 1.6 0 .4-.8.5-.9.8.6.2.6 1.2.4 1.6-.4.8-1 1.1-1 1.1l.1 11.4s2.2 1.4 1.3 1.2c-.9-.2-1.3 2.2-1.3 2.2V218s1.1.3 1.2 1.2c0 .4-.5.1-.8.9-.3 1-.4 3.1-.4 3.1V242s2 1.2 2.9 1c-.4.4-1.2 1.2-1.5 2.2-.3.7 3.2 1.7 3 2.4-3.2.1-4 2.8-4 2.8l-.4 25.8c.1.1.2.1.2.2v.2h.1c.1.1-.1.3 0 .4l1.6-.4c-.3.5-1.1.4-1.1.5H.7l.3.4c-.1 0-.3.1-.4.1-.3-.3-.5-.5-.5-.8v5.1c.1.1 0 .2 0 .2v5c.9-.3 1.9-.6 2.8-.8-.3.4-.5.9-1 1.1.6-.2 1.2-.1 1.2 0v.7c0 .3-.8.5-1.7.4l.2.1c0 .3-.3.3-.4.4.3.3.6.7.6 1 .3-.4 1.1-.2 1.3-.3l-.2.2.2.2h-.4v-.2c-.3 0-.6.3-.9.4l-.3.3c-.1-.2.6-.4-.4-.5v.4h.1l.3.2c-.5.4-1 0-1.2-.4H0V293.7h.2l-.1.3H0v.4c0 .1.3.4.3.7v.3H0v2.7c.5.1 0 .3 0 .4v1.6h3l.9-.9c.3 0 .2.2.4.2l-.1.5.1.2H7c0-.2-.4-.2-.5-.3.4-.5.8-1.6.8-2-.3-.1-.5-.3-.6-.6l.6.1-.1-.3c.2.2.2-.1.5 0 0 0-.1-.1-.1-.3.6-.4.5 1 1.1.5l-.2 1.3v1.2l-.1.3h.5c.1 0 .4-.3.8-.3v.3h.9c-.2 0 .2-1.5-.1-1.8l-.2.1-.2-.2c-.6-.7-.8-1.1-1.3-2.1l.7-.2c.4 0 .6 1.1 1.1 1.7.2-.3.5-.5.5-1l.3.3v-.2c.3 0 .2.3.1.4l.3.3-.9.6.4.2c.3.4.3 1.6.5 1.6h.9c.8-1.2 2.2-2.7 2.8.3h.6s.2-1.5.6-1.4l-.1 1.4h.5l1-.2v.2h5.5c-.2 0-.2-1.3-.2-1.5.3 0 .2 1.5.2 1.5h.7l-.1-.3c1-.3 1.8.3 2.5.3h1v-.3l.9.1v.2h1.6c-.2 0-.3-1.6-.2-1.9.3.1.3 1.5.3 1.9h.8l.4-2 .4.1v-.1l1.7 2h5c.3 0 .6-1.4 1-1.4 0-.3 0-.7.3-1.1.7.3 1.6 2.5 2 2.5h.6l1-1.5c.4 0 1.5 1.5 1.4 1.5H46s-.2-2.2.1-2.2c0 .1 1.4 2.2 1.2 2.2l2.8-2s0 .1.2 0l-1.3 2h1.1l.9-.7.1.7h.6v-1.5c.3-.1.7 1 .8 1.2l-.1.3h.2s.7-1 .7 0H55l1.1-2.7c.5.3 2.7 2.1 2.7 2.7H84s.4-1 1.9-1.3c1.5-.3 2.5.9 2.5.9l4.3.1s1.6.3 1.7-1.1c.1-1.4 1.3 1.4 1.3 1.4H109s1.4-.4.5-.9c-.4-.3 2.3.8 4.4.5 1.7-.3 2.3 0 2.3 0l14.3-.2 1.8-1.4s1.1 2.5 1.4-.5c.2-1.8.5.9.5.9s.6 2.5.7-.5c0-3.1.8.8.8.8l.7.1s.3-1.4.6-1.4.6 1.7.6 1.7l.6.1-.6 1h4l1.7-1.5 1.5 1.5h11.3l3.2-.4h1.6l.8.3.6-.3h1.4l1.4.6h72.2l5.7-.2v-.2h.4l.3.4.2-1.4.3 1.4h.4s0-.5.2-.6c.4 0 .6-.4 1.2-.3-.3.4-.3.9-.3.9h.3l.3-.1v.1h.4l.2-.3c.2.1.2.3.2.3h2.7l.5-1.2.6 1.2h3.1l.2-.5c.5 0 .6.3 1 .4l-.1.1h.3s.2-.4.5-.3v.3h.4s.2-.5.4-.5c0 0 0-.1.2 0v.5h5l-.2-.3c.3 0 .4.3.5.3h.2c.3 0 .6-.3 1-.4v-.2l.1.2c1.2-.4 2.6-.5 3.6 0 .2-.4.7-.7 1.5-.7.4.1 0 .9.5 1l.6-.1.6.2h1.2v-.3c.3 0 .3.3.3.3h4.4s-.3-1.2 0-1.2l.8.6c.1.2.6.2.6.2l2.6.2.1-.4 2-1.6-1.9 2c-.2.1.6.2.6.2l5.4-.4c-.3 0 1.2-3.6 1.2-3.8l.9 4.2h3.4l.6-7.3 1.3 6 2.7 1s-.6-5-.4-5.1l.7 5.3h2.5l-.2-.7v-.9l-.4-.3c-.1.2-.2.5-.1.9-.2-.1-.4-.3-.4 0-.5-.2 0-.9.5-1l-.2-.3c.2-.3.2-.5 0-.7v-1l1.5.4v-6.3c-1 1-5.8.6-6.8 1.4l.9-1.2c1-.3 2.9 0 3-.7.7 0 .9-.4 1.9-.7l1-5.9h-1v-4.4c.1 0 1 .5 1 .5v-2.9s-1.2-.9-1.4.3c-.1 0-2.4-.8-2.7-.7 0-.3 4.1-.4 4.1-.5l-.2-14.9s-2.2-.4-1.5-3.4c-.2-.8-1.5-1.3-1.5-2.4.1-3.2 3.2-4 3.2-4l-.2-7.3s-1.8-2-2.2-3.7c-.4-1.7 2.4.1 2.4.1v-32s-.4-.5-.7-1.7c-.2-1.2.7-.9.7-.9V200l-.2-1-.2-1-.1-2.2-.4-3.9.9-2.2V152l-1.2-2 1.2-2.6v-2.6l-.8-.8.8-1.2V76.6c-.1-.5-.3-1.8-.9-5.2-1.2-7.4.9-4.3.9-4.3zM.7 276.4c-.3 0-.4-.1-.4-.5 0 .2 1 0 1.2 0l-.8.5zm.3 5.1l-.5-.5v.2l-.2-.2h.2l.6-1v-1.2l.4 1.8-.5.9zm.9 15.8c-.2 0-.2.2-.4.1.2 0 .2-.3.4-.3v.2zm1.1-.5h-.1c-.4 0-.8.1-.9.2v-.2c0-.2.5-.1.9 0H3zm-.1-41.2l.6-.5s.3.6.3.9c0 .3-.3.3-.7-.4h-.2zm1.5 15.8c-.4.5-.4 1.7-.5 1.4-.1-.4-.1-.6-.8-1.4l.6-1.6s1.1 1.1.7 1.6zM7 49.4c-.1 1.1-.8 1.1-.8 1.1l-.6-.8H4.5l.3-.8s.7-.2 1-.6l1.2.5s.1-.5 0 .6zm-2 65.9c-.2-.6-.3-.2-.4-.6 0 0 .7.1.9.5.2.4 0 1.3-.5 1.4-.5.2.2-.6 0-1.3zm-.2 32.3c0 .8-.5.1-1-.8 0 0 .2-1.8.5-.7.4 1.2.5.7.5 1.5zM3.7 47.1s.2-.3.5-1.5c.3-1.1 2.2.5 2.3.9 0 0-1.3 1-2.3.8-.4-.2-.5-.2-.5-.2zm-.9 17.5c.3-.4.6.6.6.6s-.5 0-.8.1c.1-.2 0-.5.2-.7zm-.2.7c0 .1-.1.2-.4.2-.4-.1-.1-.1.4-.2zM1.8 161s-.5-1.9-.5-2.1v-.4c0-.3-.2-.8 0-.8.3 0 .4 1.2.5 2 .1.8.2.6.5 1.2.3.8-.5.1-.5.1zm.6-4.4l.6-.5c0 .1-.4.9-.6.5zm.6 1.1s-.3-.4 0-.5c.3 0 .4.7 0 .5zm0-33.9s.3-.7.7-.5c.4.2-.4.9-.7.5zm.9 102s.7.8.6 1.1c-.1.3-.7.4-1.2-.3l.6-.8zM5.5 263c-.2.4-.2-.3-.4-.8 0 0 .1-.4.4-.2.3.2.2.6 0 1zm-1-30.4s-1.2-.2-1.2-.6c0-.4.3-.9 0-2.5l2.3.9-1.1 2.2zM10.1 59c-.9.2-1.4 2-2.1 1.8-.7-.2-.9-.1-2.6 0-1.7.1-.7-.3-.7-.7 0-.4.7-.7 1.8-.6 1.1.2 1.7.4 2.5-.5l1.3-.8s.7.6-.2.8zM56.3 2.8l-1.2-1.6 3.2.7-2 .9zm4.8-.1v-.1c-1-1.3 1-.3 1.2-.3l-1.2.4zm16.5 1.7s-.8.4-1.1 0l.2-.4s-.7-.3-1-.4c-.3-.1.4-.3 1.4.2 1 .7.5.6.5.6zm21.8 292.3c-.7.4-.3.4-1.1.4s.2.1-.9-.3c0 0 2.7-.5 2-.1zM109.2 4c-.4.2-.2.5-.6 0 0 0 .1-1.3.6-.6.5.7.3.5 0 .6zm7.7 294.4c.8-.1.8-.1 1.5 0 .7.2-2.8.3-1.5 0zM140.1 5.8c-.3.2-.6.3-1-.3-.5-.9-.1-1.2.5-.2.2.4.4.5.5.5.2-.1.5-.6.6-.7 0 .1.4.9-.6.7zm6.9 289.4c-.1.2-.4-.9-.4-.9s.6.2.4.9zm1.3-2c-.3.2-1.3 0-1.3 0l.7-.4c.5-.1.9.2.6.4zm1.4 1c-.5.1-1.1.3-.9 0 .3-.3 1-.5.9-1v-.1s.4 1 0 1.1zM150 9.1c-1.6-.7 3.2 1.2 3.2.2-.1-.6 3.7 2.6-3.2-.2zm25.9 289.8v-1.8s1.9.4 2.2 1.2c.3.9-1.4-1.2-2.2.6zm2.4-291.8c-.2.4-.2.7-.6.5-.4-.2-.3-.4 0-.9 0-.1.8 0 .6.4zm2.9 290.6l-.8-1.5s1.4 0 2.1.9c.6.8-.9.7-1.3.6zm3.3-294.2c-.9.4-.4.2-2.1 0-.2 0 0-1 .9-.4.8.8 3.6-.7 1.2.4zm1.1 1.6s.9-1.3 1.8-.4c.8 1-1.8 1.3-1.8.4zm14.9 291.6c-2-.3-2.5.7-4.1-.1 0 0 3.3-1.3 5.2-.7s.7 1-1.1.8zm5.9-293.5c-.3.5-.5.8-.6.9-.1-.1-.2-.8-.2-2.3l1-.3c-.1 0 .7.3-.2 1.7zm4.3 2.4s-.6 0-.9-.8c0 0 .5-.6.9.2s0 .6 0 .6zm4.5-2.8l.5-.4.5.4s-.5.3-1 0zm12.7 1.9c-.7-.8 0-3.3 1-1.7 1 1.6.4 1.8.9 3 .4 1.2-.4.4-1.9-1.3zm2.1 288c-.1.3-.1.5-.1.6.2.2 0 .4 0 0l-.1-.1c-.5-.3.1-.6.4-1.4l.2-.1c-.1.2-.3.5-.4 1zm.7-1.1l-.3.1c.4-.3.6-.2.3-.1zM246.1 6.9c-1.9.4-.4-.3-1.6-2.3 0 0 2.4-.3 3.5.5 1.1.9 0 1.4-1.9 1.8zm40.7 122.9s1.1-.8 1.1 0-.4.9-1.1 0zM290 188s.9.9 1 1.2c.2.4-1-.1-1-1.2zm.4-20.1c-.1-1.9-.8-2.2-1.2-3.6v-.1c-.2 0-.2-.8 0 0 .1 0 .2-.2.4-1 0 0 .4-1.6.8 1.5.4 3 .7 4.2.7 4.2s-.6.9-.7-1zm4.7-38c.6.4-1 1.8-.9 1.5.1-.7.3-1.9.9-1.5zm-.8-77.6s.1.4 0 .8-.4.1-.5-.2l.5-.6zm-1.8-2.8s.8.2 1.2.5c.4.3-.5.5-.8.9-.3.4-.4.2-.4-.2s.4-.7 0-1.2zm-.2 35.5c-.3-1.6-.1-1.8 0-3.5.1-1.9.4-3.2.4-3.2s.7 2.8.2 5.3c.7 3.9-.3 3-.6 1.4zm.9 69.8c-.5-.1-.4-1.2-.4-2.3 0 0 .4-.1.6.4.2.5.1.3.5 1.1.3.8-.2.9-.7.8zm.1-19.3c-.4-.8 2.7-.7 1.6 0-.6.4-1.2.9-1.6 0zm1.6 80.3s-.5-1.9-.6-2.7c.2.4 1 1.2 1.1 1.9.1.8-.5.8-.5.8zm3.1 62.9l-.6 1.1c-.2-.1-.5-1 .6-1.1zm-1.9-36.3c-.1-.3.2-.7 0-1.4s.4-.7.4 0c.1 0-.3 1.8-.4 1.4zm.4-222.8l.3-1s1 1.2-.3 1zm-2.3 193.5c0-.1 0-.1 0 0 0-.2-.1-.2-.1-.2.1 0 .1.1.1.2zM205.8 4.2s-.2.2 0 0c0-.1 0 0 0 0z" /> </svg> assets/uikit-themes/master-pinewood-lake/images/divider-icon.svg000064400000004113151666572410021063 0ustar00<svg width="70" height="42" viewBox="0 0 70 42" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M21.6 31s-1.2-.2-2.6-1.3c-.4-.3-1.5-1.2-1.5-2v-4c0 .3.4.6.6.7a7.4 7.4 0 0 0 3 1.5c.3 0 .7-.2.7-.6s-.2-.8-.6-.9c0 0-.8-.1-2.2-1.2-.4-.3-1.5-1.3-1.5-2v-3c0 .3.4.6.6.7l1.4 1.2.6.3h.2a.7.7 0 0 0 .4-1c0-.2-.1-.4-1.9-1.7a14 14 0 0 1-1.9-2.2.8.8 0 0 0-1.3.1c-.2.5-1 1.8-1.6 2.4-.7.7-1.4 1-1.4 1a.8.8 0 1 0 .6 1.4S14 20 15 19c.2-.2.5-.4.5-.6v2.7c0 .5-1 1.8-1.5 2.3-.6.5-1.8.9-2.3 1a.7.7 0 0 0-.5.8c0 .4.4.7.8.6.2 0 2-.4 3-1.3.2-.2.5-.4.5-.6v3.7c0 .5-1 1.8-1.5 2.3-.5.5-2 .8-2.7 1a.7.7 0 0 0-.7.8.8.8 0 0 0 1 .6 8 8 0 0 0 3.4-1.3c.2-.1.5-.4.5-.6v7c0 .3.6.7 1 .7s1-.4 1-.8v-7.2c0 .3.4.6.6.8a7.7 7.7 0 0 0 3.5 1.4c.4 0 .7-.2.7-.6 0-.4-.3-.8-.7-.9zm22.2-2.8s-2.2-.2-4.6-2c-.7-.4-1.7-2-2.7-3.2v-6.8c0 .5.9 1 1.3 1.3 2.8 2 4.7 2.4 4.9 2.4.7.1 1.3-.3 1.4-1 0-.7-.4-1.3-1-1.4 0 0-1.5-.3-3.9-2-.6-.5-1.7-2.1-2.7-3.3V7.1c0 .5.9 1 1.3 1.3 1.9 1.4 2.3 1.9 2.4 2 .3.3.6.5 1 .5a1.2 1.2 0 0 0 1.1-1.7c0-.3-.2-.6-3.2-2.8-.7-.6-2.3-2.6-3.1-3.7a1.2 1.2 0 0 0-2.2.2c-.3.8-1.6 3-2.6 4A10 10 0 0 1 29 8.4a1.2 1.2 0 0 0 1 2.3s1.3-.7 2.9-2.1c.3-.3.7-.7.7-1V12c0 .8-1.4 3-2.4 3.8a9 9 0 0 1-3.7 1.6c-.6.1-1 .8-1 1.4a1.3 1.3 0 0 0 1.5 1c.4 0 3.2-.6 4.8-2.1.4-.3.8-.7.8-1v6c0 .9-1.4 3-2.4 3.9-.9.8-3.2 1.3-4.4 1.5-.7.1-1.2.8-1 1.4a1.3 1.3 0 0 0 1.4 1c.4 0 4-.5 5.7-2 .3-.4.7-.7.7-1v11.3c0 .7.8 1.3 1.5 1.3s1.5-.6 1.5-1.3V27c0 .6.8 1 1.3 1.3a13 13 0 0 0 5.8 2.5c.7 0 1.2-.4 1.3-1.1 0-.7-.4-1.3-1.1-1.4zM59.6 31s-1.2-.1-2.6-1.2c-.4-.3-1.5-1.2-1.5-2v-4c0 .3.4.6.6.7a7.4 7.4 0 0 0 3 1.5c.3 0 .7-.2.7-.6s-.2-.8-.6-.9c0 0-.8-.1-2.2-1.2-.4-.3-1.5-1.3-1.5-2v-3c0 .3.4.6.6.7l1.4 1.2.6.3h.2a.7.7 0 0 0 .4-1c0-.2-.1-.4-2-1.7a14 14 0 0 1-1.8-2.2.8.8 0 0 0-1.3.1c-.2.5-1 1.8-1.6 2.4a6 6 0 0 1-1.4 1 .8.8 0 1 0 .6 1.4S52 20 53 19c.2-.2.5-.4.5-.6v2.7c0 .5-1 1.8-1.5 2.3-.6.5-1.8.9-2.3 1a.7.7 0 0 0-.5.8.8.8 0 0 0 .8.6c.2 0 2-.4 3-1.3.2-.2.5-.4.5-.6v3.7c0 .5-1 1.8-1.5 2.3-.5.5-2 .8-2.7 1a.7.7 0 0 0-.7.8.8.8 0 0 0 .9.6 8 8 0 0 0 3.5-1.3c.2-.1.5-.4.5-.6v7c0 .3.6.7 1 .7s1-.4 1-.8v-7.2c0 .3.4.6.6.8a7.8 7.8 0 0 0 3.5 1.4c.4 0 .7-.2.7-.6 0-.4-.3-.8-.7-.9z" /> </svg> assets/uikit-themes/master-pinewood-lake/images/background-texture-petrol.png000064400000007117151666572410023623 0ustar00�PNG IHDR��d(� �PLTE*��3��&�+��,��$�}{s)��&�~!�zw}u/��zrzr~vyq'��1��w%�~-��"�{#�|-��0��yq1��|t+��{s2��2��"�z �y,��/��(��.��0�� �x(��.��|t0��-��!�y�x.��xp)��'�%�}1��/��$�|}u#�{0��~v*��xpv3�>tRNS # �% IDATx�فV�ܶ����RHHZ,H�4�����y��p��8g��~o��k�����'q�S��gJ�� �:T��C�h���(����|�4�B[(��6� ��*�K}M��Ah�a�Ǝ(&�{�:�:���v�as�/"���B��sL+#�"LC���_Ԣz �m���Î 麥��Q ���Z�s��L�����z� @�5H͏��4�PH��+G �+�b����geG����n�!�Lz�ۑ�L�v��1\�I�Pq��7RsiB'�6���vѲ�+p&�1c[s}�v��i&��b<�Ւj�P����駯K�L1��lq�g�S���N���|}��9yLvƇ=�'*b�9%��1,q��)����m��e�<c���� S�%���x�ݽ��dPp��Hx�kbI��E>����z/nv`��Ή_��{W.����_ � IM6�劽�OBCk)rw��/Μ��g/� �CX�.9��l�`���� �LK��>��=yMI5t�6��ɝ�&Ƨ��w�ƌ����僚(�% ټ>p?P���� gZ�#�(^a���,ۃ|U��*��i@<s����w��\m�ON>�/c�R�ǐ*�J�>�ƪ0�`�/�A2-���N��>����g� ����_��Ϸ�����M�c�]��L6�K`m�K���]��ty��[���B·�@B>֞Hx�9�cӶ�[7RU���%ٺ���634K�9�Z �b�%�ߐzɑCr��k�_};1�R�Xeh�}s���c\��d����q���V�n��>M\��:�,J�ǛM�� f�`:c��!wo' �s�Gc'W`�e��ܞ^��E�!F��$FZ��K�G���P[���՚�r+^����:��L��#����%�V�V* �,}?\����;�}*1Zѩ��[�+����QL}�� ���/#s��ѕ�>3�ÝrHl1�6�8���5o��W���ݚ�f�P�}��c�5jyRBޱ�X[��8�vl�aeI%V��G��>� =~��=�kdN��HJ3E�gO�!������Q��t;x�2�L �Tk�#�[w5#�=[�#���l�`o�|B��$�Y����H.�>�%�t�W~�zcb�)D@�k��d�[vf�4U�cX��yb��ê^��i����N�IW#FL6�bQ��u�O�"�ݤz@�a����P�qR�h�B��{�<��J�xٖ�m�K��t,H�A�>�kK����%Ш���\cQ��~�� @���+;8��y�R�W/}�^u�_Gzf�Q$�j����2:ebV��T?��b���� 5�gX�p��."�G��� +���mZ���?�W�~qV��(�K��Sf�<�X8D����9�ZUQR����e֑;��6:��A]�;��-n�l!l��J�#û���&����ǟ�T D�RN�DK�p>@���.R�)%ڬV�O{���� �@I�M�m�Yc���Άʇ-��ۇam'[��Uv'qΗ<O��"?X���Ǎ���QM�x��\���2fS po?&�-`�E!B��X~wE+Ӟ`���-�=�����S�³B��h[��3q�(���ڮ_}b��`hX�`����{�}��wk�v����0:�P��i/�s2Wb�P��%"Zں� ΐI����@6,�W��&(U����w�~�X|G�%�F�Q�ŭ������N���*5K䀱�皵=vK�?�=D άM�N���5�L�g���]�EIK$Y��=&�w�h�O����w�����g�~�(��WះI�?��sB�7 �V5��&,��2��A�A`��ZE�}~���@���)e���8z�i<��9��YG��:�j���:�3��]��a,��&~?4e�0Y0�I�jR�W�$�����/�?��d7D_-3333�ϕ��� h�I�U��n�r�@�4 ۛy��a`�i��q��k%o��#�xu���7�襾���w��P�V}�!=�k���f��O��B˅�b=�|�U�ܔ͋����]]���u���=w���d��lŝ���#�k�^��G�S�?ލ�{_?�.� }*�h�uC��tBw����%�⡵ �<�^�"��[���?zQIv}~|[�4؟I�� �v \�<w��tt�}[��㓛����e��9C������ ���i��;�&�9P( (�usП�$���A!��7$�ũ����G�8fM��~tW��2�������b�<)�E�Ar�"��&��G���W��TzR�cB6���´��/ذ��nj�h g�(d1 �>[�).1I���Z�pl��գ���M��u��;�HO���F��p$pt�5]-�GWT���%A�,�8n�-�5m:�@��/&���J~�����j침/�i�� �0��Z���v���j�=�dg�_@�q��}p.4�P�6��Iq4R��G6�� �'����Lz@s��[���n�,X_���ɲg�|MS��k� q��W(�ʄ^� d�Ѱ�1����s�IT�<�}6H�z������{��W4GűӢ�M��6��Ď��(��e��(X"!JH��RSĠ��<�~��> �� h���y����D�2�6�����6�0sF�x �����i.G0�_쵭��5CgHB��L��l�[!�u�$�p�Y呀4ȱ�0�����D�mE�%N4�GG℄����������1(���=~����)�FB���{���JU�ȣ�܍����(?]�Oe�j7���Ô)�ݠGv�#�����O�����;�r�q�F,^��i7]�0�z@����5�#=T�n�cO����֛�Z^ͣ�!����O�b6�e�{;2��Ȱ����O�R�.��܈�z��R[�xh��s�8`�>v�fz@̖=�>) !��q1�7`������|���o�mU�~Z�� �B.5����CH'Ӥ�Y�-��$��:'Q;ူ(68z�%� �O:��!�~��0���]�?LLPxFc?�C�x�1�X;�Kʤ���FӋh��?H��L?/|v�I��\E�-�� �a������_����� ��:}G^t�E�HТMwLP�0�5;z��$���.YH�T ]}��Cg��l� �/�&�(Jh��\�{���Bw���RE ���W2IEND�B`�assets/uikit-themes/master-pinewood-lake/images/background-texture.png000064400000362702151666572410022324 0ustar00�PNG IHDR��S� ?�IDATxT��n[w���װ��٦ueEV�)�"[����H�`�hGV�8@\D��1�/8��缀h@�q⑦8�h�g�k��9�m��o��ݬ��ԧ/��P�|�����0/E���Uf)�g;�a~2�dn&'����|��R��Eu�q���ka���8{s2Ɍy�U�`P���o'�wZ:-��~6�T������=(0~2a�F��~����}7z�^%�\g�w����G��ԩ�4�Eу�$���qV�dt3�t:�4(���s����J�a=�5'e����s��t~��_�����E����=V����N�ta~3T �{��I3�3z���4���D�A<(L�-��ّ�8�k���X�,r��胊����~Y_0^Y�xe�OuZ��=b0�B�ݻ|�8��^u�AX�L�=�2����;GYy���ȸ��]���io`ٚ�Կҽ��ݕ����Y�t��t�c&�D~�l])s`Y����/���N,[��1g:3vA��c̮��d;B��n|y������3����e4Rn�`E>'kZ�A�kc�)�:��}����6ƛ�j!>����^��G��1������s�v{.}��&)(�A\T��T��̕�����v��g?�*��0h/k�lCay>�s�Al���8�Ɠ�L?,Nt�A�]����%y�竝:�}V���.e���V��/�L�Ll=����ƶ�]����y�z���)���;:�M�'��N����p3�����i� ��c垅�j8�c�.��K'��^'N����G�vz+GV������gDvDm��N{b���t�X�7�?��(�ԛ> �3|l@�=�c�v�ӭ��~�+5v�u�9(p����o��\�� �V&��Go�+̾�S����(.,oH�9��i��Ԫ���Hos��W�7gW^�*���٫��L@�i�gWqN}�S�[��P����Ef�{$벟�9���U����A��1�oT�v����㾵.Е�QF��p���0��9-����`���e�|"�}&��˸��F>z��;wo�c�@ڼ�4���W���%��Ѯ�9x��%�wVo���BG�$ȅ k3�kA���U�К8ॎ��M.��h���/*!l�!���e�W��p���XQ���W��� ;�;ڨ��'0�+��ţ��#s�|0X.$��lW��A�U�D'I��oH�����͠�݁K�~�_�q ;��|{��� *v:���Ot���z?WN-�`S�ʼn#���0��ֲ qf����XG苄���X�����{Z�y;���n�ޝ&���^+����H��@�7"�0H�\����������(^O���P`�Tf<���:'Qqee�/ѿ��`�z���`�l�( �h�p�1_i:z_\ہ�9�Di�"C��x�2��32�E��k��ӕkN��\�:O��G1Q-ɰ|W�,�q{[͑,{�/�9z*�8��d&MeP�D�363��2.n8�Ix��VF/F��5d�o-2�e}�R}T��_�)#�FS}��ӧ�� r|F��~9�ыD>�~#<����/���5"�͏r`�yR��Sփut����@59IY ��\��e���A�g,�'q��(�-��e6vc���ei�Zw���ܾn-,�U�|}xw�5�z���V9 P`��FD`��pV2��������v��k�@�#��#'����s�dr�O�9��Jt+���b�,��l`�� ��;Ί��~�)IB��q��d�¦�[�?�;�`r��lx��^��Y���Bl�qvdY�&H��gޏ���s��#��ȁ��R��i��_�1?Q�I����%�S�'��2+�0��Z����I�}Y+�R�Zڪn-�B����\�rr�d��C���H�@��9�/9+:��;��ܗʧ�����(��d��X��>�j=�#m:j�q�=��V��s� (��_��G���� e1f�k�6F���^ǎ��m�g��@P��ӭR� &�`���no��>+'�L"/��(�<n�{��h��\�����9c&����V����BV";�ƍc W��.`��piC,W��p�n� K/S�6��2�~_�a|t�{��i׃�?G*����C6�+�i���{���bb4R���tw��+�n騱�~��{%<�ׄ�I�U|�9�f�Ɲ���E��ִr�}�Ț�� �g��b�X"�2���(p�����i�:� ]����X5�2�$�/��EYf�!'R8xS��;��V�A��e}5L/�>J�b�A�$�z �]o 8�`yP`)��]˭LZ�d�8Pf��N�S}bg`�ޱ��V�����B�d{��>�P.�+`��A��n��@����E9x|�00H�i��k]p��ϳx>+~0|WO��>�;�`����{�J� �2�u�<��z+�"}�Z�i-�џ[ȯ��=����י��J���_��'OnA�Q����#t!���6�����=�Y|X�CI��A�Ut�8�K���!0�c���- �p�xq�<���w*q�C�0��r�����lz�@����Xi���eJ:��v�Q�9���GG�4����8�0~��)i`�$g&yCS�{s�y��(��]L2ÖTe��w+����Ϟ�W��,�Y=��g5dB�� ΄��U��/��X�1d����&���l#�4��@U4|��4o2��"<�<0�z�� ��qn�rMk+�m�`�P�K����fSڌ]j�'jB�Zԇ_0~�<Y�^) Čշ�����"����!�"۩������d���9j����0 ��RN�o����Qw>'jR���S����e �N�A�|Î�="��'=�iE����72��+�Ɍ��0`�YY^^��<S�¼� �e����.)�::�*�����j�{t�R��>=�EY�$OL��nb�¨ol�3J�,8q}B��͋u�L��}����Z��籖G�3�;���o�+D"� ;ʓ�4ۘ�m�P�R��Av]����W�Y�h���Z��{�Cm�"Q�z@�ʻ,o��:������6�/�S����JZ�E��X�B�zܩ�6[bS�c�{�M��R�Bi=�r�@�Cdؚ�H�M ��#ΌN��P3���@F�n2�������g�l�0�}�Qljy ����Yܔr݉c�%��j��<���)zg�.���ԇ?��sm��<��: �)�{Q� ?Y�����Nw����[M�Ǚ�����/Q�,��r�D6L.�3-ʼn�믺�GO�1\j��Yg4U�Q�w�뷜\v�Ch9�VX�M�t��P�8�$�n�����S���(�����8 :|&P�⇭"�`�f�<�V+�Մ��F�=�L�I(����O�����A~����Ė�LH��$N2 6�����%0���R��5�#��!���!IFu�������[;�~Id��W+�-� R��� ��U���ܑ�#� ���l��͒���< @�V��>(k�`�� (��Q��O�Z��8�M�䒲З���Mט]�Hu�my@0��Ee����hj@dՉRP�m,GG;�����Ѐ!�h�x���-�e#I굦��G�]�G���Rg�oK�Rq���~�����ɠ>�����82kn�5w���'�`|.��%�`�u# �g��xj����.>_�V��U�7���I��^ԑ�62p�z^�WI]F}L�����+ ��u�<2��������Cg��\t�d@~�ܣG��F���0��8�0N�����U�n�q��oN���,xw}��dR�'��k�_�S|jz�|$(8D��� ˍ�y��>Sr���%����SN�t� �h(�E�]Z�A�)��鼨�s;�aP��[��%6�w���r��u�g��^��v�#Dw�"PRb�A�������FcX��Ұ�<~0�>f��*/j*��:QHw֔�L'hѷP�[�Ԫ��_"�7�Q�I��*v7��D�2я�;�犦F���c���g�3��)ں�F=UX�к*�1dS��k+J:怜^M��#�R�E^�7�&u�x�K�o�ʿ-:��CCvzE�^lm�R�N-��/�A�2��I%7e")#h"7��M��a=���UA���:��qeg�17SP�z���0�9��Dܕn�w��g�i�g��a��uJ��)e�j7G�*p�D��2p�%�i�r�(�d�%���օ�J}:��͝� �TY�1,4��fT�� [Hν/�>Ӳ��#�}��(Ȃ�aywq��Y��^��ڽ���z��C)��'�0X��#u�b�w7�f�*� �ᝰF�~��Ϳ�-�ڔ�4��h�Ys0��q��Z��a����n�!f�Y��g�U=�����)J�H����T��_d`�89~@��u�=�>{��@f��&Sf3R�HI������ ����T\W��aӿ��c=�T2�M��� �9���h/&-�2���;�=��� ��|�E�����E�L-Bw�����(K)-M�k�s�K������I�����T�h�nV@��[��P���~r���J��J� ]��Q�^��)gf��/ˊ,|f��ќ��C}X�}"�x�{8���:�7 #��²\���i�K���8�;\�J��?T�>��4�����斩�fl�J��� U�d�9r� xbXl��N])+;+�@ſ�:`��!���8ͤX�"�F�ю�:�`�\�qX���~~�AF~�~������a��Wk�nuuI��@I&&(r�Hg]q8��0�^���9��gdh������|��`p�W;�.{�);�G0@�5�5eX�zQ�;{�e�F4�� �m�9ʲ����Mzn���0pí7o {t����=��0�(𘣃2���� 4�&(vPd��px*�/�=�aJ�d`�������::�s��]|/�?��V�09����\�ũ!��v-g�li7�t�x��]��6�݃>�+N�A�l���u�x���|�$���)L�j��*�4������&�VY��nP�=��(��u���wZ�/�����Nv42 �h~`�8D���sG��T�<O�N�qi�(:\N�lB�N�L�+do�ܲ���1R��<�N5�3`�Q�+:��������)��/��v~+��ּop� T�~�w���!����;��|#�b4+�ۼ�ظ��mtd�g��8[B���H��R�ug���]7��6*3�vs�L0t3 N�P����z>�&��+�O`��k��浳~3}����0�k��6�a�Y���o�s�;������vJ��mpv��b��k{=7�"��S�7{�l��Z���:S�A�m/��q ;������?�˖�8tck \ϖϜ(6�`A�M�5�c�;qu��Kƥ��0�'fd��3�_��:)n�6���U�rS����Z¦Y�O�?p�~� ̞}����j�q&&�r&�\�� ���.�d�/���ð��`�Y�j-;ryq�i6�jE��Z��������d;�I��_P�qgA���<���X\ �֕�/��q}q��O���raF�x�Ω*����R~�q��$�4g�ٵ�Lu <P���@V�у�bR�]\��V���Ǎ�ݹ�B����T x�6�[�Sy�O�Y_��c�4MB)a4Go�I7}r���ބ�|�#�/ ��mr�.�m���5�O h6kG� �t�2� .� k��O4��<�S���>W�g��o��,�1���V�tԠ�O�O� ��Cۃ��k&f�q6��:R�頒~����8��ث���\�,�A�6ĝ.u,x~$X7gMďy�g�WJ�s��dצ 4��`�*�hD�'��&���G��s�cCu�� �-�|�iOA�U�`��@Y1?h��j֦ۏ���ރ��`@@�0<+��L������ʲeg���Gώ�O��}Β�IJ*t���@�r��pD�����p�FN&�ucji����=��'I�ZSt�G�๕�hII=� ����6�*��+�]9���M����e*u|q�82N9t4�v]OA���WǙ$(�N�R-Gn,�a������8Z�5��4W�o.�. 01��~)YO�dmd�d*ָ�Q�9k�]]%Q<�����-��A0�����4��d�M�$�x�y��n���!өw���<�ad�m�@}E�{`���?����AsZ�d����� ��~��ΟW0�9"d�+�_��[���Pi`�O��p�$p�t���]l~���2��U���I��`!T���P��7OL ��`���7gѧ~����a����~�G�Λ����~sg�w�#(S��p^�*`0P��cvWL-���+��;: ��w?�����/I`�z�UD'�0�Ƕ0�,5�����|0�s"�fX˵���=l[�`P� �vw��Z�a3f~0K��7��E��M\J�Y��`�*/�iQ?�uf��?u>O����Y/��Y#��:�l���*�Dl�������ӱ�C��ޭ���W�u6�p|N�K�$�6�2Y�5RM����o�Ԩ��q|R�;0p!��,P/� ���uˬ��!w<4�: �:�;z+�v����hɁ*Sxtw�W-РÙ����D�qbs#$ L��ݰ���� �������+��ڲ=ȧ���ץWU~�19w��� u���4wx����M�ДR�����>��~�3�� �l��@}]��GջA����JyR,�)��+�@A��%k���+��N����*D��]w�9Nr��^q�2¬|>���z�V�=��e�$����}��[�Z�� ���'_s�:i&L����s}�~��[��u;���w0�5K*tޯo�2�A���ʢ�djK!(v�����,l���Dt���3��@�E���y���t�/�U_��[��6���18@�` ^,ZS�C��4�$����H$��I$$�ҡEiwy��x�}�3�oH�m�!���˨Q5��o�3��3�;�G��[�[SW6����G��#>v?x�M�fr�gM�%`��T��NX^~+҅]�ɽ��a��Q�o�'3~�no��mQNN�Q'���עBZUe��_�-��A�����g~�Y�DZ������ u']Nמ�O�Y_x�/"!��\p̣iDJ-o<�R����u ���s���2��Y!v?������32�Ne��e9hj��/��$�w��<��p��D��Q|?����[���>=m-S�G$���z�� G�֫��D���;�H�����d�ދ0����+d�N,z�"l�݅�I�.e-� �K��wih��4���Uy��sM��5?����S"�5͝R:ZNeUow�����x��AM��z�d�ϐ?�������}"fL|�u�|�,��}ɠ<��l8���ñɝDO �J��رKۧ��Ȁ75t����o�J�j5Ù�}�ȩ���ܲ�& *Q�w[�k��聟_K�d�%����8cd��ђ�d�~�E2�����C�BT#�O6q��w�4���d����Tba�"�*�<���bT4so*j��ν�"B�?�s1�n!a�����7���1m��]��L�X��J�Q&>�r墺�~�*�n�SJ� ��R�rBl/��sz��D�.#CAa#7�/�xA(v���̘c�Q�Z/���(���{����G��vM ���LLX���zz,����b�a��U��I��Jl�k�B�I����N��F��i61�bU� ���LMf٣�~l2��r��$��W��-��ӷ ���ϙP,n�϶Z<>�s�|��2�q)e4)!�$�u;�n,*͑��2J���I�:=+�C���b�M.��"�"e�$Yl�H�����{��A�U��d9H ϻ���G|<�*7�k�L���s,�^S�+Oo�J�9}>��p�r�{p*f���|>: ���_�u�B~QT�B�h�@}�(P�h��s3^�-���ϭ���$���e0|氅����#y��hd�`�q8� �=��S��!���|�|f��2� H��`�$Ԭ����Ј6�@:H��g:�@\����� �>̄[M:Z�zF�0V2kI��f�x13|^�m��V���'`��+�Cfٸ.�� 1��X�Pb������q�u)Q<�j��f�����==�D�6/�� ش\�����|��$�<�o��̷�b�$&':�����2���T�p�Vx��nT�o��ђK8̸ ����l��T6I\���Q���#�ܻ�9��oq�w�z|�Y�Ѯ�!��2p�?��4�<�q�����-�l���{�t9�YO� @d�n']=8u2;ză�+�,��D�i���s��o�ޝ���S2ɗ.U�e���8i����<���S#�yh�ϔ�ߑn�.Hax;{%�;s3�wy��M��t���^˼�Pa:k�M�S6�)��C�����?��F�~x�ai$�a�|�*1���Pxq��S��.W�~�y�̍<��* ���5���rz{�;] �=��]���0����H�!'��Ym��uWy��?����ï�M�S�T�׃����.|�_�jY�j��*l�re�x�øE���4d�e����9��x�;/ʋ��k��E�P�� �@O��T9��k6�<���\�]��� �č�л��N菳�#SnCX$�����DRy��zj�}ZL��$���P'�.���>�"ö �]�K�%O�b��WSie�g������>M%�qj�I�c4��6]��g�mp��ս{vu��:�����C�(Un�{ aXx1�j|1Y�<y?'�k��X�w���Kd�6(��|�nO����l(u�i�\yG��l�#��\�d��H������K���\C�/�φ������MO"��Fɐ{�Z��c�� �d�%���#NQ����8���{�B72�*�%��ڸ�轒�I�J|39�=�?���cf}%V��4dX@@,�b�d�Xt94qT7���QQjB���rS���-���� ISߑ� �>����f6ȑ}�h�jل]�"�U�s�d�?z$Qk-���L/���G��q�<=`l=�����{������2��!��* ���A�����A!XX�hU2��?ce���J�`���L�'btt���ӫ�>�9��y��_�V�U)v��q5��!�gYAˢ�GLv?,�-G����,���1(Hd�e��ϦU�U����"�506������F�+t��+��d�<��GŢX���+�;��JV�k� t�����/J���DvaY����'N�y֏���FO�}K�A��2|7��'����8�5Ϻ.���Q�8�n�����`P�3�Z�-É�a-dIP��d�=}��*����!�.���Y �袮��g���h��%��:6��ɚ��X��s2h8�3��-���\�څ~9c�O�sO$�\�<Nj���+�@X��mvb�\k����w�!X�)����(� �TBul @��i�˵�tr ����C���=>�i\���sUFzP���{rrL?�ޫ���1.9���D�p�Dy�k��<��߰5���o�3.'���nd�j��o��J�P�'�9�A��_5+ � Q\�R�xQR���Z �<�v,@h�/�L\��|۬�z�V&̤��l�Ί�!�|�O���~ !��©���W��u_5�ϖ�� I��vq�7mN(;<� k��E%VJ w��� V�uz٤�!�<3�a��Dr��[kG�\R`��tSk��@8�%Dd��E��n��}kRf��� Rg�R��s��ȌS���,Bk$Ԙ�xt#�M���f�����=}x��⦓#�d`c9��CuZqi�^��*��2�������҈���\�d&TօH�}�b1y�o���a�Zx�y�d���k��SN�����#�Ր�� �!�IH ߚ��mD��G��̛��S�u��2̎N_L��u5���ޅ��e�8�(���i?�x����g�Dž�ǯ����ң�UJ$���MS+�����sڇ�Y����ή�Ӄ�O�>����I[�iaY�@/����e�{*OB�Y�a����;�g�z�Ϡ @Ƞ����^�;ûn}����H٤�8�u������ �}�@���m�|��?>�&�5%c�w�(�zj�����������$A����G�T[$�����U*�T�6l�����0��Yp�M_�j��)���貶�5? (�l*��� ���om��NV����� ]�V�?L+K�4���͓��ΧW�F'�M2��_-g���v�sW�2Y�O��h�L��f���ѳ=I��5]hq�%�������d*��eaXzju�H�q��Z�ڭ�&0bw��sc���zP��#�����(/�Q��ؐ�H����r>���~�nȀ�:9�C<�͋d��5�5[>l%����QN�AV1ܓ[�]V3�Л�)4�Ҕ��s���Ē���q�$My6Jv�g�a6U����P���%���r*�A4��;8%����g��:̃��'`��+0֔��2�\aש2�R�=ȝ� ���~9�*���w%�����F!V��=h�z`�P��J� 6'd�K1w��<���g�[, ln(F>���i[+d��(�T�w��M��5���15}�M8{��E�(�ybT��n�V"W�#��ܔ�˳|b���p�g��A�ׅ"fe�|���=74���4S��x�"��%q�nTw�T�BF�e��$���'�$Y���=V�����~�����W�^\R�l?O���'z�io ����әrrhj�?�ƈ°�6ݰ���,}dم�K��ͼ^8��^��`���+,��Zk%�x�qD���_�/'W�x����e�M�#��t��y��� `��<����l�k�?��K�o�cSaԶyɽ_������|rm5�te;.~����,8�����Q��1���l��(�}�yB'��>��e2�24�W�>��OOG�Qx@N����<b�ߒ{M8F���f�Dy��C���x���������-�D�@%�I-�:����؟N��7Y��}�u�=��}0�z���OR醟O���w%�k�_\�q�f�0�T�w�zx��r��16Y�����%�&gI.��v�H�[L<����!f\t-L�mq5�vp}X���۱�9n�Y� �d|��� Y�lo,�ۭ'�[I�� �6X�F���ꇃ�u�x��]RHi�ڛ����OK.^���l�D�\rO�1�In�Y��~�n>�J���x��� ��"��Qo��v-](�����0rN: �����C�mVn��������D���3�{��r���vj��k�2<��PnA(TJc<���t�X�aW�YτX1���������On�-�*��E����;ꭴ@ƃ � �G�g��"�����&��ga�]o%O���bf'3���Di��.��<����n�Jy�6TY[��~z��Y��씎A�aJ��D'[Tt��t{�J~�'Uޞ���v;�]���5���"�;)�w&z��a�y3���;���V�T�6�����^z�d��2���(��;��W�0��A�sq����$sDqP��{�A�����8���n���X#�s���VX7Ȩ�^/�y:�$���K�1,�"��5��TwL�~�*@�,Ž�k$�@�m�>>&TF$3���qqlM�_�Sk�Y8�j�?�۵��xf�hϚ�X�ϻ�('�w���]���~ƠFi�*Q7 �4��WB8ְ�j/ӠTWi!�NUF$N��ϙТLz����T>��7ߔf�l!��c���J�d�E���A����JPN=Ʈm�&��S�W/�sy�)�~���좪L�ϳ�p�$�ɀЯ�Z��x��gbj�Rz���fs�r�w�-�*'~�j6�0�/����;�͓�X_���λ�H��R]dI�w��ue>]a�'�p�Pȟ"W��cw$ ��2���a��]xxƚ��'�#/!l[F��3�qV!�M���Di�~��(Q���c'���3ȀR��SVH8!C�Գ��1'��TԛGy������8�����7��:�w�kֻ��<UK�1�m�T�Bz ;������X[[#���[d���C�R� hm���7x���dQ��y�����y��;��u�B6����~=\J��ʈ�({�mB�ȞF���A�� ���9�Ї-k�=}[�`�`�Dc_zƅ~ �{G�>�%���r���S/�K�&�+����$�;L��]*S܉�ͣ�-w��JDPk����ϵ�PY�f=���$�� �L�Z@�w�ĉ)���w�������� ,��BT�J[��c��8:P�=nm���{tU5�AtM-O�l���b��-�`��P\2������\B���!k�J���r�BQ�&�*2��H���X1���d��[��e����_��D������J��HO�cU���qZkDq��� ��l�����d���'!WP��Q�|���d]6Qk���r�x��=����Cd���\�N ��XZ>e��l��[ +�7�؞��I�j���U���� �B#�%��]�����Q���� H���~}u`�9��}�����ӯ�>��Q���{���BYS��\� e�E�˳��=(ej�+�aa�!}O3���4����<�y�����ϮT�D�g77W#I���S��Zy��당��j��i��]��ԓ�'��~��\ ��{�#�$�����OH�$4 �2ň�,(����j�qFM�D��-WÐ�S�*�o��g3�^K2�H��MS?���)��|R��a�f�f,��/���P�DR' �����s���y �>��;����ljk(lj2�\�iOy�lA+%ŧ�Y��ᥑ/3tj��[���u�u��(�|��S�^K��+���^�)DY��<���x�a� ~���|���u&^�Rjߎ���Q$"���P�4铁D�w�y���o�rV+c�k�i"��6J&"��@���<M2����~��V�;�\�Z���r8t�h Yϫۉa����:�V��mo��a%��ߧI�7Nm��������X`�O�{~�q�el�H7�Nbj�@b�"�!Q7�vnd���`�t�zw�����ő��J'����jX�Ps2qŇDaÍuq�i1�ο�L�Q���A�+9�0;b,��n�d?����ܛp �^��H����K�cN�&X1U���ܢ#���̢�o�J��Am��Nnq,�T��C $4>|wq$ �M����Z/4�oY9g0:��a#F�Y�&x1��҉����f^��+��/�z]b.)g��~^����Yy�V^�1K2�v����d2���+�W��Ʋ�G/,�#��)ɹ��?���>��k�V ��EM@��?g�;2��b��|�լ����ޱFI�<�V�e̵V�=��#�}��|�ƥd�=����ݘ*2�>�Y|=���$��y�e'sE�����C��g�![�+SGcF��A��$��P�� 6csU�G�:3p~=^'BI�'~|f�� � ��F��[�3z��4b{d����� öa0���R^�7o"� �}���mjms3�x�y���4U��ߊ�rjr�gF"����_G�e?Nq7I �Ҿ�d�������b>n��ɗaM$R��g��Z�S?�+��l�K�{ιl�Z���0���o��P�z.�Z���ck�DN��Xb�k3Gd�m�ܤ���G�g����ӏ��R+p����t��~vx��[h'�:�h��R�q�P��.~g��(�ɻAG#���f�[g��H���S�kk�dUY�+q��t�Ŗ��mT��<��%�c��F��3X/xr����J0�_g=�� N+���V@2/n-�����Oda��,�f;�<��`vZ��ه�v�ݓZ���p�� ����-�{�p�3ɣ��z���K.�zNSyq�J���yM"!%ӳ �����5fY��o>Sc'��.����lܚ�8L��.3=���|X��ym:�1���`3,�+zPdЕI���y8��<�!F����#��F|�1���U�@�S>�������KϺ����6�Z�9�$����[�Ad�@�;�����2�����R���n��~��̑�P���7��Q��\�P?f�-d?*q��1�f��B�¡,�p%%D�I�(��yז��'zf�R��=��,�l� 6:����__����%KdZ7B�k��qm�e �|��jM�!� J�z��Z�4�eɝD��e=2�� �Xӳ'5��pԶ?�S�9S��Rj���J%�L䔲F��3��I�c���B���A2��;�2���B66�ń�rS��i��i��(��2��~:��xJ�� �Ej��ōt���L�+���$�a�\�3�Ld�ç��?�']6�1�e�p�G�t� k�1��L6���I�Zy����[���)f��ܱ�ZX�(��#^�Z$��gCc���?���"���G�׳:��Q������Sj�7؏���g� _�N @7ķpM���H��~/eQI`z �ݼ��5��@B �"�3�-����[���ާ��X< �{Y��E#P�ե�Γ�6�C�xI,��!ȴ�2�j�J/�E2~�6�P?uQ���i��ƺP3�Nzh��T��� ��i}�� f���7&��(�RF��\Q�AH��E�j��?ݚjYA����lN��<��C(� ]u����?�ь/7�hokkt� %X��.:�5GS1n�N�0@��y���OM���42e��"� �� �`�Fƺ�7�ʼnڑ��@(��h���0<��2c�7( �{�fF�+cS�&&�b8����nӺ� �G�sG�xau6�.: ��4�0=0�e\R��s��^����E�C�,���� څ -qJ�2|�����"��{�;e�A>��澛�$�G3��ɃS�^���#�68�l�}�?k2�9שӃ#�':�`��Xt�bmUQ|��p��J�K�tW��=�S��&�ra��|^Fk;��s�X�,�_��'8�^���OO�{W��[�&�F�c���C�N��@�T�z�r��2�Jz6�u}S}��3p�N�X�)s�36�0�0b���kîl��l��?�(��S�m�@5�$X.'�� �>C�ײ�yZ�}=�+��F���Z�B�P�P�>��vOPE�|++}���R����nW�����'��u $C|)v?q=��đ�����)�=� �N��@�>3"1�x�2��A+4�6�"/���<b깚��|n-�Q�l�Ƃ��E��A�<;=�6D��.Y0��E�lZJDY�����Y�8�g;����[�{y?sj�Hb�ɘ5l]JMq"Ύ��D��.̺���������)d��-d@9�k�v9=-'�xўS�}�S*f�d�+]�w�g��C��j�$�G�ć�#%��ԯ�������LNo$y�ɠ�_�d(J���rM#kMy(Y��w=;Y:l">#��bpX��ſ���7[��dG�R����d`�Ȁ�?J(�Ğ�0�$�5�:��:M�6�8<�Ҧk�J�rcVYM���< P�}Sp�YɈ��>3��=��m�jqx���2;��a�JEq@��%��a ':0�M a�H��ͫ�9:��*�m�r[|�h�H�q�Q��~qR���]{�db|v��j�ڦ&�V��⾮�0x���|J��3� �a-l6�������͈�����P���fvL�pf�̷��]�<(Y~ƭ�Ϻ3�������64�\d0��c�l�PI/�"�����Q8E����y3;���с,�Q��-R6���G(~Wr��}��d[��ѕ�pU���|vk��p�������Ln��ʿ���:��*Ն����/�̀?�n��� �����KI$�s4$��+p7��"�~�s�7e[Ͼ�ќg�Z0o���a)�3�dI>Oa��Et�r���� �OȠ@�N�G=�O��/��%�@���=��&�8KU��4����c��'���H��Tl�[��i�-�z�LvL�id��!~8�u�,p)Ϥ��(r�R�_�����:��&[~IgS;�\#�/�/g�.�=�2�L���f:���OU��{��+\.�N�wq��æX���X�S�g��=n�[�4H2��w,��Xb�YJ�g+#��@R�`��%�)��;���rdF�`�8 >�&L]����'�xzf&1����m�������~�$P��p��)��[���a�i@��`Y��A7+�"eH�I��م��yF���Y8l�J���&2m�q������k�[*��g�"{�l���9|VQc����΄c�����OI�7c����g%v\�^#�3�g!;�8�!)�?g��l�P�O��bPdw�17/��+ڮ�}4E���.ϓʅɳUyR����)'��ۓ�:���\���=@��;����e2Т)����#�b�H%�/cL5�������9��F�w�G�2���$��h��J�7��a��C��6�*�R9q����$O��|߯5��[��|��q���-��y��u^�\Q����M�� ����F����V���� C)��(GTW�G���JFآ8��;!��c(�Y@���wL-��`�QdO�ׄ�b8$Xr�sB�o��$���>���Ɣ8�u]���l#uf��]R� $�Jv3wӲg膷��ul2��F��R9i��%���&�;� !��M*��p�����Nx�ok����˗�Y���1~���5��Y��rz@��S��W��s��?�n7h-T��1Z��>�}��g�,�a9���A�Y[���������z���W�38� � ���dPq]�/e����E�߉��u�k<��dpF��!���]��!i��$��}{�r�7��ã�j㬋O���c��.fyN��\��<�:6rCާ�Pʹi���̀/�H��7o��>����A��rZ �kg)�ZB�-|s/%�=���7 �#�g���;��r��}U,�x���=$��?�Dɒsv���*#)�j�N8�i\���V �?}T���p�H�α�r�b��� E�]g�$6x��`̞���\�P��?��M��M��a&��� ��6�$�k �6z:�o5��s�绱»�`�i��+S%�1���AN���ok���䀺�ގ���K �f6���������/h��q�&k{'���m�0OއB=k���/xʨ���R�� 'Z塂z���D�+ #�Ƣ6�JN�]����Zod�!�R�VRL|�jp�O���[췟��o��y ������dP�^Qj��&��c�s=�A2��P� '{��BI�Ox)���Yd���q8���͜}���fbJ,O��Ԅԃ�-��xW�����u��]R.lz`/ٓ�G����rm3�_�\�A '��]4�_�TzLȠ��SK����D�E�wr '3C��'^��J��f��q�`ca$H)���]����7C����v����3�j��Sv�i�.Ral�_3yp�� ��H� (�\�t�~h�8��j��dT`~3�p_K Q�* �$𤋮�5�%y�C��6ӟʉ�Q�Ծ�{�c$U_2��afy��Z(�Q&���{�v9{J�=����ӷ��8���o�mxq�mD�:�?�.�Ω�,�2��)�f(r ����e�:6@��7]�{4 �[�dّ��cJ�a��o���'z?��;Ȁ'Dy�r��$6��7Z9�ɳ^����>H��d���d��R^F��v#xX�!���r4�ID��w��J:�������Y�ed�SBv��ө���Z��߮}7���D�T�u�^oj��g����"�G���[�gώ����p���d<��g��^�r���2XIуz�W��=�H��R�vMV�@7r�X��>����FD��G��w͓���9x�N��QQ���M�D28�\�V��VV/�ĕ��Zϲ,\���ֿVCuj^�Q�ƃ]Z{ q���V��K��^��6���\Q�.}E9�J�^��]�uy�>X?����R��X%"(Fq��N����n:=� eY3��O�X{�.�mt��dZ�t��g�[�Y�"��=Y��gY�7Iswzd�)PA&�+G�5�x{te0��4��������k��� ��. �urb㞒������i+�4�B��6C'�D�[}�Q'��j�-��eT & ����C�*�P9�W�fw���'ﵵ����&�D�k��ݍ��pJ�Z�}w��?}R��r\^�j���r��&.��I�x. �k���ngVD"��o2 C4O<2@T�c���I0���|�U�+2?`���[e�lD���uL��N^��U6d`O�P�=�?N�O`CV� $������o:LE�y�@pI>�^U�/�R���&��=���D�cJI�u����S�\��ߣ�MBec��V/̚[�"��2e�ւ�i�.H8W�"�� ]��R�rQίՇ��<\��e�6^֞bs�[��)�A���eIw�u=Նun�0O���2���dq��ܢ@�y�d����P'��YB��CG}�2)���^�m?�;���Q8�lBkv;�L�˴�.S�� �=ZN���/����1�U����)3��Kl7k������@<O��F��⊿;��\_2���=�,;nm3�N�3���λ�NO����<G)#���B���&������S\���nM���m�G��hC��ȫ�Ki���@� +�#1#���d]ŀ;�K�s%����Y�v�+�c�d��@mܳ6S`��crf&f�%�����U1�Sy2�N#[�J&�x������w<�4s��ʒy�%B��p�sG�,〡�n:#=�߉R��&��p6I�Q".w �7]Nb��`Z;$=hy�߮%��T��]�D������k�E�l�n������A99����� C��dF�V8y���6��z]�_�u�s��X�J��MfLk=���Gq��Vņ�]?\�l���-'������<�.��P\��Dzo���H�`���2V������J$�p��� $8�v�~ܸzu��̫&�k��b���ʞ�|ș��9=a��k^�?�{aE���Y�²�>~9���g�t�Y�,�;��O K�C�I�V�/G��+&�r��6�zo{{zI�e�:eM�r��nK�(;u�x�J���6|4��{��DҨ��Ɠ�BnC�Y�%Nz=�G�!�\�<0 E�.r`�\��l텻 Hƈ�$���ܹs�a��N��5�j25RX/�UW0�dPʥQ�W�v��@�3�/����4��9�8s{���d���{у��e�~Vxc;�A�{��g�;����#Jko^c��|�G(���H،��S�Y��d)�u�$�3�0��H@pq����e��f5�!�o�H׳�F�"�zT���r����`'S��1�ˇ)qN�[Ϧ�l�ʉ�w��7�a_T�{�bV�ln<!jɓ�N�Rǽ�.���LN�)-v�s@~1K(�D۠�mSt�$52�n-�O���6����c����=͝�H��0z6g��%.�Y��kb�dbC"����{���Le���: ~Oπ�iy>������:�v]�Χ��Q7V$��Fn@�b<��G�G6y�$m#�~~{i9�cT���}����;M��_υ�E������ouBe�Ap �B�#���Y�[7��ɕ��N��ܱ�ɏ��놢�?&��f��ҵ�s�zfa�+s�x�ŵ�3��*B�DQY�f���O��~PB%;��b���唥h����Xd��k��uo�$�3���F�X'��f��DnG��q1��=��~��e�W6�tNfG�����a�W�{�aVʕI�DBMH1!�0 TY-�WÈ��[Q�`����!�h�6,/Kg����6���|v�W�@i�JvVS�������K���:�4�~df���\��{q�D�[�5���Ə�Q⎸�1Wb�ˬ��J�w��燕=�0Xe ����^f�Kd�� �D7�V�֤���H~r�� �dD ��v.)���L� ����q�%"[3 �ϑ5H�{�Q��7��2��D�E�2��"bh �N'Jy>�4qHƨ��Xp7�/q���6��<�V���t6Gߦ[�/�R�%��|4�k�3�s�A�JZ�.�d;�Q�5N뎫,��oJ�L�ވ��J�#�v�N����>���wJ>@��)� t/H4.� Z��9y�>F~�o5�ʶ�r���_�Sd�}VX�����s>=���55'|�M'&�s�sK9^b�{ $@���'.��p����{���y��#�h�X�9��I�k�]:`O�g�%��A/��d��?���ǜU�k�2��SN�4|emޔ�O�cm����1�V5뒫�u�g�F�V�˵�g�X�q;p���ho�;�1�K�Y>�SO�ۓY�`����S����<`�qD�B��ȁ�N�çi�`�_��?�P4u�r ��ƸqK �_�)������W)�����$���ݙ�=]J�����Tw��Q���H��Ğ�e�K�O�G�j]b�����!�7�� b����&����tk��!���V�I�8�b�)ך$����%�ȅ�����n�&�:�,�<,x�s�f1g�Ul��p�wk��8��4�\2�x2��b>� �6q���D��)�0W��wDI ���R-y\)0� I���qu��6}�:tm{�*Ϣ��L�z����Hu3wK��O�j��F]�d4�w���=�!��`�r6��N6�4_�\H��Y2�m'��qn�F� �L��hl��O!K�L�|�� d6*�De�����U�"tl4�%�}!f��Zt�K����N4=@����z���;�,��%�a'���]�-s�=��QMR��= ���כ\�$K�������#V��P�],S��y�̕=�������H�бLm�������+`w'P���2�p,J�t��e�Wّ��<ю�d����g��Y��s���y�f���s���ԓ~I6�4�s��$s���\v��8۫�����_sg#]��D��MJS�* � �x�$�Ye�N@���ިd'�ޭ�lVQ��PĊ>W[�Ʋ�N?���B��D��Urbp��oo�0�s2ò��.������Ʃ��'ܩ��ǃ�!�6�@Y∗��C�iDլ�Xk3��V:Yx`F�l���pv�W��#S����p`�@��RN��p�$�ʳpQ灝*��I��L}��Xs+;��Jd(����ҳj���<����|�W��.2��H1 ��s�_d)��s<�el*qUp�Jb)^S��I)�e㚑'�D���d`�:�����6f�a����B�a����|2��5���o���Aa�4�x�ڵƭ�w��S+7N�'�,�5fϻ���n�?lx�TN��� ���_g&R��E<U2wU06P��'K*�����q:�P�1��k)��JZ^Ԭ&F��tye���d��:�����sqq�X\�XPf ��YO���Q\֟�6��P��������;��#��1� �}���6<&Ǜ bYd��^o�g��l����5�4",���� �ݒbC��C��^Z�l�.���~����1��dJm��2���+�����P�|1L�a�?j��W�E2�d ����{��v_�<>�k䄳ť�����8��/?�'�w��$�T5"O|�ėֲ%�R�N�\�N�pH/��l���yR�AWw%^��ϓ��u?� /�Υ�%��%c�Q�g�[�M��~���k����*�5:f��.)�B#�'ߵ�b]gr�d�aFpQ[�M.y^{Rz��[�8�N�Q�I�M��/�<C§ 8��ޟ#�G�W�Ǯ�؆&��r�_&dԨ�Ȧ����6�Az#�<y2�jsfqCi\̱1v��5�F�������}�(���� oo:�M9��\��~#&�#a� �Lc�R���N ����,�q��S��ˊl2kJq=��8�V)7|�yU��K�B���!�� m�Yݸ~�W�J����ڤ��R�㴄g>�;�{5��y\���&�D�0xne�q��2Չ��Ƞ�N�?�Y��6&|�uD���z~��e�#���j�R�)��� [o��`jV?��$��'A����9CI9(_��k˻Z��L0�~��㲹��m�N�(rAd�d���*��Ѥ5������/o_��_� F@�ڵrAqY�IkEle��F��7�4wꚡ=�ǻ�`�=�N&D����,�1L��0�a�1�D�SP_�pQ��� [�d�0���>�0P� 5�M~FNэ���|W+�O�_R����=�;G��������jz'+��X�X�[_2hzJcO�g\����M��#O=�!�����t�t'u\،��h�a�+i�2ˬ�Ej��Ŀڵ0:���P(g]#�ӟ���`��l����tu�y:��$V��q���ʦ ���q�,�3\;���ZV� �0��_R������ �YJ�x��C���N���Bl��q��l��ݿs��+oX�KL�{��w\_�t���9�'��QU;o�ν�N0�zx�ר���ե%����%�[� �����v��q��<ӵ�6ئ�QҚ2bfՋ,7��B��_������]�b�̒�?'�-����/\��(�ȟ5����X���3m�5%�^zo�̳�WUV�/4y�{��0����� ��Tw~,��A�a��y�-2��_��}1cT�a�{���[g@[��z������3.�=��dm\ �w��)2�`����<p�/����<O'��ֿ�A����5��{2��߮k�m����p����){+wC4\��_�&� F�Wco���2Sú����nD��^Ukf>�������j�jcN#�r�D�d��6���߿�b��!��j|�P4C���e��N�xI��֢P��S� ��tҘ"$<g����fO*��0���������O�!ʞ�}��g����s.pwR���F���5F �F-+ASO����U���K����.(/��%����x={���Dqӟ�P6�zx��"{�f��-?Wy�ki��=Z+F��� ����uȌs�<�����/��Nv?{t7&P���C)n��w'd�E=��}IJ Q��3b<���@F��t�(�0�ë�]�iL/\X���tf���\+c��Ve:����Ha�a��%r2��u&�N2��ud�{��'�;F�|������f��1�d�#/���73��i>x�f���d9�k�a�� *���O# �eM�A�-���P���|���A�C��A���:�u�輤��^L�/�=<��R&`����`�H��X��ɛ�S����l�i�6͕�0z�%�в�z�cfY��0|v=� ����H@���C)]��2��� J<�G��'�_�< vyl<��zgX�;"�y_}5p�^�NUQ�O�ؾkc0@fJS�;;��"��1��h���V �Z�y��V*��,�.�f�ŨY2��r+�J�[b��]ŭ�6H5>>S�=�8~��0��n�Ȋ�L��!�Z���u�j�uTzUd�0�0�\l2�L��1�d��� Y���D��&� q���������A�FNE�a-��+�U� ��_9����d�?�j��ֿ\#��t9��N%^z�h�L ٬B�־Y��H���*w�n�.%wm�w��v�7��u`萁��5CMm5=ZgJJY]�w�ʉ�&N�=0+�QӃ�̎�$�/�b��E:Y�ꚁ��B��{t�sڏ�d'��i\��ӧ���q<�G�6=JR�a�s�H2$�c�)x�k��DT.�ps��HY$ 0��Ed[է�yȚTh�ˍZ�vza$���8�vt���c�{$��`�����y�k��Ł����Z,�F�������آ?�<��R\X��e��� J��VJ���&M�����;���f��x���Xݼ�v"�{. f�$ ŗ��E���������Ew�'��5Mk_Ù�&�[v�LGi�����;���Jm P���u�'��Tf�t t�;�t��5=<�kɈ�'�D;=q-B�Ԯ�\��y�z��_S�n���c����+���q�L"�7�7�4e��[C�Rא�`PyI'�"Rd��y5���˥�?����an�h�N3(�z9'�C���jG�+[�zF����#d@�7r�X���J�q��gk���\�_k��{i~qBG��pg��"�&����?���h�)�Fw)d�K�~��_���n��)#���3��9P�+�L�u��ÑKhm�t@��D�v�M�⡚��疉�D�]o&�y]�H.��e�A:YJK�e�dG�� �6<����Mu,a1+��ɭ"�=96ic&��r�!����L/�D��n�p��{�ߑ��lsN�,=�j���i�]�%3��ߚX7����\���-|��7�qj�g� V/�k%f�*K�7]_Y(��|�:7���est�Ϝ�t���U�j�%�Й���i@}������JO�[�~NLy�r�lF�6�oaPP��5- �D2�2�Pk6[�A��i���UQ��U1v��@���$R�py���G���FM����V��]�x28���MU�2��:~��L͚yBM-�̭&���V֛��������?�i6���0*\C����d��;�yx���nfw��~� %$�wz�����N�|��Hp��Si,$�4>4= �#\�<U�@�˄N�N� �wt9���Z��S4�?�B&<���No� ��w~o����y}W��Bz��y?�&f��`A2u�&��"��V�X��I��6 �K,+c˪��WAqr����mg<�����T�G����e=0�V6`?&>ͤ�xvV��*e|��K{Z��:e��@�@���J?Z;�����es��X��K��%q&~=٫�a���Vf)utHf�h9�Z�#�(�g$�G�F�.m�_~9n��P���Ͳ�ڕ������,b���N\YQ�xxr2@;.rC�#�MJbK�nM?N�o2���:Wn���ڈ����a�p��k��ɥ�]2�5����tKg�8�C��d`S C���%;���d�^mX�������t����4 #~=�S&��z���C~���r2�b� �J��ɬ�l���QP�E��M�f2 4�xj?�vKmv$�����b�JA�<֣�v�#� =���ޛ7�Ѓ6� �N�����@b_��rm������G�lx��mp�S>�?� ������A�X@��]�M�?Y�/lϋ�� J��;PF�2%��+�"{uC���Oe,$�k�P����!!p��,���E����A�G��B�fw�ٯ��J�e֘��*�l�P3@���+�)��z/7��L�?;��d}F�߿��E���-jhN!7���T0��h�,!$����>k�H堺��s5v��e)q�gr�D�7̮���oUw8�f�} ���4[��c��ok$y��N&�%���p���:pdq�2�v�_ͱ�W���1��Q3ǧ��zd�S�o�=2��������2+�XK'�$y1n�0��˫�y���d��g|�4O�a�=�A��r��y�8wT�r2�����df�Z�O^���n�H���LV@����kPX4�cf{=��JW��;��֬���92�Ěҧ���=Pnd�)$��a����A���.���Έ9.g��CC���~�{ѕ!7&��3O�C)y��#��H�%��Y�l������q����r.:7Jl��&��*3�̌҉/�3�$����a��]D�����s��ɢ�c�s��r�l<lNpՕ�+�=|J�'W�t �m�2wЂv ���mvoXn���� i6h��y����3�)!垐?N�o$�Q���Z��l�@�{����%U���P��˻�SK�v�.���� }��� ��<���{g�P?�51��JbPFs��!���B"=q �W�����x�WNk�}K��Fi��dd3];9�`�YZ"9���N�DZ�'�\+.|�ϊ�H[�� ���̸wvmm}�zu�:��ۊ���#����1);m�����ZB�yg �t�\��%�)�ѡ�:$�A���=��"��a����~m�hLUSs��z�s���I��h��{�2t��pXd@�e\�E4�k^�V��u�A��nQ�i/�1<�)T�3z@'�[=�P!>�8�f� �oE�*�-��!4mq��w]�̈�B ��c1�^�CIȴ���ҫ� �0����CYD�۫�&'�`sm��&el,Z�� D�崄V��5���2&�}7�G��=6^�1��/K"��x��L�k.,�A.T�ٍ��-��+jc�x�i��f�FܮW��E8��Q<Gҧ���Sf�K��?Z(.�`��͋��ss3VO�]X��r�D�����j��l�@�Ad����4/ J���6�P���9�,��������:�;��7r��F�n���-�c�����Y[�l�N�ԭ$���uR�]&]����*�R�c��s�J1_�&�� D|:��L��KH %�Q9%��\��ɘ,%�O��%���e6�o��Y�*<X��\��(V�RY�11dL�ւ������y�v/w�,�3:������3V�]�0�)N�{A��)MP�a��0â�_��m1����'N%���=p��.��ƺ4������w�s��r�w$��j�Q�*6�Boki�V�jL���G�}?�4aogm�����ċ�T6?�7���4c�W�n�7)c�-�@E��"�'��� �o:�l0�sJ���+�W�Z,h��S�@3�A��r]� ���3Bs�WS��e#.��{��N��G��!����JS����d���q�D�?�r,F�E��R{�1�̼�I� :ߌ�p^/����x�?ҟg�ȠmD2��Q㢺�n&��N�Ν�d&w�s��ww�2H�]9f �f8���Zg��9�k_7���=aS�������k�/\�Y�u�[|>]��7{��1G�vS �Z���z�ȯ\#<r�'d@� �zv)��vD��S�ƻY�;SYO&�h�-R�I���R�%��6�V�O����;2=K�4�8!���y2��kTl��S�� ?���(��I�:�_NL�� ?��= �������DB��)�3�s���qJ��zj�V��� ��$���m���]��`o�ds�;��0.W�����f�|�<n��O.��cy���ek�L^K C� ��,�Sl8�YW~�JFWb�Dp5O�d�ۜ�y:2)^�K%ؼ��*��<k{n(+YJ��A��F�Xd�צ�;��r=A���5�KX�8���s�ૃ�ڲFZ��9��'�bЭX��N_D͒[g�B������ekȝe��ُ\6Y7I��ĝ��N����V?�{��y�8(����Qj��k�ߞ\=���r9�F�劺S� ��2W���ܥ�pĩ�j�;��/��.���$��vǵN���V#��W��O����1�\��Iڇ��E��XB�kdىӫ�i�3v��cS��"�B/ .���j�7Y�d %�ԭ%��40�(���Ѹr�oP�h�ٗ�y3���>�̭�/�`�<��b���4;�tP��%z@��<��(T�=[��q�'0����HaԱǼ��e��%�����e�aƷ.���~b)�GڀrV��~��!w�)��ǣ�)�~�K�G&���9쌃Ϛ��^�ހ6&L�"��%�ֹ�1��]uR�����K|N>$8�B��%x�fI��f�ݐy�Dq��X ��t'��l�ë4"9��LB����z�N��o�`��a#�PAة N}��Z^H+h�ʘ���Tr���'^jȱ,)}���,uq�$f�6K�L߲�ztP�X�/ D�����A��ل��D1KS̭I�O���. ������[��Q�+:��#����"�����>O��6��(�� ��*�ux���X� �$�v#iԨ���ecf_����2�݈YđNi�|���@0:�(�@�蒒��<Uh����c���gI8�5��gi�mƷ�\�����)�F��d��3���9�CNQ\�&��-#���[`�2�o2���(�=Q� �Y�g�kaA�g�f*k�&�siZ"��<~1��Cڰ�.����T/ӭM�Q`��l�y �.ܓ^�N���f��^�M������P�v�TH�s�4�;Հ6�i_��d.H5�W���m�*j�����sQ�a 4c�t3�XJEV`eI���H��Q>cã�`+S��:�����[~8xy�R�&����ty����*��jp��8@#|�?N�I̿�l�f$ /$��|����'#��؈��Js���$���9�o��j��QK=W��E�L|�Fb�vn{w|gѺdFt�����#���Vq���)��.0�N ��(�� BO�D ��*ʛ���|f9ҭ?����y]\a�S��?W�#��q�#/�!��Fʜb�ޛN��S#�# �ߑ��2 �+��Jf��9���;���ͬ��X"Ʋ��\ڔ�25r8 ����Fx!G������r���z L��TU��G��� ��&�vr?]����yRf@:�xy~���BEޘk�[��cz��)� �.��sO�OQ5�χ}�C�.��V� K�TF��;+�5Ul�P�W GBa�e��$Xs_����6��j�G�{��k��[���\�.�ҋ6u��&����R��g�3|�ʭYB��ɀ��`N��\�&��t)���+W�E¹u*�)K����c[]� if�8�"3����$#gS\�ϴ�� _��F^�8 ��k����-�Y�l�vP�<t)o���X��v$����I�'�ov��(3]����;{&�i*u�J�e�����˙�ѵ5D�F��a��<r���9� ��K6��?�eVv�R%5L�w%�͓�]��OԘ��|�gA���m*�P�y|�.��&}�,r�~���`��b=��{�k���0�����|��3�nS��㢱���/�k.$���Χ�s,�H4��n���H�O/B�'��n��AZ�9P�Z*_�c�Jjɐ��}�ׅ��7N�b���:jY��YӃ�O�� ���r#Hу��w��P���j��Q{'���z��8��b2"�A���C����ȣ�>7��>:&����J]��Qփ�q� �R�R>ȅx����F������1q�'����;� C�D����D�G`q/�6ytP@ yB��ywѬ[cf�Um� s����7���s��ɋ;��`���.��}�OWTe ���^?=2�ZJ$uҥ��%B<�������f�"�3�E��Q6�O��t8m=�r��~2P�S#��mh�o����՞�5��+Y�!�K��S�'d�3��dZ�kqL���m=�Vi��HB�聒P��eBG�*�����Q�8�e#/f��q �!WJBQ��OF� N�Ԡ�I!e6���ѐ��Tu2@R��I���v6!l�+�Kdoc�R��G� �#�g�� ��*(��/��o�Nޣ�vi:F�Y(�#O&:�:ee�����2��Q��K�x��4J�z�1��Vj-q�^=�[��H��:��N�I�T����Z:@蔮;���Y��\M�E}�Q�wRn�03�S^�J��K��r ��JU[��4HNғz?O!��u�P\�X���j�ev���!�m:�y� g��ǽ�'����@��:�(O����b|ag�L�]�*w2[Ha=�Ptu�阾y�fϻ�>�R�+���{i6kը|N�ܱ�W�����e� =��.h�.n�,�:��e��%S�,7�e��;��S�sa�wV�}���NƬ�/���:8RN�(���$dN)�\�2�3�*�A�Z�%�:z����齕�x 2���k�?k#�hm���z&�?SS��E�|[Rg-���4��kWV#�D� l�|���;�M.�M1�c)I�I���\���*�� &@�Q�3��.����9]�5ՎV?/���ߐG�Ř���?���݅� sr��dY��+C2�]pf��(�*w�i]˚���%�%�mD���B��iL�U��߄-���'���ԩ�wy%�n�:h�����.en4���L�Ժ��?���m�b��XP dQ�-M�L�� *���� I�ĉ!�d�&���,A���:�I���@-�S��;���A�V�:H�e��c V"�N�/Gfl3��"a|���Ņ�W5�ߘ0eO��8{���ㅘ�t0Ę�rs&�4�3�2)Nt�D�i�A�n�Y-���d��o����K�x��t ɕ[�\fREX��uH�?�� _�}a��� �,O���H�s��0q��?F}���ͬ�,�M��' ��{�%S�ɀ�u�3[i$�;p̆q^��d�ŬNR�ۀa���ʅ� d�؎�g�y��#�/nc�Ń}K���{)S��_�}�0���`�i�P�+�̘���av;Uz_���܅�{:��=5:zgJ}�ԅȦ�lv�Ldp�#d0�g�+Y~T p2��zve>�`�n��8fo)+�����3�jMa�yivƿg�?!���� �^�-U�T���n���L�{)+�2��+����|{уeJ�������Xdp��~Oڦֳ¿�;y-77H�@�p�$���-cj��`/j�U0��YL�]�_�x*�Vq�����%�Z\���P;�lpn��8(�(��M��,:H��p�_Yr�+��듭�)��6x]�Wo �S[�A��=m$cS�n�Q�˅���Ubz���ar}�fvk��x��{��ƚ�C��nz?Fn/7����u�Ѵ���QV��Y���n�B�(,hz��9UN��A�?k9�V<e��{�t�\��)V�멐93����WfcJ�Ӻ7.q�P_y�'�&@�����x����!�k��H��eȝ�J2��3�Լ��4�M6���c��PNX��ȡ$Pkϟ��<z�M�D��N_�A��7t_�뗲$���2�n/;Ϥ��3���P�L�YxvF���/�-e�b��ڭ{bYO�����7�l�8��5~�V�VT�a�-;�z�/S�.����D���U�;�/�TV;~͐�w�d�'�"����̃<�N�k��]��sng�t��D��n%\���6�·�죎3���y���rN�f�#��qE�Z��J��o�[\����)n&M��(]�L��Q���E�m�����O�o[���x����"i�b���M��Ěic�4�U���٭lt��n?)n����uXP�_�m<d�qW��]�y2��H�A�`u"\d.ץK�J�w��Ʋ��tDxb�ν�2�n�.ޘ�|lnk�2z'O�J� M]�js�߮�L��SY���B��n:�6�L�poA(�<gh+6��|�����?Gduy�g�,�b'��]K����8��Ū�9��S�E;��$?�� ���� ������[S���H���d�,a��j�T����ْ����&=�����n��lSWG�E�x��-�3��1�{�zo��O��מH�g�[^b�ɠ��+��S�h?O�s_T�R'=�k�y6z� :<c�`��K/�U�7Gn~��42�ݜ��U�/�\�`�}I%���ֻ;ȗ��ɖ/�S,�8�h!���TP�J7��3[�p���q)$,l��X֩i#�u�/=�F�<��~�V�d}/�ԁ�e���MHȆ���/>.VM�)1Py��뙄�;·e��ֹ��}��Y�i'��;7)T'��iEsr�f|�k��i�w+7���3:�b���N��w%;J)����iza��[K2�!]����Ď �������3&?v������{y3��Y�^e����R���|��Xڔ��1rm*Z+J�d�{ZK� /�O��in�0�g"ޔ�H��{�Aq�;F��n���9�N���;y�*A�ã���d�n �|���V�(�����r���ƌ��ɄG� ��\�f�\T+�"fH_�|��̻��l&j�.���a�����:e�W��х�I�����=�����0��!�Y]S-1�T���>C�S�]!#BVdP��a!5Џ�T�3)��J��e��q���<�;���F��J&KfjRs2�yk�(�6B��0l�k�L��Ч`������#��ѹ����^w�f�a�� �8�~�e�ZGԄ �,�� �Ɨ5.�>2���wTV���="y����w&�m�&������r�V2A�����K#���FR�Y7<,@��]N�C��� 㑮�<�Z��ٿ��C+>�.�=�H�7�,/ɰ��Zs?�;�ʅ����?�dzJd`H};��J䟭��wr�&(>��+M!Ҵ����%�hI��Y#��d�1���7��� �ycGT�<�9�D����&K $�`7ì¨�j���MZ���7i̧��W'�0Qx����4x'�FF�x���z-��$ו�������n�����p����LQ@2�_��sͦ<$�>K#`�]�Eɠ�u�yg�hՁbp�wD��M�Qy n�eff&�?V��D�~�a�lP��g���]=l3��/��GMK��.�)����q����B��>d�4Q\ȇD3�]�)�DS��VJ;�4kQJ,N�a���p= �,�[1G�r��S��9��Y�XHۻd�EnS������(?w��#�c�M[ ��QB�-]����~M��d�?��W����'m�M⩬6����i�����(n8��-�:.c��MZ�R�ќ�e��=��EN!@L7JMB��X[�О}7İ�QY��l� ��[+/�s�bf�� ���� nZB2��LL�8��XmI�y�R��Iz�/��7y2p�[g�kj$��:�-����a�� ��7�ֶ�b|g�9�F���eϊqkn�$ߑ_pM@��TR���:Rk4+���'���8�F���gӭo]N�84#K,�(�A�盱�ʨ<�^&<�r����{���p`���Ƽ/c�F�w�}@B�a�MJi�|����6��%G��JN�L>��n��]��CHy-��7�@R�r�暨}}��FB�=gIDJ�i*a��W�Gl������oS���������&1J��j��(� 5k$h\7sc�Ć{�g6��⠈=� k����k�ڟo�B�%�>L�/O�G�3+S���*�[0V�w�V��NE����.:S�������2��%qZ�g�0«B^��;��zZ�L�2~�[�u�#�x�PE�9�!2��2��T!����,�9K{�Q`�l����~�<��D*E6��t��3���s��eRM���yZf�3P���6N�(��Jr-�oFC2JN�J6���\Y+���^qa����FJ:��Z2ՃgG�eLFMaq���fI���ή��O��S���j��X�cd��\Ւ8����~/G�r����%(}���,��g����~a�d���ݷ�4�G�$��v�_���dВZu�pk�@�QXt�ϓ�1R�5�P&�|�g�;�*Q)��Q�or�m�z?�Į����E�95c%�~�G7�y��@�`��5��[�؝s� ���1ȪO���e ��܀]g�̞� �Y�Fp�%%���8��f�ͽ�w}�Ba[NW��Ik�Q��c�ie�5���AM�^�SGM���k�y#-w��m�χ^y��Y|�n��}s�$}�0�BȰ�l�Y �餿�nQ���n�lg����&�w���6���c�ˆ��@��,��O���z����H�@}�m4E4�O_��Sq�W�.Ζ���,��fm�_i����#�x9�3�.ߛ���e��S �&� S'���N0f@<���x�ۨ���a����l�#9���.��6#���/c\���K#be���H�=�92����:}<VՃ�������ؿŭZ��j?�[s�z��^�G�ו���)]hfB��8,�%{V�/�c:ż#�K��tF|��9]�j�%�I��rMքa��å����(^�����q /V���$���9�G1��E�oV,2�\k�jk/5��q��(�Ⱦ6mC�`�q݄/DŽ����d��5"�َH%�b2[d�|y��Q�W�D��~� � ڒLH��И@������\4��N��ֱ�U�)���m���<*ʱ�4�{nmO�nې�,�Z!��Q+V���%Diz��џ���9 �g�F��U����=�R�h';Nn���0r���t��AZ���|JV��u�h ��s���LC&Ō^���D�9&2PT�z�[?�_��љ�^hs�h<Ӕn3Kh��+VL�l�(K;�2��ƴDS�HƋj���V�f�߿6���ֵ�[�(�6ۃ�c��{9�A�d�Yר����� ��X9�����p����D�7^-���e5VN��T$�^ 62�_�P�۵#s W��n�`�L����Dg*_���h��Я#w�2X.J�Ԍ��&tp�o_������l ��"�w�^�Ji2h������Q�۹�ޕ��ߛ�T ��ep���V�\�����=p��<q��wv�VR��������IEttA(���t���B�Ja�H�(CR"@q��0���!]��6��'��{��ӽ�������I�[����7�z���(x�Y:��J���t?kJC�&)FB딊\�+�Ll��)B�]�2Qj�PZ�؞��?;o�����a�%A��=q�˷J]3Z�� ����p���{"]j.<N1�k$�h��u֙�"�/2H���]/+#���t(!�9L �R�<��8��]���^��.+N���>R��㪼è�<C�w-?�t8��;�����L|#`�X,��Q���)�*��n����c���v4q�F��S�`x�L���l�RR������d�F���ﻣ�ԁģЉ���������\���s�w���dB\�EeE��Dҵ�3�u��� md����pT����һ�i1]�:}�l���6���R�g��?��(�w�@�2pm�&d!�%��3t$2�B�����*y��g�3�N7��K�� Դ\!��#:�ݨ�ۦ.Dzuy��������u����P��c�d!mh�<�,�V7�D��ơ���������_O�km`l�aM�PV?/�Mth�m�MU��h_*�抝l��wj��xl��[���e �K�B}BH�u�P�Yk��w���pa�]c��I�ʓ>�xZNQm��O��'�;6�~N����*�)<l�$�%ϲN����}#�.>��jx����^���aH,m����S�.:c���ɠ���M$���v���T�[����c�5V��4��Kh�D�'O�"�I�f����p�#�IS�& �'$P�I^�)O�Y�A�0����Ě~��wo��p�Na���Ki�u6�gh9�&�R�J<����h�n&X&G�|�I�'����;8,e4�T��"J��u����u�!�2_�ז=�)}�<cyݸ7���*�#���e���n.�5h2���c�$���G}ߵ@V��a�A$�v�I��փ�9���)t�h#hw* mP�U�JL'�9�z{�R��<X�Z��F�^D����h�Ѐ����y&0���=�����O�t��d�����E�.�.�]�C7�X�@Ͻ�M"ONq��Q���Q�#H� ��'�ˋ��e�S�Yh���E�#�Mj��}��F��7��_N���V?���?���3�r���.�am�|�q�9�����\j\d���L�Gb/�&v�j�`����Ul�yיK�G�}�/��s{kc�v������M~�:��d�~i|�r7|O�1x}�fr�--]�W�H2�ԔO' L68h"�i�t�k��^�;,rϟvm���!~FQ��v,E2hd��S����d�<2hn70�}���é�s�Q�gW�v�P�^�~syrd���2����H\�a�y"�����d ��˭�5��-G��>%�+�/��e|�ώ��<����gr?�=��nA(6w#��y I�d��<����;-����1�Rk��� v��e��_d�`�d�u�xX��;<�fpB�� �x�$T\��_��n$(��6ߵ���%��h.2D�Z�T�bs��jV������G�N��=��NDI+�fF�b�*8u�1?8aS��� ��a���GlJ�>Y^<,�o�i�G���]�Z�%������ey�K��9�$ZS��TB�vUu7V�r�k[1�c�&_z�J�}�)vkq����r�1���X�>�߉L���d��kٲټ ��<�Y�y�y��IA�5CJ��sq�z]������i���9|��#3rƶ��?D�N��C�]�������xF2�`���d^I��Gw�y�_�XQ�,��ziI��2�t�����T/��`s�!5��G�,60S�T ��bP�*�}���w7�JUZ�=�ɀ������ƭ��p���^��k�Ӄ��F�c4�.��t;=��b�� �2P܂R��a|�ʳ1n9��[�8���aџp�r�`K�4�֟�1�!^ƾx@�8�5:%��b��\��m��V�9�\ȿm�8Ț�M��`a�m���%c|��)L^�e�������T���\ͽ�%�,��o<^N}��2��j��?�2�.t�x~5�k��,(����̤͜�M�Ó�2��/��v���z.�l,���R���~�3J���fa�/F�����5��D��4ҥ�9y�g}��J�϶� dӔB /�0��=�\�c�]yZ�kʠ�[�Pw��o���+Ν+y�')ލ��5 ��G��x�G"�a9�J+d$�/�K϶�veD�b㫱`� -\��[�hp���#�"*��r1�d���d�ӓq���o�_���HpB �f-{�Ղl2�kmm��c�9�Ɇ����U��K3G�q��(ᷗQR�D.s;p�����/���e�-�LD* ��28�aُd`-ZC��ތ)�8��k^��1һ�_M���1�X�\�~0����R�(j�h�+ȽS�������;�#c=qn�!C�^<�Kc���b�g��v��ȗ�iEt�[��ߒ9&;��HN������@�s�_�s��٠8�|�C�s;���qr?cΖ!�� �0թG�`��+Ɠ/V�����Wؠ���5���V,x��`��6ߋt���L�UPœ��}6k�$m��*���Nck���G7m��O,�4��Ϛ{�����p-O.�6�k$���+um�"�~��ɛ���dH���WL%Ip#��y�3*(�(v���^& 6�y�$#���8��x9A+��A�R���0 ����v�,�e�Fg��Q!����A"�Z8�a�E�ā� 5�4���13�h|��L������� s�g!��·�G��Ս�o�,��{�1�<,����+@&��Ys��]�=8�248�P�បkHJf-�M�#{��DL����q�~�F��Xp ��v� E�7Ȃ$��::���e�y��zx�O��I/3��o�$QҚK.�/JL)E��J�Vk�Ji&�[D)�ЗS�%w��m8��fs�"���q0�@W��������i���7�ܯ����/��Ar����s�\��;?�c=�L�5��Zp�\[�ݫW缫��r2ꜱy�&�ܭ���h��M(156F�K�fvPXlɐ>#v6X�2���?4�����ޗ�ȳ2d�2��<#2 ,�p#�Xa�K(rR���a|<2�<ݴ���z�4��ɖ� ^U�?�����yʖrk#P$�t#j�dm0q��Ú2��?>s%��'&A[�F&�̰Rg�^����wS#�<����r<��ygDu{���%L�Zt����H$}Z�Q��H��]�խ8Q�v` ��.�$K�~������s}� F�*�j���e�c�k ��r�+AE�Gz`}�4O�ᐻr�ʂ�?N��ί牺�hZ����g�"�w�p�1���x(���_��O�Lz�3�3)y�G�1�<��=���[etD�;0����C���ڐ_��� �!��'y*�A+г0ܛ6c�4*\%!'�/X�N(b�/�+ݘE�[�8ڽZ�uҍ#!��X��\X�7K�)�`vyڳK~<�,- ��脊.���tR͔q6�G��0/�֬vdúu�KU �;�d%x��>�k?��xҬ ��{�w]��Ś,x�������r1)o~O���S?�RR���:�2�1G���x�5�������e��֊g��U2ࠁQa�{]Z����d����������Ԛ���ì {wk)��|ʈd��rg<��}Ҕ� ��_�>j�N�<es-��t��J��;,d�b0�B%�:�=�6S�gg���wne �10����c�^�UxΚ�-2��*� �AJ�uXB�*eΨ�n�4=xx��kz��j��ҬA��3��u/ � ���6ݫi���^�|y����dpq42����腘[R���,���L�r��MY���L�{8���}=i�����߿���@�F�>w{r�H�����~���:�;�����e�T ��� �(��'��X8�h4 w}ʋ���C$b(���=�R�ѪNB֚���N�B��QA���f l��)l'ާ t٘�(��J��J>�jKb ��5aع?�����d�ZL �gC�$uoc�|�I����QGp6�k��wmԭ��;�ރ�s�w�Lb@]K��:���乜�k��#�$��N�m1�D�0�G2��e�s\��q���<�Ȋ�~:so�qy/EĚ�U���%��ݙqcid�a (���SE|�9��������a�g��q1�V'���uaj��5ٸ���Rp�Q����B7]P�����c��z�ß����B�&���� Q���f����w���)��k];=g~�x{�>�Bf��Ő�K�F��@�v�7�C��ZG���c���^�xz�l�l��<=�ߟ�A`�z�rd��/�mz�:�LȠ�$��AP.\zB�Q�U���RzQ�6�?�dw7&��VH ,���&�f�y�� n�l"��8�����bzV{Xg o�p ����E�`���?��^�� �hf�֟��,[K>�7et?��}�����&�F�p{��-�X����3���ff0��Vʭ�;���!����؆�;@Y;%6��)5ft]��Y�b`��z��2�P�z!@���t�p@�YO1���z9u�oxb2p����1�.[�8���K�AX9mćd@�?糹�����ۄk�E�B��_G'��$���R�j�� �ĉbp6�JG�5&����:2H��"� ���͓�pd����^f��]1$=�t2y�������^J"b�<")�Ľ�?�]�ۉ�>h�Sg�T,�4@�����A��0#kkӒ�JD-ϡB�-V&��Mx����~���|d�{N}ue��paq����ϲ��>����^ڒ�Qk���A��Z�=�2i�\Bۛ�s>��V��x p�a��T/+��0���B���2�P��8������|Yڼ�m�RJ6�Wo������� ��_p�<l9���i�s_�SF3^$S%���H(�_G���>�7rk��Ꮳ#9J%0C��Yt/�i�Uf͞2໕�i�Mi|��:Mۗ}� 6��%�D��Yb��\��{ͨ�D)y)4O��A��X#�{�n �Z|n#b�k{�c��UZ�f#�J���J蠞bH*̋��� �4�dpt�&��u% `�"�?�8�`�k��Ԛ�d�k\R%�Ђ�NO�xZK�Z7��ѭF��^L� x7k�}Vm dO��[��(�x��~�����W�[L�\��!r5��42�a�=$_T��G99�5<;e�>='2؍�!���8�W�EU��$�d -��`�u@��}�Bζ��i'�1�A���,�i�ɀ�����T ��p���X�B�g�V��B��=v<�ɛH�у��ywʍ�!�i�x��wA��p��f9.�ԙ��=�-��, r/�P���Qt�!n�S�D��42�_2�K��og��|O6Q��S�GZl�s���1C�SWV�u�d(YcfqK~Yt��i�SIv B8�8}Sxڲyd��bS�2����#�]�X�B�uS�}'}����C��CĨΟ�B&��$��������6Ok���iR� �8YX !&}�nΛ���3���zlNK:��e;����q;���1�������6"�/�N����I���~����~����z}I�$k�6=�C�(�F����R�(�ظ5ڷ���y�:L6��K3�5m� \��'���Իd��&�:(��b�~H���Ɇ!qH&��y�5.���o�o?i�B�$�>j�7%#�!DT��/���]��̝��W��_'<#�E�b�����L�|xt�$�$ �i��t�9��T��6̜q�\Ȋ����=p2�!o�����o�F*�}_=PX�A�s�ꜫ%�N�ާK�%��Rk!m2��N�m��m>��T��Bǫ��lK��܋�~R/�{�3V��z̈;����[�p}���~�D��$\l�Ld������U�N��Dc�(.oc��{���Ŏ ���;Y�˥R��T�kb\؈�2� EV�\�+�:��<r�)���w�1n]�� &\S)Jy�k����eR��N�t�����l?e��vd���NR��鹈k�������\A���7">�h�������:d�w8���������Qa�48�{����r����Fg�e�[����� @��P����A�쪑�� MQ�i*"���Q.��f;�X�Ai����CP5����;���1`J?��p��/=��H@�v˵�����ҳ��o{��c]�b��ꉳ9OK��j�rL�7���/��DV�B`���(�Ț8����Tt�O�<��\����s=\��,C��ߚ�d��L�L?��Q��R2'���]Ͼ�ه~����@��~$�GX{2p���!�b;*7���U��oI��}�M�[����]��p�!�X��gɣ=دy��K�! ��*�|8���FrpϦ��:�W%�<��m A�^H��a��j�� ���M>I`��W,D��y�Ť����-2����I��Ų�X�2����� �V��|��1�>�֖]]�l�D����z"�!�N���s6��#�z�'����Ü,�s���0y)X6[,�8N%�xE���ә���L��+[d��Z)$��N@'����o&[�����!�e\�`��W2����7���^��^N�#k�Dl�ަf�~���rGc���֑���G6���èr��T���J|o�K���&5������0<G�R���xj�}��&��A����Q�$��d���L�`��B�%�V���>lm��Z.H(p�/���E�=��ޣ=Z�a/���$%�p��j�UT�3=�s�!�ˁ�o��0�g��`���0�cXI��Y��I����]�z����xˣ��Nt���:��������uu�Q�b��� +��~��A> �h�!�z1&u��L. m�T����ʟ��?��L�\����QΡ|�-��9��g�]�0��F[(��'G��ee����&�x�#��/�p��%��D!6+#V��Z9s�~������@��Ȇ:�x7���.+��ʻ����=[1�:s�ڵb�$E��ٔ�\+��L���pA��h��MpU�(r�v��mI7�ft�m� C�5H�F$y��vh�w�V�O5�@"� 9��{��~��4Ou�o��\��{z:����N�L���}4V�*EnDž�nc�U�+'��b�≃俎�n>�>���z���!���G�;Fh��c��<<cNHxw��\���h^��RV�������ʨQ� y�5qYG��HZ*E �$���zrvBE�U���Q�mVr�Ȁ�:b?xjz`�9�y�k�N��=?�nR��ޮV�ǏN�����C�y�lo�_:�C"ʑ�f�1企����cWsg��\M.����ȩ�S�j��!e��6r`ܟi��k��S��_���Z(ed�8��=~��)�(��S��Nm��p,��<m�;���#'C��]Z+5������I.�������Wfc�y.Bcx�.��_䤁z-M�)~����џOE�gR�{`�d��&R��qm���4��YfE�C�,q���,<�#�O��S��3����I°���0[@�)m�HW��$�;�B��z��V��Zt�QƳ�d�4yn�07g1(�m�F!~* �B f�*������;h��S�f���{Q3�M���;���l�a�zqe}���P��M,L���&j8�>˘�3�r�}?��ഓƖ<� �����/*=/P<ƍ�Ț[K�l�@X>Ɓs;�v��)�qe���Rnr d`O���˰�=���u���@댌��q�����0��d�6l�z��M���4?��h�3�R���z����^��&D��ߧ��+ �nt�O'�*�ַP�!�|�|7k�I���(����d�6��($�=�J��4�'���!w��m��,���x4Kg>g� BV�����i�K�{k,&)�f ��r�~�ح��n���{����w���me�L��qv��R2y��sWW���$5��6�dZB�q�]s7)oL~>�P�ݎE�G���q�b���Ad�] �D_u4���ׇؕ�JXd�6�2�@�$������_�Z_�O��[���D�y��[M B���Sx�� @?����9w�pK���.�P?�:-�����l����T5��`�z ���J�Uk�6�{�P�EL�7����V�jZQu��8v�8/��a�d�sm�[�/�kie-j��u�(sۆv���:f >�ǓY���w"*f�y�UK`�0Xޥ�VFL�qq�� ��Z��䉉� �ME�X�^�xG� H�m�0;��p�a��&�K��������g�p�Nʚ�M����~`X�:L���c��yr���a�{�s1"�����Wz~a�BS��.[�(�C����b����V�d��[T�����c��iq��T��]���U*p ��U�9�T���N� j��|ô��|v~5��b � ��T�GL4�n����6� ���0�L� �?��W��&��6�ㄚLww�i�v�v��(�����;�6{D��{��c���A�#O� n3�a�Ȟ[rp$7"(9�c�3��f���l��-�~0|Ǧ+^~XO��l#$_3�]ߩL`����.�&,��4"��X]��^���30P����q���WY�>�$PG�XCDa2��86+Z�gW���G\w����6��a�d����֧�@���i3�z�L\�4���r��a�h\�2��ݎq�!Hna/��h��&d�(� �@G��T���e��5�<.��� ��5&YB��RMT���6O�h�5��"��Ђ����i���5w䝾���o�(F�gXW�'�'����[����r-7�(Cw��µ4;~�7+�y=���{Һ�B qc��a=�6�)��w�bZW�9�����z��$���vI��(^�sx���jN������m�<=����1 ���`�s'�iYn��u�Meu�K3�Ɇprł�"���;e�<��]V��2��zz'�ʽ(���FN��7�Ζ��b��eP�b�N���%�7��)����Ɉۼ��!7�m�[?��y�ɨg!��s�,���?���:G�t�3�xO'�o��JIN��-�<��Z���� �P�I��Z�Օ�A(Dq�d� �ǫ�%y��逷�dP���MN��˽��oƯ�֖a/�������γy�ݩS��Q�����4d�`��+�i���i*��=j�ِs�E��q������| �&hzGz�dW��Y�a�g�#��}��zp��b�x�az���?=�8�t�)=�?32#�DM�Sڍ�BDI�V�s��C+�k���_��Ҧ�Ug�4�����)���n����^L�'��qa=W��2��\/�sjl{�u�p}��;v�6���)��G�WZ)p���pr{�D�le�������ȕ��Jw� 6s*�H�ϧ"�8�Ј�]Gߵ�¤�Ƹ�G�DQ�,�%���Ǣ�l�;;���Zư���1(�RN*�~�>u��Ʇ��|��S�s�SNu!H�5)��Ϩ8v��ݩ|��2�_���Ām��oyJ������dq�ĕ�?��ǫ�Q��r��WK8Z3�-�Ivr�pG=�w��t7nl�X[;N����8Z��I ��n�G��B �-w�� $��,'��U����f֤8ً���^ �����ҕ�d�4�)y2�d0� e�z��Nի^B�6R�aw��ӣN;2�HM$��+�eո��y� ��8��k?I��&�{>�4� |<_;���|���N�yȐ_�<�$1�ja�R+=�+�o���!�:]Qs~皼ůr�&��ӭ���˵x����}��*���P�L�h[ 92��墧���]�W�Ԉ�A�ۦ��jgQ���X��H�t?���(�q��O�R����:�S�I��M�w�O�|N'��@`�����Ұ1���6��q�8�����0kB 60.)�m4 ��l�a�k���Ķ2�Ƭ~���5�:Oǟ��J���ց�Ť �N�i��n �w��,��������^Lz����gl����ܸN՜�8��`f���������}wqu�t��{F�1o�J�6�m��/�<t:uSD�QH�YT��t�a!���c)��rW���<0���C�xߺ�<7���8���Aa�xCd@�'Ұ|��ŏyo���Obq����G2(�� �C�I}\e :�%0�G(Qc.��z2�G^>{}D�,��2�qA��X�H�=Q�M#�g��T��ƓG :<�=fN[��#��9�O��r���)��o{��y/TVňD�J6u+/�����D�c��n��m��䆹����dI�:���/��*7k'����ˠ�E�=���?�[MR\v��6C(����@ \�,��Q�XG��[��F��}���7�l�����v����T�x����5���K�Y�ځ����/Lې��$� 6�3��p�NW���r� � �Le�X`�q�l���X�f���N�-��t�l���'+��%e5l�NJ.q��%@kf#�A�_^�N������{�#"�[�X,pĜ�>X�zI�Es��������&� ��ӨȨ�4��?�pQ�J���qF�q��&�Y��6�ldF8��D�w!y���N�^��w��A�n&�~Ē����yF��o2n�ދT ��s�F@���a�4�?��ʽ8);x3���xb�rj̱����Z�g�$l28��d��%z���;*��`voھg(��.!FJ�靣d�̗����ɥ��5�� �%�(K�&��V�p�����YN�� �.�S�{ z"cu��1*�iN�k�+ ��6�65,P�kǪ{x�kɮ�3}�������y+Ku�j�q��l1|�Ų��6䙿qW!�s��̬�� o]�[ZҭZB��n�!�F��ė�7''{���1n&��H|5�rU^��O���ٵ����8SyA���}�.�{���| ����=�����D&B(�5��:iz��, m y�? �p��-A�&;o��4)�?+�����ݏ�w�N���'` ��r:z������Rb?����~���/����{O��]W����Q�{���2��Aa��lݸ�Z��|��z�HV=Ih����C'�C�U��<��l���̛�\����>;��"9�����7�z�K&\=G,9�-�`�F��?�]���E��g�sB����2�-tL�/jS6�|�nc�)ȸ'� �V.�I�ʎ[����~�ؕ��SM�Y��܈�������=��׳c�#Z_%��8��`��壄����6S;�5p���ZC�q�Wf٫]C���I�_�'��ϟ�T8�,7��ָ���2�*z��yJ�'��@�W�k�D��X�s1c�e����:�i>7���K��W���z��Ց3���hrKR���"WDR�hVYO27����ʀ���S�s;e����C������ّ%#��N�����'������m��s���Ng,�Mn ��o�7(� 3��ep$��b��h&�c�p�w���L��'�)�rG6�S靀9Bg���Z�K��LC���}%O!����}(�>�uVKfN�K�[�{�<m���,�����8GӚLi��w�.�~��j6��! �� �7i��/W��Z��~x���k_���`ϖ��d̫�4��wlzp%3��o�L� ��è��!�-�^�N��Ne#h遮�K�͘3�wc�r��2��������z���@�gJ֚TW;FJ�>r�g\)�I:�쨊���MF�²��TP������w��F�ee���=ox����Պ[J�-ws�(�<���|��,p��-�w�T�Kf�F |�E��b^J��z��Б�U�O� Ƣ�m�YJƠ�c,L�4�q�Ai,��D�`���I�� ף����F���х�YI.� �/�i��$ �akS�uֳkovY�Rk�ZŌ�6���17����l6��+�< 7�"�;�~w�f�]{!�3��z[��]q��c�ajpt̪&~;��.6:���:K�%2w^8-�z~�]�|��}�#����̙h��&7��ɼi�.�1������w�٫���9�TBg]��ڤ8Ҍd{eyo�f;�uCi�m�ا����� ��e��5\\1�=e�^��#=��8/T�c'�?�N6�k9v7�@^�aX����+Eik���z>�?���KiP=�`�r�+덼��{L�p�^��cX�A�͢,�ԕm�DNM�t���X��v4"3���gc����3 �\�=J�e��$ۨ6S����l��+�^K���s�� q��=��2���B�w�\�x�Ӭ���&�k�C�x��'I�ݬ�W�}tuꃄ�2&,rk�[��d��?WV�(�B�z�^w�+ ����c[[f��0.�d���h^7<���'lt�.��̜�ܠ��5���{6@��M=�DlI��ee.ѥ�h��F#��G����~n�aL�lz;�Cn0{z�; �@�\�Z9фl<��b����*2X�x�����P&YPH�#.(����c���@8��/W�ͤ2���1Dw��<='������q�H���@6�Z0ҍ�~�إ�'P�B�`��a5F`����G�E��`����NB�,X��h]�d��lu�w5Z�3{V�o;�ߪ*�vట��ĝ�z�q�Y�9x�|p�-&�^|J��Ƭ�_�=�5e6T�!��!;(�YT��n��!Ϸ(Ƹ�����Ӄ�Ʌ����L(���Ď� ������ێ&��l����Da�u���j�j��OA���Jk��Zʮ�ߙrbP�Z��Z���O�vm�Hd���>k��m�֕� ���s��$J��:�)�2�Џ�Ԍ�Nd2� ]��Y^ wN�\B�x_7��A�Jۨ0��;�K���N�1#��*dШdQ�Ŀ+��Y����5U2V���Ŝ�k��-{q����A$�:2B�dfr�@q*gL�gqY�RW��|6��_T����w�o��lAM��OL>�s��%��e$��x�,��a�>1 ���6:��� n�]F� ')�2V'�蕏�:\�r�8`�J��A��Vh�ަVBnz�@���T�c$�� $�}v2˲Ju-�����75�N��g|�����i�h�Ϋ�E�/�5=�0������ ;�G����1�q��[nC�<:���f|'C/g��h��n��dp?:s���f�.�$P�ж�T���nIh�k���/bX�R�H����]���N�.c�e�`(�L�ׇQ\o�Ԟ �$F ];�.%߷~C.�R�/���U�@�>�����N| 1Vx����%��'Z�+��_F�= ����6���N �ڳ��C��̚B���'a�����12M�u|�J�a�Ƞ�9oz*'�,� ߑ\���`X6�^) �1�]iE+�w�>ɋ]���;�Gc��^:��Z���>�(�����m��t�П+�]7�͛�>8�LCaȝ5{\1��l� �^>wyY�Ӹ�ɠ�,����N0 7�0Tzn{�x���/�od����긶�\{���G���p8,�9�1<T/Γnq���&}�i~���~���`��VNﬧ ��������0K�M���TD���v�聓�N�&T��3���ag��]{��i��3��}]����eٓEN/��혼�������!C�(X��t)i�R:rsʠ�\m��=���zzv �\`����e3Q[�Ɍp"��bi� |�;]-�B����-�b���N�o>���a���d^��u�4k'q0|Z;Y�fWU����.�i\V2�7b�DAh՚�l��O�R7y�*���X�hu�=�P֔Y�6Ye0�r��,�@��3s�Q�Ɖ.;���p:�w�5�W�]��@#�]G��H#,�d�;6����\�W�a�&�uZ��ǝ��P�]ʘ��!k���_�����ۭp9�&�+Wf��2O����;�EL6��d%-��|��9�I.�~b�+ym��ٜ�ť-�q|>gN1���؞�㲙=�Z&�dvc���ٿ�=��צI��}aF|Z�@Z1.��*;Ԧ���>*��s�d��������'6�����.e&��r!G�={v��ӎU�`��Lp��9��� ����O��"��/2��������$KO���5L>�F��:%vh�g\�"FKo���9��!ua�*���v�5�� x�qDC��c�.���Z��ӫ\e�m��E�K����0������t! ג���R�tR�rS���:��71��teeL{��j9Q���X(`���=lz��m��f�o�cV����KiJg��Y$uTq��2�܂wuxg����6�wN���7��z��q�c~\����_���uz~��s:)t�{��V��F60�ℶ��x������o[O0��N��ڲ����K���澛�ԏy�u�.�V���3�=����p&��e�%i�}�%Тs���l�l�N��=�m3���i�5�\+\טLj3u� aE�UÃ����+�6i|p���?���tI'f{Ww����ɠqGˡ�����f�z.�Wc�"YokB���~���%T�i�I�(�`�~靅cJdNh�ߩZ��\ROh�iz�;��iọ���>.=�)e�������SM, wG��M�� ��R�ZKo@����7@0���S��| �T�JQL�|se��[� �-]����v/�4�xg%����X�t��T��!!*w�ב��?�g�ip�kyz���to�f6��p8����� ^���Kc��mWkx#�O��N�1����p�i�'����A�}$�ޖ� H`<M}�a��~ο�����e\��c�n��>ZXd��@tq�)�Q��N$��tD�N��R$�8��N�"��4���Weĭύ��A�u~����Wg�����p$���-��" H&:&a�u{9:��{~5�p'�߳g�-<�S���Bc��O&%l����\���(.�X͵�i�e�oe=�f\쑁�+%�� Np�%�$�̥n%���SK;�;���0�ns8j��n5C�$gU,�����3��{?�r�]������CNS ���5tܮ{��k�s�L���g( /�������l^�̠G��<�+2H�1�όk��wfh;L�N�f���r^�'��j�HÚ�J8�ǝ,?MH��1I�a�3��lz`Κ���loא���MR0��G��d����� ��d�$V���w��I�NL��.OBָ �/��͑�a������W6e,�-�������܉�~��$M���E����+_x��7�5d|�E�l�wN�;���:n4H�w����I�:�ns�;��|`Jq�;Wh�.0�:%*��a"�6�'��j��-����~m�2>��%V6h�1X��e����!鱞���L\�]�A��D?o}�:���"k2�5h`}�ޅ�bX������P�C,�C��+�ynuu�).î�D���R��y��i���Th�ה\�V��t_���83�S�3���PR�`��?�l����{����23{���cѿP�����E�TH�FH,9��o���������٭4�M�r�'0���w2�b�o��|�y���枬��zߟ��N���4=X��2 �r������(=�# F����&y2`"z` �f8�$��hqpQ�������鎊�4�� [`n���@~改~az�B�S�JL��LSjY�k�ї;���-��ڮV�A�#�Km��Nt�i/�avˢ��Դ���bQ�H� �q�fq�������6]�P�d��vnj��SJK->[ɦq�J�g-�Ӹ:\>�o�*Q�,wS���j�k���³��L� ���T��r3Y<d/�\��܃�m�&��\w��}���z��Ȁ�SÆi��ߛ8&sΠʔ�o�2o3/d��5�'��l*#�۴��1�����|nb�w��g3܆ݑ�.7��|&��l^>l��%����X/Q�����Y�?ɪ��5h #��]��|G��歎���~�,�|>��O�@ۃ®.���e?~�8VZ�˩��Փ�d"!��a�aح{�����5��=��/��k����E�YAX�X�{���k�+�e�;:k�A@7��g�?V�h�w��S��J~�+%�� 7�vS�¥�9�a�S��S6X�j��B����f�oS���Z3�(�[����qý��+e��z}��t��i�y0(+'��w��l��[k��6a �F,7&E���]2��<]���3�[F�� ��)�ӗ���ek2��R�����l���MدLCp$��m��;�<�Ճ���;��^���$�硓�)�dj��QE̍99��P���-�9;�n ~3j�c�I#�;�������'�3-G>C���D�d�f\�I�U�H��Zvi� 3�� ��K,���*�~�<=�M�D'#�����#cQ��דN�6����`��ȹf v�����,<�=��X�:d@�q���IS4�'.���~���^M��ͻJ����r���8b�x8Ea�t乔M<�'%�5F-u��C1� ��^�����+j��w����?8��ִ遰A�ܫ,�@����M��H����0��c!Ǖ+����mXP7��01�_PR����������0�ZZ���i�&���F�P�4c�q�� umw�,�)�����\���G�%2�i|t� ��s�TC0_�1 �:���鞼3�&��?wJ��ۋ��t�ZKvϵ�� �\�֩���c���=a�w�-j^gA�`�� 1�/�W��Yiɳ�ݯ�5��k�C��Պ�w����E�ƾ�H9�<)��#�{�`�nd��6-$�l�::�����'��w _��VW$^�Qx&�_�������3�UP,�,�wa��Y���ǩޱ�c{i?��2�c�v�p��3�cIf��* �:C�ϙ������1t?��m���w~;sf�d�����y��X4#�>��Dt���$L��Bt�Zō����6��A�W Xx'�+W֎��% �"�!�'�HVQ���ֈ�����ϛ��i6�44��.2�]���#�6���o�c�z��ycnR'O�N��Q{��}�5�a��|�g&s��^�u��qj�~+-�A��^6�2� 45���)�����a�tz���C���qAX}9�R�E�"�Y�:N�)�{��F�?#����$<��y�0�u�t��7�o:lv��@���:ei����9E.��.�s�#�v>+�r 48��.��~� 7Z_�10;rV�Z���Vn�a��_�k�n��N�h��(�Ee��a��3��ҍ5s]��33�}R�ސ"ԙLd$�'��E�r�hdX@�e�3n(� ��"S��X�Am��A<)�gHE�q}2@��<��#\ŪƦ���e�n�H��2i��(-2��U�J*2�Z~�6\N�,��I���dगx��<o�D.g�nb�q������rG,� &��{[�EC��F~�;�{�|��#H<1�\�X�j�� �gM� x7��5�.���5�l�'��nt����R{Kc��*=��B���|B��+�x&�dcK�uȰ�>lC(x\�����¬�q�+^xS��K(@WR� H��;��5��L��^Ƴ��,�{mؠT���ͼ2U�=H��W PD"�Y =#;��p3�L!�M�"�yZ��o�^e�fZ'f���L/eCpq�Ӌ?�n��2\,���E�yȕa0��E\⚱�t�H&����z/��R���0XU\�ޣ�������ʤ��l�H�E���з+�O`�0b�B��H���y%�9�G�v%��g2�&����SG$3�a�����v�]�A�M��ä��X���K�ǭP�����T�YZ�� e ��W�A&��`������Y���z+O;Y��1ם<H�+��^�uɠ$���|���oA�m�"O��� ;���y4�����^�]5�N�F�@s'��u�wI��*[hzB����'b�@�p��C;�@�H��=vR�LU�b<O%0�}O���^� L|2N�j��Ji:��M�t|pj��j�[�^���[�ߪ}�-Q)+~4 f_H�]f�:��zj�����|�U�&��Ψ�$jee���Y*$��[�'&�c�{�K�!mN�D�\"{q��e-��@n�2O�BKXĂ�>���ܚBt$���Vdb��4}����c��z�.���uV���zN��)`D�� �/ �V�A4����$�'}��6B�������7b�B����Nbٌ{-�=O���G�o�=XkYk'3���R�lI?}��p>�4�� ��^'���z�7r&�yP]~�E�4֨/�D�9�M�=i'l2��N����8��d*1�J&�?���b:�:�گ~Y����s5[2HN���1��Ꮥ�{�z���n�ɺ�ir��eg�;Z����0�x�;e�����;�N2��@'�4�&��H�K^��E=�~|{R�(nvz����unl�Ջ�:��o�n��VǟP�4�S�&��oj�n�����VgW������$���G������NS��İ{3��sqz;C��f��Qw��Ʊr�t��߀d��Af՝�`�ދ�~��/�\�����n9�� �X>8�;��JZw�!%� h�5��8���o_qAg�a[ #r�{�;�O���`�%�����;b��d'B�d�Q�6*��y�tgw~�ܲLYߕP�YϪI�,�D�R��)�T�9Dw�����/��!`��[�����p*(���*��6 O��&)LY�^nɕo�-���⬣y*� 3a��W%�Ը%��L_�31N�d�r?�5ըul�����n��밓��T�������J՛q��#���L��h*c=�k4�1pń-gq���hbɫ��H>�� *�����E[��kAx�R5����R��M[�c�1{�.-������#��x��>I'�k?���BN��|-6��Pv��k�H�{Bb����(M ���Wz(2�0�_}u!�z7���S��7{Jk�� I"λ6��@� ��d��x+9�'z�yF�"��G��nd����m9��3�qMz@�~':�ϑQ�P���^Z��`��!у��Q߃�}���ac�EN~�(]K8�)G���j���Ȣ����bN�nM����5��M���n�}/� Nد�|�|N�(4��%��/z|��ܿ�^�/ mӈ$�Y,���ՍЉ�wY��ͭ5>�0�˝��r2x2Pe��|_�5��fvf5I�,'W�bj ��R�<H�Mf'�[���FT��ֶiCr��09��L�Rې��ڵ���C�?�L��5�?Nɫ~*Ʋ�P���Z���'ϡ�F�x�p4vU�|<��M���t2(�i��aa���Ͳ�%U;�`c�=�2��������3A֘Rȑ���/��������eSf�~��\[�/�{��d���I{%ˮ.O�m%:����fF8o6�� Wr��q�3�0�7wV�@2�%2q�S�a�:蝼�=�&��]n�ss�|���A�_�CE�=)��-�'�#��u��x���AbB�����{����`}�@��t�\����ky���-I���I�ːy�Fw��6� �=2�B�4�e�gI~\Y���|эtuT�{�,!���I,�j�{Y����f�� T�AG��QC��Y�9LK�J$,�AԞ�t�e�_�ү,Q0C���~���&L�zV$q1��ht.s�Pa�Y`e�*���(\�'����k�+ltOc���if)A&��e���m|MY =��[�%�b��+�1�ۻ�%o��W�qB��>t�p��1�SЮI �Ǖ{� ���@�16-��M�X֓���U�;5odf����I��Qz��]�橵�&������9� π�_�|� x��b[?;�*� �[���"9UQp�2�&+ d��t��ܯ�TT*ȧk/����ݑ(�d�O�7���d�5^8��2���5m����2��1Z� ��ZMV� Bho+x�tM�`��aOt����%���RB.�4�2�r���6 �OݺRK&���T<�㫾��a�?��T~���-���Nz��N=�VBу��ӧplu0��Z�F���%����cf3y�g���J��#�I7�q�����.؏�T)�8Q���!�YJ�{,G�ʓs#O</['ٿ(B�����'��I3���v��ܑ��m��G9F��%��F6x��$���-�轜��{'�� ZuCr�C5��!�3@�%��Y�� �4J�K�ԂU�NQv(9�.if��B��|�R1����X��h�Ǩ>~��ѼE�p]DJ�F����zg�8xWh����.�L�}�..�ґ �M�ʲ�,��I�Q'R+���αbP���6j������"� ��S���ȫ��J��Շ_OF����JZk� ���/ך�&z+K%�3hNn�ϐp˟C�-��3���y�.�L ᖏ$<�0kN�VʃM�J�؛F@��K����wv$ 0Ĝ���?�$=x�6z�Ŕ��*W]��Wf�������(������c4��L�64=��Ƀ�ؕ�_2��&Ҁ*����2^xm&K&�GPx~6�m"���Қ��v���m h��ڹ�>gb�$>��"�ϗ�L)$1��5[]��?�#z{���w��O�/��ʩ��<WӉ�U#�n�����)EH��7ߏ��(�pe�Pҥ�.���͆�wӵd� �5W�8:n�I��B�i�����z&B�)dv՞I {œ04�e���߇�2���� �uޞ�^��� ��2���6���\��#*��#-D:h-�àc���JF֔k �|1�`���=���)9 m�xT �}�!-�{���)D��uH�)��2y�3;��p�]�-es�,�J��J_dP>ӹJr +|�y�vIT[��\��>-3~;k��|0ޛ�=��/�!� �@����v||�;��Z��F��A����W��6?�V*��[��~ҕ��w�cu�\f���q�ZY�{QP�d�<�8��聵��Mon�I��ږ�E4��q8*��P���(�M9e�cJ�ƭTWd��Ȇ����U�*/>B2�{�~���AI&��c�蒇���io�Lh�ޝ��h&K��ς�t6�2F��Ǥ.��������f�J6x�],Ob�01�m�T�5�fe�?/7J#�Ϙw�O�@; Lo�*���i��'�,W��02�m�s�ўNW�Kl�8���ì�w�ǩQ�B�28I�g�pjj�'�03�}������v�^25�zI@��i�� ��p��T��R�SI�W?�ȌR�0g*I�]{�+��t��>��v�~�~)|�++<��y\��+�?��Ѻ� ����z|mn�Hɷ$��"�L{�ɭ[�*I��#�Y�A61�o'O��L/��E�F�$��J*�&�w;C`&��f�I��r�œO���c����"�-<,��_ǰ����*��'�G�B�S���0�Zm$ �Ƈ��KO�@���OΪ�Zt�Jr���w�����p�)�zGF��Ņ��jyJc��]F���~���rU��\7��_lr�����i �ư>-8��P6NG'��@�p\�r�<[����ަ��gTA�i-u��Ui[��2X⡇^~�N%�����A�W�����JL��,o�Y���<o�`�����Ԓ��/�xN�Xe��8i.w����t�����K �f-] ³s��"e� �5���.�'6ݰ�i��2�V���Ɂv�An��N}η�sujum=��إ��P7ոZ������og���-�!%�7��� Ǜˮ&��kgn�<�#�-}�C�Rʪ!�.٩G/gw�vΈ.�ۛ�M]Kd��j &�qm�����|�\�@ǚi��Y��|�ȵk�{�s4@�Ydl( Y��X2�߮ZY�!���K�S��zpW�v���ix�FV� а�@���������R �pc�!�ue)2輔Ih�\w��`C4�0�^ =�o�}kk'O���`�G��Ƞ��0�l�dIPS�f2����e�ڜ�t��@�m�+�(����xC֎'��A��5�~�|�����F&��"�tl+ie-��������J��<����X&n�z(��ih|�*�8 ��� <�͗��O���%�ڈ�]/�E�2��L,xyn��� ���Z8�%Ɂ�9�.u�xI�^I��1���79��ef��z !�S�#�O��w{���oS w"C�n�1�5Ң'�l���m����!r7�Ճ�s¼�o@~F̉lt+lǶdU�xW��Fٜ�g��걥,�֘��v2~E�x��~^���a�x]3�n�`�����n �<lK����f;��sF������0I�F�i��t�B-,�X���F`��QB(�wF ��Te��#���I��}y�=������aE�1�6�5��y-N^� f;Kir��\A!��_�\;�����ؤx���<�_n�q/s+�@I���d������c�x��\O���Q)��o^�t�`HL��N��ܗ�2�iz�Z���I�O������ =�[.oC�h�����<u5� H��d����ce�lr��߉ ����JҖ(��ꆿtSY̓�,m(��&��w�f�VR�����`�&:4>o�����L6��}�B�wΞ���%kYǏ�� �����,:C�WYՎ�) 8�v8�~�h��;U�ٽ��\:ib�H��ʜN���A��^��J�?�ϯNe���Pګ�b���`�1��ofS�����Tt�����b���8�JG���;q<��Ȧ`���d�a2=�����ǀt$� �s����\� ߌ���W��W������r�_NƠ� �:�b�0@��VI`����z�I2�A%�o!TS`����Aˉ@���F�|^gNs�ɀaZ�R��u$��2��BG�Drl��pd���>�=��F0�Ӟc��幊Rs(x���j�C���xMU~���&b�(��j%��Q}�'Q�<�G�5�����h�U�5��#��ݮG���Q��d�w<�; 5}ث��sy��$����%�OFm(<`x�ӄ��f&�\���ϵ�4�Ea�hqP�-��>S�.o��.�3� �dr��p�٢.��<^�����"��^)�6�t+�[�����[��R/uI���[� �y��,7�i?�Ώj����u�a�=-*C�KFP����wy5|�ΝT8�uˀ>�8����Zʼn]2+�bFum��i�6�I��M �_�]�G6؏��R�jxt�����09uZ���ֵ�x:^od�r�KN���ҋ��atg�,=�:j2X��b��n�-��(����d ��P� 1y�#�''�q2��6#R��<�6^g��l��F���Fq�R��%[�P��BNwog&eQL��<�ƅ��zҷ���$�#���3m�|��ߑ/��Ne< ��x�SY�A�����̻�$D���Ce� Ƒ��.H�ů�c:�r*J*��\M������A���\��#��ԟ�*�m���K%�p�m�{1�r���$ �M��<(��լ�����ڒ�bzX{�$,�[.��嫵6磙2 �z�9&</�A�3��t��_����i�'���f` ���"�V3l�w���Q2����:"�T�2��~f�YsT�|�pv�R"jS+�,��\��Q3��?-�k(�Hp�1� �v�V��Y�rµN�,�ܽ�D���N#$q���c�D ���<����M����wt*��~�I��N7�0ϫ��8�|�{�J��<Fri�y�U�}Y&���qLX�Z�OO���,�ɓ��p���a���a�Tb�X^�7\�o7}6IgW�bk�Pa̓�����e�����f������'�*�Q�vZ��r��ր���� /g�))�I�g(�WOG��%:��T���v���(#�ς _�܊!�J:N�6S��[������$���<7�&�N��YO<-Ϻ�ϪL�w��l1��gr��K� �2Mډܰt�U{\�U�����0Q}@:�'�@�^ۈ���^���a��㗸Uy�E�hn�O���$���tK���鴃�?��B̪�.jԯNL��_f�Y�����ڿ��[g�:VO)���IuO�7��u2�f�Gd�1� }���E��dt�D����ki�O�Ϟ ]N1.)\��l�����S�q�$E�4�*ÔSL�ۙ�6q�r�T�:�Z6K"�یZ�~�'� �D�>\�V ��Yߑ}���].2�+c\l�"��:<�{���]G�<ʓ~o�\�͑�� <��J%E��W{��U�w��<l�+٢G�{Iu�N~�U6� �"r�\M�U��7s>0oJ�:�3�S��>��F��dp.YM��=��~,I>���^�5��ӯ_��^�n��8�V�S�)s!�<���f.�M�=�aC�mkz��6�g����o&K©�=/g�yB�J�Q1�iЕ��2jM�r�m��0��p��n�g�`l��'2�W�S�����U �{�(?˵b,upy�ݬ$=�:�M)�"�(z�~�ﱸ ��<܋�ie?��(&�aP���v�!K<�U{,�+r,�g �R{���IcwjjN �w@;��vqj��t= �G�8#�c��E<tDL�MM4`��Nn��ږY��<YѼ�����'������Nkh<�"(�_��١�sox��e�?+�0#s�z���PY�֍$�n�!X���"�,�ec�AT���³���$ �A��h�Br��Ht��M2�6>»LK�@U�����f]��t�뇽�U%�**myyy�ԩS��n5\��?N�~�Jz']@qgI`J�uG�T��QrTi��r+ߏ�1)S&=� 2PcF6!�Y�&�_���5��FWEX�ܝ�S=�:�Afٗ;W�Q�I�<���ҭ}Qf5 �2T���N��C9L��@�G���B�h�Č;��;i�]�E�~KΡۣ莿���=|v|0^0�d�(�f�7j�xx/FxJd`]��S��lyt�X [gTS���ُ遟�2�2=�+�xK��D�E� P��!c�Zs��̽�ѣ�"�v����b��ȲR��ߠ�gw<���ə:`�rd�J�ՎA:��$X�`�)�f��"��W-�u֍�(�Xv�3�VJ�s[����?ǣ�b���-2�\́�-Kb/4�?}���\ T���2켱)~�,��m���2$��S���Z>�8�tdG5�K�E�:7���Z{�,Jי�箾Vw�y0;J M�)[''��I���Y��N&����՛���,u�&�O�yϡ͘r Kt!w��䂣�����"%,��#r"��lc�sru�܌eU�kxi�zn4���@(1�a�[��P���i�9 [}��y��L(��q*A�����_G�3fj�6-��UV�M��ʉ��v�/�e�R�'7���k��^���,^ �C��\�梯f��TY(n�\�~7.̎F&;^92�6[;q��`��H,kN���"�e߷;���C����z��~�AE?0�*}6����0҇g�>�ЩyZD����9/�L2�S�r^X�=2��'7T.2K����FW�b�K<�f���[s���,nm����2�U�t������Mhh!;���Q��M���Te����6/�{�dW��6�d*߃TLP��K��,~���%DHfF�n� �Wf{7Xe��1Gj��k)cD��l�B�Y����v��+qQ��Қ�6q�q�X5+�)�iik��Y�PcMj"���l q�<�GMƲt���-�6�O��'2`�lpe2h��U� 7S�5�!�5I:�D���+s���v�PЏ�#k2��*����(��d�˧�d$)^ð��a����r�pތ��1dВ`ֶ�0F��f���-�Rns�o�l�o����p�r.q�xn�!{dp4?�-���@b˳4��rN6�[_���[+�6�1=��r2�d�i���kC�V�_�i���H���2��#�M�w ��H��MlEC�-'������ϐ��%��>�L���8�u�#��C�&-��f�cIY3�Mk��\Cs�����<���el�kƠ���jci,8���������{�3k���y5��T�B^�rBg`?�9-��HA=g/g��bl��vX���~wj8r[�Q^��N�c��2N�߬�vԬvm�{vdp:�|7bZ��MvZ�$�0p�GF���� ����(a�w�N�t"��J���VF)d>ʮ��� �+����Z�7��74�p/�t��a �;�h�1\�~��H�ֲIl��j�k,��i�K$�jr3Np��Cn(]2�D��ĥs�?�(O���z����3����`1��0��yv2��τ�Fm �>��Td� 8_(mb�&S��Ù2h� 4/) �=x�k(�7o�T�G��dӇ� ��ϟ&1Ҕơ�d�<+�Z���md��<��>�������DH��晃n���9H�H]��`�O˴�K= p2��Eы���K�Î1�&�c,���D����^�I /�<�&\�X?i���#B��Y�:�� ���؞s-erx����k:_�Z�viI�'�BI|����5���.��y��,��\ɠ<�,���MƅEnѐ�v|S��]�q#�b�k�J���ƢP�;w��F�ϒP+7qc���ǾL���\OE��`B]�ȵ�k~O����c\��M��-�++�on��{�랅Eo�O�"b2�@�H�S;�K�V ��<�y6j�#�"��<Y�єB���o#b0|�Ja���7v1Q^�b�T]^��D�ue}��'dI��g���$ـ:�r�k�:�V�����PP,���~q�oM��90��uu�3�-��w�{쓧�F�F"��_<}���U|��� l�m䦟I?��ĥsAG���ꊗ�2���R�k+�5�;2��m���'�t��y������O̶��"�Rߜ��fN�$ij/�k�i�}����E�[�[���Z�����(������o7�;��t��̅���.X���{O�lcci����7�~筦@�~gIբ�.�{o�g�{x�6��v`�43�+�x����d~p���@�."���i`r�&���J�5���r���� ݬ�5���0<`��ɢ�E�X��O=�D/�l�b ��ߤ��$�D�pR4i�y�F�*�ux�5�s5 �܌N����<j�k塂��SLV�5v�����,X=(�/����f������`#&��I"�`�mF���3pQ��ܼ�ܳR�Ǘ���Hh�U�K?/µi�i ��Β�>���=N��ʮԴ�<:��)Ha]��rr�7�w�@��V:�1ڨR��I�� k��NGy����ȀL4�+�lw�i���T��%t�H^(C��n�k�����]8��W�Ҹ��`����R6[��>���M�-�юՃ��������v�2�J�c��՜ �{]1�$g��S��\�C=�%�b�~�փ��醝V��Qw��A�xz2�d"�0��I������O�b�A���;�4��>��cW��dE�9��$�;$RCD�PoIt!D`�2�V� ���/h5���(1C�����ݴw��.�0*���!�1�\©��k�(K��Q�g��#�$�5um��T�J2��g|������C�*)4���v !�g���V���7�$��4��q.��?=�����f\����:�m�K�JE�&�D�`i�J*1��G�� #*�u��&�� #��ܦ�:��46�K� u7�5�f�\~�Ok��]�ƺ+�^*�E6\�i�ä�D�ug��j���}g����K��x�`<�k"���{�!s�����bxW�(]���O�0rX1�� X�i��[� 3$7�fW�OȞp��%���p��絈��>q@�R�s9=�d��d��^��g��Y`'{?�-$���F�����Ѷ�5��}z=���m��BG����9�6�{�w�zp!g�1�o�ޕ�m�#�=%���Iߖ�{v�_�|?��>�ȴ���i��A�G�6H����pb;{�v:�k���-�Ϭ�����7w����ϱ!f�*�?L����Kk%��s ö����e�Er�ffl�%�� 9�<]��$x+�T���lώ�V�9p����%]2�Q�p��� ؝�/V/���vi�o�n�(K3@ܣ;N�n(���o�jV�q��vvr^��g��������?7�@a��Y3귯�x4:�l�vzzk�^~��Ņ��������M>��%��:*Q�[h��u��u�H�8<Ɩ��@|i�v��f���jt���3�^�iƿ�uJ�DbnpM���W��7P�! ˸���ʨ }1��r�O� �6�ߖ� [+��N 7$��e�+c ���qi��t:UmzX5e�[H@ �o�P9�&��gH>7�Mhd�����䐻��f�z�9F7[���3Ϣ��b����7���ꒃ�Yr��Y���{,fBK�2Cz@���E��Q ǰ��&�q�H�91�l�y�ڳQ�b��ﵧ�)���K�]`5���'��)-��1VG�FQn'�Lr g� � �\\���Q�cm��,%�9���aG6 ��Šv�po)��Yl�{��u�9U��dl���6�fM��%|E�D�����l>W�e?)S���;��r�Km{��r����8��Q�kF���g��{3�~�ӛ{����OҢ��3y�����H�Ԯ��G��f�Z~���x���XW[�����n����gd�ePo��c��ۈ�~z0� �Kߌ铞�{�|3?���m�ݩ�ME��T��Hb]��,��QC���Efmx�Z�BZ�N��AG�pv�2X��ڤ�y�s%�ک.���:R^ �y�I�/w������A9�;���5�S������Ӄٲ����\I���z���N�&���If�K�ٌ��^h"���;�xkz��`�ʺ��Cy���|z��s-���2���&zp��q>�9Q�1✎�c�n���nLϒAɀ~,����Ћ+^i1���% ���5��s��$����^���inI��N7�FB���,=���z��Q1�x������rD��!WU��4��":��ODN�Ϭ����d�eY='U�1�(.�_�xfJ*.dI�Z\Yh��ʈ{����8�qa�J2�N;ױ9j��6oDz���H0�6s�SGeʔX�@�m�R�˖�q��v���5���&ϣ��� {������뿮��`��9���77�f�2#���)>l�M�g��Άi�,�u�7��.�=;��AǑ��t^��B$��ؓ�� �4rj8њ(��RXQ��u���b��K{�'N�A�4�9%K2�߮�s�A��o ]�.����d�ߠ�`'$Qk(���Ƅ����,;-w���i��a�R]d�����'�����kg�,,��-��u�+�6=�M<��?�b�4��=��j�]��W�3D���5�u�2p��ԯ{��� ��g�K볍����\V[|�?��Ldž��\Vڃ��69H*ʡ�K�m,��ް�e뒥��M9F���w���P�ˆ�}�PG�r�!�CL���*0�\���,��j������t%-�zZb���G2�I��N/1a����2�d�&�8{lu���c���zj|y�B!G�*JƸ '�G��в���,��C�j�8���%� ܦ#�ϙ�k�V.�ľ���<uu�i�������|�M��lv�d]U�'O�{��n'gw>�,:h-�����6�p%���:%������i���Ə,�}]NFD�ۅʩ(��i�L�I$�ܧY>�W5���廒��8F�m�����٩���� 쨝Գ�����8#�ig�3��X7��+��ɸb��\�������g�e�[�"�&�7һJO��]�nj�y����c�&IN��� fz�{��@��iZ��$߇f+2H�,������i 8�H{[W���p�������oz��M�\<���9Z��^N<�$���i��� �Zm��Kt>��#M��Km�êF\�i���B�_KZWҽ�,b�X�Wb��Nv|È�r�v�~?�o�D�R�"�� ��e[)�4��q|l��j|���vfk�1j)�L0��#�{ַ��UR�����g�Et$|��_\�/!�"z��#끋e��k��v���B>Y0@�ܭ�&�)I�ϳ�u���:5�������;�ɘ���_��d9k�-C\H;�>�,-����Gf��+ϐAM��!�F_=#V���p�d����+ǐ�]�ZyjH8��eɓ�A�oJ~z��ac��%� ���`��M��:19S��ȕY'O[^#f�|�d� ��#� �\�֤C��A)�}|��]涇���G����g^��D�|��r�Hi�?r5y���bx�Y����h�f��<��rꚖ����Ɉwq��!z�L���cE21y&O\�ȿ+MU%`��@Y���@i��w�$E�'�$2���뻻sd����=��ӕ��A���&�0�FVz>�0����{7=��~����!X)��8�F��b���u��9{�ׂzYI�)X3�5���rYo��:��&���ڪ ��o]-^Ģb��!�0���'�6Bp�-f��ژJ�<�DO��Nu�͚����4�� �d�peԉC�����kh���rb����5:9�r�h{���'Ve�l�S����"*؆��N;�>j����a��7b�x9�SOl�����[�㉐r�y����B���-����H��CsrE:���M^B�2���f7'LUyp�d#��߳�V��:� ���^"F[�Dtm�>��eD*����#xg��g��3!��P�$Y�D�!E~�� 2���S�wxF� Ԉ�+�y�n+;ܲ��� ta[������YFB�+�:;BEF�����x�$H,c[�U�]=�:���n{صz҃�\�W�Ui�p�{~kb $_ �lM=�}j��;�LT��|���%�O]q���ݳӳ�t֜�q~'����m}�%$�K�K���R�G� �:=ʠmÆ-J'��|Dg������<!��ĕ�&;~6���dh�`|+�_�Stp}0}��>Q��/`ȉF�x�O�m�K�]���V�{y;�Y׃��T5I̐qH��lD��p!�M�||�1��$��3d<c]<�&����,���]��R�8a�D�s#k�[�L�ś7zb����W��?}�����f�wd�̩(V�Da��izw:0%ixPk�d�56F��L�$B�C��v��y��q����a�9�yB4X-���{Wt���ݹI�p5�f��k6F�t��J1,��`�����(e�&�"FG�DV������xЍ��^]��b ����H�®Ux/�xfu#V@DP*��q�e����4H��n��%��s�W�yvh��# �sZ��r���4�D�G�m y�F��SY�D�]�=a=(d"��H�3N}a�g,�B�����v�f3B�Ƞ��&�Fۯ�O�U���9��Xr!t+j�6��A��B2�0l�Lz��~��Md�K���B���!p�sgX�pzo^�'�ӈCd�OrE�T���¨�f�č�1.on|`q,H��ᢤ"�G7Ua�%�����bɪF�ݏ��Ѵx�>���zG�z�۲���I��@k���Ņv�s��ρ߱�]�٦��<�ڗ��F�p }_����Wق�����A\� �ׂ���,-#)I7��WS�I�60e*,+�N�w��n0ƀ �~.��h�n��b�6)�r�157y3O�&��������w|���)!�7'K��x����.�4@���*��G�M�`"��F�!�� �~�!ygm���E�E��s�OOϦۨ�� eTa��)�A��2���99�%T��o�� c\Ȁ�d�6�1�lt3��A�A����Ø�ۛ&���|����'��GnE�Ff(1�mO�ǽ��l-����m��prF�i�w���.�i�^��������~#��L����w�ʎ7�GG+�����<DJ /3��Z�R��_��$E���;���;*7z��9� j�@��=y�帓F,��R��X|t1��_,'Ͳ�Mt��`�,,���A����L�m�(������lo#p�+͒E�C\�Q�]2������J"�c��pn�%<��Z'��69�b���8�=w_���j��AW��~N+ɸ�pe� �c�e��n��t��u��:�P�u�%���;���ͺO�)2�{m.t�8�@,�q��q��F��9��$]:��,msgK9q�p�G���xy���X�\���"*W"`�J'uPޡ��Dy�M�<�� Rj�}aS�_9�Byk��^�[oɠ���Xs靦~f-�w��F���{�4�<÷���B!V8(m���S3�,�Pf�xO�lkhM��Q6�%��= a��q�ɀ��`/�Edp6�c�cꄽcr(88Ȁ�V{G��3T�BH�d�]�/�q���(Oh��q��嚈#��A}�t;���:%�&-Х����a���IJкg�S��I���cQ@m�NzTz��p�H-��d�K�R�8���xeh���mc�l�����xy��}l?��� ����z<���y���h���I ��_���ro��z'�E)�mw�^�����[�0+|#��g�Xp#0oS����ב-\(�V�'`��y ���T�;n���u�˵o'����#��2��� �;�����-aiӻ6��^���w�]=u��Wm@�l�&h� �4��K��/�aޑx�j�i����zFB~�#��O����(��DΐZ�8]>g�Q�.4a�{b�u����H�0��6ݮ �/�,��ML��@!�d@H�o?_�U�?��.����k[OƳ3u�k�n"���ď�d� ��Q�(B����~�Bw������P�`>Vy�Pb��%��qQs��Z��|d 3�!�2��q�5�E̐���ɠ�ߩ-��OiȈ���;ݔ��&������F<j+�L�A@z�a��&>O�s�����d%���Z��\�E���k��xH�BB���f<]̵Fn�"P&�e ����{^\��t{~�����F��ҹ��}�(Vw�� ����]]�E�z<����.qD\��#�E�mޑ�#���ef���t�b$f��bb�6�V��Q�f�PZO�"�$`c"o��Z/��c�A�;��BN��������Z�(�m@��"�!1�$d�{?&�����h��:�K���[��q���fN9e2P�f١����8�����lN�ۗyB��-$��JJ"M|i���4����2�>}��TN���U�V��g���X<�a�����]|u���Ȓ�<�s�k0��D��g�����r�E�bs9�/VWO�xf\Ҳ���U���v��j��Rxء7p����:!Y����"�l�$��r�����]<�j��$�A'l�c�4<ct���4��F�7��w�d�0�0G�Ф���qK�h��wf�����L����!�Z/*�bq��n�J$�/�{eaj)k�sw���(�l]O.y@�a4�of�{�+f�x�v&b\�!m�dNw��0�A7.S���Y,'my����D,�F������R�)��f����gt��ukg ����=d�X)Dc��|������X+���Ro���t�u�����2ex��>_���I�\VI�;���L��"rr���w3In#�Dd��F^�2R%~�/��d d|Q��L�P�����r�6H)�t'�n���k��rٿJY;���2e�]��S�ݫ�`6#`�d�����q�/ԁ��v��ܨ�U0��^�r!��]��0��0���_��3�@W�TB��4B��<��voI#F��9�$GK�<+m�ihXȟW�qP>3IDO�a��?.n�^u��#�����o�U#�ȝ��6���d�瓏��&F��my�d ��Y=y.�JI�(����]_Y:}��KϺ���:�j������z��)i��wba#�r� .�r��D�2e�w(~��)X��ك�bhq�, ���W�q!U{���Z�FT�����m4�Ḡ&��?xP_F��_�j���f|�P��Faf�]�8]`I/����D�^��1ܸ�c�!j~����ۚ��;Z7�4�J�8�e"�ť�6��?��lx���*��d("���x���Uv�N'ؠ3�uTi5��)6�z,����n��q�T�s����W����K��9U���_m��6zD�>#�4�Fָ�!�YQ�`����_�/��#���������sc:��E�u�9^�ѥ<4Ƅ��6��K��f�#�]�:����dIF�fj���&���{�vF���$�ql��#��]�*%��u�vxKE�5ɞ�&J�<�tVE������A�Ϥ��YZ$�)>�A�h_��m�hz�{4���M�]��*�~A�y�sᄏȓ�x�K�Rt*y��"8���n.���Z�lZ��F������a�q6����&R�O3S�D����8�%|{J?�O�H�A��!�]B,��xU\b��Z_FN'x�1b�Ͽ�F�B���t[}�y%NelN�N�ٽ<˰�q�V�Z�"�w�r�$1 ����N���^��]�N�8��fe�6�Y�;c�^��.,�7ۅS��Kj����c�zm�,��S�F��6��`�D����8�Qdg�҅ޜ�<�5s�6��@��QE&���*f�����\��\�_{�H&O4@��r,���I�۾U!�Wr�@>RF����?�W�2��W8\?�}6S���g�Tc�)�����(���'|�.&��ԓ[.Ce���eB�A�υ��H#����q��%?k�'Q�bf�����ꀪIV�pӃ:��O��l{�d��7��A�L>/~'�����@CK%��7J��gTU��u�;ui� &dpk#�_*��!u�w�ȡ�W�`qtS�oy���v��d��t�S�� b� 2�X�,C 1;u3�U��<{r�T�V�����Y���:��s1��'�|I���l �sU PQ�7Ѿ�\����u C[,��zpC'�C�1�r�X�q�� R��]_\B��Q�����9�p�6�Y[}�'���uVS+y3�ޤ����,��⳿R����Yĝ(�+L�&*���,���f�%��.���anw �!p��>�q*A�����U�UX+���ƍ��'G� �ē����ͦ��d�{1��e?I��$��TG�5.n�k ��_�q�Ry$-�ְ�� �L+��^��G�`հ��NJ��2؍�v�5"���OI:���.���x��s]��C�z������\��+���ʊ�]���%�<[\%�ԥ���^2��g:b�,v��~)�.�n�y>2���n�|�r� ��U�����I�����֕��n��������X�k�I�Rf,3~��m�q�a��bzA���mlf��R���\bi�a��.~$���%4']�6nӵ^�����NƂv8?+mg���˦ޝ�ƫ�/�#a��%�r����ŬSGml%�x��*��+F z�㹑�~��q#A������$k���u!l��i �!��ԱeR��(u��]���1��pT�u�=�L�j�ž���)[\�:2��Y-�՟̤ʵ�k��,3#p��$`H֒�I:��A9]�z��Ӆ�b�p���қY.������F�zN�'�V`�S�Xur��v���f���P�0���k0d:�(�+ֆ�#��絅gi՞�����yTC�n,������I��d;��/$�9�%����5۴��rj��QN���S�w�ʷ�P`TU�*���:��s��/2v���j��%����;� �x"a ��u���i�&���C�����R�g$��V2�)C�~�dQ�J����{�"�A�T���9�"����q�oz��i�Q��h7ȺktnP�����[ك�pֳ��T�t�;�$�}�����e����'a�,N�5�at��<�w���I֧���еM�`fd/7v����d*����UA�D�)��8�U��7ϫ5�Gվ��ħ�ﲜ��P�R㇅�3j�����$����a[��5�w5���d�]y�/#O��s�o�c�X��M��ɀwb��{�pEN���)��X��N%����Q�p˫WG��0�w�w���Pg��ri<Ƞl���1�7Y�"�"���6��ѹM��hS����w��$a�:��h����W۔��I�;�2�>�Y���*!X�իqr��6O�^I����ň�*�j)�ws�6 C� ��76���: 7k�g��|QЈ���>'��SL7]�h1sUփ {E�t�8�/p�O��d�x�\b�:0PI:; ��M)��^���yNƠ�֯Ƞ����h��8�'�Ă����7��8��"�5� \��lv/�M���:���Ums��'�N$�A�&�������eW t9�O��#�7Z�d�;����SW�Q��,�N�:�J���g���L��OX���Y�,{(,�C�����4��i����-��I��,+���N+�ރՔ���ܠ��6�`8�9��p1��d ��^��"e�.+u놕qoX7^��\�E��(��S����{�Ls)��Of`�������Rs-�ĭ���,ޚurjzo2X�id��/�OS=����i�A��81 6�y[�>;V2�h���b�8��(�&��6F�|�x4�lsB�Z�l!�Kw_F&K)gvo{�;S��X+� �cUd�i6h0U�L�^h��8һ�|D��ه4h��?�ra$J�w��ʍF���k���rv�ypT�O���[�%��o���\�7:��Qu"��A0>z������ɐ}��ʏSs����;��g�<��@aĸ����w{��ُ����������6>�$��[鏟��V�f% ���u` ���zJ��6����V���J�R�}>S�0ײ��z�Ara�֏�C��XM�ϑi���d���� kҟ^X!��\Ήz���������$�~���/I��Ʉ�&���ٹ#;��h�~�wѡޚ`˴���,� ��y��E�k�T������7�G�w�s��� �8 E���O�Oq� ��u�+L������d�Ё>e5J���dW (a�v$v�3�<!��w� #c��fw6+��Fd����bR���ɓ��[�^�Ҁ,�~_P��I@;m�=���.Lx�$jW����D}�F�vc=9���dȠ�AN���j��2��0*pB=H���uX���IQ����g�������Λ����?�~��̸=^�#>�~� 3�'FW 1§5�(:�w����N�n8C�la?�Lc2UM6xy�U�az��3�����Ь�:*�:I(>=�1���2��z�y>=���wU2�92��饈JT[��c�Mm@�v���zd��s�㭑�L�+C��j��8�c�lcZ��2�.���_���Rx��2�Gd�� ��y��q"�:�/�N����i1�F���B�m���aa�3Lr����Ynkn#��\Q���1y��qR��*��&J.���<h}8<����^��{���N�LL��!ȥ3�eEU �����LNB���v�X��l������o��^q�� }�WF ^�]> �kxu?;��������m�X���f���{�J�+΅pj2�I�:�ƍl������E���w>\l.88��Lׄ��ىe��A 0`��*ޟ��]�������7��0)Fc���yԩ�d#�jD�#�m��G������Ov��PZ�P&�J��`���2��G��#���l[f��0�cie���s*5=��d�\���ϋ�t)0�J�U��#.F ��ǐ*�tQ] RG�}��Z���-z�S&�Ɠ��M����:�%��aP7��V�P�"��{�Z�d����8Nߨ?���*1A��I{�(�D�����l�3.�3ʶ۴m��o���7�J�"�[�;����*�=&W��Y��(�̅kD}��}/GƉ��+�)m�|�a�Ļ��!���{�tE.hZ�:�:O.��x�<��l������疖�Ԭ�H$�.�1�d�U�ʑ�YIN�sە7Y�Wf\F��5���)����L8O�ޘH��#Pd�J�17��$�%�7��zl�DP�tM�k�W*}1���r*<g�E��5a ��p%?��g��(�/ �a4�+d���*q��d= H�u���^�A��~5��������Qr|���4j��\�w��1)O!l�n�����_;J]H�~l���Tl|�{:a[b�ߔ���d�Le`�vI2z��m��n��\��s%D���Ɩ��!��5���ǭOՃ�����Z��4��H��k[����B�����M����vΤ��2����8��U=�M����;�3"��x ��[a�̗40�KRdY,O�����D��*��j#`F��r�E%H���?���;��J6�;��Sp�O�m�b(�{����#�������6�1���Q����7T��xg `-3�Ł��z�p��v ��,nt��J�-�+�>�D����d�}�ku�kGؿgx'݊n�o�EV��J�v��;�`S:��_Y�0w�f6n���k�ɠ�l��V��C�n;�p�T֕�w�;G2,�x���Z����-ϔ��Y��%s��_۪dއ�sOqc��C���O�w݇gȐl��"}��Pb2h3�x0�[��|)����/�W ��ڌaO�Aq�;�D��yy#�>�A���*>�_9�O~�I�7xVt��J���:ў� K�ْi���Ӛ�B���_�x`ϻ�YZv��p��@�+�*��3,��^>��Ǩ�6�ܫ����%��tt��,2Tʝ}T/,�rqZ7���g�_6��p[�F"`���o���ty��D�`yoz�J�$H�X8��'1�j|�n��ʦ*����1�F�@�ѳ�#��p�N�a�3�))w�G�+"�Xb�@���!��̔�V�Qݹ�N����sӣ��w\�/q7�C�%O�-<��T*5wU�J7W��<7�P���%���ij�E�Eq' �s�%B�dWwm2�@cݹ���]{w��a��quɠ�kuvc�Ċޣ:��LI`�`KԀ+�z>|q��f �!�����k����X2�=��2=KW"&lĽ��O��\|ћ�����Qr�ֆ`���^��y�zf��D�l��@B�IY߿���P jݼ���D����^�!&���z�z��y�������s�`�3�&8��7����X�>��I�goK��(o��\J%��L��s�#Î������+?�$�Fx}�I:�6f�у���kʢv��~��Ӄ��ŊɝZ�کO��Đk�N��u?��M���G������Y��5���R䨖� �(���S�� u�;���>ѽf�����J�h�Z�3 `q���A�I �`�?��� ���$q���$�|'j��{ߋo&���|�܋�����_��<!����n=��ͬA)�ŝ)ɪӹ����I����gF�6�:��8���J.g�zGő�n�m��R���֟c@�^��r"����k��0J�_��%��F���8�->q�w�Rm��]Y���n/�%Uaؕ+g���f,�}n![P��&=�{�'��Z���emη�h��^>�N�����r��]I�-jJЎhz�yRZȠt��5ݐ[7q��@GF�N^/ISd�^�Y���������v��oo��~$�C�h��݉Έ5�ML�GW��ɠ��/�H��יK�<I�yf� I�A������<F����S���qv|y�kI�����ޏ�����,b��[M�aD� ���;�r*VVۦ����M����D˳.i���{�#6������ة������,g�0��.f�h���,���-^��0F46Nt��첁�twzuVa�L"�#�HQ:�Bg�lv�[��S�7b����q�t�^tF,��|Vi�Q�L&&.v����s�8�\�4�?��v��bD����Tx�Ě����6�q<7���)ç�eP$��E-'usA�=��ֻy0~g� m��ß�bm�I��/�����6����Y���ƌ��r-��_�䕟�hZtm�8�Ͳ��� ��"=���ŋq���l��O���9ylև�.�Q<���@C�Ȯ�7r�,�Q��n�Z��coJ�!��H<����ļ['�Hs,�����&��nSW�@�YlnN�=�/k��@�e��\<oc?�Я�>��a�1=��v�[)��K��͖ܝ�2��$� cS��V�\�J�� "2��4=�%�/��?˺��=H.>W���|�\�ѕ�Py�q��1]R�"-l�|�/aa�Jྍ��=Dd�D���e�LRfB��0(f�+���":�<_��?��T�ծ��B�ɱHF�W�U�o��V���A����]3o*cD�@�#S�NI^�I ��xȸ\7��% �AA�A����#�w�I�����G��em�7Yyx{���������r-������Yv�*6��[F��S�( �[H��B��>�W���&re7Լ�ѿ�h�0g*y����!I��d�R�ˬ��(�o���.��Jy���Ë�'��m(; &u�'��** ��QҼq.糌ܹe����e�#����R%����s)��K��ɓ����S2�J|fA_� ?d.|�{ϴPb�!�z���2�?r|&�C�h�� ��`X�a��c��9%ϼ[���q�7 a5c���@;�a�V=�^�Ai��͊M/��Q,/���C�`��V13�N�]�&l�o���2Nm�p�Z�7����>�ô8,#R�`-3�iB��b���]����d�߁G\��B���{�K����:e���E�1=����$"8q�����:�;�� ��GWW^��`�Nљl:���ع/&�cB�.���1��N�$�<�[ �]��S1r�n,��d�sċ�L��J.�L(T]�ACW���뗏Y�&P�&���Qb���<�?�[������z�/�0�\q֟Fh��[�@bt��ϴ:"a' e��O�K�~n�Z5HÅ1#C�E%rAg����Ř:�J�H�9ׁ�N��w[KC�R^�3��kj@TyG&"�,�W?&�uz}=Vˆo�r�wʽ=�Fr���;\Ϻ��jS!q8Z��Pe��f�U�i6���]�{�&�=(^�ݸ5K��(�vqr9ua�G��_��2��Cxu2`�/0B�֔�:<�!�xx�ѡ��ДO����|Nh'��eղ�8p%Q8���-�é��~k{Z#�2���;Z��F��6뺗B\���C�X(�^��Q��ҹ(H�K��O1�}��L��Q����}��t��0�[�n�͂��7#^�\��B ~)��p��r�y�Fb�y<�MmŊ!�� e�I��!f��6콝4N�l�<��[`@�\�)Իy!�L���ty��d2E�s$�.+(�����9b{ �cCIĜ�������[g��ݛ\��ȸ��C��o��4f���/����O�iU� ����_�kk�M��l�ռ������ዣ7�wZ)��N���bL��M��2�P��q����=��$�C|��48�i��)쿡����rB�<x!����ȸ��c�$DZ��2Śᴸ�d�M�g^�~t�B =�'�I��:ʄ���L�a�~�>K��W ��y*Kу�d��9=�|��֝\��$���.t�kZVy �wnk��#�6���Z~���H,�n�ь"�Shص�~��h��Mr�7׃�d���j_�5�DoJ�qvh�a�\�Bxi����rZ:Q�h0���)s��6-�8!Y5Gɘ�=I�d){w�R�ѓ�vو�%����Ͱ]1jy��v��~Z��&$`��������'?85w�e�b]Ϛ8�wzG%a� �-Te�9�F �Obk�Fi�6 �@�� �n`�xSz��f������Z��f���o��xl����Õr=�c��ݼxB����n*�d�W%�a��������=�/�4,m�p +d`=���Gr�xjyvPɎ��>��?Z\,�� {Ր3 ;y�����"N}0���;��m�xB3��z7���x��z����0鲒(8ٯ�����[L�����[#Y�[�X��8�s��x_�`P}�d�+�xQ;��3�j-�D䚼N�h-F`�khE�*Ĕ.�1��>�$���8����Ӄ�BC3�[�>����͆�8L\�S�+��|��y���K��Ҧ��э�9=8�%{��AH_�)!�����Zt =�N&YfVf�c��fR�w>xw��ۓ/����#ԓ��T����f�x��xO�s�bɩK�mL`L�ݫt?6��k;���3k�F�E����炕=ȘCc��Ȓ;�m0I��]����)GTŎ�^n�:�3���v�>�(�!f3�e�N�s��;�"r*��)n��ff�W}� ���Sɣ幟!t�˓�eWw�'����Ƈ�ֵY� 12�6��wtX�>�3��� ���&[�,�z)��@���9�٧]�!���G��2�,*.Z��~���~~G�m�Ǎ�c��T\d�N�yڐ��$c[Ź0�6u!�ȓ��ӔN'�k���)WI�"$a='��hS�������(Q���(k6V�!q��%)|����l����Z��{��5#��j��t���qz�B�� @JT�e��W���v����Ò4�$u`lg�������ɀyS2��?dO$|��IV$��o��L&��j;�����Vd��W��+�@ A[\�2+ըf�u{�`D}ӿ���o�*;��*XZ���,wd-�)t--��~�n��V�E�R�EB��҉x.c]'��o�N�c%Z�m��SφBD�w#���Mr8�G���~�e'O�tBV'`�����/d1_��} ���GK����N�(l3�ϖ�aT�essvE�x��<�/��&�p�KxQOqל��[�.ݛ�$�P��$�Y�(���F��y&���zF���a��$���ѵ�=�VG �S��*~��?��� �w��1����j8W��qPdg���VN?�����a1��Im��)�E�L�Ò �D|Z��~n,�kL�is:I �r�`2@��9ݿu���K�B�g/a��<�C���`����DԲ�<� ?{{2�c�O����R�� �3��Y�@5=(��/?'�: ��������c���N4�ub#�U)ڰ�Ô�x���}CX�Rz���Iz������'�bu���Cϟo�3��V�������h���va�8'*��>M��iyw�Q�ht@5�T7��YRR%d ���}ke!��ϕ?�SG+�M������ѕt/pj��z1��?������ y����466�N����'Nr Y;��� #l�c[9���ӫ�:V6��$��7p@�+�n�.�f��;��-m�o��h3�M�=�[�V��.?��~t)Å&ƆK%�{6��(�2�"�a�v{7��MӌE�lxթS�+=#n<�>]��wT6K��$�;U��t���Hw6G�e9���Yɠԇ�n�A ;�I�Y:�t2�~���n�E_��&�VB��w�:<]6x����* �#���i�WL�r��lg=�C��P:�A'DAxNO�g�;���d��П�ޝ��?/��A�95�ѯ���������}`��Ӝ*�����h��V���:�Șh�8�.�G�=�T͑�Nkm�ex� u_A�E��m���F�#7��,=H�\�e=� � �̽���]�l)y���0Ӧ��ro��5`���O��f�-ʈ�A��_�� ���#Q^��sBF��=��k!+�u�����?Gd�t��k�+"IY�P^�لC����{3��6s�I���#c6�_KK�{ұR�hd�݆1���|6 ʈ����ֹ~Ԧ����.�rB���0��0��!��W��~Ya-l����~@��P�.�{�Z���ӥ�;�>�q��a��Q>���� ����2��d�t��B�k�U5 !;�̂�G�t��~�%��$��Fϒ!�e�G���G��w��w���c�������\�e��W<��x��/$��p��Xm������e.��?�F�F�����{�=�K��5���OZ���gs�g]�.7�Z,�XG�5����3�_K�@�c�P�6�g?�CNB�h9�&�ȓ��I2�� Ew��[M�@+��$�%3= �g��N���'#�g���+�6���T���yu#:�ċ,㏙�@��6@���ó9 "���:�F�����~GMD��!�������@��:]ʦ������K��M�(��.s�kz������@/�v�(Y������]���1��V����{f��J��s��vB��x���:�emm��#�-p�G�]y�1��E�ID�a@�����ڵI�n���=2p�I�O�t���u��FM�8�d K�(�+7Pʏ�2�ew��2��\��6QC����hx2�߇�F��R�)�$��)�.���gt�K��ʗn �O�۔��PTʤɄ�����R�/xN�cXښ���iM����^j�y��пJazlBi�0m�s�X��~l3�V�t������4�d`��~y\wx�˧�)�\LD���V�l�����gې�|N2��IU��%?�ܓD+��{�=�4~�G�M�xM�F�"t5��t{-䏦TD�<<\�.u�8�� ����R��Jr!2���Z|�vS '�rc��/��u;���g�9BC��@��w�l������'c��8-�!#���P��.*x>Ġ˅�0�C�S�g�֫-p���F��&�N ��:�a#�G���N%�!a�B�KCZ����z`�W�� h2*7�E�]X0���nkϺ+���O�U�_fg=Yb�� �BS?��f\3�P�&E�3���yO��k���$��z��`N��9�����v�3?�ב8�yq�g���n2�~+�Q16Hb��Rѧ���n��Tv��Sd�d��-�v�@�AM���7lB�2I�^?vl�'�aG[��%�F)d:#J�O���L��Z��)JZ�guPa���w��v�B,:�xL&rJ��TM�@��, 1��/2(mb����7Tce�l=*���zzH�-Q��6l� [q3��Β#�������{d@�"��MnF���꒵ M.���"u�kƑ@��X�ELY)l��������(�sy:�N�y'A#G�'������tn��_N��Xb�,��5�Hr�i��er�5�qN�l��c�6� ��|��;W\I���zt����[( #�RLj���Js)F���:�����Ef�_��p؍<5��;�0�����vrd��}d�A�P��s�_?8{�'z�NzY���f�K�6��<���!���Bb���J^���B[�"��J��e>�N��x;�)�nc2��i�I�w*Du�N�D�o-۴���u�{�d"���ަ(2M#���s&����0�Ci� ;����&�b|����JY~�h�4*��K1t�(!���~:�SA$ϖ�`��hMi�<�w�;���x��p~�3}�E���v�ӽQZ|P� a�u���~zj��vȀ1�.������������� wV^�t���f�p�n4"|��x�/�ȸ#!���=+��ݲ��齙+�W����;����?���Ϭ���Z%�9fJ�m���o���3c� ��e�����9�i������9{x·S�B�n�惖�&x��ͼl�x���L(bt���8%��~��ڸ6ȡM�"ugn����=��"�ᓝ7�\f��e�X�BA0�� [7e [E���d�� (��SY����a0v���N+�N\���eT�a��>N��w[�A�t���]�R������ӣ�i��<�Ed�x�x!�\mxw��*[�|?��qɸ�i���j�o�U�g�� |'%�2t)��x�G$�A\��v��N��_�Dr2�R��y�dV��`����YӾ��(@�g4kƿ?u�u�9-�6�GB����+�y�"C�9�:�= �a�r�8y�Q�g���VQ2Ы��V��\Ӿ\�L#��![�(�),[s�<�ϼ��Pl{�#�E�A�+O�@���N<���,��@P=�'Y�;��R�XTj�'On��,���j Ռ�k��a�|i��M�'��2�d0�Bڬ�T�J�e�t��T3�e��ra%jX��p�����7:�oI+���.��q�дX���\J���El��w"�(�^�k�SJ�U�'�F��\�Th~�{FVrw��n#�-���1:��gtB���ĚId��u�u��___?]ܳ��5��w�o���L�abRE>�i�>�� ��ʱ���?c幤�R�o�����ٳ����7 Jm��]��EG��ש�l*�5�o2V��ɬ��� �2�W;�[�s��&2DDGW�[���`,lqq_֘�e���ը�Zj�6iDW�Uf�&�d�A�����&���S@�T�Y��� R�d�.�V��o�D3�h�����֨d�ظ3#�ΐ��RxN坟��9!�ź��U�^������"_��uZ� ����[I-��Ī��/� ���h������B�w�9��.�TBӳ �v=�/��EΊ�Ey�6ye;���w���P~O� �=sCݬ8m�(��0�:�\h�2�JG�v�V,2�OK�ゥq�F�WK\��I�iՑ[G�,��܉<��F��{I���1'�G��8�'�zĚ��Fw�y�A��(������Y5�aDi!�� �IǍ�!�3^y/�K�]�����K�A"8V��s(�Cר������Z��a9��`R��i�5���X7*�sM%<�x<��1��͙�M�%O&��ȠQ:r֓���8s4Js�63S*���8�o�*�L���Y���?0�7ԍ��&q�[!�zu@;��v��s�KS���<e>�\�(x��i�2d�@d�:u��*&�{d�Q)3�Y��"���'�5C̘R�a��u&�e\�]3��M�I/�� �e��C'��|���� P��a��s�AAF�'4�,B��LA��f�����������e�ߛ<�0z İ���F��e�~��m�Ud��ԇ����5�AT�湔|�~k%߳��"��e0*�흑M6��#�+�w�Ė��4.��b9��V���b��W��>χ���6bU,cs8�����m�x���G{IׄO�}�M~�u)�n+ȋ�Mk�I��6�|����X�ZWFi���Y)�����JEc��BTIt�Aw�Ҹ@i�|F&)������@�S�h�d�2����Z�K�X��K���j��:zG��2y��}�|u]F3cI?�83��wc�듄���]ygg!��)�uA�����}�4DGL�c�Ztr���L� �\�,��b9=� \j�`���S��4!'f�JF�2pu�q� ��O-W6�Ae�L�T7�Ғi�w����&+uT����t��������� ��=�E2��ԙ3���9� Ͽ�H����1Q&�LV~x ���i�v�k��Ӧ_0f����@�a��yB0D� �b�����AA�:=x^��?E���5�OZM��;�|�z{&�C��P�\<o˾gFaPJ'\���&�s� '�B�_�4���y�y�r'�a�$-�ob�uö3�㡶5d����9�ń@�ѿ��g�}�g��j��g�<�a]��5KŻ��O�3��uV�`����\L�n��N������v,���� e���:�e33��eVS�LG�P�4#����a6SH�YJ�u�1��y�W{�D�R�;bG���Y:"��e����2����µKW�o&��{�Ο_xW�,y��j;詙�^u�M>���g�ׄZ[B�W͆�S��ݟ�ur��P��@iLt���zjq"sd`�0p�2<�Wa�u��r�z!N��w� �;Ļ@E����!"�r�$�H藫�j�s؏�If��T�"Gl�; ��ADfW�9���/�<L�s�$[OTD����]�`ɿ��į���c�s�$�g�H���g���J��F��*��@��wF�X+��ۚ�zQ��r6����Y�ͼ\<8��Jx^�����hD�]�A�k���A�|�s��0�\lԼ�Y4�E?1�6c; m��EZʌ���B��9�y�L�[S�-jѿT\"����h?�6W������fgg?�$T#h1y��L�p��@h+��]�!�8����3�U�kx�5��]]�5�_�g!ҵ��:ח�&��nK�H�5-���Z��l��$��ou;k�;I��cq�S�b����������O��܆�#X�A����ۊ��861���-����>pZ�ղL�Z�F���l��I�_��m��~K�Bn��揣d��4L�j���άƒ1���9��@?�Ɔ4�3dP>/{|���_��g���"���ޙO��%�?�a,��}���K�.Id䔕p-�k�`�@�P*��6>[��i��Һ�P��L�á2�D�CN��<D�s�l&�rRH�?5���S+].�^xn��!��v�����zjt� �=.�n:���D"��NFO�/�O ��At}��@ZQg](�]{��?�o-�I9�� ��˷&�����'!Sj��gKM��ʄ������Qb2��;C˺��c\��<q���{I�/��4�����_9�e���5[�m��>ړ�}M�үl�DPp�9��̀q�MpS�k.Oa��?�Aqb�ƙTb��%�� ��������E)q�:"j�(����j��紐Zε�A韝�?��{��bZ�MP��2����u����)��fd�l-#���`����t%[��w�>M#���4�hZyف'�,�wj2@�(�v��܊2�x�e�!�Fc��{�da�0v�L�����#��4��JZ-���MD�� \�GZ�+Hg�P�$k.n�N�&�AƈmϔR��%K�믺:�`S��h!���f��~^�+%�J���4����$��Y�8y���H�6[*d�o��n$�H�p�9��(%��2������!�F���b�`x"גz�i���K���l����A/>.9�=��v+k��2�KgK��筣ЃL%ܗD G[��`�'�W��}I�MN`�Y^]]�"c?���̟>�[����y�?�p��e�=2�����8h���ٺ��l'#ߟ�=���rޑӍ�n 0���_ߚ���_9��%�1g�E�YƂ���� �B��Ny}�쉆�aȞ$�ߵ7�~H����i��XH�,~h�Kcƭ�<Vnj^�X~w��}�qr,n�C�7$������ֲ���"<x\�ϓAd��lX_�]c��G �������.����ԨX���/�͈�<繤߉ܸ���v�l����u��bح4Tlm-����Mos>�kIx5�;FDΠz<"���)�Q*]��+�]�ᜤS'+�N�;Y��-*K�S������:�cd�qdy�H�g��QQ���6��Gs���G�ɀw�\d�a�iV�:@q�|AIyp%粱P�J2Pڤ̭���$�ڒ�nf܌?j?_�<6 p�����N?x@&��sw2�6ރۭT�0��|�z��|�k�)�aE֎�!?4|���Z��z��\�P��mR�M�|2���&�ܕ�,�7��yA� ����_ɸO\����bZ�x�� ����TTBv��{�T�zBƸ�"���[>�$��31���ُ�d@Zό-wSPm���#�P�~��\���꽩�����3���M����3�V'�����JM���jv��� )۶ѳ�B�O�q��\��V��_�+�V�4h(�xκp�]ۉ�M��Lz�aִ�6�{��&PǑwgAP7sm�M�ҩ����0rA����ۏu�r�&4 �2�8�$��6H2�U���� ��k�d���)�yx6�&R��`�a?�.j'�Zr��L4 kҭ�voi���6�x4��~�=z)}�V�g������d ,p�Y'{f�e�����eL$����y�3�]2���\(����)����=����c6�z����{b�y G�LP� �wK\E�oͪ�~��3��p��Eo7�S�A�u�E��2U������h��=�o��&����t,���>tjq�"��ȸPB"'ce�A����l��������\��|Q���$�#���"�����,?/mb&g�Y�������~�g&�k �o� 夀~��;��OI@�KP��R�R�wl�Iϗ����!�F�jʡX�3�/h��Û�F�%��DO� �,"$�d�m�y����}�����=yzz�� �����'x���ɡrJ���e<�:ad0��쳼}��6��FV���o�w@6�2������l|�|��p땅-��xm������,�3O��dp���>���8h�Z�AQ��{{�ȱc�ɀ�:���3�����J�g�7�'^۴�y�8Pƻڶ�~��2\m7��՟s��N�|�ڋ݅����$��>�WJj#���J�va�5�y�X�n����(��by�lUҪe�����u-������1��u�3�J�)o�x[��p���z�1�Y��0�y�V�M�\xV�90�\����f�_�$&�\� S���?J4\�b5cNb�����T��c�B��c�O'D�4s�Z�Õh��ܟ�:+�"4a�Kw���,��R� �b��kM���% ��%z ��?����+�����ҟ�@O�h��1���=dsY0��7�RJ�����ի���1�*6)%��̻8]������x��<��T}?*8�gb�Qi�Go���]������n�<Q�"1G����9��E�(2�̟����zP���?w�P�6�(��4�;��[\���d)��uh���o��uD�o���E��Cぁ�8��g�=Ϡ�{�4�Xs�)�e�y)7X<[��Z7&ƒk]d0�lbs*��4���g5�P��Ԏ���O��Ua��5g���3A#����a t?���W�D�x'��x����3��vN���M������뼧��奓�d@��13-TeT��%�Bk��}NF�H�ԍ+�MG�(�I|�2A*��ڗUO �����".��(n��)��b��ہ����p+zw^��z��燎X��\�?��G�K���0ݢ���<a�S�ޅ����Չ�CM�5Ƣ�o;W��&6��*y�����s�wNL�^�p�|F�lS�q�ە�l����0 �i��x��9�j���dK��{����`�$�ː�<:C8�(����V�F��;�ΖE ��d=#{�?Oz����(����8̍��եn:�� �Yr 5X���L�[�NԵ�m�@6�i%%0H��O#L�y14/kv,V���<�Ws�)���c������J���'xB?�"Evꐁ �B<U\B����qs�@lr�J���f�~�n#y<��s�,s���K]�����;���ӯ�� �Y~�QrNN�ʣ��f.���ͼE��z�`{Xֆ�ZwUDVX���v�k�?���l�������*�g$�iD�`�~�r)s��q�p�?W<���{��oz�J�J���3�N���S�4��%��.��=���L��K�7��C绿F�?O�r�+%�����3�S�&^�3��v .�Yc���N ��͍�&� (�/̘EVR���BG\GZjC�XlI'�Ah��5�}<��N�4����w�����G[+t9�ꐹӣ�O'D� Yו�kmm�ۨ�H����\���LR�k��+e�DJ J�8���Df�w�Z�z��iW�|��h�,��\9� $� �J��t I��f�5��/Yh �f+Y�����2Mi�L F�O�u��-<P&tb@4��F��P��o���RF��aw��L,�X��\���S��d�Pď��6�Ⱥ1܉^6;�/�_N�p/�@�;����w4��ֲGJ��)cwҵ��葁{���zfoő���=��e)�}_9�X��1O.��x'e���Vxc�^��8��-�&|����vx(ޥ{��8x9"�J�Ő��#U� ����H� Oo Z�|�;oF�d�o��6=pO���Ay��PD���iơ�Ӗ��=��Z4� M%�?<�=��Ӄ��_�6�_����|[i["�@��+��)3�BP����7 ��"z�U���t��؇���i��X];W$��DXl'��T��d[�F�������^Бħ�q�[���ŵ�yYA�%a ��t=O��t?7��Q��bfn�2B#3�:��,@��»�?6�)�6k��ˬ����Ǩg�L���,��$����J<j�2|6�|���˓���w���`�%���_ܚ�Zg�Jn�����7m2�9f����ٗ�f�!�c���0�����B"��.�O{1e&r+I������w��w��Mf��pr�4`I��4���ĭ�w�m�~����ο۵�9� �xj�7��`��S^3�3�s_�s�l%��S�:�����+���;�z^y��>� ��i�%������:S:��i�L�ޑ�oIءQ�^$�F_�#q}2Нe] t�QB��t!ƫ�Z5!�Dx����aJ��8��d�Ja-�l�bu��u��&訋�Lڪ?���˩�oR�ɇ���AW���%����+�^Uv��;CA���rR�w���D������@�����'q������о���A�Ls} K'����^]�ϱv���]��X-ک+��_�fO''Ԇn��5�����s�ϵk�\(�D��իe�9�5��8��<�_�~yd���y襏��KҐ0��癅v1�GO��8�= ���ٜaܧ��sm�|�i�%��d��s"���� ��i��&���<��~5����Z�sM�UҸ��J���[ɚri��6t�H� �,g�M]l�M{2@��(�4W�?���2md���8�C��| If��`��Q|�Pj�쓓b��i2"�;Z63�j�pl��&�pc j�&��2:y�5~���w������U��>���|��-��*BNhI3��zΫ�1�}y��v�D�i���03PKCM�qz�c�M�Ҩ#�$^��1 U#�������|��� E��mr�1B�B������\� `)2hz���DQ<�4T�n�n��)<KW.?�_�$As-��g;���m�9ɉצ6�'A�b�'����� H�S6����:X�o?}5�o<�^�g��l{�4@,��3.���o�<�$���ڣ�ۑ����&CBPp��{�N���m��:��qg�)]CJf�F!%�����܌߹TF�$�O��g�� 7�a�)��2� ʿ0e�����R\�����Z��CgRћJ"%Qd��P��X��h~{;u�V��~� ��F���++1�M�]7>�f��4x:�Q���f�z+�{6f�5!��VB20g�>*F����<�e��t�?K�3�<_��?��erpm�Ƴ�8Iȟ�owYF�,��] �TL������pUS ��&~�����#G�|��Z�`-��*Ƞ�F�r ����95z6���̹�P�OQ1�mFs-Sպ<=�\ ��*E.Ȁq�}�lA�5���J�K�fK��X>��:�Zi�{6�8o���If!�u2'�;�.O�R����d��J$��L+��2���������۲��F�o��=� �J/��:���+}�t<�۰���=\r5��jʠ8` ��m ��ZOr1���d�qyy��`>�s���|�&fO��l�Ȍ�As���R��˻M�����ĴI���9̄�'_N��x�m`�A>�4}�P��4 ���b=�go�2�9o&@DeR�H��bZ~��&����w���%9^����F<�d�(��x3�ꔵ��4��:BFٴ6yȠ��VZ#��������2��F��>N}�o%3��r�~�{J��S�ҩ./A��2V��Ѳ%�ފL����3l<R�#3���D2� �=r1���I��s����r)�" `l0n��C�Yl��$�e �v2O�:���r\��=Ԩ�b'e`�`˟1���K^Z���O�����<�BJL�CTa(&P`�cP#q���\�jc��)\��:�6�`B���u|��ר�T���S�����a����F� �]�-n�c�<rc�&l1� ^�Ť�_���2ü� ��G��̃��\��֭˓��O�r�f�� J� qOFo�U�9%?)���'�������z.��"��Z�:�������Iũ�咼B���Y����iܦLEB ���I�Fis��,/�/�c��g�/��>7�Tb� ��R'2h1O��,�~g���%f �lLkI6Åܼ�t9mB5�B��P�L���M�8�|���XL�Ed�62xj#Df��,�{1��+��gW&~Mh��./I�}��`9=ڗ�A�-̬��d��5&k2X���(�6$�$�(�X�4-��h\ E�� !�RZ.�s|�]�h�ı�����d�W.h���-��RLc+%ב������F��dx����MW���.��o_Uŷ���.���qx�2�ݨ���A~h�Ɏ�AQ��:�dc�Q3&%5$��x~ކ�j2x�j��/�#�`*цO�;�h�~�_�]%��_f��`%e����أ�7�����qE@/F��ˉ���,���k��~�:�uQ���n�+e��[u�'N����9�mfQ7fЍ�ӫ��������F�f����+ɡ�~m9�g쉥���w�t�9_����j����}µ$�&Q�v���lB�v2�!f35���Fh��6��N�ɓ�:�(�g��yT�,(\;��ύg-o'q� �H'V?OoJ �T�)a�,�{��8���U3�b2�A����oi;{z���qm{3��#;�؛�Q�ah|v,7���Wή>XC�|b��e�d�����ND6m��� ?Z���z���kW�� �.�]�Nv�����ʼn݇��v�6��J�n���և�E�׆ѓ��I<�g��IDݼ�~�>/�7Q��O�=Sd@)���ᵔ�5�l�!�}y> �� �n�I�al�`���av����e�V���{+��췶��.+n}z�d ?�4��XQR�dP\x�a�2]�σ��?dHg~�j��r���1�H��y��E� �<P�A��W�W 씟����/������Ӆ�1��ʍ �z�Dt���K&��BK�5�]�-���;6B����r���ck띕�K7��=���05^�g8௺��33\�!�����Je��1r6�`L t�� O+S���ݘM|OW#F�:o�W�B��j�6!�f8��f�NN�k���ȓ�1�̌��KX~��D���#i���b��N��i���9z�cd�x& �ci�J�3Z1�M���qv���(�?���~+є]��LF��ogn�t�����L��j'{���-���Dbd{�}|�T@b5�jH��{}5Z3�P{d�F�b��a�@,�#�K��֓��Z�0P�'��t���ϚD���B�4je�2�%C��;L�f6 �g&�o�M!�i\�͙����sQ����hQwUP���g�﹞5��]��w[7:'I�Yb�ww3�,Th����L7 ����ӑ]����cN4���-u~i��aM�<�2��>K*e��t���6����&XK�;!��]}���S�M��S?�HҘ�5,ld|d�4~�F�2la�D��h� ������6�� Z�F�Ψn�ܝ�5Ϙ�"��-|)O�A��]l�[ۆ��1-���9O`J���ˮA����|��xiS!�D��`��M~4�̌�~5��xr��k2pφ�������ڛN�-n+�͚�L��1-�3��db0���9�0��G������l7��=�R%��,�g�=�:�\�g(�w�G�s .�k�_+\X<�ڼ4�f�z)�X��l�,�����]z���s0�>x:�>.���D�ur�w� mz@�.H�5pOlWr�ѝڈ��@x��w��=5��]��i���霫9�c2�T?vt�����:���ю�}+�������A¢��\��G�e�m��_��m^��^^T/H�sc�� �������q_�1}�A�O�m�:�sE%�7x��O��yC�oʋ�T�˂3��,�Cg�:=��3`���1���k��̮:�4���h��e����u�`�Pq��4~��%�0��kሺ��_�a�c�fwy��\� ڕ���%�������z�ȇW�b;�F��S����4�ٍU^)qKY� e� ���k�~?8}}����O��[��b��<���_FV'k nXk2�=i~��f�b��2�r?uK���4�v�z�n����_3�G�6�5p�If1]��0=$� �6���3�ur�sb�l2<;,��3�Hv�>�\:=-�6[Z?t��_u �c�����d�<������O��i���(�ʌ����E���S��+�)��VŸ�y�.0z��̕��A��纼�5� ��TYFy2x�9�he^�N��`v��L�����@|�"�6͒ٻ��$���X����!ZB)�X��Kz�ꨘ�)��Q��"�Y�g��2!^ƙ��M �6��k�=4��P�F��9Ɣ|�mdy�I����vg ����qπ9���1�z��1 ������*J[>�t�KO��梁��o�&JN=��o;��^u>!/����h�w�ASa�%k�����\u �]F���X���ms�NpHx�Ŭy2�Q�s�ɲ]O�-[M�B�Ԥ��Z= ����y�v<��� N�9����z�At(+��Z�h�)%ܾe��hMj�N�b|�?���M��9σ2��9mz�g������$qa�(�\5���b`3��LNv2(�bA�j��q2��S���?��ه��M�D�C|�Ydn~�ӏO�0�X�2 ��^��Ik<���J4I; �VB"�>�u�z� �����?�7YG)�]��=pBӃ�QG�S~֭遒���N\t�ֿy�®�(���{�ʽ�1�u���g}�q�b��ҧ��#���'�x>�3�u�4<k�M�N�7I4��/S.V9�C=�Vf��2��]����'&{�� S��, ��Ņ�_G�l����]�B�S�6���I��k3k r�WG�� *_��,3��Ip��X�M��{�X\�ܡ.FC���` ��%w�7 YFIG=� 5w�̂��0��I�c8�>�e�Qu�'O�g���@(r��t�5n�Y�v���}�� H�e?m����~G黑%Ad@��`;��Q*i�lzR9��v����F�6���XrY��N��i`���Ip��I�7&�M��g2��̤Ƚ�ڽL�@0� �8����:�R6��L������:��Z��3;E%$�oV@�r��S��ʄb[Y����5֔��r9;��rWw[u��[R|Mq=�DWt=���o_�:O����2,)��=��£�B�O����މ�R����#�}Md��C�[��d[����?�_B�]o�!�Q'8G�W���3�#���uTŲ>ێ���N�L�F��f�4"�zx-c9i~���w�!�vע2t��u� W�=��8�"ȧw�����J�P�Ēx�X��40���ܚ��`B��΄���ͻ���X���!��}.�;E�rȢ�d3<H��`��I�k��?�H%��@�h{����ߏ��<�[������M2F���T�����&6�a�Ai�qs�&�,q=�"]U,� ����w�ٓy܋(����PǨ�ː�D�;��>ek��y2��Rf|堻6�@���/�W�%,�?��h���bo�(��V���yl<�%c�w6x��ۆ�4"��d������_�2$/��1��W�s�b�l�(����ビ}4�hX�^�Y\[\��5�&2p�=�r�8(w�l�$��`SB�����~��]��g���������< (��f�Ȁ�R�Q�Ǩ�9O��8Px�����惷�Z+�s��n���N�� M�U|{��� TU�O��5�|�7�۩SD+Cc��i��?e��&�ޕ�ܢ� �uh/[�k�yw���/���;�lа��gfY +{E��wR�Vf}���NE-woĨN|B��r���'�?��lh]6+��0�= ��<�쑶�{�9eNYHnw�g'#_����N��J�6�|0�y��S#ɀЛ~�X�Q�4���gL�)Ƶ�rM�����3h2h,*6��yN}.tD�B�av:�G�c�6>�&��7cc)3��+Y����J۳�ӿ�B�8:�ε�p�k4�4Ҡ��.���e��{/�� �]���mog�ucBc?����J�\&ɜ��N��ݟ�6d�|W.�ld��4��=V�Zz�%dp�$>O�Z��Z�5W�Q�8.R���'�l9��ۧ��9.�{��?��S���U���we��I�Z3�?M{ >�*��C�hz@粎9��TJZ|�ōt�v��ѯ�>6��BF���ت�B��^���j�'1v� ��hMrq߹�V�l�i��Ȝ�E��)�_���o��<6y���JC��Ƣ�I���k�W�5�Y����܄�,���,l���´�`����{�H�G��R^�ϋ���.�l��5HN&�upjs�G�`6FZY�ҽ<�wyz�t����)d�y�%�X{kWF��w(z\ʓ�;@xu�N5q��mVps�O��<��IzU֝�ښz����w��[��:Lr>��dP��.���;��-2���' ���0迭-���{�� ����p�5R> -�DM2��xN��l�y?�,?��݇yON�.$�� y� ��M ���H��g�]@ sNO'[5�{M����� ��B�4m�-ȼ�w;�Mx��>�d`�ЖI/]��a�iH}��ιE�$����'d������Ͻ�Cs}�����Ò����q��A�]L4��ڮE/���^�dӣjj�<��<��-��'C�4�&<����cs�|,r?7*N�3~��3ZɮfB�ZGW6H7�m�.�=�|m҆E�N�R�Q��&{&u�/#�f|#:~XE�TKU�%�O�s��q���ֶF�&<T�lt �ˈ2�w�$�X���ʠ?��u)�-��$�~��Hi)&���q�H(�+'6����Q�v2/&@dmim��wO1��ɀq���o='J^ϥ�f.5\��qlcs�boe�O)�8"dw< �ݨ^�h$Q�Df�SF�� m2XL�M��_z�Z��W�*��'m�kN) "�a0�m�ǚ��J��;��l����3,��՚E���I�����v�/�k�g���em�67G�#gs�[���s��K���+!����^��bX���{1��@ܮ~�:�����ò'%�Š\Z,�k� YBR�Q�l���OdPN���eMd��6�Ü���K���0���l�q �ja&�1�2ڼחç�_�r\��cN�k���4�����(\�Ӂp.*��;W�+����)�lL\���3M�Y-_��t�t����K# ���c%Q�_�����HN&���=�/�E�V|��&�}�F��g�ﮡ.��ӆ��J�z�Ӳ��3<�͚mU#B)?L�9���k2Gt3����ɱ�t���0�JA�����v�l���펒v�&h�/Lz���%�2�-�Q��6l\F%$���3�M.~묆�8��CP���9�|��a����E��h������R��=o�Rn#H�ܻ�qY�C�<���Z28�e���%�af�Me��̃���H?jF�%M=w�o��՟�_��c|Y~[K��&��8I��d-Y72`FR�t��G�O����g��FWu��!m���[@~��g�d��� ��A�L�r�f��M�by���6qm��B3�d`�Ӄ�{zrNs��7=R�}�f�{�ApI��_�w=�0�����e�#�2��|E6�¸l+�`I���QB�Ɔx(���� Jb��KcN�XM73�x�m�z�Yu���ڢݜ�����p�F��BȬ; }��׆�����66� �'k���_K2O|,�SSP�����t� ��$ ��G�w1 q��q�5�)���)<��?�9Ƭ�t ':��w{F�(�[�����=���&��Ib??C��ɀ{�rc ��be1��p���E9��C�� iWƄvHBi���a$k��I%d�D�r��p�`[I�r)�TeG��ugX��v-@J�y2���J�B�k���!j&���z4�KI�vF$:�'W�s��o����~���S��a�cu��<��ڲ&U�g\�j�]�i ��:ȧ��� O4�ɠ���~�$\�4k�pE�J��i�����9�r-ژ�-,4���O\��+�J> P��?)Cԇ]U�L��G��y���^҃n��*�ޫGy�.9=0�y�իwf.a��Bs�0Oi?��p�Q��7��|�J�1�G�L0@\.�r�����6�_��_l��v&��!�-M<KpN��`���M��:���_�����iڟݫ9�-s5�ϩ��!�L��p��x*=�l�8���)>����:��`�6_�k_|=)�Qp���;���D�L:�v�2q�Us��;��%O�³g�c��P�F���%��Z�g���(�Ӱ��,�a��:��Ӱ��;JJ1j�>o�^�6��A|p�1#�aw�!x���Vp ch���;9�k�D>���X��G�C�_���YG2�3��Y�v�4d<r�=�n������;2G����3�N�Z�����0�_G��5��2@��ӸtG�0��w��b��X0=X�g �;�$,ϧ�,#��,s��� ��VR���$��jE���T�~2�,*`�AH^u�K��d��7��6:��n= Bމ)�~ː��b�^�]@l��~K�m����)d�6,� �*�a�d�^ �Ea�( �Fֈeu&��F���5��Ϝrp$]� &��f���`�V�6�Xw�F��A��#�x�Ӌ��5���!q���( �{�j��!����e�S,��l*+\�oZ�W�v��JK�n�ֈՍ ������j� A^eg�r�R�� �Xѵ�i����S#��e�a �%0N l6��ٺ1t�Hk�о�w)YGk������,�B�r�B��Ś;5��Gdh)���;�$Ǡ>�_��dc��{��t<Qa��'��]����/nt4:����0}r�5:/C��W��/��r��j���hԐ;��%�J,J��'��k�D]<��>p�b�e�7�7v��X�B��?��8��3�*I��{#~ϫh�[��g²rheh���۞I�%���Aj����Kԑ�=�uod��{��H��Rb�`������j`MȀ��u���֬닇�9����/�ҭ���#��LD��h+�Y�p;� �;i�\�5�!Z�ă�{G�-|���2p�-�d B2����ϣ����9.u4pw�jN�ٚ�M�D����� "b*Y(�M�y5k�ëe��{���Y��K ��*� �9l\K�Zf�s�� ��S�E �r�u37��cϯ�E�M�&���]=RO��ȱݩd��s�,2+�*-���B��FO�=>�&��\dP�.���6��;F;��x��A���^�Bf<���oE,�����z�ɀ��4��&�P�ɑ/<6I.2�g����A��F�jN�@2��r_�~Ę=�( �����~Qb�4�y�FOgS��:*`}�g"Ӡ6��a�A�#댱��y"��1�ɀJ���u�-� �,:���9��8~��w�ʬ�D"w��_�O���u�D��R��v�}��K��|T�ޜ��]�@;�R�D�7��.2�E4=��� e��2��=@x)s��*�~��P1G�������(C���N��ӱz��T��T�3r�����>p;�O�lƻ��g$u+7#�E��l��,Ϝx�L�8@C�M�*�h��f��T��^O�8L�q��;�<J~pYM��@h���J��T�>�ϫ_OR�++Z�E�?�aM���Y����7��ke��*;�a�{��?C ��-�DGlL<�怇���F�)��I��iEA9WsMe��`'��l%�3��z�\Qѕ�l��*��D�h�<d�p�{q�<?�Z?'��w� ��0F�`�e�&�9yv6JsI��r���y���n(~�X�Z�Bj?=)^��c�5"{(���3�;��.2�h��5@�-�i5��>�ͤ&��&���u����O�8��q�Э�@)�z���DġN���a1>��V�����ݟ&��M�l�����CD�d�S�z;��k���A(���˔T��K���l"��M����z`�{ ;SN��Q�m����$\S�U�b���(-k��=���Z��$�a�r�R��ܞv��rE&��Q��&��eq��I%LV�%ם�(��Qf6���7PJ�[�p���YE�;�T����,�0螩Y�ô�]6��'����� �D]��e��'ߍ��w����9 &#zE�/v��io�>:Gy ��Z�:�z%&�'c6�NA���8��%i<Gl�0������`K�4� ��}xA[�@��7\y�Lr��e<���L��t��`�ٕw��#�)cI�SPד���pz|������̖��vo<�%f��M�g��~� ğ�C�Q��͕�Q�$Z�Hl�o�8_���[��N�������ps����^z2�P�JDM�f *���j3Հz��bӃ��ϯ5gx}2h�V:�l#�a���tC�87x}�k9�i��e�G؈q%�v&�N6@��]�U*k��%e�nNm-צ���V�%�P�d�2F� �f��p?O�����2��:��:XU��RPP �0֣�(��]{3�]3� ��z"�"��,&������ht�[~S�T~y��c'<�S��/��~4�mPF�G�5�`���]���-�����y���#�ܿ���.c�|֑���r��;�ek��NeL$a����7�#9b���JQ<��d\�6�͂� Mɇ�Yg,T�q�7���ի�d�}/�G6����[i�VCل d�lE�K�Ԧ�(yH ���d�N��OK<E�6JHf�Z�m�*.��M"���ϐ����Ғ|M��A�mI�Z�B��1.A��R�Mȏ�7��n��BD2`���f�NK��g�ܲ��]��d��N��;%q��<хd�;�l�G�R����ԃF�{c�ϵ(6pJ�K��=ଛ� ����P^D��8V�U~�=`8�4G��&=�D��HX<� ���E��<6ne��~�%>zY�s�7{տ���]�Z��Ɗ�؞��\V���/��oq�U�y�F ��=�9�F�,��3�^�$����6����L9�����E y����_�����9�� >k��:.+ 6��0H�}q*7г��9 �rq}�h��mS�"I��#�+n��k6�ґ��N28�3+ggu2�4R�e2�����`=�5d���H�.W�z���5FX+���=+.v۫D��JC�Y|�k�.6N��'c�^>���'O��Bo�JR,��2bd�4'u<ʹO��@��,�S�_��3�a�M���d�+�wdr�s)e��c�5�d�"����Ñ�:�������(� @��=��� �"�J�E)[2�=H��ሔΆd�z1dd`�<zfIX2���dK�d�����u�>����z�ٕ� �_�a�d`��^�M��5���\�@���ge`���\j��ę^T���)��;���r��y�ib���~�c�m0Wi�Jd���E1�)X�d9�)��'�ZTkjΰxv�%-*,ky&�,JW;T�|,�����;_���]�R��u�T���>��Z$����k�h��?��R�f�Mʩ�ꞿg7�Ȓy5�-���ܐ�gǀ��ڊ����0 �į�2�de��EM=<S�Mk��sk%L�IJ���ߕ�+���b����L���*y�rƣ#�<)h!2P��0a$NZrγ��d����`��G�1v|5"������m���لNK%@e8���I��d�<.=�z�d��}��Rq�S�xY�n����.�c�Uo�$#�yո[��w���X���k�?b�����2���ھ�[ה�n+�u�C"�O�w=�!=��+�V�c����dž`�� �ȶ�I*z��e��Ai��rC�1���SڳV7Y�(�ɔM'�[N�z05�Yk�� ӎ�p7KvaDiC3�����b*p��D\n��V��ą��W�'t�H>��)5��Y��{r>wߨ��Ͷ�9nrK��������0��~G b{0RJL�7�3��4Ӏ*�sk��tu��'y>�U��1�3^ZYKFQ�k��f�U�;�2�8��T�p(V��:b}�w�OyV.�rc��*�O�����_PQ�1&G�5�kN)m���?�$�d&�<c2�:55*��⌙D`�m/�˱����0��@N��`R$Yr ˣ�"3�q����M�~Zf�f�oM�ܺU��g���@���j쇫'��N�_��(Dl�)�R����Ir�z��B��i2���qqˈ�J�&�`��#�Orfk��r�w�q��� 6.�k/S�/������D���V+�`ku]9 '3�P��O;(��4����#��� R����}Ւ(8�T�S�WBCpN2��9t��� �L&&|���2 L��K8�m� 7|��$��w�g<���32��7u�z����D�+�`��%�f-/�[�"O_��q����2-���W��9.���������~n浙�`>�}�k�2W��)I��&T|�)��3�e-B?��)P �j�M��X��� 0M��{��� �J�HDrdSF�'3�ҕ�X+'��8��]�,�����"���u�X�V3u��+Dm-��� �ͰN�/J��0J�m�L#U&d\�z�Kg�*��]|�D� �&e���,l�i�-��{H�`� �[���:�k���'��>>�$�_L��p��mMڬbb�)���/��-'��3�vu*F�i���0���D�b����⦾���T�y%r{��%�#'_���j��P�-�o���)!���ɾ�6� ��um�ђ��7k����EL�����?�O���?����h6ǀ����ڱ�(s�+�Dq'�G���}�c�@���W�(z��[�mM$7N�z1�@d``cF$/w��,F�V��.#��݉�]w��!L?�������|L�&����1�J��o�]Aѐ���Pb��;(�\�4��,zTc<�����ڸd��o$k3�_��*Jj�)B�.���RZ�Yf���} I�^�]�3~��A4~�������1t�y�T�Zw]+�F���s���'��fk�t�ѝX��*�e�N�ߏ�v�)ܖ����{/���f�?f��.�Q+.¾��tm�et������H��������W���y7M�TK����S"�ٍ�(����p�TE�4�\D�h?��W�H�8*?2ݑ�Z1��C���54�ڣ��gfi(21H<6�.~O�4ąo;�uk��0\ߞ�\�<����l�=I�֒��%�n���Z�.<L���>�ʩ���Lt�q�_1.�+]l �3\?��woMϚT�Y<���d�V��Ҍ�`��@x��{-�w3�ȗ�� ��ͽ��x�[�A&=�牳����$pkkt��|���za�ƃ�+�Y��H����Eр� ��Mi(Kmc���NWS�u�\�=��Ygu���m8�qT�G�3Y{m�R�kL+=��cѿT�5�_�8�5^OO�� ��np�v�\3I!���ȭYD�Xg��0Ԗ�D����8� �o2�A��[�#cM�s8�� �H3хmb���u�����l߆Z����E�8��d^)sd-��?Z��Zy��^�I#3$p ��C�T�c�X�7�&� 7��?7_��%�ݭs��X��Q�dw8�,[�X �u��u��}<���S�Z:�E��n��A��0� �`dK੍�X����{AIv@�k�ώ/;�T��\�p�/��w�J�]�y�b��oMyG�q����_�����r��;�k����n6v�Ė_d��4H�[\� ���k�d�����16=��]&'��+�\�˙i(���z�x��`7�?��%�L��7�\;�/�ϝܫ�鳌1RM����n��F����w����s���f�}���7�u ���j �rWN�;,�d�6J��G�o��=��'���\hJ'����0�oG��73�Ŧ�X<�Ā�,�f��@��cZpO/Ƣ� ���x�M�E��K��������@�̢�(k5QD��+�7�;�.��;���`��B�XF�CKD� 1�5Ten��_I%�d�[���`Nag�w̏0�\qk�XM���~� EJ`�C��FG��5^�M����oI�a*��q=I٣��j}9f�3��D��/kk(�M* 4��>}�V�s��_�7�,C�Y� �S��$*8�"����(�d OÚ�#�;�F7E>�?:7�{le.p�u�9���"F��A�F�1&�Y����ё1V��Ƴ"��A�<�p��)o=���M*�ø�����d�����aH4uF��gvG���5�yo�9Ԣ�;�n�|��/�I�y���c�/c1u<��XR��H�2&���z0z'k���DT����z����C��f���� B�y��k�UP�Pt�#�f����#^�m|�?wge�j�XP���tI�ŌL�6��A%��e��(��_��^�ͪ�E{�knNϐk�2ۑ��� �s�v+F1��n�� .�� ��K�0]�b8@��2�S�,^Wj+�1�T�S/7>p�ބ���IC�k�İ����7�Q��۰��%��K�pE�u��&S\�&3t���p��f&��|o�+MN �.ר �֗kӑ��E�����!I��� �� ���t=d��_�cӯ|,��75�'��D�V�9=�d{c!R��(�a��7L���T�?��p�\�䳭�A�H����,�KNMs���l-��e�ԏ��g]�i��Z�.��0v�.�����|]�{�]�k�n��u��:2�Wzx�2�qZB�5/ =p_�4 9�Vb\K/�@+�����/�]���� ;�n'��x��4$)�1�?��:���|Z��P&Px �����.��pcJE��X���Q��~ۃ�lR�Wz�% ��mw�m��L�:��Ac�=ƥ�d��"H��7Uo���E�s�4kgsǫ����u-�i�U*�����:�²������J`��� �Wvt!?�� }�x�$�K����b��2��|����ٳɱr���3���� <�qbPl�_r3�2����박�~�1)k|?2��q��6�g �9��F���e�s�����}�d��c���>�k���b4��J�cM�bDn|I�[��L ��d9�n%����N�iq6�{2�<2�oy������prr)�����I X8���ƕ�����L֬�y.ߟ�D�?M��Q��FǙFQ�_�%�� PF@�,eaL�O2�a�p����t��y���@8���1���}ti��I1�u��i �8�$��Wϣ�k2pߛ7<ӏ��]M��v���~7(� �ܟxr��S����XA��5\q�*z���j)�02�b�L�O�NZ�4w�e�OPrǨ����6�h>�t�)sܯq!zx\�Y������5�I�a�:����i�͵�� ���}L��|�Qu�9 �ͱ&⠚NL��F���T�g���ǷL����Ţr\�A兾%[�"t-�x��s�����4,4ڋˣ�Gi�x��Q*�q�ou��f�n��qƃ��'��d�+>L7����x���B�q�|/�����I�4�U(���*�V�宯Y3@��?�{`��;�%�e�nFu�ג�M�'�(Yt�?O�7�1����}!��%�v�#�=��|�%�.�Z7�H��x��C��d�+�&���4"���<�ӽ�P?��~d y���?����|צ���Hj§�� qoA��J�N)z�q�57z����S�,�6M_T+�qm�P��scz�S�*C7�I��萁���<����A���6y���=����^"F'Đ�s&���Ҕd�M������L��26�^�<���~���f7]�t]��d�8�f�>�YDHNɧ�Vދ�@�Pb���~w�ںG��1��{c��[,��>�7�G�g�_�x������݆��-~��ge n�� ��Az_�H�bvM��&�sNlV74jt���C��>�}zof���Ռ�)�M���M#�me���ޑ��sע��������U���{7���k+S�(�4�� �A�ew��#��=���d�� ��W�U��������$���:Ά5������{SܽZ���Y�*�&���d^�\J�/c���o�:�5�Z2PX� �y?{w��ãsH��r�q�7& \���<r,�l�9�G�;L�C���ZM ����N�~�&�_:6��I�\&�v�g�ە�o)�)ђ�K�i��d�5��k9���v�ol�����x)t�.C�4Z</�}�Y�~�k�;�jtzpn8�a$��Ҙ����,�\d��r=���_'� W�'?���ą���ۙ(��K<��n� ��[ƒ��et���~�����c��FHן|2&�$@ɂ@�!�)�36F�v�����~��h�7�m4wޟ��~��e�Eh��Q��������/q����m��u(ӕ�rR�l�:r%R&�GЎ��`�7g��M�u�X���8��L(B1�U! p�W��tr��}^���L>���,��P�N*�ֺ�lPގx1O,2�T�QI�$H�4b�g�R��xPqxoYi~�U��%���?�;�\���$����&����y�@�L��G{��ֿ�Qidw�d��;QB ��/�q�� ���K�6:J���^�Lu��Fk�́�������3�~M�~���"$����-^[����yXN��d�t-��оԢ�$_dp���j(������G ����\���e��M��A��c�q�]]/?_Jp�Yd�o����<�_��I���s�{��5 �29����S���|�?veb=��_ZQ��G[�#[�� �w�.�i�QcVP���Dw� v6���f�!k�Hp�_�����<��t���B�Zq���.��Y�ݻ43�5�b�I��/��"L����nV|�Í�K��F9�ۻY ��{g*[�>̂��Og,n���!F�(��l��Qc�Yd�O�I'm�Ң���b��+=w���N����z�'��Ӛ.��ᅵ���e��;j�Ȋ���"���#'"c��p����歭\��fm)2(tO��{EJf����j{C�͚�2�����x����ϗ�$]�aWuD��8�e�٫t�W����d�� ��Q���a�LW����Q峒9˳��6�|-i�#�n���$�^2ȳ�oK.ees�H-�]�B��F���Rl)Oc5\p�Nns����_�F�<M�`i�I0�h�W��[��s�x��91n�� #l2�E¹v��w�/������A�n�4 ;D$*�"ʆ!�w�=��\L�Q�����b�|�^J�З�-��8�����Բ�j�\�A� *�UyC���^�w��'F}�YE�z��M^�(,�4��6�E�@(/zO����Y9�j'n�(ufh$���q�[�����R�<'�x>������N����3�k�,��~���!��}|k��H�d\�`fR���ϸݫ*'�g�&YS��4�4��At���� �K����2Z�{7�Iy���2�4l���t@��ڼd�E�1�F���dP�P]������2��ӽ24���8i��@�Z���wLN(�uœ�cj�גQG�DfB �� ^�.=h*?C9����Q´�E3�y��^_e�EVJ�/f���C���!B�=�� h�\ʄ�ᥚcq"zƷ{S�$Z_}��\�Ϩ�LH�O�3�?���:��3� t��Ҹ�?�4��r���B�K��=(��355&Z�w ��� 'zd���c.��?V��� i<�C����a��V������y��}m�����)�k��ПJN�����n���_G��������n��R�گbt��Hq)c�A$-8igW��4S�[%F���R��R��ʔR�b�J5k��<��Ǫ9�=#���c�Ez�I�Azɉu�m�����;=���H�)�R���H] �Zve���1���d@�il>(tr?��8��z���V8��#╷tw5v��fd�z��O��"Q��2V�|�^�^;q�����meB��菢�#�t<7�+� ^�!�⫱��d�Q�����I2�/��e��>���s�y0����*��Նܷ6K`�΅�s#)��čcdp��J����:8�d��fʹ�Aa��+n2�ߧ/�PsW2�&���A/뗥/� %/2��l9��,���b ���ۯ+��}��<�؛�֭Ǿ�@�yڄ��2������&�2C����"���b���zH�.=�nb݆������8Ғ�En½[��d߯MlNՓZ(F��0�{'�,Ljq5�n�s�XWB)\Tֲ��*�-J^u`����8����9�v����Bi��4Lm��e4%`;3u�����z\�E���(�Ģ���Ud�铲��_�F��Xc��r�o6R)�q�'Q�Le=�Fj�k�\#�T�Fp���vk���U�p0v�H��X�?���i#d���+�$t:Ϡ� ��j�:���Y.�̵`�&d|k�*�k$hd bz�C�0�wgOAg큋���(��������N�n(�&kPH��~=y5�-)���I��H��ӂx5�egɀR��%]C�u;]�����ғ�1��C�Nt(���L�%�j'\��/{�$��d��f����t��l���P�����@�Q�z��%��� ���6� �>N��@�m��� fNQt�C(n���@�i��R62���*#�v�j#��2�Ѓq��[iډ�V���_e|�4�6���q2����;�B�p�c]�a_����A/7�^.�f�ļ��V�B�s���8mO��6{��/�˴�N�o"��:2|��؆g�'�`bBT.w�ւ�6#.���w6c0z��FB7���8Ћ�B�PŒ&�>�0� �X!}�E����n$��M�ӻ�"!�b|9��1�÷���u�v��_�J�Sϊ���.#�o�{%����-<x��?1��72ks���$����ַ��ә �FR�4Y�?k�n����3�2������K�X+1�?�SA"�������'��dNc���rds%m(2�����;w��N�.fO���[���w���tZ�c��l zNײ��.�9WvE˨\��Ο�N�a ��ô�FE�A��a�crE�qFE�ɂHAmp2����B(��(����R�� ۔��c�ge;͚�e����!����2~�g���&e��<cXtƈ�~�~�ә��*�각.�u�N����5=(��h!��t��w����8�Ԫ�:���˅�ŀ��ii�7�(�XZ�u�p_����(�;������e�X<pL�{��^�ɕ]��N��� ky�~(y��C���o<t�hb�������d��県ˉZz9hs{��Zim��O% 2�so�Y�(-h�'PUl� ݩF��\�Y_'� k�$j��$[k����j��64Q��]��Q�GD։�en"M���;Z!��Mӣ#i\��OӀ��N���'k�8�}i������Nܶ!�l��21ĈD2A��A������i⠘B��Lrr_Ց�Ey�m�<��|"��')T#�UNŽT�/�$�߹��{��Q�J�oL?�ylN1��&��=���J)�p���ŃԻ�U�:���mZG+�yW轂'�ti��jJ�56Ww#��x�e�_�! ���u�#?mcs� ÕJ��S�.�Oh�H�ǒ�]�k���!�� �}6��p��ɵ��E�_��gTn�հ׃�{�F�*�@3��4vW��g��v!�����9W��ű��䎚��֍ZF��m����Ef��U�䫓{� 6f��g08��W]ӹ��ظ� Ժ����/�Yps��U2����գ��W��j�X�eG�UwZ��Qƒ@H�.���X��JH��a��z�SM�~�$���*�\�a^ݳ��rQ���CH �)�'ۣ���l��0�?7�ٶ�^�=��X�� ]�֢9��o�ƿ�9a�f./��4�[���hj�rQ�4���r\��S#@j=kG����0w)�T4�7���������7{\v�Y�|�G��a�^��5���M �xU:�bV� �:���X�����j�zV2`H���4���)��{��d��rs�����x)� ���Ũ��OyX�A+W�&S��TF�E-s�遘ީ���g\��}�Òmz@�N�J�-�N<�]�[g�Re�m��jWh��� �KZ^��Y������ԗ���(� Ǘ�'� S5�0���'|�5є�_����:"-�&��E`���P\�N�cӪT%n�P��r@Z5�����j�/��跍4��ʜ�9��z��ύ/�x��ɘ�`��y�ԇ��BY�Mp��$���0P� �_�g\�(��&@q-�i�^�V�C�a��N A|\y'c�{>Iz|���ӽa��F'���w�d�;,#�_,��c �q���֔ҙ�ym2`��QղEd�����R�� �� �A�<{�Sq��NL���, \K�j��X2��j�&�<�B������Y��Si������!����+�ẝ���'<���T�zt)mU������7�_=���DY54U�aε��T!��^���sow��`ӵŢ*kF��ۅ,��G�9�`�[x��87�x$����� ����]�2���BI�<�9��/'zp-�AuX<�6j�5Tx~����}yl�o�Ťf�d΅w�%G^���Ȁ�T�s�q���c)��}[�Y~6|;,U�W��J0^�9�K����꧋/��aP�Q��x X�R�?=j�ի��Ϻ��@`�La0}�&�t��a3`MP��l�XN�����R��Lj�����E��V�����?>O�)����i��+|09���?�� �f7Id�cy�NB ��ًΘԿ���-��p`(��������;mǛ"�߯&�ɗ�5��F*�E��"��B �Ŧv�4�4�;#~N%雺��3�{�D��>��s's��'>�����"d��5 �4p�1��4��++'qY�`���+��/�+�d�,d ���Y7�ƴ��`��ip��d|�{���Sq��쫎<�d@9*���;7O���NL,�Vk�<��o�`7���l�?#'n~��x�m�]8DL��ZZ�_��sF!|0!bwt�##$�/ {:���"�0<��2[�vr>��Vk�[���M��L)z@�?�0gy�,=� Un%��M�S̵��sy��N��O��ҟ�~��lm%��/�`����� �C�YT%��r�~Vv����P�F�X@m�Ʒ�m������3F�lw�x�6���y��ԟFI@���3IdD�mU��y���G:(@q;k������06�A�JI�*,��k9�] �{����q��Q%)�&�7�U�`���_��)8̌o$x�2�f��o��w:jV�U*qH��i��-�ɠ�m�Z\a����V��\���d�j{v�Qr*Y�n�͛��ߞtO2�)np��� 7:벖o���˘o��R%�,N�Ȁ��(���������{�����MN`�l�v��d�Q��]�b�(q�С�̽T`y{��r[�����9��l+�Y?on���J��e�m��=lz�q�7Vo#kD�F��FX�D�'f�{I��l�;�e�~�9���ܹqL��3r���:dnG�_��p�=�~O�ZL_d�� p|�QYT�*e�3 �p�B� ����� �W{I�9Z�Ɲ�ן��.����g��U��BV:cHH0398 ��vH�˘]}�����!�R�9«��,��=Ⱄ�I*N���mAc<+UN; �Q�J�%��feA���#���>J��D�����8I(dĥG��=H�|�=�,K!�d"cg���N��1����%��Ѡ��Oߡ�)H4�� ��d@�49��z.k��B4H_y_I,n�x� �r5�H������`�0M2�������Cngd���̿��9���J�*V^��:�)�8����>���d�>���p�?3C.�)�����T Ҡ�̻>�5i�?�b�S{���@��c+Y/F+��F2���<����������&xF�$��'p�.�17w,:z^��dp-b�ɀA�q�:�]���Ѓo��D��5Ƞ0~v���>�Y���WT��e���H*�Ǽ����VkF�h&���*��i|�����4���1�5ޢ�k��qX8�O��! �1���W4�B;�ӑ��Y��<�g[�pa�{NX�\JגI������k�]���r��\N5��3�ޔX�k���\�48����q�M�Z:lr"�x�K�����crssU����B_�3���|�����q�r� f<O��t�x�OF[�#P��ov}���I�aG��� �K�V���*m��T�Eȣ��2C2�!��|�5�n�A����<�k�i�����Y���֨�'JM=c��B*CC�]a��DC�w,G�#��]2�^SyԘw���/�aj���&�֏��@�z��m4�V������O��}�b�@��L����K|w cM�y�E�dҋ���� �Wy]ɹ��JR8��b 4�{�����NÒ(�w��o���g��=Юy4 �}� �@0b݆�ӯM� y�Xgz���Iu@BMF[����a�YKt�c�Am&�a�6�Ǧ1����%[�5�E�8.b���:��FA1$'��S��.1�� �1�V�0:�s��6�#�Q*��rn�rrv�N��@�%���F,֓t*����Pa�ͺ�E*e�|~���<Q���� %���@|�is��������3'n\�#넃������%3Xa��@:o��v*9n��)L����c�7^��m�>�K*߹T�:���"�c�_�}\C\�=g<�X�z��%�3�����&�y*7�s�r��8~"r6�1(e:�t�JReP%8���{��s�Se}=�;8�b��.I]��G���Ⓛ}��w�������Q]ԕ�f]&�jR$�OO&���4�ԩS�������)�Ek_}�V��S�a�=��c�;i�7x&�j�R�4<����vB�AӃ[r����}�(��jJ���a�4��hz�\��N;�M����"�,ݛ��,�����Q�{;�,ˬ�Z^������X��B�\ �3ٴ�C�_�Z�rn����E �I�DB,� �f�R����\��g��t��� w��ĭuJQ�K\�J�+FI��e�L4�Z�*Z���-�nqa;١x�Ի�SP~O�F�{`qs$h��Rw:Fʆ��K�T��y3dp�_{ܽ*���rW��q�>����4�\Oρ�F��>Zܝ�ы7��]Y�2�3�~��&b�J���`���Qx���,<����L�IsGnk2�5o�?��r�v�63�1FH�#�5c�k����F:�d�ψ�Kcf>��^��._ɹޥ���M'���.H[���vj�yZ¾^���~�z��g��<���9��d@Y�9!��I L�@,�΅X�Ϡ�Xgo�m#`|3�#t4�8�h:� �F/ Ҍ|�ϓ�O�&z���L�bʹ6���<�z�T��S�$��Tr�s�`�:�<�^>;٘�\crk����M_x�]�X�Ͽ5���� �����ȅ���j\d�%0�ݬ���j�*%*/�:}��ڬ�;z�-���!7!��C9eԈw����e�HT�c��QIYT/�{=)�K4�(������xH����ʞJjyn����IQ��s��և���\�h��o��[���n!��ˠ��R^cwjw� ��D^����x�D��ɠ�q���^�0�(�jEq�3��ⷑ4�-+�t�ym ~�'���^��u�g?]K2����k*�<�:&�M֨e<�a�}�¡�� ��JF��i����}މ#�{��\{$�э�q�a���M%���=��S`���}�`��xᄏx�Z�v�& ���1e'�9�G�G3�נ����Р1��}Av�V�wv���mg�Fp�7=( YJ���|lz�IjofV��y�rB6XdZb�b���o�`q�UHO��!����xu�/�ܦ٘`�t��Mv�V����j���3�T�"j^ �]8�3i��!�"�u|�!��$�"g@�C���6� )�e$e+�X�o �X tDu��N21��/��8��@Od�cDR@m�l���0f�� P[��\�xd��?���Jnk�[��O?���߈���X���υ�ʖ���zƥ�y����/yssa�z�P��,^J�G9�W�<�]������l�f�#p�(q�d�����\#�"ֽɀ���팥��}��N�7�p�K�BYג���&��$�9���H����6�ag�E�W�l� ����D:�W6�x��u�*�}�l�Q�&-ǔw���d�%VO>��^t`����o7:�?�Y�~�VBj�������t5���EO�:���g��3�mV�Zo���V�\�^��x�T2�����:/�-���';��hYiz�H�Ա�Q�a����2��o�mp:vM���O��o�Mw�ҥ%��J��KM���R ��Y^A���f��v�A/�-=��rz�&��jjob��dVx�Yr��x�q��e��&QJ���j_�ۻ][���4�.]B����%F�$��L���3~�m�Pߘ�g��b׳iA���ȇ�ϸd���� ��OK���K6w�� �t��c � ( ����<L�]F���������et�D��)��cDZpCC�cb��~&Z��G��CG`.�bJ��� 2���U�^�Hb9iyd🜨pm��B�c}���h7v�/�@���c:g ��BW*�X�Y���Z�XLЂ����hw=sZ�4г��kGҽ\ �ynt�ʑޙֻa6�������b=őZ2�MOS��D蕘U�O�3�J�13����Ñ��}��LEU��B"L��?g�n�-�����Z:��c�&G�7Xe�Q�/��ӣd���A=k�=xO��dpwdd��2��0�$*UT�:Цt��r!�+,��<��4�����a�RQ̢����"�v�A�{|��m:�r�=v��u��5�8��� R*��+_jXP�R�����@I�wv*�wk�o� �pơ�LO('���I�w����ę7OO���F���WS7N�8�K�ƿLQm8׳!�<��)y�=��L��~�XGi[\/��{9�x�tn�������'�o��8��ݎ�(l�F_2Թ���h��z)ɢɀ�!���$,f"f��i�y���c��U�N�V��:I `��m��s07����ɔ~�R;-�S �>CuGk�\K��p�m��K�y�v��M]:�mW7�YȠ*G�}#�±�l�o2�%D�Z~?s*d��A��Wb}�D���l���[��ίN�w͘s�uB��o-fEc{�x]�S*2yuik�C�%ې6���q>_�6 {��/�Z�q��u�S!��|^�o��XR[8c��z�Ӏj��3��g�"�ZE��]�_O���K�H�ĸ_����{J��)o�����(q,O3"7c�ٺ�}�.��9��-m��yY����Ӱ{81�:�^���|�s�:}633�J<�(����w�U�������Z��x�<v:��`Mh��R�!&��:�x��*wy�*F���P0�ѵlj�cǂ��ش~/c�e�=�RƷc�w*����R�У��;���Q�1G!=+/A-Ҥ�,qh3ɤ�sF�� �Xή�~Z~ ��8�$QvVv��X(Ƌ������o�+]%�2����j�b,kBA%�ll�٩l���'dP�ӻSe�o��JBU@�5�|��䃜Rfx'«��L&���A�y�K9ߏ��U���4S0��ٓI��>�� �V�n�@Ty9�Ae��d%�x/G�v�<��U���yria0�`>1�ޛ�6d`?s��5?��;�s(z�n�!���0n�7�C���gdv��Y�k���ݽ�����.V_�I��5�h�/�A�v �0��A��O��F%k�Ԣ��o?�&_��T:����kK��(����l�F��;���5�Z���kI�vM�!�Q����6�Qp��M��a�ߡ��~g{Ɇ�y��ȭ��݉���|IPr*d6;tO�T\FB� �]wSX��A!�l>+l$�=6�Ԧ��G״εYɭ�: lo4�[�9��l���B\�Q����O�G'���B�Z�D�D�Nօ�j�;�y��u��v��ԭ� B-�$xW�G��K<,��'���+3��b3-��{��ӅìLV�H�%���3:�S~+'B����dt�ۻ��n��'//��e�D-��ָ)�dp g��Ν��Nޑ'�҆}0��^-�n2�@:��(���Ch5Ø �'�z�7�2\����҆��!���tܺ]�Kz��0c���pXy�D«�y��=Oу�o6=P^,2��Eݜʮ��a�%!�"���F$W��q5���H��j��!�X��l����k�^��M�=��@p��l�^Ky�ˌa�@ �-Nt1K��8�J�5ݵA%�;.9su��Qq,�B��6 e�F����K�J�I�ͱ5yp��v8ݐX����`�T������Ů�T�Z�o�p����������̲�D�2����ξ�y�PwF�H�خ<����]�I��=7ؘ�k�>��Q�#z�m��۩u��s.c6RIJi!���EPWD�ꌖS��@�TN�s"��z�a�[�9�I��D�/��_��{��ur�Р��t���]��&2����>10p�V14�VB��y1y�����'g��q���䷟�q��6��Jm��:�0��=�.�K�d��N�&@ ɸ8���б��V�5^Hp6�0 �5��%�w��Z/�KL�ONF&����o�,�]}_� )���cu�g��k$�%�B>�7�d`X�Ʒfv�$��#��d� 6=�@}�G)�#j��~y�"�ʦX�'���\��eҚǵ5��@/����ՈY�� �ms�f�Ξh��l�Fr�s���I�)dv�Uv�h]��8B�c�]�*6�RK&(بl���P.�?�N�P�`3���<�>6�̼���k�f��9��K:L�1� ��}�cɹ]3yO$�\�;'��bgg|���D;���D^d�a�0V&�(���?�I��d��Ƴ��A�^�'9��0B�?�#���J�L��D�#���6���mFSi],���S���>(y����A������dP�YgP�z!��P����*� ��1d2�Zw���1/��~��Y��� �Lp��*�^WH��%��z�O�)�l�tI�v8n5��žk�5(��� #������M慠���8�<*2�0M�ߧ���K4^0Ƽ#2���s?f2jr*bU]�3��B��栆�b2���j�W��[,2H\�}�Ud����~<�,m2P-�9���/���uYT��uu 0��l��w��&��'#�5Dة��2���QY:� i���`���~I�n"��E�l=��唚���j�6��l��cSyb�����]SS��՝��)�.0͒�nxf�e���|Y1�e��>��u4<J�0xO��Y׳����Խ�l��g7�AL�ܹ|��Dٳ�~9h}�0Izg��k���Zsa}�njm��СɠT�i�L�aM���7��.�� ��S+��l�LeF;��d�Ҵ�\dwP]�d�L��5�|M6�87�O�l(�7�X���U�����)m�?���ɠ6ؔ�lf���[D�]K�7��1��p���I�@Jrd�K��'W�`�T����p�j\��L?!a���H��3��]T%�~3,�~Vdp*�h?f��\|2�06�~�14�"v�(����ω`0ژ\�����P6�W�?����ze"�. #���]rM^����B��bu��}�骐����D�)�A )�� N��������a`���z�7�����L�sm��NEI/-v��d�!$!.����_�?R��|���s�d#W1]�2SyJ�N���9�T��챐1cFfO��M�I����QM�G��Θ�9���Xg���:��R1H8�,$#�e��t8�k�73,��t�D�6�6,��N�Gd{ZO�ݭ�v(����TN�F4��iŲ�e2� �փ{%3�B��=��ԉ2~7��u�5j��'��P� t,�}��[�d��_r���.��M()��*�����y'�\ɠG~��8#W��|]�Om�"�s�c���^���3���@�|��M ���O�g?��l2�R�G �v!���hs9[����fK��ıa�0�jc�aIn�v-���c �s��1K������F2�u���%�a��y�˕�x=8��L>8����VC��R���rC���t�[�~�,�q�{[l21Q Y2%Ī�'"KEn�k�`�������?��I����G�ݽ(@<d����^j���^ԙ�5�yv^c����؈%�{�9���)J����@66�Jj�<����MO�Q�'�{�@>s�鷶��H��Ή��M�ZHp9�D�K����j��>=���A�:�3l�AK��uκ�g��̻�����ّSNg�k����h]�P�E�d�&鋁<|�ɠ�(yr���m(���t1\�8*ݹn��g*Y��@�3��R*������/x��?�x��IX:E�'���b�g]\�F��IMB�V�a���P16JM�gs3��o�FWb!Ƈn���u+J�ݟ��wB=�1u��n91�I+1zU<_�V����9�[�%�MČ�O�ߺ�+=�����M�,�1�ƭ�;������y��Z9�a0�"����訤kb �t���D�R�>_g���l����Xρ���F�L@��~��0K����x��h~GE�)g�О����Od�Y��%��0�>X����7b"��Ni XMA_�b*�]nL9�:�I&�2���i�T����A��m:��!6�+�ul%��$mr4,b��Nx��S�����sP6��s'���1�qZF��@��S~�L"D�W�n���������h�����|�g�#ܬV+��hՃ�7��Zo'��*��Na���:�I���hB��[+\�y]�����5���A�S�+�ky=����I6�j1c�rjy��L���`|p�����?�*��6�Od�TRѡ�̳<�\Cl��B/�A|o�$2�M�_��"I,2HbF�������jm}�U(��ڱ_N׃a%�wRm䵝���;A/tM�����N��Q�ĺI��x����#���A�|��'�HzV������R �p��b���0�)�tk���@B!w�d,��r�v����~�Ir��X���Ҕ����w��ȳ�A7��\�d�Y���d5�V���9K���- �M� �m�I�d���� R�z�l]揕�}�B�SB=����6�gf�u� 1�%qS]��nR���U�-��B�>�ֵ���J��e`! ��%:�lfDm��ɭ���*�Y�Nz���7���� ?���~�`��������և*��7R!��Z�v I�,?gPN��Kn���Җ�(����K�V�AW.� }��K����E�[�I6m��ve!x_V_y�I�~��kD�i9@�)�S�8aAE�l�ĝ"�c�S���t��YG��.�?&�u��H#�~�u#�!�|W��sIy�Z�6ל,]��3�R�z"��(�� �⽯^��ᒓ��<2p�{�S��g8]�2����\���" gK���"DЍ�a^�=�Gʡ�V���������'��mG9x�W�&�ⳘF�=�t@2��� d���<��������m����El� ƕ�b��42�JZ��Y�x�2:�J�ߝ^��'���q���^6[ğ]czC������J��M=h�_&嫬����%��Jƺ�gO^Z��<�Kh& >�'��1>�ޯ-6C�<��]��N&#:D˻� �kiu?����)Q�xP�������ҫ.��#�R�cJ`�Q��Q���%�d���i���Aj�(|�n��fS(Wq�1��V�A���$�M��q,�& �H9��GB2���D���KjȨ��nZl�&�?�S��U*&|�0ׂG�k�~����I�LNR2��Zko�xla(�6�]w�8�Fv/^��<E�?<2������.Ō�i���V�'�;�YW�F�=0\�#�f[����X+'���(Y���Ș��AA�u�b����G�Bp<� 0��G�p�)o'�r�F�x_�I�������d�WD�ԇ<�ROs�����m]��J�:�-[�Žlm���M��.�c��ٍAE �<=?+V>���𡥞>M��z}a��^�6��BI�Zl%3�[8Hb����u��\��P����|�u��ՄJ\ج�툥��O֢~d��{��u��#ѣfZ�h�L���M}�f�݃�G�nnR�%ީs��@���E�U֔SwU��ҼL#~DĐ�Sj�D��E�$�ܒ�ݜ�˪�,�u�>^�=���K8s��@Y��b5P��xlR2����a���[���{�V�]�pbʶG��E�g�JX`�{�'�;��������b��bhϨ�f#78(^�F�m��XS�2�f~�~!C�j�C#�w��5���óhzP b�x��DH�*ouk��^Aodd�A�l"��Г��L&.�O^�<����3,%]�_|< �홬�p����S=�&U"�=?� f�ՁY�Ht�ߩse�Y*7 (�j�i�{�:xb�g��)�C�̀эɬ��;��=q����\Mƛ�r�T��küQX A-�c��x��`�X�4�I�g��ҩ#�ʥ8�B��<�D��<Z���yh�&H@�1�<P�z������z]Fy!1�#�k��c����2L��H��u�N��ܣ��"���Êr�0���ج,��S3����K��sK�Q@�s�-mN6��я�XYy�ᰇ9Ȭq0G�D�0`iOL���]��3����e��q��"�w�����4/L,�:�^v��.���Gm288�vl/G�0�@,2��1c�ɀ���{f��ر� C�H�fff���?��}��?��UVt\!�s��9����I�Nᐬ<wu�(�JvFQe�w��+2�v#����ઐ� �)7���聓��л�̵�p�����^��7>�2nt�U9G~�~����h{��;�P=��d��p��E��f�<�{����m2�X����`ݦ';UBJ �k\�Ÿk\UW����l�YJ�ܶ:���״ž��C�T*^V�G !��Y�J�%���B��{-t�p��YvO&{5-)���X,������tp��Jf�1bP�D� C�z�;dm���� ��jw�f�|ZZ<�Y��7��xȦ�{�?���,�ׁk��qj�]���[%����oώAb9M7�pՏy֬���Pk�O��nX9�l�+2�W�I(�+{('A Y�lk�$�!�s@����0�0�V� dK>�HB���������M֝`��6���s2d�hiй�N����\��'�2Z1�d�l�_�F���O�����Y���S��Fod�:�"��p)!���y�hPr�e��>5��c��aֻ43��{�a�'b}���J�zc���?� uv��cE��(-=(���� ���S(g�$�KL\���Ϻ�����lAN����?r��5��j�M�~%���t�J�ð��t��[~�e���|y9]c܀.�÷&n�r�엓�a۹�gI"��8�mܶağ���O��v"��%|�әm�^���F[c3�Fݘ����Sd��g���b�ci�+}��1��Eg�$.���:��Ԛ� �z^<�;����髡�[���W Ŕ�7���b�?k�2��)#� at=q�5t����\tV\B��"�J����w:I�n��c���C�/�+��V&��v���Le�W��5p𮔄"��4|�Y9����k��j2h�V2��0��A���7��x%s���l�>��Lo~� ����bE|�$�ň��Oǒ�ޠ�c���z��w����Q���m�����SC��}���\���$)�hj,��"Pc�`z`-]��4�� e]�~}��yޅ<�2��ī��D~?�8����?� 4=>Z<oN�~��<=x���R�b����Z�y<>a��A4��%S$l,�@w'陭��%��団�f�t#%�x�iu>�%���E��'qq\RI�H/��H�]��L������M��G˥Ӵ����.��κ��r*�t�n������bUF>��<��9�n1 �w��ӈ�H��=�dx�ʆ�fNz��XN��S5f �2l*N��8/>����u=��ۗ)����ݵ=�ݸͰU���(#:b>�h�ܘ���o��19 ��+��֞+�Z6M9Ԥ�(��V�8��1�r�* �)@�9�뉂*�ʄ��_�\���W8�b���K�+�l8<(��3n`��po�ɀw`.5x~�X�#��9Yb;P�xu8�yʿH�F��{KF; �n�a,�����DƳ'P�M�������\/�|�v��_�� D/������^d���O9-��y��.���P�G��t�=q�ԌDZG���@�'��9����e4�� ��U�@�����d��Q�*�<Y��IEND�B`�assets/uikit-themes/master-pinewood-lake/images/divider-small.svg000064400000005747151666572410021261 0ustar00<svg width="120" height="3" viewBox="0 0 120 3" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M83.5 3h-.7s.7-1 .7 0zm6.3 0h0zm-2.4 0h2v-.2h-.2l-.1-.1c-1 .1-1 .3-1.7.3zm-65-.5l-.2.5h12.3v-.1h-.4a.6.6 0 0 1-.3-.4.6.6 0 0 1-.3.1 1 1 0 0 0-.6-.2c-1-.2-2 0-2.8-.3-.2 0-.2.2-.2.4a10.1 10.1 0 0 0-2.8-1v.3c-.3 0-.3-.3-.2-.4h-.4c.2 0 .3.2.4.4-.3.3-.7.3-1 0a.3.3 0 0 0 0 .1l.1.1v.2l-.2.2c-.2 0-.2-.2-.4-.3 0-.2.1-.3.5-.3-.2-.2 0-.3 0-.5a8.6 8.6 0 0 0-2 0c.4.1-.3.8-.1 0a7 7 0 0 0-1 .3l-.1.2c.1.1.3.3.2.6a.3.3 0 0 1 0 .2s-.2-.1-.2 0a.5.5 0 0 1-.2.1l-.1-.2zM118.5.2h-.5a3 3 0 0 1-1 1.6V2h-1v.3h.1v.2c-.4.2-.6.5-.9.5h4.8V1.1l-.2.3c-.3-.1.2-.7.2-.8V0h-1.5v.2zm-16.6.6c.6.3.3.4.3.7v.2c.3.2.7 0 1 .3l-.1-.2h-.1s-.1-.2.1-.1l.2.1v.3c.1.2.3 0 .2.9H114c.3 0 .5-.4.8-.6C116 2 116 .4 117 .3V0h-3.2v.2c-.2 0-.2-.2-.2-.2h-.3v.3c.3 0 .3.3.6.3 0 .3-.4.4-.6.2V1h-.5V0h-1.3s-.1.1-.4 0h-8.5c-.2 0-.5.6-.7.8zm1.3 1.3zM84.6 3h0zM16.6.3V0h5.3s0 .4.2.6V0h1c-.2 0-.3.5-.4.7-.2 0-.4.3-.6.4H22l-.4.3-.1-.3c-.2 0-.2 0-.1-.1a.4.4 0 0 0-.3 0l.2.4c-.2 0-.2.2-.4.1v.3c-.5.2-1 .2-1.2 1.2H17c.4-.3.4-.2 1-.2l.3-1a1 1 0 0 1-.2 0h.7a.8.8 0 0 0 0-.3l.1.2V1c-.2-1-1.4-.4-2-.3l-.4-.4zM19 1.9zM26.1 0H36v.5V0h2v.2l.2-.2h2.2s0 .2.2.2l.3-.2h6.9c.2 0 .3.4.6.5 0-.3-.3-.5-.4-.5h2.8v.1L51 0h.6l-.1.4h-.2c-.1.5.2 1 .4 1.5 1-.2.8-.9.5-1.9h7.5c-.7 1 .6 0 .1 0h.6c-.2 1 .6 0 0 0h.8l.6.1.1-.1h1s0 .7.3.8c0 .5.2.7 0 1h.4l-.3.3h.8c.7.4 1.8.4 2.3.8.3-.5.8-.5 1.5-.4l-.1-.7c-.2-.1-.3-.3-.1-.2v-.1a1.6 1.6 0 0 1-.5 0H67c-.6.1-1.1-.2-1.7-.4H65.6V.8c.2 0 .3-.2.4-.4.2 0 .3 0 .3-.2L66 0h5.5l-.4.2c-.2.6.3.7.4 1 .2-.4.4-.2 1-.3-.1-.4-.5-.9-.8-.9h3.8l-.6.7s-1-.5-1 .5v.2l1.2.2c.4.7 1.3 0 1.9.2l-.6 1h-.2V3H42.3c-.1-.2-.4-.3-.7-.4.4 0 .5-.6.4-.6h-.4l-.7-.3v.9s0-.2-.2-.2H39V2H38v.5h-2.8V2H35l-.4-.6c-.4.2-.5.5-.5.8 0-.2-.2-.3-.4-.4l-.4-.3c0 .2-.1.3-.3.4l-.1.1c-.5-.2-1.3 0-1.6-.4-.5-.1-1.6-.1-2.2-.6-.7.5-1.4-.4-2.2.1 0-.1 0-.3.1-.2 0-.2-.6 0-.7-.3H26l.1-.6zm35.3 2.8V3l1.3-.3c-.1 0-2.1-1-1.3.2zm-6-1.4L56.7 3l2-.9-3.1-.7zM15 1.5h-.2c0-.4 0-.6.5-.6v.2a2.3 2.3 0 0 1 .7-.5c-.8-.4-2 .2-2.9-.1l.4-.5h-1c.1 1-.9 1-.7 0H8.4h.2c0 .4-.4 0-.4 0h-5l-.1.3c.4.2 1.2 0 1.1.7l.4-.1c0-.2.2-.2.4-.2h.3c.4 0 1 0 1.2.4.3-.3.1 0 0 0l.1.5a.7.7 0 0 0-.2 0c-.3 0-.3-.4-.6-.5a1 1 0 0 0-.2 0 .4.4 0 0 0-.1.3c-.8 0-.8.1-1.5-.3h.2C3.7.8 3.4.6 2.8.7c0-.2-.1-.2 0-.4l.1-.1-.1-.3h-.4l-.2.3H2v.1l.1.1C2 1 1.9.6 1.9.4 1.5.5.9 1 .7 0H0v.6h.2L0 .9V3h15c-.2-1-.2-1 0-1.5zm86-.5v.2l.4-.2h-.4zM79 2a.1.1 0 0 0 0 .1 7.3 7.3 0 0 1-.3.7l-.6-.1V3h4.7v-.4a.4.4 0 0 1-.5 0c0-.3.2-.4.6-.4v.2c.1-.2.4-.3.7-.3-.2 0-.4-.1 0-.4a.5.5 0 0 1 .1.2v-.1-.1a5.8 5.8 0 0 0-.4 0c-.1 0-.2.1-.2.3-.1 0-.1-.2 0-.4l-.5-.2c-.4-.5-.4-1.4 0-1.4h-3.4c.2 1 .2 1.4-.1 2zM20.5 3h1.2v-.7h-.1l.2-.1.5-.4c-.7.2-1.3.2-1.8 1.2zM95 1.3c.6 0 .8 0 1.2.2a1 1 0 0 1-.1.6 1.2 1.2 0 0 1 .4.3l-.5-.1a.9.9 0 0 0 0 .3c-.5-.1-.7-.2-1.1-.1a3.6 3.6 0 0 0-.8-.9l-.7.1c.1.3-.3.6-.2 0l-3 .8c.2.2-.8.3-.1.4V3h13.1c-.2 0-.5-.2-.6-.5-.3-.2-.4-.4-.4-.7V2c-.3 0-.4.2-.7.1-.2-.7 0-.6 0-1.1-.2.1-.4.5-.5.7-.4 0-.2-.4-.1-.6-.3-.1-.3.1-.4.3 0-.3.4-.8.8-1.2V0h-.5v.2l-.3-.2h-6l.4.8.1.5z" /> </svg> assets/uikit-themes/master-pinewood-lake/images/section-overlap-image.svg000064400000033142151666572410022705 0ustar00<svg width="1086" height="44" viewBox="0 0 1086 44" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <clipPath id="mask"> <path d="M1084 14l-.6-1c-2 0-3.3 2-5.6 2-2.7-.1-6 1-8.9 1-5.7.3-11.8.8-17.4 2 .9 1 4.5-.6 5.8-.4-1 .8-2.2.4-3.2.9 2.2.7 8.6.5 10.6-.4 1.9-1 6-.2 8.1-.5l.4.3c2-.5 4 .6 6-.8l-.1 1c-2.2.3-4.5.4-6.9 1.2 1.1.4 2-.3 2.8.4-6 1-12.3-.6-18.3.4-2.1.4-4.9.4-7.2.8-2.1.3-6.4-.7-8.2.7-1.6 1.1-5.3-.2-7.2.7-2.2 1-6.6.4-9 .6-2.4.2-5.7 0-8.2-.2-1.3-.1-5.2-.2-6.2.7-1.7-.1-3.3-.5-4.9 0-.5-.1-1.2-.8-2 0-.8-.6-4.4.2-5.4.2-2.9.3-6.9-.3-9.6.7-2 .8-5.6.3-7.8.2-2.5 0-5.4.7-8 .9-.2 1.6-4.7 2.2-6.1 2.2-2.8-.1-5.6-.5-8.4-.5l.2-.9c-2.6.2-1.5-.2-3-.5-1.3-.3-2.6.7-3.8.3l2-.7c-2.1-1.6-6.7 1.3-8.1 0 6.3-1.8 12.1-2 18.4-2.4 6.5-.5 14-.6 20.1-3v.6c2.5 0 5.3-1.2 6-2.5-1.7-.7-4.9-1-6.1-2.3-2.4.6-2 .2-4 0a62 62 0 0 0-12.4 1.3c1-1 2.4-.8 3.6-1.6-2-.8-5.7.4-7.8.6.6-.6 1.3-.4 1.6-1-1-.3-4.9.7-5.6 1.4l-.5-.7-1.2.7c-1-.7-2.3.4-3.8 0l.9-.4c-.7-.2-2.1.6-2.8.8v-1.4c-1.5-.5-4.1-.4-5.6-.2l-.3-1c-1 1-5-.2-6.6-.2l.5-.4c-4.9-.5-10.8.4-15.6 1.2.8-1.3 2.2-.7 3.3-1.4-.6-.3-1.3.3-1.7-.4l.5-.8c-2 .3-3.7.6-5.3 1.8v-.8c-1.6-.3-1.8-.2-1.9.8-1.3 0-3.3 1-4.2-.4-2.8 1.6-6.3 1-9.4 2 0 .5 6.3-1 7.3-.2a41.3 41.3 0 0 1-11.7 1.8l.9-1.3c-2.6.3-5.7-.5-8 .6-2.1 1-6.7 1-8.8.9.4-.6.5-.9 1.2-1.1-1-.3-2 0-2.7.8l-1.7-.9a28 28 0 0 1-11.3 2.5v-.1l1.6-.6c-1.8 0-3.6.5-5.4.1l1.6-.4c-3.7-.6-8.2.2-11.8.8l.5.4c-3.4 0-6.8-.4-10.2-.3-2.3.2-6-.6-8 .3.6 0-3.3.2-3-.2-1 1.6-6.1 0-7-.4l-.2.2 1 .8c-3.6-.5-6.7.5-10.4.5 0-.3.2-.4.3-.7-2.3.5-4.5 1-7 .4l.3-.7c-1.5 0-2.9 1-4.4.5l1.9-.8c-3.3 0-6.4-.2-9.6.2l.8.7-1.7-.3.4-.6c-.9-.6-2-.2-2.7.4-.6-1-.8-.9-1.5.2l-.7-.5c-.4.3-.7.8-1.3.4l.2-.7c-1.7 1.8-11-2-12 .3-1.9-1.4-6-.8-8.2-.2-1.2.4-1.2.4-2-.2l.8-.2c-1.6-.4-11.4-.6-11.4-.7-1-.4-2-1.2-3.3-1l2 1-.2.2-2.2-.8-.1.2.6.8-1.9-.5-.7.6-1.4-.6v-.7c-.8.7-1.6 1-2.5.4l.8-.4-5.2-.3c-2.1-.2-4.7 1.2-6.7-.1-1.1 1.5-6.5.3-8 .2l-.2.5c-3-1.2-19.2 1.1-20.3-2-1.5 1-4-.4-5.2.4-.6.4-1.7.1-2.2-.3-1.2-.8-5.3-.2-6.6.3-1 1-6.4.3-8.6.1l.2-1-1.4.2 1 .6-2.5.4c.6-1.2.6-1.2 1.5-1-.1-.6-11.8-1.7-12.8-.6a47.8 47.8 0 0 0-15.5-.8c.2.6.3 1 .8 1h-2.2c-.4-.8-1.3-.5-2.2-.9l2-.7c-1.5-1-2.8.8-3.8-.5-.4 1-4.7.5-5.6.5 0-.5 1.1-.6 1.4-.6v-.4c-1 0-2.7-.6-3.6.1a65.1 65.1 0 0 0-.3-.8c-1.3.7-7.4.5-9 .5 1.1-.6 2.3.1 3.6-.5-1-.4-7-1-8.4-.6l1.2.3-1.6.7.5-.9c-1 .3-1.8.6-2.6 1.2 1-.2 3.6-.5 4.2.6-2.7 0-6 .3-8.6-.6l3-.4-.7-.8c-1 1.3-2.8.6-4.2.5 0 1 0 1-.8 1.1v-.5c-2.2 0-5.7-.8-7.6 0l.1.5h-2.1c.3-.2 1.5-.2 1.3-.8-2.6.3-4.6.8-7.2.4.4 0 .7-.2 1-.3-1-1-2.3-.2-3.6-.5l.3-.2c-.6-.1-3.1-1-3.3.4-3-.2-7-1.7-10-.7l.8.3c-1.5.3-1.5-.6-2.7-.8-.8 0-1.4.8-2.2.8-1.9.1-4.8-.5-7-.7l-.1-.8c-1.2 1.3-3-.6-4.6-.5.2.8-.6.2-.7.5l.5.4-.1.2-1-.1c0-.5-2.8 0-3.2-.1l.2-.7-4-1.4c-.2.8-1 .3-1.7.5v.9a61 61 0 0 1-6.9-.7c-2.6-.4-5.7 1.7-8 1l.4-.6c1.3 0 1.3 0 1.6-.6l-1 .2c-.5-.7-5.6-1.4-5.8 0a4 4 0 0 1 3.1.4c-4 0-8.1 0-12.2-.8l.2-.5c-1 .2-1 .2-1.8 0 1.8-.6 3.4 0 5.2-.1-.1-1.2-6.2-.4-7-.2l.7.2c-1.9 1.2-4.8-.2-6.8-.3-2.8-.2-5.6-.5-8.3.3l.2-.9c-2.7.8-5.5.2-8.4.8 0-.3 0-.6.2-1.1l-1.4.9-.5-.6C508.7 4.5 500 4 498 4.6a15 15 0 0 0-8.5 0c-1.7.6-3.4.2-5-.1-1-1.1-2.8 0-3.8 0 .1.2.4.5.8.6-1 .5-3 .5-4.1.7v-.2l1-.4.2-.7h2a8.7 8.7 0 0 0-3.5-.3l1 .4.1.2c-.7.2-4.9.6-4.8-.2l-3.3.8-.1-.3.8-.7c-1.7.1-3.2-.2-5-.4 0-.8-3.7-.1-4.3 0-.7-.6-1.6-.5-2.4-.3l-.3-.5c-2.6.3-8.6-2-10.5.1 7 0 15.4 2 22.4 2.8-.6 1.2-1.4.7-2.2.4 1.2 1.6 1.8.6 3.1.3 1.5-.3 3.2-.1 5-.3 4.2-.4 8 1.7 12 2v-.7c1 0 2.1.4 2.9-1l.2 1.2c2.1.3 7.4-.2 8.7 1l-.8.5v.2h1.3v.1l-1.2.1v.2h1.4l.6-1.2 4.4.2.2.4 1.4.1-1 .4c1.4.5 2.9 1.1 4.3.1l1 .7c1.8-.6 3-.5 4.8-.3 1.5 1.7 8.5 1.4 10.5 1.2 2.2-.2 3.9 1 6.2.6.4 0 3.1.1 3.4.6l-1.8.2.3.4c-2.2-.7-4.9 0-7.2-.4l-.1 1c.8.7 1.6-.7 2.5.1-1.5.6-2.7-.2-4 0-1.4 1.2-5.2 0-6.8-.3 1.7-.5 3.4.2 5.1 0-.1-.4-1.5-.8-2-1-1.4.3-4.2-.5-6-.7-.7 0-5-.8-5.6-.2l.3.4-1.4-.2v-.8c-1.6.7-3-.2-4.8.1l1 .8-1.3.4.2-.8-2 .6c-.4-.6-1-.6-1.6-.1l.2-1-1.5.7.3-.5c-1.8-.9-2.7-1.3-4.6-1.5v.2h.5c-1.6.8-3.5 0-5.1 0V10l1.8-.5-.5-1c-.7 0-2.9-1-3 .2 1.3-.3 1.4-.3 2.1.8h-8.5c-3-.2-4.1 1.4-6.3-.4-.7 1.1-5-.2-6.3-.4-2.2-.2-4.5-.5-6.7-1-3-.6-6.7-.1-9.4-1.4l.9-.6h-4.1l-1.3 1.5-2.1-.3v.2l2.7.7c-1 .3-2.8.6-3.5-.5-2 1.5-4-.8-6-.8l.2-.6c-1.8.5-2.3 1-4.1 1-1.3 0-5.9-1-6.4 0 1.3.5 2.3.2 3.6.7l-1.5-.2v.2l.5.2c-1.8.3-3.3-.7-5.2-.3l-.2-.5c-3.3-.9-5.3-1.4-8.5-1.1-1.7.1-2.8-.4-4 0 .6-.8 1.3-.5 2-.7a21 21 0 0 0-9-.7c1 .7 1.9.3 2.2 1.5-.5 0-.8-.2-1.2-.3 1.1.9 2.2 1 3 .2.5 1.3 6.5 3.1 7.7 2.3 0 1 6.1 1.3 7.2 2-.7.1-3.5-.9-3.8 0l3.7.8c-.5.3-1 .3-1.6 0-.7.8-1 1-1.5.8V11c-3.8-.2-7.5-.4-11.4-1l-.7 1 1.2.6c.9-.6 1.9-.7 2.9-.3l-.6.7 4.7.7v.2h-1.4c1 .6 2.3.7 3.3.4l1 .6c-3.5 0-7 1-10.4.7l-.5 1-.9-.8-.5.6-.4-.7c-2.8.5-5.6 1-8.5 1.2-2 0-4 .4-6 1.2-1.2.4-2.6-.5-3.8.1 0 0-2.2-.3-2.5-.2-1.3.1-3.3-1.2-4.4-.6l.2-1-2 .3c-1.6-1.7-6.5-.9-9-1.6-3.1-1-7-1-10.2-1.2-8.2-.6-16.3-1.4-24.5-1.3-19.1 0-38 1.4-57 3v-.1l1.6-.5c-1.1-.7-2.2.1-3.2 0 1.5-.9 3.5-.6 5.1-.6-2.4-.9-4-1.5-6.6-1.6v.7c-1-.9-2-1-3.1-.5a5 5 0 0 0-3.1.4c1.8.1 1.8.1 3 1.1-2.1-.2-3.9.7-5.7 0-.5-1.3-2.5-.9-3.5-1v-.2l1.3-.2c-.7-1.4-4.8-1.4-6.3-1.1l.6 1c1.5-.4 2.4-.4 2.8-.2l-2.2.8v.3c1.1-.3 2.2-.8 3.3 0v.5h2.8v.3l-5.5.7s-3.2 0-3 .2c-2.2-1.2-8.7 2.6-10.3.8l1-.1c-1.5-.5-3.6.4-5 .6l.5-.5c-.7-.2-1.3.5-1.9-.1l.6-.9c-2 .2-3.5 0-4.5-.5 2.4-1.4 5.4-.4 7.7-1.8l-.8-.2c2.6-.9 5.8-.6 8.2-1.6l-.9-.6v-.2l4.4-.3V9h-1.1l.7-.6-1.9-1 .9-.3V7h-2.4l.6.4c-1.9 1.7-8 1.1-9.7-.5 2.9.2 5.3-.5 8.1-1 .2-.8-.3-.7-.7-.8-.1-.6 1-1 .3-1.9l-2.4-.3c.6-.5 1.2-.8 1.4-1.6-.5 0-2.8.4-3-.5l1.1-.3c-3-.2-6.3.4-9.2-.1-3.5-.7-7 .4-10.4.7-.9 0-7.5 1-8.1.1l.9-.2c-10.7-1.6-22.8 1-33.6 1.3-11.4.4-22.7.5-34.1 2v.3c3-.2 9.6-2.2 12.2-.6-2.3.6-4.5.3-6.7.7 3 1 8.4.2 11.6-.2 5.3-.6 10.7.2 16-.6 2-.3 3.9.6 5.9.3 2.5-.4 5-.1 7.3-.2 4.1 0 8.5-.8 12.6-.1-4.9.6-9.7.6-14.6 1.5 2 .2 4-.2 6 .2-15 2.3-30.7-1.2-45.7.7-6.3.8-12.4.6-18.7 1-2.9.1-5.6 0-8.4.4-2.2.3-4.3 0-6.5 0-2.4 0-5.4 1-7.8.3-3.9 1.4-9.8.7-13.9.8-6.3.1-12.5-.2-18.8 0-8.8.4-17.5 1-26.4.7-8.5-.4-17 .5-25.9 1-12 .5-24.1.3-36 1.4V44h1086V12c-1-.1-1 1.3-2 2z" /> </clipPath> <pattern id="image" width="50" height="50" patternUnits="userSpaceOnUse"> <image xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAWGElEQVR42k1azWob6bZdE6n0b9mynY7a15hEN32ufY6u+xQ5ars7UODuKE6sRmkoSBChgwgFLQgYR/OqJ5DBkIFGmmTkqUBTv4CGega9Rt219lei76Aiq/TV97P32muvvStAu11erVb51Vfkv/ITk0lxcjIpIk1zSXLpLRYL7+l4XB40Fp4fx6U0nef0W/w+LgEo9V/9VF9O01zKe+DvmmuONOcn4D3kJpNuMQzDLWDhBZgVwPnAMZpX8yx5aVz8BZqvrnlmHLdaxfkZjgpnmBR1b7H45mFcKds6wajS3fv3zmr1Na/vw+GwigQ+N3BVms1QmM3+LKywyqdNPsiFvy3gLToL72jGDQwPqx0uvvjGi5/hNjeng3MTsz9nhWQJO8zoCJXmcp5L1tOcNj0YoHb4DtUBn7NNbC6gtlpprXnufPxXGTz8aoV8uqaRToNCukxyT2iABfcAGu90Fhf0mabL3PgDyho3z9YbDAY1aMOyCPDNm9X/LPi2UE9WspN2aZHwSbiVArnRaFSZnNwUfy/9Vk3RzJlFOeF02cs930PlKvJLaUJvRNPcEMPqePyhrMNrQRko4pz9fr+uw8tr6XKZe/PmzbY2og1OiIYxvT8eowy8q07lLT17zAMDNEziJfzekDf5zPn5+f5fHGu/rXAv99gk+M9F4xoogIsd4fl3oIV6cJNF6Tp3RK+l2eQ9Xu3a0cETD4fpmhPdzgo3QDHt+bnR61HlK5/djJ0cnBTlnf53/fqAnynnGu7SS98ParN4VogJSR1ABpSXOgPeJwo0rj67LYAevnocl3YG4IGT3MXFRQMICigNq00hAv0C1j4tS0wuOoknHM9uTwsv6erUl/vlPuRujwgtYZ+TwG8+jhGXBp0/an+9RRkxSljd57tnezspF5xintPkOkAfqGuDd/I6GAecww4X8RKURmHeT2GbL49QWfvT3AQojivjsjNCZBC/ugpKd4tLm0Ow7p60doSYpAmbJ52uc9CDwyGtM2jXFCPJouGlzWlu2nPQ2v19WB3+xmCqzwpR6jawSODh002xsfjs6fs60qF7uQhNLtTyRkFQGQEVaLzv577CQWMBeCsgPxy+qw64wTENNiF07wSVFy/2hAptVHPqcIJy+Gu4NQg6Na3V85FrDRbeWofg3Bqrg8qjeMZ/Il7CaW/ODdGVi9alt7oPbfEuajuYnBVTLHOL1sJrcVx8hALGL81qgszDA2EULW3xtu8/Ru2mmK7nuWIHNdBIyxSOnZDkupMbbnbgrWISRXdvJ+QzfcJogEEtSiNC2M/pO3g9AHlgXB7uDqtpMs2FPJj2qWvNsU15E18dA+ofn+ywJmyG7/hAr5mLCRdZQyxSm6Ao2kwjP5cmawvwSy4qK8qaoBfWxkL0WpvsIUsh8eL+bUGGENxS+IypSHAzqIxQrkx7S67zpTQHCeBVv16riWan9ruCOxZV8+CJvB0hp3gRPYOkgDC0NCFKHj8SDMmQIN5rvDmbBQUXYCDewqKYw9+wxsPXvA9k/P5gFtBB09S33xUHF/+4aAj7seWansHNFh0dGcQuwAAly6RTeR2FHqk0Ugwm8iqIABc/Pf4+YrykWZwB4dbbp+PyanSf/8KDy7O6wP090NA+Hpe0b/MI/+AGeUolo9lRYTxul09obUHlkphEz2H2snHp9ZprLuD4XGylZDfBTVFz6PnNfLKsxhC7JX0q3hQfGP5WFYlsjKQNv8TTsuLims/10mZO0FO82EGOXlf+IAJ+OkW9RgPjrLsDwlMkgezgM1wXgGxCEEKaLOQE83mSW3PCSTIp7jN73l3CEx6VFxKxWf2n+iJZeFNaM2IyNe/w/vFIGfubcbx5MuD3bx1PFCtc79OC8C4agQ7d47OkauiAuq/gPuY83EOH+QJxUPL5t+4DvsWHEAF+zklGoHLQ72nTjdFBuOmlYROC2PWMEIsLCYN7hFFl3H5bviT1mYUzi4fN7S2zZgJ6sF8IJBUg6RDsgs+GYXFLcPuU0KpwcLsTm+19rFzBL+meFEOV9x1T3XkhEfCAh3xvvbbkqSwuVRBH8qhjS+U1xaW82D96VX8CHIqEHpzCWOd6GgRLduZWbWCXlorjqLS6D/JpT1DSb/BkvUB0Ok8MbhttJLx/PdZ3ksWzq5I8JCMpO0v+AJQYUZITSSS89FyTl0EkO5DuybtGp43P3innVazK8oLrC1L0aLRX0TgXFx3vHff5pcrxkTJjnQuRNero120SC/qpWWE/1Gkd/D7TK58mSVELyzNKdIPLQc2CFlEOT/yt41FQWdCDtvmruLRFCTKVhKCHZNG2YCfDZQfURrSpGWIzZIHjOT/p97pgcxzwgNMs8RGOGcHosr/fct464xpy0Sq8z2MBg89ymsmVhJB4XC3pnuhV3gnA71TBH8lECl7lHC22/Yu/NWTivGG+sWdTmCqQ56R+lWtk/W733zuvj59XBKXIFG9cCgJvV4YJOWcmKu3ZR9ygjNUiBKP51MXxRkqVRxUxqYjm/GnbPIZbus9wDHoiBQUgZTF+rGoRh01Hoyarg9uCGOuy07FE5z92Y4zHU6dG3zGf1K/rhRYNE2PjXReQSr7KBzEJAoRvzIDuAjurBzhK5xjRqjypXPaF47e5WSVFwbedb+930d3RHFjzUAxGkyr8G53OwSPbTC8iS6Ho6BOWU5x1Zdl27S2chTRW2T25mRSVRGWVdKk88Z/GlSwb/rqlTUAGGf5Ybc6VBFveinosJrQGC5hmkvhzeQJ5QWT8COXWHdeWYWVQXtqDLkl2ZXvB2MVHveA+r80JgjIko1N/bRMqsFoMIJdVUQmBLTtYHBTiZyhpgcfc7Ac8Kicp5CmXU6Z+TvTaoV5rS1Ynfk51Cw5RXdy5w8vanc5nUwMiDLGRDLYH0innGYWjipgupjc2BKKUsM5Epn7TeEl51UITnBTlZRV9l0ANUFa++EcDaJfx/lnJpyU3WVWwQLe7I8+MnqNyIqEor8yJ90mteANHr7Oj68LLRy/LITMy1r3cMmMZ5YiN5AdZTGso6d3TO/dkuCjpWaKUsRwEnRRZzt36VqeA8dGcm/icseAa/jisWmaPHKTnGb1DD3xlHph0w6K0lGGOBY+sVpcF+kHhrsXNR81cC5o4MtpVsDqpzzyAgTfP6Blw8BgEqH3P8fccm9AQ+pR1dUlt/xJiK4azPppOqz3B9tY0M2LYJGTl9TV4ABQ6nNvqEI3nQcFD7MlwA8brGXawqd6E68NH2P6ZFrJ7CjxndedeXbBPs5o215QSyBJUHIiSwaT6qegT01K3OvS3TJY//WtcnsNt8qdA4s8xkaABkQCyNfGlBBS3TiYHxdHoeUVwcjmmR4hF5gVbRzmGcWuHVUqAafrPXod1iFwscXeB/20osPRdg0WHR6waFdSnrPLawaC2d9LdkdeknMH8E2XUqIqzWzvY6WrxJCLEYgWk1fVKtrt4cig4hRr7wKYHgrzK5mr8uHQmLdVbEoo9UxUmc+I4v0z4fICC4nl2jQJoeB3+17BHr66szsdJ+MvWYtBykjzSg2QRxUlEiLGYUfrXpm6yhVNfjJIY9LRQTPWJLJ5M3S6duq3zuw4Pqdueyw1/8l6329pR7SJvqcBSzOi3ZtN5+4Zs6DyTElKzgp+xF1JJlzh/zN+aNFAYbm9F5uGm8+Sic+clcME26cqFf2dN5zqKwaxVJPmQkGFUa0v4tRSkoKcsuE8LajzYQcBLlNlH3aT//X1e8SBW1MLrTPW+eIG9bpd55N6xzx0ZTpbGZ7aOpNtSGDSPSLNWp8AVY21pMFPKyEkt63lMWfAg0ziLxp3XY3C96gf1ZuokuqwCMoXG1HjQ2H/GDT0tJ3BF0gSuD3ZAjzUAT40HOIltFeVexno6uLwtT1zHKGju7dKTwzAEA3xqqlvqQpQ+1drwJUwV1OYJ/TZPXewp3uIAJTD3zadT03Og9+uKBQXRjJKjfkQanMr1iWF+duvqjBTusKJUQLX4UkVPZYUwr/joUOr//O6Hqkl6zHN3rYY3CBRniSfXC6KpvAlY+0ne+/FHNFXHjz+My2fM2G+odkQkadMVcfKi5ao5rFKcruVJQZIMt/vkUPml/xPqprofWPOKh9fcnNSm8sot64dT8GKAfqK1F0nDAy3Yf4W6ktScNB0wDuSt9stx+fjYJVPBSkZJfOetdz8MqzpUMnWMdMy4uuVzirc49kv967/FaWpa7GRHXpRkgUjm9Lag51TsYemyO+L3pTHX9Bnbg8FO7c2zN9ur1SiPHhIr4pE1EiTWnrI1iX1Q9faojDkZYOwi12KJ3PBwWFUHBGouQPkB/4+ee5agxCZg3Mird3eS//v5+AolRxJLS3bj8aPyhEITatlSZYuV0IPFj5obit2NtFfcTEjtyvCDrN0aBM9237z51/Zr/W44ZLAkQK5M3hZ2Byxvn4M/coC+g5YDYAxWhZMqyHhfHUVZxJKYNg8q2pnjeGMb5gPL3Kwc1bGsE8uSIQek2k0ncdHhQeMgX8bBI8FJxgJhqQ2GfrgVUgnoUGLAE9SKGtM9mxTVtQx4zV0suZbkPJlbgYOsWJp0YQy2zWBUM8C0VWZ1jZGlfdXy9JxcHkfPKBhPtl68ONlTY07z+lkHUWM/d755E8H088Cs/OTJk0NZUxJEhmkt7szitwEZinoPK1c2b1h0nn2i80+JXCdRIskjWPEFyFqXrmEg6xtmN3khMd1EekP+mNZWA690qObBoFYXCZhn/JKg1MdtQYZQIIpiRRZ+ViEumI+mnOcjjioSnavjh/w/q9X/2sPBjjYoQtGBT7nmtwxOvh8x24My5HXF9khItggvvEcp2XR3cGzyX3IGtuFM5Am7dghqrRd4sQeyCViTT9OmE35Awah6j+Vo9N6srYwtvC/JYg5yRwVJC+kwsY3Bi3moSxrGArT6SfETCQNzpwQmyZkJT9Aj2tR1Jt0dk/acumZKELsqVjSPSSKSxmqf6InmDiU2Gctc1GDVnQ72OzNuHDEWeq5D2K6g3B4EtaQhOXPpCbc6sFxqDT7qNHlSjQXV1bUbah8uMsua3ipbYQ29T0VViaPX5UoM103cQEfeWKaw3i/Cg+ItvwsB8oAg1EO4pfrmNHtGnlWPwOZ3NE33T50kAR8U1amWuEl4QAVqC54lS3SsFAYvSZd0vWGpOa3ZslyxkS2DHdQwflsGpQTCSVEKWc+q7JX3oKIKrih7N9ytAqcFZfIddeGvufmJZMpxPn4Wlcwz03lOFaeCfwDUlIQTelUekTGfoLcFbWbTPD7+SKZ6PqrU2XU8x/k+MosuBrCNPnvzfBts5PWmkR3CNrR09YCsaWOheqXnmgTNtRGD+ltHjIOmEtd7Kt2mw7cOUgi+q0vSC1LLtXKK4Eld9ZUM+Pa8bFIfvpvb1UKGEs2xJuSaGxLA8euKLK7TfuXkAMzyZ2c3rn/EGBmFEmX0yJ17Fefep2RlscWYK6A0JkRosFng72JJzKTDjCkt1PRz8XFTHJlRKBQFb15qMalTMqsfFQbft2oATJDqUqWpMlr5ZjG484Sgi18uGjxoYZ9khH6GOeuGMFuO2x/KluDgellqToilvjCjXuGx1RxdHkJeuKT812cFL8tzxczbcTlU6co8ENATRZUCqqcr2JsktSJcUBY/CiJqhH/+7ElZgyJQMEGda01dfdSnpx74KW9cXKChZki9PysI7qpOtS7+37tLdLI2vW5EWUdEtfa5uHnQsq67Nm+M1HMV5KCjjvkof0eel0fqFIGiXeWG3Yvdhiq4TcPNApaib24ZH6UPj6gcpAq4jrokaLdrkQqrZAOR9yVwnHKMNt9kDNZYOG0SrjL+SSZC1brCu1JV8+JF/sWeTifspevIlCfkiWBWkIRQhpZXLnZ3G3YYWlObhu8Soxivw4JJY3Ee7LoGAVwiw9JiyBjuJSzTX2C38ZPqFDYsADITr00z2yczqYGu54PgX7uCmc8DKrhPiIIG71vzDoqRpqts6UUlZr4o6uz16TLQA9pgwBwgd6uutjwBU8M2meGVOusbWoyXlqeMb5m7C6pkFDRGveAfxERqbQpKzDNqHw2HP1gJHeNZaQJaeAnTUB3V+ByjylRV6Rk3rPriMajX2Mm/1ttcxcCnWnHQGdQmlDZFHhhUwZ8IM2tPOfmf2Ml8wiH8JdySfhGl9SkWxTqSGpLZMLf3ec9pLMlpF+ioOeg5if2Mqlal6zSLB9h994zpthNvZ/P8pncsxjshcwHYej4qVyRRVHDJmD0yY7RpnvP31SrIa11ld4vlJShTtI+lE4Bq6W9cfMJJVMdLYsgbspweDlZwCvipqxwtexMigqXyi+B2RjU7BKojbki5QTQuY8g7yeeWp6BWgSXvXcFJGiXLGCjpZZPe4s5JNPEtDalnzIC8TNrs56O1O5TmFAz1vDwJ1RcqdjRQBc2mRTPP8sJd1nP6g/D4BYfbqhd0Hz44ed81BPrmKcsBd0ymYpbzc+y/K/1e1XhEzkBJ1gpSsw+J6zRKKC7gCEVFm9qoIogPFaKg/6qOrH6PWRlqjGg/pgeWKsFp4KAZ7K5GHCN20R+qf10G/+ZFchvhAd5TR/BPQSpBTsXVhqpV2rYJOTXkThlwguQrXuDzKkdlqanv4Aa+rovZ5mlmyROs5aUCNjnCvDt3hKDn3layEiAz5ksyXdDu1KK5o+ZNIab+QUAav9j9vgFxvxYTr7sXoK7Vor/1PwsUNyY9sHZNA7pW9PfAZLbE0u6dUL5b192qOTCZORnhywM/o/qSazTArJ7JGHUv1bCbwpW0j7+wE8NuvmJycekaEDpIMyvStDcHe1clnpO+1WbSXjVOCRXSSnP0rFshWMl953zFtvgGT1Y2GOk9H9kpwUFRm3DvAVU7l6poV8qn+LMQBvf5gId3FV1QGZ+D1P20DLFO6tQtuNZVtklBRHATIm4hjx7VJZG+anMxTGT+wV4y2BN+Dl6CMALO1bNnkrXRu5UZSz9Tv9G0ST0lbCfGMklWRwCgB1yWl5hUDG2qQmFdG9oPkAf7smDykmzYJM+m70riUyrfZeTgaHDJJM45627B7QO9hZB9Ze/fOyq5/y6imkYQhgY9f8v1dT+BlQcbqa940yeUCwIGsuqEnuoRXVkDGUv36jj8tbn1mmJy81r6f9rtAwTsOPJzo4KhBkD2NilUnxcuHvQ6YXZ9Wtjj8/+99/w7GUY9LMGux+y+O/zZ8pXmXny+87TJKIJB/SM+WkcGUh1Ei1q0Za5fYZL+gbGkt7kqN2RU/MVJJAMgSYHExJlOq4PUPp0VJR2qpFEF2QanU2vr0LLrtRrQJseTdWKNh+ssU59zsZ9/Q1VqWZsUJKW/RrRwn6yk1qrdP6gVN17aSBqwffuvN9jWmmrO9cVeQg69dPU4sviFeczRvspdCD7dA+yArxaW6dysqZcwZ3x390iaaKNge0kO1aBkUgR/S+qdwY71roZs/YyUH5JuUYFuMdDkoZWnju8Z2Dx06qBpb6x+LzHTO2EKjvXhDGLfp3PmtY+VJIG9LNVb4pEM2cvSgl2JdTJl+Acg/3/NbWQ59FgbawAAAABJRU5ErkJggg==" width="50" height="50" x="0" y="0" /> </pattern> </defs> <rect width="1086" height="44" fill="#000" clip-path="url(#mask)" /> <rect width="1086" height="44" fill="url(#image)" clip-path="url(#mask)" /> </svg> assets/uikit-themes/master-pinewood-lake/images/list-bullet.svg000064400000004416151666572410020755 0ustar00<svg width="11" height="11" viewBox="0 0 11 11" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M8.165 5.489c-.054-.001-.046.012-.057.019a.238.238 0 0 1 .057-.019zm2.167-.01c-.181-.133-.546 0-.542-.055a2.966 2.966 0 0 0-.259.002c-.025.163-.062.32-.105.477.194.061.359.121.178.133l-.035-.02a1.037 1.037 0 0 0-.179 0c-.01.036-.021.071-.033.107.133.109.433.263.088.282l.177.026c.009.219-.291.35-.533.45-.028.015-.056.026-.083.039a4.506 4.506 0 0 1-1.108 1.302c-.131.26-.342.474-.637.541-.153.428-.352 1.011-.752 1.223-.192.119-.408.201-.637.178a1.293 1.293 0 0 1-.693-.439c-.212-.326-.406-.147-.665.015-.246.16-.57.369-.69-.056-.264-.322-.64-.197-1.037-.229a2.75 2.75 0 0 1-.609-.053.72.72 0 0 1-.428-.357c-.367-.127-.508-.504-.621-.845-.147-.325-.159-.681-.464-.907l.13-.061C.286 6.567.014 5.597.206 4.795A.94.94 0 0 1 0 4.229c.019-.185.079-.367.143-.545.104-.374.321-.667.248-1.159l.06.037c.008-.368.444-.418.527-.768.002.042.038.06.09.107-.013-.38.117-.671.291-.917.173-.25.388-.459.663-.572.27-.119.542-.238.839-.28l.898-.101C4.299.1 4.801-.062 5.32.027c.255.035.517.045.75.166.134.07.259.158.377.259.123.038.252.066.37.115l.115-.113c.114.158.321.177.534.091a.34.34 0 0 0-.033.063c.554.001.355.954 1.088.64.318.246.588.545.911.814.287.292.503.663.604 1.056.232-.074.219 0 .374.005-.302.211.095.281-.24.45.456.087.399.381.51.598-.01.023-.09-.02-.224.053-.204.152.317-.031.223.101l-.17.009c-.303.193.36.247.159.447-.188-.036-.192.038-.369.034.021-.25.114-.527.039-.775-.076-.246-.253-.474-.638-.577.137-.043.239-.086.283-.133-.452-.342-.749-.724-1.097-1.022.449.699.717 1.525.717 2.416 0 .184-.032.357-.054.535.147.007.297.016.461.021.388-.016.419.165.322.199zm-2.167.01c.088-.023.23-.034.363-.05a3.503 3.503 0 0 0-2.697-4.137l-.005.005.002-.005a3.473 3.473 0 0 0-.726-.078c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.381 0 .741-.076 1.085-.189a.473.473 0 0 0-.001-.155c.059.064.091.08.133.113.169-.062.327-.142.482-.229.014-.06.06-.079.128-.069.051-.031.104-.057.154-.091-.149-.31.288-.078.034-.449.091-.087.405-.083.476-.243.042.028.1.056.149.084l.017-.02c-.271-.237.252-.087-.184-.333.759.265-.36-.284.278-.099-.021 0 .025.021.068.043.005-.029.057-.065.175-.078a3.17 3.17 0 0 0 .112-.207c.062-.19.126-.395-.022-.592.592.102-.422-.106-.076-.081l.168.004c.056-.025.272-.075-.08-.142l-.033-.002z" /> </svg> assets/uikit-themes/master-pinewood-lake/images/button-border-image.svg000064400000014121151666572410022355 0ustar00<svg width="120" height="50" viewBox="0 0 120 50" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M119.99,49.3v-.9l-.4-.3c-.1.2-.2.5-.1.9-.2-.1-.4-.3-.4,0-.5-.2,0-.9.5-1l-.2-.3c.2-.3.2-.5,0-.7v-1l.6.3v-6.5c-1,1-1.99,1.8-2.99,2.6v-.6c1-.3,1.39-1,1.49-1.7.7,0,.5-.4,1.5-.7v-6.4h-.1v-3.99c.06-.04.1-.08.1-.11v-3.1s-.3,0-.3.2c-.1,0-1.4-.3-1.69-.2,0-.3,1.99-.1,1.99-.2v-3.2l-1.5.2,1.5-.4v-6.2c0,.1,0,.4-.3.3,0-.2.3-.4.3-.4v-1.3s-.2-.6,0-.6v-.5s-.4.1-.8,0c.1-.4-.2-.5.8-.7v-3c-1,.2-1.7-.4-1.7-1.1.4.3,1,.4,1.2.8l.5-.4v-4.1l-.5.1c-.4-.3-.1-.9.3-1,0-.2.2-.2.2-.2V.9l-.2.3c-.3-.1.2-.7.2-.8v-.4h-1.99v.1h-.5c-.2.7-.5,1.2-1,1.6v.3h-.5l-.1.2-.2.2c-.3.2-.6.6-1,.6h-1.29c.3,0,.7-.5,1-.7,1.29-.5,1.59-2.2,2.59-2.2v-.1h-3.7v.2c-.2,0-.2-.2-.2-.2h-.3v.2c.3,0,.3.2.6.3,0,.2-.4.4-.6.3v.2h-.5V0h-1.4s-.1.1-.39,0h-8.49c-.2,0-.4.5-.7.7.6.3.3.3.3.6v.2c.4.2.7,0,1,.3v-.2h-.2s-.1-.2.1-.1l.3.1-.2.3c.2.3.39.1.29,1.1h-.29c-.2,0-.5-.3-.6-.6l-.4-.8v.2c-.3,0-.4.2-.7.1-.2-.7.3-.6.3-1.1l-.3.2c-.2,0-.3.4-.5.6-.4,0-.2-.5-.1-.7-.3,0-.3.2-.4.3,0-.3.4-.7.8-1v-.2h-.5v.2l-.3-.2h-5.99l.4.7c0,.1.2.2.2.5.5,0,.69-.2.99.1.07.19.07.41,0,.6.2,0,.3.2.4.3l-.5-.1c-.01.1-.01.2,0,.3-.49-.2-.59-.2-1.09-.1-.22-.34-.49-.65-.8-.9l-.7.1c.1.3-.3.6-.2,0l-2.99.8c.3.2-.8.3,0,.5v.2h-.7v-.6c-1,.2-1.2.6-1.99.6h-3.8c0-1-.7,0-.8,0v-.5c-.1.1-.3,0-.4,0,0-.4.1-.5.5-.5v.2c.2-.2.4-.3.7-.3-.1,0-.4-.1,0-.4h-.3s-.2.1-.1.3c-.2-.1-.2-.2-.2-.4h-.4c-.4-.6-.3-1.4,0-1.4h-3.2c.2,1,0,1.3-.2,2-.12.21-.26.41-.4.6h-.6s.1.4,0,.4h-1.89l.1-.3h.19c.1-.4.4-.8.6-1.1-.6-.2-1.29.5-1.69-.2l-1-.2v-.2c0-.9.81-.42.9-.4l.3-.6h-3.8c.3,0,.7.4.79.8-.59,0-.79-.1-.99.3-.1-.4-.6-.4-.4-1l.4-.1h-5.5l.2.2c0,.1-.1.2-.3.2,0,.2-.2.3-.4.3v.1h-.3c.6.3,1.1.6,1.7.6l.5-.1.1.1c-.2-.1,0,0,0,.2.2.2.3.5.2.7-.6,0-1.2-.1-1.5.4-.5-.5-1.59-.4-2.29-.8h-.8c.1-.2.2-.2.4-.2-.2-.1-.3,0-.4,0V.7c-.3-.1-.4-.7-.4-.7h-1v.1l-.6-.1h-.89c.6,0-.2,1,0,0h-.6c.5,0-.8,1,0,0h-7.59c.3,1,.5,1.6-.5,1.7-.2-.3-.5-1-.4-1.4h.2v-.3h-.5v.1c-.1,0-.1-.1,0-.1h-2.79s.3.2.3.5c-.3,0-.4-.5-.6-.5h-6.89l-.3.1-.3-.1h-2.2l-.1.2-.19-.2h-1.4v.3l-.5-.3h-9.79l.29.3v.1c.1.2.5,0,.7.3q-.2,0-.2.2c.7-.6,1.4.4,2.1,0,.6.4,1.79.4,2.29.4.3.4,1,.3,1.5.5v-.2c0-.06.04-.1.1-.1.05,0,.1.04.1.1,0,0,.2,0,.2-.3.3,0,.4.2.4.3.2,0,.3.2.3.4h.1c0-.3.19-.7.49-.8l.4.5.5.5h2.99v-.2h.4v.2c.73-.03,1.47-.03,2.2,0l.4.2v-.9s.3.3.49.3v.2h.2s0,.5-.39.5c.19,0,.49.2.59.5h-7.79v-.2h-.49c-.14-.13-.21-.31-.2-.5-.12.08-.26.11-.4.1-.18-.13-.39-.2-.6-.2-1-.2-2,0-2.79-.3l-.2.4c-.88-.47-1.82-.81-2.8-1v.3c-.3,0-.3-.3-.2-.4h-.4c.2,0,.3.2.4.4-.3.3-.69.3-.99,0,.02.04.06.08.1.1v.3s-.2,0-.2.2c-.2,0-.2-.3-.4-.3,0-.2.2-.3.5-.3-.2-.2,0-.4,0-.5-.67-.08-1.34-.08-2,0,.4.1-.3.8-.1,0-.34.07-.67.18-1,.3l-.1.2c.2.1.3.3.3.6,0,.08-.04.15-.1.2,0-.1-.2-.1-.2,0h.1c-.08.06-.19.1-.29.1h-.1l-.2.5h-.6v-.8h-.2c0-.2.1-.2.2-.2l.5-.3c-.6.3-1.2.3-1.7,1.3h-.7c.2-1,.7-1,1.2-1.4-.01-.07-.01-.13,0-.2.2,0,.2-.2.4-.1l-.2-.6c.11-.01.22.03.3.1v.1l.2.3.4-.2v-.1c.3,0,.5-.2.79-.3l.2-.6h-.89v.6c-.3-.2-.2-.6-.2-.6h-5.3v.2l.4.4c.6,0,1.79-.6,1.99.4h.5v.5s-.3,0-.3-.2l-.2.4h-.1c-.23-.05-.47-.11-.69-.2.06.04.13.07.2.1-.09.34-.19.67-.3,1q-.6,0-1,.2v.2h-2.2l.1-1.6h-.19c0-.4.09-.7.49-.6l.8-.4c-1-.4-1.99.3-2.99,0,.1-.1.3-.4.5-.4h-1.2c.2,1-.7,1-.6,0h-3.2c0,.4-.4,0-.4,0H2.81v.2h-.2c.49.1,1.29,0,1.19.6l.4-.1c0-.2.2-.2.4-.2h.3c.5,0,1,0,1.2.4.4-.3.2-.1,0,0l.1.5c-.07-.01-.14-.01-.2,0-.3,0-.3-.4-.6-.5-.07-.01-.13-.01-.2,0-.07.08-.11.19-.1.3-.8,0-.8.1-1.5-.4h.2c-.5,0-.7-.3-1.29-.2,0-.2-.2-.2-.1-.4h.1l-.1-.2h-.4l-.2.2c-.07.01-.14.01-.2,0l.1.2c-.1.3-.2,0-.2-.2-.5.2-1,.8-1.2-.2H0v.4h.2L0,.7v3.1h.1v.2l-.1.2v7.3c0-.3.8-.3,1.4,0,.05-.05.12-.09.2-.1v.1l.3.3.1-.5.4.1-.3.5c0,.3.4,0,.3.4-.3.2-.6,0-1-.3-.2.3-.6.4-1,.5v.7c-.2,0-.4-.2-.4-.4v1.2l.2.1c-.1,0-.2.1-.2,0v.4c1-.2,1.8-.3,2,0l.6.3c0-.3.39-.8.39.2v1.2l-.39-.3c-.33.1-.66.17-1,.2l.2.4h-.3l.1.4h-.2c0,.2-.1.2,0,.4-.06.04-.14.04-.2,0v.1h.4c.3-.3.4-.5,1.39-.5v.3c0,.2-.59.4-.99.4-.19.34-.46.62-.8.8h1.79v.5h-.39c-.7.2-1.4.1-2.1-.2H.21v.2h-.1v7.2c.08.05.15.12.2.2v.2h.1c.1.1-.1.3,0,.4l.3.07,100.36,21.74.22.05,4.93,1.07.78.17h5.8v-.1l.1.1h4.3s0-1,.2-1.1l.3,1.1h2.3v-.7ZM119.87,29.03l-.18.37c-.21-.07.02-.24.18-.37ZM117.7,18.6s.99,1.2-.3,1l.3-1ZM62.25,2.3l-1.2.4v-.1c-.99-1.3,1-.3,1.2-.3ZM58.25,1.9l-1.99.9h-.1l-1.1-1.6,3.2.7ZM.32,26s-.01-.06-.01-.1c0,.2,1,0,1.2,0l-.8.5c-.27,0-.38-.08-.39-.4ZM83.23,1.5h-.1c.04.06.08.13.1.2v-.2ZM107,50l.09-1.23c-.1.19-.68.77-.87,1.06l.78.17ZM100.31,49.8c-.2.1.6.2.6.2h5.3c-.07,0-.05-.07.01-.17l-4.93-1.07-.98,1.04ZM101.07,48.71l.22.05.92-.96-1.14.91ZM.71,26.9v.1l.3.4c-.13.04-.26.07-.4.1-.3-.3-.5-.5-.5-.8v5.1c.1.1,0,.2,0,.2v5c.92-.31,1.85-.58,2.8-.8-.3.4-.5.9-1,1.1.6-.2,1.19-.1,1.19,0v.7c0,.3-.79.5-1.69.4l.2.1c0,.3-.3.3-.4.4.3.3.6.7.6,1,.27-.37,1.13-.23,1.27-.28l-.17.18.19.2h-.39v-.2c-.3,0-.6.3-.9.4l-.3.3c-.1-.2.6-.4-.4-.5v.4h.1l.3.2c-.5.4-1,0-1.2-.4H0v3.2c-.01.07-.01.13,0,.2h.2l-.1.3H0v.4c0,.1.3.4.3.7v.3H0v2.7c.5.1,0,.3,0,.4v1.6h2.99l.9-.9c.3,0,.2.2.4.2l-.1.5.1.2h2.69c0-.2-.39-.2-.49-.3.39-.5.79-.6.79-1-.3-.1-.5-.3-.59-.6l.59.1-.1-.2c.18.18.2-.12.49-.04-.05-.04-.09-.12-.09-.26.6-.4.5,1,1.1.5l-.2,1.3v.2l-.1.3h.5c.1,0,.4-.3.8-.3v.3h1.49c-.2,0-.4-.5-.69-.8v.1l-.1-.2c-.6-.7-1.1-1.1-1.6-2.1h.5c.4,0,.8,1,1.3,1.6.19-.3.49-.7.49-1.2l.3.3v-.2c.3,0,.2.3.1.4l.3.3-1,.7.2.2c.3.4.6.9.8.9h.9c.4-.6,2.59-1,2.79,0h.6s.2-.5.6-.4l-.1.4h6.99c-.2,0-.2-.3-.2-.5.3,0,.2.5.2.5h.7l-.1-.3c1-.3,1.8.3,2.49.3h1v-.3l.9.1c.02.07.02.13,0,.2h1.59c-.2,0-.3-.6-.2-.9.3.1.3.5.3.9h.8l.4-1,.4.1v-.1l1.7,1h5.99c.3,0,.6-.4,1-.4,0-.3,0-.7.3-1.1.69.3,1.19,1.5,1.59,1.5h1v-.5c.4,0,.5.5.4.5h1.1s-.2-1.2.1-1.2c0,.1.39,1.2.19,1.2l2.8-1s0,.1.2,0l-1.3,1h2.69v-.5c.3-.1.7,0,.8.2l-.1.3h.2s.7-1,.7,0h1.69l.12-.94c-.02.31-.03.62-.02.94h9.9s.2-.2,0-.2v-.2h.4l.3.4.2-1.4.3,1.4h.39s0-.5.2-.6c.4,0,.6-.4,1.2-.3-.3.4-.3.9-.3.9h.3l.3-.1s.02.07,0,.1h.4l.2-.3c.2.1.2.3.2.3h2.69l.5-1.2.6,1.2h3.09l.2-.5c.5,0,.6.3,1,.4l-.1.1h.3s.2-.4.5-.3v.3h.39s.2-.5.4-.5c0,0,0-.1.2,0v.5h5l-.2-.3c.3,0,.4.3.5.3h.2c.3,0,.6-.3,1-.4v-.2l.1.2c1.19-.4,2.59-.5,3.6,0,.2-.4.69-.7,1.49-.7.4.1,0,.9.5,1l.6-.1.6.2h1.19v-.3c.3,0,.3.3.3.3h4.4s-.3-1.2,0-1.2l.8.6c.1.2.6.2.6.2l2.59.2.1-.4.86-.69L.91,27c0-.2-.2-.2-.2-.1ZM1.91,47.3c-.2,0-.2.2-.4.1.2,0,.2-.3.4-.3v.2ZM3,46.8s-.08-.03-.13-.03c-.36-.03-.78.07-.86.23v-.2c0-.17.54-.12.86-.03.08,0,.16.01.23.03h-.1ZM1.01,31.5l-.5-.5v.2l-.2-.2h.2l.6-1v-1.2l.4,1.8-.5.9Z" /> </svg> assets/uikit-themes/master-pinewood-lake/images/section-overlap-image-small.svg000064400000015727151666572410024024 0ustar00<svg width="700" height="18" viewBox="0 0 700 18" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <clipPath id="mask"> <path d="M668.8 5.3L669 4l-5.3 1.4c-2.8-1 1.7-1 .8-1.6-5.6.6-2.3 1.7-8.9 2-3.3-.7 1.2-.8 2.8-1.2-6.2.5-15.3 1.2-19.6.5-.1.2-.4.4-.2.4-4 .6-9.5 0-14 .1 0-.5 1.2-.6 2.3-.7-1.6 0-3.8-.5-5.2 0l1.7-1c-3.5-.1-10.2.8-11-.4.5.5.3 1.3-2.7 1.3-1.6-1.8-8.2.7-13-.2.6-.4 4.1-.5 3.1-.6-2.4-.4-4.5.4-6.7 1l.7-.8-11.2 1c-1.7-1.8-10.6.3-9.8-1-4 0 3.3.8-1.7 1-1.4-.8-4.6.3-4.4-.8l.5-.2-3.5.1 2.2-1.1c-3 .2-5.3 1.4-5.4 2.2-2.9-.6-7 0-8.3-1.1l1-.3c-8 .5-13.4-3.1-19.8-1.2-.4-.1-.4-.4.6-.4h-5l1.2-1L522 3l.1-.6c-5.4-.2-14 0-21 .2l1-.2c-7.7.8-7.4-.6-13 0l.5-.2h-5l1.1-.5c-3.7 1.2-10.7-1.7-8.4-.6-2.1.5-5.8 1.2-6.4 1.9-5.5 0-1.4-.7-4.8-1.2-4 0-4.7.9-10 .4v-.6c-2.5.1-4 .5-7.6.6l1-.3c-5.7 1.2-7.1-1.7-11.6.9-2.4-.5-7-.2-6.8-1.3-7.2.7-12.7 1-19.8 1.5-1.2-1.9-1.6.2-5.9-1l.4 1.1C395.6 3.1 384 .6 373 1l-.3-1-2.3 1.1C358.5.6 343.1.2 333.5.2c-3 .6-7.8 1.8-12.8 1.4l.6-.1c-8.7.6-17.8 1-27.2.4.5-.4 0-.6.4-.9-2.2.9-5.3 0-7.2 0l2.3.7c-2.6 1-6.5 0-7.8-.7l-4.3 1c-.2 0-.7-.2-.7-.4l-.8.6-2.2-1.4c-1 .3-6.7.7-8.4 2-.4-.5-4.4-.9-1.3-1.1l-15.5-.4 2.5.5c.3 1-4.4 1.6-6.8 1.2 3.2-.8.3-1.5-1-2.2-2.2.5 1.7.9.6 1.4a29 29 0 0 1-9.6.6l1.6-.4c-3.6.4-5.2-1.4-8.8-1.3-3.1.8-5.5 0-4.8 1.8-4.6.4-1.8-1.2-3.3-1.4-2.1.9-8.6.3-9.4-.5-2.5 2.5-12.3-1-13.3 1.2L192.6 1c-.1.5-.9 1.8-4 2-2.8-.6-2.1-1.6-3-2.2l-2 2.2C167.2.7 145.3 2.2 127.2.3c-8.1.5-18.4 1.5-27.8 1.2l1-.3L91 .6l6.9 1c-2.1.2-3.7.7-5.7.6-10.3-.9-24-2-36.8-.9C47 3.8 49.8-.9 41.9 1c.7-.2 1-.5 1.6-.8C35 1 30.4 1.4 21.9 2.8c1-2.4-5.6 0-4.8-1.2l-.7 1c-2-.6-6.4-.9-5.7-1.6L6.9 2.3l-.3-1H0V18h700V1.3c-9.5.7-20.7 2.8-31.2 4z" /> </clipPath> <pattern id="image" width="50" height="50" patternUnits="userSpaceOnUse"> <image xlink:href="data:image/png;base64,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" width="50" height="50" x="0" y="0" /> </pattern> </defs> <rect width="700" height="18" fill="#000" clip-path="url(#mask)" /> <rect width="700" height="18" fill="url(#image)" clip-path="url(#mask)" /> </svg> assets/uikit-themes/master-pinewood-lake/images/background-texture-small.png000064400000731332151666572410023431 0ustar00�PNG IHDR����6���IDATx�)���x���^����U�� u�E\��߂�8�7��CW�o_��J�,�>�����&i�u+���i��gNI]���� �<��C������q�/����.��շ�6h�l�H���,g�fs�UX`5t�->^�4����nL02Ym��\1+��� ъ��gyZ��j(;�\i�ʧ�~4�ŧ_�U�р�=���ʀ��+e^^���p3�A�J��0�Yϰ@x�i����&4�b���d��c �2�0s�.`�I���"�> Z_����2^��xp]��M@�u��Iy�}T�Y�z�|�4 ��uA�FR���+�y_0��>���� �<����0���Ov"�vs��,��R�#��L�NJ��m^ ��`�V�Xi%I���MLKs*V�\eP<��@�m�ƪ��?�S ��6��rd��AC� h��>h��ui�4(߶چdS�MTLc�=����VV`/�����hTW<�(3ٓ15�a]ޞMG; ͠��ة#%n��!��CnhQ��B=w�{]��0y^3Ш�&��X���4�SS�v7J�W�-]���uܕo �2�����4������Kd���ئAP�)$� e%��#e�ǘ��� �!W˫�6E&T���%:O����]q�})� `�>�bW�ZU��^�X�D�c�ܨܐ)���..m���o�u�n��O҇���C2c���u0x�<A��ݚ'�V��}��<��J]�/��1k <�H�tq�UיU�]��0٬��2��Ȱ�TLȘs�M�ܪ�-�8�?��5ٲ�&�3�I`=gc�H�_�=�>9�%��W��/@ �Y%�����j���%�/ɾ.�1ގ�c��wǗ�`��?�`��Ƿ���q1x�t4���W�J:f���j_�E��*�F���z��6G��n�/�`�P�+�$����/[�� ���'������ޮ��� �W��֤1�}��~O���Ƃ���y�.Y��+�]>�����j�=�ϟ���< �'�P�9^ �}�9e����� �.�y �i�劃�Ⱦ�*vh4"zy%�8L���I#t�ӑ���˩�J^FhǧJ��*��� ��%�*�ML}ML'al�}�=h^��:Mh�z��/�p>Nd�Ϛ�����50�a������它�]��r�~�J�n����i4X�� (��N1���6�FoWY�q�lqH��mzJ�E�p]��Ru�WȤLU�`s�D:�$:�.��F���2�O+��Q1uU��3ڬ00K����ِ��7��%� ��C1x�w�7�`��c�u�:p�F�Y}^1�?�\�O1���)|�u0�r|��"��m�L%� �$}�%�%�2Su7ѰԺ� �KTlVc�N�C�b�XD�� �~��%�uh�i��2����L���u7��=F��!{y����a�m�C��'g�1�}2[�q�Qڗ�zM���Q�>�NϱZ%�a �_����2������W��9o���{���C��!���v� �!��0��m��_[�?�3���_�./�ߎO��˿����T�bayI�Q��\���Tc�.��Ľ���`�`م.�e�5%HP�%l�'u�EB;��'#^�Ťx�K���``��}G�U�8��^�����R<���Ļ�P��n�c�vHK���l�ݎ�����3�ů2�1���`�;"���0��C�e!��1x�8:�Mmw��ߺ���hH��A��!b�>��?��u�1�8��v|�u���.��w�ϻ� ��η K�n��N�Qm��O�>cp���Y�:�ŕ@݀���Ik2�uh|}�ua��,1Y.��9�I�ɡ1�U*�븇`�W���1%ϻP�D����� W�B r32�����ފ^B����c���3�pl�������yr9�U��B(� �#�>.ܻak��8�c#���))�>�Z�!�|��k�7�u�t�v�>�ET*ɚk����1�s̹�f��|���b�4W�.���/�L4���W�f-���?V�j�b��Z�'�"�+0x�� b�t`�ʷ�Ǵ���S,P6�}_t�ա̣�|��{���/~Q�>�P�G�����@p�Z���#z��m�5+,�MxvC5NF�I���k�����V�[�L���n��^,��h9���5�L["x�iہ~�T��l�l�>�4ݦh3�j�E�bl3�]5�0N��6�!�/�a��8��/1��y�aS�b�y���6�`�h��ÀrˠZ�p���zi�t`�T�S�4"�I��kM�f@>�A�↑-���d@�����0cUdO�m�Zq�Ͳ�^�>�dZĂ��7Z�Y���e� ���ݕ�Y��\�߀e�ű#@����Ե^���Z7��&��ٹ1*�Gc��7�Qp��b��:l&�q#�4�a�s�͡�8+�r��uW{�H����:� �}e�^�4��Ƞ)���"�\�z�A�\0 ~��fœ���.��,3�|��ޣ4US<��|4��7��0Px'���#�#y��� �8�h��ࢩ �A��`��02��ct@'�f�5�b�Qzc�>[4��Wd àZ-�.�0����u��m�&��:�j���b���6�%�P58����:;Lr|̋����'1��r���i�c����V)�������!飕�nV�b� l�k˫V�O}So�q�Oq�)�5k흃!��B����9eB*Cf�㛟i+�7lf.�A|�52@�m4�cp�oX7ږh�eѬ 46.����D�US��6��ո�U3,v1`��b@}DK[�m��������P�>��=1����M�K�UE���a��a3.�1��ޟ�Z �g�T��u�4,�|$�>W=�^[��x�-z����S%�2�M�d�q�:�W/�l**]�z����Q�8*N��;�=7\��YH�^Y���;zJ�@�'�A�9�T�bs�7�+3'��{�A*k���eq��l��#��>R�FO�mk�F;S7S1O*�XUp�+���l�{~-H���r�1f�r���b�g_b�]��WIDb����BD�.�o1�\��s|�{��`X�+�1X�����Fa��r_b�5+�Ձ|��t �t�]:��a����b�����fY«����A�|����J�-m{���.a�=:�3@ߌA������"ڇ�[�E���(20]���D*O����5�xm��wT\M'����zw�2��ߌ�z8��5�� �0��= ������4U�t�*��r���se?�O/:��~�x�Zꯊ����-�3-��ک7��>��?}�Hs��|�6�|e��ES��_� ��c�4+"�)�1��_�b�<�)��BFEs�u���f�m��0��b�L5���k1�<�0�<��Ɔ.�����u��`lV��������:8_.�Ƞ���)����t,�zc�zYu8�.2���f@�:��Uէ���E�EUD\%�~���I�� �����zY>�Q����E֧w����=O�{&w���z��>9U8iOn����O��}d��> �B�.��Ӯ����Q�Ӛ�!#���|�e���]�>�-��$�3ͱL�w����:����^����^���2�=�M�&%q���y�^�=�C�~,R>�2��m�G@G2 t��n0�ؑ��+Ƶ\�edp���w0�Z��N�����Xo(30 D$�.��rA}��ry^~kP0��:`Ni�8n����Q��B:���@:�� :��|�^u`�d�~�`p�˥�x`��62�S����r���j{>Be0��9��U�c�~�D��V�E�- p�_�Ib@Gt��lϗ�l��ܓH�"�om�L���ݡ��hĀ3��r�X��##�SO{�|�i�7B���Q BJ�&�<F�Q��ĥX�:�vܬVx�cqa��-*J�y�u)֚'�F����|\_;qn���)Ls��F��c��f{mC�a㛩Q.f�Tt-�� 5�ۚ�[2��8���* ���}y� �t-�YU�e��*Ġw1�0���`��Tu�`�~�B��Su���:~����0��c����R�1h��!���-��`#�WBE��������V�12�k3H�4�m�&vZ��:�t ���=�ƶ-�C;���St��ͱ�(�Y��]���X<��C g�)la���t��/��{�) .n>VSx�.8�c1�87�ivr3G����^���ӻ�t��@qrN�Gy�H�r��[�+�����~'�B%1r �R�δ�C�_5�AV���81O�M6�{����9̀����k1����`9Y�0`e9��[DU1>iL� p#~3�t�����`�*�0�������:("���+C� �kB8��m��b[Ue�]:P���-���A��.g�Ic��{�Y�����p"K;+w1�f�,o�T��'k��^�tP�t�y�:�I�q!�t@�$���W�&֤&��8�<���oa������6�rS*L��_�no��G^�B����#����yj�8U`~�qï�o��hވ�y/�͈z��PE�E�"�4�\�4�.e�����kˡ/&Հ�c��Cj�Q����̹??f�G,��Öx0��fk�������ȐD����D�a��w��~� G.�Ȁz���})�T ���\aP5V�X(���u���f��1 ������`��)��v_bЌ�8��52h����d7-o/�/��ce�>s{���:b���;:Ct`���H��=���of'̽����l�z[uڶ�nxw��燓6�jh���"�12�H�����22`��̀���$��[��t���:���t �@m�je�o�����j~����K˓�j��1����d־����Jo<ަ��m��gS����9�W��4�� 6ڧ泻;"?ۀ�`�u�Tt�W��y���S����@#.F����+�n��x����6FZ�~q�m�J��k� �Zx&��'��!��)Ā������1��f�J���e�e�7y�`�"/�j���,/'�V���3��Q�����x�#� �9������S�*k���18�18�1���KԨ��N�`i��X���x�Ob@{�^UUG~��O8o�fR�a�[����6-㫢������2h.VEd@��x�up�As5+e�8���x[�$�U��R=�J�P���Q�z���Ԯ�/��H��[�9��_u0��ߨ��߭� ~�n�gV�|�;d(��`��/�z�3�<>o��巔MܷN��_�V��đ�I�r]�z��9jn�F=!�[�TO�9E������U����e#�b@��0�*2��?&Jw1X./�Z+d����ÀјĽ��H���D{�Ae�;�n�`t�b�"���stP0�!�K>o1�ŀ��t@���.����ൃ�`�Ox���ugv�o?�_�a����R����ˎ� ��ꈁ���x�y�6��t2���gg��*��k��jQ�1�m�1Ё�zJ��[D�A��0�p����H{m�[$��3�u��=^��g2fN��\s3!>��[Wnm�q��q���5��'!]1�>���{v��־*Rߛ��ܸ���Q���ʩt6�sÔ�G L��SZ�"U@�a/C�fJ���"$QS�?�M�z��k�xOP�����4B��� �P�-��>� 93��ճ�PW����0�Q=�Ὕ$g�b��좈QT��-N� �쒝rmV>���UG��Md�tO�A���%ݦh� �}n��a������Ж�H�ݯ�����1:Ѓ���D�Qg�y�U!�ߏ����d�]L�N)��.��o��ҁ<���ز.a@H+2��Ht8b@Gsw�����y�贩c�@�ժ0x} [D�o��#�=آ�Y�fp�4%�1��:���]�(�� �hw��9����}Ox_��|O ����V|���p��h�b6:!@�AH��b��p�T�9.��$����l�S븹�zHVEf/���?k�N��7���պO��u���#���(#��_{�&�M����*yY�^f�(���Q˽�b��ig� h����f�5D�N��c�1t->���ŀ�b@�o3 �T|d��>u"2{v1`�``Ā�o3�1 ��]j�.����1Ъ�Ȁ{=F��KM�%1h1��D��d!�3�AkV��t��n�A��c����Y���V�1:�����xm,���ЩJt��7���}{���� �H>���ctжEԣkS&e��*�"1��a ���R:��~/d�ц1�:�@��m��jw1�h#m[$�Η�����m�RY^�"WF�r�4�t���~������) �w���R�ke��OQ�ݙ�f��o��3dă風V3���r}�[]#�s��͆�RvFY����Ng�o�`,�s��|V�Q��# \v� ����:�����sͯ���ߎ��&P��*ދ$�}�sXo�[��zi)�)�o3�nĠ��v��ee�:gc��}��Q�3`�_��ޱp�xb��O1`@`�`@��1`Q%�Ā����['�o��%�fÂ�#�*�����إ&������� �"�)��ց�++�#K�%���Z�1n3��,�ۇϢ�(���c�'��� ��b`�m)/�7[�|'��e_��920��` ,��]: ���v1�:8Oe�E�P�U�Jb����u���EK�x9��-j38�I��"���b��F�鑇�&ռ��w�IlF�\�(Ǜף �)+� ߵO8rް}�W�.��!T%d��Cs̬C!r�3�3J��{�/�O�O�� 0m���m}���ߞ���L!����/'KK ~��F��'�<��pW%��&@�^O2��3f3�8�Fp0����щ�����Ȁ22���D`� ��9�b�(��8_����t�u�DT7�e@�b0|Yu4���{1�g���A`pk�D]�0`b����9�M�5����P'�������� mPN�->�0(�ŀ�s[K°�BQɘ�u ����w�������3�X�N�{^�,K1@7�YM�p�bPk��#�y�搢-Z�E!\_ߗ�E��F[� ���:������t"��p��EM�� m\s.����K:h�݂{m�"��-�3t��_�Z�E��:@���X���`�l��|�@�U�1PT��ˏ�~B#����^ 5��c�ͣ�^�[�G�=��b�I��+*�Aj_~���$�x�;R�6�с�M�G���O�M|�M����0��Ay,�S�r�3�ڸPo�bzy"o��7�LcfG4���jB�ݳ�� #�$^�qa��b@��2���\#[��a���j6+Ā�Ա�dr���1�}dp�20��m�s�iPf��@�IX��0pb��p��}8?�4��6� >�&xc����t���o�bp?��b@b�!t�0�˽Y�m��`�X��f@�1|HhE:P'ʼ����b��ˏ���1c�Ё��=��2]��D�Wd���Ld�51��:����ܥ�1�7��E��l��2y��DP��E��d��![���"��>���q00�V�it����k���?ɀ2�qh ���&L��Tyԁ��/H���벩&R��&�*� [Ӱ�g�8-�Y�c�X����:W�W��F���� SBP�x�lvJ��|'K5��\�؛s�ڟ���F�}k����CJm�DZ'��B�b�������=�Ou;����̃u%l������k�u]v+7�b@��:��A����ե`�-g8M�ٵϿ�=�3�b���M�buD�b� �$��f 0h�#o�^�|�`�`�\����ۜ,`̊��*�Os��"�I���u`ip tzm$�Hwvw �����:��0:b�-@hpx��=�L��u��u%t�+٢%�v�p�m�l��0��=�xR�=�E$D��.[t�&Ġ�3�uHܛ�m��e��1hlU<�-f�t�E�u@'��ɂ�i>1�"���lmF�>���H�{����pe_�哝�6�tcP�i�|�bL\ �"k�Y���%�H���8o�Go���T�c�6P�4���}_!v�Te <k��Yמ���ql/g2��}F���6hL\/Vl�w0� ��(��O�hx��p�//���`_�����`|�:��hK2L�<VV����Q�����6�u:��岜5WYx�o���د�S �������A��ѫ�ֹ���� �u�;B����p��a���R�;t�qi�I�0P:`�"�V1`݅o�A��)�&x�-D=ʮ�B�` �sA��t`)Ev�=�!�J�` \t�@0�ZĀ�~�Ϣ��%�t���a�S��� �!&�� �~�-��W�x]�E�H-��&ץV��EP�Wj�Ju��5��ũ3����EìW�l�~��/f�-�:�/�[t�l㽈�T�'S,��=e��4I5cb2�q�v%�cY��aR��-�5��qЖ#:���J\`���2O�C��|��^���/ʡ��"_> ��E\�Ky���Wc��%����F���3\Amo��b����u��6t��?������F�F������u%|��p�i3hfU�Te1����j���d��4�y�H`sg��v�.�|[ �q�\d�U�t \�.��l��M�)3(��+2g�2g00mo�>RVe�Nd��ʎ���A���Oa�u����0��Am�%�����送���B����0`�v[��]:�f��v��:�K����@:�L��zEe%V�0�������<�����_��-����>��h�7B[��J�Nhg/�N�t�J��:�zap��sI��b{p&����:X�:�z��U�&2�>V�]:`ݏ�J��<S1��6�aq�-�^�ǎt�-����Um����.�-��}2��^��Z�����~mڃ�]C6.�����T=B��Ο ҋ�r.�|^��e'�� \4��غ��(w�U1F��z{�T����[f�Pϱ0���n����F��!��B������=�Y���>* sAY6��|0��`H^�ƈ�0u�b�����b��"4#�c\.�����=��s<YX�I�b�� `�M�Ā�w�������oS8��w��0��Ȁ�}��Κļ��V1��12�K���`��0ว0�s1`�]K��uύ�Vŋ��:`-q�e�n!^�dM���S�Q�b�Ï'\{d��aUu�D�Ҧzmgw���t�1~��][��M�n�N���L��pv*������,͕��T:�]��7�a˳۲�vs�)0X�եl��Ǩo<f�J�z�>��e�.��Є3�K\��l�:0�-�\&�e��@���b�w{�:���O�Ebp��l�/D�Eb� �k�"�<+$-ozG/��1����2�CT|÷u��q�9����+9B8� Q���mr��OC�3�՛��ݖ�͆c�����'5��L��3�n�< \^�_�D�-��U���svHU�r�(� �B�U��1�YNJ`���,f9S¶ )�^cF�2��H�d�#��#�`�a�B8��w�z��0@p�(�TF ��{�������S}��5B�-��9���h�hM�P`P0���ջ$&:qao7WE�� V+����[W�RGbpaޚ3�����l��էl��_�����\�A� ��uE8���:HlŠ�]�_��rr���.�o���Ȁ��:� v�!X���V�n�7�Qm��A��ú(�9ϟ�Pb�ݟ.N�Ү�����,��!�2W1��~��O�}m�t�" �>|�����_Xa��/'��C_��V�7� ކ�|c�62�����e��_����t,��M�0���V_�9"t�-��v�"=����vu���@�xz�3:8;�)�]�0�:hۢ���:���"���3�� �9�����Tͦ�|n_l��V���&���#'���Q����/=_5i�8��Jm��U��ozNgA�vb����3���'���.�mW���0*{^�r�D��^��Q>ߌc`���f|��M�m��Qh�id�m�_���Q�7��9��:�QI� q�ҳ7���;����ʎ�{�Ȁ�t�6t���F����a����Y���d��*b�'�#�d�W�1k3�H��b��S�#�!Fzb�a���I%��`��A���`y���:�����F����u��mP�\��À�"��<��b��9��s��Y�Z��Mj�0�K���|)p耲�F�]ga�G�`G� u�6uvfe[�t�t�:�����,u$����Ag��Ad 0MN�pQ:x���__�1= sխ ~���d$('�"�<ެl�X���H��m��a��Gx��qM�T�Qm�]�0�t@HD�lQ�k:8���J��3J���+�/؛e� ��L�D�'6~ $�Q��L��i�����Gk��~��3y=/Y{3��{*�r�@P,V�*>�T�uO�s�r�i��� ��Է��\y�d,7���s,p��!�t�ɵ|R�ւ��Do<��'čr���Wr�)7/T��#e�.���/�1�S��� ���v1�`,��k%�#2�(�n��� b�#�c����:F���!��3S5؟�%���a� ��/�l���N¬`��6����O�m6��������V��;�K�w������Y�8��]j;+�F�RH:���u��lUD�V��d�y����b����R9���������'0����H1?: t�3�ɨC���ܿwrz�qN������:���}H^�&om2�`��o�=K!0���<�T/?>�\j�HKh�;��K��N�}8��Ǜ:ω K�I]�m��>,V��G���O�����L�n�!2`�:�-j�6[�����:�H��e��pf�{J�V���>o����C���z��y�╥ �~�z���������p��Ƭ"%n<=U�ZOyS���w�o.H�y�߱����� �{Z�?�"8]c��x�&���8��t��k����E���½˕Os�:FJ]���;�F�z���� �����"��Fh�q�z/�H�\L�qM�f�]H�f�πwO&2�S��q�`fV����'�k^^KL�Ŭ��CZS=�:���G`�=ɓdD'$)��&2���s��F�in>����7��X1د����4X�=��;(���f頲�VTcX5��<���������@:�"8�{&�L��v���R�g@���1%����d�)��l�@�S�"���4���Q�����]x���袙偒�1/S�����-���.[�>��}�tm,/=���6�+�0�"��\ EF���Fv�*�;�"ӂӠ�,[��fmeD�yE[�}:�]:����q.�=N�]^7 _H���b.�Q�\#^ZJOƃiS8���Qڡ�&�=��v�df��{7�D����� �N|� AL��M<vwg����+�N^�~�K��M}A���ީ�s�%�>�u��~�F)�>yOd�1 ���D�(�)j��q�ʓp��g��9纅L��9 o�:�g���0�6�A����0H��X�<�7�qj�"B��Zd�Dc}v�a�10�X�=�|FLN7��m3����ʸyE�_{g��IKl3��^c��@�E�Q��s��!�Äw�f�L2�A�N���{V�t�T���*j�Y�� r�&!0��8|^q�_it��S��m5�up�n÷���y��1`ϸ�x���i3��0Ѓ�����4R���]���>F�0�l��e0��f���ߑ��W��@:��9�`��~d��m�*{��S�+����^�{��1@s�"pν�������( �K:8�?�-��#t�c}Fl��K� 2�oTH�)�fu�����*�/`���׀��{�J�u� S���]�5��3�H��v�=���5�ۜ2� Tn�4Q�I�-!�]ƽ~�蚸��ǬX0�;_(����c+�m=ռ��ct�7����b��D�L`@�� xYd���V/�#j�[�Hg�,k�iP���%�D�A7/�[�L*�G�����2W"�I�w�?2�@ԩ|J� ;��j;�\_0��6��I���@y�b��x0�:'��:����G���F�W�v���0�Ġ����u��ۗ�:m�U%�@i����ގ�釿=ӽR��t0�0��I�F��z�L���:����� ��$�T�:��<F�s_�//�e�|��# I!.t���-'\XyeJ�}ɜ�/�l'��E/��fH����2��A"�a����%����b�K��1��'��E0�Gޭ���1��H�ӶEm赫?����tpk�a �"}��*����i�&c�xB�OE S�i7ґFSjT�`�j��|�Z��{B�UG��4>������"�.=�D)�j��Zr�/ �}�uNy4w�6TL�����,���|��:�,�3v� fi�N��l�����"|hU��u��Z����f�X<������:Y��59���t��.0�Z3���T�� �WêS���bp���0�\��h��gĵ��uX��U�x+b�X0�t bp{�)��G�b��tdp�<H��ԫ�T��ME{����m�82`T�k��b��#-���Pg��t����*���mL:�\ҁ<�� :����n�����~��N�@+��ҜY�u�Qa�u���4��w?ߝF`}ߋt0Hս�逭Y�fW�m��ʼnpU�lYJ|�!��Z!�3-��4��AS�Ǫ#��F�� !)�Y�����1�=K��^`�&���x�!Ѧo]5�m�M�tP��:�L�v �����_�D:�����g�Q�ba��A�ջ�#:�k-[�K:�"Q1ا1hۢc�10�4�h��i�G2���߰�uf{���g�֫�(V\���ݣ�Q�G�q��I�:���d�ĩ�($@5�Ĉ.� �x�qa@` �����! ��^�k�Y���_n�9s?��]�ڵ���ֺ��a�d<�#�|KFK�`���s��'��p�~N��JZ�g��S�=B�@ԫP `̃",6��ۚ:��qR'���!�w��=�6��Y�����]a�c��{b甥������D�=�Tm>�P���`����9�:|K>Sl1 %8��W e�G$9axma�{�V�0�مk,xM�V��ȕ7pO^������Ƹ>�?��Sap�u�φB0�ä�c/�w���x0�~&���lfa����W�:�5�O��1x�s��=BCmXa �=���hO����!��������ӝyuc\ 4�)�����J z,�3��69���|�[/~�����;r���H~�l���\��a����4� r3(ĵgy��v��o0�^��G�X�$!7,��H�$��d(��y��W�Y���G���(I�p��{�B[2�tUc�"Ɂt�Wqx������8T%��E��2Ba<{��nŽ!`�`颳��V�u7���˚�+&T,�&]�'*9NeDS��!J�/��@�2����)E��랁 J��d��UM�IZ44�m�8r�21NsKQ����,@�'sc�$J̊s�;O��l]fg=�b����3*k4"��y|���H������{~V��,��*�s3�Z����Hٙ�K�k�z֜8�����I���=�Q*��w�f��a�Qu�V�Ӛ �/ �������+��G�B�,�]��b� ��^ ��:}[���W���B8���7`'Z�i���ݯ��˙�D�'��� ��p��5��b�q��A�wa�a��D!ܽ{8GϋU�2�D��K<�5k��ً����K�Y4| ��db��d߄0@��s�A n$�!�z�0��ѡyQƖ�.���a /_./��L�7צiO4fn�_ Ȑ0x��&9������f���9��u�9�8#����(3BN�B�%9x��^� p�T6�˟ͣ��E ;n�K��P�,x�Sn�(��F�pY�����MCV�����+GG�������Hh�*�Wfs�"��<��r��rY8t$ -�9�q�%x2��$Z�H�����D�Gv?h��Q�+�D�?U���G����!U!@Yb: ��<�����<�A�j�߯���-Jʞ?J+~���~@%��bN� Es���֊���:�F��c�ߙ��E�*�$�[�E�.k�����b��a)�H���{����(�A�����i�9X��͖����r��!M���ί1@�NCI$�!H:�#��̎��1(��"BQȣlc �� .�)k E�P0@f�Ӟ�@Yi��⾄B���^W!l#k hc��)��~�(@�D3�08��1x�]BT����G���0`��r����g�� ��@��rP�������s1��@���o9p�����" Pr �Xr��rU9n��cc�x�<�����e˵w���^r@�9��%��m9�.��!J�T.z��V�����2T� �Nu&�X�@r�aЖ�0P�q[��'T��鄗/{��$g�����J�3r��-]�&9@��@���n�0�, }�1@��ě3��(��$��<�j�Y�x��K���'E!1a�Q0>��1C P�'6VYc��Qe���V���dYp>+ky�����=�'Z�NݻuZ�J� �Xs��� ��.�h�q��+�"�rN,�d��Lu����E�F��@�Ə�>2.���}m�{k��qm0�Cˉ�O���{�A�_�{�3 ��i�/�o��0P���Gb����}W`�P\���~%Yv57C����x?J�R �(/<08�{?0 �x$������U�@yVkͺ^� �e����1�6o�3��d�a��M0 ������vo�������0�%OR�4�$9�����~�V9�@ `�po4��1� ��hF��`���%0���o�B;r���4|(l��`p^�Hrp�-� �b-���~�sg��nˁf��R P���g�6�_`P�a��m5 ��H�U��K�h��t��˺��\�0�,z�ET����/��|��#j���Gr ]��aV�$4�.j�H=z��,r)�E`@���@�G�HE9��K��?<2���6��elÉxt�`��n֜���P�l3K��N]Y��6���;.Ȕ��A�E�n�5���x�,~�zW�v������k����).���p��b��z�:��n��R &��J�nj�Dڅ�;A#��������$����$R�1�)�NP��>�5ɋ��&e�L��A@# kn��V�e^�z� �o'7�0`���al80�� zu�S�GKrG���0�1�%-e s+���,�� ]�T�%��� �i��%�jc�FSa�}*������A�p�p�Nħ��zM�kc�|��6(0 |�֮���9�$�*��,r1��0�zTMdӤoˁ0�g�rp�1��*���q���+�~������xU b�*�ΚYl��$(`a�^��V����L�K��_o.��4="[v�#+�/��cm(K��j��6�3����Ƕ��Džwz���U�Io�Iq�3�(?x3�B$J"_�8��9��`� �L��ivw9X�5� @��פ��gc +�ȁt�#/�`�XM�x&<!x��֯-` 9h�v��t��e��eXy��Z�?����4�G��\��%j�.Yz, x�j��4�Y��n��H8��թ��0~��U <Q����|�As�*1LJb��հE�!kjf�Ѵu���ւI���OP���g�g71#!���έ|�x)���ˉ���# �(����/zJ0�j�u���3k)6�e>y����u8m���Ua��&ؠ�An"O`��ӄ9�{f,T�v���int�����0@Ȅ֗.!80P(�*��y������������:k�:��?��H��� ��Q��"�lһ����n�Q<��<�K�`it��5Y���ߏ��G���r`�6p�ق0�Y�ϯ�ܑ*����O���\�Vr�g{� ������m��#�p��a��%�[0:��|a��0�rad�ez[�V;��/̸OK�5܍�"7"]���H)G���� � �3�ՖH4���Nr@q�tr���{��z"?9}��IҘ�7a ]$�P�����| �1 T(� �̸�.BxMr�oQ�_`P���P��kHn��G�A[����Xv[��u�� ���P��n�N.�iHfΊ$,��;�V�S��~�J��b�]��.�X����'�=��|��.�2��57��t \��ɳ�P.-�#7y��{�B��Dn�'�۹��6�[ ����߇&�x,�E*�#�����U�`Y�@��|ͮ^��WK��6l���og�mx�v,�n�-��e�LO�g�4�n/��0@��o���C� �d�f�I� ��w��0�HS�E$t �����]H��0��1`�|N�1x����V�ip�2ӱ��Y�q/�R���dJXQ�X{`�yd6w@�S�A�(����5�`�s���U����+وYh�4"���'��K�~�Uf�ct�0�}��Q"C�Fb6��w�1�� �Zp^ Q�-8n*���B��z�9=>g�i>ͽ�����z����xNa����JaЖ��t���/}<p�ŭ�+�˾���q��H���t���� �"��d�D2��g�|r��B�4����B=4���~z8��Ћ���̮���@�B]�V!��.B.���b�]K�[^2?�O�k��"0�.R�*1F]i���E��<@tHqoj7�u�6Xe�pI���AG�pi 4S��U����?6�0�Rב�v\��&��Yu���W�`h#��(]��r�&R�͟1C �����=�~��G#[6߬���5�ʲa���3� ��e� 7P]�M�=�"�r%6qK{�-mRՅ3A ��`��1؏0 'c�j��\�.c0����^��2Ē�D0@� �H֫0����24R�o���w�������9\�8�bPS�0��m��`���`�5��c��ncgN���Y���IO'ql�J>�]��{�ϥ"�$|�-J�_�`eHXg�/Ar z�15~��{!��{��W ��~�:��0���sɃق5V�5���[�o��=��(a�}��yf�(���@�� �js��١[�ެ��F��{� JOG9��˺H7�A^�GG�,��m���a�8p���GH8%o��Jq`��<V=/�m]�� F0c�e�X&��ɕ$k����]?�%`N��@�y<��eq v��A����t����y:l,��/��*��pGNǚ� JL�@a_��j5�0j�\��}�M���8�Fr7�r��UB6-�vx�o�Z1�d^�븻�BqP�=,%��G[�g4�k�-CyL]7��n�)����'���� ` ñqB'@=*'�R�iZ��5�46]%����y)��$Πl-��Y�Ͻ�� �@=�Q��0�`@R z�v���m�� �����Q;[�Dp���Bb֏^Hr���d�a@ ����mZz�i�%�K�fBa@�=l�7�,W���� e�����B�1�y?`��Xm�ˋg�Y��N��>��H��Y��А�V��gxB$`�r0X��8 �j�M�3��rpHN��F�')�� B���ꇰ0���m���s& �����}Y��<��$>X7��톇K��-F���R<xpg�\�*%��(�a�.�� Cy��r�J��e۟ցtt�te*��/Dr�}�_���~�9�1/Y�������{�h����[=[@�?�r���C��^{��a��h0�ܡ0`m����_��%`����ۺ��o� X ��P�T��L�e]�;�%H�����EJ��<�Е0h�"먔��X����V�?s�c��5��ۈ׆��j�OβB��~�D)�C��8���4��7(�.��qc5���~��j�:�g(άJ��;�j���Y�`�t0;-+�r<��#Ã���У]�J��͛�(\�s � �;�>�2�M��dA�$����Y�\p�(ꭋ��5�]x ��必AXVM��lcp�!�i`����@8��A3M: 0@(ࠊ���tEyn�܅�UDeß� 7�d��0�{9M}r�5�[��IC���#�fΘ�0�߄Y�1<�S/ ?�I�->��Fф d$��a�".��Wey a����tj��}o���AV��/����*Xs�N�̄�����:�s��6�9�`_Hr�t���89�1�VC�N}���)�_D�Ԟ(j��cO@7%;��[�Y"��Y�e��������x��'9HZ��y� �������^7pZv��rEH�=����+�6�e¾`p���XCB��E7/Qv{�)҇~(@�x��z%~ a��Łb��/��<�F�*w:�Y��Tr ]$9���Le.9(�����Ɯ0�z��'��m]r9��Z�9�ۖ��ޠC�RFph! AJ��E?��˃08����H�=mUq��y�z�<0Y��x�UU��TV��VI'R����3F�KI�J��]�h 2��n�:# �&�)�'T'd"1y�Htb *��c¸sq�2Rֻ��*ag%���@�`rmJ��O6�(�7�Ҫ�j!�~��g(�D�{T��B�"h�gq�����Yz4Ǣ8Q�S��.���FV'� �Ot�)��AZ�Ɔ���J��Y����#Q��`�B 9_ +DbáT�%w��́AZ�4zY�pZ ��9�-���K)�g��J-�����|C�Q�I̘�eY�m�(�*���$�������AW�.��"B�{�9Ft��(}G\����H*Iar����ճ#9��}��u|r�V�-^�0HηN(m9W��PX%��㸌�8(Ql��'�%1p����?�Mچq�f��$���>��G��s���ZS� hԹVz�w�{7�� =J��t�<������Q�E��.� ����ty9�"�*q��7�j��9&X�mx�I\H����.z4�`Ɗ]\���v���婲o���^������$f�|#�MEY[�NR��)�����vIa�IXW�@�k��1�'t�8�xS�g<Ԃf���i)��4�S��%�Fީ�h�?O� sǹ�Ԋ��F=�R)c��6�~��iǪj�F)�,��4�t�cd����Qݓ��&���!�<gSQ;��oG��,�Չd�V��1�K�"��:�D, ~+���� QĔ���*�R,���9JZ�-J�ǟے0��:"�Z�H� ,a@"S��!P� �����s��kYU倁*��<1��2UR0�}��>t!&zp�-�$�Nu�/B9�<uy��#x���4���'�IJ��`��#S-Y���*<#~'��+*0xT�xy;|�d�0x9�0�"e)�.D��:�s[84x.0;� �w�������N����CXr�e��ȝX��P|Ǖ�wf��'=M$�Q��� 3���2ܓ��Ũ��g�y~a�}���c��`Օ-p�3�0@)��#D��2$Ԓ��Ypg�E��. ~�kE�J2e���Dn�*���.��V=Ռk�q�g���50;~������~����x�s��, ]NI�m#�W�����Yʫ�Dq'��8���Ը�4H�r��J�����g�r�ZQ�n���KI�-���1@t�J�E���\\>�O�aЖS���y�(�J8���n� ��V�'$�Q�V����kE臤iq�E�HZ����I`�c#��.j�=橉�8I�]��A�wSD�n�7f[����?m��*%~t�FGh%��j���]wCy(ѤI�X� r?���_T9h̤*�R@�}�<`0�,���`3��U�w��*�#�y��5 ��Q:�k��ɪ(a�W?Yj��,���3즃A<sP3BY��)%�ޅ0�d��r3�u�җb����,p{y`$!S)�8�-9��J�o�s �g�0���1'�����@chI_ȁ�DZG�7J�T0�4ʙ�%�$�ݷ���0�� Fr@�Ň�o%�7(�L����vQ�ȁc��o�y���;��@弒WTm9� �ޥ�3�p��pUڹ���x^�Yȁ��xfx��g0�`���D���_L�ز&T�!*�9��2H,�n��"�d31�E�m�!��B���9s�C녇��.a 9��Lr �*�f/nσ�x���y>�**<�g=�KrP!L���H��^Q�7�"aP�l}U�H�����;�� �Ӭ8XƗ����Et��Jߎ��"f�j�D��[*,e�k���0N�YYi|����V�8��g�{�<�<bm`I�o�J:ꠊ8�a}?s�5�P��ac�Ї�I���ke�#�I�o���;/l����c�Fׯ˿��vŃ���k�9��`��,��F9��r��À� �5�g���1da����k�6� ��N�n�)�q^��@���-��m��\��� �i���)�na��Ia�z>�\���K�Cx�VUyP����څ�Fҩ,P�Я/`F^��7���E�� %-9� lpq@#�ٸ%� �~\-@�tK+j��Cd[U@�0x�F�� ����}H8霶����E3)�}��p�����GP�9^C�����]�-儷�lА��~ 0�,�Nl�`�f��*�y9@P�`�>ܨ� }��C��Г��Tғ�Wy�5@����c�dD�[y2�7��E�0�W84X��k̵�@4?7�-{����5�ս(l��úq��I{e\k->��k����tѽ:��Ɂ����%]�� +�,8�`���*:ه��^�����-�$�r�5�`���0x����02�.�N-���`�$��:M��Kem�����OM���[�S%���"1CY�\��ퟍ���ʧnJ��RApܚɡэb:�i�gZ��J���M�����fG�~�)���%�v҆��o���'�hf�X�X�����m�!'�U�y3�Rky����9�3����.QRz�`������wE���~a�UI硐a� ̪�0%�2q�qQ�@�jVq%k�0 �(.����J(TD�<�I�PC����� {�� �N��<4�g� ��%��#yXk�U(�= _l�W��%�9r@/@�*�<���CA29.�ėV�J�|�M'��1��\���U�=&��lt�W�/��4���Ў�a��F�`0bLj~���MrX��wa��70�b����%�`���h��Z`0�=~|c k���ʞ�2��6���J��j��PB�*kg�r�Y7G��w2�B�gc5s����)98�{�����F>�~;ơ���0ȽBf?=��:"a�Pp!9Px�I�b��wVqݞ�o�wA�2����D��f���6ȁ0�2H���0��a���n�n�@���n����}���rm9�F��� m9��t��S��O�Y���������|��w�ԭ��J�&8�b�2�>-7h��>�io��a?s�ۏa-e2YյN�Ǭ� ;VnSV]���t��%�y�ҨD���S}?�5�����T愧���=��ߩ�Ь��j �gG �$�C��[�to���>��H㍘86Ȥ�����q\5�QG���ߕLx���-�$�T�d�(����Z��e��3��m�/�wk@����},��M�w��$�{t8Z&����Nv�27^P�n��>�� 8|����~q�ׄ��u���8��Z���ޢ0`�I$.�wo��08��C��Q^�f��j DSі�}BJ�i�a�J�'���B`ଳ�E��W0��5���<�ԭ����r��yP��m-@��l�o�*����r�r:}��U,�"�dE)?�C盏�-�����~��Q<�n�f���� �pdG��rp�\�(��R���k���(o��Ш��̕��kc��Ԕ������E���xS`p�s�R�fw�n����2ijeO�Ƶ^ƀ�|Z��MFo�!��n�j[�}�azs��#]6�"~�S8ұ��Ϟ%䀜�������5�J:yt��`\�L�^a��/ ���Nc�!`p!�,($�MR�,+'�Ē�>0P�����Ϧ���y�tQ���H�[%O�^a��k��B0�x$#.}� 2�4,~hE8�b���Ĺ�[��S~�`HFW��&����!�2 >��(���S�yt��A!QW���WH�q���xmQ9��؉f�5w�Zk���C�ng8�*W,96�(�BިA�È3s�B��^6�0� �����A���\���\O`-Nj���.4�%7G���֕n����x�A���d*�,2K08:^#a@����Ge��1ت*0 �@2X/�_�M)����� Q���GWUyBȈ�SN�0x�3š��ܷ��8�`*VTW0�B|��0@���{Qȗ1`��[��{m9���t}7��A��=�-�u�hHx~U���r�0�h�ô��0��eʉ S��C���Iw�Br(��(Al�Y`�G����x��2�*�zr���������u��ٺe�>r@�e�������n�>�������A�s�k�"��0������!�0��Ƽ��h־��H����1�~@!`@9�;�r��?�*9�.���|I���CںHr0z�0*�Kr���@������~��]=MV�*��K�I� ��.�(�y�<ha��E���|S�Xz��8�����CY����`��j�f�VA��eX �!����R?��0f�L�z!�tJ'_L�z?yBʠ��״���Nvu��Ys�u��b�)���L�1Ң��:L�x� *�0춪��nq�1︶%]�l� +����m�ߋ���j6��æ��b`���Gjȅ��cS�>���ͽ�Av���!t�X�`I?�d>cF��a@�Ǡ���MN٢�w��v^��7q���} �� #�2�#W�����Kc��EEN'�F� I�u�ׇ��0м} Bя0̬A��U0'Y�^�I��'�-9�y�Y`/9`�P�sr||e�V#E������������9,0@�� ��z��_}�V9�3�@�(���F�������3�0�����«�?\M�T�n��P՝�(~���E������l2���5�kFф�k�1�q���0x`6O�J�d�@r�����ٖ�u0�9(�/9��� �9��0�����^o-HIļ��3rslΉ�l�q�q3%�5��Jd_�E�_r0t��gb:���'�!O'�$��=&9h�|��Vt��T[.z��@����}��t�X"��VA�1d:Y�(iM�6ŶF��g}�2��<��j$gX����4�5�W �8f@�=J �2Qo�]Ӷ*S K�� ��d��O��Xn��8i�y�0�%70צS�(ʎ\���b{^du7��{Q��h�E�R��X�}��ut�A@�������Bx�fq͞�0��7�0�Q���Bـ�s/��! 0�D�Ѕ_H�w�zA0`-wJ�\�@ q,4���6<S`P%N*#LcyX�Ź[�'Ka�qxkٙ.�G��s���i ��gpX����`Ue�=f����]�ʐ}�3'�P�5(�]T;6'�ZɁ��7o]앁�!T�|k�,�F��� ���bv�g�[r ��@.q�}Ǟ��A�}�"9�9�6.�*� �?���ε��m�/y�{9�-�3��%/z 7恒�>��Oan��WU�!��{~�(��%ʏ�����vk0r�y�,{g����P� �ϛt�䀜!!�3�L��� �� t�F�PIi�"M�<d�r�6���ܫ�E���.ʹC������E���`00[�`�1�-�.�r+�{��e]��e�9FI�������t���.�=:L�u3�pu�O<���ўws�4�ZU,�;ˑ�S�ݩ�Pvs�C6���!��R9� P���gM~�S�͌Q��¦�{R�;-b��2l���HT |ZWVREC)�H�ᶖ�<���W|X5<�h�,@Sǹ����K�P�q�g�Em�H��S�.�xGiFYi�φ@j؎�;|��hcy[�^�=^f����ncp~�3.8��h1�jJ�0�`p~�a!�>!a�MV�gEL�,�w�z|��0�F�ت��*�N�%'@s���앲A�/����ށ�#�;ɢ���H몤����d�ēg��;�u��a�� �m�<�w.K���ca�Ve }?(��;��`p<���"��a�^G4�}�!c!'�u)�-9 \�~���Q��ɝ�����?{�$/�c@/}��w���ϗ�kEu���?��u$T��������(t3d5ߝ�<_ZĚ=P��b(��@��t��} ~K�� ��[UC�>�r?��i����B�.%K�KxM���]$����G�o��4rp\T�m9@�-98>�J*J���$*������|��"H��to #�����ں��.��.� K�t��y���+x��$�FTE�f���)#�0O��.��Skv�eR�Fi��F���2N���I*U��;��_���1�ҟ�i�58�T����5�X,�K��u� J��p�&\ee�IHҟ�̤I�����C�� ��;ɜKSI�R�l���T�e#2?�y�9e��*!�.\�Հ{~������ �Ws���Z��'������3��s�s\���n]��! �,�O`�p�G��-.�B��^�R {��u`p�-E��*a@�������;$�1Ȑ�_��� �D��M��[u��u�N�B�^0@"�J�ʥR8~�`<���kW��y�����`=H��iү\���iǕ`�"�8�܋0��[a}��l�2�u7����pW�1_{!�Omi�`E�F2�f���X#[�x����A�AM���Pk�Z��;F�9���*�x�vσ0�5��$��q�<�0�n���E(�Ab����,�#�jgH�.Y#�_*O�|=*�R��2�u�Hz�m9�˺����G&�����>��5�~' �`H|��#/rY!߸aA�j�C�Gٵ�rp���$0hJ�*a�s�1h�"��A[���u�t-f�|XR�j.F�1P>�$�a�n$bx���� �s��#b�Z��LQv��J`�C����g��(A{��KqR����:]�gIRY��pu'qx�E�e�XN�j�d9������Muߊ'� �C�*L�� ���\h5/b� �.��W�ʦ ������9�^x�~H@?���ݰ�H:��e�fg�=�Z��q(?9��6Mݷ�� ��'7i�1l�U�� 1�lb�a�ѻT�w�>��p�0�s�}��Jtm8��)�Lg8t(�KxM L�I����T������XƿY�-�&X����B8��I��Fȁ$̬@8��{��/]����h]���}! ��H`��N���w�Dǵ�-?���E��u�;�z�+:�y������>XA8�~Oh�؞���5�!���>������V�Hb����H�ߠ��0 $&�(�y�/%�֢�PI�9F���e���aӻ���x�����l��0Z��;#a��J�S�0��;^�D���@rP�(8�2Sp��r�^��.�d�xʎt�*>C��m]$N0F�O����|,�E:��zLں�Z�E]�Y���AS�8@��g� ��y�{��,X%+�ig[ |�4�g pZ��N�E��E ���zܨ����a+�Z�`K{�%n���3�g�J�(���>�cco��w�`1)V��(5�L�|F��_M9(����pwybbfeH>��g��פ�Z,�~5i���R2^$�;��$�6�eWJt��kF`�$$�~X�7QqA�g%���S&��4I[�����|���o�.)��'6��B�V��{����2O��At{�T?�9b��@�@Υ>.���H��>|E�?Nj2���g�-�G�>�9��ҋZ�jF�� %���%G�f��ڳ�t�g��pK�e�p�'�}~ED�9��Gs`�XQX0M�!��?�[[Z�����g9FUr��$�[���U<7���(9С R[��v-0x��E��ƫ�9y�mz^,�w��fN�A�+��x?k5���n��)AQȁ0�3�P�~5� �O��9H���\z�V���\\KrPUu`�~\��x�@����w�`�.��0��b]%`��T�P[ں���s/y��q4+��\���o�"�����^��~H�ǩ�[�Hr�g�-���`��``�U�=0�."l6f_�tQx��v�n/0��E�@�L�f!�.�p��Är t�Iq�:�Uy�ZU�'}2erc��qs�N����C��7�ā!���0|<����$�㭴���53 ��� ��������L�(�v"^:n%����3�X�z�A�-uGǫ�{(�.a����c�F%���Y&�P�S�|<gӿ�:�Ua��S����oZ�j�oh��~JLTj�QR��Z}*���S'�45 ���:�`0@!� �e��@�)���K� ��j�Qopk��r�,�6��u��Xz���)�a�&o� �_������C\���C5�_q�WfΙfޏ�/�~0�����9��IY�w,C`4"��`���J5����P� x-U3��!���B�+&���;^��bIa@��z���V_��Y^�_Gg��AT��^r@(r�pcNr��%Yiw��� ,���\gm�@���3�� g�W�`��ݎ��t4Zy�*9@AJ�cPPM��{����80���9~�s��q���B���F���gm9`])wG�a����fPW`��JJv%�Bǹ��.���A-x�t��X�J�3܍.b-��< �H�bE%��U�JU�h��+"�x���\���9�y뛷^�r@�i˃kc�tȁ���y�Hq�w��W�9��t��$�$�CKr���"�a`�ꔚb��l�f�*0 �8�N��M�wX� u�,�I���#�{fZ|@�xP�+G�X<@�JϺ����s�P�/ʵRrV�(�PH��p6�rf5��"��fk�mn�:��xB¯:R�A�,����Ԏ���gCAG!��ڞS�C @���%Q�!�A�5^�����̏�~�ѷ�zglRJJ�i]�3H /c �w�w�@=�jb��={�{��q��Pz�e��^wb+ׁe������"$"�v�JJ͕��mx�8-@���&�<���4���z��D��ku]���7�0P�b}ζ��च�����1z0�Z"Dh�{�J�{�c�r��|֯�E��ߙ8�AG��.'�ډe��3ϧ�>��J��_[[eM��ߺ��2���'9�Q��! �}�0� �Ǔ3�� 9�;8�#�2�w��C�y��r�E�0�%w���u��x���!]t��n��?�9ƒua ]$����$�^`!�}���X#��F_}�̡��"}�� x`�u�X[�� 9��ɾ�\��:� ,BP��h�Utb��|��j�a 9h�"�E��.c.�9 ���E0�.�Ӝ���@͐�灪�~����Yf� ��Q1�`�2��n��4�N�XѸ0.P+�Ѯj�r7N^���x�0�>� k�4O���CQa�8 ��+���q��^I\3���Bg��!�D�Y3�X�V� ��<�}��~��uvTJ|�ޖ1��{ ��Q�d������4���ٟ�wQ�9��E�Ѱʞ'� cP+�sKv��*JE`�@��`p���A���0@ȵ�������>��T��OJE����EcH7��P�+��� ���ѥ�N#Ķok�9� ��p~����a�Ê �+D�bW�7 `��H��I1]JK��`Ъ¡��/�Dr�� �=qY��A(i�U�1H+~�J���ťrna�'xS��TGso��h�2��}{��w�x������w�w`0�-����� !(���mf�,xQ%�U�~���Ғ��*���RHxv�8��r`! ��Z�!Y�C� 0f����]Qn�I}�3!'�tG�E|9PɩAk�M4�.T�ʚ�N�u�rؤ�Y�@�����"����ٯ�Â�v��08������{���2�,��k/]��+�#�L[:�o�p��bx�����?䠭��@��?:&�����e�m�/�EY�M?N!����N��x������� �f�A5j�\O��X��N>,Df|"5%,��q*&JBI�A�mH�ƒ{�XaY7�*��2T��6��{�,�k�N�N� �p��}v�n� Ox��B��6�6`ݻ�^�\V6>� ��/��FU�c߽��E�e��b��P�L�k# `pv�zgχf�c9C�vZ%�3�)Ͼ�)FSp (Ġw xXD�u*�X��'#� a�~�:���dZ�X��F!���d����\PV�]�C)���b?�t��'������;a�����o��uֈ�)�Zz<��˲�x���d(���$�脁'�)M�%��m)1H���d��\hP��6l9� W��oyX/gF$C0�/�4�O\?1�d�rd���h���.ˁyY0�p�����|_1\�'����ۑ�qK��nL ��G�S����-g���Cr�}J��Y�u�j�颋��.B�<0�<`�_�����X��;$˦Z8��LX;l��ϧ0p[���c�A��͔$]�q"�B��=.m]Dӣr���.<���ȁ����I�nޘ�u�I o����#��0H�&��m�5Qn���âz�2�Əܻ�3]�\,ܰaT�7݈���?���A{�1�a��{��A�Iu`+�gM^;��Z$((��.�?�Ni51�嚭�Ŏ|1c|܉���Ap�ৄN�E~��1��[��TA���'9W�St �CJĽ�b��<����,r��r�r���Ws��Q����eԉ��90xQU4`@��n\0�y�&%���g�}$���*�e3���M�&�S<�<�g�0x��U�l�rX�¬x�%4��T�h��`5BR��ǥ�sm8,��(N��� ���q��@!%��Rj|��uB��d% J��#r���)9ྟz}�E3YWU/�N?��i�q����~x{9��l����-��9槓o3�?�ip@�bu��AX�5\H�TqE��?����`��J����0�~)�9�i�X�7��(���0OQ����Y���a�!ܟ����.B������P<h`�= L�<�=�k��u� yH09�guJ���~��r0x�1p��-����r08��=�{�/%�`���"��;��:4���8>�s���(I��H �A��֯pH������F�������@�����iV`���u�?:�������h\X��贙���R��AK�T�ָ�R�c�,�x�n&�<a�.�����䜟)QTt����D��Pґ5ä�0��(�m�bC�4���!TɌ�� �L9U�M�0�s��9�Lp���օ<\<6�������(1���<�J��U���%W�O�/0p/� � W؛���Y ��#�V�eH\��%7:됛p��Gs�G0�y�!!,��D��o^c o&��SsA�i��������}N/��Y���1��c@x��8P��dģ9�k��:h���E��Dԇ0� U�T������j�������d�f�E/��@����(<:�C�= �`˽�{{�}�5?�@�(l�.4%�֚9�p� >X]��2a������j+�1 �=��9ؤ@�=��|}P�`��R�n���� t�6�r��~���9�g��,+�'9����A�hE j� r�~�y� ��I���1��ڇ�E�J���2����;����((h�����y�u��AD:�e�N2L�Uapa��`�r���/c��˖�E�"2�E�1�K�� �ܶo9�Y��ɶ�z�����1\���钃��<�������F�J�x�#���; M����)���M���h�<8k���V�Ĥ�18��Vn��eVpp�<��Ь�[R^D��eA a)�&Xг�_5Qɿ�<Mm����ɢp���`q�Na��R��c��,�L����֡����~jr oG �!:[}kU�"+�Y��1�^ݽ;�B0xtwc�\�����k"�&�����j䱌��8;��_h�jr>C~F�U1�g��B����.�. ���^�c���ɠ��*�Q��0Qa ��&.��r"m��M�zy�ì���˟�R�sh6��]�hz� ����S�w�Z���%�`�����W���,���w�Ц��Z�{��p�'h�}���IP���/9P�r��`�>^E�}�0��pՕ����ю+��B*A+Ç\�t�Uz(P��%饦ғ����g���>��wÿ���uu�s�����2�"Ɂt�]���ܳ �x�y�{8h��H�=w�VŲ�R�[����%+�4qU87��$gBl�M�bT��=��ԑ��W+` ]���U�#0(�QE���[ ��ij��n Zc�H�r���c�S���y���䵵��Il5�5�rT�=|}zW�~�܆"�V��J��3#�\��M�:~���"u�MI��,\ݝ(���=�,hWUQ�W�*�$�s�|t�=X!F�����:1MYd�-� �D1��(������p,:�i ����j`9`�I ��rg>�J3k(�*'�z����߰��#K<~�]��*?���Yb��ञ�%<����&f�U�q��0�W�(9�o@Y�Ӽ[��`�J;z �h��&�G�t��o%�0�jf^��P�o��k�HR:�!�|7r�u�@�C|�Xw��1����I��X�Y?[�*9H� ��>+9���^�qh�5/|{_xS�sZ3�ɽ�EJ�F�8D��Js/㾥��?��U�p|����:�8<�e���r@���7�)���D��M����z�A[`H�-���.�w �*-䀿 ��+ L&�թ�~�B��A`�9띜^ֱ䀽��Wa 9��oX�����j��<�"Jn���$�N?�룋�<uQ��J��O����G�T��� ]��7tϻg~�g<�4LK�!`��?t�a�0ʁP)�0���T-]�^pc��e]$�[b�E` cH �E�غ�}Er ]��~��<0�s sRw��i*߾�İ�S�9.���8�����)� �>�ŧK������f<@�i�,��Lck �UH�ڔ%?)�F��O���II��aA����B�̘\��`ݩ&�f�2�*o�q:+�o:΄R{9�G���K�0�����F�%�:iY\�r��zO� ,j�ٰ���N� B%�`~0�&9�Ϳg���ͤk�#�q� 0`��B�������CT��t�$��R�\���n����B?.�ē�FE$(��mY��'a f�e/��٤�P���1�^X`��{�B�*2�� ����1 ��/0E������/�_L~�d��%�ux���$`0�frVr�u�p(���JL�nAIS�.��'��G�)��2�>��J����pʰH;��Y����C��bX�x,ய��+W�\�2���d���[#0D~\ʰh�q௲f���\V�ܒ7���%�A�/9�~��/�g�i�4-��Fm]����Ԏﳶ.yxM��w{~4�v9��j=�n�.�k�"�;0��^����BY�1_�Ay���/.���>j,��$�0 O�M�B��1��Cu��X�@�#9b����e(J���u�iИ ����u�\��7���"�%[CN� IS'�~��m* �r����f�3 �O�rB�[�n��n�J�PϚY(�ƒݱ;���9T���e�i$u��58�J�Vh������W���ښ+2,��9��I�����ɼ�QCNE7�-����5�l<#�M�����ͳ����ڢ��� ߕ���ϗ����A(*�tr�� C�M_c�?��Ua�1�+|�|C�(2A�a��u/�=-`��}oe��i&�0�֣���L �Eg�((',)3�Гb���Z��u,�������jc���^Z/�`p��,dIm� �eC$�BA+Jq��?���- ���Y��g`x��,�T<O<ģ�`0ꍖ��օ�p�i�'#�j9 'EC.��[�q��#��5�P�g�o CM �.��C_s�pX����% �B;��䀵D&O�7�lsE��Q�1�p��9ij�"���BZ�BA������N"�O1�.�6��>+�W{n-�"��%I�N3�s?$���s`�.���O�ކ��+χ���������$�`�r��W���r�}��.R~f�°��' }����t 2��`@�#�9�.���ϡ��7a����.p����Q�4A��<nfs��ڠWϙT7t5|d�%%:���O�DW��e%��T�0?9 � �x͢��5�HKn��2��K\�\��|��4k��*��ӆY������������L�,8��������\� �i���e�%�E����uΟز n�!��p��?���A��5<� $��� ����&�L#SWt�Xc%���CY�0` ��]���*�sw�9��Q� sՓG��]�X�6`cּ:��Qp� (���N�� ��q��D.UH'$����J}ڜ�����2�T8(1�q�Ú�{(��x�`ݜ�)^���0� {W0`p\��1Uf�w~�����}e-�����-4a�5F�0�Mz���ˀDx������WE!��G|˪�^ౠL���!����C�Y�U0��B�B��1����]��`��2�+W��mP�k�¿��*ِ�6��0@Ɩ�395"�8�k̲B~${�E�(��EG��ȁ0@P��A��y&���JH�z�_r���i#`��E�A`cn���{�*Er�Ԭ��fh��3K>)0�#?��$ /q �"yɬ1����{2��a�:�w0� 9tQ�a�1J�����/�礋��t o:̊mq���J�\�-�d�r.Q4�f(���?���o-k���Tx�i$��'uE��y���|n�۰�co���u�rD���*(�YԔ� ���h�wW�I��d7毧���n�5�E.O�p �UW�a���<�Ly"#��O�8a�V�NU6z'����~d5oa: �AxH Y�d�'�<@5okY��B%��e]�|W�z�4��Ep�8��`"7��s!����!���p�1�$4���0�kT�d�:�W�90�r�]DwUr(�6�Ὤ��}M�Z`��CEDx�\֯�����w�'b�lr0�dU�?�u�7������>0/�xE|�f���Ys���Dx�!��<�ͳI��(�tª4z��yrWr��ڍ���}�2�AP�K4�!Ɠᾞ~�t���Z����U۲5}m��5��[�d��uHpXàN,d`~��`������r0� F%cu����'9P��KW=kB��08��50 �ߖa�\�"䀊*a��D�� �@�-_kU*/��:t��l�fa�{5�=r�p�\V+ԁ�0`�'U�"r�UR4���̽0�����"�)��S9�������b��aX�@�9��ϻ�o0��H�^�BM�H <���D��k<!.����� ��0��Z�c��҇��x�H�`)k0�7�G�M:U����',d�ۉjx�5F�f};� EJ�Ѫ�Y�A �Jh���dRt�)��ݪ�XYy}tR]Нe% �疵ܪ B�p �B@��!�t/�:<4�ԡ�EYRT�УB3�:�AԖ ~0�䠍f/)��W�l��n4���q�;������Q�(���J>��r*�H�M����*�b��sn�1J50����r����M �uW��έ30��TM�v�Vu��S���}i��'W(#�?I�TB�Pcl�o�)�+�5�:Xm$��Fm&b*˨J����� !oqxU"�؟Y�u)p��z}���憳>���w��F�I��:%</�}�^�u�%�T�D?���g�C�:���*����0X��,s.�/{�Sb�P6 �o�R��0���w�ʲ�U���tY��n-HTA�D��>cn���I���,{��;���n�} N%z`P#���н�����˺�����"´�{�u{9݇E��Y`�����ك`@�26 �B'V��/��+D�ל�<�����.jؼ����r�0�,2Ƒ�"� �(��^40`�S0P���0�t��>��(��9�y�5.�� %�>�fg$�֔�ƒ�̺�&]i !���KK���L�zt��4�dZV��M���P��Ō�Na�mr>]�u��^�}@l���IZZ+7�M�5��Vv���kp�j>��.�ie��,T� �����UN�,�Ajg�<v68k_�6�����FL�w�l�^��Ī�Ol618&f���s��sߨ(��`3CX�!X�c6/0��˱��{ci˟e�{)�u��qRn1p=�̟����^6(����J�˕>��Z�X!C1�nW�����\� �a�<��j�O�_���Q��%���O����ý�\F����9D�ϑ[��6&�q�{�9 ��⇳h���e�w(�n,=w�:0x��r�kmP,(9���o8��ӮG"w� e�<q#ㅇ5��-�J����/� >^�\�~4���#a &h0 y+�����()�d����&E����5C�ٱ�g,�XP�;)'f��"�/�}�[#����m0d { :��-x��H�jO>T���f�*Z���@�0rD(9-�9@.�j&�����E�A*S�)��uՐ)~rF����$�" ���� �9�_UR\t�>�1H�2�oFRK&�?w�Ԥ���������AV�a�.����yY��3���EV�.�UC�:0�>dXD�lSw�a�_z�Y��#�d�����IF�L�Q�s��M�߹i���۬��q��H���I�M ���uf"���[��� �,t FƵ���]�o����J���ާ����ݥ�����tQ'<�U],8��@�^���R�|/�C�n��>�����,+6�"([5�g�4��`pvL2]�ٴn�dz�fG��3��D4���L�^��js�|^cpo�W�X(0��e�Y����ЫRV������毗˟aH�LJ0�Q�g��� �ƀװ�y�� <�mJ���㋎c�O5М&��utE F3��P���8D� ��Y�"�r�����O$��� [>mw�(!�9�:�.�O����; u3��{��k���'���$ ��^D�QA��� x��rpcmo,�N�a/����'=�f�[H��^��T�j�\�p�}M��A��*�����m,�ڟ�D� /��e�#�����.��ܛtr ]P���9&F��{��t�䠭�Ro�0`�_�Eȁ�>Я�B�E�ܸ��j�Շ�-�#x.�XG�"<��І�����h�{B����&t�+�#T�`�|l�y?Z���e�4j�#?\3�I��k*~���灍�^�lb髚@L��Vٿ��A�')�/��8Ks��W}����Q���/�ZC�8�pM�<s%c��|�M�>��D{�,�,T$ ����ġh ��*���I�h��d��4OOō}��/ ��<�Nq�yq�� �RNh���=��r����3��x��Q����)%���抛���V��Ϫ���&�rI��e���X�� ��+�W�k��B�+�"�\��a��N����|jy#`��[��(�!�#%ԁ���2���, ��P�(;� �������%�H6�v�����!����7���R,4�m�0�)Ycs/�SZ͒��� �HDEaE��00o6 ��G2k|X�_����ܛ�cL��F�2���bx�0��=�[N�Gk���%9�C��٥0P��A17���=���h�c-T�2�mgq �9E�^�� ��^�Y��7�"�']�}Hq�r���W�Ȕ�p����ߕ'*]t��-���1ͼ��i�"���E��-�m�4�5A��t�A2+�!oW�"��ʝ�����^l%;��N�Cr��%b�h��#r��k��9��w{�[r��@�#H.0�M�xF��� �p.HF2ǭB�(��gy����X?<���M�o' �h�� �n4���:,� ��ݛE+2Z���ɸIˠr�/�HP�@M�f�*���z���`��Gu�-b%�y�a�{̄2I�O�E\r�Ǔ�[@V�Y��EeĽQ�~�О'9�aUdVK���W�}䧨D�ڈ ��U'N`p��2����A@�ee>�4�C�:c�` 0h��dԘ����XS<*mbʏ����Q��d�H�+aU=��O�ɀ�����0 �uR���h����=�`PBq6�^�1���Ϭ�{� Y���ń��j�0��x78�0 ��к1�t�!d(h���}���$�ǝH���ڧꊽE��-\�����~1���tK��cFK`���Mr�ʳ'4�,u~h~C6�0����^��<�d��k��`�y��+�ؾ0�V���յms`0��Ӂ@l�S?@n2j�'b㶫���%|Z��'�HV� ��+]�ɥZ[[�HG��.��9�%ہAq\!�Y�����E`��# !����4`��2Te��֯pF>��ʒ.B�Aqm����E�o�� �uQ�*^��s�=��������>���� 3��z�M �"0hs\���{�y���T;�)y^�q=D']�vr��Y���V���b�q\Yi�Gg1OO�S���B7AG��/���\"E�1ā+%* ����h��3��̸ocP�]$�ƭ��1��2G��9��u��9ew�LB[L�V��9����q�+nI��#��s�4 �.(L�I���u6����(�B*i��f`P�@�fދ �uX3�P�re���z(�K��[ �Q��+��D|U�)n5`͒S�|��!E�:�Q6M�<�3��D8R<w ��V�d:�������K�S�WxF0@h! �PXH�,�����Dȩ0�Ui*�t�sm1��I4���4V���%X�(|�V�����o�|�� ����=J���m2��x������ ����T��N��50 ��|n�h�B��_���ìz*�pO������4�IN9lר�ۊ\SVc���zȲ�,;�\�fI�����:4���j�k��/��n�X49rM��.��<eIr�Ky.��U��Wo�A��L��jޓ�0M]��Q��.�"]���.ȹ�$�;{]��7�KX�Yy4�k�� ���Dc�h��7�s�!0(�w\3���5{F�(�c rU��c�\����)�,WF�zU~��u-�C�X�� N�,����Fy\)da�Z?��퍄)yuㄣ�_S�VI*Je+7�Sbv�ק�JWU���\ �qۜT�% <)ٓ����`�qH��Sb�W��c��;���:ѩz�ץ�&�A%UeM�~���i@�Ѥ�Q�.��ư@� �������-nY/찦���[ޞ4|��-��|`!�In'�� ��߁M��Ta�J��` VZ�O"T lX �2,��$�ĀM��<!�����xfa8�ݨ,#Iz��Qs�3䄕[�IwVݢci�0�d$�bN<Vb5�'�v`�B�"P��`���`@�H���۪jB��;?�!��G��� ���{��[$>O����(J/R@��܄�n�.9���@�r? $BU�UQ��*7��n�ρUa����}EN^�x���#@�{i�B�O��t�X��%��9ˢ�C�h�)����TU��ш�N4ձ�U`���{,�H�$*9�0�.�`�r0�#�2旃����~������B��e��,M�K�+4ݸ�p7�]�������d)q�"��W����@�Q���K�*9��M����[�J�ìfѣ����W�!>@�W��� @ �\���| w�"� ��"�LV�'E� ��ۦ��� ��r�u���O��Dy�548E ��ϳT��bZUv\�8�q~��4�[�P4�U�� o��p�+�l���;gQ���l��3KjS=����� ^�Y}�C�-�۸�Us��j��-��L��x� 1��fs�&��7�'FZN履~����yEm��[� �l0�?�=E\��K������q��\C����]�w�R�ў0�!�{��J%3,gQ^�3F�^�}w� ���d��U����2)���/G�^d0�k�1�9Up���eo4�t��9� J��������B۲�FXHJ���8�e6hK,�c}��B��r�������%��-=�;(�"ٔG� �v_m� z9�r@���.汄�X�q��r�V����@w������"r���i��Pؗ_.�,ph�x~`@��r�RX���9@��1`-s� {vn[`����~+���$�?��|���y�O�Y�i5�@r �9���`K�)F�Q�М ȋ�]y�l�t�{D� &��̗I�=��p�X,��ã,�1��'���+9`8r ]ľD��� K�k��Y8��@EIݔG�\�A���� Kx��:����U%��bE��u��с��T�\|�$�Y4�l�@IY��3�4Xt��wPC��%Xr��w-,��^d�r��^ �U��o1�rol��W��:��ij�R�g �$A{Z��fyP;�z��#as/%a^J�aFO'J���"�i��B?̱I�GQ%w'���˫,`0x#�y��n+���7B��,1�u��$��j.�E<[�ϟM�iPV1��N #���dόҙUuVP�z�����o�uHw�r���.U?t���Aɧ�7�� ��Q���<�$���b�q�,k�u�A/�c6�+͢|aR�v)���̹��<^Ъ �=��Y)d��ؕ��{{��9�PdZ�bح�%DmPB�9�p!�,��`@����S��.�2�M�:Yi���InH<eȝg5Q5� +�[���I�xM�6ɒz >��L[��^�٢|�����-IXW�� �EIk�6Gʢ�K�f�T���jG��n�XBr�`CH�D�%E T�q� �E�/y�` ]�h�˺9�;��*m�.�����ŗΜ�IX�W�9B^���x�4�J�ty�)���2���G��tr@��5�]�a�R����r@?��y����D�f?$���Ӻ�e�5��bqĔ���ʍ�;\�������Xi�D��4�Q�i Qq�]��N�$m�l�L���31�v��UJY5v2��<϶�w*N�+�� �U)����qr�0v��=`�G����K��AV�WL����p���O.F�"4�)Q�ba�Q�A��Fϒ@��+�g���JPR�B�V�������爗�-[T3�HE+t�r�oXo�'�C!�!Ki�UJ�o�Nb����û��oW�H� 5�A�y>Ǭ���)���j�5�g���Ɠ���Uыt*����P��y�P:�9�������P�"��Ֆ��(<v�:��nT��@�ӫgm�>D���*w�zW̮�c%9˝��.��d3ߡQ��;��Γ��!�l�9�Y (�߯ ��$ȺOB�`�H���%i$yɁ��&�gS������9��%���a4BIκ,]�롋i`I~�E��P�����}Ĥ��r@h�]%��Jr��U�+��ζr�'{'I3���'9ЈY0x�5Z \(9�{��(��<O� 0�\Tr�}ja�r�n�"ރ����4�z{���#�T����y`M$���Ckx\Ө�%T1�X����])�:M+N�������>�݄;Ɯpu��_�ÍA�H�NxJr��.jj( �X�%9 4��]a���hzQ� aC`�ei�-�#<S�!�G�� �oA8#6�S�V��J�6������yw�AԐgsιA��fP�(,���{v��z�d=� !T!P,V1���r��9���9�2���ƀM���ZVoPe[ �(��E��0 '�B"� [~0�p�)4h�&����QK�&�as֞Cb����`Z3з�(Q08|EY/^��o 1�����N �F��|�CJ��-��N"�G�9��d41�*�~x��V� ��7����c��X�a��4�߉��5y���S��<>;h��Ma,���0@(��W�&��ȁ,S�T̷�Z��?�H! `����д|����}O��M��bձW'��=��o� d���,2�,t�P��A)���Y�m�أ9a��k�����Lk��-K���J]�E�+��#�9(3�.������uqU��.��A��x��5J�GQ��!�0����G�~g��O�HU�U劁 9�DH�G͘�ƨ���:Ȥ��� �#�@r�?`AN��y����A|�j�A��J��%J�U*b��:���u�r7O3�_�5�ԯ�zyl��QNj��q�;����nJk��w��0�NB�W�]Fٛ%U�1�w���A���M �u�X��5�|pr><����WPJ�<.�湖��$��,���<�Y�J:}�U�?��3�AIP~�����IE%�`@�k�����ڠb��k���-N�#!-��˚�6�m�U�4�V�x�לg/El�ic��� �u�p lWU�YYQ�*��F?�c��W��: �9����#��։&(�N�m�f��v=W� �kWP���� ��Q#�Xc�,Q�P�:t�B�A}�I��v�D�ԧ��< ! �̿��h�`�k�c�4���aЯX��ټ*�n{����yЯۧ�->��p]��`���=��b��a��(���/<:0�Z`�=�h���t�.���\w0"�� �{ ��P����S~K�y[�P�谷��f�(r���k��+9G�@k&�7D�YWՆ�A�X�=�*]$=��H�މ�?�^*`�Cr ]t�4� ]�<��%�k5H��~~{G�H ��{�y%�ۺH(O��B^��PD�L�"� 颇����0��r��9���h���'�x��m�[�C��F�a�7���<��<P�}\?$�3���4�4jk�ܽ��OcAf��E���:]f%�>ST#��.�Y�P�ɪ��y4��Ys�r[��*�*�S���,ȹ#'���FR�[�|�0i�;<5�Tkt-7���H��N*\����H&o�F�+���?��S��\_9�=�l��&��J���*��N�Z�3�;�!~�v�v���� ���g`&3� �����s�` �_oV��<a@hF̬��gU��?L���r�,�yM%[�w� |=�"���P4(�Í90H7Lɏdؑ�]b !섥�]��]�R$/�5������,��Z�|Lca@��P�f�ʋ��鷙톭b#j��^()��T�+�#z�*L(:� ��!]���K-��*� #[��m�o*�ڔ%m9���$�;?x��m9��!ɏ��c`���S�SH\���u������&��ԡCW� �Cح�J 9` ��.<?�-��oa0�*FU���D��/I�@�Hr!B������؊,�x8Srp��� *䠰Fǐ\V%�(K�w�Uu���1Bq�0@? �����G� 0���H�~tF�50�$��p`�(�"a�&]$9�lw�W���<0�(��di��)�El8T�(K�ԽHR�^|9u�y�M��M��ҭKBL��:�J�D+~>�kT̙��#\�����e, Y=�����dM�z�����SP/̣P韀*Eۍ{2���P��6L�Z T�?�֛k13*o\�v�:��R�ʱ����_�G���B�Ύ�z�x^a����3��|4��^�p@�0�B�����V�֚jt��7�8�{��D����~0@y�ݮ�:���p��A��C�A9��$�Q�G� ��I�{,�#��U'�l�L��*K%Q��Br`T�a��8A0��sZ�ع��2��@���[o����^� U���Ƶ �6���|r���N ��(�����$�K�4�� �w�>��PH�_ ��������i6'PX���A��,T(�I�ax~�+u�AzF��F_�F�������W�6+��B�[�w�����p9P���`u9`d.r��]��J�Ԥ���D۹W�=ۍ�A��ӈ K�3�e�CE�o1ηXd����0���:9�p2�m]�?{�{���tQ`�͏$��@r��$\9hc��Bi�td*�,]t��P3���9�.J/ɱ�w��:�Ɩ' 'u���id[1T�sq����B ������e����R2�k�<N��5f~FYU��?�7��,7���P�EOJd��]�^���?�0�m�$��,M�Dқ8��eԳehUB١<_��=tk %�����W�����l �K��,6o� �e���]${�>���] �<4b��;�:ަPx���ϠT�֍�s�98Q��'��(�O����g���f�`���3'�`yt�Te�0��+Qs`���ɕ}��J��S���nU�A/&�5�Q��giB�f95�5�[�b�&�����7ڿ*�f�ya��K=5@��2:���"k���RVT�V��H��ɴ �7�٢< �Q�x��(WW�P��Ϲ�� /���ߟ]�R���n��~����;+�L:� ̌�a�J���r�=*`��νy0ة*?�9������� 0��+!eWru�?7�Udk�&�Na�!�4*(F�u��X*��"�_\k�)n��˫D0�V�p�T�z�d�"J��F!`�U�3�� C8L��;��@rpY �Cl�#f�Tu03&� ÁAX>������/gGA�/wIQx��D�����:\�PНQ.\���#��%W_����ـ��Q�7�ksY�:M�f��@`�~�S.�E��q�o:��B��j���)�08�ش> �̨��L~��B��G2��T=M; �^҃�A��Ò6�;���,��Eӯ�J쪋� m�~}��Ji��%;�u'x�*�Ӊu��?,�tnl�|��,�ފ�����(-��>i��^ ���9l2 x�5F�|�c�!lЅ�u���Ц�"��`�(���S'=L��s���V�|Z�p��3W���hŌN{W���z�>I�MO�#��+ �܆���a���@��0{b�*/���*YUt�����a���>w߶��ܞ������@3�Q`�8�/5�6̈�͜�F�,�n�@U^ Šd�I�&��B)/^��_с s*7*�R9bAS�4\,=��%�rp|�}�9H�e��s)?u!Zj�j�d���A 13Sd��#�9�k[H�& d1�m/֑eȃN}���X�_��*�F���qx"2r���B���l����P�`�p�E�`��}�䀼N[18M���0�ym��k�f�ܲ�R#�!�|���[I�y��l�ra�� ��"<cf�ˋ� � �6�E�tQ�C���^�@r@ROot\D������m�"0`H0�)��~hc���@��-z?���a:ȷ�u��� �y��D�{��#:eP��V�Q�Ȥ��4ŋ�c7�T|�0�s0�|lR�������V���H����1�^WRrH����p���m7tn�*��ʝE�?1�g�N�YY�.�$��P~$oP��(��ji�0>S��*$�=�UQ�d��-0r��\��%�.h�I��ne����or`UCu�(M�u�$)+��5��-B>4Xᒂ�o�m�@��Ayh� 8~4[�:�up��W<���|?d1� b�`�k)w�әeB����n0��t�A4�]�`�z'��z徬��%[5�\e(�F�Te�����U�"�@�Ɂ,�]�⟲oG�Q�s>��E�5I<���U��(9x����(�0���f\����}���I����0��E�@r@X��J֣�C�r?!���3��w��m��ϳ������`[���%T��m,dɁ0�,<�qN�<�h��R9¶*�@�. ���E�' ]$�m��0�UsU�a.<L��% ����lI�.zP6��a:�C���YՔ@�ʨ��aH�]#/r@��t�7a@�7 �J%��{|��G�FqJ8��E)s0�{�E5�[SD�Eރ̩�^rp~dћ�.Rs��)�x�3�ཟ�b&��>����$���ӼP.���Pb[.b��qXQ�͈�U���S��i�>�nj�4�uװ85�������P�3thrz��!)��}�3#�����|*n#F\ꡱt�a���F=�|P���-�bA�)M�4'�i�F~f5��ӫ�+�<��n�$!�A�PV��y D��~/����a��#�`@h��e`m��v���4�� ��P<�* n���eD�rՉ�m-�NYXJ��j�(аv�nm�{��>[��绎��;d,��vLP�`F��'�|v��<'���CG����&䉪�ʬ���<7�P$1� �ݨL{z��E,�e�H����Ua����l�m�2��{�G��o-/>B�}����@#_�P�����繑���O�:��۵R\ܛ䀽" 9�/�d���4X�x��C���Q���b�"��A���Vm93�R����S���Eq��!S���GyfӪS������~x�r���y�����;Д�A[��t��>���&]t��)^���ȿ�V�Z�/�o"�Fζ���]EP��E��`��0@�E�+���1�� �x��E` ]$��3�.9�H4f�-�I0�Q�����@�t��!i��a���E|OgH�5#I`�.�y ���`R/�;��^���T�`ĝ��.��v�OO+Y�$���X��o$���Ȩ�W-��ӂ#yzR5ݼ��cQ�+��uޫ�~r��`����vn��>�I弔�]�~Y_y���߄�j�z�i% ﰱ��Zu�ē���]i�W����^��j�4c�"�����AѫD��R���2]�����ӥ/�����)mXR���P��2�[�9f�7� \��DU��êa�I�6�)����Mय़R"���U���k��HS�.�D��4���`���@J��ϘP���P���[��1]�%��Oy�f�ޟD�X� >_#p�������R.���w�������O2a��� /0��Eօ5hܢ��y�嗋(��g߾=��$��E�ە#��}>/E!�kz.,x�^v�R칥Mo M�{e1�'�ݫ�W��&`�E��~��#0 �~�@�Vk�>�w�r�[�.�{F����|.|�NjK ���.��=W�2.�r����Ī&�u�8���;�^t�0 �)���lQ�����vl5�- ��Q[�,���k�+,�Em9���W��{��u��"Oź(�C�kv#��7�\U7"m]�&9hc��h����$t�oQ�{��/�"�C� �tr��R�WlFN8�zN��H�q��X%�6X�7���E��4�)���@g��F9�b�Oш��ځ�7�}w?UR��[ZC���81�p�� ��p�&�Jw!xEi!�{�b�Nǯ�k��r�ߘ���,5���$1B��0�;�֍�`�^��&5��=^�}X��&7@eʎRJ��I|q<�F_Ơ�A�P���_�zX�O��0���b]�&{�;�D��S}0SP�̷�;p�{�$B:��X�������0 k�0ЁI� V6��20@�F�7)!��2�'�(��"`�=c���+HF>��i �`����&EFG�=��pT4�q�㢳h�0p<�"��U8��ڂf�߃���bcp�&}|��Җ��*�P�g(30���̳���[r�w ��x҃�V$���+G"�~-�J>+0��`1��&�k�AI��O�_K}-`�����~�`�%�G�;�����H"���u�N8�` ��q#0E����(;0��0u���W1�����C��r@��|ʺ�.�K�.� ��6���ʞ�>y4�P�$�始LD���!�m\�.����bŃ2� Nn��Q��K�0?����_�������AҢe4&��j�'�]D#��Gr����g�c�@�ӑ�-]D+CU� ��yp9t�0�h� b,�D��l���iF�~l�lB�)FX��7�Z~�a e'Z�Z����:����ê�����3�K��$m�0Ͼ�dvpn�{ug��w({ۡ4�U*a\<o���`U!2���go�� �D�ɺi�vQE���!fUQdy�P�������@;RIk&�y��^qBL�����@����:��t�Lr�o�f<�ó��H�e���&�5�3�̆8 �WW �� �U_�9��뷅J�����I��z�W����7U����E9��i0�;�ơh���F�e�V��$��0���(> ��}|�Jxr���?I��K���4~?<}?���W�j��ጩoz0H�IH���x���!!��dB�\C���`�%0�J~�q}���--���0�Gs۽��`�����! ����J7f�c��$w��cd�e�`�|e�˾������x7]˪*�A8L���g%�^+�篞� �Nxu��z�� �2dk~���Z� �xρW��|����b0 �7�U�%���ޡ�9��<��$ �e�*;�|��B18���@�\�Em98+.�Q��s� ں�)��/]4�OC����d'{���tQ`�)^K�"0�IrI>�{���C�>��-��e ���0�ڳ�K�<4)�i����7�"�u�3��L�e���ka NN(^Ȏ}��y z%�"�F x�A�~���C_;�h^B��X���n4"���|ל�)'��p��d%d�P��;�Lc!O�>�AC5�K1����\��s ��*?�����&�A�ϋ9� ��#�3�<�S E���s�<V1�'9��N4����q�=��EK���[VԢ�(�d_րs?����p��<p�@7��P:�s�K&�`��kKbR���J�_#C��<�~�A�"泿�>����.�e���9:�"Z>C�0�L���=h�m�V�g���Y5Yx�q�,d8:9��R��E(���~=��C@`��'SES�rP!�r��eĺE�Nߏ�3�M��9x�ܶ��*��"B��U..:�������)0طU��� ���H��8��X�k]r0����$�#���Pn�1u7���=������"mZ�|W�c��G�|�"[�����o��%�R�.(� �BUՃ�FO�0�iX�3�rkCT��g�j�u�Vy�D6�0А$����r���<��.+��P+�Hr���Q�i~4�Q̇?���A��א.�^�~t�UyFC�x��A �A[���iĥ���B��}�ߥ�������H�H����������P~��h�agH�S�r����/���:���I�tf�B��2!k���G%�|VU*�e�ܖ��,�mv� ��7�����:ՉKW)I$+A��F8r�Q3�?z����u�S��xO\�j��w�F������P�0��AA5��m�a(K6.�8UeqL�D.P�2x�|n`�YC����y*|%��H&��*��������Ya�CL�F'��ˆO�ɷV��݉2J0蹰+��s���[�Vuo����Ŷ����+q���e����([��X������c�A�]���Z�σp��L�jv�B]�n�IqbQ%{Ύ�vzUc�Ww�� ,�B$L��g��؝,i�PQD�'X��X���!ſUBj�Y�$�D��?���^�~��Og��G�dp�S� ���`��}����s�ʫ�3v&����>��K��/V����������2�YN&��sr�5$�A8�CJ����> ll)[��I�)]�k)��C����"*���`��F�.9PC&�ں���`�����P��3S�')�X��3���bǸ,#�jY��B0`�'��E*9@�"Z���% ��B�/e�=�c<���h:^���t��u�d�2�cW��?��5t���x%X�6M8���p��#��ֻM<��LJ�<Ew\�������{Q��5����;w=^.��IM�?�1��8mY'��9��j�S�6 �9���-g����I��Ϣ �[{�E�f�>�AV���!��)ig5=8��ZXKB5�5,���GAZ�Ӱ$���>�&��o��`���`��$k��;N�����퇑�=>"f����v������CU�J��p��5O��)pXet�AV�lDXO��O��}[�Z�i����Ĺ-�s�n #��p�u�V����Vg�<̿�B�]1�:Jl^I��x���dנ\G��6=��%�!A��}�e�b!JS%0������SqK�{o�1Ð��?[���+��r�cE1óSQ�3q@.Q-��-9��m�i~��;`��~�oZzN`�^��ȁ09(>����{xo��e�6�����ޅ2_����L0� 䨸���=�1�j�Rݳl�C~G�#�.?ѕ.�_M��+]�k�t�z�~.��@� �6�2ȁd�w�OɁ��`�(��:roxH ��U���&�����e�x�CΏ�:� t� I�n=�Q�Z���uF������>cB��"��Z�Y�"a�.�y�����y��ď�����,c�,�Y':��?�:�+z�=��L��f�S�d Q㮎cNh~|�%�*=IJSY&���9�B����Z�D�����t�V�.�����.�,F�>��c��,߱1��d���sW�%?��&���0Yl�:H�� �NR!q:S��^s*�� L8����Q��zs�h6`b��Š��OKK�cI�o����FT/G����l�8�m�Ĵ���,)���xltmj�"�6��o�π�v/�3�.���5W{MS̴��ȥ���'�J0@1�O`J{�`��r�q�/�B~Z�����8�u`�s�=��p߯�u�V�\Q�g=W�7��a���Vl�l��[��P���YX0�CYC��b�p�}�� <0๙����2�wn�K�^�7�폽)�7��� ^CxF��n@ �bV��^�5Eկ(��}��r�wM,ï`�����/��=]�E�w�پ�]<M����T��oі漀�?|�k�ț�5���������Rp�Y�}�<�n�`ɻ.��DÚ�ٓ��hk��=x�Z��"�&r�.o������ߵ.xg�"�CM4�u;Cg�� ]$�E���%j����2Q�Y��Dh�0���J�s"+4�"�o�=�3l�.tr `M�`�&�!]$�u�*GG ������y`�5���pu&6��P��T,@W'Դ5�r���d$c�{q@�I$��n�h6&�n Fȣ��?k �aH����.BW�^2Z]���ϐ�#�� NcL�d��F����a5"��K �`M��L�qZ��Հ�͠��T)&��==�ޕ���i������� Hm0J-��]3��^���i���,�~����hE�ףL8��s�9 `�5��᨟� ���Q8��9��BDpP��� L� �a%|���wZ8`��_�P;�]��%�ͨwU)a���=Ţ�p�R�-G�s%�ó#�$˭Ju5��Qw�,�̏U'���Dh<9� �����h��p�̽����pp�5����5N���X��nc��{�pn��hYr��6\��8<�*�������{�-\0��$���}`��*[�Q��p� ;��#��g�,�3�u�6 ���m����y֊{���.��V����{t�w?��a��4�"���A� ��>t����"+9 ����;%9�%]�x�ɒ�Q�A�%�uw�+�J�@��.����E(jkUWIl��7Ɂ0@�_��N��G�B��F���r�e�*S�T�a�Z��^�@�(0����/0h� P�T8��ȕ��r\���[9�@�r��BnDe�'J��C��l2�K�uB���ܚ�6�B5ە �l����s�%n P����%�,�T�(�iw��6Mޫ�es5������&��MwM�Rl4A4D1E��gQ��ql4%�p��a�3� �RVL���D0�Z�6m5(�'5b��s�g(�{ˬ@�D����6�� �C��dh���;�^��rX{)�0�� w]H���:t�p�),��$x�+���Q����N�J�k@gg�aI%,u�#$`��z��㋄.{� ~���%r L� ��9�s�0�fq��]��ԗ�Z�e��f����"l( 0@�����{��-��̞��R��5�����M���,��˵�B���%�)�ĭל}�A}Ϣ��J�Y)l�9�Vr��"�>A���9�>��v!\��a/����'����0�ґD�,<M �9��2 ��Z�bt��l`���e���Q��E�`�![b���ϗ$*D9�H��R1��'0$8�χ��Fa����.��ߐ��:���%��\�,(B5!(�"c�.�A`K/V�I���@��_��l�H���49��ؠ՟����K!]h�. �w ]�!�φ���σF�GGӅ.�x@��-9 �*n��0�� ML�H���u�鍌�����,����l e�VC�J �g8&t�f���՚ ��K�>���M�;��b�Q�@'^��6��"dY~dž<s�[�YAy?�cp�v�Q�-��*&���g������&�_��V�e���(�i�N$�� �]a*�L�Y^GyЇ?.R#`��t�v���0�s�ч[ �{��(��dYa�aI�κ��`�hg!��"��|V]����� ��O��$�;�ܭP(;s'e@������~����|͛�Y01RDx�� �4���x�b����YyV�;T"�$�zv�v��q�B$�}��Lf+9��=���h�T��&�� �CI�� A�-� <�f�y&�q/�q (�?�B "z��F��QYŞ�1�|���9 RH�,!��xq�����p�`\������[���_+�st�k�0��n�K�o��p��>�F7��`A#?�']K�O**���>#���QE�p=�@r՝Ge�U#/r����@���tQrZ�U�`@�cZ����� �u��CU��" )Bѷ䑍��R��.k������#�=��^$=r�.�9�<"����tі�E� �-�!Q6��([�%�<l��X]�a6>�u����Em9�.�j���+:$�7��SYyb�L�?�X�#qV7���d��fy�J��� ���(�<S,&�r�gu�NӉV{œ���Q�������ے>9)�/��O>#�Ja�9���\����-#�����o�T�)�����V�۫F��Ӫ"\�"kJY ���� �$p/B��a�i� � ��,,�?���9j�wqQ�Hf�u�ݦ�*�`�J��K\� ��h0� $q}Ŝ� 2�|�d=x�da�B��`��� �AYgv��S��:,10:��`��[�A��k�??4�T��=��_���?���0� �� �"q$~1+{��H�S=� ���L���L�(2��@��4ٵ��B`i�e���<0��y����}~�U�S%I����A0��gD��o�?B��>�D��g�_�F�a�� r��Yz�M��9��~�0� �LL� ���E�Ű)?X�E�*�߫�� ���u-��!�F�bD@����`<�l ���H%�?�3��ɲ����rV?�E` ]�&9��`�J�c_W��Z�*�-�E�P"��s�h"ft�^�g;���O1��`��_�K)i������q�O]� �\�����}Ή0����W���;��q��QO���2x�Y�.R+�����0�H�3�O���`�^ʃ�$��t\�c_���d�O7JF�R�5%�ɨ!�\���(�qZI��a�<�o� �Iz*�Y��}�=#6��I�pݓ�De�f�' �t�~�}�rT-���~��F������3�`SB��T�7�ws�[���Q~?��!���9�M�T�y/���^�8\�N�%�4���d��t��g��X&�B�*�|����j��(S,�8�u������X�<�!i��J�=��+^v��%|wQd���%��C��gG9�k8S+��x�R�=?��I�amaŃ����+{5���+\zMΌv�L5�V�V`c�c�؈y���SՎ�o<?� y�[��o�`9�(a[ۏ��ȁX�5�³�����Q�ڗ�({r8@�BPx��#@��i�n����f�#�!d�0������u���pʒo�ӹ_���i`fX��e>�|�a��E:P�sh�I���-�<�b�x��!`K�UI�r̬�C�{�TN�>�:⭐�����m?`�E��Q�2 ��@rUk���RG��Nú�}c2����G�������k�ŵ�O�ߍ��>�."T�A]#�r0Pi�t��(� �\�1 �"���$3���@"�Hu_�!]�l#Ën�חgQ�]�Ƨ>e�P%�gip_�E[D�.�j�|����7'�߸�P�濏Le��r�_֏�.JE�A�9��٘��Ө[ή�X�I6��\!E,���(}�~V��(N�~��\���~;���x�����&��k��S�n(��`�튨,wv1�f%�Ϟ;١<��6w,�����Urz���&�*�=�����m������0W/gDh�1 ���a���U@�n�.f�l�ipy�D<���E��6��C>�] &��P�e�� ��:�ip��$,9U����������VR�*G�b�� �gt \��F"gT�@��釧�գ��i���%���Թ~�o��@=��s{]� Lv�n[�D���fM�y:0�� ���sϊ�ٖ�=��z�)��"��a����R���=�n�u9�@r�e��9;����ߌ=a{[�`pד�^�?a1����� �� ��$� 0Z����9x���=�f!��������R�W��i�r�'���2ψ�x@�f��(n�q�R�ڇ����--E� �1L��p�yy�O��Et2ϺkpxH��D�g�A�!����E`���ʞ������LlK�r�E� 8�c��~Q�x(�,��� �YљsѰ�|�����RF���b�~��\T���E2'Uz�̠��*XyP�E!��]�)�Έ��@��^���@���L�������� s�f�~$�/:/E�W��=o�Z�}z� t⦲���h��Y�9�T��4���A����UHxc�QQ����$����HW��^u�۽�K���2�#���Ca����#ƊU�B"p��%$HkV���8�UO����s��D�zJ�t�'$���s��wU 8(.(�qy�vi�2I���R��C1hÈ�����"(�T.z�;5�m�Cb�V%�]���$m�^(NYm\� 7�v"d4��Excw?� q�V��3� ��N�� ����Ƅ�Zn좛n��o��4��>(I0PNc]�4�;s�}�&��o�KN���qQ������W\� ՈF.!(�'��엋_�Ҕ���u��м�{�N����S�.��"���(9���`a�B;�Z��,FpO�KMt�/P@�@L!������� ��ݙ{鍍�9 ��a����0��em��χ��2�+���Q�{�^�@#<�%�ƀ(��~t�PסH<��cNuP���<�dW�;����s`@!�d[a|�"�Lo�rӾ7íT�/�H &�G!0�2' ����G��̍ �Ԧ �с�< ;�����v�P�"��������@�3٣�W[�<�a�p-K}¾���V����|�I��BH]`p�.�>1r&`�.����u\�=�"�x=*���⊃6X�pƏ3!;F���8e����de���S�Ԣ�1��eqH����A�� Z�u2ƾ�.��%���X$_=�5,x��5��N-x���Rb�.��|6�b�FOq�jڢf :P��(еv�g5>c�U �w*����VxP��f�h�7�!t��b�x� ��I4I��`;(����ϱ���DOJR%X<��a����I�W|MMQ_D�mU�=��&��L���ó0�6ܚ�&֞2Oc�M-�X�|L:Yu��'KN �P�$�n �]��^�N�/am�y"8<xP���/Z)0@5V��l���܇�B`W���{�_���{z����O%J<��`E�o���|f+$хr����yssx�,w�GU��4�t�~��5'^����{[$�A��\ϩ?�h-Cr�ie����E�c�o��U� ��X�O��hld=�0�������0�>c���=���_�����2X��b���U�Ggg�[��]4tN��.bݐ�"�Q�@y��"0������|�t��`R��J&0@`��5���E�adS��&�/�lQ��Ȑ���3�g5m������^c��W��s�v��oa� � M选7yPH�.�`p�<0�'`���o��$��I�~>|#�%P@ +i66�a�L곸�?{K��&㤛1�8��LS��r5m�Y�dw܍�E�% �z�#����f�Ө�T�{$�-���c��Y�������b � �S�zbISrT�_�� �r$�hK�:gsӎdzX{���R�*�s%��p�i��r�]mCU3�o@0 �'���nc����}�ٝ�Z���K�"�Q��R��qe��Z�A��CWR�`@���^ O�ΐ�Q�Ӏ�����[�{� ���ϕ;TWh2d<ˬz=DžN]0�=�FI�i`x�5X`�e��Qz`����,e�R���C�x7���A�:���ޕ�0��m�ʊ<��~)|'�|�ۃ0@ѽ��D�����=pa�=���q��8�<��PS?��GG9��L*v.��76�V[�P�{w.���3�m�[�����'� �{����A�A����"��AX�΄aɁ0�.R��T�ͪl�CW3������ͣ w���n��vm9h�y��r�P�~%T��m�@�A?��O��uG0��]vy]r� l�;r�����ଥ����4y�$�>*���1i�АL�xR�'����5ɘ�$OZ �!���~%E�,,��+R:^��s�6�F��4p�rR-k�ɐ���[V�LJ��p;O卢_��.'x]�R�TZ�l�9 H�#W�l��J��`��I')����q�Ϊ��"�KwZ���fm8�N�҂�B�|��ݨ�ϰ��MOV�Ѵв�5��v���*U�T��v%�8ux��3+a?r�m�0_9��$���#��p0�ZE�wf~i���3��t0����a eF���%��A�y��*&K����f���&Cm��}h� �`�����5�08�0� ��=v��Ӟ� b�Jl��׃��yJ���0K���� �<`��ڷOW�H�\�^%����?�� �����ݹqYP�`Ǖ�������y�-r8K/� �Qi5�p�B�9EiKyR8��0@D�~x�V�缗�S���F`B���bT�6��Z���B P�����������5�$�h��l�e��Q�����0�U�ܒ�F�>ϼ[���E�}��,�骶.␣z��Er�����c�������a�~��<@ːa��K�^ʭس�p�.�t�y�FLz�2�(ٗ�l�"R%/)97���N7e\���"�ʵ�a�5.0���ѡ�Q��8��S�+%���tY���N�A�Յy����|�P�`7`��f���mE�f5T�����$(�K�A��&!�a,M,ĺ�HJ� "�Mw'U�JΆGWj��1�z�4?�r��?,�_,�,H�k���ˠJ�<K�ÁQ���J#���0֡���P~�fI�:�OI�UY_w�{gY�t'��F}��-��3D�=Su�=g��)�W<RlHa@�Dr�) ��zCK��@c]dx��c�AzLP��Bq��@��`�s ��F�����$!�%6���ȱ��a�/E���4���+9��S<�/�]�I��W��s���T��~ª`�{� ��V�����Dxp��Ç�Z�>����][:p�:+���BD`@��{'�/��ź0��c��B]]<?r�w�R���PV�Qҥ�� ���rP���(ϰf��0�>w�S��y8����.�Sa�����,�_$u���K��bo�:��\W�paL.��܂�fR�.9�.B��x�0�Ѷ3�u)�AaKqX#m]���tE#b ���b�C��a�q�` 9�.�H�bU��mռ�UN����I����D�O"�sίLgxـ�\`P}r��X�@r�&kQ�_�w�E�"nĈ0�b�U��5�G��K�A<�zqfM�h�х1َ�N��J ��ݪ�Y�15��6��G#-�~T� �c�iZ��k�"�Z�*QH�B���IUM�x�� ��N��� C���3�8%��A�?ꄚ�'/���-)�D)('1�| �8��]�Ľ�*�>��4�����gB�$���Z�� �*i�3���q�KG���-����EJ6Ye�yí~5'�g�$|=�'�X%�ya&��A*?��&���}d�D�1 ���kA�@*1erSX+QM�ս��������ɿ=\����������"$`�k&.���94`�rgo��FE0� ���֞5|a�%x X�;���"�d�QU|=���q|Qq���։���9�̡ 44J�#<���<��x�LP��*����A2��J�{��yƿq_��`P&߱1Z�z�P��oYL��P,<'{���t��s�8=� ��BM��~v�����+��~��s�"=���&�<��Y��.r~X�;V}$���c�nj.z��?�%]D��Uգ�]��/rm]�s�'�aXBL�Q���8�-�g��Yo��U;l]c%�E!<kU�� k�5�]�}�&4`A�x�.B"}0KbJ���E^ �. 9�hLҌD^����-�.R�9H�������o�]�.�d�=HB����a��/����v�qzZ�h�L�qT�Y���E�zGF�Y����W��64��S_-�D�O˚���'�3*� ��D<d�#���xȰ(�?��ʸ>1�8��"�7sEl��a�~�CH��R�<��+4֪�刡�[���r�c��^�ҰA�a!�����*&@��|�it����Z�*�<9:�(;�$�4��[*�D�[Ƕ���jY�`1 ��PT�94*a�]��� s������ �PQ^�}�c�04_��%֝��<�2_����7�<H�0�}�ْ���q0�9�\�|i�C0���,��EUՈ�"������<")W�s#PH`@�.=cjKp��ۧ�]��E�!�E��!�_�ϷW~��zk�zI�: ����O��Mr@���[���(%0��<���e���.r0Q���)�%w�2��<!���^������ߔ��#����!+5�� �B��.^pQ���w�ڷ>ɒ�Z��%9�p'�K.6`%��g����#�*�,�����D�j��*�9@q�����GA���b������qa�1`��}$�U� �u#䡄{9`/�ב J0H�'��BΈq!u-a@^W���=J�����.�{T���ԛ�L+O��H!`�� ]D��k��@rp�<(=FMp^�J�x���鞿'�>���c�����ɖ��(��t�9�zn�?xSgN�;�Z�$�,w,i �]���`��P_�}هp�~<>φ5��QiĆ�QY�i�Αfי,%�5�:��ZAAw� �FXa�� �p���g�W���f;�q �B#���E��`��Ŗi-�ȳ�K��C���'�-�:ޔU �z]���'�X��l*w�GMR��TH���C�B�Q�UJ$�-�T0���{�)���eYg�C�A��Ü�������xH����O�+��PI�J�G��n�[m�갺y� ��P�й����v,j�z�������FEQ[�zB ���{�^��|Ͽ�Q�S�{Ǜ"7�.x��m<��~���u�*�.�l��7���O�A� 408��6.�Dz Pr@��b0�;͙�� ܛQf�x�:H����.�'I��/�4�95��8��Nq����ny����v���r@�A��wr��b�f�%�\�rpPd��6T�a;�܍�"�����~�Be�:ݥ�t/�"a��ճ0�}f�[�hrt/��A���}6��R˾5ʯ���@zM�!����]���'o$]Dyo�d9wK��˺�o�+x1Yyץ:��>8����l�M..�I�H�GO*��N�tH��<�..��#,�8O���p)�wr�Xu8�o��1��I���-���G�ˢ�{66,���c�l�Hȏ� $�HuZ�Sƀ�1�e�3�;�'�̟�����TI�&��bي�H'�uUG�t�$/���R׃(����ܯ�T*�v� �a<��<�Au�#Pwns�F�B�M�yr��ˍ������Üm����"����D� #��[.�1�7�I&7�Y���Y���f���!4���]�w��8�����P�@�� ��p��T�� �5�5@�A<�m�� ��Lj����7��z`9Ѱ����:=��DV�`y�P��]D��F���Iﺘ��R0�߶����ǜM����[$������Pzx�rp�rJ��6���U��ly�e���OqD(���я�A�V��|Ə��x��p����%��D�+�@�=ɦ\�Ņ�;E|��X������g��H�H�� ���q����T�e�Ŏ�h6�}��5J �!���G�hx��^����>�."\i߮hVד����jfI�b��8��@�?9��0�v o�fHPM�`�3�������F��%��d<�ޒ�7���U��v�"08&���0Μ�zǐ��g��~E�x��rtr ѭhPv.>"9%}7���w�arIt8�"�8����w���rw��4R�����u:�39�:$�,:^#�4�A���8 Ա�a4���~&x�M�$��2/R!$M?�{If��y����`)�.oF8�uJIjĻ��w��#��++�[t�4;b��e4�Ñn��g�Ty(�igiU���z������ŨJ�� ��:=�UjW�����g�I�m;�!9i���.��`�vr�6ijz� TR�|�/JL˺0�|_,JB����l�}��0�=��=S�%j���sˑ�W"���3�,�w�h�ηë�����wz�h�(ߛ�(�.�[�`�Z�ӣ���@�|��W�ԛQ�/��%4 ���0�I�5(Q� S��-�8j�K������-�>��*@h��p\� �ف���������u���{�k����Gdћ��qf�n�sQ��E%#J�Q?��q�\o��>6--e�@ 1��,K�ޛ��?8<(�!��)f1�0�7gX�{!�}�� ���]ĿU �E��T�1�@k#�Y?�"9�f��Ay�h��!-]Tz �?�b��.�s+�?Ƚ��[��~.'�&�����B*�ƽD���Y�t����E�w�z5�<Vy3�=�po���n�g�����QE�^��M��?<�: s�-Z gg�L���ԝ���l�6b�ŋ.جfK��"`Dzz�ՍY͎�B8��J�[��̳��}e�r��p�3|�ՠ�~L>s���4!��6a-}�\7�9��,� ���Q-c�a��?��f�6W�3e_�U:?�Ȫ��(�;���� �Y.3�E(F0��\��נ�,y��`��H��#4���W�Pѯcu�&ݪ���u��P1�t��o��L���\qb�`�!�)!"Q���AVMIAF��/B�{S?�~A9n�-�� �,���ǁJ'�^5��k>���(KC�A���<�)t/fQ9�V3��5�,�5����ݳb��Iq[�2�WxT�N�s���݈�[&tI�KI�7o���{c 98r��{ ��(��CA"{�;1�y�`�-E�~<TNb5��F��~���&�![c}��K`��W����[aG�@�<��j���Y�>1���S���L��r4���K�_a@8L����|Vr�2��/[1>��t���@%�2(�+�TE%]�Z��wR��!`����Ő��`GU����2���#�"5 ��x#�E��A�g�0h���\�E7`���R����ŬxɁ(�4��?:����C1dx�(������xи�qs�\toא�OŇթ�8v��5��T�/R1��&i��:�pT̒eRN�f�y<�gXV�aC5M}�,��Ź�x��2ʊ��3]J���ݝ��Ƒ�v��O�����-8�)�U�9�͘(��%s�Ǒ̊�De��E)`�}�ኌ��B<�0(�c}�3��B@I���=K\�`�{�KmJ �OO�Di�0�P$�RF��0��U�"���R��V�Oe�R�{5��o�B�Ȍ [���H�< �(,�-�Cȳ�J�k-�O�Da���Ӗ�7J ����"�D���L�#�`�AO�&��"� �g���<4|���uk���l�YV�߹���6!T��$�s���e�-��*�PP��w�a̰0Pi���7���ǽ����"�g�.��P��4,��CN�<w��]���!���X��|��m$���h�"����L��'0���C�� ����7ҳ���A�D��tzG�z(�9@&� ����xYu�3e��t�6x V\d�L<c�'�d>3r�?e��f/#��@zK��� ��C~�J��Mȁt���@��2Z�"5�r@�]� �rЌ�߆�P�U���G�8�"a0 �%�u>��.*H9�A�a]7�p��z6�u��� �"nW�Qj�db�w�MX�4�qj�fl�UL�$���M<�~ĸ�y杰=� �I P�I���뻧>IT���$����L�$ ���7nb~,TG��-hC�u����F�v�;�kG� �.6�ܾ]KW2���))ͼ 2��/���@��������zN��J�lM�IL��u�*�l�U��l �=����H%�Dm��xAIaր�#�Ƥ�~��7�8��~�7��Ua3���=���:ܦQ5h��RY��ݧ���o]#���]/�)&��FF �0�5��*鲪��|�eh��H�_$��Ɩ�w��hPT\���}�����à���#W��<_y���:�wN3�{�`�%��9��F0cd������k��ޣ���@=��^���6��Y��+^�g�:9���`�ɸ�>��Ã"����:_}�m�8�$L�$W��$��ui�pa��Ѯ+t���*�#6�� =��P!�]�������,�[�`�t���EU6[^-�'9@����DG!m]��T��}�E�s�yP��w&5� e�&��W�z��h�H��i'�.��g�{D���Ϡ�4��7r����@%�,��|� �b�а'����(9�:������p/�q� �A�j���/n���W��~B�pQ>�J 3�ܴ\��K<UiW' �|0hRc�1@y5g[gVɲ3��T��k1��y8�Qe�0;V��VV.?X�TN��"���w���j(慳P$�i�����:!����VW��5�d� ��d9D�?T5�ۂ�l��~�$(�X�$�����<�G3!�̑���$U�T B����Y�Y*��J��ɪ�%q �б���!̡�F$�4M���ݠǫ�fE�g���G5�U�&}<e��4s�Ѕ�V��' /K�A6���Ɍ������7\�O<.�(1�`0!T5���^/�-�0v���)�7�{�94p�S����]fWTލ �&h�-���h��ʩ���z��;OR�����#�0H9���7(�zM>����5`��T�k(9P��������q� �}�8Y:�9����������ϒޟ� ���,�>�ؒ���|[GW0�زAtguu�x�RBn�d�&����̅V�鸧+�8*��gX��Qy�Mr�3�e䂆����tp������xq�A�! �sdr߂�$08);��b��ݩ�Ir�"��.z��"��KV]o�> xrvF*�f��n[I�@�g`po�&�N���po��{��ȼ�ɒTQ��#������I�L8�:)�S%Y�o��a��G7d?�d���#\:��J�aɨQ�@9٦��9���JKí�aGSk��%�3�B��}{e�R�g%r�̵�LR��n���k�kzщ XT�̒����\�uT�A ��*��?�E���݅����J V�6�{i���q�@_�ZK1�,�p��Æ�����2�0X�̇Tg�0��D��a�*ڄ��iv�^��z)�!�W�5������J�qG&�4`u2��ϋ�례))�X��fW�N��6�{r���x~���X x�e���x�Q$�7����)���}���P������J��Q�ғzbp�K�X��~�'/2��&�9`=E���G�v=�����-�XiQv=WJ�a�]��#�5��<�Je��H ��V\9����a8䠩�nxR!^ep������� ��Jn��r��@^�pǕ �0���C4 /bx�>+��Օ��kB��`�'�������e<E*袛>ɏ������!��l�����l�F�\ ��^���}��SM��E�����E�:��-�Z�A[5�U���`�W�A�b��tQ��"Gn�b��O}=�z�U�`i( �t���oe�)�9�����!K)*��y����.��:-3^l�@���� �i��bx*X�S�ѐ!����7X��R'�h��r���D/-���X�����j�`w㰛D��S���P����6��f�?U&<h��v^��-��@D3A5nk��-Ghd���i%�u/*0ά��������H��f�!���R�E���Sͅl͢`�U�LNjY]`@%Z2�b`�(��B)��C�����VXdX�m�:�>0P�O��e�|z���0 �UF2�A ��p��g�9���:<C�=�g��P��=�Y���?0@��P�p@ ��^`�ra/�ג�b�]9+��S�����m9@Ɏ<�ux�X� d�`���qt�"�o�O|���;\�k�A��BzN�Nȣ ����g�D��&2�[��]6�F�Vz��]�U=�^rp�%�TNE�5���%���Ř$;r�{ dTW�<����%����~�&��ހ����(��r?ȁ�,�-qo`C�*��p�b�����<E�r��O��f�Sě) ��m��K�2���7L��E��!ĵ�,%�A?t�;;�x��zx�p�5��A-�u�}I�u����C�4�pf!1��,B��Y�g;��y����%ʍ!AU��y�*r��k�`�^t��3�|���5̊4��/�,��j�Obc㽼�̼�p61�d�x���5g��͍�Ԝ�N�P'�U ��(b�i���"�j���$kM�ߙ��W���~���3NN.�j��4a��l��&����t���t��PW3T��-���PH�J)J��q�X�7�H��g��?>����.�0�Ƶ?4[�:����\X�`�l�(+,J/�X���9@�����0�i%9���8��/>^�wy�J����W�1@�B�z��8b���yFp<��*���sXB` �( |V��ŋ=�(�Ϥ��y*�S.0��W5�)\" kؿy8(=��,иɳ����EN�Ch�ۼ�}��:^r@~`��B��$1��tiI%�V�]_r�5�E�5r�Q� ��w��}P~j���wVe#��C]|n�l�jR�<y�`��]��/�#��t�:��E�T����Ei/���s��@�F�p���O���r"}��3�O��jn�`���X���MaLhT�9�CYtg�Gx����s]$9�?ڊuIJ�E�6�"L�b� ���DD���h��n���E�M�f� �P��x�˰����cVK3��N����㽒t��I��X��Qio�Or@^d����C����̟�¢�l+&]08�,Z'U~���) ������ͳ��j�4)���@�l���p�%|�Ic�t�P��K4��`��i�l�!#�3kI�~]O�Qx�Ԧ�� Q8�Ӱb��c�w��szѾ�VTus�k�s�jՉM�`PK�/N͇��Z����\����G��_C�Z��H(�X�ƭW������yoНk�pU1�ɮ���Gq�jR*�{~x`q9�*|d��Y�p���}+0��~����������yP�+�'*s|,��^M���lk#��2~��ac.�Z"D�T���E�t�9)��+���,Q��C |�%�T��d!b���禉���* .��o��y]!B*j�"b���;�8�T= �T�96��&ց�=Kor���`�=$a�wҐ�֡fEN�rp&�6�n�I��iĈ[7h�;�=Ex���� Bj\�2>�ap6x>'�������e��P�A�9�>Đ{`���9#E� ���2�0�w����G���.��A�����0�k`�BX��`GXMt4a4�?t��� >�`ԡ����:����00����*�]�.���RLk2�"�����t��"%ˡ��ԧ�<ft�9&���d�;��$`��1�^�����g��"9HRGI]ȁtaKW+�-����σ&�yyhu#���N�n�K����"<��&��2jb�/ኣ���:);6I+��M�>�qgZ��S������y��Z�;J9�,_���(� �{A�Xu�P?�l��,�5��g,�N�vێ�;�z����6^��vH2����]#4aW��xo������^)�&�V�PI%B .�ta�����1��`��47�n0DuY��$V,0xn9kB�̶��oR�[��>O<�����"^I�!�n�.0@�փ��1�YM�{5MK��Rq5���OmQɾM�n���{��g74P���ѐe�]�}�=Wn4�A=Oe���Y�G;�b8��E)��;χr�2t��;����f-@����i���Q���B�����GehYºl��������f������>^T��h0X��@����T��f�;zl7�H���tX��Op�` '��ƽ�Az����� I{��C9խ��B�|_#�|�Ҟe�p�����0@���\��O�^� E�` 0�}"`�L��'�>�������� ��4{�tѸ�r��-9<w[mW^!�H�P�]TqN`�����UX"��3��j�!JUN�Px~vL�m���p@�{��:10�~�.��~��4��ŋ�.��]�� �B0@ɛ�?9��X�Wf"ٚ%O�Vu<3X}���S�υr�ŜK;$�&�c�,��N3BUW*&^��*� �@�����Q&��_ǃQa��}p�$���{zF��ψ+�h���6Z�lWu�!ى�֦��Ne��K�c�u�9�K����\h��D�5ɝOE҉AW`Y��IW�ѡ�ļY}/�'�p���h��5q����1�:��j�� � ���w� 5<Y!(TU� �\��Ђ#����[s��ϐ�@]��"l�}㱀�������>�.�"�cM��;���.�;m�b�X�$]YwrD��Y��Cp}@�Â�|���!����t�S���+܄"2�eAL�}E5��e{�W�Yқ~����*9 T2 o'��m�x�*'0����{��� �r��G���o���F�����.�x����E��V[�J��l]�s��Åe*rp�Rw܅A�>ms5 :�y�����~�RE�hV���o�B�IXuo�S���Xe�~�ʛ0X��[G��Q�>���j&t��u��� .颮��v6�.�"Jn� �"��E���`�.��-x���4[�+]���k+�x� ��c%�O��@~�B��C��f�eHr���b%9�|6<d�x�64Sf�.B/����w�n@�E�p0�w����L`�#d[�>x ~-���섁�]���s���q���^Ā�-PR�h�E��L�ë�kW�����furi �ӈ҉Ⓗ8�mB�uǺ�0�c�ϡ���,6����������\l��\T��Fh� *��P֊��V'��nT�0�`ӭ8��X'���,;<�+לMd�p|_ $�@l��!8��g5�0 �����K~�pK��¯K�:JB͞$0yW��:r���Y���`=�^a�ѫ���d��WP^`�� ��ya%̾��ܨ�wwB�)�&� ǽ�T8�p�P���{�A|�=`������Ǐ��lyMnS�81�ZM%B~d���Y���~ 9��+�H�vj�燠�>D`�o?җP���/0V�3������(寠�?=���9�1c���|%�<7!��{�`�j|��"����[��歉+G;�`�i�9���Cj����Щ�[ܧHAQ6��\�{�Ƣ-�ULlaګ������G�ٔ����^��t�!Ukпx�t��� ��b3� ���^K/�����'V���(;�@%䄞��7�m9P3��)�9B���x���"�íG��tD �__r�%�e�`@~O�Hr��3�O���۱ ؔ.��BR`��`_T**x���g��3BXD:�����)��u�)/A�Ϻ兠�i6!���q���"T��9ɼi�s�fQ~��!BT��M��T���c#�,*�e�)��s!�ο���w�4�9��;<Gx4�7�#?��-/"C,f��A��| �`���w��5�~ŭ������Y�L�u�J3WUA�5Vw^��r���xMM\N�UO��i5�qڃ��X�Vqd0`�0�S\^�4j#pVr��T��\��~y�Ā�i���T�Tw��ĶA�LBK����� �GL�8�E�4l�,�1��Ѫ�GzHX��.��� �J�*/��y\�?�#L2d�`�3k��T^b��E���}��S�DFqB��ʍRF�`�_�n����J(�q=�ʽ,������X���|�S�k<���S畊��'��{(�=W"9 <-r�{�z�<b���:jT�H������q�T�}���{�����eN&(�;�� 20���]0@�����d>�G���KV��^���Fe`�N�0b9fY �,}��" �%8��0 c �M�E`��"]$9д�#�[�)���F�Àr(�ʚ�2�9�#�&`��I�t ]��/r �Z� �!h���t��nQ�?���ߋ<u�«�%Y�H�kv���%4@2tZr0�L.���E�[���3S���d�*���0X�m�&�F�.b-9H�rzF0P�����D�\��g��I�4�rѧ�X�)�Ksv;3*��P*��uB��8����1 ��#�"�3�Z�L�W�j�'�A��J����HÞ�Y&ҾiR�Ӊ��=��4i� ؏�fX��_�{�4BBY��ҵժނaĽW,��Ru^�>6 ώ"�,ٽ����ϡ���,�/F�ߪŸ�8֞E2�0�e4����FF�|a59��:�K�Wu��A ^�'�3�ܪ���0`-��Z�rL�}I�;^��!߉��o"T$F�4��`�V]�n�~�r��;T%�!��'�V�+Ğ5�.:�=�D���P�X�`����6����4qnR=�Y�)�Y��1<���X�Q^}��'o�k��@� ���Ws�V|�9����jZ�`���A��fSk�;l`P����g�0�@Q���Pr��C� �,z��� ��rS90@W�*��eɒ08��5�zH�m?�^�1�{{�]�w�k�=Kȯ�_Q%����wl���s��e�)��-.F��oYSf�od�)G��9a��l��2�J��Tt��;͢tT�E%*�G�rp\�rm u�"�.SW�" '֢�V�c0ؑ�b��1�c��1Kc��8Py6��^F?^������.�aVUq�J!ܻ�!��JTv�j��r��= �Eo:~�4��h���.2� |)��7���*͵p�Q�@)��0����}(��ǭ��Ry�I7�˰��"Lɸ�IY�̈́r:�i6��b"q0�K��>ab�lV f%ߡ;h�0�)�O�>���f5I��i}y���o�<�E�~'��iY�c�o�;W��^��Z�-,JeK�u�Y)aty�mZ �\[����CH����簖�}S�����Uբr*�G�`��P�l^�0��1ŅP���C,�G�s��7C%�T�!L�y&(6$�E=:]��sÙ*�RP9��,{�(8���@u�w�!�3�����W���@�kʞ0���c�v0N*�p��|���@�G����Rn�ueIa��(�;�d�6���F�,���w�yK0f��R�G;�.k�>!0��gF�zÙ�:�!�T*ˑ�OO>Å`@�q�cˬ��u��Ś",!�_�!��w�Z.RL�g�s'�J��e9��)�}`�<�a�4�-,�m����b��.�0��E�5��+^ O��o��Y��B0�;�I9��I��<W�EXݷ�xF�@{A��]$c�_���y�1�1H:u0`=9H�T4�rӈ�d����;�a������ztr��D�ς�y�q� apV�$(�mܝ���t��wL����ѕn$�0 ����"^t�E���|H�Af,�t���\8�ڦ���Ccq�t^'s����+� .�����6;�b�y�ܱ g��'ǐ2�پoWl��;��!Tl�J����j6���\��V7K�<_� t\4$4�0!���c�4%�2c����9�B���5�{x��3,q����+� ! $�[��t,�3���f�+n 16�-l��*o&�V�+b���bc��H�I��u�ڔN��<����^P�^��"FH 7-��.0(FVa���@9h�0V�?�R�B�=0�k�k���V*��ȆY T3��W���H0�4����P�<I�7;pȩߋb߬'�B�ڨ_ ��fG�SFNKpOKK�h^��&� �Q�x�x �K�iT����=�ݷl ���Ȓ�� ��[r0�^P��M��sPG�#_}{�<O����'�Nr��D��A#���qu��nr��0�0���+��T�I�����T�a�PA5�0���Ǔ��ˈC�Pu�x$��E��'�~Q?˵�1���-P,!]D��qz�a�m[A����.j�7{���.A!��̂s����3e�p���-mP�`Pr�gU�}��|)9݀��Ao7�d[��ڳ��A}�hZS%�~��9*�s���Y����:�l�H t����C��y`Xa�t溫�!�T�5����2A|.�M���YN�v�o ]b�CWR16���˵p�r��,�T ���k��]I%��)`c�0�N��VS3�IE���C{�4�<��{��YД��8�����K��-����9�\��B��A�|v�.�j4,E?�5�WgfѴC��b�Q{��W��}E��h�0�}`p��H�� ����"���Z�R�O���ل���70آ����ܣ�Gȇ�O��0a�I����E�ʾ��� ��0�U�p�0��y�j��ߊލ�h��/I��Cr|k��E�f�i �S��n0�����H�e�g5l�k��5ݘѼ��Y��e��i\�*D���nG�<Q�Dk.��K��Ol�� �����רPRa��;�Z��f�^!0` a�%ps]0'�0�l�@��K[���k�=� �G7�\V��ͼ�&�n{>p�6T)qH����>��&��e�C�Atn{�*p�1/�o��dy@�d1�vҮ�,�t�|�J��9�"A���E�X�/n�<�h��Q^/<Q�">��;�`����t��/�fb9�ں��$�1f+Oj�P�ʅ��19JYD$/��P�'��]� 6�@�����!|���ap��:{�9t9X��%.�"0 ���Ҩi�3�!0� ��-�*L5��]�����<!��.S��3q�h���r�ſQ*,0`61�0�-�N@=���k;����W)��m�=c1��ͺ��H��BM0���������Ƭ�=N.�����Eȋ����=TR�aI��8� �U�R����'sq�gXV�p��@��a���'p-0`#.T_�.�=�k��|dC�%?�y��4(�gPb�uC���nY����#�k���ah(j�E�0�ۿ���3����,��R��( �ٌ`��;�RJ�q%g�ϾeHRZ�:.Xqw���"���Ɲ���G��*��?����b���h_�aC�@��:� �,�y�����F�r�w益�� %6��j�:\���Y�������@u�x<�Y��oy&�����ߍ�(ܛ��CPF�_U����l������> a@r���g�*o��QA� �*�2ϒ��~�&%�|'�ūܷ�U���0��r�� �v��X�>o�"�ᑜK0rۺ�܍ԡ ��i6]��08L��tTG���U��t�0���I���3���o�.r��7�C����"�Ia�M�`p������G�&��{������E��`lU���y`�q'�\|ͺ��&�d�<��t#X�r�T�4 ��['u�M-T_x��6�,�3QW0�e?'��#�}��fR��x�� �MQ(U�c��0N�J'�����Qd�Q=���'v&��$����R �R���$�ǽ>z5���O/��L��*8R!���t�J��n0o��7Lz �{b=�2=�R,G� ȓw�B��K`@ɥ�%:��6sV��H%��U4W۔)�'�d�.�s<� h�lj/`%��Z���i����8Hb�j�s�Ev}�o>���������}��ag`@�)�!y�L��C)Fl�4�Ѓ<8Ͳ;�bm��^�eG(�e)F�n;;/���d{��&99,!�<3ose��KX�����H��yU��s�l�`�}�۩\ ��ݤm����.�GQ�(e��R� ����T��V��*A�>�U*؆^�~���\�͙TUҋ�a�1(��黎��w(g�;�W��� �e�����j�<cX���<7X�`���]g�PU��t�=���9�A.9�c-��)��.-�=R���4���=�L!�(�ŏF�bTHQ �g���A�"O��`�1���sk�"�&�C�}d���Sr6HF��y��,��CKu[�Y0藗�6�mk���}�.�ߨ��<��@��&�wyd�~�*GQ�zZ̃�u�m&��&0Syn�Ċk�6���gt���C��I�&m�6D]��H���6Һ2Z�I'�C��������a-{���S-��I����Z���%��!8h��V�K�B��.�ѧYk� Qa���D2�fX�E����+J�}]��,GY�4�|P���<KX�q�r�Lj���It��WI��V���A!a�F��Eo����&��g���+2�����^T���VEՏa� y*|}�4�:w�ĽCg�0���-0������ ݜA��G��Ռt[�����x���$����ѿ��4���ƨ�A�ʓyhI� �Ȓ�O�0X�D9R�b���`����1'9`�^�˳��cM���`ȴC?0�����'e�$��'\+�f���y#��$��9�$��/1 K&�r���"����=��bD��� �:�`��5~� ���E/�s-�@y�kj��a˳�r��#�TE ?`UskIV(��4�����g�I2y�r݅A(C�-]$9X�em]��[1 �a-t��>�"0���t����>���zV ������%uѮ<��0R�"��J�� .�"=3�Hmӱr̯��8l��o������:�YɁ��i&&�$��f�4s�z���O%�ݎPZ��+�X$�(+r�_�;V���z'�Wn�Ԅ�8=��ݪ�b~���p��5�#�n�/ձ<1�A�)jrJ�xN#���� �%�_>�s��@��߉��*%�|��5_<�G��(��&ՕO�6?�!�@qPm���;)L�f��0�>�8m�0��Q:Z|���VBN���$��*^�wŌ�g��:������F������`�aș+7a��P�/ZR�De�Tc�m�8��fZ�:�F`�j9f�t��ح�~�� ���j탧ǑyN+���X_�H|[$�5Ҵ(�Y_�U*�j55;(0H�}�G�o �a�Ǐ;�A��@tp6\�y(h��]����`(��!��g����J���2[��Y��p��At�W��䀊?0��+R5̦��A�f[��Xs=�-�t�����C�w}��B� 9x�^`���i�/���)�|/Q�O+����RW=ZU�)&�,�M�Rz5x]r�Yb��D�eܝ;���b���d,Ƶ��\��3���E�6�م�s�Q��S�"h�"ɁtUf�9�A[���sH��hl���oc6ΐ�do۽x����v�o�0�fR-�}���_A!`���;�]ŕ�9�7μޯ���"ˤ���Byr� Y N��]u.�u$��~2�r~��|@6��/d��E�����)�#�"CXlZ�\��W�P��5GN��C)zI7?�B��� �*fYb��܌��T|�Ik���� �~�]=&n��PR�!��~{�M��]4I< ��<���l#&P�.�C�1�Z`�&�Y�~|���刽6��L�@��80�d�x6���Gup�.`�x�0����(.Z���ఔm�_#0�9Y��Ն2�0��PF`@��J���Q$����%�K�?�V�+�<�u���k�������;D�F�ݴ�/�b$)���hƮX��&�W���930x0�+?k>Ây]5b���i�� |T��Q�*�X�P��&i��y��`d�F��G��.�R�L$0LW� ��R.�40xi�¨����a�䀒ϋ�Y)N����� xt���.)E[F�3rd�X�ߘ��A38K��r��G3��Ŗ��2�yX��%�W���`�&�����H��н���. ��*���O���a�j�Q���P��E�܀�c. %��æ�-<u<8 }�>��$�;��1��kR*r�^y���|~a�����E�H�/v]��{������������mE�"���� �Ua5d�u��<�H�F�b7���6��sM��TJ����~XU�����K������(�-⠇����k��ď5�vr�۴כ�&N���ރ��ra�P�T�D�q6Y��� �46j7�e�]��������[�]ִ�-��Y ��L}<��y����o��N:sN'�h�CX�����͕l�m*��������F�i�Wbxp`���f)n��-�?fnA �$u���l`p��&���� �t�9!n]����չo��$��e�\ay��>1���*!�g5��{|F�P̰`��Ra=v`��7@�1��,�8��9�$��7a0���y60@�����ù6����F!�47�Eȉދ�@��o�4/����Xs��J���$��Ыn�q����zX�S�=E�Ƚ�A[~r�n�S��A`�B��.��Na*�0���ƀP |W�P�(� ?�-"<�&�b�\g�{VC�7�e.�ə̚!L�� ̸��8?���9�6��}����;�V���'?�� �נ@��e<� !��F�,?����y�= 0@�vO��sY�B�@r���W��<��"�5��^ӟ�t+��屿����O�Kߟ� j�"0@.�?� v�:�Y�Eݲ���O�p����r��4��AAԏ��[6�K�C��,~0���Q�c��J���3������"�=5-�9��@`�����X���g��OtH�+cY����00��5$�Zl��[ep�܄.��k�W�$�0�����.y�<w�l��D}Z��Wy ��L�Ë���������i��ˬ�ٮ�3,$�q=5� \W���A�P*Κe��h���#�� V�,}@��Q�����R�m9ğ��G�=�J�!���ە՚��h� Pi�닢��Yld0gN(�)�лT�~(f8�����flVa�_���CBr�� ��������[~�RZy�,�T8�����F =�y�s����%�$TIѧ��e]`���1�?��*�}"6� �Dh�>��sj�'�s�߶�m�%q/��r�p\ �H*�{(�@��Y�v<����A��+�c�D.���IT��i7�|CL}�\��on$`���I�͑]���V�^�P�X�Tw�C\P����W��0<� $�Xɫ09�W����$H����e1kt;][R;r�"����?���`�=��F` �fɁ��AbIe r�~&�D��&c�(WyY!"D��]�f}�{�1��-�x�F�#�"�@��eG'*�@��"+�U�c�H��B�`p�����,$��Q9=���~�+o��u&����.�;�]$9?�+9�y�.�y��<`�u���p�<�� =�()\J%={�wo�?�3���_��-0>*�ipGE3Sq�T}z���F���Vy��X����ƊؑZ�K��W�RDP�p�$���}�:�'qxA�c&��l_�ړ�ʹb��d6� iA����4]J_(vMD��L�����{� �N��\����+W(9���*.F��Or�w�(KV�d5�/k�m���`�y��(0�����J2�q�H��Ϙې]��Φ�W��'�ZeEW�q)e��i-�n4�������>k�x?b���^(�}����}��*�kj���}G��,�)���E���0�-Z%-y����Co�L���9����dxe��V�z��=�S��>�iH�B�ʝ��%|� ��.���7��r�2�ظ��߉$9�z��D�W%�=F0�8���X�˂΅(����F�"�\0��LjA��3X��I�=y�Y�wd�Ξ]����?�\1�~�k�a;� �R��;��s��C��1�5�����U[��%�zl 3�F�����6�z��Do f]2��S�T���[I<�@�#��G�Xo*ѐt�O�G#P��ur0)�T�u\l�>�@�x��\/��1b�n飋�@E=�R�Az����M^.^J���T��l{�9@���,�}H�Vo>4P��h��P�6����h,����2��a��7�l�pJO��_�L�H�<Oc((נ\^3�����f���Y�z���1]⥆R-�0���f���lb���d�]I��T���r|�my�#@�d�E�&�{=�D7���x�d��n�`�5�8����H�"���}�TγL�"������%o8r�O^L8x8x��r+��g�V���=��*��A�xk�f�YV&>"/�\�YlJ�XO~`nf)p|�Q9TM�1x�AJ�eͬ���Bߤ<s?��L�Ip@�*���;v�c�XG��N��q�{���%���p��N�g"���!��p�r�����w�/ z0��Ŀ-�9����q�Y�H�W�(�M�T��F>���'&J�с ����pi��9�P���V����R6 ��GYx�i�`@A ��������R���Q��W0x���;��&9h Ŵ�U06<��7��/"0��:'~w��|�!�SI�V`�иIɰ�_��u�R[ш킒b��O� H� �4��` 9��{�d]�tQ��E��P������x�| 4�Fr�t��E�;ǁ�XY��"�At�M����g��4�9��ϩ9"`�4��^�"�N�"a 9[���E���"4���r��9�^�:x~ӬfMX*�l8�p�⦱h��IV�O���͙�F>��!)��(/B#�k������ga=w��)'jQ���fw/�e!sʱ���X�5��Hd��n�=��.OO*G�7t^�%W�!=�Xm�I�G��T�����m9�6g�T�xܻ��F�tӳSNA����I��rY���s$��qx��\��}B�C�F!(`��m�T� g���` <��P8�VB(�L�i9?�%����{+o�cҥ�zV��6n�0 ���\���*���l��ה�`@!+f24�/�;���=� �D�E�2�qa@���B@�"���3r-~�J��<��:R.�a�{��9�_��.�h2�=ѡK�@��`��=�ɱ0 �IN��AU�F�}m�!�^� � F0�x�A5J�y�r�J��z4���9@n�(ԕx�o��C����b8����}�a Pb���W�j�B%��Va��[܌�XQ6��)�f�p=5|R�Mȱ�Ϊ���+�÷6}?���YP�٦�\��|��v�p�id�7U��1��0�����J��LK��E��/��.bV���@-<�l �H���)���A{���Q'c�9��K����u�0����k<�0P�Y�>���y�^�|HYx#�U^���i����"�����,ި^��Lf��c�2rR�r+����8��8���?Y���(�k � ?fW�ώ�H�n�W"v��KܱJb����p�ZMv"@S���~�a�uX����tn�캛�"��=����{'R���T6���T���l"D�L)�{Pdv4�t��D�����|f�ȎDY���0Xu�yx� �0����~,Ғ� ��'a������ă��,�#����>�O)aD���)��Z���������-+Dp� �r�(U0��'g�e)<�?��C�룀��([�6>��Bq�.?�K�[�F O�(�O�k�: {��<�]=8�r죝Ѳ��Q>�#�ӛ�-r0r/�����Fh��˂��g� �0�j��ղ��0\Ӫv�n�{�A�#�Y$d�����0[g�}���[TD�L�;��g��zG�&�:���R�Y��|�r\؉$��;��?ȱ�|f����y`��A�ȫ���ռ90�:��\ k!]�=r�@)9��l9�[0�]k^~�`����<�{ϋ�׆�_p}�����~�D�[�F��@5���r���C���a�Yӄ�v�b����G�G!��E�Ov�<��q���r����c�Q ��#0P��צU�+2��sG������=(�Eƛ�x2F��"�X�+#�/��Vm�Ѐ\|���x̉���r�Q�Up� q�P=�Ɍ�!k���5�滭j�1���a@�J.Wv�Zw,Hy'a��I���b��E�60���ogb���f:���á�?%�ʮߟ�Ph<��2��,�Mf❯��g"k��=�>}�﹌������W�MO���V~W�I�TsAH*~�������xA�ʰ�����e}-CE.�%r�œ ��5�x���$k���+E����Z�e &%0>�2�(�YU(�!J��5�Q�Z���F>,g�d�u�k�B�?�k�X۷�g�\�K8���2��)�vd��(�O}� *r��@rX(��J�mDI��D���`�Āy�9I�5��A\��]�+�g��0d�� ��Wr9�}̑g��Zp0c`X����V�f!���E�9�w��)�� ;�Q����,�6����ha�ʸ��xx8�ɍK���^-)�X��xv������?Y�bJ���d�焁�z�E`5H���"�]�ad,�J��%j�{���3N�`�,cO����aiPՀ'颶d��9Ѧl�` }��$䎸.��E��>�R�'OE��ҏDZ�]4��A� ZZ�p�{���@��}��ES8ߕqWE|K�)yJ��I~�/����u pŕ��y��*"7��ꇭ�MM;������$��yg��n��P��^��{�֊��R�m�J��A�V���Յ�j�7P�=��bPv�p�nk�Q��K�+@l�߮YcH�%0�p��ӥ�d/ �ޟ��걑�!L�Û��&�R�"��/�w�>]mcp��r�;,�H�mo_㺑��|*�N*�w��x���]W�{�71�& �u�n���em�g�5��HPs��&;r h0��&�g�:9�B��s�]��*��ݸ�)�%l���!�=ڙ;>&~��0!DX�ΩtHyoa�8^0�ڏv�ǁ��ʽy0�B�{��c<w�iF����[�����Wqߟn`�z.l�\���P���\#�i���X*����=[l��xy��EƫJ�����P�y��kp-�80O��;�v�l �1J�7�`*���o���P!�"�j*�9�~��z �t�ó0����z����y�4j� ��~bӸ��`?�_e���՝�/���`G�;�&9���P5ՓO����"7�.�B��t��d�b���`�V�G>;HfWM�ֳ�����;�m����h؟�QT��1P�JR�P�2Ox��x�@�`�.J�h�%�^���4���Ϗ#$�[�L���Qe�UAQ`��M�j�l��:��.«k�"އlM���-\9�^�t��yՀJD�.��|Vݲ���t�8��ȅ��m�j�e=3��j%k���:d&����TT�m7(��Κ�@�� �d\o���(���Y��[�PPE�l��y�P��w�$1�ͻ�^�7�C�<�Dp[����=�b�},�d��� -j�U�ᘲ��e}��t�ۑE��s�EjZ35�Qy����Tެ�kn-��n��#0 �}|�y:���U�݉7k���w��I�!g#BaM�j�_U�ei55l֚i�]�@5�7s���@L�z���J6l"��@3�������vm8�%���Gf�7G�bf��AZ�NQr~�&a�BeW���sW\�}@��6���y��kIϡ�n22g�/�������`�-'[1;��ah�_�Ǐ?_�q�� ��+�au���t�V�l�r�0>��䇃�:��B����aE%��`�8\�֟n�r8#P>��GQjm7��/hl��Cw�31-Ҧj��y���.-�M���4Yq���n�iJ �H���ł��M�j��K^1XX�(�v������2r��{�߾x�Ʋ����{�����z&�`A����q� �9��%W� ���)d�8����b~�ẑ�M�h�r@X��G�I�\3hR�D�Z�A�S�ҍ�>�k�A�e08�(��g���50����aq ]�A��hv 8$Dj�)u-�����^SсK��5./+�6�r�3��\���hl�6}�5�Ve���<��.�v�A��$륩H�����Ư;/MxOћ0I���$��%dy�Y~(��k�� !�������Lk�Q��z'��$�2��t��c�Nw�|�o�g0�����Į�Y��K-�/Ɉˌ��K�&��l���7v1��,v��qzCɆ�~�[���ev�9B�Ne��zFa���SW�����ƀps��౽���]/�NU�w��ôJf.{��<2>[� �(�]� jW���E0�Z$�G9���l�J�I/0���*b�ua�51(�?�<����>���� jO����kS����` k��-��ϳ��Q��J �X�^�B���(�#�_�ꅽDnBiL1���[�֎�� E�\���@����k*��~�J�V$�ۘ�TGz��W%qM��(98�&ã�����9%�p[E�&>������M�����"%�iTZ���ݮ��=��b��~���ޤ¥�un��_g� �t���� 9�{�{�A�h������˦/H���{�Q�YAZr���%�D������8�i�|/1k��9�l�x�[��u��Ӑ0��b�$��UF�hf��\R4�+r ��n��u�+]��堝?a��������K��k���t�qa�k<l�s��) �*�Ƀߩa�ߌ���I���~%�G����3I�ԼVw�%�Vt�1�<���ة�h~h�����"��}C?���;p��p�iJ�Nsy�p�M$M9%�(0*�zm<��$�,JǕm���P�X=�� �2��U�>���$�JSU6r�KE�8��) 8ڶ0��ܻ��K� ������`�`���`���\��h$�k�u�A� �{?�n?�RA+�� �ea�.��\��J��|�k��y��S��F0�Ly<N�it����{`e�i0�"�Y����sk2�͜i�r���,�-�0�J�|�V-�(�Y(���ʓ�R;B�:����W��}�Y��)%Ĭ����@1&=�1�w���z�q� K夷�V�%�d��g>�������h�K�r�1�(zr ܤʍ�Ns��璛�ef& ��r��'�4r0gk�$ r�=��$��cK�\/&��f������`���hP��<ξ'�ᗒ.zYv��5͒���K�Gfi� x�a�`�� ^���fא��Wn����rӷ�4��Q���q"��� 9 ���+�$�����,s��O^r=��~ݵ��Q�>��V�*�e��YP�p-�@��'�.jc���qTq�����.B��(�5�@r0(���0@�_���y���<0�"�5o���$�eq:D'u[�k�����cJ�Z�5��C�#�-b<����̤�lG�,�ѐ����Tτ�e�ļ� &{Ŧ�2{V�k�����U*th�9�>���^�t�2�茶t��,��4Q����c�8<��S���w�扟�uS�5��M͂����h����~Z��P�%h��{�<.�E�|U�$[��0�?��5֟��`H#� ��3��^QXI�ܐ��b������-[����h��f�aM2<�4>PV��,$1�ZuF���{�=WY�0��A@���w�S� x��aQ�[S`�w��Io 4ߝ�E�����?�%�)���z4K� ���+NH��+�5�F$�s�����`p��Qr��e�b]��uh�aÚz�(�,s��z �k�<����2�E���!�_P-M�UP��s����-��B���{(�{��dd��`��1�$��4,��D�(�`�.l-0�ĸ�`l�9<O�n{ǖE�B�E�hѻ�,�o�+���n�aJP{S#�1\�"�o_��m�"y���A�1%��!�ޤ�������"0`�&0@k��/Ȩ��h�s[BQ� �&�@UZ��"Rq�?/�9���+]W�s[���C�P研N�ֳJI��7�`��J,N��RK�ÍhL��ϰ3 � ��c��r�Dr��{����Q!�Ou�W�O�Y�J���۾�y��|��s�O��tF���Ȅ�Qa���bO��� V�P��"d �n<�P$2�֒%K�B���&1I��B-���-gfz���=:��A-1�;n5#��L�H2s��\���o�h���|����!��!���� �O�!�9J`uS!�!6 ��D<��R<���������ƨM��Ӳ�a��-%��A)e�e��Q0V��I<`���"�ȑkP�Ł�¿�0��}���q��~����xY�e>G�;�@�T�e���+|P�u`3N6<��!�/����p Kz���ߏ�k�9r��e���C.0�C�U�v̍ �)�D���.����ƕ�߶w�����*�t�଼}��N����[�$����_���7)�E~�Rj0�P�p ��"�"Q���ݫ�##�`��g������&'� +� C���~.�|����r��Jؿ��:Ϯ�;`s�B��uy�L^3f��!?�M�D��uG���E�'K`�P�@�`���ȁ��3��"*H�"tH0������C*l-]����qk�<U�]k�k�寳�袾�CG����r�hF�t����o:�a� u�3F�(�FB *&��h�� =�8�,d�c�Hͬ�!Y508�L��S3CC��\W �Pm���vq�p��k�u�S����"n�n�o�t�����rp�5Ѹe4o)�ԭ�[vqf���B������Y�af�i�qZ`�O��Y�Uhs�_.�.�Z�M/�%��)�"�Wc�1���[�|��L� �Bq�R =yUT���o��(>��ʭ��[�s�"�ZI�������ʉq(08.�r��E)�ؖ+�s���{�� ˟�]딬VB K>܊�S��d*�����0Xu�(g�$�4�d���d���<�~��X��fȡ�t?������+~0��Vr�5� f��L>�x>�H� �燁r����!|�Q���A��-F�f�g�'���炔����W� ����~��o�B&�� '���}��~|�S?�P o�lr�gC>�����.jD2ػ\\�+x��X�6̃R�N`����o���[���FZ7(�u<%�������p�t��]�]���ȁK�E��`���5Kl�e9�.+t% L�$Z���gi���Ҡ(��A�qtц�ЏH�?���pr�� 0�qy�CT?�;q=R����?L]��6�u� �oit!`�� �Q�Ƀ�b;�y0�GU&�Β��ч�!&qq��i� ���y����l��֙2��N&D��bQ��F'\�>q�d�Cy?�Es���J�t��or�EE��(�g�a2�����n���r`�2�t�!��S�xͼ�5]�<L��O?��N���� %� �4!=̩D����7-�;�j��&l0�@D%V�O���3�z�j��KW�H�,w�]�r�ֲm�T ?~�(��\Ɔ�k�� ��??y6�0��'0�~Lb=0 ��}YT7�RXS^2��>�4x|�z�JGe��T��!Ha{��=��ic�B��'~�q�9��i���Ēr�C�P� 9���I�����2%:�#0����'��@�(a��$B8t��9^X����l�`�!U�w1N�s�P�;�<$�y��o`��D��� �juv�3ۙ�o~_`@|�g�������䡍E�3N0@9��6���c!�D�Y�)�_���W��w3�P�3ap$�r�g��E��0`���$�\� f됓{���ϡ���5�p/��VV��l�����Г�@sE؇p-d��{G��hB��E�s�.����〘6�������a�״18��g �@��u�y�p�(Q���ŕ�l�q���%σ�C��j�H���|ڠt�,C��"d�%�g�.b/�u��a`jޑ�o�g Ӓ��ה9Y�������[on. ��TxJ�+� ����m^��wh�Wl�2ߣLXs/|C��De��^A23���ehV�Zў�5U�~�B'- �6T�:�3�a��ܸ0t��5;�\�Xh8�\�֬�f�����h�G�@�hUj���� @՜#��݂�1�77k1e�����M5đ/*hR�r�$k��iES>�A�n��w�%�)`(�DIqp��}-�Zkt7;t�2k#]</0��H�ʍ&��$�� ڿ8�_D�eTzQ�U�����ܫ WP��*h�eIّ��� �s�q��¦0�C�Ϗ�Y�n�gק$Jm�ם���� z�g3�����`��}X�����j� 5P��q���J���u�!'����+G0�Ò=�%��)��`x�^-�0�a�.9`���@`=����tc�0`})�E4���%�9?�Q��� �-`�y/9����}���äa,AS�Ex��#ٜ�A�%��E;bi��^�Lx�A��K�� g�v��n� ������a070�N@8�Tt3��<C�ݼ<\��x~�o[���-s��羗�T�`Я�K~(��!ß2|zYq��T��[rϾGE�/9� ���$б�f�+:]��_/�Dm8��u�j����A�zR���Wc!B������j�����5�l�){9[<���TQ�4����;�2a�bb��OO�&\�Y�z�Y�����@�~���q��%��9��ߙ����1�Y �_It���[�yα.��(+הD�fX�+c�[&��'q+�)�ݰ� ���'��&\"�ԁh?g|���J��rE��Q|d�׳QV¨�s��̳QH�ƶ��4��>���Ol�6έS;��Y08�z��ƒ�V�NjV�&� �T��2TG��j����0�_ ia��;s��T�(�ۙ�� ���R�0�B�o����`����q��+�L0p���K��ê2c�9`GN�m1�5g۟G�aa+!j��9X���P{�,��:z��������a@s- ��-}bt�x���j��"��Q���X��Q�1V�i๏�������J�-�|T0i�g� ʐU���n��6t����((U0 ,֖����~8���E��W�9�(O�{�}��.��9�&�o��-:�/tQ��]�_غ&>���(þm��4v��8X���ox$��"�=�]Ľ�r x��=�}�%�Z�>` 9P�9 6O����U|��{4*kFI�: �9@�9踇�ET�Y���f�����yN�E�C�)��y�����|����P��"� }A��a��yѸZ]��~�gP��ܲ��r�D�I&�,yUȃ���hX�9Q�Tc"��!ߧ���& >���wfGF`#p��[�L��q8�,�Xyߠ��M�M-Nqf*�¤��P4,%���i��u�9/�\�ﷺ�-BS�tB0�p�(\n�!�`����唃�wr��*��D�' m����a`Mo��=�<��o�Y"���E�s��Zz��dY���A���-�=w�B!�L�}͡Ϛ<��xޡ?�o��Tձ>�@�;���x_�[�2���@�8�@�E{�#��q ��{�H��)�a�IT��{��56�S�M0`o�:�y>k���a�������a 9��)wX��d�Ih%�=�G~ 0P!EV��S�0Xv'�_Wh��ﻞ��~�����B��0O���G� �d?�9�� ��cN�E��U՛��'d�ވ$�u��Z��9�k�Y�(L�w�a^�=c��$�_I0@}���A����E� ��h��0@ �/�|���#g����=�>��E�H�V�H:�3L���h��r���P�#3`����pr��EQ�?mأ�haȨ������9��,�"]$���:�Eg����a�.�=:LS��Y�pu�{��I)D��W �*�fY���rf���:���71��)g�*᪲]�Kbэk�T��gb�� ��9J��![dN�?�����O&ɗ�]�H� ���P�GN�5�#5�m�)��p��TY,�V���ax����N%�q C�kD(�Ά�~[e{V�t��F��Q�sJ6��(EF�P�`1e���,����RP�&y�*�!�⤢L�����%%0мl��^�Ď�� 3lvBh(�C��N z��!�R.���A��]Y��>�U��������2]ŕ{�JS�e�0'���wZ����Pت��)5Z���'?pV�`�M�q�%#����9��,���F�x���!�� �p)$��k0�p!���>0H&��FP���(9�W��^�]����R���0��<�[��OZ5�� ���?����a0�i<0��`ܭ�Y�?�TM�/���w(�������O��ЉC\y~�?���ں�1�4RR��v��8� #����\�g��;�#F2>�6�]�gݖ.B~�y�:�9�.zh6��K�����#�<�t���Fr�"9@.%x5�0@���Wyi�A��W�` 9��^�3��v�<8����s J�����D� ��aP� �4��!,���l:�a'��(�.��Sk6�/��(�f�]d1��z�o��Rx}�6�(��q��n�lg_?*�k����f>!O`��֡����}x'��)^�{��.��2�l:c���E��$���Z��+B��U�4�9�"+�Ra���Uҕ����D �r��+�L5���e��U#�[>�F��j�:�j�M1�C�q���Ѯ� ��:��L�0�¶"clc�Pॎj]��YX@(F�uh��}H�(�{��U<����6M �ȱrDP�g�+�[�C�9��Vj)����Z�3,��QD��W�0@Jr@!�)9�|��[𒃟�6�d��[̏H+X�ۨ���UD�x���o�z�g�~H�#Jؕ'� �@��化C��A|�HI�~�vn<��%\�����GV콚��e9���"��E%!� �F���$r�<�}��{��s��0�A�P�9�Mu�Ah:�i�����3�+ꝶ.BiJX��[���Cq�<$�r�$�3{.)ѡ1�\�%�d9x4��t�t��(`�{�A(`��a���3ދ."�(~1�����.BOJὔ��!�6� ���V�!��ϺJ���XuH���y 9�y ]�<���!�"L��O�%=o�Y f.��v�~��t_(Ml��<^��n5��Y3?m�ʟi�~p��I�w�W�I�$8?���ZX�;��f�g=��E=,Z���a(���߲�Pt�8<F����*E1E�N�S!+��n�?��V~���y�y4FPh[ E5g94q���xRl&[ME�5��4����z��H gI�ٱ$c��������@*)�`g�(38������4# �jpF��E�4�`0,�v=?MR� �V ?Xs�I���Oφ����;"�bW_�K���jڳ���+^�̒Ԑ���o�����HP_wÚĊ9@�5��'������Q�'�&(�9,����E�(� F��{/*$(�����>�?�a�9�&�w3Lx ���a��9ئjl���aP���wa��;��gQ�W� g�i�C����[�9�1z���p0 d�sk�+���?�$-���5��c�T�X#0����R`�/��+(h��E�Ծ[�Em^x�y��E��^:���. �4��S9p�8�u�E%IZָ�7���a�(�x�r��$�`DI��(֤F����2�M��� Aa�I�Y[YIxO[E�W���R[X��qM�;��F�����֛�V����4ONNFn�-��7���Ƈ��a(�m��9�]e��Z,? P�����<A��u����F���P�<���C[<�p��0����bi��=O,�=��t#�<����Y$�s���U<%�/X��2�����igI>�+�cMy� �$� ��V�b-h0~�k��&�^݊p�St��G'W�<�ٌ8{b�g�s��Y��a�h�U$��'*�]֥.���,�^�u��c�gc��ܢR�9@h���Ƈ�����%r^�(���ޑpe���?.��x���B���#W� ���+'��گ���z���Gf��U�'��!���4����G�'��f�]x�\�Y.TfI~��]�d)?.�q��95aV��,�kT�lƵڂ�������`�����[(U0�7e����-�a�\��wx/r��@� p�r徳�x�䣴���5� ػ!_�� �r bR�8e�&K��J}��wY�<;�Δ��h�|�xq)CD�.�YPB$җ�B�X;�G���p0��v=�[��ۏ���}��O�y�C���.���F��E`��hj���^���ϣ��}!��J�(9����|� ��������W�{ޮ_��nfe�t� �9@��Ay/]�e�Yx���]�P���p�ۚHX,x �3\4#�;e\I���~s���y�:�<u���"��t����%%;�,ݢ�>%��,�͛�wJO�+�x��A���$e\��O�r�Itƍ� sj6�ݧX��|�����WHq�M;Q˃ꔽ�de���7��N��T�|EAE������xy�Y �(�Q�Sb��5W��A��w�m�U"��@��L�j���b���J`�wA� ^a54�$���<��(�c�Z��:��Xw���`��.x�rK��or���n1 '(r+�,�(�� #Sc=���f�Q�~��lg�W#WC�K͍�����Lc��Fy4,��Ӫ��??\a4��C"�`@������˶�ݝ#�#H��t����c`�{r6�y̷����i�����5,9�y84�s#�[��<�����*9`���?~��ȁb��(��N)t�lQ�`�k�C�E��%=%��̒m�ih�z�-�i����[����, 9R6��<��ǃ���C�d�����Ss�:r��諍e�ZmIn�@��wvPë^��T�� Q�m0�X�/��<0� ;�ʦ�HQf��@Q��7(�O_�%��3/��4��"zUV��$h�,���\�}��������aB%s�%�k`���ȃ��s��.��8��?��@���]�n�گM_z&�@��;0�@A9#�����Qr@NQ����u�P�k/��&�_��� ��bV]M(n0��&U�5����!N��|V'���)��K�$zn)\h8��@�R�gW�����~�`qo��o5쵀X�*�����w��ZT�j������;MTP��^Ú��t� ?ڊkGO�:I�.*�k5^C�B ����g���C�IG�ںK(0��`��Uv�+��`=�SPC@P��l�GwK��r�IĐ��kL�"/FQ5#�����S�k����X?��T���Ssdݽ^���$�+�@����֢�w�Ck�a@� ��Ӟ��*X�$�]�@�����,+��ѶJ+�`�}�|�s��r&�C��FC*��_��)���_͝��pA�NHʪ�y$��� ���J`��H�G`������ 9�����X�.y1��&x��EN轛�?T5F3r�������r�A~��`��sZ�����`�����˘��A o�w6ؘ���>f8r��rxQ�[�6��r� !'X����j�N�n<O�����k��J�ϣ���� �h��ES�h�;�0�X��/��Y�Mfx �`@>4�C�j�0��E�z�.3���9�^���C��%��T�~p\�Ew�8-�p�}zM t1�d ϊ��E㐽�p���>;�B��A�U�����Ѡ�~uHG�<�.�xS?+����6*2�u�3K�tu��˲$6���`Υ�f�/J�+��t,�s����$ƙ�k�If��0��'�(��/�W��g�*��TP]��bͣ�e*8��c �}��bc�Fu�f ���Yԕ��J���z�,H�x��l�i�E��Űf����e�Gɞ����V�t�k������ȿ�H:� C�:mx����vD�=<̤;�R٬��-(-�-�)�0������7��e<�xw� �5a=��kt黰 �Mߘ:�W �̨�d�� oυ��ھ���ܢ�o��i���y�\����T���˰�9$a��~z�p'�fb �֕!�*�RW���b���0�>����rm����f����sc�����NhK�H( �G+9@��wu�O��Iq�Qo���D�䘶|�yO�����:3*����k?�~���y+�9���w�/J���>�b}Ye�`�C�5p�o]C�^�@F�C��A�/�+<]0�A �9��tON+��(&QEZ[�/:t�x���ʢ�L�%�+o�|>�k9H/Bp�`��!�a>^r@.��j����ב.�Y1�ݺrg^;�����_�Z`@��}6�$��+�r��yp�y�ѳ�./�E*pA7��F~�qJ9|FR�@F���@��`�,#�uH��bﻎԿ�V��q`!Q�eC<�d�2��'N�Ÿ�f���� �η���ۦ�z��U���A(�p�q��d�2ܮ�dBqQ���*X2�,'�4;��Mƕ�� �E|nC'���w\��B)߭RÅ� {V.��8�%�.}�����W��X�+��(�)�����W�a�_d;�M�Տ=����X�1p���bY4��Y̗�xa��X�PR[˱�� 0�P$xfI4n��0�.�� ��r�7y�;3KVd��ɂ����Hn��ċz���~$7�-F�iy���Ϛ��eI�i��E� T>G� ��\�FG>L�A�� ���3`���8���sPB�5��+u�{vS�?)�=��{��Ua�� ��V#���#�쥰��T��`��eyK��$�ңTb����`��kA����9���d;�;��M�������cn��srE�)��,+㳟��;�k�`/���ȸ�3��}�1�XMC��#��g0�� �71x���Z�]��@%����7�ϐ�{1*]4��P0��Y)�Fq_�E��/��;���<Y��P�<���� ��˺�{�u�l37�\�F&O3��M� ������`Q�@�7oQ̡�����[0�h��mꢍ9�c�uh)��m�Z�j��R�ypYq��7�����J'WV0H]����.n^(e��න|���0�VΊP ��P�Ϫz�����[��>>�´;�6l2yo��A���&��=YY�j�Bao���*���e&�j��Vm����#d��[��`&���u��T�9�IF隊ReAe8���k�I(��u���;G�t��jRXJ1olGD<vhI�f)��5��O(?�U��� *�����ȓŔ�~s��ݑ86��S0�<ט��){�Ɉ��d�������b@�����-�[ ��>#�5X��Y�� �m��5�j���R�6�;�(��JKj�l�'���|���}��&�ӛĿ�s�Y����_��o�c�~�N�9�*a���q�~/��G˃Gs�Ĝ�q���U��ٓ��̰'ƍ�?�+��� f��Ĕ�"�|��L�4|g�W+��(WU�Y�+�s6�4^���7|�9��i�yݑ;�5��Wr���^I]+� /0�����T2�x ������ >�E�y�Y�%0�2��s����/�x'J�9T�%�6�~��ܯ?�d;y�q�T���R�Z#�<9�M���Y����w�~����q�ߔm�Ӡ�@�$�"(c��a��6�/`~VR��ٵ�t��S�H����cGr��Z����'T���� q�O3l�>?Q��+V�t��&��D��%: ǙH+F7�}�DX��⳥�k����j�u�a�����o�]��5��Q(��32�l�a�7!���� �-���o4���2���pT������r�Nmn�Y�v �����\d��@G(eu�[��+�A�k.�0�naw�_��l4�iŤ6���W` �q�P���Vm ���l�ڒ4�qmҤ&'^+:�q��0 �Ъ�N����{ 1�� �5��Ԛ�Pg���v�V�Đ��9\��VgM8$^���`D$��u+'��K̵Vc!n6������W7b����8��-�Q�)���As��Ҡ�g�wυ��r0@)���r��?����lg0��D���Ģ���c� �@��i��No0��k(�j�5P�n-_�fl�ǀ�7W(� ��{�3/��٬hr��G�B���;\�(s�h(V��ZAb�y�e��hO${�� ��.9`������jX��t����O�vk��VYPu�hY�x�;��H������ܩ�atr�}�Y�`{zo>��`t0 �ꬊU�;��9���"�`r����k9�������6<��k�"�<+t�H J㽨�qO�1r��,?�+0��ur�I�/�l��A[�S�d gM;b8�!�f�Y'���_u�t�}�`��+9J�u$_�BQ���?������eM�K=2'ZX�ww�ϭxi�'�z*�E�*&u}�r��8��SB��������TIWt_�C)6�NPQ�� ��� �۬�U.�%K���U�����x����J�l �̲#�Ug}��������YЄ2��ih��}� ! j��0���x kU�*�礘Jq�����R�ߙ��t3�l��7\��F,a�n-��kX�J�A���9���_?���D�~��9�FR�C�0@8�BOO-H�^T�N�B6UeCܸ�]�jGyH���F�=a�0ZF�@�;U-�ʭ[!�y�X瑌 ���/,Y�X�H�ĚJ��E/A�Л�n�}�\�mm>j�g�e�P���[�������@a��a5�q�7�5�W���E���9�e3 �P�;�kM:���!�w��{v��+,U�}A,�=��3]�B�:�\W��`��NN�l� #�!8�y����3��#<$a��]4 �!2���0@��m� f�pȡ��C�<z�P�ܞ��=���ʝ{O���1k�{ȁ�k:��`]ĴF:� WQ�O|?"`4-��(rA�_� .ȋ����d����,��H�Y�����E+~mx~C���[F1��$���y-0pF0x��Oʁrz�JХ��|_�O>Q��E���`��~�z� ]>����$<*6�f�:�mݽ8�E�1UX���I������Y���h�3YI��5�R\�!P���ٝ��Q�����|3���*5�7�Es�9�!�7��:�&I\���òFH����f��7�8����5˰����e��f�DeM���W;oc�µ/k`wۮ�$T���}a��E��%ڃ:P��"5�<�D\$�u�c�5z����q���ɾ�Q���AecYQC�3�;�����vFSQ%zf��+��27b[ixL2>{���k�2&6�K���썘<X`@�%��mDž�C��,y|a�Rdh��G`����+v��|�&��}*?��S���{r��# Xh��L�/QB��U��+��� ^��7��Śr6�AO�@����0HV������wxS� u`��eM�Ka��95�u�֒��� r��Hvwm'0 ���dvs�'W��ѡ���̃��5�&�E?y/�.�s6\�_�`����Y��i��]�B�P�քg�����[�Z� �3�a�О�ea�u���o���Ŀt���N��c�$X��G�#x/��ך����.��`�Xۿ�H�~��5��5凄>�+��*��%a܁%g�$�Y[�H��g���P�[r�$x����O0����,�����"$fKo�����"�5)��M�� Y)k�&�py:���Ӵ�l ?��E�K�ԤN5��-�}V��ND[YB�\�Tk�8"�Y�[�2 ��f��E��4ʕ}6��y% (ݘ7���ȰQ(�N�܋���v�b��4����Rx�Z�Y'���^&�5HY}d9+a�Jk"l&��Tg��J��g�}f��4��T5�����Eϟe�7�'��(D�'[?�ݎq��WZ�gŘ���J`4�I�.TnQ� 8\���;��0`��C��M���/�x�;b�U+�=�����u���(D�LW��GV��T���S�at��q��#���}fQ��p�҇_.���6}|/L�g�g�0uо]�+�{F���|��k������[��;�`��c"`SCzP���!g<�*�����KSr�J~��� �-���G'�I&y���O��N2>w4o���z�-V��iB��<�E��u���ݻ.+�F���D��4�������V���4���J�{���キ���t�.�:�isu��-Ž�!�'W�#J �J~��x+�It����8��0J����E�U�CXR��G�x�-|'�]xN��ߚ��~y!�����kx>�E1we��A��/�P�|����Bٹ<�[�۸��GC!0[K�.c�T�w��l�;�������0dNJ��hS�Ü�.9 �%[C�_DCI��T�y?\�3)1���/�x���X��q6�D����v����co� K���W��<`�PZ�S�\�9�a�d��X�a��K�jGV����,���ĵo��;�?�aM���������Leu�lFs�zH.�x�^nm���p���*-g1Db�Ӑ���|Vh����`�%�.��&�Γ4�{���Ѡ���,֙���c�`p�����j�Ah><Bm�ZzY`�^̿m�,q0` ^��]�'� c����^$칲a���-��֭��FP���r��e��`{;�2kN��m�� R�*�����b]����=Wn�$_��Y���W��2�Z�8a��fWKk��xy�%�v�O�9x�Q4ȁ�������<s�C�,�]����A�~f9r����R�;��Q���7o�+���)��u?�G�n<���)�U�qЃ�0Nl���O�>i���=1~0@�O6��G���rp��|3sV�V\V?�f���p�sx�����9apV�2��AF.��i%���"+r�I#",ț�k1�"����tї�/ �_�q���j�G�{ں��[I��蓚�µۺ�t���0�{�f��g � �3Q���^�a�1����ARW�TR>�,�I�����NS�sp�]>N<ꠈ?�EFU�dHܝ0��E�n�X �|��)�&��pe�����$���|��\��B������P��56�ޭ&���6�����R++�� BN`ֱ��>�Ʉ9�� ;a��O��\��h��P�/O�����:���(V�a���n�/c�wr���ݿe�eU����T���ǚ��� 7�d/�5`��J8�(�Qi��!��M���$��m���°,���(��1`:��Ti��7+�Y���ؘ�nVE `J92q�� �0kB�3����;]�UU�Ѽg�^�m� a��<� X�`�1s�e+������U��3%P%�G�~��C�O��na�qr#�]�}��(|W���;����gᰦ/V��DŽC�nE#"9���C/@���6\�$��r 6���O�B���Ϟ�Yo9�"�9�M���w�",i�s�bo�<I� �/���$Le���}S�<��f��8%��f������y�h�-8��a|���]t߲+������e�x���B���j����Td^��}A� z�ao��I��WV�ID�p� �{���Y�U\/;'Gm�"0eM�3��ɠ�Ă,9��j�U ��@��%�3�2�� �r k.їq��.ڲ 9�A�,�?ψ.�s�"®8��`��]�V��[��V컃�ȅ ��L��PL�TΕ w�j�M�ڸ�_t���z��D.���&M�z"<t�'�bE�YTWU���}E�e�m��X��}�NR@ݷ��+�V�ջ�<TG���G�(����ZMc��PU4���&����ݿ_;ܝ;�|'=�pbYɄ𮊠��a��ㆲb��;�[%���>C���{F�y|����#�i1��l�[�����i�X��|�T��(lP��췌Y ����U��k0�I�&y!�bF �kC���� ��[�d���c�nї��G�7�]I�x <uȼ�擸�{�/=|7�X;�)�rae�f��u���`2�n���ϗ�,��Pv��`�@VR1���-8����L�Kzޝ��Ur{=�G4��-h!� � �F"=���9`�w<w� 2��f�_��q��b��l?�i��J5�[��9�����N�@r��&�J~~O`��M�#�u��gx��;� , ����j�ޗA5݁r�4F��_�PHf����m���Ӊ�S�z!�d �"����$�0@�B#T�!�L��.b�;ʯ����}��Eq��I!w�ǀ���E��_�< �I�ȮHA@��x��9=}��|�5jWU�;YM*]��s���ض."|�{/��� N,�D���`���zL��U����UiDz�uࡂA�"R$<1!�\�ފ�Wa �9�'_����g=�?�n9��,��|@��3�zA]2�z�N�JRJ%:Y�Y-���7��,��3�56w�О�u68<�� V�.:�G$����^?��P�ٜ���jj�k��9�*�4��Ŋ[4'R��*Ө���u�X *�r��e�I��P������6�y��a�u<��!)���&����b�YaФeC�0`�,L��dV�@�;�d~�po$��Q�(��E��W�5 � ]�}&"v-�J���)���_�o* *<������J�r?X���{�v%c�3������k�igg��{���DGW5�w�ϗ���k?��@�^Ћ�����=����{{��s����T���o�_ߢdA��ƻ�?ˤ�����A��x����5�T�8�O���/<��%���e��g�l��{�r 9�/f���7��ʕ�����0���I���i�9c�E]_^j����Eu��$KE�H?���湐�����Y�T���f)�Ӥ���~%�? �/B�`�?&J袋ab�&�����d` 9��"�)��O7;�ad �h%��Y*̞��}�!�-]���:{� ��k}� ��"����Q �����} 3�`��k����S7�t�Fr�u�� L� f�;m�&jTF�N�چ����{>:f<�2ʁ�E�*�$��,@�~����ѕ�NR{KI�e6�|�ʔ�i��j�g6�ꥍ��fA5�dZ1m�x�5�7�� S-��g�q�8$�]ʘ$�BJ_�t�UK����bJ�,���#*|��� ��_�;l ��!�³jf�2O�~Jd�9ߎ�AГ{�~���,J�M�G5ݚ����"��/ ������U?F��� C�:�N��ܣ��#�B�ƀ�K�Hȼ���3�3K���\)ܿ� �iP�z���b*�0�Ь��Aj4H�3��U�=�)����_#���J�P�@M�X�S�9����P�gld'#��n���]�s�w��{ϛ�_�c��A�@���" 0�꜍����u��e����7:|gy���Rz�i�{xh���2r([0 ���Y���b���i.9��;�\�Y ��n<���B�G�� ����kK���`nU �}5��B�@�}�9��v9+YN)�R��ʭ*�.�����g!�[�I�b�{� ��ȃ:��wxf��r��A�FW�`yn*�M���.[2/=v�T65{�ͩ{>�v ��<�{��,=�pQd���+��7 \C�� ���s� �b M�t�u�������<Um�-����r�ͯ�*��H�."i.F���b��s���QBȒ���H���x��]ȁ`����.z=�N`�Jx����� �SX$�(d��w(��wqϤ�ZY�]\+~lj��s�0����!�h�J��ׂ�k��.5B��� @�({��S��;^����Y��r5�C��^ ��æA%Y�]�,Y����� w۞xz�t u���\��Xv�G��j���ۭ[#O��5�ѸĂcaK����C8B= �\M��X*��10x��D����"�m��(6j�hb�Md̒v+ؘ�A�_���M�u�}��Ea��=Oh�Ʀ���h�D���La@u�[��w*�!f�zt��M=x�������,VI���9�]�|�*��0����s���g<��5� �{*�˽.��:tYO08���^0 t�]ObC�S^.r����s桝"z���`����Y��7r�!|�0���� 9�t�3�eΡ/&W�(Ҭˊ#��(�f��Y�T�j.�� ʢU�N��rߞ��o�-"k�[@�D�K�E�:��s�k����^�{�ՍG"P O��? ��tWٰW�]��"2�|?^�"<�Y*�6�"�/I���t��>��5a�.��]{��,֘�N� �0@.n:Y!�cF�&]�TS��里!H����~�]��V��@�HT��=Gβ�:K����{o�=( 9�u,,�@�F�Ga����d���M��g.+|�Qa�����]r�>xV�"�R`̇_[�kd��~�.�\����ݭ���j�9����rhI�*v�����a�����`�d�%c�9dQEA!���+��Y�&s�}�ӥD��FZ"���u8\н�2��B����쀌J-<�2��Q�렄EVۮ�H̙��c4.=X�z5O�����f�l��Zb��-�#�wu�`@��N���t76%x�"$�u�[тoֵ�@��Y���������Z��G�ףGA9`*�]�d��ٔ@� ��(�|]X �r�-�hSi�$�q���k|�1�ǭ�q�C`�}L3��el��k�bm��ď~�u�k�rЯ"�ȝ��@3�Y_:��^2+�n�D(�=���]�����<��� ۾�禜��Ҟ��#9 �P��u����D�ʜvў�W#}��"e֒���]��+hы��|����/���BH�R�Y�C�$։��T� ��mc�k�1��y�dɁ�!���ν+���4�16�= ��"��g���k�t�Z��U��t��!�r���ʣ�7�b ���:w?��{���t�")J�Y;��b��0�y�vA�a��*�5����lV���.���mH��@L�A4������x����A���i�ܟ��^ȁN,� ʗ�ښ�š7Դۍ&.��!������(��T�c��5�[L�yZy}�Ԣ���f����иF���J_�t�V{2n�B6��y@i��Byv�2���="p�~ݨ��t$1�C�ip#+'��������PJxR���z3�4����6�!��ą�'��l�N}�ފM�Nc���X�R�X�-4%-��N77�����#�xB9+��s\�$\��N��������`�zs?Q�1�*�u���G��'��3�0��B��G"~�39P�T��A���Y� �(d�Y�\�����I���v[��X��}�T'5ˀ��{jvMt�(s�Pƕ�d-��,m�0e�V��x;(7�����}�WmA��� 8��&�����2��� �{ ,v���ɍ�$��s�5�&�-EF���Q�x�C��^l �4���C��Y`�ڝ;�tۍ�����s�4��0` ��V9�P<Ǿ��ݖg���r���nk�<�cV!��n}�r�z����n [��{��f�!��&�^��0�x&����Cy���T���#�������*J��%�"��!��0�I� ʥ3�с�����`9:ҏ�N�K�\(�p��k��r���E�0@���r��#d�����I�^/���gt �c�r�`�.��0}q`K:�"�%Z��|dO���y0K�֠��VIw������,-��Y� �.Mv�3d��,e ��R<m<i��B��넠�E��+,�4*�!ީI�V�Ll�o,�+�zU9y �.���^��T��5� ٙ:��-�2���M�hI��O�rx��ӽ��h)��j��Y�Q��PBĹq���BA�)FW9 ;i (��>� ���H7�uf(��n �� ������|5IV �f2��w1#�E� ��ޜt;/����L��#6�0�cV@�@uƪ�K�sVr��a�"1.|'�<qk��b��R|�q\0�Y���_9�7��K�YYPa�����f8�Y�������_{�(��D�%�i�|��IK'r ��0�AUFx \��Gݲ� �ZM�` 9���� as`�b��8��>�kcz[< ���c��0�fڠ+�/��������_�C�9�;�x��b�0����Zf~�Ez�烜���-�$s@���imU�#�[(��n��-��$� ����0��oj�s�Y#�,?�t�mhD Rȁ�?� �ȁt��Y����"颞WW��h@4���g�Ao�e颏�:%W0^��k��J�x��Jh����9�颎+����� �7k��k�:<���<w�@���t�C��������V.��|�U�0��Z�H��`������<�o:L����V]��-�[<\�0r����CR5���B�)N��Q��œ�,8nx�tUP�R���'���\�X���l 0�i� E)1��ښU�M9X����x0�*]�<d |��܅�z���&����~�csd�]UbSۨ&���DUF.�^]��D�2UJ���I�o��b��1@P��,�(�=́�H�~%��0��+�}�M��y8�y ܲ���S�9s7�a����w��AD��/��$�b�'���x��D+'tl�š�:x�6x�fF��-G�+�n4N���Ұ��)W�O���M���is�Nn��e��?�� ���<��Pה��{%��]��o�^AF;�e�ď�Ct�! 0��4�?դ�{��H��A�g����a��R��7�I6�T�V����Q�h�N��C���`�"��X�7�cߩ�d۶��?��l�<��`X��xUT����H��p뚂�K3��uj������߬ơe���2i�ѹ��7_���24�]!�����}v�>�j@� (�����ə��W�FJ[!(xa0��x�!%��9��l���r��#K,ZW��0;�R���Z�:x渖0��i ����Kq��E��0@!1����<�4Oap��ܙiE���ו彪J�|�*��y`V��$�4�0Y3�%��Ir��F�y16��U���2�ٳ���%z�h�E��~5�! 9J������j��@��1���˵dĨ��+/���l��=D� ���+����/��� Ś�ylװ�gY1B��Yzٍ�WJY����OqA&y���5�� Mbʚ��JL�8����0,��ŴYX)��ffq/3��w0�M4Q<�ُ�vT�1��2\K<#_ԩR�\s�`��/��ng���x��*����[��܃Y�@�UV�/҄�ĀN�q���� }0Ĭ�����i�<�Sk�*��h��]���4�ev�!/a�=p�ʋ�����Z1���m���ْ0�B�`IdAn�ܰ��m�\c��y�!0���c�fEX�c���3qms"+��\��k!%�,���\���A�\��|���� ��<��S�e����%F1�c �%4���J����+��,%��r����7?��}�<��(��L~<��%�� �n��5�ѕ��R����."� �"J�m��>Y�c;t�{g��X_�80��8�` @!��t��?/�4�=Җ�R�]H�/���旑�?�a�|����J�H��7�J�LE �P� ���ׅr�����9���<dQ%ӹV�۬KBI�%�T4LpQ�@k���:�9��s��&�Y*!�:qU*�F�nD弴�㚊�Ea�}f�?�ʋ�G�"Yz~���Y+�`>4�Ŀ���)i���~k�y:� 3���>Ỗ�q��Z%�TNg��|��b�XٔԽZ��<4��F�>��}ݭ�zw��#���DX(�{����)��WR���l��0`ÉNa��(�]A%��4��� ��_����:��m�`W��Y%ȵ�B��0P(lV�,�w ��R���/�Xw���6/E!��y�1�w�\��������J�t���P誟�B�5�DzYd9K�>wK�{�����$���R�(R �jQ�@UJ�͘����0弔���) �1�k8�I;����֬rp�]~�>�\��<�]��90����Ô r;�5����P��S&�!8*6\��5�l�c��`��`挷�ޗ(����Y���/�|����c�8�O�={�ޖ-W�|�mFT�?^��A*=�\5���~����?��8�7������W�� �ቃr����ձ�]�$�xh��-哜����,�i0P�+o��f�Xjp�q�ȁ0x��z0�L됒�"�p�u� �e ��A.��(Mn|�2�.���o"F*Qu>��G T�<l�ct�<�{L��PC�e� ?������hO2F.��u���ht�;87V��F۬�� �h�g�����M0f�IK�rT<<��iZ��=EX@C�2 u⃗���[�%���(5n�����{�Cb.��I���~Y��%�j����i��E��gS�?ߋ%���/N~hO�qm�f"0�N^%��� �2G�YH���9(< ���(�5#��#�� +�!w `T�(t�z�70�f}<��V��Y�oT�p�1�ؽy�zW�)��{bO�u�����:4 ս�"{5�O� �����G���Y��M��N`A��wo��L�ULx�慠 �%hO`�r�Y r�u�w����*v�/���b�EXK��LF o�k(%�E�q�Iy�E���C��9�%�K�}`���:�G4KN�*��-�$q#צa/d��w�Kȁd5" r��Pq��6.i�A�"�/�h�0mS�X0�3C�� Q��\~�v~{Cr�?�MJ��]�`@x3g��U1ExX9�. �@�R(�����\C�x;&+�ߢL?�E �J�=���!?�]|��E �YUT���ƅ35�:^�k!���z��(�m��"��P��ޑl��X?�$��"t�QЂd�y�/H'�eK� X��$�Eu�E��dZr[���9r=/<�9����p�Y�"Ѳ�ͱx>�P""QL��2b�+�s�� �D�1�(+%\��EG9\EC���27b��I(�0����#nk��)śA��@��Ga��3�0���U��m�|c1�%��8��l�)�a�<�� ��2��8l�Ƽ�|�4.�1�k�+��8�nַʄ?t6o+����~,0�*�U�o�����ID�ƫ G��9U0P�M�:�A��US�<R�)<CH��8x6`����ӵ0��w����hDU�eב�k�"�-]s�3M?�U�g�2�0!v�����g�%���mo�0O���X�?�����}��wWzO}�^�A';�w�Yx��PO�cq�*y���! � ����}��ۤ��������A�\��>{���A��ƺWB���%��w������m���_�(Q8��{����4N�Y�\����7���7/C�9����/F4+�\͵u;P4�j�_gb���ab�{<���a�h�_�n�,G�{o�d@t$�r�v,�b,����c�.���q0@��,�'I�E+>1sF��BR� ��à��.�9�{ٮ��G�Me�X� �r H���T0@�����"r �?:^�=ZP-S�_#�)Yg���B�x&�`E7���E8ȑ�}p�9�ЩeC�_��Ћr_ed�Gar@�`'�,���9x�y 9��t�M�� �1p*���$I�&�vv���Mj�-A��,��T����crX�z@�`p����g��i�î��{�`,���|�J���X2����F66}�㢐��ҭD/� �;õ���O<��UNi��{G���g��Y�l�c��ݼ�f#�Q|>�p�Sm�s�s~�,�YLQ�0�Eܛ�>s��Yz�Ea�g�A�Ӛh�|e��`C�V��=��T̘|4�Y ���H�ϱ{�L�-�n��U B9%pߗ1�*�=({4$��`�B�]��Pj�y>��.��\t�i'[g�%N�����f�uf̟]�t)E�:ϏMbN7B' '��T���ONe�_�x/c�T����a���y8��*��\�����0 �!xMrp��c0����{/���������s6�I����/7V-��_��E��W�� ;$+tIsS��ǁ`;7��O�@��b�<�n&�9|ԍ��fkʋA<�aC�� ��J8t�B;ѵ�7��q~�`sm��M�9�=�����N���Q^��"�8�`0����$(�7o��孃��N�ġ�n��{��`��ܻ��U���1o�D��Q�]yǫfo�mkp~�����Ȧt:]O��I��s��}���y����CV�I`�?��dT�}�y# V���.zA����Y��0&/�[�F[t �4t��I�<y�V礋�Ga����0���1�������uQ���j�7����6�N{��2�vҀv��hM�Fɞ�}1W��ǀ���A��������=��/��o��F���VIj\R ��E%8��;(��u�QFx� i6K-�|T�; W��ڪE��x��Q�D�$�Rb:�2�T�l~,�Ldf�Mvz���硊�#�3��b3�� 0��:H��o�ѪU�1��7�b�.�Ō�i#U@ELN�r�J&з��@.0��T��h��G�;���P�$�n93Akν�~y&qU�=/��$�8�������maUAH�r�!BfT�t-�0��q@0�p~�� ��^��:�Rk��Z'/�s �6��\������w����ƀО0 o�|0w��l�&9�/56�������%Ƴ�d�l�Pm�`Y��έ�ʲ��r�IZɔws P5�t�T��f��0��:�A�&u�㙀��I��{+�����5fk/��%�(��BE�� erM�\�F\�;�IB������јYkI�L�l��Q�*BN(� ����,줋nYNI�0�>0p���?�@y<�e����}bF����r �Ȇ�w֝�Fr*����oG1���G�o�C&�t�'��a��5�C2�^-r "Ȑ�Gh�y� [~9�(���E�`0E�s~�_�$t����dh��=��h��tL��j K�8! ���a�ڛ(�M��OE��Yƀ��q5��9n0��*���I^_Ii6��Q&eP�:i������3��)~P�\�V}ʞ�>��C��~ND�{%q�Eu���$І���1�9�Uډ��P ��A� ���U�$/�"a#J������r��d6�80�N�q�i������Z0P���N��� �X�����s��0��Y�k�D�yo�P��AϊZ��%ʅ�aa\�d�C���]�� ��J j�E9����H�F8� ��[q�c=Sdqĵ��\t�4���AS��`�?"T�(dM��8WUz�t���ǫӉ6�O�~%f=x,�Ƀ{����6���>[��+"�4Zǖ�7#�]�J�M���Wf�:$�G���Y�[i��p�Ty���9t�Bɾ� ���g!PU|h*`�v.��>u���G�I�npmI��ȫ���_��g���zF>rz ����&�<t�V}v�a�n�?�#�[Ƙ0���/�B>���[>���{|�"��~��u�7c�A�. ��z��Jx�<�n��)]s�Ts�Url9��^�:��d=Ywa��E�3���F��2�(9��o��d����EX�P��10� à� ������`��) ���;��&�=s�z-�R%�9��Ɠ���}z�_��st�:~�Y� �I`���5�c.?G�a��]��V%^��y�Ms��v[�y"qw̤��0��>�zt^s���{l��Yu��QAr �f�^��϶�(�s�pGV��b�;�̞rp�l���Y�ʈY���!%rw�}y6^_��b��Txp���).9�gaMP���e�Z��� �TK���*�L`+ΰ�zT���2 )=��t��&�A���|��"���;�<��߷�Y�<��85�z��q&9����=���wp7�ר����X�4 � H�3y�xS��E� U(�Qp�w=W��ӥh.�X��b�;`b�Ib���m[���s3i�D?UGg{���9����/0(h)<��2r��{�1�Ny��9@!29�{#�g��0���7�ITM�kz�β�>30�&q@����/�C�E���#�����`p�|F͂���^C(<��{�Q�pw��Mi�d�Z��F^�B�`x�a'a��1+Eë�By��,����p�;�Ə[���%<�S�����`�2٭���V�Y���.�{F� �k+]�~�T��k����A2�F(��3�i�g� �M[���`M�F`0.�i�"r}v�S_�Rx��E� =�ƿ��<���o��[�ǣZ'���W#���B�Lr�\����O�9�SG����wa��K��(�*u�"ݷ_�����9�`跚�9����H��=J&����&��l��OEbr:\��Kcg�a��1�qDV��4��f'�3=fP0�s��i&on�䴴Jz$d�Ns�YL6sϥ`��%f,� �Q҇rF���W[�Yf5���(˙��AV�����:�d��^t��TފuC� �pR,J�?��P��É�ՉeM��۶�� �#���O*�s�#t�B"ofߪ���~�N3� <�3��!�O��|��0��0����Ep�߇����0�4t*�&E8��-��S�?.!�~Xq r�=ː\c �Y*9v%m���k�ʠ���)�m�1ё��8�t`�dU�"�Ae���Gf˒�-���^�X�YB����*����y�A���g�zz��pY2���礤��/��p�(?z�[M5��k{��B�?s����� E>�\pN�m��;�- �O���-9�9�}��>{���G�����"�`�{ T:~�\[T�q��_8�%�'�F�}�>���W�}ee܄��#���#�h>�?�D���{�%���M�]ͧ�����+��5�5��s*�ytљ��q@<w-�g��a�.����_GrpZ!:�h��b�!����Ib8�o���klϛ=�~_)$Im<n�:�C$�&�͢ <^t^�k�{��^)��M@�?�ucy`��u���� �r���t��6"�T ���#�np)��N����#F%^'��I�n��H�tu�UX���6T��ֆ�� �d���^b�\��C� ���H��н�4yp�V�,�B��<�C�[�ikt�3��lS<Ue$��C��h��[�W��X=((� {����k�br=,k��W��N��. �Wnu��?���:���{`a���͆�{�s���t{VS%���~�U&�R"��k�B��c����y�߾3���Z��d�=�@�� _�7,bA�m�Zb�� +�bQ�N� ϒcU�P,`@m6\N«E����'�I��&�ל{����k�=������o?���IE����=}��5B�T�*k�<\9$r0�,��!JP�[VJ}�W���0���,�'}���f��AR�[� ��z���+��*,��n�(OC9 �u������-��B����r���;]`�=sX��^a-'ׄ$�0���=O�((@0�'4IE^���aG���{{v=0`M�d�����k���S�p�<'�,q�1y���I�wB=2�>���o)dp���i�~[v,�Dޫi�a��h��� ��a�]�?��x~0�s�,�<~7G�!x����m%�??[�|� _<�!!���MS�&C���}��A�͜?xde�2�r�`��c\B��&f��ys_Y�����]�E�|�0x�sY��/xF�8�"^�H��/x��T��)��˗ͺ4�Y��rÄj�n�̃�[��� ���X�Yc�\��N����e*}P�"5��R���M�%8�*6 ��[��]�$���ӭѡ�u��c��tµꈟqY�u�k��1@I*��lh�W-c�m�j&R��@i��r?������v�3���A��C12��(��)LL�p�ЋpS��\�f3�y�l�{���o%!� y�K��nh2�~���^��.�/�\�(�ʳ�2�R��L���̓�OU��Zt�2����i�اB�qi\�:ީQ �|>���:�*c�J�녢��'�/c�0"�0*�~�8\�O�=��om7���������Bi�0���~����G��A$���$ap!^��a`_���c��`�Y�E6�����7��r0��V)����~9:X@�l-�>�@Ѳ~`�Rr=�?�.uKf� �tK�a�3Y�0���+�_ ��P���3����PCWJ�0g�����-=X0`�p�K��L�>�t���]�X���� ������4�`@rzϕM���{{�\�9Ircp�y؇��Z^ ��r��J���\�Y���E<7��CFr �+�1`OBs�0�G�p��{��"�%0�}���ғ述�w��l�jos/�A��`w����z����c�i���Ѿt���E0`L�=��Rv�d�u'/ss���~�y_�>�-�����Ӣi�yp��8=�NO/��P(}%�3�=I�g������Η��Ob��G_�PZ�$���|�0)�tPBfx|J�gҨ����?$Q�<+E!o��C�XX�L�븕�� 5�Ĥ��4�'����?(���:8���^j��9��Va#n5�1ǟ�K�K��7�ωSJh��Q\�4��ڋV���Rc߬J�K���0 ����r�\���=|2�� ��By�$����B:`��p�e%��,yMn30����4��tן�W�_sFpp���ƽ�x�>�V[Ľ7!l�BŇ����'�ʃy )e����OBWX�\���P�J�?�$,!0ֆ�cUR���C���ƨ��rk� s*�t��ٮ#�6;R�s�-0������o�k�waܠ�`�o�8��������$�%[^x���P��:(,��Y��1��0��~}�ApT�t�)9Q4m��! ��5���n{aO�00 w��:.Y��������CS��x%^�'9�q4��H� ]t0Z�T��.�M�ꇶ��.���SLCa��p`l2�y��%�ZW�1uF��H�w-���5��R/��}�0(ς.���a�,c����I�*/��ฌX� �ώiݤ�0z`�t�u�Pr�������Aa���g|���!�(�x�&'yaU�y�c��~8��\���R����o�Ͱvz�y+�YDnU_M�c\'tx�&r��r�z^�w� ��u�o�=�'Uj���0:,i���1�RuĎPRާ"W��y{�P�[X�i$Wc� q�yډ���醵 q 5@��pӜ���Vs��a�,�y�= [�Tx��Ƶ�RY��Pv?����Mc-X��UeJ,����� ���aY`�T�(�]p�Z�泯�@�6�e0�kN1)o*��_������x����N��ާ�^��(_�*r��$1k5��=I��������;_�6��/��k�J*��a��M�t|�ٿJ��lo��~�#�?�n�m{���'����\4��q�iL}�e� � ����I���Z��?������|��]'�`��|�{��>0M�7��0��{��0�ġs~��1F1$L�q�%9xX�Y��1S����G�G��W>^�M���v0�'�+�吃Nm֪Z�rj��B5#]�ݿ��Z�Ӓ�-�{0/�~y��FU����jI�쉇��˼UQx|l^��t��K`@�8�Ճ�˟�±�H�3�O� �-?P���B�o�47�"<3����,+�������A�5�� �~tQ�U�(���%�腈����>��s�����7��'Q\]�9��\>84���@�0��J��D�W}�4s^�&ǽ�n9nz-��*�cs.���W�� w-�EɊK�r*~�:J#9k���f���$�&�i���z�e�eɡ������6�����ؽd��rR=p�o���7�ϲ���+�&,�!\����V}�z: �f����9��*od�P)�̭�i�J}Q��cd1(9$Y��k�`��" �k6�e44E��v��� ���nw=���ꑥ�����6���������wYnO�3�1X�Y ����ͳ�m'g �AHJ��@u���s�V_����Õht<�����E�X+��U]�~�ߣI�>���9k�^�G��?!6\��eE�/�3�ޓ���k�*�,Y��\x}Rgw�zâ�7ὡ��vF�j�%,�5�z�_���k�̟�eMr���?���qU���<�>�\�����KG����7?p>uk9(�2f��ؐנ��曏��Aw��Ě�\O2Cʸ��,F��xI2 �Aҗ2�|����9������jUJ{��ީi��e�`|iIE$��}�� AGc�܂*�r@�9������<�6���!)�"x���.� 8X9<�_t%�[n�r�`�gW�|�(FP�6�_Quf��{�Wϯݳ���GqO���5��M0x���?�ni9�9� D�G?�f�(�� �>G%��\��E��E�Q�A���]T�e` ]���H)�y�<�u���ή�h��Z|(�]�t�r_5��^�� ���u��K�%q�i`?�y��.Ӝ�j�cS�\y�k�V��?Q��\>_$NDZ�[8��s�Ɖ��p�V��L�gQ!N���nj�E�u�ߙBe��M�p��"����ҹ�hܡ:�i�Q�&�\��u߽� �V��6�Nq��1�߱8�<<;�ea��d�=߿�!1�}k�x��{��.W�� KC��lxb�`Pl���Ȧ����ƀpÝ�P����w^E�.h`p���Li�FMz�|����%l'Qs�)��y\�P�~�4^�x�Ikw�'z7��.,_٨*�(Q�ơH_��9�3���)�L���5���cw9��葦N�{a��/�6[fap�TU?�F$�o�W�������p�?^.��e�~�"q��ehy�M�����`����_���'�bÚc������ ��r�:��� >�� � �/oZ�S�����P� �aCg9�Oљ}rt#M���u����.c�Oy4�<��*Yb����M5R�����x���y�J_�.������m]UM�<#JZs㣋ݍ�G0Ԋ����q6Ѫ�Ss�� �ph������).�Г�B�s�𝡋�S�J��K��TЖ�_�ׯ�dꨗ����#��/�"�n��σ��N�:{����qqR�p�k��L��>���j������8~o fͬ���]�%*+�ʤ�l�=�[���PJY�t�,s�1ToHޒ7�X��鱉5C��R��:p�$�k���*} ,����b ʕp���Ķ���g� W̲�@���S�xn�I��8���@h}H���� ���>��K��Aɷ0P��{���&m�s6��p����@ՏAՉ0�p����X�Q)f-[Z%b��PX��2�ڹ���D�1�ͣ�R��� �x�F���џC�����[�y12�a���F�2�%G)��ן�����&ieR��'X�2$I.��R �)�$BS����]AX䀪)���%�CG:�I�/x�-�_l\�X{w��&֕�1�p*�!P�\+41H/U,���5(/���8<� 3�"�o��/�F��J�1 �n��χK��(��)��cg���<c�7���뫻��9μ�!g��sׇ%U��x���~���PK�2�x�ƋQl�+J>���`&0{nHA�ٯ�B`p7 ��ro9���y�;���rI�VX/0p#E)K]DҞ~B�X�o�‡�鎯�0#ts:���nv7@��."�|/��`��EG�5OĊ�?�l3�␃�|��t��)�ȁ0 ZB�b[��纲-��q`pT����y��I�(����ICn����-oJ9q+�<���j�N�E5 İ�-�<��1̃yը�T�*ຊ�QI�R�,�N������8D��,c��覩zj+�����Г����`i��32Fb��s� p�^��ip@�q�IR0]8�,)�$�HxVID�+����S����k��?�%�y!�$�k.��/��N�n㻊 �x��y��f&�`�L�,����z��#i(!γSY�KM�$Vk�9'����)lEϱ�����q�Nq0иR���p�lm���IŖ�˾�����J`���>�5�57ݢ��{f�z�Z�q� �x��bxR��6�$"�v93znF�L�� ʃ�V���@������?k��#�EG�U��*iIX�qK9��f��cw�V��}��ێw��ƪλu?��������d�����} Js(!�1 g�x5J�ļ��q�ۋ�����v뵛���`\e�(�6x!(�����k�ɛ�;x�Dּ�yN�Ȥ1xU���_� fZߴb��mb%��+�/�_CK>'��DJ9;��(S�Ck�"rW���|��o�Y���/k�z�<��#|� �b����/��� �������B�.�1���˨{[��j�9�_�����[�[D�袑�}�v��v��췁'V\Rd4�C��Y��~�}<|��&o�O�E^��l2��|�蝬ޚ�����<0@�uXW0(9�9����k 홀�I�lkz��e��9�0f��,M3�(�v�T4f�ԛH��Z)�.�y�6��?1 +�<O�,��:^8�,��hwU4�t�z[��������G�����w��滸�c�o$�&�y�5��<�Dv��Dx�*�%��Ƴ�(A��s�6I����bH=����Nm��c�I�ba�Ytyj�nX�$��¸���j|7��ѽ*ޫ�8��<B`@R�"� ب|��a6�0Lf՜�3s�($�ԝ�H_�2J�mr=&T�}o��5?Yk��9)�ʻdbN_65�E9�\8�`u��DwZ�"LƜ_O���ȁP�K7�'�{��x��C6X;�Qu�7��Ϫ(����0@�U����ěj\��yoǬ�% �J 9x�r�,� ��stɿ�½K��F��rF�b�)~�F��m�����%��=���g��Ƣ �҂?����>�{�6H,�1�- ?9��+�Vry�?�����Z0*����{=0�.CB��e�x��� c��x�y���;�r ����Q�S�>�Fȳ�<�TPt�K���t��n����P�{�d>�pw��.z�4��C��C�����Bg�,eQ��Au`��P��I/�s��G�љ^e���?aM����7��ӽ�߆mໄ��C���u����}�.���ҩ�Fq0�������r��`��$t�6�u�9J�fe���G�a%�����GdG���93�� �͒�Hs��V�c���oM��ecvK���Am<���T��_N��^�7����w��!�����@�#�Q̓�E�P�U6�\~�-\Y�]Y�5�B��1'�����N���3�z�L��Y��aq���*ʖ�H��ڷ���*�,Afs�n��q&J-_s�X�5�&>���E��!�U���]����<��{A�=���E�E�����:bR��3�m��{���:�x^��`0�=��� �K������`���W�؎�u��l�Kr�YLNc��Fbt�����rd��0$ĕT4�A���_���J��}.��� ���=p=����`@��Mhj�k����V��-�0EGi0p/`��8K�D�����'K�X3���MqQ�I�X����q�> ���z^u�- ��os/��b�p(ޞ�u�ce�������=_#J��߱���_���o?g��|/�$ �(���<�1{�&ַ� S���79p$�&ׅ<ʖ߯td����t��%��Et`���U�L�!0@�f1��ft�J�ߒSa��5CA#��V��<�q����bS/�A5#��z�.&E6�"f���F{z��CW%��a�[��_���[�� ]�?��f�S�3Ɂ:̩�d_���]�E�;s�yS5�y[���n=y�$r�K�x�X+�|D7p="<�� U0�NqL5NM$n�F�"o�X\/����[������1`�2�$V\g����j�'��߿,�9ʖM�wɘM2�K�;��N�?<������)[km ���<H#���f��>(�A�V��ї��n��́'4 O|@k��ImL�t��G��!�R���Jv#��������y�U�����tz ���?����D�f�!��*�N?�;]�T;�L`�k���͟��UE�b�Y%b�^�e�� а��"$��:,���P��0�T��1ࠥ)0�Uc�[pAm�l�QL؎��:�M��e�h�X�P�:h�d����k[�� �Ξs�v�t��rQq�� �& x������\w�Q��`�_C�2����=r�0�B�F������z` 9�"E>KاpCY�Υ��| �o�A�N ��.���C%�{~h��wO-� }tM�o���9���դ#Y"�V�šQ��H.���/0��?����;�E�]� �C������A+����=8�ю/ �EU�;����]��m��{:��`�z�X�`H��^�D��x�jN]T�S��kq0�AD+��ס�T�i�+fv�"�@��ȁ0�x����O�#qc�w�R�ү�J���X�ku"�P=#Q���p�FUǵx8NH ���3įŤ3� N�'˧�c 6a�[�^�>ˍ�8;G}}4X9��fq�k�?נ���tw7띪�HP����s�����&6��[�u�E4A��w8�B�?'�8e}t����%�`@�2 @ݬ����P엑�a)��/�K������}��,�`��k�E]�E�C�-�i����{xo/x�z�\���H~�x�s{��Bfǿ��β��װb�Z���x��]r�q �BVO��:H-�f�4bX��"���~�W���'��:��c�BH���ATBYʹ�\�0�����7��V�n�nX{k�=�|ī�l�$<�I�a�S"=�j-,l��qܷ嘞��w��7�ֿ~�r0��p\�ʝ�6X����z��Ĭr�N�V=�N�|[����xg��.g�֠,@�k ��o�A�7��v��q����\�W��:K�*�.��ٗ(?��Bk;;��x�)k���t��J����|��gC��\Z$�p\�ց�F��ՙ(�g�{���u�ߪ\�P������9:rΓ�Q�5�<�t�ځk+��}x�s�MU�G�:����#WB!�tQ�,|��M�%r��R$���(�FBQ(�N��a�." �d��+�F�*>k�#a�Udy �m]d|�F^⮰@� k~� �l<?|h��b�"��x.V�>6�t2 5�!#�� Mq����(U�? V!�b��O�$����.���#1c�[�M;��Q{�.��r�� ɞ9�� 32Э ���"�^���|؎���T���CY���3�'���5q>���_�����9>�ǁ��]0@IڀSJ��Qsm��Dy����� Œ ca��EW�?;��No�e����6kF:��Bx4ױ~\�\N��5���)�*#Eir�[��h�<Aъ���ma�2@�ɑ�`�Пe��Fr���U�L!���Ѻg�~��0�Th����]����7�d����T��9�R�7��V��6�X� O��c�"(X��A�XӃ����u���8�*Fs��x7`���m��6Iv<��Qv�J�j������I�xlF� |�� Jp�t3ȕ����B�g5Qq�n6h�k��+e�~�g0��Pi@D�ݢ� �Q�@Ȍk�߯�f��r�> ��;�9�����d�"��D��Zz>��U�e�]GoH�=!�r@��L �٥�X;���!T��UR�]����ˈDȧad�r��알Å'9���ҕ����ozB���w��������0�(=������3���.��}��'6��h[.Jo�4Z;�6d�E��I����`��1r��K��tQ���'�=غ��ô�u�[�@��A�5�,N����Rs��qFl�A��AE���H9�x�T"ЫA�<(H��0�7��U?���T�.6eq.U�6�էe ��Z3x��T�S����o^�1aK�K��=�ʁ��Iw�b��c0��x]ʅ��˳h��E�x������!��8��S����:0�0�*-��MJ<��Q���@� hDj� ic0�u�Y��I(kd ���uֹ� ��ue��0��ʸ?E�)$�Q�$^���*s��ȋA��sy`�s��&�g��\(�x��}��\g�8��6Yy�>_��B�Eզ?�f�O����Ys�c��^�H�i4�!_4����+�YX�{�L��Y�G��}f��I�4䁁�H��i\�h|�H[�:�F<�H!��l>�pиhm�r�Uɨ䀰 �U���+��(���`���E���O��Ch���s-(�X�ZKr@���_��*c��(U�9��<3�7���_�mmR/�~C�z�9`�8��],��'�J���^�",�1P�b����AA����4M��t ��)���[t�?#pxp������_���C��G�g%#*�|r��f`��[���;0h~�ɖip�.�`��$9��p��z�A�y���Z�ZS� �,}�㤌t��B�x.�`�L!�W�U�䠅�1㦃�SqXM��|@?�g�%u�9R�m_��Zu_��8�P�J�8(!�b��s���K~6ؘ�$�~V.��X�~�dNm���ԁ���J���aQy`*zԕMn���NA�X�X��le�"YO(AM�g�W��d�L�r�%f�nTɼ:$_�%`���,�zt�os`x�J)ئ�p�J04o�a���$�<0� �Q���)B���vA] ���q��@D a��=�5'���� ����'�g{�X�~�\S0�Z�!�l�2�%������:a��CR^����1�0�'CC���=XL��{|���1����e��gG�V��d;4c�uĢE����{ލ��CPĽ2��>�����Re�u9��rp�3:~zp;�m9`�$r�&M,[� ��,k*9�}j̍ߖ͂�$�3$P��r@a[z�K��R�h�f����zT8A���ϖ�9s�n�GU`R�{����+Ց��&�������ghz�˽��t�;�����L�Տ?�EA�,���]�>枉]�A�~��������L �}w��!4;{��9���3���>��9rE).��g-��/�/]D���.���(C��\8$�N�.��橏n��Ӣ�pR�a�`TS5y~lA%� M��."��C��9��?녡J�tQt�2�t��/ȍdRD��K}H��be�I<�b��;)��yC"�.��\�P����p^1nЕ��R�A�����p�G��x��O����;[}�=sxI(���O�=�$=��p�D}ycY�Nl��q��Q�Aq����ױ�>�(~'����~�\�.�Ĉ�u����c� �u�����v�P��oWK����� ��c���E �2�~3�8zL����x��e�^?�~=�uQ�;�i�$����!9U]��!����L�������JdZ�oB��S�I�il�Q�/>��2!��}IՎ%��Vd��n=��T1<�^�W9S��*Ja/c�ҝ�1�F���`;�?q�'�_2��z�[�j<K�K��\vR���Om�k�N��C 9����!�r�U�8�l# ���[��Z���9��vS'E���ͣ�m]{�&�r�!N�5�o�s���Ua�}��3)�ܳ�`D�r�����yc�r��� �bKf���E����w�o��7*�hh�ҕ�}��!�ė7E<��4�*�c�������En�I䁂���7�Fy�#�k�M�¡�}��㭅i���g�r�u�g�C>�< �P��)_}f+#6X��g����S�(0`r^!xK����� K�.1��U�ܲ�e�{�^����c�+�u����)]��.>��x��vBx������<��. tP��D���t�@�=�5��M���l<�ntZ^�b�;Qe���g��D7N��n#$ٳU|MXO,4��)��`��� ��\�=���l��i~mJ���r�S��,4r�V�z�j(NI"���[,Y+i�|m�A�{�vG��,ﰦ��;�/��N�Q�#�j��L�Z퍘�X�7.㽏�{#�'��l���ʉ�?�9�����0�3�< ^!����/ʨ9XO�<�qaE��!zm�:a@� �x?$X�ϲГ���a%8�����~h�k�BLXL�9��;�~Lӫ��ȥT��Y�_AcϞƢ�Y9<�6������`����O�"���N}}��g������7֖�z0�u�����=O�u�x3F0`op�)g�Ϳ�[`�+�������"ë����� j^���ܲ�[n���a��`����m��Y�C�yu힇1'�0�d�4�1�Zб��Mo)sY��s |Š̐�P\e��r��i��#9����ں��%t�J��(m�� N��9�m]d�'O�����=#��#`��"��bWbO�B�iL�߯J�7p�>�Ux\jH��C[�a�$7�@� f?D̽��i@�p;r�SKI8`G��`�w �Ą�䉶�Q 4��^U��[��HI�!B0���^��"��yv��D��7 W_�Y�ݞQC�(�D%��۲�,��Q:�{�$�Yܺ�&� g���qXݮ`ZZ����]����������54(�+��3i�[ Rx����X�}/_��y8.om-�k`� -q=M@�[����!���Q�,������A^�G�l�=OJ���k��I37�o>ߠm���{�:a�ʛ�X*�8����Β.xߙ�E�ٜ���sx'��j���p�{�B;�&���$-5��<P�)��Dߋ߳ (�{����� �c��l��Խ�`���u�Q�A��{�%h "Q�E�F+9@���oA@8�L�W7nZ�Oj�#xճ�/:tI�Jk�Aȁ�9 �C�+ ba�w�x�ӯg���a"��<�փ�e0 ��r�ׅJ$����QF����8x~8G?��>�}w�熒_�S�F1��:<�S���/x�om>{�k�_�1$�|�C��~�B�&�A&��ʁ��o�����_�f��D�xOŖ(C_��0����__�Kv�f ����A�C�`�5�'_�zA *��&�w8pz^,�� [���1{1tt����z���-~��G�o���tס�]D(8Ф���u��<�Y��jO%d1J!���cːS'_���~ ��ѢM�XCQ��C��Ǎ��rHT�k�w�@��@��D�4��BC�� ��ʊ�m�O��[ʖ�\8h��?C��� {��MZ|R���C�5y���:u��h�Z�m$��Ba��Y@e� ��(x/����VRmm3������%MH4��g�A���$�Ӡ�P�S��`@Y�O"�։_��'�Q�YK�DP�9צb��5h�j�����zH���A�䃅37��N�Ҳ��S`ڤq�d\�s&�A��ڒƶ����VP����Re��V,'(��e�X#��[u�����;�٬b�2��ЄM2���E�U�,`��g{^i(X˰ý*|��}W�t���{�=���e(�%���'Y}���R( 9� �rt�9��^ET�;ڲk*-7�|�_��_�`��w�W (bo � �TK�>3��Yx�֘�N8C � ��/�u�Y�e�]�Ж�g�o��Bŝn�Z(��z����V0R9��gW\�SyWE���u�#(G0W��|�=I�ER�X���,7?\�0��ȉ!�#�����'�aI�-���`u��W�L�t�K�2�h���}���4������L/¢�9`r�E+�iA ��zb�i6O`Pթ`��B�]r�urz�T�]$��@��}Yųu���B��EF�vG�H.Hj@!t���ᗣ�m � c��lp�7t솲.E����5�;z(T��e1�8�y���x�r�N�dqm���J9��T�(L�[ ]��qrvy�qҊ��L�ń`se���鬓��i�.���T�ܟ:0?�Ƽ~?J�5���k�M�ϲ�~+��rb���UWy*�l����r\u%�F w�F=�P��?%)=�9��H�E`�T%��$�b�v)ۣNt��m�g$Ph����7��;<D�J��k ��cX+�m$�Q`��"1���,�BpO�@����/��>(]en�08&�8�;*+s�Oe�=<� 3���s2&�{Ĉ��d��=���q!:����s#|Nr���wA��#��!���eH�C�Y$�H��s�ΰ����� G��O���� ���%���8[\�Y�;�ʛ�O�w^B$���� 0�g�<������gQ�\c��i�,����9��0O^�)<V�q�e�a�h��0&�a�8���W���0�MO@���}��z�X:����^�O�m���I�Q�<�����mU���n`H�B�Xc��Y5�Q��*�(uG�B�g"]�GD�r@H8��C�j��iNX�* �*a�,�Ž�=��hS`���tQ�3�]���1��E̶?0+�����*�(9�g�T�$�o��^pP�\��y@"^����B���s�ލ���`\��`?�zڇ��NލG������h�]�j��S�J�!���|U���?�=� b*Z��X7�%��Q��X r߸y�EF'v�"�D�&�m^G!��ٵzqj�_$�H4�+�o(��X��҂��l`� ����+�ws�I.�� ?c��}��wxS�HLoŒ�>�a��q�2`���£�JF��k},��{�b�ޙ� סH�$� ��'�ѧ��@�&0`]��p7*��s�0fv�ߪ�\�� ��E�V�N��#'��p�g�H��� ���� ��+ϲ^��`E�}nQ)6��|��o�z�WI� ��8�≙��6'{}�`L��h��W9��� �,gw�ϑp��4�7����W.�7���䌿g�B� �UH����m�z��uU��gwUr]�0��!� ��ɡ{gZ���uJ����>X�c��a�7(��&����F��tϖ�����07_ㅯ|PV�Y���a_�}�F����0+����k�(D0�"�.�Z�.��sS�ց���w�1�����7������ʳ=�"�̉1��?�9�BV��w���侳$u'l�j�5YR�|�ρ.B�E|'������gq҅.�j8�<�+�{0�`-&�V��"�A0@�H�o��߄��ºFT��VU�^>�`�����y<�PRb�G#����!Ӭ��s�.�uY� `9��vt%�@�B�=�/��W�ׇ��8,8�һٷ�Ub�����a�4>������ˉK��D5�?���̫�f tt[PM�z~-��,T s��W��W��� ���h����_��yV��J�Hn`vݓ�Ƽ�0��!�u��Ŭ��썩 aQlp�s9H�F�ک?��Y0� �A��ˮ4�~Hg/��$�3\��q�w��9��(�ލ�q�C��^r ���8*�Xe�q?�X)�D|40�����PP�d�ݫ'�۽��Q|���^1�*Q��A��b^�&�N>#���6��ָƴ�*A@I��*��@͂` 9@)�ɘ���7@��K`�� �Zۧ��w(��в�+9X0[ι!&�I��9���xMrpǭl�Y@�1ކ�<����/���:����C����� k����w�gǀ="9r�W�-S��Z��3!I�CQ�c�c!T��?�r8PhvT�`@x�0ye`�9��O�[���Î�8��=nE�.]{�j����<�>u|��P�p��8,�o/��E�t�0�ywc&N���e'�27����@�hD�}�Br>ME���K�g��8�9 ���v��{�ճ�-}�ڤ�wI�~�M���#oٖ0z^=n�"Ɂ0Pn��x+�ɢe�4;.c }(����_Η�ַ�;L���u}�f~�ѥ}J���Sŝ{6��8��;�ףA�f��L��?������W3�6Iʗ�4ش�c���(3�cF2���t�q��5��[Y���w�C8��F��r�p�Q�YIC�h�8��Q���5�+���EΉ]M�q��Ύ�m#{� �>z�֮�*]nD �N%�����M��H��sFL�;V��Pl�l��L�S���I��q�ɇP�-P�T��e�A����!6d�#P�`3�|ƕ�|v0p���r>��'�1��C��H1����0*�i���(w��B(�EC��2���Ţ2��V(T:�ߚ[�=��)��0���y�9�=d��H���߯Ih��}�9�E"1�fE�}��wq2#Ěy�{\G��{���u��?��n�uI��{�q�-"=�������< �ۻ�w��>�/�r�}�Is�i���g{z���4�xy���B�{�r�ǂVX��&�`��5�t-f���9�#2J./�)�T��[��x���sJn�8x���0�Y�bJ�����aG��|m���wa� 4a�!1��",~0���7�f��D!P�&G�e��|�30(�A�1�u���^�0>kYQ�W��}PD`��^�J����)�(�q�a�q}a��0�&Fm�A��kP#,���%90��H��l��� �$��2���ٔ�|9(��ݩI�f���yV��9NR�t�邫s��� .s� �]�p�*�R�ʍ��(ω��D-?���(�e��4G,���ݪ�Je~��8d�`I^�f��wi]v3�M?�i(��9U�t�:���T�X4* ����9��x�R�&�ނU��!� �7�I��Â���D@�)��.s�]z�v� <-�����r��s�`�h��lϩ��'��y^�|t։Dp�6J�\)2K�b�Ag����9N��p�k��0�S!o��Ag:��?��f�$�䌉�?xq4��5%ʖ�q[�q� ױo(0�)���U�A�[���6v�9��k;fx<` 9�ܗ=���Mn�m�AL�l:�+r@X�/[��&9�7l��e�`����e�3� $��Y'�*�c<�9�P���T��&��/ɟ!�d�j�fh�k�߾��oA������%��Ƚ0P�L�E���:JpX�`B+���`��@�.��IU��0 ~V�k�a�w����g��U�]D�U�칥���ꬺ̙U"]��)z�����7�m��\ݖ�n�dE�"�r���tN0��:��`p��!����@%�����@�C�0��m�0`�������_�P[�)�;��<�v�ؒ.<�t뻽u, T]����5 ������+Y.9��u�!�g�k����E�z�=M���O�A"##�8�Yx �G�i�� �$�qTըIN�hF(���1�f�#\�P��.�c��3����f7��wV!�T�Et��!��ϳr/C�kц�i.{��.|���:��.��v�ԅI,��y��~z�b>�Z� !㹫���c�b�GU�i�-C����rZ����p��y-�s�,�ST����<�6qha�y&�pݱ�(DX3TT�x�����"��T9������H�t�Q����<��Xuԧ�.�}�)��Ca�{V9�f�,|�#U&ځ��D��`U���M�+y'��0��E��'�kP$zLft�3�^����1���y߂J���^�_��Q&e�-(�a&�{��94��l} m9��Ӎ̵e�>���9N��㢡��_�Z��������a������v$j�B��A�t8M��u( ���`W�s[�|[�xZ���y�+��Cc�&3��X��L�4�r�A<�]���*I_S0�@���V�`r��;�,ܘ$�!7y���w�;ޑ������M�~��w��Ԍ�.Bn0dgm{�<r��Q���>3]�u��Aw�J�_N�� ֡�l@p�ZH�P�/Hȃ �@��Joˁ<v颎"3���yX7��{r�V�;ŋEb�خ���s�"���"~W�n�g,�R��o�����s7��8naq��-�@��RAW��I.�][\�>�A~V�E�.y���ĵ�0��l9L����w�Q�gQ�4)m�ԗ��+QW=*��{�7<����Ex��2OU!�a��|�D�h�y/�`a��c�kX��6�c��r+��jJ�v a�)��r���{�0=���A�j���ûs`���O ���E��ct�G/�0 � V�#x�k.XQlW���Z'~�Y��*�g६�a%�F)ʜNl0`?����j�_�������sh0`����8C&$�T�����!6aD~���(��,�Uo�W���;��k@e�k�<�2`�+d�źsg�I�6C��@pgn�����u���?m?��)eIl�[��0B!Y�d��B�[��8�ȏ ��lx.�4��0��~����G�q7&��p*[ >6�hf��G�C��(�x��^r�u��S�tؗ���%��t��<a�=�^��ʢ��q [y0��|��� ����<���{Ũ �"�������7��}M��9�}�+ró�r��9�h��E�����\P�[9��H�h���_�K��ot`�JTN��%`It�E�GG���N�@H���Q*�R�ya9��RE z�f/�ҏY<��g�߄�<)�û>�{�l��)dER�����l�D��Ub7��k��B1�����b�� ��p"M���Ƶ1q��=�" ���+��ڎ4��PL2�r����+��Ϝ�<�8t|،�m�,��~����J`r��fj���JN�N�C*uM��,����f9K����w�(����z�U��?=؛�Rf�K��X�i|��}�$����:Yx�t�_��Nr"{=����o�Y��[�� 8V�U1�c#'�!h1�ا�a��@�E&���=g�d�g�Խ���0�R\Qr@ 9�g]$T{v�:�����RQ���VќKB�8��+"_1B��ECpݶL���}���ĵ�v��}��*��W���ߒp���g�C<>�$?��5�� ��ޑ�.�φ���� >$ĹE�u�T���%� ]�̖��o��U{š2�^�YV�!?`�4��r@�8�/��g�20IP�8)M.�7�i�7�2�����W�)��۰&�[��9#�?��`@���/�P��_!+��x��壋~�܈�Z0p*\Z�rw�mX��V*e�A֙|��p ���'HB�k����f�i�mU~����W�L���b�"��0��.�(�Q][s� �F1 ���a`�{t�A[8�\` N�b�W�j� �]���h������� ��X�U��F�d���)Ƶ��QB��$��q����Z?N}�I���]�ł�j�������� �BW���q�7>Q�*d��-�t����K&T=W�����ó�#ٍ����`����D$ٓ�v���K)���.tE��! ;1��DB;]���`���j� ����Ĉ=��u� @٬�p�["��e��L��̶q��aI���m-���ܙ�S�U �gE�.wwg�y %�Fu�i$/&�uk�h p��গ���JY[gw�YL.��t?b���ǝ_,1ҁ�:�ϛ|���7^�?��ңg>{�4sԲ��FAJ��(y.^)Y���G��S��ֲ�o�@�g������B(a�6n���x|Eҵ���"��e{��IP��n��`��4+����#��J!´�c��(��xap��Đ0�&%�t���E0`_-j�Z��'���A�3fl��!��e�����'��&�)3�GW���?��`AqO|n�ut]D�~b�n��?�E�ܽ�e���;���ѕ����9K�{��!w���(��Fac�`kf����.�@B�c���WtљA�Y�UK5�`������W8���/�&�\\����t��J}C+�B�L^#qw��гtt��9����������[e�o�X.2��������#�{.9���M�J�#�wv����J�&�n�n�h2Vm�:Û!����s�Z�Ң 7�5Z�ӟX#�D�_V\��J���y\a���&?t��L] �$,��%���46�P��HX����2U�ov\�J��9Y�� �6chMr�p-ٴTT:���(|�0�oʚMκ���F=�+`0@��e�c��L3�~��ܴ�n>�YR�`�=X�C7J��r$Ta� ���i0`}��BOT"���^�^�{� �6��.:q��B&S�B�_5��q��+�"��X�W�����\���h���7�5��ȅ|��H����:(�[��z��[r��VgY�T<M`���d��g��5Xo�ϫ c�/kȁ<K� C[��vC �`�AJ�͐`nJ�u��j$�,C��^���[[Q�$t'| �x`��c-h��{�xw��hD��t��C��_�Yo��!9����`����!<�y�'CGy�G�M`���f$�r4?I�&[��/�KN�8��A�E%�E�^#r��9~o�����>X�>���978!�뇞��g5.�s<ҳm9`� Iu�"�D��Ņ��4X&� �R*Z��qtH�7�F��'�!��ڏ�(EtFC�w�LEZ)9`ڠ��[@�Hr�q�g�E�' D����y��B�zxbN�N���YnR�Hyx[+%O��Xr$ �Qi�F�z�I�V�k�X���-���9W܍�QZ9�P�Rs���@���ct>��9&��i �c�6�MS���J ��<(\V�zf����e�_����m��LX�+Qr;�n�_B�gB뎿�bB�1���b��H���_=�c��Ԟ��K���*�tW����>����C荤9��e��-�"��:������g�ZZ���z���&�Yyrl>�u*���o�����^�|AS�8�q�p��Q�J0�h�,Vs�c#V��Ƽ�U���Fh�;�G��aA�����2�ͻ�bM���D�J`Q����?�Q��dK#���ɳæpA�}�[8���+�;������N*y�?0�;^r��?>���X�D��4��º��8�a�;^���e�m���|S Z���7r�`h��~k�5�� �`E�A�ܐ��Y ���Bx�``�d;�~f��?X�;��kM��e(�&��BQ�����5���/�������W|qp���aT�H�pFǣ�ρ��h���j��[;�`�t�F�w�-�E|kTv���u����`m ��?aP������0@�"[��*08���g,�Eq}� K~K��"���%;����\� �3�r�6�k��2�U��atb`n�a!]ԩ���E`�.�`�Z`Pr��9�r쇘t��y:ʙ�r`����<X9�R���3A ��+9\i����n ~0>V���3�)�S6�JX�� ��٪�4K"�0 �PjI���a�P}wZuփ%(Mp1q��DM$��Wg4���p�8�z!4�n�e��|�bc3=�ܓK�h�����������U��w�z ��6/�p���_W|Xŋ-R�����_&g�Eb3gyL�'F~�N*��T�s�H�@�P~��6e�b�)� X��� ���v�k�����FBfd��k-���%J����+icз�I=����mx7���k��ǽ\�jN��0�H�U�N_�W�p����V��0��i�dm�><�\r�k�䀎w�X|/{9���l��'B)��k�nABv�� ��$�\XR�$/4��Av�{&� �B�Yk3� 0�� �FQE�OR����6�c�t��;a� 8��m0�-���`�ۡ�#�qx����\w:v0 � S0�AI"��%$����(��A�S�}���.����zR���7-���2�A[!W`��m�f[#w��;枺�,�x�HT�.`�yf��x\A�"�ON����'���@a���sJA��nbO�!4�0�"< "Y�a0��_g] ^rX�}�t�l;�0z7 ;���#$����T\���d�]�h*ã}��1�Ҝ��� ^EM�k��2��)W7��H�'��&�Q �A�VIkYX~x'�wf!���a&E�qQ:��>� v��GǃPN���v\�(rS�~�Ԅ��������NP�����T�@�z5��*/�Axn��_Γ�Ū�[�Ee�����'���`��f�o6ոq�Y��肾b���X4T���B�s��� 6���g�8GZB�&��h��P���u-� F�o]�Vx7sc>9� ��l%��q���~40*�Ͼ��O�b�ͨ��*)0�ļ %`4x���z��0'��wg,PF�� IL5Jf�7�� z�n�Ƅ�P)t�Ǔ��<�@2� �,Wm.8�x��"��"�P� KhXkc@�iqs]`�%���0�C ���H����b��`���*HF�Zׅo7����o�}f����Ƿ2�ኬձ/98>�����%;�'.ߺ.r�o��|�9�k�� �B��� %�K8ǩ�{��x7+ή���{��+0?q�{|��C���7��d>��sV �-���&�-�?` �*�s���]t��7��/BW��V� 'u8 �f�f�˒�-m]��C[<ʈzAe�+����4I����3��ɓ�.���s�6�ŕX't�}H�����c���9p����і��k�CX���˳�阤� ��~K4=��p��W.��.�g;��Wўkq�D{�G��~<��(zG4�Ě�W�Cf� �b����E�xV��oq:��m13�9�0gu���~��u��fC��~P����AA�!�!f�����+�_�����{��&�~���pWjY%Y�$�S�0 �I騸ɒه���`���oJͭ���^I{�?f�Lm�E��բ�f��g�8D5 �(�&-Q��~t E��`Ad�$H���z����}�����t�X͙����!�f 63�a!�j�z!��f��G�I���ms����#o1G�תwZ=�LbH�i�uP�!�C�L<~�球�_��D���}�����˰�8�a_j��D�X[���X�{�ȍ20�G�n(���e8�$�����m�<�0��M��5jW� D��m ��_��c���@z9x�a�����/���Uц��� 1�R�AӪ���{�8�9���o<p�}V|]�Ei��d=�{ �ȁJ����r��x�U��m���p�Ϸ�E���#3�j��[�����)]�ڟvWa��Sg���d�.���]���0�stQ[�����ի�V0���m�ƶ�NI�� r.�x��Eĺ��"<t����vgt%D�ք�������p�-�ڹ嗝��i}Vs̓� 0��]0.É� 7�� ��]s�<�`yΔ�>>��.,͌�?^�[d3� �����X�+*�k��lrڋ+�x?w�,�'6��E�J�b��̳Y#���ǍKj�4���x��y�U *F�u�ݚ���vW^�Vc_z%`����I�Wo� �V�^�+��� �dP��Ću,�p�$|�G��1Jmg(��6u��&��q�m�?�!gVW��� شp{�k�Lx6)�BP^Ey.{���n�%�0�}�8�M[�ʱ_�p�%��^�Z �] ��������ya��?� ;ݧ�^!���;�[����XOrK뀸y�J�9fZ�r��G���1�Ӧ�^/�!f�C�� �"y���9 ��g����ʰKT(o�˽����J?a��#�1kᇠay�ó�X9� }�;�qp}�_m]r0�*��-��� ��#�]��SI؈��!���F������=F�tg��[��[`��Ⱦ�p�tѱ�.��ϼ� ��b��C}��S��+t�S�[0�/V�E�/]��9��}���?9%8P dP����cy��7�..0`"%��$��������x^�Ao�<�э�60����G8;�1�7�G��Um�8\�bt�mc���J)l1� oF!e��ba ���5̞8��/��'�JQ�s3�D�C�Շ�Y�Ʉ!�[$�2�� w��0����TT']�X��h��=W�X�H�bT"�ʪ��al��� ,�z��^�m�NumR��IJJS9��8���p!?��V�V"�Q�냜�%6��t��E�nY�Z��gH (��U|.����n� !ys�W����p�T�~c�yz%xj��W���S�����w��V�{�ߐ`p�NX��8H��ؘ�� �p���H����`�b�æ.,`��d�><1�y���d眗ت�Y�e�rDž�5�Y+V�҉�sOp�Y� ���.0�Dqpէ�!DޥLXmV��$$��98��h����f��y�-Y}�@kAC�b·?Xx(@ r �$�7+p��&����pf�J������*�@��Rc�}oZ�Å<`�|6����0@��rM�L��,(1,0��Q�At�B��g�!u��YK��/���[+�O7Yo0`r"��R9|/J�� ����Zy+`@�ɇ�"ɁJ_�#$���V���wu������7��.��~�0x�g�X�H+���h6X"���J��90�^C�ׯ`�0n:0�;���`�y����n���0�k/<B0@�x~6䠊6���D�=|0��0�H�<����Ɂ��cbr�>�J��8�'A5�JD�t�R���8����O�z�{5_��'��MM,ˌ�Yz,��7=!�,� �XPs�i�P&vp!oq�"n��>�2�PН��F�Io� H��,�`I7�;�i�l5(Rc,�TN��,��ݎE''�^����i���<���(�E��СF�\�,Bj� �'s'ϭ�.���� a�W$���-�s�o�O��|�c�vNh�V�aMɠF��@��9Hb�}/�&z`�5�y�VƎv��@n������ӥ��S�������$7���M[��mY`��X��,��ì�߄б0���a'���� ;�1(+��p���pp�A `v ���?�\��Ur���� ��2x�Zr��?>M < ���\큕2���� V)@�Ur���: �0P�ܺ�s"���%rq_�믩�(A����R��r_�(��*KE��{�`�EN�r��P��v�[����C���a�/>B��2|\������%؈���pD��.H!�w���r1��d�̞NM��A[�]Pbn�GBq��!]�x�E�o��3p���G���r��.���H"�]��B'� �)xJ�!�k3��Q$��i�� `W`� ���e����":�9���.�t�����<�,X���}aM�� ���@A�0���jEѐ��� �ئDWd]AI���=$6������q���z��%6 ͉��ݢ ��R�7\R�F.�߹��d�.>���Y��3�/���d�7d��l�E��,�qQ�YƯ�����٦3��F)�P�3e�rm7�(��,�~���d���TX�����:��i{�@C�����G�6?9�w -n]���v� �t��i6 FÒ/<�7�/��ZJ!�����c)=���楿�+f�RE�<tae�o�8g�vɗh�9]�2�s�pǏC�a@�����o�a Ӛ���xJ��az�[�8�Lw+K��o0� ��v߉�f<0@Ƀ���%T��WJ��� 9���Q&��n,����Lm%xQ�v�Q�T��UG:P��!�0���b���ɼ{�`���tȱ�0��.� 0݊|r@��@� �b��>�}�l�W�^�Q��\���|�D\��kx���-�Bt����܀I%�}����E`��a��.�F)�H�,�d�pz|�}u��,/c@/r��-��a��|�nI�Go�?7sr�����ek�K*�%���d��R��;T�S}�Խ�!a�hB�\9�E%����k55��I�`��E/�3m9�.���6�/s�σȥ�g�3H�?L�|�Iy�����9��['9�C��Zs�ʅ����&��)�NT6���u���QO,��I,W�&�����`1��̈�R�����t>Oɛ�ɝ���3�*):1�`� u�����u��d;�s��(��Y��l�J�\܇�$�2_�������9H�eX�; ����[���Y�8�Ju���F��=��[��{O����a9X,�D�//P����[='��5� ^�zm���e�C�:�f�� �&��c8��ª�Y"���ׁ�� j�P��GN ��AV{��n�Y!�� ����'�[m5���TEE�m{ia�iJ��mrY�g��s4 ��}�� KH�H$#h~C�V�bk�1a_�/���u����屿�E����*L����+)��7>�g�X�z�AL���|a5��!̠� !��+�A9���F����)�([�����"XdM�`2�=}ǒ���w�zÐRv�ϖS^;���pأ*�FQS���/4H�ystu�O���#{���K3+췞s*��`���ǝ�.��8hw!<k̨��'7^"�E��` kD%� !�o��`c���M�a]!2�vm�vU��<k�G���=�éo,��d?{Z9��."�s�<�zg/��ay�"]t�����_ߪ8�"�^7!�8�����ϐ���8`�ƈE�c샵�����u���sHt�`��00\�,߫x9 Nz�ID��r f��B(T�t��(����WY,�_��X�l1�Z�\xRѧ�����[�F�Q�� �g3T9�����/��E��p��:]��� �_��6B�g~�y>yˤ��T��=�R����S0@Ia`�����r�� �Ś�3(������s&6��)�׃u�٫�?T��Բ��}X��J�{ ڇ��"N��"��0�A̖�i�G��RD�@�z6L�x���1XӚoB0x�4JJ��>[ApM)@��bhPeɔO���*Ĕ�tʂ��i�}En��Xx��|3JW�)�d��W�aٯ�K��*�P�A�sgn9�!����`��� � �V�~����W{5P8�����JS�0�@��3�Z�B�#@r0�P�<\v���F^�{�$v����J�WI&�⒃ߐh�L��?�g� �vW��9�u��`�x~�k��i��;�ka��T^�=���'N�e�Q��B��3�̻���]֔1�"�T��1������"��H���u�{ɊDt��֜{�,/�hǖ��T�r`�&�`��]��$�xcqIp�iNr@ea�U�GHm�'���r��,�䞿��?����˒�r�0/�"�4%����� �L����&$YJ�-\����']�y`,��$bx�.oa���CGEQB�XtOx�h8����\�Q*��'��a�� �tVq{�;�l�w����\~qO���_��M�TР�0tf��g�܃:y��g�Ȱ�I<Κ�����TL+d�����=1<e�7;k�f�H=��)lQ9�4Cb���Mbe�F�@ k$��\�k�G��b����:�ȆUZK�.)��gs|�,�S�! @�z�Wô1�'{5�}1�(<��=�_�gQ;nU�h�U�;b�Й�w*��7F��F`�w!d剁��viRz<H�'YHc'� i�4��a��w�i�`uU �l۲�$����c3���L`%���E9�`��0�Y���m`kx `05��9e������p�>^�%��U��FU�s� �?0�j�p��{`�G������-� s����+�P�3��:=�A8�@f���">�̽���e��ea��֘��YM�r��$7����`��-Arh3W60��VI�-��~#f�T'�:�l��;�sCh��<�� �u��r0r��Mw���� B������^��E �Atï��w�F�5N9��#�d��%�0x���6|WɁ��~�v�B_�E`�.B��%Ok�F��ܤ�H³���܉0�� �}P<e�"y��S���*wx����|���wq��a�tw�c��-�^�;�E������y�f� ����I vW���䆽��N F��QRK��Z��ͪ D �5�KU �N�y�ͯ�2��O��?h�þ����N�9j����ݸ&�Tf��j�pn{�«�i*%��DSA�E�I�Êyc��%�+J���k�l^m�cvg�T��s�{mtuV�� /�ݞ�&xfa@7��U���R���0(�(+��P�_�[}8(�i����=` �Z��-i|S����(;�T����=9:�l< w�i/��w�Km����H9�s Q� ���~?�v����Ϝ#+*�&�������`��c��5}h������C'�Ëۙcr9p|W�W��^r��M��`��#eB�+�~!�R0�TD}����T:!���삛iP48pPQY��}��QB���Ф2����J�e�l{H��?}� ��+�������r��M{?���rr�� �,���!�U/�'dz� χ���$p��j�dC��]��� bBC�s/b�^�Ǜ� �o��}<��d�NʇY�.�l��s8#�O%4kb���²6��o-l�gN��=���/���uc�,�����C]��LQ����"��f�"��`O<"`ټ�.�s-]4�����!�J�h,�"� th�pjc�S5=��p�W>�摃�@��fI������yo ͤ����>_h2E��_�k�ʶ��vb�I��sb���+��gh���h����b��L����C�ɛeSZy6�m6LZ�=y�Ր��*A��3��ߺ�iŐ���>@��Yu�Xw�\��`�*�ť#@�&cY��E �5,�{S�f̻iQ$"������6Jf�٬�z��>�G�ZUgq`��_�hO0���$棖�~̮� �<MY��9*G$�a�j��t湯�$8kVj8�J�����m�w68^��W���*<�����K (fB��:0�]`E �_�RI�߂�VC�f��̌�W�(f0@��m�0�=rP� ~��wUI$9�xm\c��/� �Q���K�L[��+q�o��в�����n���Ba�w*�.�(Y�7̐�O�{n�X�b)0���S�g-9|]���?�(f���b��^zbY�zGO��]#s7�;R8 N�Qt���jpx�c�[��|�SX-�\�i�2����!�ʾZ���f� �j08tY�P��Pr{����0@�e\!��}�r�<0P#�0�b�����Ix~��Rg�Hq�<$$V��Zqsi��E��<��l9H�-]�}�.\]�o�@��a`�q'�\�0ԉ�)w+n���'��a $��`��͋փ�8�9�l7���|�4d�F)~+� �6��x���C(S�d($�U�7�H���#f)�\��P���V��n��ރ�x]�`�zn���5��~p��罞$eJT����+M�ʎ��@wV���,�\�����+������s�5yZ��z��(O0��I�V͈�!�'0�}���:��E|�l����{u���1���6��{4�3d3W�9�'_�ܚ'~�xQ����(\�}?�5��;�G�8?�.�b� UCQJ*X�O�(�^_�[p�T���F>���\���F�bMr����@�W�c��]��J�\8�r�y�w��@ï�*�@�o��W��v+�14����7���>�`�f������yۊ�ٜ$Ta�-�;�=�Ֆغ0@���0��d�M9��u���=�rE:r�!��q�u�x���s��?ޑ|�?�ߑ@ ȁ�EÞ-�����c`��q~��,z0�0�&4���=�I����b=;~�<��=�9؋2�a��B�!sx�ߙus=�&��)��$��{�N~��x��G�v���j�߯H��]��ba��B!ry0x��b0@��-�*��Ы� .�=@��7�|�{�"�ڐ ��C!{�0��t��Bm9h�"�l�_i��G�,_SQ�)�&�F��P�3NP���w+�sk�u���R<+��M�<K":����ܶ(�e��"-����'6ë�6�F��`�`�Sa4��J�-(��J�2-�6�i0���GuV=Y���mR^Pk�[|��:;O����ZZ?[��S� �(��hlq�SZ'+P.�q̙��gD��Dx�92�`�������O�'��� �ң���)⸷��}��d� �9�����"3�]���ַ��D>� ���r}����d%܈�_pcݲU�Uh���o,E���(�f�袕G t��q��o8������i'0���8�ut�u�0yCR2\w��V������m�${`��5�!�˽P�[D$��嵬�\ap��RYr�-k��͙�%���|�Nf�cQ���Cs�U1�!���Â&2*P ��w�6�u1)���ź���rp��=pv� [�.&0�����J��< �G(I���|U�% ���,y��;`���uʗfC�A�%�o�_ߊ�Ś~�~��7.�7mUָ0��w�O�-�����}r]���:���=����bvo]r2� t�7AK�X�Ky{<+��@���@a}��`/{鄁���kxI���ۄ�U��TA�$ҝ��y`|E,kSa�c��XnITnc��.l���E3�/T��@a���[�V� ��MV�4�����e��KkDnU^k2�'��+7�xf?�j [�Q�4t�y�$Cp�Y���Ol4��#�����~�32rE]��ܺ_S�Y�lNS��29�T3��>�q� ���R-�y�]U �or�G�W��Q.}_/�����BI���,������vČlLL����D��M?�=�ʐP.+��Z >��l�i�&�;��=�Nâ��R���]��D>��\ٽ8H��Ω��1���%���3�;^�#�y�Dr����`t�p⇬0�`��R�z�rT���Ϯ���K�ኊ�k�p��;��@��:��ssMr�\�N�d$����چ�*jo�iFk�(��9!~��S�+��_�q�ϼ9`�I�c�҃ө�X�i�����0����B(>@�_�~!� Ŵ�9���50�8L#%�3}��1�F]BI�s�O�f]�T}}D#p���i����Pďu�|q�"�Ӳ�í���|�)�Z#��E��� k��`�-9�$�Qf�3 �kH 1��G~%͓��n�E����`�Hem�����;f��`�%��l:�g���rd�х�!"j��[4D��r���C�r��.�s���*�6g����H��nX��t�0h���>x]���W���ֳdw����\Z��j�k^��`}�U�(�u�7��mV �}g�D������&�8�y��5�{�n���d�(�5P�7��k��s?']���Ɍ�JV�V\�(Nn�j�NŹO���������DȉUƤ�&������M��'�ͼ�����Hb�`�?��,��4Q <���|u�%�l�s���(i����z� ��]%f��)k�d�Ki���7�XG��8ޛ���`�J�k��$g����[��_��bPW� �x��P���K��A��� uX��>a���I �����0Ce�����+�|4�Y��r3R��V�!9�@B�����9��Y?�L�nk�6?;^@Ж��ѫDq���K�\���xPP� ` �И[�eg�e��s����>0�g�ɓeu�_z���'r@�D��J)�>x���?�]�{�J8x����ú�8�I��K)v��GY*���[<�<�֒a�."��dSr�TFޏP\!]�����QB�kө}�Ò���� ���F��B@V%�'��_ o<������F���=�� 0�5��9�PȐ�<�(��krء[(�ׄ�ԍ~���-�㜜�O����9�������R�?�Em9�y`��n�F�6˞>�>�������+�a��f����L��e�~eq�����-{%�v�7{�J�r����ed>�m���Z<�h��܉��[���2���c8K�$�I,��[g���ɠ�I^ ��P�GVצ����1�������%>�Ƚh��a�A��Q5�߂�$rxF�K�:I�� �rt��`���"��0��]Za@�W���:��y��Z�Ȱ<tI�RN�{�����\4)�X`0�� W�Ć�K`��A�Ϩ{����ϻ�7B��9<Y,L� ��X�9[٢����,Qs� gph��p�|6=_B5J����qхV9ѱ�mt(��d{��J`Pe�`�T���E\̨����������� B>^z�{h%�ݧB)1�,<_Кw]1��� OV#���n�b�q���U�����O�l7��IX���+�tW8�ĭJ�C4`W��ՖW 9���.s�������'ՄG~�Q���B����A�N���ᘒ��� ��ܘ��s�r���#�ɑm]CƥH��[�>^�����cݙ.�0`��1`_Э |��"���.:�� H%~���:/��/����`�U���:��t�g3��`0���^���sϞ��?��e"2`l�F�Ϋ�=ϱ���{�w���x��'���]�p}ثQ�[A�~'���@r��C`t�M�Ar@���W��WF�x0�A`P���^�TC�����s���y@�K���8l<mԙ�S��0/�=�&71��|��2�NF����ה��}�V'嘀�+k�CM�����g����PVa e��{�í�ϫv!��$���竄B@y����.'0JƆW}�`�h�d��� .�5Y�AioU) I��El�����WC͟�;�u�|� �/�{�&"��ιy�0h���<�B_X�T��?Ke�{��+����ҭ�4C&�e��1bî�lc5�y�A&y��-��`�j0KE$�~����b�Խ���B�B���啢9���J�������0���F�-bGB��ܵ�Z&�yf��r�Z_�bDRx�e�W�y�w��� ��,��p���Or00[@�5�0�'�RD4�3�ŀ*�@S :����5C(���eC ܹ�[~�+����G�Q�Ok����QD��$�<$�A���ꢛk`�I�!���!c��q�1�? {��(7������$�P�Zo��0�{�7c�a�1�@�OI�BO�Ր�/��#lj�R�d�S�c��Eϋ�(�"zM$HP��;"9���.�瘠t�L�u �����A(JχdE�A�H�]Dy+H${�f=��P��J=����4׆Y�����Q�Ez\�ECW� �q0����]X�_�C7��@r@�H���w9�E���|�3B������zՓ[$�m�8X +��~aM��|B���8��#�tU�!6V��Dކ% �� I���hDb�6���YA�<�2>;g;aY"?�<��f��U��9��c):�A>Wc&i2��$"vm��k�����m6���!I��b��& �=��pێ�u���y�A��Un� .a�w�֔؊�jn�"�+:0�8�& y 8NI���*x�)��#m�3����w�|B�G��Tx��7,�fT,0��xZ`p �*�3�M��H��ޓ�'.���T�J�e6M��z���}KL�Dh��$�C߁FݬB��J��F�7*WzW�~����������5��r@���>�������@�@��E�1�ƀ0ΰ��^��� cx�`FЈ�.�<�v����+�B��SPy/9D�#���Y|�F�:!�[jHCq|��-�r���emV��i�Z4\��\�:�z�����B>y}�{=?,�ϊ�=Z�j1?`�0P��0��o��#懔�e�+�>���AoA�(0�tے���1 \5.��-0�ڒ��n�� ��4N�iCr-TR�wܸXy�� �o�lJ!ϠKG��/N���`����zdJV8�Xkt���c�E�W�D ��N�6�d��E�����a�����ŝDsJ�2��ӱ���Ķ�z;�v��q3�,.~��DSʋd��2�ɼeJuÚI������E�d�<H����Q���|�Y �d�q��Ϊz�/\u��26@d�?��xk�����#���cT4%~]W�+��'Yyە�3?0��TVg\���5BJ�f� �AM<�5d���$�����1x���pE9 s�KZ�@���E���3C�h��p�6L8��nIB5a���xy��YO�>`�a���[��k��9`CAN��H�I�5"I �0 iGZ��x��`k � 0� _4��� �n%J�@� ߧb��<0�ij$�'EEI� �H4_��-�����4L��;σH���A�ϰf0��_�[`�}�V�G�L��Ti0��\c����뷚�b����UC�E��?�Z?�,��ƀ�A��W��,����_��͡�����k�h�5z>n�e��l�����<l5���c��&Z���߮ �Ԁr�9��8eV��x&-��?��j7��k1����Мdz�-�k��}�u�/�;��{���[�E�9H ������t �����.����p;�>�&9��LPF�����d�"�w��"� u���c���G��n����kQl��%.�"�S�� {.7�E$�c�"�C��?� �.#ȁ0�~�.2�,ϓ�@�df�hƲ�f�Üd�1��/�y���US�5�E�gEI��X��e��(� �Q}��[�����<<�b��"�5� n�*�m��}c�q�Ѓ%�G�Q�>�D�ꝁ���Wq��'�}�F�M���:�e�� �q�"�S� �c�z�b�gPy&��yU��A2�-;|⊸��A�Fu�� �2��*�8`���L������(�)Z0�k$�Y�iT{<'�ۉ�V������*�������:]��*G-�<�xí|�`�\���4�tS�*W;����P����<�~*��s�r�}�A��OCH�0���<3r'ܯ���2��L�2�e9���b�"���>F����Ц+P�LBP�j�s�4���o��X�7�Q9�U�aE����g�S0 �)"<a0��=�dE�;�˖�k;x�~=�r�yd���On�9OP{\���#��e�)���ϔ�6Pe|���}s5g��I0��5�"5 �RP�'mQz��G:x>7k'�M��$�:{W��7>qj���S/��>�S�^�ъ����E<+����sv����*�J��������##�^���c%X_ɶzބr><��u��Sr��g�{/�W�F�H��.�d^C�:T�C�� 8�73ܩ�zSK��oɁtr�E�9�jݲ��Q���k���(�b�q���y�UQ�0��](@-���5`�01�߮/~��<�P�r��߃{�>;%K(�ۤ��0w)��R�(/utKq�pi�e��(ŭ8��בݝ�SN.��� �Q|�z�-���ӭ�E�d<�Ab�\yk(�)%y�i�`Vb*XkWl��#^�0`>���c�� f��3�a�Yd'��J�w�Ac�t;�`Q~� 4�aM=x8߮�G1��L��y���g�m����S,���J� 3_nH� ����p��ƍ{�����,��BvC�n*Q�jfT9�=f��I*4�%�x8X�T�s���X� Sy P]S}�Mc���7�"�gD.�ҳ��aI�n ���V��a ���~gos�-��K��F+���65����{),k �Bp��]����*p=0اT���{�(���<����P�Ed��6%X�;4$�9w l�����v�}`��G�J�vv�����A�d/�Tr(7�Nx�7�� ����u�-�s��!�)n08�Y�?�$m]d=�1�>�[V�qo�"~�B6���$�P�t��燑 ��g��Y�}0 �^��v �bϐ�|b�.�o�{�b]��y2i)D����{�}�!�rvrEy�WG�ܖ*i�E�`���`@Ek�A�K��� 9ƃ�*Ӊ;U�^x�Dًٰ!�^}٣UWK3ũT:>�ʪn��I���?p��ϼa�It���P�w��ܘ�����yb{�P��X�A�<1X+%��,b�a�E��������ہ��G�f��@ۑ��P0O%�p1A���!ā�����՛�Wg�d�І�e��� |ӏc��9*Ӥ�LA�ZVy���U��_"p�4Zf��F$��s�̺��+�%,]da�a��!�AP�T% �Ƌ 7.g�%n�ZM ��k�\�����g�(���C┄�&����w!�l�O"_�>�#Q`p��H����1�k���O�>5N��I�l�%�#�]T|��E���`���B�=)(�l�$w"9�5�� T�Q�I�s,$��3]J��A�X0@��~SR�=�2�f���k��� ��4��qr]e8z,�@��Ծ�����'������欻���2c�Ɂ<����}o>�FJ��*�e-%1���^W9-�����f�3�ST@����E`�ݒ-" ���d<��DB6Hp�gG(��d9�0��1Z�e�*9�TH��� �9�(W��/+B� �5���{�4j�C~�\bt`0@�� � suؗ�l��Q�c`��� �h� ���Er����y�3г)Z���X��:a,~��=�����I� D����{œhڭ�m�<�]W���]�ݪ_�ܓX̎f�p.V2@�[��hJP�3�n=/�P���c�<, �ր�Yuy�D���]�1!��Į ��Pv���^�L��HW~8�H�O8}�0�1��Y��4i��v3tu�e�w����ޮ�c��`�N��Ɋ�HM��byߩ'��L�प^���� �q�Xx�ޚ�����Ex���!�ݪ7L�$Yf�˽�_�xFy��|��3�N�ð��ޯ���$�7XN@������(3��� ���{�|�0��'��������>u�K�k�tգ4[Ds���x����5x�B���A���el.3I�A*�N�7�g���0���e�Ax�nq�A�˵�r�@��L��ҟ�b�0�P�>��*�Sx����z/@�̬�b��� ��)Bh6��1�Va��<'+η��?����Q�����Ν/N��r��d��a��}�����}{+0�0�0�����R�����m]d>�98(�oJr���E��50���<=b����E�~����^�.9��������� �]����5t �.jc�lB���1�w�y��Mѻ���_���zqh(����Y�w�K.,䀜�� <e��)e�O���Q�:�u~�$��� j�.R��U`��� 1:j��D�9���*��3�bN�Զ��ym�f�T��� ڣ���L�c�8O��葰��,�ˊ��F�2G�~��Tk��A;OL?JL͓�V4]W�GW�Z���²�y�7��}���C�<�0�-�X������/ � ��#Ji+���3��E�%J+ל����('~nw� �m�N�n�Lxnld>emW��0(X�~�s J ?��z��6��O(!�\I���[A$�� ���.aQ�,�S�r0`�����>�PN��D��,��ϛ�Y���?d�u�`�%G��X�����iP�D��ȩn��Y��m,S��}����M�Ew+\���TG>k��[�n�Ol�Rֿ�ﮱ?)�49����1Nս�'~�?�Ġ�0 |r�s�z��ty����� �GPm���i2b��Aѓ�i�=�T�O��)�A��m����i� �P^ū��+Vn��������ҝL����7���.qN��v��|��g҄�\����xr��� 0��h��qt𣰑�3����%gI�Wv{E`��n�_0�d�Zm]�2 1�?/�Þ�w��\@�{��50���ޙT*��P�<��y�n~tX&��U:���~갔�y�g�"����}8` 9����*������ݫ�A`P3Y(�A��E�0�S�.�V��"0�.������ �*1K�kY��b�-�/�{�y��H�u��X�fZ�.��(;�+�?�M�wK��X�G[(�z���2>�d5��bVeal$��8D�{� ���*:clf7\xx���W�������,ʴ©7W1\j�61WBU�xcW�:���ʒR�� �Ki��������5�G��VXJ�T�6ke:��[4�r�-�lj�l砠��'�V�?t���uש0 Ɇ&ʡ���ƅAlR6B���_h�J��` �'��+L Q��?p��dPf���^��X$�J�U�6�(Aq�`m�q���ȉ��� D�M�K TĞ��P���^�%Vڋ>��XL����;�G��P�#����d�a��i�rF�] !ʃ}3�;<��^ 9��1�Xܙ(&��q<����D��!�!��������B��|��9X�����n_wt��y0��[�k 9�X{P��e]d�F��9����Vd��fn����^��u��u�����P�����Ϣw9P�\�o�;7�ETG!ʇ�8��-��RE$��C5� �P�}�A��H 7�4�8l 5�{�v���7VD.��)�Dv� �=��~�H11�#my5��B�����[�8X�p�����-4.GG���v��+(��n���yڹ\0`�ޘ��,D�z_��L�����r`��/�9����h����,C5���q���C��i���㡦��55�ku'ɷC�&��O��Hw��A���D�%g[s���� �j�ʹ�c���I�h���T�v�� a6QuUMB��9\�f����s�&5�o0��2���b�A�������^*M�M��|��0���"�M���q�T5�m��8 ��d���X�Zl�B9f�5��s���,��8����B�Bx<�/MU���e���.�$ո0�XzX�TX5EQ�^g`p����M?�����o�c6�C�f2�"�9X�و�D(&}��}M�n7�H��wV�&x �5����(�>HP�k�^y��Ӭ[��@#|[�k<W�s6 �}��K���'�%���a@!��М0`�N$rF�My⩃v�dfb@%X���TĔ�Nx�|>����`�V��8ad@���<�h;;K7PN˞�����$b�`�I��V�5�>�g{ք�rK̳���_ i��}�X}e�` ���ӘY��_�}� l0P3�"Q�@�@��0w���.�y�*�t�l��&��߹n�#��;0@gJ�xfd{����ka��I�3��.Bnbr��K��N��kcD�D&Y����X�.��YB8]E1[~��T�*�줋�.��.�?:�!��y���\���Vq�)�r$��� ��н��s4�U��S��B��kW����ͩf0c<j�סVPܕ��pv�T��\"9=�$�� ��؉M��}�w@�~T�p`�N��)�#�Gݶ�jɢ���u��3(��8@Ch��5�T�R��_���>b��lD|�Ls��s�z 4$l$�?5��3S��dv���g�$D�"�lze�\�9�Z���'���rY�ȴ��gv%�<��y�=J��=!jc�5�0j��?}� )%���UͿߗEBq�Cr���|�^�j��?i��|��? �J(��/�z��&�G7q��0�}����-����gO]��r ��`l�w�I� _́7"1ZXZ�C��r&�ň��k���CeM¸��~���[�-r��s,v��<���鿈 @,В�<v0�6w2�&@�Bլ7��ߊ�Ò4�<�әC�Q��IF�W+V�&9�3|L;����?CK�~�36�x@r��`��n0�p��#H(��=Tu�A�A���l�ڒOL�'�Ȑ;�?��7X� �"�F��X��y����o�uY��ɽ�M%�Hr!Ca�A02aEfY��Z0`����.b���� g#� �p8�G�������Q:إ�t��K�\���e6=���2Q��[튕ag^8t(��E�z1��JA�-��Au�oU8$��PD�L�s�rFBX*~r��>�6�k��@�P�1�?�o����E�Q�C��hճ*Ge�0�N���|l,�hv��E�dN�Q2�ҺUqĚ� s���4Ϊ-f8l�gV݂��8���7��i%����>�w�5�� �@������bmQ�s�fQ�븬���Ӄ�R��"�+�]���/DaJ0�vQt�-:|��@���Y<QLP�)�88�P8m�P���e�?�y?�/I�h̤t���`F�*�:=�{�c����G[�`G�V#+��� ����_�}@sV�c��C�����I<7+Y����%(�%�B-��P(,�������\��b����g���kH�r_0�����o~��R��9#�!-����[<��cA�|��ي�J!� =�}�K/�9��`{�Z(����j�A��T�W�F&��\�~�M�S��j���~v��en��U֝{ ���3�:��!C�����C֑������&g��`Юښ��5��uRU�~�r(�n�x��DE����«/ܨ�~0k�ȍ0 ���䀐�tz��W�\]��:<��h�-��Y�7R��aN0W��h�hgH��s2b[!�5�M�u���y�9��{�:p�r�.�y��������IX�GQ�3��R�VI�?f�Cdz�Q<���8�M�UI�7;K%��Yѡq��Ѥ7�Ł��<�S'U;�<�,z��9 }�F�� UL����WϹ�\C����(J�r������}d���U�9 �v��,�l�bo�Z?�r^:�m�!'�x��Y)��T��u�3��Ù��ŧ�+E^B|����;�$��:i�'��*b�"Aj9�a�(��(��4��_��<#�Æ����-�~x��*�W���I|�k�pϹ�>��w܋� B��W�<�*0x��+����A�$y� �<0��ba0�(�F>�j$:��/��:j�Ú����a����p�p��y�����;rL���H8H�@r0�ik��d�)떍��ҳ�s�iͅ�����.x �|�K~w�1 �&����g�w�&��hZ�@�/������!��0�B{`�/��:ЅN�P,vT���p�e�(,0$�ᓱ�,�����]t��]{���Pvv>�ѭ���0� f8ӊ'�aN@����^�g�l��G��0aP�("��Ԗ�w�ԙ����?r�Ռ��1�):��dl�����<�U%���p0rZ�P����2\Ɨ>�E�J�Ǐo,q_Di���@r@����@�����n]�F����d�rE��u���a0�$�ȵ��L��ɪ�-�"x2���d�`z,W��]F,J�HĪ���e�?'�*�����X��w{W#��Ʀ{�}��[�y<kpC3�yvr���m-���%����k��~�)v#Nt/�c���F��h;�b�����1(��8,���K�=̼IʞD�EM^�(�pD��Y` �k�% i�:JOu��㷍V �(������v�0� �=qK�5��j�(1ap��L`e��~(8xn|rc)0��p�ޜ� j'�{Z!Of����7#V�y�i��$A��)v�f]���^�<O���0�>&*�Z?�Iz����J��FׂB��{[��,��1 ����+�ᖙ�7I����r�� _����<��ͯ|�a�����Z����@}��ݺ�N��gm��+��:��̒�9�f���\_�5@��[��&(��k�����`�^���O7/gGx������F>0�w��Z���m�&π`����! 9@q ��3�� ���� dB9������}do �p�� `P���ܣ08��Y���(�@��f?�t�0رL���F`p�iD�6�_�1���B��L�tr�}A� �(0����Ed����|��<��0�'����2o%�?r�����ޝ�M�,x�q��Va 9�hg�(`�I���҉/9@1m�}�m�@r�<�8W�P:Ētt�Y���P��*y҄��=���}��t�B�Fu�:��1�F��Ǝ+��+��T���+(-켦!�7�Y ����8���"����$��)u#�0�Ӟ����A��j#�C�J�zW6�K�+�oh6w�P#�>�ɇ��!��/�ޟ�<��zO���d�*p��Pr�$h8��l����L�$����Y+�>�|0 Fe��4���bD����A~Ӵ@y���^;���w0P�=��i�J�D90�r@Q�s-B��`@,s�kG߿������`ȓ�0�B��$�b������ �%��~����ڟ���Y�0��c���7������;coL�B^�`�j��r��Zo�Nb0�zV]>�0�yM�7�}���a4� #����:��;�\��{�0r�,�`�(���rͫ��`�y�&&_D�B��;pb ��[E�A���"�K�����þRA�<�|9`-�xò 9�UOT8)aκC���ڻԑr8P�����o�<�uJ�Q����q�J'ą.��?�XB�Q���*�Hr���s�?;�=Yb�6�-�$�j�-�#_V.���^~ D���I�"�l�ù�r�1� �X��5�N暐�p[Qm'�~��U|���W���T�N��uF��̈́N�@�Hr��']�u��w[�?j�|H8�����/�q��U�OTC��Ē�������1d��#�8�&=;_�.=�'(�[?7��1��ds79��';Q�1���e�nI��.�A�<�P��! 1�:�a��yY��z���!���`�����WW�$�Ĺ�bne.������!���N��-��{q� ���ƂW]\@�1@���ć��+͛��ML�����9=�b8����[0�lo9���90�0n�,b�ݨ��_����R0":K����q?���,�f���=Q�d߮L:� (��j�3k"�Q�` ���3�e�'-�&�@�ߌ�#L`�Ma@o��~� B\L�\��<Ą?%O-sqq [���N��'������7r���:���ǝ��2��C�����b����jw%ޖ<ѧ?⡐,Ι�`��3�!�1��*�A`����(�1�ca�:�t;X��a���4{�0��~����l(;�`7�ޛ��ȹ������t�[c�s��A�2���6��� *��Ͽ���Tj*�Jv�6F$|��b�By����`&����k4 �Á�Q�B�9�x��pK/� xv�"�Ƭ�!�K�>�kxe'X �3��i�`���h�>ϵH���9"�=غ"9o�%���r$E��0��G�^zh�A�!�"BV�� c_C������E&�T�hW�pφ�X��u�p@��Y���97��O���y�y-����f�F>؋��;I�Ŧ��C� �(,�a�!�Q�;�� ,f�>w�Vx4d��ڳ>HnY�A�<9��.Įc��Y�N�u�0�A��b�*Y5�J�*~�����jT��<<����+5㞇�x���EuS?Q��L���`o'٤A���ޞd�/kc�� ��'Ӵh��/����*��Z��`a��S�%�NX���Y5u�-T�J��TIB#~nk�-�� �����3���!�ߛ��I}+���"�1eUұ�`���v�������P�8ʉ^ ��)a�p a���a$9`|0�X�ͷ�ED>ȞP�j��ܳk���0Z�0�q3I��S��;ɡ֍���ǯ/E"9��J��v#�9KS壤��Ś����Op�,O0��h�V�Up��~b�U�*x�[a�o�滒N����.g{�g~@�G'/��m��o��Z�5�L��߿��ݬf���_�k����ʹW���-.=w��5IH�D�2�=�w����NL5\�hss8�~�����3���E4�N�x��h�;�RRr@5��m9_䀪��E�9y7�K�B�Cُȁ��$텁z�4]\O���]��H��<hc`J������\���r3��,��?e�gQ.J_.W3�J��sJa��Ǖ#9?&�������8���0������\$��:�F~p�S��\��]�F�O�zQ��*)=*��8��[�C�y�=�TɨaR��`���GCςU�CÍ�)D�Kp�=��D`�J�/,�mY��j�{�f7Br`�R�:�� *�6^+�W�) �z�Mʵtŧ�\�Ul���B!�����b\s�S9�����Y����L�F�08���A�/�5ɐS�"l��Ǣ�&��0�eofׄ֠��w4��䧞�{�$��G����|ga����u���G���� x.��A�$��}Q�Y7�ITr�w�_'����H���4�=��m�6)�J���+��(y�k�����z8d6˜��Q�\�A�C��w����%�`T�+=�Ч�`_s�i����oU��7�۷P4$f�y7�q�<,�{���k����$�"�0['a�Qp���ŇY��s�XK䄎�����EQ.,]��0`�E�]�Û��o��陏#�9�OC�.}֑5���&�)�P)JU����@r@{� �Z�Ť��]��%6ٌ��E�D�Vi��!'9�ފ��Y?�+P�(*�ǂ�� :a��C�"v�UIqa�HT ���E��ߜ` 9��U�����Ka50��/���o�Z���[�^��M�E�bg> ��}6���H��.*�L��H7�u�,�����$�͍���&MV̐�P�O�0��J�局��b� n������t�oՉE%�G(�I&�d���?4N�wA��@�7+j�SiO��I%IY����>�:vkc�&`�k`��0F����}f �%��`��Ú����b5�ˢ#����Ha�&��(g).�e`6��[����T�C�Aȣ�ʱ6I_�؋H����0s�,t�xA0���O{U4tQʠ�ͪ�dʗC`��3��0�x�8���U�'�e�\Kt�q�x@uH�nLKQ<�M��u'`E�YB�<�0B^�q��%�˂���@���DO�Z1��RD�l?��4�,�|��`�ۻ�t`��SAY.x>f�S��@a�4Q��飀����nM�8�N���K"A���d)���� ���rI�SR�(r�wY�J��f�ppd�B`pu��KhW���#ѿ1����7?z��*(�U�%����t�)�(���b��^���R����^�$�����æ�.�-��q��AMe4f��Mb����v/�,�H�aIsPD�k9}$쥋x����}��E ��A�mVz[r�CQ�y�.��tѠ����������_�y��Ip���dO݇�I��v6�C(b�q|!JS�dL��I'(AT~�*�:�oM���h����&<�"��U3[N�پt���Il�aͺVo����~��7(�uQ)�Y���f����:��8�� �UX���C�jP?JDI0%�fVĒ1?�V��2T�80P_����� �(���nu���/�EQM�lW6�e$s�ɳv�5U]���jc0ł3Ui��:��5��������� �Њ>��j��Ҫ��^�(��~�2P�Pqt+'���i��ؔ�$�w��D����n�1?�� !���^Ԗ'W���셤?�>�2 ����N���$�[pe�j��Hfj_�T�Li��3�3�{�j��qa@���#�i�X�>�`d˛���z��W,&�A���gsr��R_�F�0�3ǃܛ7F.. ֝C�`|�ɍ�x9�n�%�;7���{����]����=���.I� J�⤋ԍ.]�3"�/|.0���&�O8���=���r��X��e�G��� d����(��enH���#e�GnԀ�S�r���捫9cZ��=2_�d� 0�������0���"��hM����?C�����E�� bν�(�t��ޓy5���/�A0A4|����$`�>,�U�H��++=b\��9�IL�ck��iq�3�< Q"4-ŝo*�n����1���A��I� S)��P�sTQ��v���N3�x�me��y���0붕C�p�+�<��(=O�\�䏽Wŭ�� ��褨b��8��� �9+*����Z<�U�߲y�Д\�~%�:�դ���0��-��jJ�3�~�����ǘS=��h��@\KT��0�m�ĸA3Q��gxL�q�Xb�����,���d�,�G�"����$��0��7 C 8�|��y�;����}[�%\pt��VS�&�n����&C�k%(�T� M�>���zL��'?�2����\I���&9��yW����eB�)?�N���/{�����L����S��G���� 콳w9�`k��i��iS�`�-�Q0X�� ����m��Im�1r���ǘI�����S��|x�$�0@���hˁa� e�` ���O�,7�(��ɭ��/�}2��tю��B!D� �t�u� 9�~]��``@�M�6�#\͐���ڋ�@r��u|�0�t��qXU�V|n��`�Ƿ�4<a�{�9܉f?�!G�y�w��*�20��� �K��$�EB���(���`�O�Og�1�|莋0P! r F��j��.cpY���kXw��7 -_�\Ϊ&+����>j�۬��S��B 9�%�A�>!�"�fvG���Jmr�����ۗ��ײt�f"xbH4ǃL;:?C���(X�c4�}�ɶ�r<A8�����1��̏��y�uϜٶ)��$�p�P��z|��N��Yx/j$���(8,G��8�X��J@p �]��H8s��^ Ҋ rw5����$�%q�̒�!( 2"�͗���OU*�nbN�~a�z=��㺪,�H�j�C60 W� ~��/WkI��ʊgS����g���i�_c�JD��c[�Ut��[�"��A�9� (�(���A�(L�� w7������^jc���p+��JN�s��Ɗ�د#9PX��8��n'u9!:0 �w\�Έ��}$G��`p���^�]�o�����rA`�f;,ꗬ'I|*��z����\�z����`�&Gr>S�a�����_��x�����>�0b�P����I�zV�f��-�B1�� {����Eq UlkqЃA]�/(��p#0����Bf��m~o��_`�#�~m0����vt����$;�I>���k����~^͜�K�E�����Ϟ3s~{JHI�}�\�k6F���+���N�<d[�����x���2�xL�v#�9|� `�)�Sʀ$Ǟ�M���o0~s�`9h�"t4��IL�/�N�+�t��ԫ`gEP���*;}`�c~�1�Bt�O�_�[.�� ��L��a� �Ee��%nM����Z0�EE�)1�ަBi��z��� e�U��c!�܇�"�v�A*t���:9��u��Pn���}��"�&�$�R�GvӍ��*,��Kމe���}@�;����9��Et�9{�ɝ�.g>���O����`@X0G�r������B��� ���/i�#{�r�>��P�*mX���C@��P��������Ѯ��}1��"���}������Ӑ��t4��A<�JT�ߠ'�H@Sb|�A5�}`1g]�[�a��g /�^�ڇ��r�c��0��f���0B���x9�{�},`�%�3�� \�(��x0d�P6�5Iϭ�.F�рrࡵ�ۍ�a�K��L:���M�xHx-=e<�i��8����3�X�Ł��[�`p��u�$�����[�|`@+F`�4K�b�@Eg����h��;O��垣0@��6�C�&�Ϳ�� $����.�ʩ��r�y�W�Ǹ�rZ�tQŘ���?�R����5* 0�|��l��-98�ȼ��_���1ֽ����p0{0ʐG����Wxc0Xܑz9 /��x>����&d� �7$9��G�|$��@�H�$�σ}��σ6��J�t�ēL�yJ���M�oux��j4�Gu�E�wT�,�m�$U{J�N^F�B��{ɩ��M�8���,�֢?1@����pn����Wf�6IS��CYv�*�����7��?�N4�g~0���gvũF��ji1t��*���ğ�C���]~8�)���C*='��~��̝��,��Q�=.Jz64��e�?�}�����_��� ��.t*�(�|\z}�<a@9�0P��0�z��K��A�BYqS�eI��E9p`� X�Q�^�?�=p�������D���~Uŝ]˶�w0@�ܧ�71����ٳ�4 ���ñ&y�=ì}1����_���o�2 P<�nP������^�"��^眺Fٮ��'��(a�#@8����R]ºU�H�~P����� <(���-arи"G� P�N���$?�o��D��=������ܒO��o�PJ�A��0@iN��k \�=0��L�>��A�$��(��=>���1Z��)x���X]�!�^سQ��.�~�X�H�@�?M���@�0�!���)�ܒ�����t�'�a�|��k���3�kh�|��'���G�,��m_�(��)�q��Jg����|t��]�#^������`Pk���"Ɂ���h3�v�e�)b�a�,�tjc��bLcR�c%�{�j������n]�Q��OV�gfN�aIp�����*���J&����Vչ%����t��~���H�u��E�2��Tՠj%�Qj��q �G� �k����i�X�~�*�C�R�&���5����g�{5�ƽЀ�����~X�����G�*���kƖb���'_"w� Fx�0\�ҭ��Xe3$<_�;�Y�?Da�9Ӥ��3y��9��b����j����� ArxSvR�l�L4�%��M^�f5�[{�|������]B�3�#����V?}�9 |��1�s�WD�Aʁ[������>��">��߹�T��!W1����.8��`ѻ��ug/e��3�W0����z(��A'Z?���^�k������st �B��B�y/e�f��y� �x4���J�ҧ"9 '�z"�r0z'��߯�������?$C9v��F{�������� �,y�� �9�{�ny�rd��xQ�/9�1�{{�]Nj��/��<��5�Sَ��~-<���o���Gq�: ?��3ݩ���U[��oY���~G��у�yat��h[+/P� `@"��RX>[N.l뢟KNh.$"��m����è@Н�="Uj0d�.��l7_O#*tY��<�u���r�Jx��گ���*���=T0H�Å$o���L� P9]m���N�\��EC� �Zg�����U�g^rg�-���^;}ӫsH���p�l�ʨXt�$n��q�|� �o��{^��s�k��e���yDR6��Ǽ��J8N��/G�W�DӨ�j��|P�V��NY�+�z{ւ{���L�Y�9�s�CJ���<�+��ub���[��zW?�/0��T��5���P��MAAN(�PΘ�]� �����A0`n4�U��LT�Q�Ig��H5�GP9�F�.bIa@��r��T�$^uC��JP��S=������w)(' �ߓ�J㻘���Z�!��},O0x߫~��_�����f�)�h�@�ϼ��_a�% ��r�` ��u�Gc]�I��d���� ����9c�~p����W�a/9`=��A�����6�o��%,��0.'r��@%���O�����ap��5��5${{F�rq���V�?ւ�����T��(�X�������b��n:Z������<�x�O�q���,�௶BI�0�~�.d..I�E�J�*�!3In- 0`����#���-!��D�O��4���Y^�~����v�� ��_����\�i�t��+v�:у6�"a�Z����Vj�D�2�X�׆^*]$9�.��<��˂�r`���"��s�\�el4�v��W�V������3���7��g�\֎{,����~�?�p�u�X&,MK��kB�u6�*xĎ��up��i���TC�PF��D�ͦ�����<k&�Ob�{< <�G��N�.�v��RW(%F�U�-�.~[x_0�<W���-ͪo���5a�`aI�q�f�A:e5�������0�C�6A��`@��qT��S(��H��cA4ii�hP��8f��?(�����Y�*���vA������`m^r�Z��|� F������!~^�̾��3� Q��?e��4'tn;OQ��'BE�@r����sir@5^��`n�A�GPQ�Y]�}T���������]�eUBa1�=r;J��)m�<Lq�d0�@M!z��le\��܋f�j�uZ�8V����jʁ��F�ՂQ��ȹu31~!nes�6�`ޮ�����J4���*�4v�2��?,���!�s�#����:�[�<�G'�ft*��c��u�PyN���W:�?X�'�J#����ό�%���Ao@u3� r����*���p��?1�_���vj���t������r�S� �=Ax���1B�(sy��${u���Q�)?��ҊQ�:��F����?t�Q�[�fك�e9��n`%W(J G%�%���hI�I��'�0�~��uz��/��!(?'�g���Hb&�=�<��x�����o���������=��2z3Z.U2�b���:�� YڱPۊ�uV] v�Y������`>�Ψ;>ˁ��:�'/(�L0?DY��J��EMj�6�I��Rk%i���b���~X#�FfW�T�<�9 �sƜZx�=?;�f�P�M�<��^� k�V~������@��@�D�u�N0x�Ăo��`5w���:`ЉI���T�}2G��Av�g��UG1�?mFaٱ��'��[�(Vl~0��2�C�*�:̥3�֖��� �;ߢ䰚w�!+�'1k���E����X�Ai�J�0�_�\�/���X��@!6BM�ߑ�z�*D�q,BEY���`���Q�(���;����+}��ļ�"�篲J�3E�GLLV�20�Z�ױ�>�ƞ��o���n�C�S�}�χ���٢t���0�N������`0�e��r���` 9�4��\y<�����F�O�﹢�hM�q�����u_[t�| o��W���0�h����W�mx�I^��g�� `�0�@��v��-���N���-0C����6j�\�T5�����ڧm9���Z��Yv��p�X�r�P$�8�dYg������R��E��@!��gɐ�� =挋����̭Y���Iz�t�,�f�4^�eN%J j�դ��7��� !��1��y �'�h��)���cY� $)�)o�9Rҋ� �P �F7<���d`� M���MXTh����@֪�6�5N8�}%��;24 o�u�F@! ��Ͱ�Z� �M���>��DXY9u8�ބ%�z?�0�����3fLQJ~,� �g� ,0@�|�w(�x3��N��-� ͤf�dLl��kk�1oMN\%�VU;`p�V��JZ�!0���3�?t�ixm����`@Sk ������O�}"` 9��W�c���aL%�kYL �G�D:��w�����HC�A�L]ΐ.F�뫯V8�പ�_�k� �b�7������� A&���K����X֦�Sx��ׯY�93[���9�As���=u�R�aT�}J�8.`0Z؈| $�j|�����e9�7�8�+�Y�oW��hJ� �:9�fZu� �d�d���%�?��̓��@�}��hL.c�w��ϊӿP�U�2ƶ``�#��E`#h�K����(9����Å.��7o����AF�E�0�Y �0�I�A�>�����͞�M��|��h�������|�����4O��꧉)�7�Xx����"R�7��f� f��1�i*\�5��$��z��y��2 ��ߦ�����;hK�N�{bX<0b�\�ʤM��z�M����1��Z�e��0r4�x���M;F,q�ɬ��&��&H�f6"�0dS�|�����T�3@a�۹Z��YZ=��|�1��uL�cpT��@��\?0H�X �0;*}z*�$��yX��"e��>,0��2EǀaAە��V�{>�#�=x~a�=�K��ni ������u�;k�� kb\��� 4�1��ľ��x��,�5����*:��%���3:��3�c��e:&ׁ��$�"��4�.�7vH�[�B�H����b ����%�A�^��O�g�"�0V���`s.&�Y ���и'�`0X�P�ܺå~��~�4G�F^��@s��QX�¶�e�ϲ�����!p��.�����$b;x��dZ�;��{�̴Ч�Fs��|��-w�0 ,�vl�2z��ur��E��u���ަ��L�ѽ��1p�꼦m9 �©K��]��y��,�><�t�(��I�"�ߚ[��D�剦I�/�����W�`��)9�jQqĵ�֍�Y4���&��s8�*�98;��:|�Q�?y��:�ȥ��JL�)AK �j����b7D����b���UH��U�������ϋDͼr(�l7ӥ?��q�&9�bw� J˚d��].��O�� ��P��~�վu��=��(�2��<O�Ѕ�Y���"1Mަ�%�� �2�m_�� ��oHM�Q$�sd?�2��� sA�V#598�or�g����q��<Z��ִ,N0����?�M}��YQ�;~`�a�ձl6�J�Su#���l���Y3��i0`]/0(+� X�x`����(G0�T�&��{���*9�n��Z�P�_X�~�$�w2vNR�~s3�!^�F��+���5�]�Yz��^Pv ��A~/� �\�ᅩ� �� ����8�#��s$@�A ���h�9�w��pP�G�o2:�Nlxv\�d=��gb]o���]�b� �&g�����% �|I�5*��k�T�(T�D}X���J��0��+1�5�,�I�����6��G��?{V%���m0��jthL�0��f����Z���A�]���e��|���a0�t�x��uh![�|��ň�yBk�_~���a/K��Z������F�`t�l�h�������tѮ���Fr��=��;(�HP�*0`]bλ��2(9��1u�]O܃�O0` �mк#QZ~7*,���<�m$�� �}���,�<0*;&C<��P�㨾Pm�8gP��M�G� �KFih��Rm(�I6�w��y����H�f(�p�������b�@�f��PI(���=_7�\yn;1�S�����U���K>�ѥ�¸��p ـ"Un�BC��� E���d�%u�b�kf�~�i�6j$d���+kC���X7�+9��2q����@����NP�uL�U7�J� �5�ج�ѫb�Z � ��[`�`Y�3x����1�`̭$�U�]X7����a=+�?�L���cA9}fɣC�<4�Nx^�J(��Ya�\o���a�/,'��!��5T�8��'L�,0�"O) �h��"=O�Ʋr#�*+0@g�1ػ�w]r�wcm��I��s<g��&U�ۨ ɖ����{%{��2�A�&�6X��.�o$�)��C��{���v�z� ^䣝��đ�ﰼc��m�sn]C9�K�� ��Q�!c�VTC*�fv�;XK�.0@a��f�+��p���2�\UB}��f~]��NT �_-����O�3X}^�s��6�̀�X�ag��Xc������<�gR!�tk���Ews���g�1@�i{eY)��! �9�?���c������&�'K�Lψn��P��,�W��t����(�R���h�`�{�z��6,�f%�vh�>�u�im+f� �"a���"�7+�]\PRAѰpa����z�rC�'��2��U���J�a���U(���YB!<p*��ɁP�n�3�Pq_Y���}:�I��Q�s��9ͨōw�B3e�Ny,��3��I��sߜ''X���Fz1P)���}_�J<5�I>��&c#�����"��B�������;��B 4!8���!Tb�� �Gʺ$ƹ��}�.h�/�2Ps�g&�!e�1�r��vm<a�pXM��_��Y5(��*<�[m���L�<����Gt����=5��3/��)̧�b�?�#>����L~M��d������UHCj>�*ά�a/0�;%���0�7�� �r���[n�qp�$(�O��� #9���8=����ہAY�`@�-��Q�m�rBbOf�[���{ O_�X\0�i���,)�"6�s��rX��cb(�2�,�>��׳����ۗ>�7��"���z_^�&9ط�U>-0�F�<�S��'�9�`@5���`��!�U�(:�?��^��k `p!�rн90� �#@��ץ8�]$9��AI~��s�E�/ĭ��V�� �7���k�Du��`@�!0�s;�"��]����W$�E�[������Bqhj�8��'�.��0��U�]�e��ۺj)�џ )�����-�����;l�"�� 1}L�L��E�r��zt7jp�8��%:�z2P�Q��9�fVI�<��p0}���HbE��Y��:Qi9 ?J��Ԍ�]�4�2��,s�礟D,�3_܁�a^�Y�딍Cs[~Gǫ?�Ҥ(�ꂭ�xSϙ;^ʗ���͚� �pͣt��@�ԸL�h�:>���7���F��ރ��+y�� *?"6�_`�f"P"�E��9M��J��O ���0H(1��<C�%� -Xk�!�<^�%6�l|[�A��� c��OJ��oT���/��`�TyN0��]�M��\�n6=f"�C��4�Ls��eK��*6߃�+�"���"��@�������ĂrD�^�@#���"VXܟ�U�/�o�6�0�P��.�<�[�B���e��@���TE�|�:�ޖ̃ L����<��{���Ǔ��`��N�Ģ(�J'0H�w�/抹��p#O�z�[�,G�0*`�q� �@�u�簮��_���Yk��� �4*��Ii `��|d��nހ�C'HN�Y�����y�J?��ϣ�q�Q҈���������-9X���� sI8�%I)��4��!�TK�#9�@P,��U;�u���ɪ�Ar��=��I���u�Z����De���_A��0n����tH�����]ο5;#��}D��\{ݪ_�[��-̉&��h�M�o�FE �N� ��lj^�O�^D�����7�Q�n�@s�I�ٵItj2�J�,�*^�?�_��"�K���� �`�LC��XyQ� �9�ا���(S�;�w��g9����^VG�Ք�[k��Н�SӅV��4͍E��Y֡#�E�0X"D��g�E] ��`\2q�n�ϽͰv8`9�`Z��l�j.b3�R7h�5a]�AQ�ȣ*7�&}:aa���:���,�;\J�!:�@���F��U��t�j`�1�$DCІI�"x����߆R���ۀ[H�^`@؏��݊��Sx�f�n�-9��%��|`�C-Ɗ�'���սc���s�!����J���AuR$���Q�{/})X�ݷ��v�1y~K�e`�垒!o��Uf`���e��\�%���7��;0@(�ɕ��X��9<��:Ը��g@��Q�T�� Q�� �F:0�5:�5;C`��!,�V� ʙ0�hP��̟w�6l��Za*�9+%0�*�o�N�H¤�u.�_Gtr+8�y/��`�0�t�eJ���*Ta &h&q���a�.���βU]�11�����z�Vw,po�G���5*�J(���%��Ҋ�I� 4����p�Y��?:$|�a�j�Ay�֟,�%fu`4���gWI�חw�|j�(D�=���� ��zpc�JEK>&��X�~��&d���f~�\�eϹ���p��'!u�s *2���X��xN�06 n����h��._X���I�,�m����B�v|q�r�o=�r����^��,c��z$�7�� �*�T6�ƀ:s�͡H��Vap�o�a����ދy�0��� �+*R�q�\�$:�7]H��C:�mnQ���F�%�����W���ĒX��됓�<4!A��$�Y�7ĎcR�'�⳪(��3��yZ��,�w�K?o�͚�~�S���Xp�M��,������1���_r��"9`/I0~���R���v�.|B�$u�p ���m�]Y�h�"4W��w�W�S)-g0xg�ua�瓂e���"y�k�P�pTI�ot㿿��&"r��䀞0�{���D���L?;��[��O�E`a���/���[��0��ȫ�P�G��1�@�g�]�.�u��B��ݳ<@ɓ���b����@z������-r�E��1ٿ˪�]�g(9�a*��}�z ��p߰,�H�Hr��.b9ो�j�}!w ���+��#ڃҐ� `��A'�G�t�d�E�0r���?�jc0��}���)2���` 9Ɂ��+�bG50��Ԩ*'_@�]�:��@�Y�X_����C�e�<a���:��z=��:'�3�Nw�b%���߱�)�������˫�9N�.kj�@�n���*zѧˣ �|P�l �Ƴ�WmvSª���B$Q�g)x��ތ�71�Z���t��<}<?�P���V�JX p�<$�wa�U:I`l,S�j��Q�����NY#�~���3`.�Ӫyᱝ�D��ޞEG�('�b�����X&���X��@�RCLHh�ĉ��gOJ��voR(0 �L��50x�|U�q-s�e��2�F�q�#�=��zrXۗ%�r E��J4��l;�u�k�}�D�e�Fd�_�.9�eX�t�)�2����ipo���P������k�Sȁ��'��)�0�*��"{�Ie8ʢh@l�{wH|�s�~�PȘ���ֆөKMq��Y�m�^r ����CC?�v_�l�8�a���"�(� ����+0��lbЏ�D�.�$ ��,�g(�ʫ %Z���"��<�� /�:�0P ?���ཏ;"�%��uu�R�˾�>#�%9��*����M�aY�z�G^9�IX��xm+^;�o��*R��~���.��.���()NU �_�&���5j.��[�`XhNMz5��A�b�v�#��o',��'�b�gv7Ӌ��L>��^���1�b�͞~����>D A��Ӫ� [���bA��T8���s��a;w����=^:, x6�$B\���i)E��9e �_]�Xn�3<(b��P��Y�2��Ld��<k��Ұ�鹍Ncm��\%��/h���d���0�h�%M�&H���et�w�Zf��,���:^x����L�BD!A0Ȳ�S���`p8pRɚ� (GYD�'|r�!D&ގ�`�y&6Lr�g�Sb^������S�i�!<�@�ig�L����9y�!t+��ݗIoN�34�|��E�N�� x�"6�<��g�6?�>#��� Ƶ�:�^M��w�+=1`��v��8X>���r�����֛=|K�o�cy�2/9�;���N_ϰ���/�8�,WN7<Q���ʠA��� F���[����;w2D�u乖{����\'s./ ��T���<���X�K` 9P�<Ȑ�ț�����.tч7t�"x\/Ю�UX�����(1�*P�L���Yt Q�A��������e�P��r�<6��7渏3|��9xVz��|�t']$9ȁ8���Q����{0J�3��>a�x.��P0�0�H=v�a�1�>/a��k��ypB.�M��bEA�fJ�V�k��V�.�T�H6��5ˤ�#CF��*��N���k�'M}�A2���lq��r�2O�����C���j�)a,J�^�*8�$��B��9�*.�M���<lO 0IY�w��ђgFFr�_��ɞ�p�=X5k�f]�5��қ��@�v6́7` �[%�x_nz\� �~Ƽ��TN��o� f#C���Ny����~k��хn廉A�X �]�x?9�?��"a�W��eF�k�ØYO�Y�!��!����&�7a �0@q�AV��wb��q��Y�0fqx%#pRo�$�5f1�4�^�XW0�*B&�������;3���r���j�����?�`9�ĕ�0�,w0X�d�E���2�H���_�P�0��/��oBs��"����&��8c����?P�CS�0@�1Og��餑�5;�u"���=������a9F��I��=�s���N�yy�]�.�4���K�ܫ���Y0x��I0h��tѾ��n�R�Ya 9>�0�9Lf�.�A�4��n��jd��%����_�0W[���2��� �>>���9[�m�^j}Y��Y�~ʓ�t��`���"�9������3�?���( �u""h�Ո]Ɂ)�ɇxA�z��|a�������X�To�O��~�D�I�{���VX{^�=;���>�t����Q�O�M�� %l٨b�U,4c�|N��L�@C��yU���I4�|��҃@s��"q�W��^���H�7�`s9��I( ���:�x�19�����vʗ�r�`��*���8d�@ �\n�sYR|��A����ߤrNW:{O�¶IC�*q�Jܓ�� ���T%��bO�G9��I�-Fi\�wȭ=�����q�%��@����!�%b�%�{ �0��u6�� N�=�y�L�_�`�n�`��w�/�|)���݂�������e��|Ζ���er���+��G.���]{w�<��>��)^� j��V3��@�Ғ��hc�C!&0@i�7a�ׄ6qw�gˡ�1���W;o�G ��w�(�U�q�^*�&� ���fn�smɁ���e��G�qO4~x��E��)�ɽ{�}w���W�.�8�\e��"���9�D`��MύrHH1B9�ŋ�@ғ�GY/!8t��槫��eC�̳� ��Y�`�=�'��Q�U(_���r�{���(p0x�[~̓Yr@h��Y�>�"���A��s�d���a�'�tݐ��Zx��HM�)FH��rp��C4G�A�<`߷�+��FxB|AR�ɥ��/`��x�B]uz��c��ӼV�d��w����T)�$�g���Cf��ܱ��T�)ז��Ӫ��X��c��x�U��t����z��R��'�UΝoe-��i��ʊ���B ���y~Iғ��Tv��O+!��'�'�g0�:�ٚ���`8��_��'�0`�T�>,f TR`��B]�������`����j�k�9�ha���X��O�j0w�A�7Q���w�@$m`U<�3���3M��~����9����B���^��|a��H�G2�!b�8�gY����<�q*=+��n�%0�C𘦳&J2%�����5�%=��ǰ��3'��Q���l)[�<��!f�u�XN�=X�xB�� @082�Ll*�����ug EH.�뾹�;�� r`��� k�S8��Y&�!�脊m8���|���܇~�[?��0�8��UJZ������t�)�x��M-�9tQ(�i�q%���ר��K�̮j.�mE����sh z��~���o!����gޅn�~@������(�vE�\�ɟ>��Bmú�� V-8֒dV\V���E�n�'��i���`8���B�9�u0o�lpE r�2�d����"�ttt9]��n��_:~s�<0=�~�*���(+b�n�=]5�e�tй1��+ħIJQ�*%1�b�,���� D3�F���iE'��s~���a�EϪi����ա�b%��0@O��DlQAa�pŲ� E����>��Y��l)�I�ЏIq䂲�h�ʬ� .������s5��6)�b�b�݉e2ۅOI�7b0����m�p�25��]�~�e.:U@�|���*���Nt ��� �9�!T��0Uh�S��<��i ��p��U���;KJ-;���!lѩ!B�w�DY1Τ$�^S\�>5p��^�̑P��{/�,k��0��锆�&;���]�$1�]U�倒˅�R��7uap���9`ݺ�^���}�� �y�`��E'9�#��A��Ƀ*�ъ��� L;�V����CI�7_Sd��ZkU�V�F0 ��#L�����0��S�t11pL9�.0�L\^d�;�n�����2�+Jw<d�r��na@�@�î�3�j��0�-O��j�DA��L�r@��䀂�a5s�l ߴ�D�0�:� �E�7PAn -�8G�[�h�w�]�H��+�apȩ��VR]�(1(���س��9 *9@/J�J�.R�@�4=�������@��xB���8@�����`�t�~t!��D�Y���75w��@�O]���|��XgfI�1Ko��x�II�MME��@�EȁR�.�!0�8��%��4ֱ\R��"#ٲ� �w .^S.>�A�n��� �N�C!E]5�BӚ�a�׆k(V�D`$�����pG��o�B0@H�A��[K�;���/c�J>7�t&�y08��( 7�Q݁"�;"ɷ����̓�`�EG�0Hv剆:V�Ry$!J0P#_@���T�0�U�n��;��I2+���?4<��(^�7�(�yo���T�?0{�<����K+�.0pE�d)ה��b&yl��������`��)4#9 I],Q�-9M�. 9p�� Ķ�S<�I6����$�ke �n�䡧Hh?e�ٟV ˀ�*0تnu~������d��X�'�4X/0P� =(گ�]>�!Z��@��%��ɟ���K�I�^��(��|�촮�֛`��F���EΠ�E�E�@���[�I�/�袶�^�"�YmD[�Ox|-���50 �$9��`y3�O�F�wI�������lx6��G�F�Hr��y��y`���N�!T��������j���A(X<� �j�GXbll��_ߺ"er�!��|n�d�L�`�R�ò��f5 I �R�K��*�}(6/�X�r.�4KBI��Z�VX�<S��%<T'���@�,�3�[�@};�O���<�V�3`2�7��u�~�gTy$?�O�GP�㖖0����>�Ȕ��껭��dÖ�Ϙ�=�8a�NX�h��L߄���k0V�a���������àY�/�{Ua��=�p�z�ྗ��Ab$�O������Z���9s�ĕ�������^�h�p�0��~��J|��3��;�h�~����]Q�/O-&F�M���ѹe-"p����9[�Vd0�|t���A�&1���6R"�e�0��`�ˮ�߹"F�k�r P�`�����z��Z���\����R���!�&xI�����#��!9�l� 5��^-U�i��>���b�m� �OU�ɬ`~�@�����c�;�e�I�#"Sݭ�o��\��%���C�"�L]�s]Q@@ ]$9��x�G���JBR�"�8���`�q�=`��7r��.�� �^q�$�vb�Y>�������-�Z�,�=]�ڢ��A���-��7���k��̎��gIܸ�Et�4� �E�:�.Uam�6�WPs������0:�IX���4�l�р%�p�lN��D����J�B��%|��N���4�M�4,��,w]bH���~qP��e�5߳����,6��f�]_��T���:U�/:�e S�bh���(H+ ��Q�J�����J�8a�����5T�?{�0�(0�T.�`���G��Ɔn"F�aQz���R�j��h,�9�@����2� ����]͎g�Sx?����9aѾ���Qa �a���F0�t)��y7���|^X?;ͧ�~a c`��"`@Q���.�{�(���:����DJX �nM�`�(x���qzi�~Ggq����N�����L�#�=Y�ȧ0��9����'����IY�Cݛ�b�#����W)&��{��C��g����,}ٻ���6=3�ݽ����!\�=`kA`��A$�6 9�x����M��:��^��"���0�.�F��_x �j��l����3��K�%�Ԑ�y�OP�Ֆ�"��$����:�Ǵ����ĺ�aT������]f�r4��袐f�`XQa�$Ǜcu|au��i��7����=wY�ES퓒� Ɂ0�7�� ��p�u�@�d�eT�5� h��|���)1��C3N�c�ˊ�O}u�p��%�>S4�1D�m�� %��Kڊy'�F+f�'�8�� L��ڴ��9�?�YVHtM�.,���T�^�����ީ���8���K��U*%Jt����F t�=��b��6R����Ɓ���@�k�P���Z�`@�����0` ��k��l�h�Ewk����&�Úod�μ���P��T�D������laU����K6_��Hx�o#�}ݮ�1 Q���@�`�6[5p���j�]B���8T�XG/�S���`�4{&�L�����^j���Ir�*�b��:�][��`��I���h�I?|�ٴ:���M($LlED���b�~MsY��?^��,-�l�fB0`�g�r��؍�����p����ܖm�a��,8��F���_1R60�����y���qy,tSw-�J�@=���?w9>��:Jr�1����� A��?�M�@_N�{���孭�)�Y|��a ����I0 B��_ ]�ڀUu���.JoҮ��-���,�����핛v3��-9`]�@r��0+.��Ϛ4$�#�E�ex�` cwpE�}�C[ ��y`�V���M���Ɏ�`6��(qԨ魟��fx��G�*�J+��kf�1 ݀�S�x�j�5�ڌ��S]�L�x�FebQed4� *�c3���\�.1��35��p��M$�OX4`���@c���5F{R��any���D�B̔�,$����I�K�*t�����[(&N�l� ��p)���3���k��n�]�}ze��[@�=�&,$2���� �,s�[�3I���=mu��A`��k0�����V�0lr�@�m#b�P@�ɚrJ9c�v���� k80���>��U�a�<������ ��!���n��i��@��� ��S��p�J\r F�0`P����Ob���.tsZ�����6�I�@r��[{7�{V�E�@E��� >ý�F2����k��D��?^Ы];$�`@�?r�0KTRP�����=�v�7��}���Y0 lA���̯��C��凯gjXZ��E(5�v���>����gj�qG�.�X��E�=���e9`��w�0�]Ɨ�@�`< ��C�Qā�(��(d�=�� I�E��$��h�m�AQ�H����I?�&9:PS7Zꤖ��,�|\]����E�@������*�u�l�o]���T��$B�u��ǒ�˪�b����O�]�L]1:e2�b��i���-�2���W˱���M8|N{�.��@�&e�i>K�v�Ӓe�lr e%A�+ǚ f5�x&���$��9�9U|T�h!�/X�I��Ձ�ҧy�D}�u�C���JW�|���}��R�(ex�%���{!��=��,0�{ ��2���9x���k��P���6f�LLw8�TNjAk1�F;;��\(�6GG��rd�)�DoE~����A)+j�|fa�3�ʹr�\��O ����H��jtjtHɊ�.� ��6&���1�EJI>����1�n�n���yb�;o�ܐ�,�Y�U@�.9��!K����y5� ���`�C#~�bf�, �0��4=,>��3���( ���ϝ,�g�/�J�kڷU�?�DE$Ѣw���sp��rȃ0x�۽��(`M&�b�e��"��@TK��)��=�׳���͜��w�K���Y��`@�p��w�A��P�"�9 ʀp=��&ٸ�o��\O�&+"ׇ�4( ��`p��A� 7�g|WK����}�v��po�����N?��� -�'�M� ���DVY��a�Q0�[�}a��{�q��Ǔ���M���T:F�$��YwG�#g�����}\h��C��C�w�-s�a��n�$�M��J�#l��3��NO= �Q�� ���֑��9��AW���hX���F���报?�Mw��e�k�q���dI��6>G½��Z�T��h�3��qr�Q�X(Ԕc:�v]�����xk�@�J�&>qaI[�n�6:����]ّ�o�h.��kը��5����a�K�Aϐ{"�ձ����1gf��?���k`a���d�ewq{~̑�;��d[]��r�4~z�7��f5�~G�0�aS���V��e%ʪ�{�X�Bȁ�����VH�}��@�+c�{�7�8 `�Beb����=#}�����Aw8�~��~ s�E�(ZɁz�#�oapY�=o*� z�aVa�_�v�|J� �ϻKyω%�-�+��C�Tx=xx'*�8@6���C.�H8d�|���У�u�J� (���y?FȪ�ۿ��.҄E0�R�&9�A(�&d�:����d �H�9�*C0@9��������X�5��P����!���0� ��g Č��yd0��ׄnD��5�p�˺� /t� ��Y�Ht��P�<�9��������d9 r#`�.j� }("�-�7�S&9b����g�bRT�}}ѯ3��-r� at+�4c8J��<Pd���םyCx�3�Ô�H������L�]��u,��N�ѥ���xt �S���8�4X<y^tʌ�͟s3t�gQ�wl��T�8s���.б������7����2���0��Qq������S������V�iS�0`^�0�8A���]0�j�l���=i�M�����y ��F����G��g��5�2�����S0�x�eM�$��m��30@�Ƶ�T�m��� :0pʄ�0`��@��th�꼗2�������U5�k���2@0�<@~V��f1�2At+w�3I�τ>��10xT��9+�&�9a3 ��_� ;.(�+"9��g+`}�S�QO�_��t팖���-�����\�� {�/���EO�U�}��%A �v`��Q<�����`��8�`j�oU�>��8w�m���9�&��gf�;������`` ��{ȗcpƔ���'f��_k'�d��" �������Wa(���B�,Q�^�t�䠭����t��~Ɂ0��bM�㐓�r��6��m�m�*u�5��^�瞣�.Rs �Q�ο|��ff1�a�r�Nq���0���R��,� �V^�n̺��x�8��_ͽ�f;�*��ӡ;�б���V�@��Y��O�*wg�,k�ŧS�����7'��FI�LĎ3���k(�X���Wy��l��]9 +y�_vAS?ɏ^��;�5S�TS����^ ! ����aX]�!�L�b�-K��{�#U�{�LmC{����n'֞À�4.RF��:����(��O/g���ש7ܚ���ab�"�� �Je<�C+�����l(��Ө�ϤMK���1�J2���ʂ��;N�IE�Y�P��S�~�C�n��� �8�W�Z0�Z\)P�+�>w��A�Jbe�-K�.���`�z����F�<u�G��} `�3�UO�|#�'I�in���S]Qmթ�F��+��1�����0�3�1����Q4�0�9��kKu��խ5,f���=��{�0�y��X�"E�#H);Ճљ�ֽ-?���s�g���@�{�gn�؟N9ߠ��>�m�ꚱF�gW)u�i�Khi�B/9p%xx<w�A�K�y�sp]��4�[�t���-�H�_y�A��u�9��?B���`�,z����{�� �3�I�W_������#��0�808$D��h]�Zr.oy���V�6�������@��.:7�r�<����tQ��^�w�B= !q��*њ<@��>o�{��J�R�]�oe��_�Կ���a�q��:���n��Ь��<��B%��Q��n�S~%ϴ�����yr>)L�j�Će�WL�u�!0X�=ܫ�k9.��͗���9�o���a�~'x�oa�$Չ+�Q\v~��f�"`@? �6b�%\%R�Qh�,03>�-̣�s�4[ �(��G�1|g|β`�r�%0L�χ���������������6}5 Sm�V8� �#�J0a���I�k#�)�T��B`pDܽ<��r��)��3J2����.�_��v� ��` a��V���u��wsv�|d��$�n���W&��#�K��X���~Qj�����`�+��͡�<�}/��g_CZ�߉2��k`@��Ã5�X��08�T�jV���f������ARZ��M}`�g�� �K,�O� ^�5�F:X�f&�X�������0�g+�$��OnE���Eȇ��Fmk�����ſI�Ϣ��@:l������(��^���.�p/�WɁ�\"w*t �I�&j-hc�u���k�1�Z���.<,�xU�9�X�pǛ�h��� vX� �$�ٙ��e�G�A�7�A)��s�m�,*��F5�S��`.'tUխ�a��El�o��eyrb�e�77Y�W��K��aq9�w���I�f��+YM�c="�ԧy�6�>��c�X�}�b~�:W�vD��J�5�g�0�~a����fX*���\�{��mx�~�=�� �I��J�L,�܄��z�L1Z�J+�`��u��q\B�����U0�J�c�u��PB����X�GE���S�_`P����3@���>q��=A�-�gX5 w�B��[ea��=�'����x�$�Z[�5ǡ_5�Oo~��Q��7(����9P�%��ܼ��E,uB� ��Y��7/���W�HϽᡯ#ā��f� C��L[L ����4��`����f^C1�dﵗ��A�!|��S0�cj�0x��-��ݦ ���Z����u���`9���N�\�g�5<[�]���M��E|7��X�m�֒�v 0�Sds�C澈Q�i|�w��+�E�F"r��#�$]$��jMB���F��O�$X������*�n�c@�A���x�=��اA�=�g��5g�׆CJr ]$9�zf��h��S�t��B��:U%֯����C]�<1�����U��B2q>�b�<�8�ϽlBQ�*��g�[��48U+?��[[�*�`GY��B��_� ��ߚ�w�G��4��h^��&bQ�9���>�H��%�(<JͬD3�N9��C<y��|���Ď"ه�sϿ��21B6! a%Q�xZ��'�ld���C9s�2�/ K����0ӳ��F���8���n2fK?���G�C*[0�`� �Y⫯1XMa�f�,���&�(��r B�V�Jp�M��11���({s!`Ù%�E`P�jޫJ)0�Μ@��j$�I���1�\_a���gIE`@���4�_��n�� �5f��ܘ6?�AFI"!��m�]�h�+I�@r�!˯˄駰�n3t� m�z�!D��������T��0`�P�1AP1wĽE0���$;���g��| C~go���>�}W�j�<|��{wf�~`�W1F���U9Ȑ�E��Q�4pl� �v9�+�U��T�#ϩ���I��(؇`O���Q<(��*At�&(3 �%�E�l����E|'����A���H���"]�~A��"�M9ؿz���`��<�2�gh�y����z>�.b��Egx�r�Z�z�-` ]�J���� �0 �#9`���G���0%Ȟ�@ ��?�T��$ l�Y\6Ȥ�Vy&��]˛b�d���1����Pr�&�4MT(%�|/� ���Q�s���Or������3b��?�,������6m�a�C�}�;��3�<��»��8�V����a,D����ql�m*BI;���a\�lsrE�C�����#.a@M�f� =��"������96*����x� Aؒ5CQ`)�Ha�Y~�wC�{f`�=��~������@�ׄ��e������'�4AP���RY08��:ק|��M��6���A��1+QˁD�O�m�U�*4s��߰����F�'�ׄ���b��P��w��r`���T�I�_bB�#�s�%+�Q��#gv���BP*`��:v��v�5���P��<�fNɁ������{O�#ϓ�`�����+�yx���Uo9�]Xc�!��M����� +t��T��%ږr�j�\���6�0�<�,�п�𧩁��� �{Ӹ�c9@�?���X�Y0 �>«DWBC�������$����W+)��`9�.��ڜ����x�"�0�PY�h�^��m9�~�@r��!�m]�ߤ�Td�>�kT��u<C�<F��̹���a��F��oU<�cQ�� v���L_��u��}H�8bc��TiAf�^�1��f����C�ړ93��+��ΰ_2�m�찶��;!,��Cl�t!n� #��C8Bg̉�26��٫��?1N�?8ΐ� r ��&Ii��W��C�l��z�KX���\� rj`h�f�B$(����ef\7��3�����;���Qu�a��$��̡}�K\]��(5�g��EA�hg��nc �.q�Y0@�>~��$��y������o0���{����na�X�1�(���� �o�Q�I��0|kQ�-��"$����7`����?��V���"UJm79l#<���g(j���r�e_��,�Xa�9�#o�۞�+p=a#���+�KP��S�!�T�G��5a�.�I�Z��!�1P��)�da���A <^����T���U�G4�)�.�y�{����AT�y��<HTɥ ��d̽�a`а�p8��A�@����뉱0�Jl�����<��HI>,.I�m�����#9@Q�-]$90B��1�7�P�-��0a�>�.�ߒ��r ]���<�=Y2f���9N�)�JV��Q,Kh�fL3Lֺ[O<|������o>�d���o ���KS��4ܲl����lb�ڰ�f��zi�|u�,�1�4�ɋi:��/�A`=ߓߗhp��^CH/��He��r����6w?h�Ux&�'nИ�0�t$�4�Q�'.�KD�kų��Yu����B�bu�DVV�&��95�1Xs!9ؕN����˝-��8�^��{V�%�Fj<�0H�gy��,���~�4u��M0�VÝ���K�Nd���ٰ��˨�a�Ux�:8� �W��lgӪ^��P�.:7� �P��Grm]�H& l�w�Ya�sF�6a�MƄ�v�իq��ؗ���V���:V! q�wׯiov�����n:�+���``s�@��4v҉.�!��}|u����k�-r�2�F ��0`��\����/v m��M���3<(Y��������ȁ��`�7so�؞�fH���1�;���]DxP��*4�J�����d<�,�|����Cr�(�=�]þGMy_a�lm.�]��CIX��r 0tż+(� *"9<+nB�`e�0`��}�AL\O�������U����r`RtV�Y*� ��\.H�� 1�aPRv 2��\�Lz�ؾE=>]���L�"⺳�U����3��+���ǂ��x��^�Խ�h\�(4eP�e��YT`q��.�slV3<��<�X$S9��а�}���UR�V ˭b˹��<k5�Ao�Y@fR0=�:V3گ8p*lfHÑ�ƀ��9a �W���0�H�C������[�8�rHpm0�FD�3<'j{`I�NO�rY��0��f5F� �_��ׄA���߮�X��6����wa��l�����m���:�ya@8b��g*��s�tI���31�@í�������l ��vǕ���_������ئ��3J*��Z[�7��r�@#"���1E�]�r��K����(���ۚ0`6>�/n��S��ձ�ۤ��������Z�.G8(���q@q?���b~�.������f���4:1����3?ȑ��������ŝy0���~��'7�I�k�u���"a�K�$�� �m�x` Ve0��#��E^�:^y�,xф����$��m���M���91�&�c"�]Ԗ i����"|0�5+���.��U� 9�����C���r����1hˁt�J4U�. aQ|Y�� e�J̚r�`��E�����&R���b����UMU���B��fh3[��;�а��4F�i��ƤR-�0�B�����D�4��J�ʜ�|vOB嚔��A���&Ⱔ�y���W�ү��Sh-���Q(�κ��sX�!.�Lܨf(��ƣkXH���m�>�����p������R⸏�!4��U�v��HZ�`a�� 8����%sO�_v�%�o�`�I����>�f�J���ALM�̑ ���wk�2�$}���{�z<�ޝ��$�A[��<t�q8�RSfi\��� � j�/9P�9x�{?���1�5�;�`�O�`�[�5�A���A���,;ԕ_��)¤nD�1�6�Ý�eU+�ق�<ON���= �E��=O����] ��+F�!�N%l�_� <I��s�g[ ��"��@�LɁ0����fɣ�~�v��z���h#g}PۨF$�9�EmU��G���"��g���=T�"ߒ֢���0`�E�������@������^���Y�xv0�܍�Y�,�y[��`V��ƀ�%Չ>/4YbW%���QɰƖe(���ɴ>x�M�3��tZ��A��4�9�Ljf'�8����)nDyi��cO�X���K)���*���~����+�O�*��t��㵌ʻ���kpg\����u���M��ݶKE��t��2��e-�z"/�SEː��\)j^W%H�@�.��vGW���2<���<C�y��ES2M�6�0�3 }��!;�����C��s����<%%A��0��aK��m�x�0��vb�ߍENUL6���N�H[-�e9 >.����m��(��V�*�I2�%�u\�|N��(H�!iˁ0�����h�"!N8�u����M`p���17��+5�9�ht�gi0H"A^�!`�w������ �Ƙ����ȁ08��`μ?���\c��~%�]$dp\�>'9��`��@��tѮc�P��E�QɁ� l�y��0�qHQM��P�}��1ت�0P%%��Le��r��^��#O(98��8�ԟAE����e�גR�C=s}�dö�G�6����9x'dYQ�% �;_��q��>���~M��,`��YYc����p�:m&q�D���g��l^��ZM�:�ݏ�8�f�g�Wb1�Y�-�I��A���ft�b�N�a�'Q��kL��!��:v�`��U=:D�g5��{�����9�ۥq�5#�y�<,�j i*�����>���-�IZ�_P�����Ìe�oV�00ZwV��6X�t�jV��m5`�e��x����0��2KK���1 �����:�08� B9N~���0�VN�w���� � f#�6�=���g'�nj�0gP*�Av�s(�5m�o [�Z�k�����~�jz����>�p�f�� �#�ٖ�������B �+r_X넸���np����K�6JA��:�6�kpr��_�+L�<�B�r�eY�Q��M���Q���/Ih�E܂�6�G]�M � ��Eh�p�*����`�E�r �reʛt��ZAI ��^��N�`p��M�m9r^��/�}�d ғ�J�h�$�p ��ʡ�8��X ]$9�� �����u�"�+1����ٰݖ����Vs.�e�@d~��%9����S�c� t��S������N��^���"�T%��db|7��ߊo3�֎j��,��d�����I��j�8-*3?��9��[��0*�#�V����ɚ�q�*a��[�Tq�u2>3��$K��ہ e`9Ml�s6 �9�UA��"���, A!.h��ޚ�@&>�w$�Q������ӟ��d�zF�mP�~Q����d�sù�b���8μ��[7�43#�j�����:��#`�a}�A�Y��I�Z��1��>0P ���r{�'؈ �6V0` �����u�7u��A�v���q���گ~���Կy> +�裣k�J�[��?a`�kJ�[���b��������.�'r�{��>cM�<�j��y{j����(�<�`@�+=0��K�K���o�|�=8]��`���'��`}�:v���V���oޢ�Hrp��y� *z�(TC/�$�2��YI�҂��/��50`^��XZ)�&���`]��t2�~y��hٗ��6�@<�h0�O���}��)���)��d:b���$�-�+��l����CaZ���Җ��`��ȁ���ݐ��JV���9�Ln���9��vU���:��+��=)RNzF����HG㯡��AS�S��@X���0PO�$k:�I@�QT�pY��Dd�z~)���i��E�ESb�Gv"�O�z4�i�T]��p3ݰ�85�V�ڄ|iQBFGD��� iQ��L�6S`i���ݤ��C�r�|E����Jy b�Ͱ �F��A�ϔI���Y�j%W�w�Y,8����M�'���.�0X?�¤��TNB�"��������~�(��kt���4v���ƀr[�-��XW0@XZD��ӛ��P�0��H�r�.ՐWR}!Aa@y�0����~X���62��`@�� j�����?�(��}�U�(�{����@�\r���aШ��)k6কB��F;��)�\���䜐�r�*�Z��p���~�(R>a����+?��(k�?����[.�M�Oa 9 �KU!r�wC�A(�nu�+l���<� ����`@s"aa���rC����d��:�y%ڏ�l���r~m9�!9a��0+d�Q��yt��UoR?t������T"��D�TjYA�u0@n��u�<�J^2 /�,�3�K*%]�w@xQH�rP��ؔ"9�p�{��r0Ȇq��˔tѿ'Y� ��'S�닻�ﱩ�4�[�s�y)��^��gֆ�R��a��#�2&=w���nX�p�H��]�=�(��Y���vsR���8)��+X�qXQ��|j{K"i@��x4&���i5G�=�1�5��Y��Xt�O��*��c��m���;�d������Z�r�%�:s1d���ȼ��0�-{?�8)�߄3F���{(5Pl*,!a�E��x+!�q�!�����1۞T�!���7��6a0д����� ײַ��:y���L֫9����@C0��"T�7���'Z�M,��zxT�$��f�3�g�B��"�MHx[�~*��r U�6�r���a�\Ťք�p��~��U�0`-Qx���o��"Ѯ>$�/B)z�9V)�>��S�F �jc����R�`����P,�| ���%�W�X�A`K,�������@9�{��C�CQ.^3a��Ab� [����C>�]��E���� r�Z�O��7R%[`]�پG �9����]$���Gъ�a��)(��-ja��E\�y"�~ �:0xu���ǧ���z[�u�9�Н�G�ɐ�C�u�����%ȍTRd���WY���Ј�!\7����XTy��Y��2qέd4��:p�G���i]_ .n�.X��! �hƯ�ԋ�[>m�b��x^.����H\H��ԧ�g������ ͙i���Y�����X�=�6���fg[�8 ��"T�!���9�5��?$��I�r�(�6�`^��q��̲�M@mF �l<�x�y(���sô>�K�U�<E��/�J����s"�ׁ�|�*� 81 ���[�ʅ�#/�ܧ0 ,t�_���7Vaϖ0@����%��n���������ubЖ�����cF�z��uQ�%�`Щ��`�L\�B�9`�(�M2j�S�0��[�!���J9�|��-�*Kr�ŵk�O��Y�co�I�2SA�a���hK�y#낁rW�}�=��|m���@r`N /2�e~����H&Y�_���&9`=���.Z]�J-a]����!q���)ȟ�GM�ȼ�xڲ�#d�u�N�aT�����X�?�"�Y�ǫ������1ז�3�����M���-a0���r���r����EY4�U}�Wx�W�1��6�����O�-2N���o_�"y W�����S1�)�,���YRX�ede䱶S�[;T�d8a,� aȰN�2���s���Y�#�w&"3N���N�#�$�� ��,�>K*K��Iv�ƌ⤊��Q�t�BS�1�Vgl��an��{g�R��G��%�����dr(��~�:�ː�����=��/c�V90`v�O�ޡ��|�lra���y�A�ñ��� $��#�V�^+F`œ�����a��'Q���=�0��n&���� �jdq���i�yA���*�3`�#�3f�0�K� �`�r���Y>��\���P<?Mgm���<��}���F��פXor���^��Cp�����l���,����9�H9hc�:�/�CA��-#��*v�TYr�����f;z����-���^�0��=���Te�f�8��EG�����U��/c 9��r@��0@F4vFRF*�U�T�[�o�v����mˁ9}�0��HB�L�Y��E��`�䕬e�����ndj0\����;�y�{��rL1ͥ������Ja! �C�-�i`pY8��j� �@��|Wg��V��z)"��]J_�Mv��s"7p�ʘ�����~��+ئ�b ~�,'���˚ h�f��@��bgg�E�Zn}�b�ʨr=.�f��� �4� ���}%*�4��n)`-:�ὑ0�x�{�&CM;%��Pc�SD9���� �z P��3�d���WeV�˳�r��`B$�� ��(�ͬ,���I��Ls�'�tZ��`���B�VN�O���X�1�T�k��Z�)�Xb�{W��M����`� ѩ+��+���� ����A)�յ��"����;É{#H��W֧Vo+7&.���r�ҽ�YaLM>�}(���h��0@!����e�n���p�ZJ���p<'��!oA^9H�9@���;��3��ō�"@Ӓ��r��r?�Q�:N�� �#g�e=�r��S\?u�4����r�3������K������5*ˎk��}�o]��>�������E������$�E��;��h�d�#ϯ����$�����I�����,�I����q �"���?�-�&���Y��r�Il�1-��wZs���K^�v��YR_�`.��}��N���N<�9�`�b���m��d)��Չ>��|�;�ڣL�>\8h�3���Q�g�F�i�<7��%�_g�I_cC�'��f��+��_�iL(�lo�O��!T���f�I�B���}��08�r�W�=� Zs8uX��d��t�"䓲��k �Ϊ�A�_ ���`՛��_:��d�0���~�A�q=�f A&D gfӦ0��gOT�x�(�γ�lZY`P9�I)h0�2G���Jl�A�+�J�4!v�|����YX'����lkɦ+9;uh=�J�O��D��}J~�h�7���$��ћV#0��/�a�|qm=0�-܁����#�eS��]"���3�('}M��RG�GWy����E����:Lv�b���B8�*s�D�ƭph�ۓ��9=QI�z� ����A0@4u41H-)<���{��^�@�z��:���o�����e���nߛ��J�+��p(O,���q[�!���_D�.��ϡ��@�~Y�E���t��@�0o�J����ܠ8�Y풃q5�.Xj���z��mfEգZ��EG-ڪ��ʿ'�"�+���&�7�W�D �#��q�8f#I�Tpϟ�Tc��c!�U=��N_U:V�ê�΄�Ft���˘ŠA�tR�OO�4�½j%fg<X,V��$��*��I(�]ң 21>���U�:��pl� qq Ѽ�0�l,j���Ym��d�<@�+�ա�(L��?�� u�¢,� ���?�0h�4�\?p� H�p�94�"J���u���N�@��,z&Q/�r,ג����Pԫ_ƀ���S,a3XJ^Q�фm���Ue��~�$p��,u��r�w��دۖ�ǟ[tZ#�ܰ��� �-9ș-����#샃�� E�_���N� sOy �1���R�<2�m�!TQ��R$� ����>��>�I�����-8��{a 9 L��>[A���r@W�y���Aǿ��ho�r��䀰2<t����EHF�β�A�P�#]�u��4_˶.�� �Ex;��.����W���%t��y����N˒B{#_��5tQ�-͑�-�A Lx�0 �ͮ�B?��w��K6Y�bhcS#¹֛������5���ij1U��*�`z�CuQUĨY+�����D^�4�\�U��k��C��X��ڪ�f�h�l�@P��2�5\��|�^���E�K�&���������Cȹ�H��ku:���cQjT��b�9�Z�9�i��4�xrre�� ) ��D1�s�V�)L�R��W�_"a9�Q��^ߜgWh0�p�;��m<��D OcC� �M�|6�u�#���mT��<��8�W��]UlЗp�(S0�i*�F�1I��I�B'�y���6���g���!%������4�s�B*"�iTV��N���crÂ{�|Ugٻ +�CRt%�_ƀC+)�/a�ض+����� �G����(�K��~�«d���Z��6\y�䔐b�x��渮0x��P,_�!i���V`�-� ��/{��g�.#��>�ו2�p�|c���X��o�"9@���.��nc�X�@ �{m]ľ�p���/�� ��9P�2� "��SY�́��kV%�e9�{ �侅�k m9��k�q��:���o�F9��_�#����.JQ��a��ܮ�s(q$��wo�R]B�x_�.��V�7�?�.c`<h3N+IJ!�� 7�j�TT��4k�?c��9 ^������~(KJ���J%iW�za�<��E��"��� �3�I���8(���E�Pl�P� ��]�M,#��z��� ܴ�����8~ M7���X�U�uw-���L� "���2�3D�pl�E��A9�o5H�r:�}�J�+�[��}ʵ�7ڐ�M�V�2̜�xa��X_�˯���2؎8�~U��/�R�+��$y.0�������}���%LxB���x�ȧ^��L�u-ֱ��8�y�0�=�eDq�E=?�����tf�S-�T�ɼ��� �A�bm*����r���wQ�\�`���2rp�UR��ц:���p^/�3*�l��uBw�1P�� <+����$��unˁ��A�+�w$v��3�U��������W���䀮|u�^;:��8�Uc�`p_E&è����Ar@¼-�����a7tQ��B0 �*����n�$|W[�`��2r��|p@�4��f@4 ma���2���� �� F�t/�uԌ�I�x����<^�� �}�0��Z�Cx6�9��s�� [%��`T� ��N<L�A�<r�wC�:��0(���t9^䀿q=�ko�Eo��f@���xC�U�Nwu��Nׇ�y68aEZk60����t�������4�n'���ۨ���`X%5��,[���E�)kA��M���W�w�L�a�!�[���Y2Sn�l5��jRRJ���y[7��-�:�w��7�0�h8��z���U%��ZW�S����g.fݡ���@�F�zH�����$8��ĪJ4��<� T� 9�vE0f��iP�t��%H�_�B0���@��0ݵ`����`2���t�1@�4����f�iY�^�KSmf��+�5�(�A���{�8����:bAeH���%9��Or�g.���V S��@ވ���!��"��%� 9�ڏm�$9��B�9|`6G�H��\N�;�vEX��G�Y~�h�Y�dn$��~q�:�/� ��Qw?�` %-��"���0P]$9�}C.Аᓭ+q��5�_�Q[ �m9�����$y�}aO��A�i�t/Э�� �E^d�"��'�Wb�=�|%�$���"�A���x��#�Eg�.��+�0�9�z *#h5�.b��-��=x��&ں��m]DT��1Q����I��!B��]���A�H����Y�3�R���K_C0�V�9�$iݥ1��~�90*ֳ��:I���u�G*H�)c�#fwL��r�X�q�7*����ŋ��^��h��f�T<.�f��OUGuW�1�Y�$:!�qi\��4�[R�s�q�pmL%��\�j���Q��n�;��g�/j��[?����� ��5���A�2A�Pf#bsU�)�Q�ò(4|��u�� D`�w�} �o����s6�a�@@dz#4��N�65�(�\y��O�T<?�p�U����0��P%���+��z�s���I聁�S#f�\H.��J��Mr}�Gɡ�;��2���A�U^`Ж:�e8Q����ѹ��*�!^'�'��n_�$~�|��a�А;˼rp�4R�`C�租�Bi��^$9�B@����L���G�A|�UF���� �Ɏ}&$�y��X�'Or�0�����Ŀ$9����0z\�9�ν�7c���N���9Z��h+��|��ż{�i r;��?�X�)C��E`��L�9�@�r�AQ� cGGׯQH�Z ��ߙ��g�1 ��(yvaB��e1����e9������a�����1�R�D�EU,�m.������Ȉ����e��ĢΙ�m�ɸYu^*�nJ+��'^�� ��5�u�"�*���f�ڢ�H�B���o��� �a-���4��H쥂�*�I�����c\?,dXS�+I�ބ�3�5L�~��p-��d��S�'���Xz���A��A� `�s��N`@kgV�:y�`���5��RĀ����qJ��qx"�@�����dsT��§M��+8��Du/C,�qƪ�,�MW(08@�����/��f��lN�Y�`���^�TR� �����To �D���GW�(˶`T���l���R���+���$:��y��ÿ��pIH�+�dr�a �t}f�^P�70o���2?���=���0ؾ�p=�%���in�n�qu�1�ޢ�H���}:I��mT�$���S��~#~�-�L�\�E��r��J����m����(���]k�9�g�PF�(^�0���(�=Q%V�v%+��0������(F�6�/�Hr��8�_�5�;��~y���� ��e�9���@T�|�HpT���@�Hr�>Lҧ��h��[�Җ� Rx;eE�y�6�I��� ~�%a�� �a���� TxƘA>H�ăآKX�.5�V�3���G��f�Tm�f��>�u�p�'��e�g"-�+���~�b��T���v�ʧHJɪy�O�7�gs�N5����f�['�S��m �C1��ʈU^���!��`l��0#:� �����T�p�[� �&ݪ��V�C�^�.c��s΅��e};��e�����O�m�����A��2).k�WXTĠ���0h� ߿'=�e0�����p���kˁ���XSE%9`�n{U ���M[;;�;w��60�1�J3^$â�j� �c*<���'�m����b%�x�(��K0$K��յ�Pؖ��h�|dv�Mr����Y�\����%Fɯ�b�;��w�~�y���K��e����������dM��0 $EE���V$��ƀ���2(c�nJ (��E#/2��7�,�Q���Y\G!?C8�(zFud��#z���)�uѩSO]>_>,�7��p�H�D��k)��n,��d�nќ��o,���i���Wɞ&��ǰ5(jB(�O�0�ȻX6�m���ٰ�$�ј�}��6�!"]���=��뀏gҟb���ip�I��$8b�f!�Rv/��ՙ��X;����4�ϸ�ꜳ���OZ�'���D����An�q( ���(I�o�?�z(�N8��DP�� I&9��BEk8�5���m���A<I�E !*ٴ�����%㰰�O��(>��j�0�Vy�q]�J�����<���}"EE�d�y�|�rGm9`oJ����$��������%Xy��[r������I���: $���d����P ����>�J5 ߅���Q�iNP�o��4zǖ��L~b�����6�2Tf�@r@��a��h�9v<X��C��2f��F�Cں�2z��.t�W������(���1�Oy��Y�"0 DE9�<�E $��K�<ʼ�/���,�Ja�ݞ;E�t9��.J��3��0��AEJ����l��;\�2*�.9Xj��W�/���v~�#�`�y�2�Hrrl�}ӵ��=�E����ɜ���i�eX��_�r�A ��aY��~�F�$=�o�~ο��SK�0c�:{�sl����k+�ض"�iݯޅ٧"����Ta�ݨ�F�$�� V �D������dM\�c��_0�*��Z)��UͼHI�~����b�,�~����ݪ>"yD��7�O#U��gyqu��A�� ����� ���W�2��~a�Z��,;�J�Y�Ӽb�E0@)�d[�</} �_/c� a�t�b��]�P[�{`B�ʇ_p�'��Wb\͔�I�-��xF0`�\`�KV�qq�O� �������FK��F��kcp�ۛ1�,|��z˒�����u~E�e�!�&0@&�Ja`��<�����F���&{��ns�J� ��倐�Uz6�V�B�Ƣ ����KJ ��Ւpf�0o�e�Z�#W� y�V�_Ч"9X�*(ch�ќ�UOV-�1/�~���r�l 袻E�D[��K�5QT#]tÙ��S[+�b��`�I��7�"�o�UJΫ��f��݀ @*m9@��v�a 9�C�x�߇����o:�����?*�ݱ\d.���'�Nf� P�]����"X�M�QO�ةWeh+�/# �hε,���#,�*dl�*}x���Dۀ%@2Q�JR��XY?�bmgB���a��[�O��^=�Sucq��NsH��*b� E+��a���>��9*Ua���0Ŵ��W(���Yu{g�{Z C�.c�uX�7a����-F�>�g���;�M)�$~.RD��Q���� �����C�0��M"�2��L��`��0�����u8 ���hfq]�1��y���}g#�"��(���cs�C98�C�]���k�1 ��,7����l%`��� 6a���5��Q��J`��:�:ƅ���c[��P=��40�^Y���W�(!0}��2�/�T�4� �0x� ������0�D4���1��[�=���d�����am4�S^n�����Wq��/�A+��=�������}��ea��N`����wI����."��k�h�������VDrp��VR�t�砐���n�u�[�"�Dsd��jr"��0��9`�e��.�Ő���J{�� ��˺ȤpI�M�����)BݎS��/�A�S`m���`ݢC��$���EY[����̯ת�H���I�-Yj:�C�ӭn�Ie����!��u���{��*��������ߣ�{;㬛�j&\��47��_(cNu`�yJ� h����A,�|����c;��F�8;��|$��ؤ�*a j��Ϊ́��z����_�`ݩ�@]����8m�Z�H�&#oP�e�Z{���x�^� ��Ɏuapd1S���a� ��(�d?d�%�^���Ų���"���C�9!B���8���2m9@ ���F���A�QHDnI)6��O(��P�� t0��=VM|;0�R<�o��$��z����`�,����J�6���0K䀄3 K|�M��?r#Bo���ݭk�"��@��{]���u���zM��ǃ%t�Ñ�&9�'��>�A�\�a�- ���\C��������"Tu��q�,�F�eu�&P��)낁t�/�.��v�Oh��Em9X��E�Wa#9�.�ِ�Nj�/1U1)�����+��`]��{��|�y�y ���{b�pR���|�s������+<c���ȵ�,S ���6y�\4�%�m�9��P�.a��(�#�K�'M��i6�U�O 箻�X�, F7h��������F��]��f�>�J�<���o kQcO*�~��1�=�U �Ġ�P�fU�&/ (��*�(��+,���C� 6*��?��Ks P���g�X��J��E���s��qmb�XV`����<�VYrN|'�%z��9V��<�d��~�}K ���#"��^*����@y"���!�cU��r1�~�kyom$ �ѿ+q��L��r ��/c��=3���?�x-�$�q��, �� �P3��XU���]5~�"� �-��3)��� o�����PU��Gϕe2Wr��Ws0h:�%�*Wݯ�3�7a�s����=]�kKcB�#9x���뙇MZ��b��*{��!fHU$������'�<������9�(B�>Bȵ�!]D;r��{��ӫ-�q�=��d6rp\���E����.����-��a@��Ir0�QmBm�D��\>~q��ʁ�e��A�;9�T��p�ILޫ!*��[�7�O��5|e��i����aq�Г-9�a�h:�-ely8��aK��NL#nmzo~Ij�k6�T)vr�e� �Rx�xo��Y�;]�zex ��X�ZQc"$d��C �@��N��g��.`7�*��jd\�]�$��qG/a�����h7�|~�j()96Λ��Ѫ�vXa���� G`��b�^��^�Hr=��`ribY!��0�~� )0�1{��S^K� �|7�fC�BV"wlu���rw]8]t,G�p� /5���^�����-$� �u����i[�+�Kr�_. f���>MPU{�pa�?z4��jދ2\��[ҋ{���VH���Pփp�䠍�}��r��0��d?.O�����h^�Ep��1�A6ߠ��oV��sH]���[t�� �m9`�2�_9����[<�.���Gsg[��W����8��=�Z��I~�K������2��E��i�=qK2�-�v���r��&�����y~-�L3�����<����R��3\�8i����{7֭�_�@��!V�y���vYx]��������< > ��&]������b�:�(�T�ߪg����/G�;6��u�k5�$�"2��aq�%@�N��h�M�/49�_��C��2�U���%HY�A�W��M�~ n�6���φ�z�wP�� �&������'Ξ'm�*�t����<|0�iX�s�d�f9�V��KP[�j*��'̾���;�yO��Va�� �)�6�}u;ߪ�D�`Ok6 �C�%�/�@�������_Z� X���h�.ˁ0x�o���'�ɛ�� J��F6Z���{kQ`o���{%>Y�P6��K<��~/`��N��=�8��Z$�/ˁ��E����̜� �*����M��"���b�9�B�Oe�IȬz���t2'9�gv�1���yp{]���i�,r��/zy�4�1;�Q��9.0�☭J]T"{�<~��d�!+�]Q�����Z�@rp�5M�:�� ��+]�! 9�O�u�������r���HH'�r c�՟t��7��SU�N %DUg(�YQ8X|!7�uW�a�u��+�[c�&^jRy6SnH��a��3�Jy^�s��E�n�lV#!K)���}X�E�ӺW%��j�WA(<|$G-g��h�-�萦O����&�P��|����� 'qP�5�Ȋ�2�KA�(o�_�7=��:B������ �ڄ�����L^��ύ�'p��QmJ��J�L'�Ap�-ҋ9ۦ"��K��j���,����-�+r�R1�A?��S9&T�<4ׅ�0`M���@ p��y>k�[ jv��L�p��r@�=裏�Ќ���=a�\q���{-���|��e9��vM�4��wT�em1;� � ?�ےG�r �Ѣ��~CP,�^�y��{ǭx�y���Yp��0`M�̭�g�<y0`�Pݣ$l�۷m^���'��vTƕ0�� (��>#�M�x��Et��� �f���H������h��*%�E����\�S�L����ǧ����j^��Ϣ�$u��_fՓ��,90�G���x#j��X�.���%ȁ0P�2��C�n��9���ƀ{m�y���{�5Ļ�Wl��lq�0X}�:�D���d�ǰdž8�<�)��B��[���5P��6�'��-B�"ݻ�?�d��cC�}_���SMzC�!L}���ݴ(~c�G��bSE(�3�S��ز�A�L�T$�f1���JZc���V�STf5ɝ Xp��8��g#�*Hr ,E�����1x�/c��A� �6s�8�1�fa�k�]��9�N�1x�P�0`݄AVk���j�"��٬�dS���oFS��uW�T�n`�!xH7�N�gsa�z���,Cl���p9s6ڶ\�@J���䀹�m9��>��$xa�Qp=a@�_��m!�ܒ���+�>c<W�R`�DBY��.����>`���Iz�p ��%9@)6��f�ź-oA`��k�л(\���0`��0�˼�����������H�K��}�&ںh�g�˻��0@I�~��"0��Dun���)��Ö��:tց� 䇒k�qO|}��%�+�pxu��.��,��ͼW��A@�^ȁ���ϒ�ǻ�N��0�y�����)+P��_3�Nĕ�Q�"��'Uo����P�X��J���y����^QW[�lS�a�7,�h��Qr]�K��w�d���J�]�Ӝ����é[��S(r<�{�"s�k�c5��}e�����hn��r���c��hK��Y'��(I|���CUmXl�$�;Q'<�h� �?ִ�X^��Ň�r��X�7�X ��W� �^a���:� �x��\Xˢ� &�'xna��}���ֲgf=� ��l��n�ƅ��*�(G�^.�~�,�H�A&��XJo�@!��$�RӚ������HB�� ��<�$\�� �l���M%vH�,Í<G�A�K��ѯ[G鵃��_71@�Vã��c��y�*���倞���O������b�l�1(6��B>��)k�G*����qo4AM��� eI����0��v�1�EBy�E��(�<�Đ �� � ǐ������~�W��Er`.g�a/�r0:�eA���Q���E\��$��_�{yD�o��GA�(��܉����Th��feDۑ�����o����If���Io�h�'�zyO;H-37TT�3�JS�i%x٘�sP�SBgE���K㐆�����q�aͦ��0#6,�7�l-�W9AW,���^���YN��r@1R�)$jo��h��&A��m�J�M������u��|g���b��q���L����6�0x�ݨ�laЪ��z�jj|�((h��.���)�L�DU&��L�{2V��y�f`�!��9��0P�E0���لA>,(��v��b�w<n} ���O0�z-(e,��X�-�����y�-XiXŗ����ֻ0���-#O�Qd��#��e$`@Ij[�z3d4���d=�Bh�����A���)@�{�< ��_�ap����$=�-�ks�h��X߄�-��e���Y� Pv^~ZG�nx��"�]�E�U-9�ck�"*����G��ɇ7]G!Ӄ��%��#�"���r���'7>���E�"y� �?�A���!ҷč!k�93懀����6�E�����F���g��y���]�3�x��6ZH�Y,X���^�X~�LrCg��X'�;%�[�D�&��:�Ͷ��ۄ|�J�Z��� �����1{Q���7�"1k�^���l��ؠ����;�P`7}�ʃ ��n0��F�8��q^ J(|*�Ɏӫ s���j$rBUZ,B����*�da�,�8�� �1�Pe-��V�$����hn\ ~)S��e��AC~X ����hi���fa�� <��>�s,8P������� ���^fX�����ڸ3k�C���`{i�40���X��s8X�@ؿ`����� %��L��(�Z��r���@M[Pfz�-{�A ��{Zr>��#�[�s�K���AT��o^=�P���g��dXP���ZZ�����a@�� ��y��h3�l��w�5|8ϾA~�]����H u%� � �s'���<������;N��Ԗ�Q�0�?X^� �2F< �ד.�d���"����ߟ�PSM�m�I�\2� u;^��r�J=���� 0���`������B�7�A�g0PEΗ�+K�o:�X�_�7l�9-��_����j���``d�i|,VW�ьt �7D�A���0� �,VLY~�ʐY��X�&��0ƿ�0Od�È�r���`��I�E��a՚,��L��Y ?���Z��9�J�,V,���k��/�di��oiB �u� �_��ځZ��^fY��uu�S��u!��eq�Դk��0�b��N�s�V���������+7W�U^@-Dn0���h����EX{�jּ� [)@0��!x������=ļs������v�����ma@HA �m�r�5�����wc� c*9�9��|��K$�E�Q�km9�%�au12��@�RPi�|���Ea��Ve�@���P�{xy�Vr pD�#���@�F�$��|E챭�+t��͏�+w�0���[���>�»�a����Qr0!`�u���6{�|�;X�E9>��+��} %}�il,n0�q�P�Gu��ϐJm�I�SS��{�ャ��R��0.r�.:;�B��������Lg��us��,H �k�E�W�7.�YE��Y#����7P"|'r����e 5Pv K�V���.cp�<06u���� ��MC��!�̋�b�Q�O}��v�6��/�{�l\!��L̅�����u��ۆ�v�����R}���~MU�S(G!(V(�~Z��,gdj]�I`�*L;4���N�>��]�jX��a}�L���_�6�6&$��5S�(Pj�s�wt,�R+VY�W��$�!â\�b���:d�x��5�~h2�������(Q��g��t��A��K��U5Lq�`s����'Qr,���� ��Y'r����ƀ!BW��%�0�|M@nI�@p����A`��1� ��0%�1A��ƀD�wB+�/$mx]r����\��D,�W����l�裠��~,l0 �/4W�T�*HaoPP"�� �5!iL+���"�� �2�V�5��̳�����{*�������kc�rpڌ�^� )x2?'���XVc�i��%;5?��Q{�#�]Hqt����~����OZm�"^'%9 ����V&5�O�x���KV�|�1`r��]��:�=�0 �h^��<����M�E��Q�o}ݮ�0 Z�� ;��|Xd���P?��*� ���k�a��h!���bٙ�gNJ���1��g�0�؈�r��!��s�δ��_��R�<�~V.�UG-�iƮt2!U 3�����3�|#� +4;۩��Jc�ݵ�;HL&�3)�nΉ>'���+l�aż���f<]!!^��7�a�m6\�7��3�_[�W�+"�6`�� ��@�!v����{�B?�����#�+\��^�-N��mJ(S����s`� mdi�+�#Y&3��k>4tx��wstV�Ua3�g�cф8a��ʲ�M{�J�`f�k�n�:@/�"�tg�����z�d�4�؎$����c��@2�1C��#9�� "�\ oVA;���<0�ë#yI�o�m9P�~�;@�`d_-�uJ�y��!9��}��(0�r`y l�B�MoÔ����@r�6lN��h���/%I�� J�X7�y��o��ߣ����90x-?,E�]��.c�`.��圽���8�����jV\ʈ$'�C����!z N)|�R}�@y�����9|gg���}m������ڪ0�.��G��9�����"�4����0@I�t����8_h�jؿ8��p���5�B凲 ��'�� N3�P��65�ҊN�F�t����k�ٙ���F��v��=��B0�s@0}����@�0=� ��4f �a@\bR4 0� �������P�\�k�Y�z�'^Y��v��e��g��u{/���ӊ�s�����6 {��>WQ���������8���5�5�"����$�ᡰ�}<sH_��{�G{�1�Y�L�%ÀcJdۍAA����yl���}��A����Z;.�3�U�^6��V��`�����{+�lo��l���`*�w�g)xn���*�`fO�$apf��\��Ȁ:S��3H��Wd�5"�2��:%Y�K�Ġ`�0F���:�Ձ����~�����d'�H��8iP�:�,q�˚JGD�;P����X�=q+�L R�Q0�(ÀU_%7������40 ��2}�:�M����ETyD�0/��*�zp��/)��/�F[�vѨϊ�\m2����`�gB�r.�F���������E� ��ş��C���qo�TA%�I��j�g�TW3?|S�J����� ��a@�V�"=R�&�1��E��<v]F[�&� �xp��no�Ee��ĹX��Y��M��f�Yf!��V��m��)Ro��Q�d�]D�V ������]��2x� ��MV\u3����Jz�Ķ�2��`d2�����٦Ɉ��:+8>�(�,Ӽh�E1�7-Ô���>|<�U`̨#(k�����kxv�8D`d��ֳ�g�[|�峞Gx[������ e@'���uf��8�DrD��0��B0�S�!;�x~ھg`�l�#���8�� �?�Z��`#��u�U�FXO�Y���!�I������2�#�e�(h_r7�n;ʱ���Ώ["�����r���}&R�1�-#����^�u@=�}83�i�P��w���3�T2�g@?B�ՠ�iAX�EP�Jl��Uu�-��;-*��/� F�Un�8�����ӧ�G��$�G�"4;2(�M��zr�`@�]͜��\����?�<�z�6��X�+���e�1�_�����El�؞���N�0�0`[��A�������ϵ������Ua��f^�:�[��=Έ�mg;����Ƞ�8�`�xPƲ�~�'��,=:�f���<�w��\eN���FK�}ܓ ����#�PF�(���2 /�J��=A{�W���^�/�0z����!w��8}pP�s��7Fy�֕F� �g4�3��."�3�t�� إb߹y�<���h�H-����Z�8�%l`#��1�"0�ɀYC28�K�W�v�h���d�~wL������]�%pO\M�2���fA[�x�&>�J�+�7:��ob�����g�=`�a罈��Q�{$ꔁ�wg�|mX-%��ɵ.������y:bL[:D�i:��B��H��"e���8�� ����(�M�LB|�I��g: �E�ےW�#�I9R�79��?�b(����u%�3ap�j�s�L��GT�Ch ��a`/�*'Q'��[u��M��v?�?�m�: ��:���'h��:������E��ʁ�h�.�������4A�s����[Y���A����F�i������s�@�IvRЁť�zx��P�]ү�CN��`��m�'�<�.����yؽɚ3n�q��:�-� �w�q ��3�t����Z0�#�)m�9efR�e�9��k%��b��pv-29��A��.bJZ߫������a�JS>G<] �)�8���;�]g˪��ĥ8��W�<�=J|�WF#�<�՟�Ha ���,&t��U�qX�~k��?H+�qPk�Z�&�#+/��mK�*���n��!�2��������� {��T��a�y��?z��P��<h�zuUx�x�*��2���I����5d�3o�>2���e���%�)=�n�Ƃ�rJ��Bt��F��"�G{�:�z��!V���Βa [t�a�.�0����4�4�����A� ���� �&ܯ1��@��'�a���cGWu�P�>���=�zl��.H�����7v&��}y�uհ�-�� )�`}�Px��Pp?���a&?�Y9�m�`o�hOlgK��<��=�vhk���>�m-�8(��3���O���<(�hd��-�G[D��c� �):�A ��]N;��el.��u���ׄ��u3��z؆`w�;��-�i���K`����3>Nj���6�FF���$7T���9��1�)93+%R6�Y��F�R=>80���,��{7t��?DSb���c4�4&����>�����z��7`DY8�J7ծ�d���E��@��f�u`��I����M�ہ�e5�0pF�ђ���2P�,�K]F���s�7ּ��~� m�ʀ�~�2�>�t�d@��z1�ڥ�'�����q����4:G=������x�q~02�����^�k�ۛ��G�Ȁ�a�An���x��?�?�(jŗ\���00��|=o�ip`�30�;�S�-�[�U���� F�['���d=ru��4l�E\���ߑVE[�߱�u���ͧ������f�?��E�o��m�ۢ��RY����clG���a��w_r�v�wV#������G�'�l+t@lφhOJ�N��uz�H?aZ�I�5u@0(�C{a�{�w�,��řL9�9�-҆���7�`�x��5�+�ۈiGg���@H�A{t��+]�E���$S5��/��r�̃�"�a���Y Ϊ�bkAq����Ϝ.��n���>���q������Nr_�G �Ukg{4�>%3�G� �F�YjW���0mY��G�b�QE*dELg<9��%��{os�p����d/����S�B�`��`p�@��b�g��I_��`��~3��#�wu ���`�>�rq�}��p��%Iw$�;8�[2� �g�q����0��wZ����,��m �D-�p�f�挽o�j�c�BX+K*À��ܶg��b��:�'0˪n��c�\�d~L�z�5� �ɪ��<g��E�.�(��~Q�R LqBiS����\p�]�#��(V�C����{� �*����8��o��IvϠ�2=�m��U2�e��_N��nL(0�08�%��y��u�ƀ��ڷd� ����u��"���$�{��b�o�Eo�`�� '��#m����L�2�-�ę�����ź��U���0���臯�RP~�..��g��W�z[�'�l��{���N��5q��d��*G���m\�)��x7'֬`����m�,+T$���%��ׇ�dp�xP�N�t��h,�7����BXnv�9���}:f.��S&����'M�ֲ>/��pEկ��6W ��h}9�[�q��!�����Y����{�IUE���3Mޡ� Z6��Ʉ��hz/\{u�4��x�i�=��%NIynHg�3f�]�8PF��>�P$��(��*T:�Ȁ���`���;��/��[�z�a��/0��;��`��W �OL[zp�3p_�Xe���>)��H}#�g����R����2�ٛ�о<���g��3�2�P���S0`�@�e�'D�'ob�e-�3{/: .�ۺ��Q���gp����:��(���Έ㼣{��Q��;��=�;=8WA0���M�:�`��ȀAX��g��q=9��;�w7٢�P��z�v�k��Ռ��/�h��"b�-輦 ytQ�k���z8U0�m��:�<d[��mˌ�ֺ����z9��Ң�[d�D�[@���ϟa�� ��)e<2��z�y��Ȁ8��r�fv�KƊ���o�f�r����L?���@��Y�Ju�fAB�_^�[�MoT Aj�<���O���..ݢ�.�f�CA<~�4��}�zſ�ϳS�"����nrF W�H�������|nP ���*w^_G*m]�ؿ�ei�ޥ%Z,�YE����:��"����"�6�G���爧�x�u���e�������ȀC9>w���jQ�zf��ZsP��@Y>ζa/V�5&��/!�2�W���D����ܛ�rI����0�?0��̀�f���00�v�YV-�3ޯ��+���Ȁ��g��P��x�g5L>G\����z�(�����^���Z��V���^���Yq#���:`���t⡃�>��gzٵ�k�I%Ct؎�X�dw�� -ʠ���_�q'��x=�������oUh��{�"xȮ-b�S�jQl��O`.�TC�gup��a@"��J�]��b���q�Bn3m;l;i�Lep~~���:�����4�/�#.���70[���u� ��"�_[4���#�W���0��@[�v#���Uؗ[�uP>�UN��ƶX�˨۫�Y��p�Q��)�̛����YV�*za���W�/2��Yit���U�9����!Jm�5+��g�ۅ/�Ů�$� ��9�3x�\���9\+d�����,��gI��H��[%ܗC6��;�+���o����eVv$'mu��Y֙V#f'=��;���=J��(����L�$:��,�o�b��S�M�d�r�2�S���`p�j��H��>�.��Վ��ʀ��8��}�0�� �x�R��A��3�0p��30�$�XfUAi�Nf�ue.ԁ��U2���y�M̷� j�@Rt��k���U}�����jt2�s(+X2�������g�[�2@�撓:��{4��E5,�a��d���8��y��*��o�6m0��E��*����>� ���;��W�ġ� I;[���U�߱E�$O���?�c�}�_p��h�z������#u@?8/u�2�kcB_bj�-bP�����6��1��� m�C�:�}���ϫA���-Re�\>�@[���u@�:mϤM�k5�~ Hv&�?s4x��c���eJG��Vx���s��a _�dO3��6s�2��9ӒL|i=@p50�K�T�60k^���с{�a�wvV��}^�y^��9�PI�6��Ė��[%Lr̘�xx� �?�Z�<���ON[�wpی��{|�c�zM0x:ޜ�F�C��1x\��1�:�B]�����r߁F9�=�bv*ڂw��.���N]�1h'��մ�/�/fl0`PrBA��gﯫ�d��L�h��i�eP�9Yp+, ����Q�s���:�Ԛ+2�_ɀU��'u u�3��X���<e�}��Ȁg�.��ԃc�F�b�n�L�0��a�*X�Mwܲ��^�vp� �8��r`����m��a�*�A�e��V+��c�*1�: �LB698i�l�E��i�-W�n��%��=2(�]Z0^�g�MD�s�'"榫���F�})��5+�I��h�~_����P�=[������ߵ�ȥ�u=3��u ����@[�`�t�e�M�h�Iu�(�;ݎ�����ǃX�,'���Cv ����xF�!�jn_\l��0�TQ�p6�_E:���'��{o�3�]W�g�4_DjnWm{��0�|,��R�-���l�k���y?�+�Rܔ)�(q笨ˡO��c����1�~}xK�h���-�0�閈��.�Bb�@K�;�|=4��W�~q6�{O7?����5f�28�FM�}�x2�Y`�o������p��l��g��̸;�{�!��y��w�N���_0�e��\����_x���g0�P��&W9ha�e��}�g���ߢ�7�L<���s��PÄ����^�����;2��i=`+̅m�V`2� �Z�p1*��/|F��n���>�_ԕ#Ё�O9���V�B�Pu@{��n={qv�@X����xn��h��{"V\��W��Q< ;͖K�/t@���Rd0hy��ou�3 ���U<�&���źLpZ�K�zobX��cZ��0�_LDo�E�<�rBΪ�v�q}ζ�E��ў:p��S�tP����#�nd�HnX/|u��.���N�$�d�KSR��.�c���<#@++���Hϒ<<�C�������$��76H$Q\(GRf��G�q�1�y���ܟ���k��s�]e��g�,�n+�T��ˡ5 ͔k��f��7��YN�L{�i'����]� tf��؏�Uh{�}π6�����H��gcF$f-0 j��Qπ��g�:��� ��,ZZ�ra_�*���B���8��?:/�@���cz��>�|��+�y]�}��2p��{<�~�ie�6�=�F��2�� A��t�\�?�O��y)��oy�������8PE��]�6��:�_�ß����q�G�J�p~�r�e<�=�#� �:4����PI�2G�ەUڮe>�+�?��8008�l �}��St��F[�aU��O[4�:@װA�[�#��8)�N�K�^����fQ,-ڴ�E?�ʙ��3��u_��.�O�_����w�G�բ�e�"�*[�N�2��g��������4W9�=q���R;fk��qDo��O�����e���Y�}�a|;p�.J;X\2�[z�8X��hj�ýp�}~0�p��<E��������>�H���-�������*�u-w[�a�fy�P`���<�eH��C}�*L@LQ"�u��c�83����?�dp��u�l��m\*9x�םd�ޞ�{�,Vv,m?���N�g��,�r0'��B�3F\ e�u�u��cʀ�NP�QMc�>\�����vpo�g���f�m+0 T��`0˃G�qM�H���R�s֕�$t���m:�����u@�^p u��W2u�K�:���ҜnӁ��}:��J��Ag%�H?s|r~���^A�����͂BW���4`����BP%O�ul����i���}&r#��:�AY��X���Fq�uu��mI�l�E$m��Yڢ4乷϶�h��O��ADp_tp]W��q&�����-�l��z��Y&��]�8�,G����d��U�����Cld�}Ё�h�`��x��@�-"=��hԁ��6���`)H�&��4g8�p3���֙ns�\����-Ywwf�(�� V�֢����Ù,-�{w<X֑.�<�5J�]��o�o�KFc<(�u��l�,�3�DA&|�� 3�җs�Q�q���4!�H$h,��$�k�7J�j$=)([IDiY��u!Ai%t��:�d��K҄g�;]Doc��a�(�����������H��}��e����/5��1�f���u��c���g�5����*#����H{�y���;,y'�ͶwϗCC�yFu��4��~�` ��:��X�q_G}t~7��)LZ*u� Z�����hgu�����Q��}���������!3�7u�!�ɀ��S�(�*��:�?ʀ2�=�m�C֞Ql�}Q�!s��I?ڦm)����-:_��A5�l�[�N~`@z%mтZU?ϣ��Ȁ��eW �%+��`�~Y��(���Qg�~�?��?~FY��=��Zˊ������g꠰b:�����Ǐ[��9�`@���?*�����sҮ�;*�Mܩpǁ���D?p���:����̲��*�Pv]�9F�n��m>cJ��4e2�8c���E�c��sc�[6�ԣ�[%�P � #�ٖza�=`,�,��([�)��ŁT�g^$Ȋ;�����]�qx]bI�V6�~�"\M;��қ{y��L�S��l�����ER��3j�zˠ]SN@�LoBU�ƀ�^����;7a��=�D7E��U� ��yzߵ1�[X��3���s��i<�_��#��!5�4�ˮlz�W]w�g�V�:����ݳ����R��j��u`Z u��k��1�ك�9݄�@?���e�d�R2P��:��K2x^���:�@��&�12xU���I�E��]n�ݟg<�m���e�d���C�`u��A�"�QݣN/�ޗ�:�a����G�ը��� &ؕ�2c��-��`P���e�X5{�9�&�6��j�#wL���"p�B�ʶ:�o"��ˇ��X m�� d�N����p�]���l~a�a�k��h6����Yd�27�q�����E�����1��2b�a��LJT��9CYQo��o��e���L�q�A�nX�2���"܆��a��g�����{�H{b�.n)gP۬#�L��&~����j��ؚ�{�8'��=E<�.���#����/Y盆��C�J;p�8��Xˎ�Z��1�0�������{�<���.�;��R��`���c�wd@Z�}6��k!k�7�8\IȀbL#R$p���"E]8�NҖK+!Fz�X�/b����֟g���`�����0�\�M03�[&������h�d0�[�@��8�IWzvN���Q�(�b��ׁ���*!�J���_�;0�����Ɂ��8H'`�G����-�8D�FG�82��a�l_[�����Y��_�-��G[$�ş�@�ú��F���u��q��D�gPr���c0�^y�dQ#v&�[}|��u��_��4�R��2�=��@Ǘ�V����g� &�2@�f`ʭ.~�~+$u���EL{[�3�@��xP�g�Y�#n�k����i��L�Up����73 Se�S Ϝ�\�XHH}��t#����jя9:炙K�������X`Db�bf�1�C?-� �L Ͷ&-����>2�g�|���M���`�D� �S���3�}�Y�9˚-B�۬��=d�s���ʿ}V<#a+�qÂ���00 �)�gp��I�62�����e���g��UA�`QO]�Ҁ�ePEܲa0f�..��(Gl�Ȁ-�&��ANP8?��ZϠ��-�e��X�C"���ڗa��d@;��`���Z��|ʣv��Ы<p~kT��d@�<p��~���;}��u`�>&N5��4���& =�8�{'8�Ou�K�Ic����с9�zߕrG�d�m��"��;��m�:�wD�s��7�\�w��#up�j�/_��y9�������scP�����M��՚ފ�#��Ю�F]UR�1ڢt������`���u����h�J��G.���f橻)�w�ɖ�>Gm�vhl��iv����"�ht��2¿Ͻ<�_���V�Խ�YE�ź �;e�a��ב��c�H�7�z"ܿ���qm�� 7�E>���W]�x�p8#bTc�� ��}d��2�� ���y�ǝ�e�������l�Vc��ex`TwH���o����g@ĺ0P#�]iYp-�7v�Z)�1�#��^�燻�?��g���c��`�e@�m ��ϓ�2hb�<Ѐ�ncd@~��n;/*���+[#�e�>��À�����f��;d��:8���3`���9�d�ѐ:��I����\��Y`���֞j�g�5``=��G�A�Dד��U�oj�'�����<t�p��{Q���[c2P�ܒ䰖�%����-zJ)�l���e�,��,s�����O�-B�l; ����O�3�巿����E���4�ڢ7oc�V�Cm���4� ���iW�< اj�<��U�U������ǃX�P�fU�( ��MK?3����I��)���֊V&eF�E��z�<�I]��~�Kh�6s�<��w_u9�Z���h��3��m��-v���Ҙ�qKcJǬ�����+�ޫ6�`\�,�����M;(����M�;�a�PX�e2���"��1�-�Y��=d�Ia���*P<@p�/2�G]�}X����ő(�{�ׇ=��3��Gƾ��ݑ��£l��gt�3��*���1��������%������pv��G2���X�b9�xY$Wa�`��kd��]��F�7��`��H�M����-ԁ�A��QV��A��~ɠ�,'.�����=&7�n�`𰞛0k��j~�7<T/����$����Aπ����n�-� ޖr����0�zXx|_���pՅ[��gp2%�:���o��r\�G����� �"~��\����l��P��g���LlQ���6��5IN��:`�UV�y1a)G�����b��!�xp�- '�C|e�op��;�9��e��VF*�N��YhA ]c�px�ole�q �)�8Ө 1]F�^i�G|�s3)�lZ�*��Ӥdz��l�*@C�����UP�G4r�Nj0aa��� h�(�?m��\� �p��g�<{vX��������8Jt����t���e����Sn;u(v� �6!o��zP�)x>"��_�C\Ly�Y�g=�{��\'C�'0 �7��w�L�>��� ��Ȁ��*���>=3��] ��& �k�Ln��20�����ܘp��pѣq~!�jJv0(��~6f�� �\r�s;�1�dJ�� �^ԁp��}�;2�o�i?�/�����������}xo� ó��92@2`���A����c;�N��7��7�kJ�c+�mQԬ�ۤ��>S��%�Ƞׁm�yg���S����g��2����P|>g�_���6R�p�.������XcP�i�c�Ν��>��W��R�:(5��:`�1�r}qG�k��pF'��<���Y���E�n1��:ǃ^} a�,_�az�W�Y�l�#��X��K?��z2l2��N7��S%��Mꌛ�8��yȺ��@�~��ҟe^�U�B��F42����h3�68����3c[��0Y�I�E��T���^D#絭5RZ�咕K��\�.ܫ��<�j.��_��s"�{X2��_ǀ�_��l3�C��M�\� ^��9��~�����n�\D�.������J�0�ζ�v"^���vEπ��3���cmA}#D�se��߯�yN��0�d��0���g�=�Bp�OA����:�{�1F��E��A^蟯z���uP���?P�v�5��es�Ϥx���巨�O�z�v�0��`�$��r�1���nĔ�l�7G=V�2P��I1�0 �[�ƨt��Q!��;lM��:��;�i����xw/���7��� ��j�0��o���'�&ic2����y��2u��m�8ȗ���:�P��ˀ�&�g��E�:�up�R�H���A1.��Yƒ{��r�Qxj?)`t=A6�ȋee�U�K��Fl�T�Y�yy^�gJd#�9�����Ҵ��m���~��>G��{���s�~��97=m���lbH�>?9�hZ͎�҉�7�AS)�%���V?w?ۖ��2�x�[Ԅ�A������$<q�5 �Ȁ�T�s��� f���e���Vu���R��Wi����Ȁ��:�=��l5>:��B[�H��g���k��}�e�||�1�W�9#��A��Tu�����4 ���`!�,����: �)0.#�eN��A��Xɀ��%����c@�Y�衾��0� �W�����mT��,�TG�����6�X�ˀ�ˁl�}�<��\L����0�Ɔ�Iۗ�ۣ�mQ<�:��٢^�"�m���'G=}�:��9�a����L�I���X� ���@�ڍwV0��o����Ӌ��^<�>��z ��Ep-�!��.�G[�&��~��m(z�&�g�m��k�7�<�Ƞľ�0�D�bQt`��6Ŷ%mdz��Va-�*cB� +���&_���~0����F�z���j[�����w,a�>������:�\f��yk�h�&�u�/g� s�k2���{�|��|~���+D�1K��vq��Ԏ��f���Rπϲ����r�KD��vd`9�ޛL�rr�73���c�m&����QK�;���# �>d��&"wd��{�=��~��Ve��1��0h+�nR!�Q�'�_~��B=�"�bY�-��Hv S���{߱�30�����S���Ϻ)1X.�$"�G��ɀw���b�u3<��^l�����3>K��4����ɀ���с� �f��7����u��Vm�,Υ��[ڢ��]�]�y��$�2xS"m����E�;�|U�ʀ�;�E����B�>2�M���.h��9A�_�\՞n��)�J�:��h�z�cP<h1�q��I�+��pM?���tٝ�^�*�5���;��9�_)r���ˉkl�����O��r�.�Y�~��4p��rI� ]8�o�ޠ*Td&���g�Jl>���E�ܳ�G�l��{��Z��g��}f:�gDtڥ]�����{E�Ğ.�kf�2��$��0 �r��eo��7��2`@��g�%D���+f�70� ���C32�2Xp=W<{�v<s�\��gd�����ڡ�Ƞ L4C�K�O� �v������j(�'�~0�u@�%�����Re�C�B���L�qR*�n����Ţh���j_��q�p0�#N��&3~�z�u�ϟtA�����[d;^C2�o1�(G�-�x~�3�D0e�j�>sJ�k�s=��N8\c�-RO�_�k�D��~���2��u�Om�mҶM��:���[t ��t ��Eo -S��2]/*��,������g3��ċ��Ԕ��,��p�v�(�{'�e����I�gĖD{<8[ �"-�0J��d��T�lٚDQo1��>n������.#�����\m�I8��~2�K��߳������vG @tRl��g����9e@ħ3#$�I=�R42��U�ˬ^[d#�Bx� ��Ke�\�������'0���qU!�0�2�]g|�g��0���jlˀ������������q�Nw�&V"���o拭�}:8%�$���5Ю�l�o������*�f��2X��Ѩ�@Le��]�vF�kg♸�䥙"%yπ���"�E^���g0��-b�z�xV��P���ůh.����zl& ��7�.���Y���5�0�D�t�`Y�e`� ~�g9��@U����up�`�8�7 �:��ۛ�"u������_��:8�60�ɨ�~<`�-B_\kJ��&�&�@'Y?xQ���e�г����U��ơL��[ѱJ?��?|�)�o��.��f���2�@�?w��^�6S(,f@yq�8#R�J�j,��@�m�h�ii4}7���d�$�,Ѵ���S��3�]�a��نK�P��T00:3�Oepy���Aπw)���>x�t`�}J=Px�zπ�7 :c|d�~dplj}�Z�h�nr�2`�>20�N �gpF��]N(:0X`��A��ªBn�с0~�|u�����Ձ:�� 0��%G{@c �ٮ�.c<�6�_�� ��J���� &��7�zw�<D������A�j���=��a�6[)����^ݓ��"������z�8ڢ�D�?{��39��,Vk�@�g�NDe@� ە>m��Z�q���y,�`��pr|��`HIܽ�(�o���h��W2���`�EfePe��}q~��Y���mǞ�d��V,�8��m|�/��u���o��hv�SkW<����DV˭F笋^�g����(��+�et�L����/��k��{��*�|ߧ�E�_l�b�R��dYW�N��w���Cg�4˥�D#�H��ӭ��2��>�i^M6�.ܜKd���6\�Gp�^/l��͡���2`������ۧ�g�����0��IG����5i�{,� .]�M�-��_�?�� ���*q��e��W'�r�J%k���<A� �'��d`� f�7�U25��$��&��������F�N��r~�A�a�"�|d�A fޣ��y��3���[X�Nn���]+��d���:��e���c�s336ʾ�������q��|eQw��%x=��<Z?yq�`�<��I�~��{�-�@�g�p]�gS���h�x��5�8``0�!Ȇ]N��K�>�+F��:PK�-�>���p?�����ɮ ���:�Pt#u�3�̃����hI=��� m�Hű�C����&y���.�1I�k����hs<��:����2Ѽ�r8<C��p]=�,�tU�z��V�z��5�釛`�<8�LL�u�m���p�r؊���y��,K���)�1���T\;�K^�Y��?F'��<DΤ|��)b�WL&��~��^KF �@��H��+�Ft���x�b�{����*ɀ��~2`�@��xa�a}| gf�3Du>�t?�U= ��}bp����6A3;=��G|F?��5��}BO��=��t��4��C�+cGn[T�~Ц�ܣ����ڻ�{�ߣVHt�^����6I C�oQ��`�j���{z耕��؆Y�v��m�ڗ��8si�_ǹPxl�X�����ޓ�E=c#� MȠ���n`��~��2��6�g�p���5%��9�����?w�:>����1�a�ޕ�0�%��s�u�}��%?���%��x�]�~v�-�m6�X��jZxt�-��`�3�A�ȹH�m�A�� �:�{p���l������~����7;��=�-��yG\���2�� ��B�9��;3�{��N��0��7gj�Xy��Ã!�i�)��q*��>cD��d���/�����0j/b�bb��C�����DE*���4���g���i�#�,f�c��:���a�j�c�r|�������Q�l��2?X�%{G�� `@������ޑz`P&S}�N9���J,oG=�zn2�s�gpR�d��e@'�}�L�z�ц��`�u0�-%���À(g��d`ػ��CP�Gut���&tu@�О�e��=�):X?zt$�#Ё�'"Ձ��f�v;C�H`pV��u:t��q5bsV/����=��8��!0X����G���!xP`I���g�M�}mKt ��t�3bЙ�k����>��&�p��N�=�����>�,w$`@���Ǣ-�q.O�O�z��w�������jV`��>�-�Y�E�z��jH�3�[[t����S��?a��{�x��@�2��4\<*�ɅV\pkFx.�*�r�;��Ŗ��"�R���%4�:���MO�bM�̷q@�+So��*��7u[$�^��\2% 3���Ez�X����2iFt�l1��Ev�w��nM���Ni�������w۹��֦�f9�4���O������<#NG�a���=��Q1��8C���2x�L+��a�Jjd�c6���nb�@��������t��Q?d�I_c%T�P̔��}���d��i�p�mf�00�:hŚ�000�g#�/�W5]��l�j�6e��`{�'�[8��;8�a[E�v�$����=��(8�G�7����ϭb�H� ��g�z��08���E<�h�.����=���ww�E#� �M.��9�GC�B|�C�m��|uG� ��e �L�~�m��1u� "t0�����EzIM����8S\��^�Qߗ��2�{�3Pu�߳�E��f�!3���Y ��@��H�<��W�e�W� 1 1�͈FX���ƒQ/�n5:�J��-/�8��%w�� P�#}�9Μ9M ܓb���;� �� ��M\��.�zy�g�5�[)��qt~ /F1�8���{t>����KWK]�!� @p6F�?��(a~�1�p~��Z�Y��d��tz�fZ��`�s4�T�K��u@a�S���qvsRQdл��g�̚8�bm�m�a�8���'{�?>/Ѹ<�~�A����w`�s��������Ż�:`(��B#�j�����T6=�pe�F�֜��+��X��FC؟z�EP(K�Пz��̮�����|�,=��>��q撒����Q7D/c%�-z�Z��}s^'|0h:��h�,Q`y�1c�m�wG�[Ho��vgf|FP*W[��g��B�*d`�lCF�q�Ll���rm�z00awF[4σ��d�3����m���������GAEcv����LZ1{V��YV��Eg\D���E4�c�3u/�:3�G���zDI�Z$(�g�zP���䀚��b�v���,!Y�y�WҸ�FGe��� ���d����b��I�h�t��$��]Az ��t�I����t�k<�b�r�6�t �F�M��[�{pP�~d����R����AW�6 MMX��wa ��a���Y����i�O�[�μ2�w`�;*ܳy���:�s����&f{�]z�3�Z=��3@�2Ћ�/��������'G=���J�<�Ƞ����уH��8�$V08�m�d���,�k�?/�;��d� ��/>�r^�z� [o�WWԞA�a0��<ǝ�/�+�G�b�|πۇ�(`��.u%2��r�3�ݿpN^a�"��F[4/wq��e����-"�����1'�]uP����6�ςx?�N�2�H-~�2Ʃ�ok��z�up\ۧg�����ګާ�_��&�m�˧�e3�nn,��x���͎�fV^�#t�r#�b7�ٟf69�\�)�����%��W�rf�Wvp%�ı�br/״�m�6����G-�w��D���n9��w���z��Β)s���ѻ�̴"+�b��@�!���e�E��pV 71h��ڹe��32�Ync��ze�U9Tx��?2�#:80Z\�g`�x X`H����g�2{Մ�>�5���+����D{0T$P�P��g���n�{u������)X�;�;>s��1`o_�5B#9�={�1軮�$kd�F-���5���@�v�gnw�9u@�}�'��t�v��F��ּ s/�N���zl�o��aId&��x���V3�9G�]��l������w2p��3P<������`�>B��@�X�����=�K�� rI��ww�E��:`{T��;W���rGP�Xm�?>9����Nz���{r�-��>[Tƒ��+�̏2� ���"(���/���f�z�6�2�r�x����l��H��+Skp���7�M ���#�K���,݉ٺ�:l� 1+����I���v�����U���Ʀ����s1�O5���o�@Y.��=�w�m�ҽ˧3�:;9�3,<d滊�S�4x7l�s����02�Ő��w���?#k���Ev���?�8����@�M��&71�oepB�۠��?���t�}`�5�u!�Ww��`��z7��:��c`�33I�`�Nj�D�Z�@D@^Wp�A�]]�e�L��^��V��a��`�0�Rr0�(��ս�l+�'O�}�Ui��2x�{�2�u�{������ܡg��{} km[l0`�>n���up|YW�����ꥦ8#㼤�qL�2`�ʉj�� ���K�@�-�l���{�(m�s�M�V���~�r6Sρ����Cg��IS��4<`�}�L��M��k�}[�d�9�4����X£ʨ��1�g��C0]��WqN�f���J�,��<h� ����7:~7�AG�j�=L_�h� [a jf�}�0<SH\�1��a��t5d0��:�\^��LNn�i7D������E�#�e��+��+&�ge��E�0yw��A� �|�vEǀ٩�k�ed`����g#�+�^�Z�?ŀY�e�6U��-g�̭f�� �����80�\Mu̖ݠ�w�0�2x���e0�:�)G�d�؟ߧ�yO�j�[5�#�Sk�3��w���kʓM8����܁����0���[��}]g���c� �?WWj۴lc��&�B|���iNʐ��iL�jx��&�@f�"\wG\��ϖ6:�1Ȫ�q�` ��a�G�:ݵ�~�"��:�^LdF�`/u@_���YuPH��(�H=���6gE�!Ԫv�������t�j���va'H��mP2�Ѳ<@��.�#�ɒx3�W��L���N�G�Һdܔܗ=�\F�IT4;�dG��|�*���)�[8��蒟?��a?zS�q~P�K��+�}�E����[�u���FpS�Y�1@�2`�)h��I-�.��3�F���70�a����v����� �rϓ�A�ڏ`������В�g��3@xe����I�PKbdP��@π-��t����5��8��A������o��g�=ߕ͡�12��`����������`@�3��6D�4J� ����0@�A�jap<��� |�\���"�WL�7��)[DeF�<Yi�͢m\���ݞ���'���,��h�^�����%^@k�Z���s�d�``f�^2P�x"u�:���Ѽ�:��h���٢�ſ��f1�t�i���e�?̔�)�g,kM��7�9c��Q!ҔƝƶ���/�8.f�m���Wv��3 ���m�n´a����y����F��+�-����$ڬ�(���e���,O�R�P��&���h�T�����a�lf��}��4 �]�ܫ��P��c���6� Ztf��~��5.�`�^ɀϛD��22�C����`��qϠx�^0�����3W>K��fm�H-�����1�ǀ{�` �� �Y���M��O�.Ê���=ˀ�����Baݬ_O�l�E>'F�S�6�ږQWD�F�A�A����gu0ˉ���b��A�y[渨��r=�/� �`�����>���g.�0 �D�4����B�g�i:�A���,1�6q���l���U��=���A�,ۣ-z���S���<)?�����:�8W�q��jë��'��=�.�0�T�Xe1��l�d�_�Hn� �A)��K��� �÷b����� �n���bIk�8���p�U�z��v�&{��#�}2��ͺ�����v�7?�@�͕��:Au�" �.ᑳ��l�3�Y[� W�:}��̃T�� Ų.��)#qԁ`��,��m���bp���JW����E�a�f�~�[B0���ʀŞ�3|kq�a@�mЉG�C�l�B��`71`�3�:�f���G���F��Y�H�O��Ii��#�UdpYNڶ���r=����7u�lS��}�᳙��\71�Oπ��X �J�ǎ[�=t���:�HP�@Xg�%�������r��Y3� �@Mje��V�����apQ�Up=u@�{m�^�g�E�(�����C�͝��g�B�%mQ�r�U���b�`@�đ����/�>�J�l�h�hφ��g�$����9��;_�U�:� ��@�g������M��x��ƃRr)��R��z�Bga:�<��ތ�9��px��:s&-rA,f����³��M���,��S��;�+%f�����Y��p��1;�4��7b��c�a��ֆy�2���G����9��wQ�g�c�a���~��;o��sd`�U)�M�+��ڿ2�>2�o��B�&x]]�~&�x��_��+f��x2`���ib��>�oc@���2�_V@=����}22�0��\�6��A�NO��<,ݔ�;��2V�dp�(c<2x��&�t=vE=2�X� �wO�>�: R٪�T�o�ȹ%&U2����������f�R�Ǜ�t�W��z�כCu����X�t R��72������O��y���YY������_��ս�3�Kf�-��A�/�`�nc���o�ȀU���2��G�Y�,�!n�� ����:��m(m�,9[^�=B=w:���/��:���E2�qO|�xPL�5�a�ӟ���y��hȝ�Lj�M��8TYLb{j��[f�%��&t�.k�y�fLpN��Q�T#����_����̙�����F�eq�Ze:sg��ԓ�&�-��@����.b9�ݖ�6�3;W.����H��k�^�_F ���of��$�`��Y���e@-�Oa�z�| �yX+��<�Iء@`x��א��30���s��}.*��|XZ���2أO1}{2���d��epF.��r��S���mB��l_|�>|>�a�c܃;�A�h�IT��c���>��m:��ݕ68^�c�!9�48��@�y�Q�À���>�� }�����0�=e�C�hu���qȭh���Έ�Q�w��ωf�:�רsp��z�pCN[����ʛX��Ap�u���~d����a��t#v�K$O43��z��]u��y���u�Ru+��{q(�I�W(�:�(Q�!p���6%���&�O�,��DOgT,��Le�C�6�^F 3�!)[�:�t�k�⋍#[{�ⳝ!�tu"�18�eҧ���L+�41.D�f�_��ϐ��l�[���m.�3��c@y����J;�Q�������+P�A��l� ����>t`p��C������6.T�\�"a_9h�A;�h�(g��`d��h����Qn�S ݖ�(`#;��:�@Ĭ�w��ݦ�bns���V�Wd@۱jj2�g�s����:��FI��82�{�:�����o�@�@x1��T�4*���q�A��a� ��������1`���d`|��A�/����ݬ��G�`d��`3�s�X���6#�����>A����3����B0-��#)�\[���WyO�P��C0�ʀ3+��E}�G�|���mѨ��1�����,=��8��MڢQ�n@9'k�X �xPAgtC���O#�Y�(����8�1��$�WM�q��YmbFnj���u��c��6�?s*mb����Y�t���,��"��8�#��Lĺi@"%��yv+]�s�6r�:������d�9�o�a0ي������秭��-����g|o="F���18�=��0����g�=zxaȀm�`F�����!��,�* ��Ȁ,0����yv�u; \S9��|���#.�g�9�x��'a@e���Y�W0x��H]3L��:���&�d�GP��O0��wzRཥ�$��Aijˀ����፳G����,��s���Ͼng ��"�:0y!F�=�Cm�gt��-�2���>l���dP�L?}}8ꀴ�0Ѕ�75�!��;20@�����1�����W5���\�-���k�� xxv�v��)V0xwz}��<qZ����[�7h���eiѠ�D}������xo �� {}9+Z:;�ǻ� �Y�=O�l�^�p�J��g����gm$f# ˺��ړ��l�g O ܆�#k��6�p/hgh48����vJ�a��j(�;/a�vPf��Q���N:[p�6b�g��13���ف��ɀ��c`�mp�u��W�,������� ����j��0`�Slc��m ��2��DRˠ����,Jod��� 2�I2�u����D��=2�̩���X-�O"f�$ǃ��yl���cW+NVzX��:p�Ĝ�{_�h�����{W=0�Ik�m�`��������ޞ�i3���.-� ��e�K�X+J��c@Lv<d��l�.)�����G��n��袶��~{G؞��.���~�9�����u��`����ನ)���d�ד�h���p �O���x�[t�`0����/UJDgf�UҦ�Ü)A\�$O��M@atZ0:��`<��o�I9k��k����ka�.��)����Jzč�����M�N�k)�18|���i��{�f2CZ���q����@<c�sH�d��px��f.�2��_�m���C�g��y W��3����9%����B�ttv�xf32`v"�ge<2 Z���Qek&�ٓ� �3`E�3���v%�wa@G��Y� Ȁ�0��`@Ļ���2`�b/�L�'�_�0��|ob@��:��X�~d��1P��B�~=�^����r��ї���>�뀁G�O `������={�[,=��F����2V ���:��:�R&�,��E�$މL2h����'�-u��>2D�:d�=�7�L�>��@���m'�q{[�F[$�2?;u�^2(9�3Ƞ�}�A����Ձ�v}&{mQl��~&�O�E��K��yX�ʨ�b���%��l��/��Zw�"#�>��nW����O��ဴ��W�í�U6�Ϊ��E˫���O������&jw�^���� Zm����#�v��X2u4Az|�-��Sf��x7������E�l�up�v�����6�1n`���w8K��.0��08��`� ���y�8ϐ�Ƹ��r��ˀ繁A��&��::����ʗmOyd@�m2`n�1��Ȁ�f����Y��9ýz<�����3�Q{��}��:��:�D� ֭Ƽ���`ԁ�P�i�xv���Y���B�d�l�s2p彎! u�����č:0�pz��}o��/��6�>?��WuP<��ʊڢ��`@��}:x�s ו����Q����A�`@�d��y�������&�0�=h���b�x.t�)�A����u����y��2Eb�es�\z�U4��,�t~�^ �M��[��kGp~�9V�w��0�h,��p�[���ۼL�K��!� 6?f�E��jþ`����m�Ť�m�e�a�|:�q��\.�o�� c� �Ϙm����3�dY�|�=�ߡI�+�`��+]�Pp�,pI��aH�តP�.M~��k��/�y�+TVUw�̜Y�R�]�����獈�7��]���`S��ed�i�6�Ce6P�6���iN*c6ܞ:[b��zym�g��]�%�[��y����y�K\,*�ZɀȲ0�2�x3����Y��n�fpگ*��I���������`����Gߗt�,��b\c���#��3��;r��ࣿ<F���"��5��BL���p��6�w��h�#�*ցÕ�-1 �g�E�n��� ��D�Pl��y�InDxT���8��������p���ٳ#Q8��l��[jF�-Z�i�T=�S� ��:�m���#��FvN�#�ڗmQJv{l^�L:�~���T�a�X�z��.� �l{S��k���q\��Ki�4�T�8���dJ�Td��߾�k65�S�,�ş?����a6���i=G�E{�osҚiR�^�4#���X^ ����0i����2]�N^�6�'`3p���_��0 �z5�f�v��s� '��A���1�ޯ0xf��L~�ki�������tjW��\�eȞs�d�ÕbSQ��z�U�����\c��0�"��u���t@]���<�6)$ ����9̀w�l���nP.3�,��~��;��?g�Z3`�`ԁp\ɀsÀ�^��>yn��h�C.�,��#�`�N���l�YS�Jx4g[�@u��x�+�5 �f���(m�p��Y|�:����g+��-��`�H�rE4�0�^^�Eǿ���!fp|>T�m�o�/<z%�I nք�c�0�Yκ\!�C&N���(���Z�^5��@lJ�� ��v̙:�rXhX�qA�r�dÜ#��� MZ�k�$~����Զ.g�&O�\�<|Rc6ȳ�=_�]� �X��$7�N=dv�䦗a��`�`J�5|/!�F�ڥ��%^��%�i|q��m���b0�݂���Y!a��.2�}��]�ӹ�_ˀ�'d�(W�su�Xx��=�k:0�R��f��5�ifh?�Q1�DoX0�f�xV0��J�AɀQ�`�J^(/���Udpz:V�$Ǯ�^ǡ���纰|}3؟���0%�)��t�W�|oQl����N�U0�쓽��NR/�i��"Fܟm�)m�;�4�Q��l�\N��eN�e�.��ZWf�H���Դ�r���c�Eo�A�E�Q)�&�Vr{^��+t;{���aU�3�y4��#!����Uʻ��{_ s�+FIJ� %=!�Q����F3�:6~ f�VC�6�S�Ȫz��ǩx�PW���k6�;:���ZC�Ȁs���|^3pݾ��x(�-2pݥ c#��m�`6���T?��)c�!�%�:%"���0`�]2�;'̀{������:hr���� �<�(7�ߥ0��h�`7=X0�;�b�yJ��u�3��͕a��4���c(2�虰,�>>F$�K:o����]b�3p�������F=Q���ύ�m���͂�t��Ka���������=1yY���DL�1BY��T�4t3�/��q�]^��� T\��MChj�<�� ���V���ݝ��\�]{?��D?6�;Z8�2��逧��C��ȍ:1Ԑ��S6:��\wـp��aνS�Az�r�䞆�9��C���7�M��(�%·��R��V�m��k��ƣ�W-c�a�_\�^��{t�������d���f0))u�&/v��58Gd��K�Se|w��FU��%=��Jo�6�P�{X5�Cp�%�[:ൕ1Y1�%ƙ��t�e`����#���Rf��9_���z<�YV�cEB$Ҿ�<"B0`Z�l�X�Wi�5�s�0��6L����N�Cs�o�Jp�mQ���x3�� $��-bdi�̀sG|>�����d`pyu@������ۢRlp4k�J[D�v�=HI�%�v��5����y��"C�]���K���aM�����稖���M �<���lrl���hWq�]�sN�8�op`1�{ T��&�}�ڇ����͐�)W�ZA�el�y}�����]��C�(��9����"=/�SOZ|E�����Z�<�q��W�f`��p�3�o3�>���4ԚR��9��Fw����3|�a�o2��<$m0��A�T��*p��s�gdhf,�JL5,0�)D6.u��&\���>2�LK: ����:t�[:�^ 3�ep����4�1F��t@c��Bn����h.>͞M0`ڭ�7�Cu�l�k7�<�U�"��se�Ϳ>D��)p_�E�d� ���2��3`: �$*��o[����̀N��Nj��騃k��w��n��ͯ��t�t���r}�,������/��iڇ(�ī�!�){ר��P�,�L��{ʮ��-��"\�yqH���F����!_r^ܬ�@J]�$=}� �0 �$�:,d����N�S#Ze��>߫�I��Qu�O�1�a���E���J�c�͵� (�B=�v��a>&2p�D���{`04Y0���iU J������V2������:��Y(f��<���=B�2�_ҁXf`p �8��s��+����%��A�D�ey:,&�u�Nu�熢%����� <=��=�ܩ|��d�������H���\�`�4 G�1ם՜�ݶh�unwZ�����q��r��7ڢ��M!<�lQ���y������R�>���߳-����Z{�����3QO��@C o���^z��҇�/�-T �V�a^�18G�m�c�]�L�x�v(���r�'���ؐ�M��8�-�!�5d���O�um��L��\�Jb�8�5�GX@��=U��>�;������~��!�Z�q���9D�qw�Vsޑ��P��{$K���و2�W�"�U q�٫�ì�0~��a0��i����ϔ"��T�0&f���ui^�v���6�Hd@�z�"2���Ā����1`C�h�4 gA38��3C�Y3�s23�_�O��i��mgx_�z�T�:���u�Rl�2�3(up�Iʤ1�-���w9p0%�h���E�G"��l�w�v��d�����~���F..��ؘ�%��7�Fo;�ྲྀ(�-Ug�vv�Sk�nƽL��U< ���- "π���um:��\��%[V;���*�_6T���$���; �b*�8/�RɃ��y'6z+M�̖9ҹ3��U�by����`c;�܊�c�����7s����y=��ȉc�a�K��d��dɀ��-��v�nx%�_2�K��t̬.1`�Vc���5��}�� �{Qf��^�,��i=�C��2r{�&2�i���`G��Ё�%1��ơ2~{�J�t�Ġ�z��N�����������F���W�Q��*:��K4dbsIf�+��m��H :T�p����4�@����)��q����{���Kdp�{��I �u�˶up��ix��@�(��.���8w����康=H�`��,֭��w~��C�[$���:mVr�T�=�sE;��8��}�t~ϋ�Ͷ�yG����f�^�sۅ�g��Li�G���.�xM�S�d���4sG�]����%����.,lzp���Eƅp.�³$=uA��CɂA�,��(��`\Wf�q,�O 2���b���ސ�e��L0~{��+�W��570�̀2���{B�epz�W_� 2�8�GKlD/��ׇ�;2x֔�i�\�Wky���X�R43�~�e6{v�c������|~�\�v�T��53`��,���|�=��݃�3<z_S��_h�t�up�{�o�Ģ87�Ag���?�+g�l��k�����"���7ڢ�k n����V�����E�������)��4R��� Vm���A� -kts��qm�P�%��LyQh���{:f��f�Q��m��":vx��<_���e�y�;�vj�� �eH��!�����$_|�(�d��n1 n�k0�b�`�}���j�l���.ԋTK��kh�"�KiM/��Z�n�:��|f �����c�|�\�C��-��-��D�Ȁ}�A`�pܥ�:`��:`DrA�Q��dL�I�ޤ����䋶���[���%[D��ӻ�S��l�i��<5F#l�폿8m/:p�����:�����o\�E�վ��ƽ�+3��}.�"�mA[�a�.�"L�������=0�]r������֚�D�)�>5�\�e���S�N�</���5���&��u0AU�ƋP[��QEb��]�B�t|�;�t>�N��\���jʂ�!���F�Og�v��ɟ�쩓�&���\֖x��U�U:y�tm.[��K����`��J`�L�{���K���P�x��n��#�y�{�48�m]2�yJl\[ɝ���Ȁ�<m�+v�pӅ�����v�T���T]��G�ŷ��:��l�.1�Zf������6�]U2���W�����ڋ��:��W���u�[gW�!�Gtp�=p�S��"�t�=��r.1`��-z^�s�:��wUɀ�=Ddz��p}3`���H<�}e4�K:0N�r���jSYWl��A��7p�!�n~q��45�Gmi'���E(LƇ�VK���ĩ�ã>��{��R��ݲ� �*r�����k�M����w����%��o���������Z�fImR���$f���e���\��8�`���$��{0�aZb��,x�_b���N��܋�o�W3�u/� ��]������7�R�C�`m���mLe�� ϛW28�(c;�Iw�+��p��2�ԁ����|?W�3�>J�<ݴ���J��l�`u�͏��16��_:؈)��=8��vZ�p�RAF�W��-b$q�yj�����_�`.�u�:��w����Ȁa��.u�� ��mʅ'���BN�IaF?l��{��V�� �J�o4�j���f!lx=�^)u���oO^V������<��H��������<v9u���N�Û�|���^����Y��{N��UϹ%�����,Xz;m��&��-���T@���Z�28�ᓿ8��[��P%DJ^�%�/2V�m�gS���(��5�E��p������g�<��0z�w0�p/����05x�%Qϩ*u�gP�X�)l�w�`mK:���LL����̀��Pk��u�z��b�5"��㪼����#��[��-"qR��öȍВ̠�F��E4�p�M��Wڢ��d@�&4��0�f`��K:07�͠�E�3Z�A���kۃD�8����Ԓ�Z��N��c��HoS�X��Q'�;Ǒ(S�Vl��l\�3:{Z�"�i���OO�< �)�dZ�-���+�b�HSm�Nx>�q�C��.�)M�=h�ιF��k������0�2�/�{��qO���Pzt/��s^�p>O�OW�-1໒�i���38U��P!�%��j5�b�5`�ۜ���q��h:W2H|/��[p|d���3��D�j��'<?0(u�FK�^b@ e3�G��X��S�Ȁ} �V��� ��=�.1���f0�W���p�px��O3�7��5[��S6o�E��~\�E�q����h$g��#=�A��$ ��淶E�;3���A�Ē-��J�W���%[D�}A�D��"!��`�[��7kт7)�3��ѻ ����<����l�{���T��忽��r���ߴT�8G��S�iu��*x�ʆX�biu��F�c�{-X�R���_I=D%���t;)[�w�:/��[���{��`�Ru��ٷ0�|�VI�Tg���N�c�I!h�̾rzG�î2�"�P� �5�� p3`��ح�A���/�:�^�\���{`�n1��czE�mgcu@�Y�ήБ��-�1:�;�A�c�5[d�����)����/٢g_3P�.1 K�m��[�ϫd@Dj3�[�E��+u��p�7�L�wI%��~�����Kڢ4�86�1�9��!HS<�{3 �_��x���b���|A�W��B�B��=T�oR�Q1�[[d�U��$Ck�����<����E�d�1,kܐ��o���=W\�waZ�|ں�5�%�z_����0�`���x� �}����xӐ8�Eɀz���R��0����@s��]�`��sXWH�Ü����K��p94��kLm�����A^D|��'3�_f� t�F?���`���Z2����FВ�.��<��ۚ^S�e���Ӧ��^FR�t4�y�������8���b�:�#����D[t��u�{d`�����Qm [� ྲྀ[�f8W�H��o99��� ���°�˛¦�m�&y��9�z3�!V�&� #�sj.�����"�*�D`�,zxX4����M�<�i�_��)�{�-v�����u��{�x�X��͋���-0�,�u���csOǾ��0�,�)�^��y����Am�+��|m~@���D���K0`*�b'ݣ���ҁ0c������t�U��{�W�Gi�F ̙k,8W�3M�� ���h��@�sK3pnp�"(�/1@��X��}xte�x�Xc*P4��^$�|il�9�3�M5i1�:0�wۢ�A�ɓ�l�\�==��~p����� ������[Lo}��\7W���E�Pi�|������xE�Ř�4=�Ӥs �]��b�έ���µ��w���F"Uڽp9�f��-�/�!���^I yNxm��Z�L�gu���}�|��F3M9F�f��̀z�ƀ�C-�!-2�w��B�.L���1F4�`̀�=�8�d@��70X=�+3�|�G����KꀸTo��_���k����82��n�c�>�絏K:�^̀ }�]2@��po���>QG�m�Eu3�>`�+3H4r���H� ��%����M�U���ö� ����FY����"�� �3́9F�P���m�H�aҰ�~���W��g����34����T8/а��Ӥjqǽ���"Z���ʹ�ܗ���|VjF�l�*�w> ����P�ֹ�}k�ִ����X�2�^��qZ��Z ��0�\�r�s�/�`��*`("��~I��M�%0MP�%|g��#z�f�1Q�e��@�+2�:���"���f �; ���e�-�SWT30����}C,��,u��u�a/u�A]ҁ���\���\2�+2�z�ޟ�y�=�G�"@�� ug^��n&�����Eډ��=�;2�`��(�H���\9v���+��aX8�f`��o��-�)ʤs&�VB�M8��A��bb��=�<��'�Z�p�g*�h���u�}�S�|����h��%o/�[ں��[�>�H7���)i�攇:{�8�=������_b���]��9�p_ߟ��ׁ�`����<K�P���*z�%��Bsd@x0�����bp:��6��q�-���(f�d���z�яa@yo�d�Ȥd����A�2Zp Kr��BQ����v���Kdݎ����$��=�)��~.�(� ���I�4L'�džE���j�F��|N^)����q~��1|�ڭ�u�N�a$�9�mn��t��,���+��2h.x��^�3�Tw���)�QI{8?;A��g�H�`@�)2`�q�v�+60`��=Ld�[o�oŀ��2`�Oo�Ϥ�W�e-�F%��fS}Y�P�9T��\.��M0^`@/�=0ܑ�u��Pf�Q���(�l�a�8��I������w�Ȁ��{٢�����Wv�;'��z����S�s�H���u1��Z:_=���� �n�~?�@�K����5ni�P�v����TtM�x���Ӳ&<T�m�M?�hp��8�x�)�=��������`1u�:G��9��T��������jd ������.��kf��G��PG�X��3��:���b��`�շҁ#5��Ā2�{4^g��u�����̀�Iɀ����%{�H�{��Lx��u�}��+�X��dp�m��l�h�{������e1������we���0\�������xc���O*�Q�z��AՒ6I�o �\UJ��x����v���0=0:Z��{��6��k8�ԡ\�V��MҋP��tR �az���g�[o�)}A�����j�`pJ1G�����b�̷M��[�E�k�iU���U2�̀)�E<�*3��/��D���-ܭ�/�"�-����!-#x��A�#����Ed�;�u�"�J����2�9���Vm�Q�Kv효<]��d?�8�\��}���F�w]�w�p�cB��� ��{����E}��y~~� �ު'Ay(WrSF-�1���&�>ϛ�z�X*�Kf�B�X����n5���C�V@F_s����`��� �d�����鰮�a:V�`P�:�C�l�����k��O�%���V����Ā\K!-1�e�d���C�ZJ��s�#آ�uZ����⋇}fhs��P/���-���B5�8�U�]�@��暊]����H��� rmQ��a��/�fVC�H�9\z�[��qr�� o �=?X��z���O-obی�v��`�C��z���+y'm䡗�-�W��'��~��T������O�=N�:{�,�d�3�B���0�,f���2�^b����A^W:8=m�kح��u�/(,��v|IW;jx��9n?1c�7�@�T�"j�L䋯�4���n�-�WS��M���I-���nՋC�S����h�4�p+�®$Zq�&�}�]�}�su�,�5$��k��\w�O��SK�̕M�Me�[ �;2 R�Oߌ�O0*Z`@C�n�Me��z+F�� ��o�R��Ȁ�/1�+�>�3��\0�G�N��Ϣ���õp~�"��� �.�zW�rOj={��鍆��&�t�mQe����A,W��!��R8 W`�!�_�9@�����s������b�j��E�X���!�g�E{A*�������1=�b�2'�<��Տ����3��t@�G�V���o=�d�4��J,���I�D̀�0�%�0�8*tL�=�d�>�iه��|��^�w�?�P-� ٷ�Rq�7 ��^�f��J[E��|b�M�)y�U��>�m�vd��� ���b떔S� �2�˨��Q*�����X/N��;' �]e���R���� �u#�m���|~2���'�k0��o�1\d�>Vf@o1�|��f�G�AbWd��6�ˮב�n}А��71|ʕ4hվ����P�G��O/�d�tIb��- �9����q�M�ë�(8�7�p<@NI�(zh�8M�4������I^1af�5�$��g�ƚ��n���4�N�Wf��Ofl���C�V��M�f@��EU2�f�g�'r��S1���) ��QS�.��yCI<)��x����o����6_<̫���Ε�_�8�0�X�sF�s�Ge՚{+��SŸ��i��8e�7�Ɠ��Z�^s�E�"`�G�z�cAJ�����Nn�/��'���"(�PN���2�+,2�!�Z:8i�O���E�nn�]�M��Ci�NV��v��Ɨ|�a�SS�m;�3,����rp$G���_�a��;j������;^�y:�������V�=��ױ:�o[�: �������������P���T��Q��ȫN��ߛ�>[��~2���2��~/�y��{L~$��:���hIEND�B`�assets/uikit-themes/master-pinewood-lake/_import.less000064400000072524151666572410017075 0ustar00@internal-fonts: 'Amatic+SC:700|Cabin+Sketch:700|Roboto+Mono:400,400i,600'; @global-font-family: 'Roboto Mono'; @global-font-size: 15px; @global-line-height: 1.73; // 26px @global-2xlarge-font-size: 60px; @global-xlarge-font-size: 50px; @global-large-font-size: 30px; @global-medium-font-size: 18px; @global-small-font-size: 13px; @global-primary-font-family: 'Amatic SC'; @global-primary-font-weight: 700; @global-primary-text-transform: uppercase; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: 'Roboto Mono'; @global-secondary-font-weight: 400; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: 0.2px; @global-secondary-font-style: inherit; @global-color: #322A22; @global-emphasis-color: #22201E; @global-muted-color: #9a9895; @global-link-color: #D8522C; @global-link-hover-color: #E68138; @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #F7F7F6; @global-primary-background: #D8522C; @global-secondary-background: #22201E; @global-success-background: #7fb147; @global-warning-background: #F8BA59; @global-danger-background: #E95858; @global-border-width: 1px; @global-border: rgba(172,163,156,0.3); @global-border-radius: 0; @global-small-box-shadow: 2px 4px 16px rgba(34,32,30,0.12); @global-medium-box-shadow: 2px 12px 32px rgba(34,32,30,0.06); @global-large-box-shadow: 2px 18px 48px rgba(34,32,30,0.06); @global-xlarge-box-shadow: 2px 26px 56px rgba(34,32,30,0.06); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 20px; @global-small-gutter: 10px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-body-font-weight: 400; @base-strong-font-weight: 700; @base-code-color: @global-emphasis-color; @base-em-color: @global-emphasis-color; @base-h3-font-size: 40px; @base-h4-font-size: 30px; @base-blockquote-line-height: 1.7; @base-blockquote-footer-font-size: @global-font-size; @base-selection-background: darken(@global-primary-background, 2%); @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 2px; @base-pre-padding: 10px; @base-pre-background: @global-background; @base-h4-font-family: @global-primary-font-family; @base-h4-font-weight: 400; @base-h4-text-transform: @global-primary-text-transform; @base-h4-letter-spacing: @global-primary-letter-spacing; @base-h4-font-style: @global-primary-font-style; @base-h5-text-transform: uppercase; @base-h5-letter-spacing: 1.7px; @base-h6-text-transform: uppercase; @base-h6-letter-spacing: 1.7px; @base-blockquote-font-family: @global-font-family; @base-blockquote-font-weight: inherit; @base-blockquote-text-transform: inherit; @base-blockquote-letter-spacing: inherit; @base-blockquote-footer-font-family: inherit; @base-blockquote-footer-font-weight: inherit; @base-code-border-width: @global-border-width; @base-code-border: @global-border; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @inverse-base-link-hover-color: fade(@inverse-global-color, 70%); @inverse-base-code-border: @inverse-global-border; @inverse-link-heading-hover-color: @inverse-global-color; @heading-medium-font-size-l: 70px; @heading-xlarge-font-size-l: 120px; @heading-divider-border-width: ~'calc(0.5px + 0.02em)'; @heading-bullet-top: ~'calc(50% - @{heading-bullet-height})'; @heading-bullet-border: @global-primary-background; @heading-line-width: 80px; @heading-line-border-width: ~'calc(2px + 0.02em)'; @heading-line-border: @global-primary-background; @heading-small-font-family: 'Cabin Sketch'; @heading-medium-font-family: 'Cabin Sketch'; @heading-large-font-family: 'Cabin Sketch'; @heading-xlarge-font-family: 'Cabin Sketch'; @heading-2xlarge-font-family: 'Cabin Sketch'; @heading-3xlarge-font-family: 'Cabin Sketch'; @inverse-heading-bullet-border: @inverse-global-primary-background; @inverse-heading-line-border: @inverse-global-primary-background; @divider-icon-width: 70px; @divider-icon-height: 42px; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-pinewood-lake/images/divider-icon.svg"; @divider-small-width: 115px; @divider-small-border-width: 3px; @divider-small-border: @global-primary-background; @internal-divider-small-image: "../../../../uikit-themes/master-pinewood-lake/images/divider-small.svg"; @inverse-divider-icon-color: rgba(255, 255, 255, 0.59); @inverse-divider-small-border: @divider-small-border; @list-bullet-icon-color: @global-secondary-background; @internal-list-bullet-image: "../../../../uikit-themes/master-pinewood-lake/images/list-bullet.svg"; @description-list-term-font-size: @global-small-font-size; @description-list-term-text-transform: uppercase; @description-list-term-letter-spacing: 1.7px; @table-row-active-background: fade(@global-secondary-background, 7%); @table-striped-row-background: @table-row-active-background; @table-header-cell-font-family: @global-secondary-font-family; @table-header-cell-letter-spacing: 2px; @table-header-cell-font-style: @global-secondary-font-style; @icon-link-color: @global-emphasis-color; @icon-link-hover-color: fade(@icon-link-color, 50%); @icon-link-active-color: fade(@icon-link-color, 80%); @icon-button-background: transparent; @icon-button-color: @global-emphasis-color; @icon-button-hover-background: @global-secondary-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: @global-primary-background; @icon-button-active-color: fade(@icon-button-hover-color, 80%); @icon-button-border-width: 2px; @icon-button-border: @icon-button-color; @icon-button-hover-border: @icon-button-hover-background; @icon-button-active-border: @icon-button-active-background; @inverse-icon-link-color: @inverse-global-emphasis-color; @inverse-icon-link-active-color: @inverse-global-muted-color; @inverse-icon-button-background: transparent; @inverse-icon-button-color: @inverse-global-emphasis-color; @inverse-icon-button-hover-background: @inverse-global-primary-background; @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-background: fade(@inverse-icon-button-hover-background, 90%); @inverse-icon-button-active-color: fade(@inverse-icon-button-hover-color, 80%); @inverse-icon-button-border: @inverse-global-primary-background; @form-range-track-height: 2px; @form-range-track-focus-background: fade(@form-range-thumb-border, 50%); @form-range-thumb-height: 12px; @form-range-thumb-background: @global-background; @form-range-thumb-border-width: 2px; @form-range-thumb-border: @global-primary-background; @form-range-thumb-box-shadow: 2px 2px 5px 0 rgba(34, 32, 30, 0.2); @form-background: transparent; @form-focus-background: transparent; @form-disabled-background: fade(@global-secondary-background, 3%); @form-danger-color: @form-color; @form-success-color: @form-color; @form-radio-background: transparent; @form-radio-checked-background: @global-secondary-background; @form-radio-checked-focus-background: lighten(@global-secondary-background, 6%); @form-stacked-margin-bottom: 5px; @form-label-font-size: @global-small-font-size; @form-label-text-transform: uppercase; @form-label-letter-spacing: 1.7px; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-secondary-background; @form-disabled-border: fade(@global-secondary-background, 10%); @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @form-focus-border; @form-radio-border-width: @global-border-width; @form-radio-border: fade(@global-secondary-background, 20%); @form-radio-focus-border: @global-secondary-background; @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @inverse-global-emphasis-color; @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: @inverse-global-emphasis-color; @button-large-font-size: 16px; @button-default-background: transparent; @button-default-hover-background: transparent; @button-default-hover-color: fade(@button-default-color, 70%); @button-default-active-background: transparent; @button-default-active-color: @button-default-color; @button-primary-background: transparent; @button-primary-color: @global-link-color; @button-primary-hover-background: transparent; @button-primary-hover-color: darken(@button-primary-color, 15%); @button-primary-active-background: transparent; @button-primary-active-color: lighten(@button-primary-color, 10%); @button-secondary-background: transparent; @button-secondary-color: @global-emphasis-color; @button-secondary-hover-background: transparent; @button-secondary-hover-color: fade(@button-default-color, 70%); @button-secondary-active-background: transparent; @button-secondary-active-color: @button-secondary-color; @button-danger-background: transparent; @button-danger-color: @global-danger-background; @button-danger-hover-background: transparent; @button-danger-hover-color: darken(@button-danger-color, 15%); @button-danger-active-background: transparent; @button-danger-active-color: darken(@button-danger-color, 25%); @button-disabled-background: fade(@global-secondary-background, 3%); @button-disabled-color: #c0c0c0; @button-link-hover-color: fade(@button-link-color, 70%); @button-text-border: @global-secondary-background; @button-border-width: 3px; @button-default-border: fade(@global-secondary-background, 18%); @button-default-hover-border: fade(@global-secondary-background, 26%); @button-default-active-border: @global-secondary-background; @button-primary-border: @global-primary-background; @button-primary-hover-border: darken(@global-primary-background, 12%); @button-primary-active-border: lighten(@global-primary-background, 10%); @button-secondary-border: @global-secondary-background; @button-secondary-hover-border: lighten(@global-secondary-background, 30%); @button-secondary-active-border: @global-secondary-background; @button-danger-border: @global-danger-background; @button-danger-hover-border: darken(@global-danger-background, 15%); @button-danger-active-border: darken(@global-danger-background, 30%); @button-disabled-border: fade(@global-secondary-background, 10%); @internal-button-border-image-slice: 3; @internal-button-border-image-width: 3px; @internal-button-border-image-repeat: round; @internal-button-default-border-image: "../../../../uikit-themes/master-pinewood-lake/images/button-border-image.svg"; @internal-button-primary-border-image: "../../../../uikit-themes/master-pinewood-lake/images/button-border-image.svg"; @internal-button-secondary-border-image: "../../../../uikit-themes/master-pinewood-lake/images/button-border-image.svg"; @internal-button-danger-border-image: "../../../../uikit-themes/master-pinewood-lake/images/button-border-image.svg"; @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-emphasis-color; @inverse-button-default-hover-background: transparent; @inverse-button-default-hover-color: @inverse-global-color; @inverse-button-default-active-background: transparent; @inverse-button-default-active-color: @inverse-global-muted-color; @inverse-button-primary-background: transparent; @inverse-button-primary-color: @inverse-global-emphasis-color; @inverse-button-primary-hover-background: transparent; @inverse-button-primary-hover-color: @inverse-global-color; @inverse-button-primary-active-background: transparent; @inverse-button-primary-active-color: @inverse-global-muted-color; @inverse-button-secondary-background: transparent; @inverse-button-secondary-color: @inverse-global-emphasis-color; @inverse-button-secondary-hover-background: transparent; @inverse-button-secondary-hover-color: @inverse-global-color; @inverse-button-secondary-active-background: transparent; @inverse-button-secondary-active-color: @inverse-global-muted-color; @inverse-button-text-hover-color: @inverse-global-color; @inverse-button-link-hover-color: @inverse-global-color; @inverse-button-default-border: @inverse-global-muted-color; @inverse-button-default-hover-border: @inverse-global-emphasis-color; @inverse-button-default-active-border: @inverse-global-color; @inverse-button-primary-border: @inverse-global-muted-color; @inverse-button-primary-hover-border: @inverse-global-emphasis-color; @inverse-button-primary-active-border: @inverse-global-color; @inverse-button-secondary-border: @inverse-global-muted-color; @inverse-button-secondary-hover-border: @inverse-global-emphasis-color; @inverse-button-secondary-active-border: @inverse-global-color; @progress-background: fade(@global-secondary-background, 4%); @internal-section-default-image: "../../master-pinewood-lake/images/background-texture.png"; @internal-section-muted-image: "../../master-pinewood-lake/images/background-texture.png"; @internal-section-primary-image: "../../master-pinewood-lake/images/background-texture.png"; @internal-section-secondary-image: "../../master-pinewood-lake/images/background-texture.png"; @internal-section-default-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image.svg"; @internal-section-muted-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image.svg"; @internal-section-primary-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image.svg"; @internal-section-secondary-overlap-image: "../../../../uikit-themes/master-pinewood-lake/images/section-overlap-image.svg"; @internal-section-overlap-height: 44px; @container-xsmall-max-width: 800px; @container-small-max-width: 1000px; @container-large-max-width: 1360px; @internal-tile-default-image: "../../master-pinewood-lake/images/background-texture.png"; @internal-tile-muted-image: "../../master-pinewood-lake/images/background-texture.png"; @internal-tile-primary-image: "../../master-pinewood-lake/images/background-texture.png"; @internal-tile-secondary-image: "../../master-pinewood-lake/images/background-texture.png"; @card-badge-height: 26px; @card-badge-padding-horizontal: 8px; @card-badge-font-size: 12px; @card-hover-background: rgba(255,255,255,0.2); @card-default-background: #f2f2f2; @card-default-hover-background: #ececec; @card-primary-hover-background: spin(lighten(@card-primary-background, 4%), 6%); @card-secondary-hover-background: lighten(@card-secondary-background, 7%); @card-badge-text-transform: uppercase; @card-badge-letter-spacing: 1px; @internal-card-default-gradient: url("../../uikit-themes/master-pinewood-lake/images/background-texture.png"); @internal-card-primary-gradient: url("../../uikit-themes/master-pinewood-lake/images/background-texture.png"); @internal-card-secondary-gradient: url("../../uikit-themes/master-pinewood-lake/images/background-texture.png"); @card-hover-box-shadow: @global-small-box-shadow; @card-primary-box-shadow: 8px 20px 45px fade(@global-primary-background, 12%); @card-primary-hover-box-shadow: 2px 4px 16px fade(@global-primary-background, 20%); @card-secondary-box-shadow: @global-xlarge-box-shadow; @card-secondary-hover-box-shadow: @global-small-box-shadow; @marker-hover-color: fade(@global-inverse-color, 60%); @inverse-marker-hover-color: fade(@global-color, 50%); @totop-color: @global-emphasis-color; @totop-hover-color: fadeout(@global-emphasis-color, 40%); @totop-active-color: @global-muted-color; @alert-background: transparent; @alert-primary-background: @alert-background; @alert-primary-color: darken(@global-primary-background, 5%); @alert-success-background: @alert-background; @alert-success-color: darken(@global-success-background, 5%); @alert-warning-background: @alert-background; @alert-warning-color: darken(@global-warning-background, 5%); @alert-danger-background: @alert-background; @alert-danger-color: darken(@global-danger-background, 5%); @alert-border-width: 2px; @alert-border: @global-secondary-background; @alert-primary-border: @global-primary-background; @alert-success-border: @global-success-background; @alert-warning-border: @global-warning-background; @alert-danger-border: @global-danger-background; @alert-box-shadow: @global-medium-box-shadow; @badge-font-weight: 600; @badge-font-family: @global-font-family; @label-padding-vertical: 3px; @label-padding-horizontal: 9px; @label-background: @global-secondary-background; @label-font-size: 11px; @label-text-transform: uppercase; @label-letter-spacing: 1px; @inverse-label-background: transparent; @inverse-label-color: @global-inverse-color; @inverse-label-border: @inverse-global-primary-background; @overlay-padding-horizontal: @global-medium-gutter; @overlay-padding-vertical: @global-medium-gutter; @article-meta-text-transform: uppercase; @article-meta-letter-spacing: 1.7px; @comment-title-font-size: 22px; @comment-meta-text-transform: uppercase; @comment-meta-letter-spacing: 2px; @search-default-background: transparent; @search-navbar-background: transparent; @search-navbar-focus-background: transparent; @search-medium-padding-horizontal: 20px; @search-medium-font-size: @global-medium-font-size; @search-large-padding-horizontal: 30px; @search-large-font-size: @global-xlarge-font-size; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-muted-color; @search-large-font-family: @global-primary-font-family; @search-large-font-weight: @global-primary-font-weight; @search-large-text-transform: @global-primary-text-transform; @search-large-letter-spacing: @global-primary-letter-spacing; @search-large-font-style: @global-primary-font-style; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-secondary-background; @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: @global-secondary-background; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-secondary-background; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-secondary-background; @inverse-search-default-background: transparent; @inverse-search-navbar-background: transparent; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-border: fade(@inverse-global-primary-background, 20%); @inverse-search-navbar-focus-border: @inverse-global-primary-background; @inverse-search-medium-border: fade(@inverse-global-primary-background, 20%); @inverse-search-medium-focus-border: @inverse-global-primary-background; @inverse-search-large-border: fade(@inverse-global-primary-background, 20%); @inverse-search-large-focus-border: @inverse-global-primary-background; @accordion-title-font-size: 26px; @accordion-title-hover-color: @global-link-color; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @inverse-accordion-title-color: rgba(255, 255, 255, 0.73); @inverse-accordion-title-hover-color: @global-inverse-color; @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-primary-background; @dropdown-nav-subtitle-font-size: 12px; @dropdown-nav-header-color: @global-primary-background; @dropdown-nav-item-padding-vertical: 6px; @dropdown-nav-divider-margin-horizontal: -@dropdown-padding; @dropdown-nav-font-size: @global-small-font-size; @dropdown-nav-text-transform: uppercase; @dropdown-nav-letter-spacing: 1.7px; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-nav-subtitle-text-transform: none; @dropdown-nav-subtitle-letter-spacing: normal; @dropdown-box-shadow: @global-small-box-shadow; @dropbar-padding-top: 30px; @dropbar-background: lighten(@global-secondary-background, 7%); @dropbar-color-mode: light; @modal-dialog-box-shadow: @global-xlarge-box-shadow; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-overlay-background: fade(@global-background, 70%); @offcanvas-bar-box-shadow: @global-medium-box-shadow; @notification-message-background: @global-background; @notification-message-box-shadow: @global-xlarge-box-shadow; @tooltip-background: @global-secondary-background; @tooltip-font-size: 14px; @countdown-item-font-family: @global-secondary-font-family; @countdown-item-font-weight: @global-secondary-font-weight; @countdown-item-text-transform: @global-secondary-text-transform; @countdown-item-letter-spacing: 0; @countdown-item-font-style: @global-secondary-font-style; @nav-item-padding-vertical: 8px; @nav-divider-margin-vertical: 15px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-link-color; @nav-default-item-active-color: @global-primary-background; @nav-default-subtitle-font-size: 12px; @nav-default-header-color: @global-muted-color; @nav-primary-line-height: 1.4; @nav-primary-item-color: @global-color; @nav-primary-item-hover-color: @global-link-color; @nav-primary-item-active-color: @global-primary-background; @nav-primary-subtitle-font-size: @global-font-size; @nav-primary-header-color: @global-muted-color; @nav-primary-sublist-item-color: @global-color; @nav-primary-sublist-item-hover-color: @global-link-color; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-subtitle-active-color: @global-primary-background; @nav-secondary-sublist-font-size: @global-font-size; @nav-medium-font-size-l: 72px; @nav-large-font-size: 61px; @nav-large-font-size-m: @nav-medium-font-size-l; @nav-xlarge-font-size: @nav-large-font-size-m; @nav-xlarge-font-size-l: 120px; @nav-dividers-margin-top: 7px; @nav-secondary-margin-top: 10px; @nav-header-letter-spacing: 1.7px; @nav-default-font-weight: 400; @nav-default-subtitle-color: @global-muted-color; @nav-default-subtitle-line-height: 1.4; @nav-primary-font-weight: 400; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-text-transform: none; @nav-secondary-letter-spacing: normal; @inverse-nav-primary-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @inverse-nav-primary-subtitle-color: @inverse-global-muted-color; @navbar-background: @global-background; @navbar-nav-gap: 0px; @navbar-nav-item-padding-horizontal: 15px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-nav-item-onclick-color: @global-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-muted-color; @navbar-subtitle-font-size: 12px; @navbar-dropdown-width: 240px; @navbar-dropdown-padding: 20px; @navbar-dropdown-background: lighten(@global-secondary-background, 7%); @navbar-dropdown-color: fade(@global-inverse-color, 70%); @navbar-dropdown-color-mode: light; @navbar-dropdown-dropbar-margin: -1px; @navbar-dropdown-dropbar-shift-margin: @navbar-nav-item-padding-horizontal; @navbar-dropdown-dropbar-padding-top: 30px; @navbar-dropdown-dropbar-large-shift-margin: @navbar-nav-item-padding-horizontal; @navbar-dropdown-nav-item-color: fade(@global-inverse-color, 70%); @navbar-dropdown-nav-item-hover-color: @global-link-color; @navbar-dropdown-nav-item-active-color: @global-inverse-color; @navbar-dropdown-nav-subtitle-font-size: 12px; @navbar-dropdown-nav-header-color: fade(@global-inverse-color, 50%); @navbar-dropdown-nav-divider-border: fade(@global-inverse-color, 10%); @navbar-dropdown-nav-sublist-item-color: fade(@global-inverse-color, 50%); @navbar-dropdown-nav-sublist-item-hover-color: fade(@global-inverse-color, 70%); @navbar-dropdown-nav-sublist-item-active-color: @global-inverse-color; @navbar-nav-gap-m: 0px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-height: 0; @navbar-nav-item-line-background: @global-primary-background; @navbar-nav-item-line-hover-height: 3px; @navbar-nav-item-line-onclick-height: 3px; @navbar-nav-item-line-onclick-background: transparent; @navbar-nav-item-line-active-height: 3px; @navbar-primary-nav-item-padding-horizontal: 20px; @navbar-primary-nav-item-padding-horizontal-m: 20px; @navbar-nav-item-letter-spacing: 0; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-line-height: 16px; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-font-size: @global-small-font-size; @navbar-dropdown-nav-text-transform: uppercase; @navbar-dropdown-nav-letter-spacing: 1px; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-dropdown-nav-subtitle-text-transform: none; @navbar-dropdown-nav-subtitle-letter-spacing: normal; @navbar-mode: border-always; @navbar-mode-border-vertical: partial; @navbar-border-width: @global-border-width; @navbar-border: fade(@global-secondary-background, 10%); @navbar-sticky-box-shadow: @global-small-box-shadow; @navbar-dropdown-box-shadow: @global-medium-box-shadow; @inverse-navbar-nav-item-color: @inverse-global-color; @inverse-navbar-nav-item-onclick-color: @inverse-global-color; @inverse-navbar-nav-item-line-background: @inverse-global-color; @inverse-navbar-nav-item-line-hover-background: @inverse-global-color; @inverse-navbar-nav-item-line-onclick-background: @inverse-global-color; @inverse-navbar-border: rgba(255, 255, 255, 0.24); @subnav-item-color: @global-color; @subnav-item-hover-color: fade(@subnav-item-color, 70%); @subnav-item-active-color: @global-link-color; @subnav-divider-border-height: 1em; @subnav-divider-border: fade(@global-muted-color, 50%); @subnav-pill-item-padding-vertical: 7px; @subnav-pill-item-padding-horizontal: 14px; @subnav-pill-item-hover-background: fade(@global-secondary-background, 7%); @subnav-pill-item-active-box-shadow: @global-small-box-shadow; @inverse-subnav-item-color: @inverse-global-color; @inverse-subnav-item-hover-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-hover-color: @inverse-global-emphasis-color; @breadcrumb-divider-margin-horizontal: 10px; @breadcrumb-divider-color: fade(@global-muted-color, 50%); @breadcrumb-item-text-transform: uppercase; @breadcrumb-item-letter-spacing: 1.7px; @pagination-margin-horizontal: 20px; @pagination-item-padding-vertical: 2px; @pagination-item-padding-horizontal: 4px; @pagination-item-color: @global-color; @pagination-item-hover-color: @global-link-color; @pagination-item-active-color: @global-emphasis-color; @pagination-item-min-width: 16px; @pagination-item-height: 33px; @pagination-item-border-mode: -bottom; @pagination-item-border-width: 3px; @pagination-item-hover-border: @global-primary-background; @pagination-item-active-border: @global-primary-background; @inverse-pagination-item-hover-color: @inverse-global-emphasis-color; @inverse-pagination-item-hover-border: @inverse-global-border; @inverse-pagination-item-active-border: @inverse-global-primary-background; @tab-item-color: @global-color; @tab-item-hover-color: fade(@tab-item-color, 70%); @tab-item-line-height: 30px; @tab-item-font-weight: 400; @tab-border: transparent; @tab-item-border-width: 3px; @tab-item-hover-border: fade(@global-secondary-background, 7%); @inverse-tab-item-hover-color: @inverse-global-muted-color; @inverse-tab-border: transparent; @inverse-tab-item-hover-border: @inverse-global-border; @dotnav-item-width: 14px; @dotnav-item-background: transparent; @dotnav-item-hover-background: transparent; @dotnav-item-onclick-background: transparent; @dotnav-item-active-background: transparent; @dotnav-item-border-width: 2px; @dotnav-item-border: fade(@global-secondary-background, 30%); @dotnav-item-hover-border: @global-secondary-background; @dotnav-item-onclick-border: @global-primary-background; @dotnav-item-active-border: @global-primary-background; @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-hover-background: transparent; @inverse-dotnav-item-onclick-background: transparent; @inverse-dotnav-item-active-background: transparent; @inverse-dotnav-item-border: fade(@inverse-global-emphasis-color, 30%); @inverse-dotnav-item-hover-border: @inverse-global-emphasis-color; @inverse-dotnav-item-onclick-border: @inverse-global-primary-background; @inverse-dotnav-item-active-border: @inverse-global-primary-background; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-muted-color; @iconnav-item-active-color: @global-primary-background; @text-lead-font-size: @global-medium-font-size; @text-large-font-size: @global-medium-font-size; @text-lead-font-family: @global-font-family; @text-lead-font-weight: normal; @text-lead-text-transform: inherit; @text-lead-letter-spacing: inherit; @text-lead-font-style: inherit; @text-meta-text-transform: uppercase; @text-meta-letter-spacing: 2px; @internal-text-background-color-gradient: linear-gradient(90deg, lighten(@global-primary-background, 5%) 0%, darken(spin(@global-primary-background, 7%), 10%) 100%); @logo-font-size: 40px; @logo-font-family: @global-primary-font-family; @inverse-global-muted-color: fade(@global-inverse-color, 45%); @inverse-global-inverse-color: @global-emphasis-color; @inverse-global-border: fade(@global-inverse-color, 10%);assets/uikit-themes/master-lilian/_import.less000064400000040250151666572410015576 0ustar00@internal-fonts: 'Abhaya+Libre|Open+Sans:300,400'; @global-font-family: 'Open Sans'; @global-font-size: 15px; @global-line-height: 1.86; @global-2xlarge-font-size: 42px; @global-xlarge-font-size: 36px; @global-large-font-size: 28px; @global-medium-font-size: 22px; @global-small-font-size: 12px; @global-primary-font-family: 'Abhaya Libre'; @global-primary-font-weight: inherit; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: 'Open Sans'; @global-secondary-font-weight: normal; @global-secondary-text-transform: uppercase; @global-secondary-letter-spacing: 2px; @global-secondary-font-style: inherit; @global-color: #5c5e5d; @global-emphasis-color: #3b3d3c; @global-muted-color: #b1b1b1; @global-link-color: #d0bbb6; @global-link-hover-color: #b6a6a2; @global-inverse-color: #ffffff; @global-background: #ffffff; @global-muted-background: #f5f5f5; @global-primary-background: #d0bbb6; @global-secondary-background: #575757; @global-danger-background: #ad5555; @global-success-background: #a7bd93; @global-warning-background: #e1ab7a; @global-border-width: 1px; @global-border: #eeeeee; @global-border-radius: 0; @global-small-box-shadow: 1px 1px 20px rgba(88, 88, 88, 0.1); @global-medium-box-shadow: 1px 2px 40px rgba(88, 88, 88, 0.1); @global-large-box-shadow: 1px 4px 50px rgba(88, 88, 88, 0.2); @global-xlarge-box-shadow: 1px 8px 80px rgba(88, 88, 88, 0.2); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 45px; @global-control-small-height: 35px; @global-control-large-height: 50px; @global-z-index: 1000; @base-body-font-weight: 300; @base-ins-background: @global-muted-background; @base-mark-background: @global-muted-background; @base-blockquote-font-size: 24px; @base-blockquote-font-style: normal; @base-pre-padding: @global-margin; @base-pre-background: @global-background; @base-h4-font-family: @global-primary-font-family; @base-h4-font-weight: normal; @base-h4-text-transform: @global-primary-text-transform; @base-h4-letter-spacing: @global-primary-letter-spacing; @base-h4-font-style: @global-primary-font-style; @base-blockquote-color: @global-primary-background; @base-blockquote-footer-letter-spacing: @global-secondary-letter-spacing; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @inverse-base-link-color: fade(@global-inverse-color, 60%); @heading-small-font-size-m: 48px; @heading-2xlarge-font-size-l: 160px; @heading-small-line-height: 1.1; @heading-medium-line-height: 1; @heading-large-line-height: 1; @heading-xlarge-line-height: 0.9; @heading-2xlarge-line-height: 0.9; @heading-divider-border-width: ~'calc(0.2px + 0.04em)'; @list-striped-background: #f9f9f9; @description-list-term-font-size: @global-small-font-size; @table-row-active-background: fade(@global-primary-background, 20%); @table-striped-row-background: #f9f9f9; @icon-link-hover-color: @global-primary-background; @icon-link-active-color: darken(@global-primary-background, 15%); @icon-button-background: transparent; @icon-button-hover-color: @global-primary-background; @icon-button-active-color: darken(@icon-button-hover-color, 15%); @icon-button-border-width: @global-border-width; @icon-button-border: @global-border; @icon-button-hover-border: @global-primary-background; @icon-button-active-border: darken(@icon-button-hover-border, 15%); @inverse-icon-button-background: transparent; @inverse-icon-button-hover-background: transparent; @inverse-icon-button-hover-color: @inverse-global-primary-background; @inverse-icon-button-active-background: transparent; @inverse-icon-button-active-color: fade(@inverse-icon-button-hover-color, 70%); @inverse-icon-button-border: @inverse-global-border; @inverse-icon-button-hover-border: @inverse-global-primary-background; @inverse-icon-button-active-border: fade(@inverse-icon-button-hover-border, 70%); @form-range-track-height: @global-border-width; @form-range-track-background: @global-border; @form-range-track-focus-background: @global-primary-background; @form-range-thumb-height: 11px; @form-range-thumb-background: @global-primary-background; @form-background: fade(@global-background, 70%); @form-focus-background: fade(@global-background, 80%); @form-disabled-background: fade(@global-muted-background, 50%); @form-large-font-size: 18px; @form-radio-background: transparent; @form-radio-focus-background: @global-primary-background; @form-radio-checked-focus-background: @global-primary-background; @form-radio-disabled-background: fade(@global-muted-background, 50%); @form-label-font-size: @global-small-font-size; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-radio-border-width: @global-border-width; @form-radio-border: @global-primary-background; @form-focus-border: @global-primary-background; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @inverse-global-primary-background; @button-font-size: @global-small-font-size; @button-small-font-size: 11px; @button-large-font-size: @global-small-font-size; @button-padding-horizontal: 20px; @button-large-padding-horizontal: @global-gutter; @button-default-background: transparent; @button-default-color: @global-primary-background; @button-default-hover-background: transparent; @button-default-hover-color: darken(@button-default-color, 10%); @button-default-active-background: transparent; @button-default-active-color: darken(@button-default-color, 15%); @button-link-color: @global-primary-background; @button-link-hover-color: darken(@button-link-color, 10%); @button-border-width: @global-border-width; @button-default-border: @global-primary-background; @button-default-hover-border: darken(@button-default-border, 5%); @button-default-active-border: darken(@button-default-border, 10%); @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-muted-color; @inverse-button-default-hover-color: @global-inverse-color; @inverse-button-default-active-color: @global-inverse-color; @inverse-button-link-color: @inverse-global-muted-color; @inverse-button-link-hover-color: @global-inverse-color; @inverse-button-default-border: @inverse-global-muted-color; @inverse-button-default-hover-border: @global-inverse-color; @inverse-button-default-active-border: @global-inverse-color; @card-badge-height: 26px; @card-badge-padding-horizontal: 8px; @card-badge-font-size: 11px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-title-color: @global-primary-background; @card-default-hover-background: @card-default-background; @card-hover-box-shadow: @global-small-box-shadow; @card-default-box-shadow: @global-small-box-shadow; @card-default-hover-box-shadow: @global-large-box-shadow; @marker-background: @global-primary-background; @totop-hover-color: @global-primary-background; @totop-active-color: darken(@global-primary-background, 10%); @alert-background: lighten(@global-muted-background, 2%); @alert-primary-background: lighten(@global-primary-background, 15%); @alert-primary-color: darken(@global-primary-background, 20%); @alert-success-background: lighten(@global-success-background, 22%); @alert-success-color: darken(@global-success-background, 15%); @alert-warning-background: lighten(@global-warning-background, 22%); @alert-warning-color: darken(@global-warning-background, 10%); @label-padding-vertical: 1px; @label-padding-horizontal: 7px; @label-font-size: 11px; @label-letter-spacing: 1px; @inverse-article-meta-color: rgba(255, 255, 255, 0.8); @comment-title-font-size: 18px; @comment-meta-font-size: 11px; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-default-icon-padding: 12px; @search-navbar-padding-horizontal: 15px; @search-medium-padding-horizontal: 15px; @search-toggle-hover-color: @global-link-color; @search-navbar-font-size: 13px; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-primary-background; @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: @global-primary-background; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-primary-background; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-primary-background; @inverse-search-icon-color: rgba(255, 255, 255, 0.7); @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-medium-background: @inverse-global-muted-background; @inverse-search-large-background: @inverse-global-muted-background; @inverse-search-toggle-color: rgba(59, 61, 60, 0.7); @inverse-search-toggle-hover-color: @global-emphasis-color; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-border: @inverse-global-border; @inverse-search-navbar-focus-border: @inverse-global-border; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @inverse-global-border; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @inverse-global-border; @accordion-title-font-size: 18px; @accordion-title-hover-color: @global-link-color; @accordion-icon-color: @global-primary-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 7px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 7px)'; @dropdown-nav-subtitle-font-size: 12px; @dropdown-nav-font-size: 13px; @dropdown-nav-subtitle-text-transform: none; @dropdown-nav-subtitle-letter-spacing: normal; @dropdown-nav-subtitle-line-height: 1.5; @dropbar-padding-top: 0; @dropbar-padding-bottom: 25px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 15px 15px -10px fade(@global-secondary-background, 5%); @dropbar-bottom-box-shadow: 0 -15px 15px -10px fade(@global-secondary-background, 5%); @dropbar-left-box-shadow: 15px 0 15px -10px fade(@global-secondary-background, 5%); @dropbar-right-box-shadow: -15px 0 15px -10px fade(@global-secondary-background, 5%); @slider-container-margin-top: -46px; @slider-container-margin-bottom: -54px; @slider-container-margin-left: -49px; @slider-container-margin-right: -51px; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @notification-message-background: #f9f9f9; @tooltip-border-radius: 0; @countdown-number-font-size: 2.4rem; @countdown-number-font-size-s: 2.6rem; @countdown-number-font-size-m: 3.2rem; @countdown-separator-line-height: 1.04; @countdown-separator-font-size: 1.8461rem; @countdown-separator-font-size-m: 2.4615rem; @countdown-item-font-family: @global-primary-font-family; @countdown-label-font-size: 10px; @countdown-label-text-transform: @global-secondary-text-transform; @countdown-label-letter-spacing: @global-secondary-letter-spacing; @countdown-label-font-size-s: 11px; @countdown-label-letter-spacing-s: 1px; @nav-default-font-size: @global-small-font-size; @nav-default-item-hover-color: @global-link-color; @nav-default-item-active-color: @global-color; @nav-default-subtitle-font-size: 13px; @nav-default-sublist-item-hover-color: @global-link-color; @nav-primary-line-height: 1.2; @nav-primary-item-hover-color: @global-link-color; @nav-primary-item-active-color: @global-color; @nav-primary-subtitle-font-size: @global-font-size; @nav-secondary-font-size: @global-small-font-size; @nav-secondary-subtitle-font-size: 13px; @nav-secondary-subtitle-color: @global-color; @nav-xlarge-line-height: 0.9; @nav-dividers-margin-top: 7px; @nav-secondary-margin-top: 2px; @nav-secondary-item-padding-vertical: 15px; @nav-secondary-item-padding-horizontal: 15px; @nav-secondary-item-hover-background: fade(@global-muted-background, 50%); @nav-secondary-item-active-background: @nav-secondary-item-hover-background; @nav-default-subtitle-font-weight: 300; @nav-default-subtitle-text-transform: none; @nav-default-subtitle-letter-spacing: normal; @nav-default-subtitle-line-height: 1.5; @nav-primary-subtitle-font-weight: normal; @nav-primary-subtitle-text-transform: none; @nav-primary-subtitle-letter-spacing: normal; @nav-primary-subtitle-line-height: 1.2; @nav-secondary-subtitle-font-weight: 300; @nav-secondary-subtitle-text-transform: none; @nav-secondary-subtitle-letter-spacing: normal; @nav-secondary-subtitle-line-height: 1.5; @inverse-nav-secondary-item-hover-background: @inverse-global-muted-background; @inverse-nav-secondary-item-active-background: @inverse-nav-secondary-item-hover-background; @navbar-background: @global-background; @navbar-gap: 20px; @navbar-nav-gap: 20px; @navbar-nav-item-height: 100px; @navbar-nav-item-font-size: @global-small-font-size; @navbar-nav-item-hover-color: @global-link-color; @navbar-nav-item-onclick-color: @global-link-hover-color; @navbar-nav-item-active-color: @global-color; @navbar-toggle-hover-color: @global-link-color; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 20px; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-dropbar-padding-top: 25px; @navbar-dropdown-dropbar-padding-bottom: (@navbar-dropdown-dropbar-padding-top + 20px); @navbar-dropdown-dropbar-large-padding-bottom: (@navbar-dropdown-dropbar-large-padding-top + 20px); @navbar-dropdown-nav-item-hover-color: @global-link-color; @navbar-dropdown-nav-item-active-color: darken(@global-primary-background, 15%); @navbar-dropdown-nav-sublist-item-hover-color: @global-link-color; @navbar-nav-item-padding-horizontal-m: 0; @navbar-subtitle-text-transform: none; @navbar-subtitle-letter-spacing: normal; @navbar-subtitle-line-height: 1.5; @navbar-primary-nav-item-font-size: @global-font-size; @navbar-dropdown-nav-font-size: @global-small-font-size; @navbar-dropdown-nav-subtitle-text-transform: none; @navbar-dropdown-nav-subtitle-letter-spacing: normal; @navbar-dropdown-nav-subtitle-line-height: 1.5; @navbar-dropdown-box-shadow: 1px 1px 15px 0 rgba(88, 88, 88, 0.1); @inverse-navbar-item-color: @global-emphasis-color; @subnav-item-hover-color: @global-link-color; @subnav-item-active-color: darken(@global-primary-background, 10%); @subnav-item-font-size: @global-small-font-size; @breadcrumb-item-font-size: 11px; @breadcrumb-divider: "|"; @pagination-item-padding-vertical: 0; @tab-item-active-color: darken(@global-primary-background, 10%); @tab-item-font-size: @global-small-font-size; @dotnav-margin-horizontal: 16px; @dotnav-item-width: 12px; @dotnav-item-background: transparent; @dotnav-item-hover-background: fade(@global-primary-background, 60%); @dotnav-item-onclick-background: @global-primary-background; @dotnav-item-active-background: @global-primary-background; @dotnav-item-border-width: 1px; @dotnav-item-border: @global-primary-background; @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-border: @global-inverse-color; @inverse-dotnav-item-active-border: @global-inverse-color; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-hover-color: @global-link-color; @text-lead-font-size: 20px; @text-lead-color: @global-color; @text-meta-font-size: 13px; @text-large-font-size: 18px; @text-muted-color: #adadad; @text-primary-color: darken(@global-primary-background, 10%); @text-lead-font-family: @global-font-family; @box-shadow-bottom-background: rgba(92, 94, 93, 0.4); @logo-font-size: 26px; @logo-font-family: @global-primary-font-family; @inverse-global-color: fade(@global-inverse-color, 90%); @inverse-global-muted-color: fade(@global-inverse-color, 70%);assets/uikit-themes/master-lilian/styles/white-lilac.less000064400000003344151666572410017655 0ustar00// // Global // @global-color: #686868; @global-emphasis-color: #464646; @global-link-color: #cbbac4; @global-link-hover-color: #beb1b9; @global-danger-background: #a16e77; @global-muted-background: #f9f3f4; @global-primary-background: #d6c6cf; @global-secondary-background: #4d4d4d; @global-success-background: #abb095; @global-warning-background: #dfb99d; // // Alert // @alert-primary-color: darken(@global-primary-background, 10%); @alert-warning-color: darken(@global-warning-background, 10%); @alert-danger-color: darken(@global-danger-background, 10%); // // Article // @article-meta-color: #bfbabf; // // Badge // @inverse-badge-color: @global-emphasis-color; // // Button // @button-disabled-background: #f5f5f5; // // Comment // @comment-primary-background: #fbfbfb; // // Dropdown // @dropdown-nav-item-color: #b3a7ae; @dropdown-nav-sublist-item-color: #b3a7ae; // // Form // @form-disabled-background: desaturate(fade(@global-muted-background, 45%), 20%); @form-radio-background: desaturate(@global-muted-background, 20%); @form-radio-disabled-background: desaturate(fade(@global-muted-background, 45%), 20%); // // Nav // @nav-default-item-active-color: #968690; @nav-primary-item-active-color: #968690; // // Overlay // @overlay-default-background: rgba(249, 243, 244, 0.8); // // Subnav // @subnav-item-active-color: #968690; // // Tab // @tab-item-active-border: #968690; @tab-item-active-color: #968690; // // Table // @table-striped-row-background: rgba(249, 243, 244, 0.6); @table-hover-row-background: @global-muted-background; // // Woocommerce // @woocommerce-rating-background-color: desaturate(darken(@global-muted-background, 5%), 25%); assets/uikit-themes/master-lilian/styles/light-salmon.less000064400000003500151666572410020043 0ustar00// // Global // @global-color: #606469; @global-emphasis-color: #474b4f; @global-link-color: @global-primary-background; @global-link-hover-color: #ca7e6d; @global-muted-color: #b09792; @global-background: #f5f3f2; @global-danger-background: #c43652; @global-muted-background: #ebe6e3; @global-primary-background: #e59e8e; @global-secondary-background: #3a404c; @global-success-background: #476f66; @global-warning-background: #ff9d67; @global-border: #e6e6e6; // // Alert // @alert-primary-background: #f3dad3; @alert-success-background: #cedcd7; @alert-danger-background: #f4e1e4; // // Badge // @inverse-badge-color: @global-emphasis-color; // // Base // @internal-base-body-mode: overlay; @internal-base-body-overlay-image: "../../master-lilian/images/section-background-noise.png"; @internal-base-body-overlay-opacity: 0.5; // // Card // @inverse-card-badge-color: @global-emphasis-color; // // Breadcrumb // @breadcrumb-item-disabled-color: #cfcfcf; // // Form Range // @form-range-track-background: darken(#eac0b6, 5%); @form-range-track-focus-background: #eac0b6; // // Form // @form-radio-background: desaturate(darken(@global-muted-background, 2%), 4%); // // Heading // @heading-divider-border: @global-muted-background; @heading-bullet-border: @global-muted-background; @heading-line-border: @global-muted-background; // // List // @list-striped-background: #f0eeed; // // Offcanvas // @offcanvas-bar-background: #f9f9f9; // // Pagination // @pagination-item-disabled-color: #cfcfcf; // // Subnav // @subnav-item-disabled-color: #cfcfcf; // // Tab // @tab-item-disabled-color: #cfcfcf; // // Table // @table-row-active-background: rgba(229, 158, 142, 0.1); @table-striped-row-background: #f0eeed; assets/uikit-themes/master-lilian/styles/white-pink.less000064400000005703151666572410017533 0ustar00// // Global // @global-color: #414a50; @global-emphasis-color: #36424b; @global-link-color: darken(@global-primary-background, 10%); @global-muted-color: #9f9f9f; @global-link-hover-color: darken(@global-primary-background, 25%); @global-danger-background: #d25451; @global-muted-background: #f9f4f4; @global-primary-background: #edc7c6; @global-secondary-background: #33393d; @global-success-background: #527d63; @global-warning-background: #e3bc74; // // Alert // @alert-background: desaturate(lighten(@global-muted-background, 1%), 15%); @alert-primary-background: #fdf4f3; @alert-success-background: #e8f0eb; @alert-warning-background: #fff7ea; @alert-danger-background: #ffebeb; // // Base // @base-blockquote-footer-color: #b1b1b1; // // Breadcrumb // @breadcrumb-item-disabled-color: #dadada; // // Button // @button-disabled-background: lighten(@alert-background, 1%); @button-link-color: darken(@global-primary-background, 5%); // // Comment // @comment-primary-background: desaturate(lighten(@global-muted-background, 1%), 15%); // // Dropdown // @dropdown-background: #fff7f8; // // Form // @form-disabled-background: desaturate(fade(@global-muted-background, 45%), 20%); @form-radio-background: desaturate(darken(@global-muted-background, 2%), 20%); @form-radio-disabled-background: desaturate(fade(@global-muted-background, 45%), 20%); // // Icon // @icon-link-color: @global-primary-background; @icon-link-hover-color: @global-link-hover-color; @icon-button-border: @global-primary-background; @icon-button-color: @global-primary-background; @icon-button-hover-border: @global-link-hover-color; @icon-button-hover-color: @global-link-hover-color; // // Nav // @nav-default-item-hover-color: @global-secondary-background; @nav-default-item-active-color: darken(@global-secondary-background, 10%); @nav-default-sublist-item-hover-color: @global-secondary-background; @nav-primary-item-hover-color: @global-secondary-background; @nav-primary-item-active-color: darken(@global-secondary-background, 10%); // // Offcanvas // @offcanvas-bar-background: @global-secondary-background; @offcanvas-bar-color-mode: light; // // Pagination // @pagination-item-disabled-color: #dadada; // // Subnav // @subnav-item-hover-color: @global-secondary-background; @subnav-item-active-color: darken(@global-secondary-background, 10%); @subnav-item-disabled-color: #dadada; @subnav-pill-item-hover-background: #f1f1f1; // // Tab // @tab-item-active-border: darken(@global-secondary-background, 10%); @tab-item-active-color: darken(@global-secondary-background, 10%); @tab-item-disabled-color: #dadada; // // Table // @table-striped-row-background: #f3f6f9; // // Totop // @totop-color: #899ba9; // // Woocommerce // @woocommerce-rating-background-color: desaturate(darken(@global-muted-background, 8%), 20%); assets/uikit-themes/master-lilian/styles/white-blue.less000064400000004023151666572410017513 0ustar00// // Global // @global-color: #5d5f61; @global-emphasis-color: #444a51; @global-link-color: darken(@global-primary-background, 10%); @global-muted-color: #a6adb1; @global-link-hover-color: darken(@global-primary-background, 20%); @global-danger-background: #e3abab; @global-primary-background: #abd1e3; @global-secondary-background: #26353c; @global-success-background: #a5ba81; @global-warning-background: #e3c598; // // Alert // @alert-warning-background: lighten(@global-warning-background, 17%); @alert-danger-background: lighten(@global-danger-background, 15%); // // Article // @article-meta-color: #9aa8b0; // // Breadcrumb // @breadcrumb-item-active-color: @global-secondary-background; @breadcrumb-item-disabled-color: #e2e2e2; // // Comment // @comment-primary-background: lighten(@global-muted-background, 2%); // // Form Range // @form-range-track-focus-background: @global-primary-background; // // Form // @form-radio-background: darken(@global-muted-background, 1%); // // Nav // @nav-default-item-active-color: @global-secondary-background; @nav-primary-item-active-color: @global-secondary-background; // // Navbar // @navbar-nav-item-active-color: @global-secondary-background; // // Pagination // @pagination-item-disabled-color: #e2e2e2; // // Subnav // @subnav-item-hover-color: #697e88; @subnav-item-active-color: @global-secondary-background; @subnav-item-disabled-color: #e2e2e2; @subnav-pill-item-hover-color: #697e88; @subnav-pill-item-onclick-color: darken(@global-secondary-background, 10%); // // Tab // @tab-item-hover-color: #697e88; @tab-item-active-border: @global-secondary-background; @tab-item-active-color: @global-secondary-background; @tab-item-disabled-color: #e2e2e2; // // Table // @table-row-active-background: #f1f1f1; // // Totop // @totop-hover-color: #697e88; @totop-active-color: @global-secondary-background; // // Woocommerce // @woocommerce-rating-background-color: darken(@global-muted-background, 6%); assets/uikit-themes/master-lilian/styles/white-green.less000064400000004605151666572410017672 0ustar00// // Global // @global-color: #a6a6a6; @global-emphasis-color: #595c5e; @global-link-color: #aec3a8; @global-muted-color: lighten(@global-color, 10%); @global-link-hover-color: #8d9f88; @global-danger-background: #915555; @global-muted-background: #f9f9f9; @global-primary-background: #c3d2bf; @global-secondary-background: #585b5c; @global-success-background: #779e86; @global-warning-background: #cda989; // // Alert // @alert-background: @global-muted-background; // // Badge // @inverse-badge-color: @global-emphasis-color; // // Breadcrumb // @breadcrumb-item-hover-color: @global-emphasis-color; @breadcrumb-item-active-color: darken(@global-color, 20%); @breadcrumb-item-disabled-color: #d1d1d1; // // Dropdown // @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; // // Form // @form-disabled-background: @global-muted-background; @form-radio-background: darken(@global-muted-background, 2%); @form-radio-disabled-background: @global-muted-background; // // Iconnav // @iconnav-item-hover-color: @global-emphasis-color; @iconnav-item-active-color: darken(@global-color, 20%); // // Link // @link-text-hover-color: @global-emphasis-color; // // Nav // @nav-default-item-active-color: darken(@global-color, 20%); @nav-default-sublist-item-hover-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-emphasis-color; @nav-primary-item-active-color: darken(@global-color, 20%); @nav-primary-sublist-item-hover-color: @global-emphasis-color; // // Navbar // @navbar-nav-item-active-color: darken(@global-color, 20%); @navbar-dropdown-nav-item-active-color: darken(@global-color, 20%); // // Offcanvas // @offcanvas-bar-background: @global-emphasis-color; @offcanvas-bar-color-mode: light; // // Pagination // @pagination-item-hover-color: @global-emphasis-color; @pagination-item-active-color: darken(@global-color, 20%); @pagination-item-disabled-color: #d1d1d1; // // Subnav // @subnav-item-active-color: darken(@global-color, 20%); @subnav-item-disabled-color: #d1d1d1; // // Tab // @tab-item-active-border: darken(@global-color, 20%); @tab-item-active-color: darken(@global-color, 20%); @tab-item-disabled-color: #d1d1d1; // // Text // @text-meta-link-hover-color: @global-emphasis-color; assets/uikit-themes/master-lilian/images/section-background-noise.png000064400000027707151666572410022120 0ustar00�PNG IHDRddp�T/�IDATx\�Q�-!�� �@6Ё��:��ݹ�sv�`�KB�v�Zca� 30��m�i����0c�ٱ�:�K�\רM�����,M�NL��u7�C�b{�c(�-����a����@�ϳ�>�a���6�G�s(�=�_d���'=qL�#R��o�2���1PK����sqqp�)H쪳 ��t�Ѭ{�0n��\�g�����D���K��pg��J�@y�2qQ��Gbw�(�ś�!a�H#0�ޙ�ݴ�M�Yj�VQ�c��8�0��&�0�%�w���!V�Tz�}$�ӭ�WU3m�qj/�e����Aᱸɡݾ�@���equ�����u}�d� *1ԚV��J�\X��mz�[E<�@����S�S��e���*.4��hl_�r#�AN&Q�m�c�����n��o�V�*�ܯq�w����XQ~6��J=X��+�D�aP�_t*��̥[Tb&>�W}�x����{�Ҳ`��3��:V�).�����p����|o���:�Q�*��g|����ȸ�}����Z��4�ݧ��]F�\R�ط�Kbb�*�㋟o|j��|��|J#P��(���+F�@>������y_���n3�%�r�l �x�ŘۓY\�F7�xX���o����M�����8���ǽŵ �bR1�̬o��/�]!�����d�3MQ��Qܽj�=}�{f>�b��-���-.TM��`��o�ޙt*Q�+y7%pK�g+��Jg���r a�2|ɚ»�x�\�(�t��|��p ~��?K-~��šg��6L�u��o�T5\�o��j������tq�95j+oCdL�p|[q����BÃ�UI�E��~�L���(�%��}sDN�Ie�S�дfx�������~ZT&nq��+���!��� �;1�o�mJ}a��ANr=o�7�J$uV�!U��iSݝ���E}��Z�T6�H������N�㛭�^�y~������]�1�L��4�#iV ��!��q��q��q�q���>~غS��ӭ �6�)����5G %�sUCŜ�l��DEsCŚ~���5g�w����v�I M��@���?�_��4�|�x=dJ�i�#f��l��I钁l��_#8�s;�d�f�M��_��-�Ɗ��#f��ҽ��ʆ�:��Nsȃ��cQ����H ��;�C��)r���=-���$�?Y.�v��'J�"B�9�/]�KHρ�Y�� .�V�/��t�߉��!�����ZD��7{���j"$���� �������k�z�:�]=X�/Ќ�-eA��+B�u!�n8C\x�>Ʌ�=HWT�m����\Mm�O4��K*C��rj*��]ϥ��S�m�[0id��˞���Q<?,�t��0,4��67�C>6R��U����T��2PID�;U�&a����wE&C�R��2@�Gg~tT!f���@�X��"b#�����39C��i�]�9�[��A�k�ivT;�]B�� m�?=_ \�Fgx���4G=�g�i\��o��_sh��Ѥ��?f,��2�{�{=��� �Q���D�N�nЬ^kAM]�I�-�iӅ����3秶�E�zj��`R��x���&���a���= �i� �$�Iz���i���zG���'"8�t\+���!ڒ�Ťs�TJ务s� 9�*A2oko쐴H�ץ؍�V������AP%�y6mg��r�d���WJ �3Qk�"�j^4g(��ss��N�4M�r��)heJ�F���{O�.zT���sɵt0Lޮ�gÉ�������5R���R�r=�Ơ(�.W�1�+SА|&9� ���Z�t��D�� z�e^Gw�C �uJ��`����������&]�� ��oVK�mC��A��ty *(��^�N�I'"��K��n��[�O�ł�gl� �G˥��:�~� �G�u���+���"���(����L�0�KTڲw"%ȷk�J�k��j��0 �@�S|J�dg#H�@ �$�k������*�P\���-��{��g�MJA��Z��� gJ�����ߞ1�h���W�/^t]�~��X�o�^0V��E"J�!o�s�5���;%�ܒ��0߀G�%.!;.��)�Ұs��;qdk42'F�ůq6:z]�.�{I=tl����@��O�k�|m�o�@��4&E��8ڱ��\����h�Y#l'�m� ա߸bU}+�*\�Y�o���]~��.�uF�v�x��5"���;x/�N�f8D�D�9db���pRw{���Aq�S��:�1Ux��D�Kۿ*W��� 6!5��f�(����p�GV���,���ǔo[�:io��#�/RD�GisH��5)�P�5�ܟ�a�)Q9�L�Po /���Ω4%���0��wU�9� �=%x���G��Q�r�H��{���a��v��{���L�N�{���w��w�E`G�Ow���A���gؕ����>F�7y@�>��f��cW��k��t�v�y���p ���i۹�J��c�/��֍sTs�R���-M�9�j�!�덬r-/��E��[�>��5�5�!���%T��敖��ЂN.29�E�m8&P��\��8�|(_�y�{]��}w��U�=����MlhM�Q���,�R�+���/��u2H��/.�~�F��w��<kjV�ޛ)�K�������FN����P|����I�Z���:�ҡ��x��q��������)�sPU����`�$=��|!���֬� [e�,��b���JH3�0(ʈ bZI�}�;?��g���ڜ-#n�N_���P�\��I&']J���}�=| �⽷�I m�a�I5)�4��6����;��ж�����k��Ý*�:��p�"G=��E�q�4RFĢ/�1��_�놋*Bm,�1��ᔯɈv8B�s��0ø��gZ����ݷ�M�ʖ��U�o�q(5� .j�!���S��X#m65=�e���Y65� ��r��B�n�u��ac�O5F7&_)g I�:�J*C2�g""�'�`p��F��TS�>�wi�iT�3[�-���?�~����U� s�!�^��8[3q"�ܑ��������&e�L�\̈j?o6=W+��ka4��Fޮ������5�E�LG�z���p��>�#��0D�����Μ���Js�$�\1Lm��0��o��jo]CPS�!�I��Ӵ|�k�R鱇�o�K�ӡx`�I] �T6���`�S��i�1��ȓ��һ��ĝ��ŝ���#�J��9]g���%�{((<�e':���p��s�U�'�c$��ߟ���H)��U�N$�W�2�w�d�gbE��kp��>1:[ �: �Fl�,�J�ˌ?���{��DT����}{�B%�m���A�W��ݎ�^��dzQ�*����+��)Rrf]C�]�L�h�O���% �HQ�N8�֓��b�.�)�>��jz��eȐ���ΤR}�6��L�5����i�F���3��^����]mPmPm�ڠ����roΟ쮃A͌���J��r,�_������ �+F����a�x7��e��A����QxNE^�Ƅ�V�õ� ���F�7�4%�8y��Z���� j�G�ML�TAǜ�<�|�*�!w����3c���;���=ʻ��.4�����6W���oaVF6P����N8���rY���ڰ7 w�Ο�5��C E�zs��6O(lXU�3{9�_ �����N�����N�Y�I�d-�.�ؠ2쒂u�gY&ɹ��đrnX�����1��F$�8m�M䯕��9�i�B.���Uc�:#nVlnt7���5�;a)j>o-�l�i�p`͉�7��S�؈7�T�0��c������Ѳ�ϒ7��#B�[BM1/�oA�x�d�����, Iy�*k�-P��p<�S���u;�d���?Pz�[��bR���[bP7z4L����i�"�S �l��0&IکK(���c�i�G�q�Է��b�E�:zA�0�"-\��8R�R h��u�y�lB�}���G8&��y@C�|�e�o��� gճ�{J�|n�o,��Z����`����#9���&��u�L���`ʾĢ��"F�<Q���ſ���bl% ����&D��Z��C��t��5+�K�>�l��Qu?��f�9��<��b��R �j~#Osֲ��Z���EA��k�M�<;�(��>���r�v5`���w������%�)'`Fcھ�]Ȍj{?��p��Wu��־տ�Ũ� �V��"�s��V�\-}}�m���@1��������&�`��e����qŴ��k���k�ɸ�01���H1�<�ݛ�hY�t�"����rr̢��|QY�1��¡�C�O�.T�%�x��,Ĥ�~��A?�U�g!}�Z=�\��tqG���{v���Z�s��Z_99��qk����}N��&�=?/O���q�go�T�ޜ��U��c�s������c�=�Hβ� �Aa�v"_��63��"����O����]��zOA�gD\_��\Ϯ��v��X�z��M�T��ΰ�h�~i��f� ���T�V[��U�ǵ�0!���BhC�.R�Ht q�,3��-O��K�+����<§���"xs��?�^�"�� �I8�C��W��v�}�Ќ�� Y\��3�� uˇ�!���=aORw�w����څt֞-2�P��Z~&Sy����?�-�i�`� ��O��� �79oEg�@<�b��*��V/�᷌SE�#�* ���\�L_���/�(W�-�����T�la�*�y�pqq�J�b�����Y8���I�"^ڄ�R��&�f�Uj��Df���n�GQ�߸X��yB/�Ko%>'����Zx��C�y�Sܚ�E�ahߪ�������W���[>�A^T�z�!f+5��]X�{���$߉��~�/>`5z�%W���!y?�Tc��x��j��a5ݴ��(�vT߷z����2��������z���^��2���&�bF�yO�\����x<XjEi�ҟ@�8o�0z�=?h�rw�_��G^P�KvƼn�;��N���/v{\�)�A8��ag����J]��J�rzc����p����Fi��n��?�|�D�VKP�܌W�*_���h��v�lb1o���\}���0\���;Db���-���ܮ���jÙ��c��2��s*���FKr�2��t'�m�3���u݇<kZ<�ӭ5�=�S>�rs�x�Gی�`�t��o�ei��u���T�� ](�sn�=����^ �0��+��j��EN+X9 scY�؊LB�gLB�6@yH+e�`hW ߰ؕ�Br^9�bB`׆���H�H���_?nmI�k_���?\"����A�G8g�mE�4���Kd�y�6�w��[����q6�wf97�&�V"�\�K^��-m��4�w4F�:�¸Ʃ�W�&Ϳ(�^�.�\�c����G�݊��]��u8ց�[��c�d�E�5��T�a���u|\3�VOpts\^T�;�~��i�.��V��Jy�X�B�[�`�&��i?��Q�TН��s��.;���TB����Y�zM��{9�JC�q��e�؟���=���z$���V_V�|j ʫ��Y+��:�N}��x��h�<NE�1h��_ʒǯG��A�z�egMS�)�V�����5l�[$�<L�VJ������Ѯa��q�#?���"�F���q��nҷ2����N@����mV%�N�ݱ \�(��ބ�o4-b��\��e����y�{�*�)�3·�2b�������i�ߍS�|�����wNj�����i���6Bb��t�ʦ�ݟ�x�Φ(�!b n8���!qB2,H",bF�A��)� �� ,ۦ $2�;�!x�s���� �1ڍ#Y�C+� .O����@0����p�,5���� ����{���BO�0�f�B8��tx�Z�ퟆR���L���DXMm�#z2��⡑G�;�n�"�'v���hj�r�SY�z]nu��"�(G�W����s�b�t��Z�*W�u�Lڬ+9g�4o���o�E�����:}�'gޜ�M�|+�ٯ�V��A��� }z� !V�i�\Likq�u@�&r��ǯ�ރíXf��ﺑvG�fO����0�l�:�P'<�;}�D[/p8X��rv�iE�;�S�{@ E+3�Bp�p��T������S�۰[{X��5��� @)7:�*ȗ���VՅ��5��ר��=�C����j��~��3$Z$x�*����ނ���;��#V��l�Ws��L�z��@�ʓgo��5�o�&p������6@�s���F��QZ2R�U~�7q\B����q{'�3 )o�ս�����G�bԫ$��֦�sf{�N%�=���{�M/V/X�(�1F�8L殼�Z~7h2�>�K��?R�Y���/�pCv-$�!�@7�äP~]Fp$���=UzE� 6k�_�Y��ܣ�J����bp��g�Y��K���=͙xW�m}Yn�S���X,�iT�'���7U��A���/�� ��dOk���3� `Y�fߗ:��n�f�Z86�H�5�<FL��|fYS\ �Ƴ�Z�IB~N撐@h������].�������E�]^?�_���1"�z�6��~��x'$r�J��>nW�)8�#,��P���W2��'37�MX�f��#�6�A)���q�H�WŤW�o�����N�iX^#�TBl^\>��^���.�4�I�Q_ɠ��v��\���Y-��LaT��t�p\y�=M�h��X�/u.ڒ��������X���v�:j�S����[�����c%��t4��O����G�Y D�ߟSxM��,ú7g ��ICcy'�tS��#�Ϣ����F�E۹��sw�9z��h����k��7M�W�3M0x�D��=X�y�`#�=85�?��S{L~*�5��+�=�%����2M�������wS6rp:�L�DX3�4���҅�<c�ٺ��!cΊ�&������g����F:K ��8�V�=��~�z��,)�'�ϙ���@�"?�L�v[��2�ML�1�x���Q2t�l��'<���� ��p�g��O2�:��Q��yZA�g$��ʴ�kn(��x���B�^������M�b~��$�rAC��g��y�V�����I�n1�$|hP#8GP ��sN�%�b^X�*�)-�,��[(�ȝ��=�fs+�[Qy^��k9�EQ���q�2��Jbo吶�_��;M.0��x��<�)cϧ��w�G�A�3T���v�LQe�K�N������G��c�qR�J�nL�֖�6 _/ea5���8�����%ni���o��i��J���c�H����U''4���T������� �S�2�8��:��1I��hq��C5�9�����3v=Cr���y*��PS����5~]��������D���qAm�u�`�Ȫ|����\c�{ﻫ��͍��ߛ��M�1[� �z5�s�/��[&��/�QnX!*OsJ���W�c[y�����o�j6� �VKv��C*cdq����[��3_WH����D��@jX:c!�T���vg�oF�5�lwd���x�Y���"gzvEV�AڂQ K�4(����8��Rk�L�����u2Y�@J�!��;�CI,��=�#j���ݟE�}�M E��k�d�B; a{6�S�;M�HE��a�)�,A�x&d�������8��>�����3ۋ2��<|�|�$�1�VJ�.j���(��j$���+z*:^��1�a��g+�<E��C��r��猹�7#&t�@T��u��a�^_�0B��4%v����F�6z_�S[����p@�-(ˁ�5k���m��d�+��3��A���,�j #ǿ5�n��&�Q��py��~#o&�����y����G;��]�A���o�yA�&s#�@��<F{ �\��L�;��K�t]�d��g�t�7�bY���!9�a^��,s'^0)?J�{��oC�����0�0�k4�0���z�%~'�T�"�}�]E/��:_� ��hph[�sn��o�6�i�PxyO¸�6Z�!KI٥S��F�\�b^gD#���%J/(Zx�w�1:D⯳��1���TS#1��� H��_��Y�L�ܟ:� �t[�M�t�vY�!ZW&��t�I(�P�@��\%�?�����n�^����O��� ��a�|r�E���gO�>c�"X��.a7��Γt��h#!�� g�����bB� ����K�Tf�QK[|O���W*�.�c1��r2C��=����b<l�$�wK�!�_�~a�c��vB��hT��������~f�gq�91������n\��^3z�esv��Nma���i'pmv�qz�>ɻ���;�_9�\W��*G)�o#N�=kvn�W��l�ۮ�A��V�*1��<o��i��?��y��~�R����7w�,Q���.8!�~�AL微�kj�/�q����HڄJ�Ƹ��(�G��?�@�t6Z��6�M;��)�j���Ѳ'�uF���2O��т���61#�x`U��������17��;���ɇeK@\��DY�_X@�.�d�ARW�k:��S���8��ӈ���1SM4�����z���0K2�1�y\�#(��i��@['� ]�iO鮞�DR�w����Z��ة���Ǎ�Ů��61�Y&-3��v$S>�;(�Č`��gVo(��N��l.�w2��y?��Gkȝ���'�uQ��\]%�>;|�`�0/w���4Mj�r���C 5�v���/�]��<:��k�~�n�M��J���U+\�AҴ8o"��U!�z ���}`��DI����/��ĵPY�z��.wJ�NK�=)�NA�!PseX|Th�L9AJ���t�_�h��H5ubb]R��uF:�����A=��~��ܚ�遘��;@�� �H�b� L̘:N�K�ȶ�o5�GOFOM�0�u����8���bvX{����h����#�p{�s^Mf��y ;���ύrBm��mV*�!E�������#�+w����@�}��+�]��^�)7�rÑ��LjT��q�3h�X�H����s�bP��{@�u�;��NH� ����A�u��g�n(6�q�L��<�-��@�Ɯ�o3��|�&t�f=#a�a�+���a�֯*��<�Bҵ~d��� �V���-G�i�xl���ȹ!��Q�**a0n2�IV����%��LHg� �K��{�cXy��S[jGq����"���p�>H���L�������^��7 ƃ3�ҳʭ�J+Z��i̐g��Ξ��Q(� k�oiƐ�� ��.N�9�T���p�����'��N�.=���Z�'8YAε�;�H���m+f�K;B�w#�:���PN;U�/�:`MMXIް���o�rxxKL�֧��X�����gu�:;� �t���ΟT�M�]��Z%�����̵n^�����a#�#Iwk)��m���0��N��^�s�X���N��E��F��tka�Û��9]w|o��,����o^��1�>Ǣ����5�?�=C�c�������k�*�bƶ|� y����9X��:H�Z����4�k����˴��� ڄ�r�E2����$�rVW���qڎ�U��Q+g��}�˸�l�3 #�����͖GB.b?��=�&!�&c@L���Z�O�/A� ;�*�f�Q�}Z�,�?B��5�?#�� ���f>��P܍3[^����H�f��g&�_�WvX{ �Р�O���2�M�6���A�B��k�S*�ڡ���t������Rs<@���7���������@����ta�\l�M�,pxr����$��R�]4=6y�G8䗚��3P��ZU �3<��S��q_�V0lg�7�=�����Q8�|o� ��[�Ӫ��ß]ᜤ��M��v5��7�Ը:�G�H�/&v�1Ή^{fY@?�:�����Qȗ,�<j܈��8��aE��<�/=z�>Be�.�4 O&���-�e���`���-�7,;��\����i#'�iK���~76���g��� �fY�b��:�����F1�%lQ�zL�)̿�t?g-�r�;�m�����3�fL�D�o�j��)�?c�]�<E"�I�Kl�-���癔@f1rڂ���a�����c����Z:�E���R���X���徨�|W_wG��yJL����1�)� ��]�AËNo�C�������cg/��.d{c7��q����6���y��h*.�,�bs�q��Ӵ����@t� �m��iAܔ�Q��Q�<��K�-'w(�����NU3ڊi���m�g�A�B�v��� �m��g���ـ� �ٞ����u<�r�u��0���I����z�Jhߊ�$��O��w�ҵۦ��#i�Gv�ұx"��t:|ϔD�Z��Ҟ��W���Q���v�|͒Z�I�6��p�(��L9�x���W��l\�~&��sB��,��M�D�8Q���UG��5YGH����3a�w�A�vF*���{$�ܡ��>{���Pf��_:��j�R�dE��T���� 䧈�>�tS�����ob�6 5T@�Zyx�Ӆ�����` F�`������]�s�B�F�9�L��$�]�#`-��jL���n��S�£n"�eocY�;��� O�Q �̻@zz[~Kw�<��}>㺿7��7�=A5n ��N=U^�Gi�p�b|��&+�N7�>@��u�Bx��5n�s��f�'D\��*��^<?g����_w2��wX����j�/&�u�}��do?��Rh.�s=�pw|�8;B��`�=�Ŋ~���1[*�Q?��a6� ~�|��\=�ѫhS��S�>[r)wƭ"r��k1'�h�±�h����]���}_'y.�ؚ�M�kƷj�N��8�1�4Lp��!�����4z 9#dQ�ؠ-Q%�[�4�`��-{5��ļ7���h��C/h9�j�B^�H��V��h�g�Zv�>�[x}1=Ǧ�0�z�HР1p����*���>�H�(ƘOoq-�&��:���&�Y��n�m�8MLnRD��IkO~��PICL��F�GzLC��b^s�/_o�|�Ί*��,��Aq�u ��?f���\�N���*m��'�x���P�S>���W;�M�t��a&���D/M���kFĈ���-mQ�֥t��i��j�9U/Ϛ�T��,@p4!�6����/v�I��׃�k�i���B��u�Wq�>G{���1%�7���N�A���?N��B��},�0T�5��L�!�f��<��%!�}�uf�0�~�Ŵ�A���<� u���u���"�$����ҕԍNU�@��f�e]mĩ�w!�pP�TQ����A@��.3��1�b�E�O#���Nk�������7x�[R'M�'&�ߙQ� ���QhBEq�?G;a ������i���3�sqfAv9v��#��j&����]&H0��V�{� Ύ���I��լLk�0�1����f�Z@j���5�,yj]_1D�ڠ* �a�i��f'č9�fm�2)�}î��=B�x�Ka[Ω]�����^�?����=w���8���y�F@�桍�NN!���c�S�זѲ��a))���+xMcq �@~��Z�Ty��@ad:�&�o7���ն�}Ɣ��>��m2W��y5��v�f5��k���ޢ��&I�?�o�,ʕJ=�c�m]¤�x��^_�+���%�iuO_���RA/Lp.ͪ.IW����nh[H.O�%�y��_zRx��`Qn�C���5�P�IEND�B`�assets/uikit-themes/master-joline/_import.less000064400000045702151666572410015615 0ustar00@internal-fonts: 'Poppins:300,400|Open+Sans:300|Lora'; @global-font-family: 'Open Sans'; @global-font-size: 15px; @global-line-height: 1.6; // 23px @global-2xlarge-font-size: 36px; @global-xlarge-font-size: 30px; @global-large-font-size: 22px; @global-medium-font-size: 17px; @global-small-font-size: 13px; @global-primary-font-family: Lora; @global-primary-font-weight: normal; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: Poppins; @global-secondary-font-weight: normal; @global-secondary-text-transform: uppercase; @global-secondary-letter-spacing: 1.5px; @global-secondary-font-style: inherit; @global-color: #3C3C3C; @global-emphasis-color: #262626; @global-muted-color: #7E7E7E; @global-link-color: #BFA279; @global-link-hover-color: #606060; @global-inverse-color: #FFF; @global-background: #FFF; @global-muted-background: #F7F7FA; @global-primary-background: #BFA279; @global-secondary-background: #262626; @global-success-background: #32A88B; @global-warning-background: #FF9E45; @global-danger-background: #C0222A; @global-border-width: 1px; @global-border: #E5E5E5; @global-border-radius: 0; @global-small-box-shadow: 0 2px 11px rgba(0,0,0,0.09); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 10px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-body-font-weight: 300; @base-code-font-size: 12px; @base-code-color: @global-emphasis-color; @base-em-color: @global-emphasis-color; @base-h1-line-height: 1.3; @base-h2-line-height: 1.4; @base-h4-line-height: 1.55; @base-blockquote-font-size: @global-large-font-size; @base-blockquote-font-style: normal; @base-blockquote-footer-font-size: 12px; @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 2px; @base-pre-padding: 10px; @base-pre-background: @global-background; @base-h4-font-family: @global-primary-font-family; @base-h4-font-weight: @global-primary-font-weight; @base-h4-text-transform: @global-primary-text-transform; @base-h4-letter-spacing: @global-primary-letter-spacing; @base-h4-font-style: @global-primary-font-style; @base-h5-font-family: @global-primary-font-family; @base-h5-font-weight: @global-primary-font-weight; @base-h5-text-transform: @global-primary-text-transform; @base-h5-letter-spacing: @global-primary-letter-spacing; @base-h5-font-style: @global-primary-font-style; @base-h6-font-family: @global-primary-font-family; @base-h6-font-weight: @global-primary-font-weight; @base-h6-text-transform: @global-primary-text-transform; @base-h6-letter-spacing: @global-primary-letter-spacing; @base-h6-font-style: @global-primary-font-style; @base-blockquote-font-weight: 300; @base-blockquote-footer-color: @global-primary-background; @base-blockquote-footer-letter-spacing: @global-secondary-letter-spacing; @base-code-border-width: @global-border-width; @base-code-border: @global-border; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @base-code-border-radius: 3px; @base-pre-border-radius: 3px; @inverse-base-code-border: @inverse-global-border; @heading-medium-font-size: @heading-medium-font-size-m * 0.8; @heading-small-font-size-m: 52px; @heading-medium-line-height: 1.2; @heading-bullet-border-width: ~'calc(2px + 0.05em)'; @heading-line-border-width: ~'calc(0.1px + 0.03em)'; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-joline/images/divider-icon.svg"; @list-margin-top: 5px; @list-large-margin-top: @global-small-margin; @description-list-term-color: @global-color; @description-list-term-font-size: 12px; @icon-button-size: 42px; @icon-button-color: @global-emphasis-color; @icon-button-hover-background: @global-primary-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: darken(@global-primary-background, 10%); @icon-button-active-color: @global-inverse-color; @inverse-icon-button-color: @inverse-global-emphasis-color; @inverse-icon-button-hover-background: @inverse-global-primary-background; @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-background: fade(@inverse-global-primary-background, 90%); @inverse-icon-button-active-color: @inverse-global-inverse-color; @form-range-track-height: @global-border-width; @form-range-track-focus-background: @global-primary-background; @form-range-thumb-height: 11px; @form-range-thumb-background: @global-primary-background; @form-background: @global-background; @form-focus-background: @global-background; @form-danger-color: @form-color; @form-success-color: @form-color; @form-radio-background: transparent; @form-stacked-margin-bottom: 5px; @form-label-font-size: 12px; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-primary-background; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @form-focus-border; @form-radio-border-width: @global-border-width; @form-radio-border: darken(@global-border, 10%); @form-radio-focus-border: darken(@global-primary-background, 10%); @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-radio-checked-icon-color: @global-emphasis-color; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @inverse-global-primary-background; @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: @inverse-global-primary-background; @button-font-size: 12px; @button-small-font-size: 12px; @button-large-font-size: 12px; @button-padding-horizontal: 20px; @button-default-background: transparent; @button-default-hover-background: @global-secondary-background; @button-default-hover-color: @global-inverse-color; @button-default-active-background: fade(@button-default-hover-background, 90%); @button-default-active-color: @global-inverse-color; @button-primary-hover-background: transparent; @button-primary-hover-color: @global-primary-background; @button-primary-active-background: transparent; @button-primary-active-color: fade(@button-primary-hover-color, 80%); @button-secondary-hover-background: transparent; @button-secondary-hover-color: @global-secondary-background; @button-secondary-active-background: transparent; @button-secondary-active-color: fade(@button-secondary-hover-color, 80%); @button-danger-hover-background: transparent; @button-danger-hover-color: @global-danger-background; @button-danger-active-background: transparent; @button-danger-active-color: fade(@button-danger-hover-color, 80%); @button-text-color: @global-primary-background; @button-text-mode: ~''; @button-text-icon-mode: dash; @button-border-width: @global-border-width; @button-default-border: @global-border; @button-primary-hover-border: @global-primary-background; @button-primary-active-border: fade(@global-primary-background, 60%); @button-secondary-hover-border: @global-secondary-background; @button-secondary-active-border: fade(@global-secondary-background, 60%); @button-danger-hover-border: @global-danger-background; @button-danger-active-border: fade(@global-danger-background, 60%); @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-color; @inverse-button-default-hover-background: @inverse-global-muted-background; @inverse-button-default-hover-color: @inverse-global-color; @inverse-button-default-active-background: transparent; @inverse-button-default-active-color: @inverse-global-muted-color; @inverse-button-primary-color: @inverse-global-color; @inverse-button-primary-hover-background: transparent; @inverse-button-primary-hover-color: @inverse-global-color; @inverse-button-primary-active-background: transparent; @inverse-button-primary-active-color: @inverse-global-color; @inverse-button-text-hover-color: @inverse-global-muted-color; @inverse-button-link-color: @inverse-global-color; @inverse-button-default-border: @inverse-global-color; @inverse-button-primary-hover-border: @inverse-global-primary-background; @inverse-button-primary-active-border: @inverse-global-primary-background; @card-badge-height: 27px; @card-badge-font-size: 12px; @card-hover-background: @global-background; @card-default-hover-background: @global-background; @card-primary-hover-background: lighten(@card-primary-background, 2%); @card-secondary-hover-background: lighten(@card-secondary-background, 2%); @card-hover-border-width: @global-border-width; @card-hover-border: @global-border; @card-default-border-width: @global-border-width; @card-default-hover-border: @global-border; @inverse-card-badge-background: @global-inverse-color; @alert-background: @global-background; @alert-primary-background: @global-background; @alert-success-background: @global-background; @alert-warning-background: @global-background; @alert-danger-background: @global-background; @alert-border-width: @global-border-width; @alert-border: @global-border; @alert-primary-border: @global-primary-background; @alert-success-border: @global-success-background; @alert-warning-border: @global-warning-background; @alert-danger-border: @global-danger-background; @inverse-badge-color: @global-inverse-color; @label-padding-vertical: 2px; @label-padding-horizontal: 8px; @label-font-size: 11px; @article-meta-font-size: 12px; @article-meta-color: @global-emphasis-color; @comment-meta-font-size: 12px; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-navbar-focus-background: @global-background; @search-medium-padding-horizontal: 0; @search-large-padding-horizontal: 0; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-muted-color; @search-navbar-font-family: @global-secondary-font-family; @search-navbar-font-weight: @global-secondary-font-weight; @search-navbar-text-transform: @global-secondary-text-transform; @search-navbar-letter-spacing: @global-secondary-letter-spacing; @search-navbar-font-style: @global-secondary-font-style; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-primary-background; @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: @global-primary-background; @search-medium-border-mode: -bottom; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-primary-background; @search-large-border-mode: -bottom; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-primary-background; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-border: @inverse-global-border; @inverse-search-navbar-focus-border: @inverse-global-border; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @inverse-global-primary-background; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @inverse-global-primary-background; @accordion-title-hover-color: @global-link-color; @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 6px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 6px)'; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-subtitle-font-size: 13px; @dropdown-nav-header-color: @global-primary-background; @dropdown-nav-font-size: 12px; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-nav-subtitle-font-family: @global-font-family; @dropdown-nav-subtitle-font-weight: normal; @dropdown-nav-subtitle-text-transform: none; @dropdown-nav-subtitle-letter-spacing: normal; @dropdown-box-shadow: @global-small-box-shadow; @dropbar-padding-top: 20px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 10px 10px -10px fade(@global-secondary-background, 12%); @dropbar-bottom-box-shadow: 0 -10px 10px -10px fade(@global-secondary-background, 12%); @dropbar-left-box-shadow: 14px 0 12px -14px fade(@global-secondary-background, 12%); @dropbar-right-box-shadow: -14px 0 12px -14px fade(@global-secondary-background, 12%); @nav-header-font-size: 12px; @nav-default-font-size: 12px; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-subtitle-font-size: 14px; @nav-secondary-font-size: 12px; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-subtitle-active-color: @global-primary-background; @nav-secondary-sublist-font-size: 12px; @nav-secondary-sublist-item-color: @global-emphasis-color; @nav-secondary-sublist-item-hover-color: @global-primary-background; @nav-secondary-sublist-item-active-color: @global-primary-background; @nav-medium-line-height: 1.2; @nav-medium-font-size: @heading-medium-font-size-m * 0.8; @nav-dividers-margin-top: 7px; @nav-secondary-margin-top: 5px; @nav-secondary-item-padding-vertical: 8px; @nav-default-subtitle-color: @global-muted-color; @nav-default-subtitle-font-family: @global-font-family; @nav-default-subtitle-font-weight: normal; @nav-default-subtitle-text-transform: none; @nav-default-subtitle-letter-spacing: normal; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-font-weight: normal; @nav-primary-subtitle-text-transform: none; @nav-primary-subtitle-letter-spacing: normal; @nav-secondary-subtitle-font-family: @global-font-family; @nav-secondary-subtitle-text-transform: none; @nav-secondary-subtitle-letter-spacing: normal; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-gap: 20px; @navbar-nav-gap: 0px; @navbar-nav-item-height: 70px; @navbar-nav-item-padding-horizontal: 20px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-font-size: 12px; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-muted-color; @navbar-subtitle-font-size: 13px; @navbar-dropdown-padding: 40px; @navbar-dropdown-background: @global-background; @navbar-dropdown-dropbar-shift-margin: @navbar-nav-item-padding-horizontal-m; @navbar-dropdown-dropbar-padding-top: 20px; @navbar-dropdown-dropbar-padding-bottom: (@navbar-dropdown-dropbar-padding-top + 20px); @navbar-dropdown-dropbar-large-shift-margin: @navbar-nav-item-padding-horizontal-m; @navbar-dropdown-nav-subtitle-font-size: 13px; @navbar-gap-m: 40px; @navbar-nav-gap-m: 0px; @navbar-nav-item-padding-horizontal-m: 40px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-position-mode: top; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-height: 2px; @navbar-nav-item-line-transition-duration: 0.3s; @navbar-nav-item-line-hover-height: 2px; @navbar-nav-item-line-onclick-height: 2px; @navbar-nav-item-line-active-height: 2px; @navbar-dropdown-shift-margin-m: 0; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-font-family: @global-font-family; @navbar-subtitle-font-weight: 400; @navbar-subtitle-text-transform: none; @navbar-subtitle-letter-spacing: normal; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-font-size: 12px; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-dropdown-nav-subtitle-font-family: @global-font-family; @navbar-dropdown-nav-subtitle-font-weight: 400; @navbar-dropdown-nav-subtitle-text-transform: none; @navbar-dropdown-nav-subtitle-letter-spacing: normal; @navbar-sticky-box-shadow: @global-small-box-shadow; @navbar-dropdown-box-shadow: @global-small-box-shadow; @subnav-divider-border-height: 1em; @subnav-item-font-size: 12px; @breadcrumb-item-font-size: 11px; @breadcrumb-divider: "//"; @pagination-margin-horizontal: @global-small-margin; @pagination-item-padding-vertical: 10px; @pagination-item-color: @global-emphasis-color; @pagination-item-hover-color: @global-inverse-color; @pagination-item-active-color: @global-emphasis-color; @pagination-item-min-width: 41px; @pagination-item-height: @pagination-item-min-width; @pagination-item-background: @global-background; @pagination-item-hover-background: @global-secondary-background; @pagination-item-font-size: 12px; @pagination-item-border-width: @global-border-width; @pagination-item-active-border: @global-border; @inverse-pagination-item-hover-border: @inverse-global-primary-background; @inverse-pagination-item-active-border: @inverse-global-primary-background; @tab-item-font-size: 12px; @tab-item-line-height: 20px; @slidenav-padding-vertical: 10px; @slidenav-padding-horizontal: 12px; @slidenav-color: fade(@global-color, 40%); @slidenav-hover-color: @global-emphasis-color; @inverse-slidenav-color: fade(@inverse-global-color, 60%); @inverse-slidenav-hover-color: @inverse-global-emphasis-color; @dotnav-margin-horizontal: 16px; @dotnav-item-width: 8px; @dotnav-item-hover-background: @global-primary-background; @dotnav-item-active-background: @global-primary-background; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-muted-color; @iconnav-item-active-color: @global-primary-background; @text-lead-font-size: @global-medium-font-size; @text-meta-font-size: 12px; @text-meta-color: @global-primary-background; @text-large-font-size: @global-medium-font-size; @text-lead-font-family: @global-font-family; @logo-font-size: @global-xlarge-font-size; @logo-font-family: @global-primary-font-family; @inverse-global-muted-color: fade(@inverse-global-color, 50%); @inverse-global-inverse-color: @global-secondary-background; @inverse-global-primary-background: @global-primary-background; @inverse-global-border: fade(@inverse-global-color, 10%);assets/uikit-themes/master-joline/images/divider-icon.svg000064400000002635151666572410017614 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M3.786,9.989c0,1.052-0.844,1.892-1.893,1.892C0.846,11.881,0,11.041,0,9.989 c0-1.041,0.846-1.888,1.894-1.888C2.942,8.102,3.786,8.948,3.786,9.989z" /> <path fill="#000" d="M11.891,9.989c0,1.052-0.844,1.892-1.895,1.892c-1.042,0-1.888-0.84-1.888-1.892 c0-1.043,0.846-1.888,1.888-1.888C11.047,8.102,11.891,8.946,11.891,9.989z" /> <path fill="#000" d="M11.891,1.892c0,1.046-0.844,1.895-1.895,1.895c-1.042,0-1.888-0.849-1.888-1.895 C8.108,0.849,8.954,0,9.996,0C11.047,0,11.891,0.849,11.891,1.892z" /> <path fill="#000" d="M11.891,18.102c0,1.049-0.844,1.898-1.895,1.898c-1.042,0-1.888-0.85-1.888-1.898 c0-1.041,0.846-1.883,1.888-1.883C11.047,16.217,11.891,17.059,11.891,18.102z" /> <path fill="#000" d="M20,9.989c0,1.052-0.85,1.892-1.891,1.892c-1.045,0-1.898-0.84-1.898-1.892c0-1.043,0.854-1.888,1.898-1.888 C19.15,8.102,20,8.946,20,9.989z" /> <path fill="#000" d="M7.722,5.675c0,1.048-0.852,1.896-1.899,1.896c-1.04,0-1.891-0.847-1.891-1.896 c0-1.043,0.851-1.89,1.891-1.89C6.87,3.787,7.722,4.632,7.722,5.675z" /> <circle fill="#000" cx="13.988" cy="5.675" r="1.89" /> <path fill="#000" d="M7.72,14.223c0,1.041-0.852,1.893-1.899,1.893c-1.04,0-1.891-0.852-1.891-1.893 c0-1.043,0.851-1.891,1.891-1.891C6.868,12.332,7.72,13.18,7.72,14.223z" /> <circle fill="#000" cx="13.986" cy="14.221" r="1.891" /> </svg> assets/uikit-themes/master-joline/icons/slidenav-next.svg000064400000000255151666572410017663 0ustar00<svg width="10" height="14" viewBox="0 0 10 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="2,13 8,7 2,1" /> </svg> assets/uikit-themes/master-joline/icons/slidenav-next-large.svg000064400000000275151666572410020755 0ustar00<svg width="21" height="33" viewBox="0 0 21 33" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="3" points="3,2.292 17.777,16.5 3,30.708" /> </svg> assets/uikit-themes/master-joline/icons/totop.svg000064400000000240151666572410016241 0ustar00<svg width="8" height="22" viewBox="0 0 8 22" xmlns="http://www.w3.org/2000/svg"> <polygon points="8,5 4,0 0,5 3.497,5 3.497,22 4.504,22 4.504,5" /> </svg> assets/uikit-themes/master-joline/icons/slidenav-previous.svg000064400000000261151666572410020556 0ustar00<svg width="9" height="14" viewBox="0 0 9 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="7.5,1 1.5,7 7.5,13" /> </svg> assets/uikit-themes/master-joline/icons/pagination-previous.svg000064400000000273151666572410021105 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.2" points="6.75,7.5 3.25,4 6.75,0.5" /> </svg> assets/uikit-themes/master-joline/icons/slidenav-previous-large.svg000064400000000302151666572410021642 0ustar00<svg width="21" height="33" viewBox="0 0 21 33" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="3" points="17.777,2.292 3,16.5 17.777,30.708" /> </svg> assets/uikit-themes/master-joline/icons/pagination-next.svg000064400000000306151666572410020204 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.2" points="3.251,0.499 6.751,3.999 3.251,7.499" /> </svg> assets/uikit-themes/master-joline/styles/white-green.less000064400000002711151666572410017676 0ustar00// // Global // @global-color: #000000; @global-emphasis-color: @global-color; @global-link-color: @global-primary-background; @global-danger-background: #c45359; @global-muted-background: #f5f8f6; @global-primary-background: #40ce94; @global-secondary-background: @global-color; @global-success-background: #52b8a7; @global-warning-background: #df914a; // // Article // @article-meta-link-color: @global-primary-background; // // Base // @base-ins-background: #f7f9f8; @base-mark-background: #f7f9f8; // // Button // @button-default-active-background: fade(@button-default-hover-background, 80%); // // Card // @card-primary-hover-background: #48c592; @card-secondary-hover-background: #131212; // // Heading // @heading-divider-border: @global-secondary-background; @heading-bullet-border: @global-secondary-background; @heading-line-border: @global-secondary-background; // // Icon // @icon-link-color: @global-primary-background; @icon-button-background: @global-primary-background; @icon-button-color: #ffffff; @icon-button-hover-background: @global-secondary-background; @icon-button-active-background: @global-secondary-background; // // List // @list-striped-background: #f7f9f8; // // Subnav // @subnav-item-color: #a5a5a5; @subnav-item-disabled-color: #b8b7b7; // // Table // @table-row-active-background: #f7f9f8; // // Text // @text-meta-color: #7aab97; assets/uikit-themes/master-joline/styles/white-salmon.less000064400000002471151666572410020072 0ustar00// // Global // @global-color: #535353; @global-link-color: @global-primary-background; @global-link-hover-color: #7e7e7e; @global-danger-background: #d2474e; @global-primary-background: #fd9086; @global-secondary-background: #372a3a; @global-success-background: #76be76; @global-warning-background: #fdc686; @global-border: #c5cbc9; // // Alert // @alert-primary-color: #ce6f74; @alert-warning-color: #aa611f; // // Article // @article-meta-color: #908792; // // Base // @base-ins-background: #fdeced; @base-mark-background: #fdeced; // // Button // @button-default-color: rgba(49, 49, 49, 0.7); @button-default-active-color: #ffffff; @button-primary-active-background: rgba(255, 255, 255, 0); @button-primary-active-color: #eb8086; @button-link-color: rgba(49, 49, 49, 0.7); @button-link-hover-color: @global-emphasis-color; // // Dropdown // @dropdown-nav-item-color: #797979; // // Navbar // @navbar-nav-item-color: @global-link-hover-color; // // Subnav // @subnav-item-disabled-color: #b8b8b8; // // Tab // @tab-item-color: #949494; @tab-item-disabled-color: #b8b8b8; // // Table // @table-row-active-background: #f7f7fa; @table-hover-row-background: #f7f7fa; // // Text // @text-meta-color: #c49590; assets/uikit-themes/master-joline/styles/light-pink.less000064400000005147151666572410017534 0ustar00// // Global // @global-emphasis-color: #6b6363; @global-link-color: #b37775; @global-background: #fffdfd; @global-danger-background: #571114; @global-muted-background: #f5f5f5; @global-primary-background: #c2817f; @global-secondary-background: #111f26; @global-success-background: #195446; @global-border: #cccccc; // // Alert // @alert-color: #757575; @alert-primary-color: @global-primary-background; @alert-warning-color: #ec8527; // // Article // @article-meta-color: #9a9a9a; @article-meta-link-color: #606060; @article-meta-link-hover-color: #292929; // // Base // @base-link-color: @global-link-color; @base-link-hover-color: #634b4b; @base-ins-background: #eee6e6; @base-mark-background: #eee6e6; @base-blockquote-footer-color: #929292; // // Breadcrumb // @breadcrumb-item-color: #9f9f9f; // // Button // @button-default-hover-background: #575757; // // Countdown // @countdown-label-color: @global-primary-background; // // Divider // @divider-icon-line-border: @global-primary-background; // // Dropdown // @dropdown-nav-item-hover-color: #292929; // // Form // @form-danger-border: #76171b; @form-danger-color: #76171b; @form-success-border: #1d6151; @form-success-color: #1d6151; @inverse-form-radio-checked-icon-color: @global-secondary-background; // // Heading // @heading-divider-border: #d8d8d8; @heading-bullet-border: #dddddd; @heading-line-border: #d8d8d8; // // Icon // @icon-button-active-background: @global-primary-background; // // Label // @label-warning-background: #e68d3b; @label-danger-background: #6b1519; // // Marker // @marker-hover-background: @global-primary-background; // // Nav // @nav-default-item-hover-color: #b37775; @nav-default-item-active-color: #b37775; @nav-primary-item-hover-color: #b37775; @nav-primary-item-active-color: #b37775; // // Pagination // @pagination-item-active-color: #292929; // // Progress // @progress-background: #ededed; // // Subnav // @subnav-item-color: #9e9e9e; @subnav-item-active-color: @global-secondary-background; @subnav-item-disabled-color: #c6c6c6; // // Tab // @tab-item-hover-color: #292929; @tab-item-active-color: #292929; @tab-item-disabled-color: #c6c6c6; // // Table // @table-row-active-background: @global-muted-background; @table-hover-row-background: @global-muted-background; // // Text // @text-meta-color: #c2a09f; @text-meta-link-color: #ababab; // // Utility // @box-shadow-bottom-background: #707070; assets/uikit-themes/master-joline/styles/light-green.less000064400000004216151666572410017667 0ustar00// // Global // @global-color: #555555; @global-emphasis-color: #313131; @global-link-color: @global-primary-background; @global-muted-color: #929292; @global-link-hover-color: #252525; @global-background: #f2f2f2; @global-danger-background: #571114; @global-muted-background: #ededed; @global-primary-background: #8da29d; @global-secondary-background: #10201b; @global-success-background: #13705a; @global-warning-background: #aa611f; @global-border: #c5cbc9; // // Alert // @alert-primary-color: #6a7774; // // Article // @article-meta-color: #9da8a6; @article-meta-link-color: #4a514f; @article-meta-link-hover-color: #292929; // // Base // @base-link-color: #65a495; @base-link-hover-color: #313735; @base-ins-background: #d8dfdd; @base-mark-background: #d8dfdd; // // Button // @button-default-color: rgba(49, 49, 49, 0.7); @button-default-hover-background: #575757; @button-link-color: rgba(49, 49, 49, 0.7); @button-link-hover-color: @global-emphasis-color; @inverse-button-link-hover-color: @inverse-global-emphasis-color; // // Dropdown // @dropdown-nav-item-hover-color: #292929; @dropdown-nav-sublist-item-hover-color: #292929; // // Form // @form-danger-border: #72161a; @form-danger-color: #72161a; @form-success-border: #216c5a; @form-success-color: #216c5a; // // List // @list-striped-background: #e9e9e9; // // Nav // @nav-default-item-hover-color: #65a495; @nav-default-item-active-color: #65a495; @nav-primary-item-hover-color: #65a495; @nav-primary-item-active-color: #65a495; // // Overlay // @overlay-primary-background: rgba(128, 146, 141, 0.8); @overlay-primary-color-mode: light; // // Pagination // @pagination-item-active-color: #292929; // // Subnav // @subnav-item-color: #5e5e5e; @subnav-item-hover-color: #292929; @subnav-item-active-color: @global-primary-background; @subnav-item-disabled-color: #c4c4c4; @subnav-pill-item-hover-color: #292929; // // Table // @table-row-active-background: #d8dfdd; @table-hover-row-background: rgba(216, 223, 221, 0.6); assets/uikit-themes/master-joline/styles/dark-pink.less000064400000015142151666572410017342 0ustar00// // Global // @global-primary-font-weight: inherit; @global-color: #c0c0c0; @global-emphasis-color: #f1f1f1; @global-inverse-color: @global-secondary-background; @global-link-color: #c2817f; @global-muted-color: #8e8e8e; @global-link-hover-color: #555555; @global-background: #232323; @global-danger-background: #872b2f; @global-muted-background: #353535; @global-primary-background: #ab807b; @global-secondary-background: #181818; @global-success-background: #62988b; @global-warning-background: #b19275; @global-border: #484848; // // Theme // @theme-page-container-color-mode: light; // // Alert // @alert-background: @global-secondary-background; @alert-border: @global-secondary-background; @alert-primary-background: @global-secondary-background; @alert-primary-border: @global-secondary-background; @alert-success-background: @global-secondary-background; @alert-success-border: @global-secondary-background; @alert-warning-background: @global-secondary-background; @alert-warning-border: @global-secondary-background; @alert-danger-background: @global-secondary-background; @alert-danger-border: @global-secondary-background; // // Article // @article-meta-link-hover-color: #b7b7b7; // // Badge // @badge-color: @global-emphasis-color; // // Base // @base-link-color: @global-primary-background; @base-link-hover-color: #d8c2c2; @base-ins-background: rgba(254, 240, 240, 0.1); @base-mark-background: rgba(254, 240, 240, 0.1); // // Theme // @theme-toolbar-color-mode: light; // // Breadcrumb // @breadcrumb-item-hover-color: @global-emphasis-color; @breadcrumb-item-active-color: @global-emphasis-color; // // Button // @button-default-hover-background: #3a3a3a; @button-default-hover-border: #3a3a3a; @button-default-hover-color: @global-emphasis-color; @button-default-active-background: @global-border; @button-default-active-color: @global-emphasis-color; @button-primary-color: @global-emphasis-color; @button-primary-hover-color: @global-emphasis-color; @button-primary-active-color: @global-emphasis-color; @button-secondary-color: @global-emphasis-color; @button-secondary-hover-color: @global-emphasis-color; @button-danger-color: @global-emphasis-color; @button-danger-hover-color: @global-emphasis-color; @button-disabled-background: #2b2b2b; @button-disabled-color: #7d7d7d; @button-text-color: #ceaca9; @button-text-disabled-color: #7d7d7d; @button-link-disabled-color: #7d7d7d; // // Card // @card-badge-color: @global-emphasis-color; @card-default-color-mode: light; @card-primary-color-mode: dark; @card-secondary-color: @global-color; @inverse-card-badge-color: @global-emphasis-color; // // Countdown // @countdown-label-color: @global-primary-background; // // Divider // @divider-small-border: @global-primary-background; // // Dropbar // @dropbar-color-mode: light; @dropbar-top-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.4); @dropbar-bottom-box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.4); @dropbar-left-box-shadow: 10px 0 10px -10px rgba(0, 0, 0, 0.4); @dropbar-right-box-shadow: -10px 0 10px -10px rgba(0, 0, 0, 0.4); // // Dropdown // @dropdown-color-mode: light; @dropdown-box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.4); // // Dotnav // @dotnav-item-background: rgba(255, 255, 255, 0.5); @dotnav-item-onclick-background: @dotnav-item-background; @inverse-dotnav-item-background: fade(@inverse-global-color, 20%); // // Form // @form-focus-color: #be8e89; @form-disabled-background: #2b2b2b; @form-radio-border: lighten(@global-border, 5%); // // Form Range // @form-range-track-background: lighten(@global-border, 5%); // // Icon // @icon-link-hover-color: @global-primary-background; @icon-link-active-color: @global-primary-background; @inverse-icon-button-hover-color: @global-emphasis-color; @inverse-icon-button-active-color: @global-emphasis-color; // // Iconnav // @iconnav-item-hover-color: @global-primary-background; @iconnav-item-active-color: @global-primary-background; // // Inverse // @inverse-global-color-mode: dark; // // Label // @label-color: @global-emphasis-color; @label-success-color: @global-emphasis-color; @label-warning-color: @global-emphasis-color; @label-danger-color: @global-emphasis-color; // // List // @list-striped-background: #2f2f2f; // // Marker // @marker-background: @global-emphasis-color; @marker-color: @global-background; @marker-hover-background: @global-emphasis-color; // // Nav // @nav-default-item-color: #a6a6a6; @nav-primary-item-color: #a6a6a6; // // Navbar // @navbar-color-mode: light; @navbar-nav-item-line-hover-background: @global-emphasis-color; @navbar-nav-item-line-onclick-background: @global-emphasis-color; @navbar-nav-item-line-active-background: @global-emphasis-color; @navbar-sticky-box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.5); @navbar-dropdown-color-mode: light; @navbar-dropdown-box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.5); // // Notification // @notification-message-danger-color: #df4147; // // Offcanvas // @offcanvas-overlay-background: rgba(0, 0, 0, 0.6); // // Overlay // @overlay-default-color-mode: light; // // Pagination // @pagination-item-hover-color: @global-emphasis-color; @pagination-item-active-border: @global-primary-background; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; // // Slidenav // @slidenav-color: fade(@global-color, 80%); @inverse-slidenav-color: fade(@inverse-global-color, 30%); // // Table // @table-row-active-background: #373434; @table-striped-row-background: #373434; @table-hover-row-background: #2f2f2f; // // Text // @text-danger-color: #c93037; @text-meta-color: #ab9794; @text-meta-link-hover-color: #edc1bb; // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tooltip // @tooltip-color: @global-emphasis-color; @tooltip-background: @global-secondary-background; // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; // // Utility // @box-shadow-bottom-background: #333333; @leader-color: @global-primary-background; // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 10%); assets/uikit-themes/master-creative-hub/images/accordion-close.svg000064400000000373151666572410021377 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.5" y1="7" x2="14" y2="7" /> <line fill="none" stroke="#000" stroke-width="1.5" x1="7" y1="14" x2="7" /> </svg> assets/uikit-themes/master-creative-hub/images/accordion-open.svg000064400000000253151666572410021230 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.5" y1="7" x2="14" y2="7" /> </svg> assets/uikit-themes/master-creative-hub/images/list-bullet.svg000064400000000232151666572410020565 0ustar00<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" cx="6" cy="6" r="3.5" /> </svg> assets/uikit-themes/master-creative-hub/_import.less000064400000047205151666572410016713 0ustar00@internal-fonts: 'Work+Sans:400,600'; @global-font-family: 'Work Sans'; @global-font-size: 16px; @global-line-height: 1.5; @global-2xlarge-font-size: 42px; @global-xlarge-font-size: 32px; @global-large-font-size: 24px; @global-medium-font-size: 20px; @global-small-font-size: 14px; @global-primary-font-family: inherit; @global-primary-font-weight: 600; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: 400; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #4A4A4A; @global-emphasis-color: #212121; @global-muted-color: #909090; @global-link-color: #EC2178; @global-link-hover-color: #2F3B8A; @global-inverse-color: #FFF; @global-background: #FFF; @global-muted-background: #FAFAFA; @global-primary-background: #EC2178; @global-secondary-background: #212121; @global-success-background: #4FDA73; @global-warning-background: #FFC319; @global-danger-background: #FA3C3C; @global-border-width: 1px; @global-border: #EAEAEA; @global-border-radius: 2px; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.04); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.06); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.1); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.14); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 42px; @global-control-small-height: 30px; @global-control-large-height: 52px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-blockquote-font-style: inherit; @base-selection-background: #FFFC16; @base-selection-color: @global-emphasis-color; @base-pre-padding: @global-margin; @base-pre-background: @global-muted-background; @base-h1-font-family: @global-secondary-font-family; @base-h1-font-weight: @global-secondary-font-weight; @base-h1-text-transform: @global-secondary-text-transform; @base-h1-letter-spacing: @global-secondary-letter-spacing; @base-h1-font-style: @global-secondary-font-style; @base-h2-font-family: @global-secondary-font-family; @base-h2-font-weight: @global-secondary-font-weight; @base-h2-text-transform: @global-secondary-text-transform; @base-h2-letter-spacing: @global-secondary-letter-spacing; @base-h2-font-style: @global-secondary-font-style; @base-h3-font-family: @global-secondary-font-family; @base-h3-font-weight: @global-secondary-font-weight; @base-h3-text-transform: @global-secondary-text-transform; @base-h3-letter-spacing: @global-secondary-letter-spacing; @base-h3-font-style: @global-secondary-font-style; @link-text-hover-color: @global-primary-background; @heading-medium-line-height: 1.2; @heading-xlarge-line-height: 1.1; @heading-bullet-border-width: ~'calc(4px + 0.08em)'; @heading-bullet-border: @global-primary-background; @inverse-heading-bullet-border: @inverse-global-primary-background; @divider-icon-color: @global-primary-background; @divider-small-width: 90px; @divider-small-border-width: 2px; @divider-small-border: @global-primary-background; @divider-vertical-border-width: 2px; @divider-vertical-border: @global-primary-background; @inverse-divider-icon-color: @inverse-global-primary-background; @inverse-divider-small-border: @inverse-global-primary-background; @inverse-divider-vertical-border: @inverse-global-primary-background; @list-bullet-icon-color: @global-primary-background; @internal-list-bullet-image: "../../../../uikit-themes/master-creative-hub/images/list-bullet.svg"; @inverse-list-bullet-icon-color: @inverse-global-primary-background; @description-list-term-font-family: @global-primary-font-family; @description-list-term-font-weight: @global-primary-font-weight; @description-list-term-text-transform: @global-primary-text-transform; @description-list-term-letter-spacing: @global-primary-letter-spacing; @description-list-term-font-style: @global-primary-font-style; @table-row-active-background: darken(@global-muted-background, 1%); @icon-link-color: @global-emphasis-color; @icon-link-hover-color: @global-primary-background; @icon-button-size: @global-control-height; @icon-button-background: transparent; @icon-button-color: @global-emphasis-color; @icon-button-hover-background: @global-primary-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: @global-secondary-background; @icon-button-active-color: @global-inverse-color; @icon-button-border-width: @global-border-width; @icon-button-border: @global-emphasis-color; @inverse-icon-link-color: @inverse-global-emphasis-color; @inverse-icon-button-background: transparent; @inverse-icon-button-color: @inverse-global-emphasis-color; @inverse-icon-button-hover-background: @inverse-global-primary-background; @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-background: @inverse-global-color; @inverse-icon-button-active-color: @inverse-global-inverse-color; @inverse-icon-button-border: @inverse-global-primary-background; @form-range-track-height: 2px; @form-range-thumb-height: 12px; @form-range-thumb-background: @global-primary-background; @form-focus-background: darken(@form-background, 3%); @form-danger-focus-background: fade(@global-danger-background, 5%); @form-success-focus-background: fade(@global-success-background, 5%); @button-font-size: @global-small-font-size; @button-large-font-size: 18px; @button-default-background: @global-background; @button-default-hover-background: @global-primary-background; @button-default-hover-color: @global-background; @button-default-active-background: darken(@global-primary-background, 5%); @button-default-active-color: @global-background; @button-secondary-hover-background: @global-primary-background; @button-secondary-active-background: darken(@global-primary-background, 5%); @button-text-hover-color: @global-primary-background; @button-link-hover-color: @global-primary-background; @button-text-mode: ~''; @button-text-icon-mode: dash; @button-text-border-width: 2px; @button-text-hover-border: @global-primary-background; @internal-button-text-dash-size: 40px; @button-border-radius: 500px; @internal-button-default-hover-gradient: linear-gradient(320deg, @global-primary-background, spin(@global-primary-background, 15%)); @internal-button-default-active-gradient: linear-gradient(320deg, @global-primary-background, spin(@global-primary-background, 35%)); @internal-button-primary-gradient: linear-gradient(320deg, @global-primary-background, spin(@global-primary-background, 15%)); @internal-button-primary-hover-gradient: linear-gradient(320deg, spin(@global-primary-background, 8%), spin(@global-primary-background, 25%)); @internal-button-primary-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 8%), spin(@global-primary-background, 35%)); @internal-button-secondary-hover-gradient: linear-gradient(320deg, @global-primary-background, spin(@global-primary-background, 15%)); @internal-button-secondary-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 8%), spin(@global-primary-background, 35%)); @button-default-box-shadow: @global-medium-box-shadow; @button-default-hover-box-shadow: 0 0 0 rgba(0,0,0,0); @inverse-button-primary-color: @global-primary-background; @inverse-button-primary-hover-color: darken(@global-primary-background, 5%); @inverse-button-primary-active-color: darken(@global-primary-background, 15%); @inverse-button-secondary-color: @global-emphasis-color; @inverse-button-secondary-hover-color: darken(@global-emphasis-color, 5%); @inverse-button-secondary-active-color: darken(@global-emphasis-color, 15%); @inverse-button-text-hover-color: @inverse-global-muted-color; @container-large-max-width: 1360px; @card-title-font-size: @global-medium-font-size; @card-badge-height: 26px; @card-badge-padding-horizontal: 12px; @card-badge-font-size: 12px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-title-font-family: @global-secondary-font-family; @card-title-font-weight: @global-secondary-font-weight; @card-title-text-transform: @global-secondary-text-transform; @card-title-letter-spacing: @global-secondary-letter-spacing; @card-title-font-style: @global-secondary-font-style; @card-badge-text-transform: uppercase; @card-badge-border-radius: 500px; @internal-card-badge-gradient: linear-gradient(320deg, @global-primary-background, spin(@global-primary-background, 15%)); @internal-card-primary-gradient: linear-gradient(320deg, @card-primary-background, spin(@card-primary-background, 15%)); @internal-card-primary-hover-gradient: linear-gradient(320deg, spin(@card-primary-background, 4%), spin(@card-primary-background, 20%)); @card-hover-box-shadow: @global-medium-box-shadow; @card-default-box-shadow: @global-medium-box-shadow; @card-default-hover-box-shadow: @global-large-box-shadow; @marker-background: @global-primary-background; @marker-hover-background: @global-secondary-background; @inverse-marker-background: @inverse-global-primary-background; @inverse-marker-hover-background: @inverse-global-color; @alert-primary-background: lighten(tint(@global-primary-background, 40%), 26%); @alert-primary-color: @global-emphasis-color; @alert-success-background: lighten(tint(@global-success-background, 40%), 22%); @alert-success-color: @global-emphasis-color; @alert-warning-background: lighten(tint(@global-warning-background, 40%), 21%); @alert-warning-color: @global-emphasis-color; @alert-danger-background: lighten(tint(@global-danger-background, 40%), 22%); @alert-danger-color: @global-emphasis-color; @badge-size: 20px; @badge-font-size: 12px; @internal-badge-gradient: linear-gradient(320deg, @global-primary-background, spin(@global-primary-background, 15%)); @label-padding-vertical: 2px; @label-padding-horizontal: 9px; @label-border-radius: @global-border-radius; @article-title-font-family: @global-secondary-font-family; @article-title-font-weight: @global-secondary-font-weight; @article-title-text-transform: @global-secondary-text-transform; @article-title-letter-spacing: @global-secondary-letter-spacing; @article-title-font-style: @global-secondary-font-style; @comment-title-font-size: @global-font-size; @search-default-padding-horizontal: 14px; @search-default-focus-background: darken(@search-default-background, 3%); @search-navbar-padding-horizontal: 14px; @search-navbar-background: @global-muted-background; @search-navbar-focus-background: darken(@search-navbar-background, 3%); @search-medium-padding-horizontal: 18px; @search-large-padding-horizontal: 28px; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-primary-background; @search-navbar-font-size: @global-font-size; @accordion-item-margin-top: 18px; @accordion-icon-color: @global-link-color; @internal-accordion-icon-close-image: "../../../../uikit-themes/master-creative-hub/images/accordion-close.svg"; @internal-accordion-icon-open-image: "../../../../uikit-themes/master-creative-hub/images/accordion-open.svg"; @accordion-title-font-family: @global-secondary-font-family; @accordion-title-font-weight: @global-secondary-font-weight; @accordion-title-text-transform: @global-secondary-text-transform; @accordion-title-letter-spacing: @global-secondary-letter-spacing; @accordion-title-font-style: @global-secondary-font-style; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-padding: 30px; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 5px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 5px)'; @dropdown-nav-item-hover-color: @global-primary-background; @dropdown-nav-subtitle-font-size: 13px; @dropdown-nav-sublist-item-hover-color: @global-primary-background; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-nav-subtitle-font-family: @global-font-family; @dropdown-nav-subtitle-font-weight: normal; @dropdown-nav-subtitle-text-transform: none; @dropdown-nav-subtitle-line-height: 1.4; @dropdown-box-shadow: @global-medium-box-shadow; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.06); @dropbar-bottom-box-shadow: 0 -5px 15px -8px rgba(0, 0, 0, 0.06); @dropbar-left-box-shadow: 5px 0 15px -8px rgba(0, 0, 0, 0.06); @dropbar-right-box-shadow: -5px 0 15px -8px rgba(0, 0, 0, 0.06); @offcanvas-bar-padding-vertical: 40px; @offcanvas-bar-padding-horizontal: 25px; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-bar-padding-vertical-s: 50px; @tooltip-background: @global-secondary-background; @nav-item-padding-vertical: 8px; @nav-default-item-color: @global-emphasis-color; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-default-subtitle-font-size: 13px; @nav-default-sublist-item-hover-color: @global-primary-background; @nav-default-sublist-item-active-color: @global-primary-background; @nav-primary-item-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-primary-sublist-item-active-color: @global-primary-background; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-medium-line-height: 1.2; @nav-secondary-margin-top: 4px; @nav-secondary-item-padding-vertical: 15px; @nav-secondary-item-padding-horizontal: 15px; @nav-secondary-item-hover-background: @global-muted-background; @nav-secondary-item-active-background: @global-muted-background; @nav-default-subtitle-color: @global-muted-color; @nav-default-subtitle-line-height: 1.4; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-font-weight: normal; @inverse-nav-default-item-color: @inverse-global-color; @inverse-nav-default-item-hover-color: @inverse-global-muted-color; @inverse-nav-primary-item-color: @inverse-global-color; @inverse-nav-primary-item-hover-color: @inverse-global-muted-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-item-hover-background: @inverse-global-muted-background; @inverse-nav-secondary-item-active-background: @inverse-nav-secondary-item-hover-background; @navbar-background: @global-background; @navbar-nav-item-font-size: @global-small-font-size; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-primary-background; @navbar-subtitle-font-size: 13px; @navbar-dropdown-margin: 1px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 30px; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-dropbar-padding-top: 30px; @navbar-dropdown-nav-item-color: @global-emphasis-color; @navbar-dropdown-nav-item-hover-color: @global-primary-background; @navbar-dropdown-nav-item-active-color: @global-primary-background; @navbar-dropdown-nav-subtitle-font-size: 13px; @navbar-dropdown-nav-sublist-item-hover-color: @global-primary-background; @navbar-dropdown-nav-sublist-item-active-color: @global-primary-background; @navbar-gap-m: 48px; @navbar-nav-gap-m: 48px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-margin-vertical: -1px; @navbar-nav-item-line-height: 0; @navbar-nav-item-line-background: @global-primary-background; @navbar-nav-item-line-transition-duration: 0.15s; @navbar-nav-item-line-hover-height: 2px; @navbar-nav-item-line-onclick-height: 2px; @navbar-nav-item-line-active-height: 2px; @navbar-nav-item-text-transform: uppercase; @navbar-subtitle-text-transform: none; @navbar-subtitle-line-height: 1.4; @navbar-primary-nav-item-font-size: 18px; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-dropdown-nav-subtitle-line-height: 1.4; @navbar-mode: border; @navbar-border-width: @global-border-width; @navbar-border: @global-border; @navbar-sticky-box-shadow: @global-small-box-shadow; @navbar-dropdown-box-shadow: @global-medium-box-shadow; @inverse-navbar-toggle-color: @inverse-global-emphasis-color; @inverse-navbar-border: @inverse-global-border; @subnav-item-color: @global-emphasis-color; @subnav-item-hover-color: @global-link-color; @subnav-item-active-color: @global-link-color; @subnav-divider-margin-horizontal: 26px; @subnav-divider-border-height: 1.1em; @subnav-pill-item-padding-vertical: 9px; @subnav-pill-item-padding-horizontal: 20px; @subnav-pill-item-border-radius: 500px; @inverse-subnav-item-color: @inverse-global-color; @inverse-subnav-item-hover-color: @inverse-global-emphasis-color; @breadcrumb-item-color: @global-color; @breadcrumb-item-hover-color: @global-primary-background; @breadcrumb-item-active-color: @global-muted-color; @breadcrumb-divider-margin-horizontal: 18px; @inverse-breadcrumb-item-color: @inverse-global-color; @inverse-breadcrumb-item-hover-color: @inverse-global-primary-background; @inverse-breadcrumb-item-active-color: @inverse-global-muted-color; @pagination-margin-horizontal: 14px; @pagination-item-padding-vertical: 3px; @pagination-item-padding-horizontal: 12px; @pagination-item-height: 32px; @pagination-item-border-width: @global-border-width; @pagination-item-hover-border: @global-border; @pagination-item-active-border: @global-emphasis-color; @inverse-pagination-item-hover-border: @inverse-global-border; @inverse-pagination-item-active-border: @inverse-global-emphasis-color; @tab-item-border-width: 2px; @dotnav-margin-horizontal: @global-small-margin; @dotnav-item-width: 11px; @dotnav-item-background: transparent; @dotnav-item-hover-background: transparent; @dotnav-item-onclick-background: @global-primary-background; @dotnav-item-active-background: @global-primary-background; @dotnav-item-border-width: @global-border-width; @dotnav-item-border: @global-color; @dotnav-item-hover-border: @global-primary-background; @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-hover-background: transparent; @inverse-dotnav-item-onclick-background: @inverse-global-primary-background; @inverse-dotnav-item-active-background: @inverse-global-primary-background; @inverse-dotnav-item-border: @global-inverse-color; @inverse-dotnav-item-hover-border: @inverse-global-muted-color; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-primary-background; @iconnav-item-active-color: @global-primary-background; @text-lead-font-size: 20px; @text-lead-line-height: 1.4; @text-large-font-size: 20px; @text-large-line-height: 1.4; @text-meta-link-color: @global-link-color; @text-meta-link-hover-color: @global-link-hover-color; @text-lead-font-family: @global-secondary-font-family; @text-lead-font-weight: @global-secondary-font-weight; @text-lead-text-transform: @global-secondary-text-transform; @text-lead-letter-spacing: @global-secondary-letter-spacing; @text-lead-font-style: @global-secondary-font-style; @internal-text-background-color-gradient: linear-gradient(150deg, #2F3B8A 0%, #60165E 20%, #DE2867 70%, #F4D000 100%); @inverse-global-color: fade(@global-inverse-color, 80%); @inverse-global-inverse-color: @global-emphasis-color;assets/uikit-themes/master-creative-hub/styles/white-purple.less000064400000003513151666572410021204 0ustar00// // Global // @global-color: #433848; @global-emphasis-color: #340648; @global-link-color: #621CD3; @global-primary-background: #8659CF; @global-secondary-background: #3B324A; @global-success-background: #5CD289; @global-warning-background: #FFC82A; @global-danger-background: #FF545F; // // Alert // @alert-primary-background: #EBE6FA; @alert-success-background: #DFEFE7; @alert-warning-background: #FFF7D5; @alert-danger-background: #FCEBEC; // // Button // @internal-button-default-hover-gradient: linear-gradient(320deg, spin(@global-primary-background, 15%), @global-primary-background); @internal-button-default-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 35%), @global-primary-background); @internal-button-primary-gradient: linear-gradient(320deg, spin(@global-primary-background, 15%), @global-primary-background); @internal-button-primary-hover-gradient: linear-gradient(320deg, spin(@global-primary-background, 25%), spin(@global-primary-background, 8%)); @internal-button-primary-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 35%), spin(@global-primary-background, 8%)); @internal-button-secondary-hover-gradient: linear-gradient(320deg, spin(@global-primary-background, 15%), @global-primary-background); @internal-button-secondary-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 35%), spin(@global-primary-background, 8%)); // // Card // @internal-card-primary-gradient: linear-gradient(320deg, spin(@card-primary-background, 15%), @card-primary-background); @internal-card-primary-hover-gradient: linear-gradient(320deg, spin(@card-primary-background, 20%), spin(@card-primary-background, 4%)); // // Text // @internal-text-background-color-gradient: linear-gradient(150deg, #5201D6 5%, #8D67CB 75%, #BA9EE8 100%); assets/uikit-themes/master-creative-hub/styles/white-green.less000064400000002111151666572410020766 0ustar00// // Global // @global-color: #001F21; @global-emphasis-color: #01454A; @global-muted-color: #A7AEAE; @global-link-color: #13C694; @global-link-hover-color: #04B4CB; @global-muted-background: #F7F8F8; @global-primary-background: #16CA88; @global-secondary-background: #011C1D; @global-success-background: #94E277; @global-warning-background: #FFC851; @global-danger-background: #FF5371; // // Alert // @alert-success-background: lighten(tint(@global-success-background, 40%), 12%); @alert-warning-background: lighten(tint(@global-warning-background, 40%), 12%); @alert-danger-background: lighten(tint(@global-danger-background, 40%), 12%); // // Button // @internal-button-primary-hover-gradient: linear-gradient(320deg, spin(@global-primary-background, 6%), spin(@global-primary-background, 30%)); // // Card // @internal-card-primary-hover-gradient: linear-gradient(320deg, spin(@card-primary-background, 6%), spin(@card-primary-background, 25%)); // // Text // @internal-text-background-color-gradient: linear-gradient(150deg, #04B4CB 20%, #20D662 100%); assets/uikit-themes/master-creative-hub/styles/white-blue.less000064400000001635151666572410020627 0ustar00// // Global // @global-color: #15124A; @global-emphasis-color: #140F4D; @global-muted-color: #9494A5; @global-link-color: #1B69F4; @global-link-hover-color: #9D48F8; @global-muted-background: #F6F8FB; @global-primary-background: #126BF3; @global-secondary-background: #282768; @global-success-background: #35D589; @global-warning-background: #FFAC3A; @global-danger-background: #F3466B; @global-border: #E7E8EB; // // Alert // @alert-background: #F4F7FA; @alert-primary-background: #DDE5F5; @alert-success-background: #D6F1E2; @alert-warning-background: #FEF1E5; @alert-danger-background: #FCE3E8; // // Button // @internal-button-primary-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 15%), spin(@global-primary-background, 45%)); // // Text // @internal-text-background-color-gradient: linear-gradient(140deg, #0B08B2 10%, #0B6DF3 50%, #9D48F8 85%); assets/uikit-themes/master-creative-hub/styles/white-orange.less000064400000003443151666572410021152 0ustar00// // Global // @global-color: #24293C; @global-emphasis-color: #222531; @global-link-color: #F5604B; @global-link-hover-color: #D93C27; @global-muted-background: #F7F7F7; @global-primary-background: #FE8C71; @global-secondary-background: #222531; @global-success-background: #4DC376; @global-warning-background: #FFAE19; @global-danger-background: #F44033; // // Alert // @alert-primary-background: #FEEBE7; // // Button // @internal-button-default-hover-gradient: linear-gradient(320deg, spin(@global-primary-background, 15%), @global-primary-background); @internal-button-default-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 25%), @global-primary-background); @internal-button-primary-gradient: linear-gradient(320deg, spin(@global-primary-background, 15%), @global-primary-background); @internal-button-primary-hover-gradient: linear-gradient(320deg, spin(@global-primary-background, 20%), spin(@global-primary-background, 6%)); @internal-button-primary-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 25%), spin(@global-primary-background, 4%)); @internal-button-secondary-hover-gradient: linear-gradient(320deg, spin(@global-primary-background, 15%), @global-primary-background); @internal-button-secondary-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 20%), spin(@global-primary-background, 4%)); // // Card // @internal-card-primary-gradient: linear-gradient(320deg, spin(@card-primary-background, 15%), @card-primary-background); @internal-card-primary-hover-gradient: linear-gradient(320deg, spin(@card-primary-background, 15%), spin(@card-primary-background, 4%)); // // Text // @internal-text-background-color-gradient: linear-gradient(150deg, #FF6550 15%, #FF9872 90%); assets/uikit-themes/master-creative-hub/styles/white-turquoise.less000064400000002574151666572410021743 0ustar00// // Global // @global-color: #32477E; @global-emphasis-color: #13254B; @global-muted-color: #A3A3B0; @global-link-color: #25B5B4; @global-link-hover-color: #1A2980; @global-muted-background: #FAFBFC; @global-primary-background: #26B9C4; @global-secondary-background: #0D1933; @global-success-background: #6DD989; @global-warning-background: #FFB237; @global-danger-background: #F35270; @global-border: #EBEBED; // // Alert // @alert-success-background: #D7F3DF; @alert-warning-background: #F8F1D9; @alert-danger-background: #FBE5E7; // // Button // @internal-button-default-active-gradient: linear-gradient(320deg, @global-primary-background, spin(@global-primary-background, 25%)); @internal-button-primary-hover-gradient: linear-gradient(320deg, @global-primary-background, spin(@global-primary-background, 20%)); @internal-button-primary-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 5%), spin(@global-primary-background, 25%)); @internal-button-secondary-active-gradient: linear-gradient(320deg, spin(@global-primary-background, 5%), spin(@global-primary-background, 25%)); // // Card // @internal-card-primary-hover-gradient: linear-gradient(320deg, spin(@card-primary-background, 2%), spin(@card-primary-background, 10%)); // // Text // @internal-text-background-color-gradient: linear-gradient(150deg, #1A2980, #15D1CF); assets/uikit-themes/master-creative-hub/icons/nav-parent-icon-large.svg000064400000000302151666572410022262 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="1.032 4.517 8 11.483 14.968 4.517" /> </svg> assets/uikit-themes/master-district/images/accordion-open.svg000064400000000244151666572410020477 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <line stroke="#000" stroke-width="2" x1="1" y1="8" x2="15" y2="8" /> </svg> assets/uikit-themes/master-district/images/divider-icon.svg000064400000000413151666572410020151 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.1" x1="0" y1="0" x2="10" y2="10" /> <line fill="none" stroke="#000" stroke-width="1.1" x1="10" y1="0" x2="0" y2="10" /> </svg> assets/uikit-themes/master-district/images/accordion-close.svg000064400000000355151666572410020646 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <line stroke="#000" stroke-width="2" x1="1" y1="8" x2="15" y2="8" /> <line stroke="#000" stroke-width="2" x1="8" y1="1" x2="8" y2="15" /> </svg> assets/uikit-themes/master-district/images/list-bullet.svg000064400000000251151666572410020035 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1" cx="5" cy="5" r="4" /> </svg> assets/uikit-themes/master-district/icons/slidenav-previous.svg000064400000000275151666572410021130 0ustar00<svg width="18" height="16" viewBox="0 0 18 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="18,9 4.41,9 9.71,14.29 8.29,15.71 0.59,8 8.29,0.29 9.71,1.71 4.41,7 18,7" /> </svg> assets/uikit-themes/master-district/icons/pagination-previous.svg000064400000000372151666572410021452 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5" /> <line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5" /> </svg> assets/uikit-themes/master-district/icons/pagination-next.svg000064400000000373151666572410020555 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5" /> <line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5" /> </svg> assets/uikit-themes/master-district/icons/totop.svg000064400000000421151666572410016607 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.6" points="4.5,9.5 10,4 15.5,9.5" /> <line fill="none" stroke="#000" stroke-width="1.6" x1="10" y1="17" x2="10" y2="5" /> </svg> assets/uikit-themes/master-district/icons/close-icon.svg000064400000000413151666572410017476 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="1.6" x1="1" y1="1" x2="13" y2="13" /> <line fill="none" stroke="#000" stroke-width="1.6" x1="13" y1="1" x2="1" y2="13" /> </svg> assets/uikit-themes/master-district/icons/slidenav-next.svg000064400000000276151666572410020233 0ustar00<svg width="18" height="16" viewBox="0 0 18 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="17.41,8 9.71,15.71 8.29,14.29 13.59,9 0,9 0,7 13.59,7 8.29,1.71 9.71,0.29" /> </svg> assets/uikit-themes/master-district/icons/close-large.svg000064400000000330151666572410017636 0ustar00<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <polygon fill="#000" points="24,1.4 22.6,0 12,10.6 1.4,0 0,1.4 10.6,12 0,22.6 1.4,24 12,13.4 22.6,24 24,22.6 13.4,12" /> </svg> assets/uikit-themes/master-district/icons/nav-parent-icon-large.svg000064400000000304151666572410021533 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2.4" points="1.059 4.529 8 11.471 14.941 4.529" /> </svg> assets/uikit-themes/master-district/icons/slidenav-previous-large.svg000064400000000275151666572410022220 0ustar00<svg width="18" height="16" viewBox="0 0 18 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="18,9 4.41,9 9.71,14.29 8.29,15.71 0.59,8 8.29,0.29 9.71,1.71 4.41,7 18,7" /> </svg> assets/uikit-themes/master-district/icons/slidenav-next-large.svg000064400000000276151666572410021323 0ustar00<svg width="18" height="16" viewBox="0 0 18 16" xmlns="http://www.w3.org/2000/svg"> <polygon points="17.41,8 9.71,15.71 8.29,14.29 13.59,9 0,9 0,7 13.59,7 8.29,1.71 9.71,0.29" /> </svg> assets/uikit-themes/master-district/_import.less000064400000062515151666572410016163 0ustar00@internal-fonts: 'Barlow:400,500,600'; @global-font-family: Barlow; @global-font-size: 16px; @global-line-height: 1.6; @global-2xlarge-font-size: 46px; @global-xlarge-font-size: 38px; @global-large-font-size: 30px; @global-medium-font-size: 24px; @global-small-font-size: 14px; @global-primary-font-family: inherit; @global-primary-font-weight: 600; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: inherit; @global-secondary-font-weight: 400; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #000; @global-emphasis-color: #000; @global-muted-color: rgba(0,0,0,0.5); @global-link-color: #727272; @global-link-hover-color: #000; @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #fafafa; @global-primary-background: #F5EAEC; @global-secondary-background: #101010; @global-success-background: #37b750; @global-warning-background: #fa985a; @global-danger-background: #e54856; @global-border: #000; @global-border-width: 1px; @global-border-radius: 0; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 2px 26px 52px 0 rgba(0,0,0,0.06); @global-large-box-shadow: 0 15px 55px rgba(0,0,0,0.08); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 25px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 10px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 50px; @global-control-small-height: 38px; @global-control-large-height: 60px; @global-z-index: 1000; @base-link-hover-text-decoration: none; @base-ins-background: @global-primary-background; @base-mark-background: @global-primary-background; @base-h3-line-height: 1.2; @base-h5-font-size: 20px; @base-h6-font-size: 12px; @base-blockquote-font-style: normal; @base-blockquote-footer-margin-top: @global-margin; @base-selection-background: @global-primary-background; @base-selection-color: @global-emphasis-color; @base-pre-padding: 20px; @base-pre-background: @global-background; @base-blockquote-footer-em-dash: false; @base-h4-font-weight: 600; @base-h5-font-weight: 600; @base-h6-text-transform: uppercase; @base-h6-letter-spacing: 1px; @base-pre-border-width: @global-border-width; @base-pre-border: fade(@global-border, 10%); @base-pre-border-radius: 3px; @inverse-base-link-hover-color: @inverse-global-color; @link-heading-hover-color: darken(saturate(@global-primary-background, 15%), 7%); @heading-small-font-size-m: 54px; @heading-medium-font-size-l: 76px; @heading-large-font-size-l: 100px; @heading-small-line-height: 1.1; @heading-large-line-height: 1; @heading-divider-border-width: ~'calc(0.2px + 0.04em)'; @heading-bullet-border-width: ~'calc(2px + 0.05em)'; @heading-line-border-width: ~'calc(0.2px + 0.04em)'; @internal-divider-icon-image: "../../../../uikit-themes/master-district/images/divider-icon.svg"; @divider-small-width: 45px; @divider-vertical-height: 60px; @list-divider-border: fade(@global-border, 10%); @description-list-divider-term-border: fade(@global-border, 10%); @description-list-term-font-size: 17px; @table-header-cell-font-size: 12px; @table-header-cell-font-weight: 600; @table-header-cell-color: @global-emphasis-color; @table-row-active-background: @global-muted-background; @table-divider-border: fade(@global-border, 10%); @table-header-cell-letter-spacing: 0.5px; @inverse-table-divider-border: fade(@inverse-global-border, 10%); @inverse-table-divider-header-border: fade(@inverse-global-border, 10%); @inverse-table-striped-border: fade(@inverse-global-border, 10%); @icon-link-color: @global-emphasis-color; @icon-link-hover-color: @global-muted-color; @icon-link-active-color: darken(@icon-link-hover-color, 5%); @icon-button-size: 45px; @icon-button-background: transparent; @icon-button-color: @global-emphasis-color; @icon-button-hover-background: transparent; @icon-button-hover-color: @global-muted-color; @icon-button-active-background: lighten(@icon-button-hover-background, 7%); @icon-button-active-color: fade(@icon-button-hover-color, 80%); @icon-button-border-width: @global-border-width; @icon-button-border: fade(@global-border, 10%); @icon-button-hover-border: @icon-button-border; @icon-button-active-border: @icon-button-border; @inverse-icon-link-color: @inverse-global-emphasis-color; @inverse-icon-link-hover-color: @inverse-global-muted-color; @inverse-icon-button-background: transparent; @inverse-icon-button-color: @inverse-global-emphasis-color; @inverse-icon-button-hover-background: transparent; @inverse-icon-button-hover-color: @inverse-global-muted-color; @inverse-icon-button-active-background: transparent; @inverse-icon-button-active-color: @inverse-icon-button-color; @inverse-icon-button-border: fade(@inverse-global-border, 10%); @inverse-icon-button-hover-border: @inverse-icon-button-border; @inverse-icon-button-active-border: @inverse-icon-button-border; @form-range-track-height: 2px; @form-range-track-background: lighten(@global-color, 80%); @form-range-track-focus-background: @global-color; @form-range-thumb-height: 11px; @form-range-thumb-background: @global-background; @form-range-thumb-border-width: 2px; @form-range-thumb-border: @global-secondary-background; @inverse-form-range-track-background: darken(@inverse-global-primary-background; 45%); @inverse-form-range-track-focus-background: darken(@inverse-global-primary-background, 5%); @form-background: @global-background; @form-focus-background: @form-background; @form-focus-color: fade(@form-color, 70%); @form-placeholder-color: @global-color; @form-large-font-size: @global-font-size; @form-radio-background: transparent; @form-radio-checked-background: @global-emphasis-color; @form-radio-checked-focus-background: @global-emphasis-color; @form-icon-color: @form-placeholder-color; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: fade(@form-border, 30%); @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @form-focus-border; @form-radio-border-width: @global-border-width; @form-radio-border: @global-border; @form-radio-focus-border: fade(@global-border, 30%); @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-color: @inverse-global-emphasis-color; @inverse-form-focus-background: transparent; @inverse-form-placeholder-color: @inverse-global-emphasis-color; @inverse-form-radio-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: fade(@inverse-form-border, 30%); @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: fade(@inverse-form-border, 30%); @button-large-font-size: @global-font-size; @button-padding-horizontal: @global-margin; @button-large-padding-horizontal: (@global-margin * 2); @button-default-background: transparent; @button-default-hover-background: @global-secondary-background; @button-default-hover-color: @global-inverse-color; @button-default-active-background: @button-default-hover-background; @button-default-active-color: @button-default-hover-color; @button-primary-background: darken(@global-primary-background, 5%); @button-primary-color: @global-emphasis-color; @button-primary-hover-background: lighten(@button-primary-background, 3%); @button-primary-hover-color: @global-emphasis-color; @button-primary-active-background: lighten(@button-primary-hover-background, 2%); @button-primary-active-color: @global-emphasis-color; @button-secondary-hover-background: transparent; @button-secondary-hover-color: @global-secondary-background; @button-secondary-active-background: transparent; @button-secondary-active-color: fade(@button-secondary-hover-color, 80%); @button-danger-hover-background: transparent; @button-danger-hover-color: @global-danger-background; @button-danger-active-background: transparent; @button-danger-active-color: fade(@button-danger-hover-color, 80%); @button-border-width: @global-border-width; @button-default-border: @global-secondary-background; @button-default-hover-border: @button-default-border; @button-default-active-border: @button-default-border; @button-secondary-hover-border: @global-secondary-background; @button-secondary-active-border: fade(@global-secondary-background, 60%); @button-danger-hover-border: @global-danger-background; @button-danger-active-border: fade(@global-danger-background, 60%); .hook-button-text() { &::before { bottom: -4px; } } @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-emphasis-color; @inverse-button-default-hover-background: @inverse-global-primary-background; @inverse-button-default-active-background: transparent; @inverse-button-default-active-color: @inverse-button-default-color; @inverse-button-primary-background: @button-primary-background; @inverse-button-primary-color: @button-primary-color; @inverse-button-primary-hover-background: lighten(@inverse-button-primary-background, 3%); @inverse-button-primary-hover-color: @button-primary-hover-color; @inverse-button-primary-active-background: @button-primary-active-background; @inverse-button-primary-active-color: @button-primary-active-color; @inverse-button-secondary-hover-background: transparent; @inverse-button-secondary-hover-color: @inverse-global-emphasis-color; @inverse-button-secondary-active-background: transparent; @inverse-button-secondary-active-color: fade(@inverse-button-secondary-hover-color, 80%); @inverse-button-text-hover-color: @inverse-button-text-color; @inverse-button-default-border: @inverse-button-default-color; @inverse-button-default-active-border: @inverse-button-default-border; @inverse-button-secondary-hover-border: @inverse-button-default-color; @inverse-button-secondary-active-border: fade(@inverse-button-secondary-hover-border, 80%); @progress-bar-background: @global-secondary-background; @section-primary-background: lighten(@global-primary-background, 2%); @section-primary-color-mode: dark; @container-large-max-width: 1360px; @tile-primary-color-mode: dark; @card-badge-background: @global-secondary-background; @card-badge-font-size: 11px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-primary-color: @global-emphasis-color; @card-primary-hover-background: darken(@card-primary-background, 2%); @card-primary-color-mode: dark; @card-badge-font-family: @global-primary-font-family; @card-badge-font-weight: @global-primary-font-weight; @card-badge-text-transform: uppercase; @card-badge-letter-spacing: 1px; @card-hover-border-width: @global-border-width; @card-hover-border: @global-border; @card-default-border-width: @global-border-width; @card-default-border: @global-border; @card-default-hover-border: lighten(@card-default-border, 80%); @close-color: @global-emphasis-color; @close-hover-color: @global-muted-color; @inverse-close-color: @inverse-global-emphasis-color; @totop-color: @global-emphasis-color; @totop-hover-color: @global-muted-color; @totop-active-color: @totop-color; @inverse-totop-color: @inverse-global-emphasis-color; @inverse-totop-hover-color: @inverse-global-muted-color; @inverse-totop-active-color: @inverse-totop-color; @alert-primary-background: @global-primary-background; @alert-primary-color: @global-emphasis-color; @badge-size: 20px; @badge-background: darken(@card-primary-background, 5%); @badge-color: @global-emphasis-color; @badge-font-weight: @global-primary-font-weight; @badge-font-family: @global-primary-font-family; @badge-font-style: @global-primary-font-style; @label-padding-vertical: 2px; @label-padding-horizontal: 5px; @label-background: transparent; @label-color: @global-emphasis-color; @label-success-background: transparent; @label-success-color: @global-success-background; @label-warning-background: transparent; @label-warning-color: @global-warning-background; @label-danger-background: transparent; @label-danger-color: @global-danger-background; @label-border-width: @global-border-width; @label-border: @global-secondary-background; @label-success-border: @global-success-background; @label-warning-border: @global-warning-background; @label-danger-border: @global-danger-background; @inverse-label-background: transparent; @inverse-label-color: @inverse-global-emphasis-color; @inverse-label-border: @inverse-global-border; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @comment-title-font-size: @global-font-size; @search-placeholder-color: @global-emphasis-color; @search-icon-color: @search-placeholder-color; @search-default-padding-horizontal: 15px; @search-default-background: transparent; @search-navbar-padding-horizontal: 15px; @search-navbar-background: transparent; @search-navbar-focus-background: transparent; @search-medium-padding-horizontal: 20px; @search-medium-font-size: @global-font-size; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-muted-color; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: fade(@search-default-border, 30%); @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: fade(@search-navbar-border, 30%); @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: fade(@search-default-border, 30%); @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: fade(@search-default-border, 30%); @inverse-search-placeholder-color: @inverse-global-emphasis-color; @inverse-search-icon-color: @inverse-global-emphasis-color; @inverse-search-default-background: transparent; @inverse-search-navbar-focus-background: @inverse-global-muted-background; @inverse-search-toggle-color: @inverse-global-emphasis-color; @inverse-search-toggle-hover-color: @inverse-global-muted-color; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: fade(@inverse-search-default-border, 30%); @inverse-search-navbar-border: @global-inverse-color; @inverse-search-navbar-focus-border: fade(@inverse-search-navbar-border, 60%); @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: fade(@inverse-search-default-border, 30%); @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: fade(@inverse-search-default-border, 30%); @accordion-title-font-size: 20px; @accordion-title-line-height: 1.1; @accordion-title-hover-color: @global-muted-color; @internal-accordion-icon-close-image: "../../../../uikit-themes/master-district/images/accordion-close.svg"; @internal-accordion-icon-open-image: "../../../../uikit-themes/master-district/images/accordion-open.svg"; @accordion-title-font-weight: 500; @accordion-item-border-width: @global-border-width; @accordion-item-border: fade(@global-border, 10%); @inverse-accordion-title-hover-color: @inverse-global-muted-color; @dropdown-padding: @global-margin; @dropdown-background: @global-secondary-background; @dropdown-color-mode: light; @dropdown-nav-item-color: fade(@global-inverse-color, 60%); @dropdown-nav-item-hover-color: @global-inverse-color; @dropdown-nav-subtitle-font-size: 12px; @dropdown-nav-header-color: @global-inverse-color; @dropdown-nav-divider-border: fade(@global-inverse-color, 15%); @dropdown-nav-sublist-item-color: fade(@global-inverse-color, 60%); @dropdown-nav-sublist-item-hover-color: @global-inverse-color; @dropdown-nav-item-padding-vertical: 0; @dropdown-nav-subtitle-line-height: 1.4; @dropbar-padding-top: 30px; @dropbar-background: @global-secondary-background; @dropbar-color-mode: light; @dropbar-large-padding-top: 60px; @notification-message-background: @global-background; @notification-message-primary-color: darken(saturate(@global-primary-background, 15%), 25%); @notification-message-success-color: @global-success-background; @notification-message-warning-color: @global-warning-background; @notification-message-danger-color: @global-danger-background; @notification-message-primary-background: @global-background; @notification-message-success-background: @global-background; @notification-message-warning-background: @global-background; @notification-message-danger-background: @global-background; @notification-message-primary-color-mode: dark; @notification-message-success-color-mode: dark; @notification-message-warning-color-mode: dark; @notification-message-danger-color-mode: dark; @notification-message-border-width: @global-border-width; @notification-message-border: @global-border; @notification-message-primary-border: darken(@global-primary-background, 15%); @notification-message-success-border: @global-success-background; @notification-message-warning-border: @global-warning-background; @notification-message-danger-border: @global-danger-background; @tooltip-background: @global-secondary-background; @nav-header-font-size: 12px; @nav-default-divider-border: fade(@global-border, 10%); @nav-primary-font-size: @global-medium-font-size; @nav-primary-line-height: 1.4; @nav-primary-subtitle-font-size: @global-font-size; @nav-primary-divider-border: fade(@global-border, 10%); @nav-secondary-divider-border: fade(@global-border, 10%); @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-medium-font-size-l: 76px; @nav-large-font-size: 64px; @nav-large-font-size-m: 76px; @nav-large-font-size-l: 100px; @nav-xlarge-font-size: @nav-large-font-size-m; @nav-xlarge-font-size-m: @nav-large-font-size-l; @nav-dividers-border: fade(@global-border, 10%); @nav-secondary-margin-top: 10px; @nav-header-font-weight: 600; @nav-header-letter-spacing: 0.5px; @nav-default-subtitle-line-height: 1.4; @nav-primary-font-weight: normal; @nav-secondary-font-weight: @global-primary-font-weight; @nav-secondary-subtitle-font-weight: normal; @nav-secondary-subtitle-line-height: 1.4; @inverse-nav-default-divider-border: fade(@inverse-global-border, 10%); @inverse-nav-primary-divider-border: fade(@inverse-global-border, 10%); @inverse-nav-secondary-divider-border: fade(@inverse-global-border, 10%); @inverse-nav-dividers-border: fade(@inverse-global-border, 10%); @navbar-background: @global-background; @navbar-nav-item-height: 100px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-font-size: 17px; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-toggle-color: @global-color; @navbar-toggle-hover-color: @global-muted-color; @navbar-subtitle-font-size: 12px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-width: 250px; @navbar-dropdown-padding: @global-gutter; @navbar-dropdown-background: lighten(@global-secondary-background, 2%); @navbar-dropdown-color: fade(@global-inverse-color, 60%); @navbar-dropdown-color-mode: light; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-color: fade(@global-inverse-color, 60%); @navbar-dropdown-nav-item-hover-color: @global-inverse-color; @navbar-dropdown-nav-item-active-color: @global-inverse-color; @navbar-dropdown-nav-header-color: @global-inverse-color; @navbar-dropdown-nav-divider-border: fade(@global-inverse-color, 10%); @navbar-dropdown-nav-sublist-item-color: fade(@global-inverse-color, 60%); @navbar-dropdown-nav-sublist-item-hover-color: @global-inverse-color; @navbar-nav-item-padding-horizontal-m: 0; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: 30px; @navbar-nav-item-line-margin-horizontal-m: 0; @navbar-nav-item-line-height: @global-border-width; @navbar-nav-item-line-transition-duration: 0.2s; @navbar-nav-item-line-hover-height: @navbar-nav-item-line-height; @navbar-nav-item-line-hover-background: @global-emphasis-color; @navbar-nav-item-line-onclick-height: @navbar-nav-item-line-height; @navbar-nav-item-line-onclick-background: @global-emphasis-color; @navbar-nav-item-line-active-height: @navbar-nav-item-line-height; @navbar-nav-item-line-active-background: @global-emphasis-color; @navbar-primary-gap-m: 40px; @navbar-primary-nav-gap-m: 40px; @navbar-subtitle-line-height: 1.4; @navbar-primary-nav-item-font-size: 22px; @navbar-dropdown-nav-subtitle-line-height: 1.4; @inverse-navbar-nav-item-color: @inverse-global-emphasis-color; @inverse-navbar-nav-item-hover-color: @inverse-global-emphasis-color; @inverse-navbar-item-color: @inverse-global-emphasis-color; @inverse-navbar-toggle-color: @inverse-global-emphasis-color; @inverse-navbar-toggle-hover-color: @inverse-global-muted-color; @subnav-margin-horizontal: 15px; @subnav-item-color: @global-color; @subnav-item-hover-color: @global-muted-color; @subnav-item-active-color: @global-muted-color; @subnav-divider-border-height: 1em; @subnav-pill-item-hover-background: transparent; @subnav-pill-item-hover-color: @global-muted-color; @subnav-pill-item-active-background: transparent; @subnav-pill-item-active-color: @subnav-pill-item-color; @subnav-pill-item-border-width: @global-border-width; @subnav-pill-item-active-border: @global-border; @inverse-subnav-item-color: @inverse-global-emphasis-color; @inverse-subnav-item-hover-color: @inverse-global-muted-color; @inverse-subnav-item-active-color: @inverse-global-muted-color; @inverse-subnav-pill-item-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-hover-background: transparent; @inverse-subnav-pill-item-hover-color: @inverse-global-muted-color; @inverse-subnav-pill-item-active-background: transparent; @inverse-subnav-pill-item-active-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-active-border: @inverse-global-border; @breadcrumb-item-color: @global-emphasis-color; @breadcrumb-item-hover-color: @global-muted-color; @breadcrumb-item-active-color: @breadcrumb-item-color; @breadcrumb-divider-margin-horizontal: @global-small-margin; @breadcrumb-divider-color: @global-border; @breadcrumb-item-disabled-color: @global-muted-color; .hook-breadcrumb-item-disabled() { color: @breadcrumb-item-disabled-color; } @inverse-breadcrumb-item-color: @inverse-global-emphasis-color; @inverse-breadcrumb-item-active-color: @inverse-breadcrumb-item-hover-color; @inverse-breadcrumb-divider-color: @inverse-global-emphasis-color; @pagination-margin-horizontal: 20px; @pagination-item-padding-vertical: 2px; @pagination-item-padding-horizontal: 4px; @pagination-item-hover-color: @global-emphasis-color; @pagination-item-active-color: @pagination-item-hover-color; @pagination-item-min-width: 16px; @pagination-item-border-mode: -bottom; @pagination-item-border-width: @global-border-width; @pagination-item-active-border: @pagination-item-active-color; @inverse-pagination-item-hover-color: @inverse-global-emphasis-color; @inverse-pagination-item-active-color: @inverse-global-emphasis-color; @inverse-pagination-item-active-border: @inverse-global-emphasis-color; @tab-margin-horizontal: @global-gutter; @tab-item-padding-horizontal: 0; @tab-item-hover-color: @global-emphasis-color; @tab-vertical-item-padding-horizontal: 10px; @tab-item-font-size: 17px; @tab-border: transparent; @tab-item-active-border: @global-secondary-background; @inverse-tab-item-hover-color: @inverse-global-emphasis-color; @inverse-tab-border: transparent; @slidenav-color: @global-emphasis-color; @slidenav-hover-color: @global-muted-color; @slidenav-active-color: @slidenav-color; @inverse-slidenav-color: @inverse-global-emphasis-color; @inverse-slidenav-hover-color: fade(@inverse-slidenav-color, 90%); @dotnav-item-width: 12px; @dotnav-item-background: fade(@global-secondary-background, 15%); @dotnav-item-hover-background: @global-secondary-background; @dotnav-item-onclick-background: transparent; @dotnav-item-active-background: transparent; @dotnav-item-border-width: 2px; @dotnav-item-active-border: @global-secondary-background; @inverse-dotnav-item-background: @inverse-global-muted-background; @inverse-dotnav-item-hover-background: @inverse-global-emphasis-color; @inverse-dotnav-item-onclick-background: @inverse-global-emphasis-color; @inverse-dotnav-item-active-background: transparent; @inverse-dotnav-item-active-border: @inverse-global-emphasis-color; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @lightbox-background: @global-background; @lightbox-color-mode: dark; @lightbox-caption-padding-vertical: @global-margin; @lightbox-caption-padding-horizontal: @global-small-margin; @lightbox-caption-background: @lightbox-background; @lightbox-caption-color: @global-color; @width-medium-width: 380px; @text-lead-font-size: 20px; @text-lead-line-height: 1.4; @text-meta-font-size: 12px; @text-large-font-size: 20px; @text-large-line-height: 1.4; @text-primary-color: darken(saturate(@global-primary-background, 8%), 15%); @text-background-color: darken(saturate(@global-primary-background, 10%), 15%); @text-lead-font-weight: 500; @text-meta-font-weight: @global-primary-font-weight; @text-meta-text-transform: uppercase; @text-meta-letter-spacing: 1px; @inverse-text-primary-color: @inverse-global-emphasis-color; @dropcap-font-size: ((@global-line-height * 2) * 1em); @logo-font-weight: @global-primary-font-weight; @inverse-global-color: fade(@global-inverse-color, 80%); @inverse-global-inverse-color: @global-emphasis-color; @inverse-global-muted-background: fade(@global-inverse-color, 5%); @inverse-global-border: fade(@global-inverse-color, 15%);assets/uikit-themes/master-district/styles/white-turquoise.less000064400000001225151666572410021202 0ustar00// // Global // @global-color: #4D4D4D; @global-muted-color: #A6A6A6; @global-emphasis-color: #4D4D4D; @global-link-color: #79D5D5; @global-muted-background: #F5F5F5; @global-primary-background: #DFF5F5; @global-secondary-background: #414048; @global-danger-background: #f04858; @global-border: #4D4D4D; // // Alert // @alert-primary-background: @global-primary-background; // // Navbar // @navbar-dropdown-nav-sublist-item-active-color: #FFFFFF; // // Text // @text-primary-color: darken(@global-primary-background, 20%); @text-background-color: darken(@global-primary-background, 20%); assets/uikit-themes/master-district/styles/white-red.less000064400000007445151666572410017726 0ustar00// // Global // @global-color: #9F968C; @global-emphasis-color: #C8A17B; @global-link-color: #EB6161; @global-muted-color: #C8BFB6; @global-link-hover-color: #C8A17B; @global-danger-background: #f3443e; @global-muted-background: #F5F1EE; @global-primary-background: #EB6161; @global-secondary-background: #C8A17B; @global-success-background: #A0BC30; @global-warning-background: #e88e4a; @global-border: #E8E4E0; // // Accordion // @accordion-item-border: @global-border; @accordion-title-color: @global-color; @accordion-title-hover-color: @global-color; // // Alert // @alert-primary-background: #FCEEEE; @alert-primary-color: @global-color; // // Badge // @badge-color: @global-inverse-color; // // Base // @base-ins-background: #F5EEE8; @base-mark-background: #F5EEE8; @base-blockquote-color: @global-color; @base-selection-color: @global-inverse-color; // // Button // @button-primary-color: #FFFFFF; @button-primary-hover-background: #F06E6E; @button-primary-hover-color: #FFFFFF; @button-primary-active-color: #FFFFFF; // // Card // @card-badge-background: darken(@global-primary-background, 5%); @card-hover-border: @global-emphasis-color; @card-default-border: @global-emphasis-color; @card-default-hover-border: #E6D4C3; @card-primary-color-mode: light; @card-badge-color: @global-inverse-color; // // Form // @form-focus-border: darken(@form-border, 5%); @form-radio-focus-border: darken(@global-border, 5%); // // Form Range // @form-range-track-background: lighten(@form-range-track-focus-background, 20%); @form-range-track-focus-background: @global-color; // // Icon // @icon-link-hover-color: @global-primary-background; @icon-link-active-color: @global-primary-background; @icon-button-border: @global-emphasis-color; @icon-button-hover-border: @global-primary-background; @icon-button-hover-color: @global-primary-background; @icon-button-active-border: @global-primary-background; // // List // @list-divider-border: @global-border; // // Nav // @nav-default-item-hover-color: @global-emphasis-color; @nav-default-divider-border: @global-border; @nav-default-sublist-item-hover-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-emphasis-color; @nav-primary-sublist-item-hover-color: @global-emphasis-color; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-subtitle-active-color: @global-emphasis-color; @inverse-nav-secondary-subtitle-color: @inverse-global-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; // // Navbar // @navbar-dropdown-nav-sublist-item-active-color: #FFFFFF; @navbar-nav-item-color: @global-color; @navbar-toggle-hover-color: @global-emphasis-color; // // Section // @section-primary-color-mode: light; // // Search // @search-default-focus-border: darken(@search-default-border, 5%); @search-navbar-focus-border: fade(@search-navbar-border, 60%); @search-toggle-color: @global-color; @search-toggle-hover-color: @global-emphasis-color; // // Subnav // @subnav-item-hover-color: @global-emphasis-color; @subnav-item-active-color: @global-emphasis-color; @subnav-pill-item-hover-color: @global-emphasis-color; @subnav-pill-item-active-border: @global-emphasis-color; @subnav-pill-item-active-color: @global-emphasis-color; // // Table // @table-divider-border: #D6CFC7; // // Text // @text-lead-color: @global-color; // // Tile // @tile-primary-color-mode: light; // // WooCommerce // @woocommerce-rating-color: @global-primary-background; assets/uikit-themes/master-district/styles/white-black.less000064400000002777151666572410020233 0ustar00// // Global // @global-color: #1A1A1A; @global-emphasis-color: #1A1A1A; @global-link-color: #ce4622; @global-link-hover-color: #B3B3B3; @global-muted-background: #F6F6F6; @global-primary-background: #1A1A1A; @global-secondary-background: #393939; @global-border: #1A1A1A; // // Alert // @alert-primary-background: #ECECEC; // // Badge // @badge-color: @global-inverse-color; // // Base // @base-ins-background: #fbffc9; @base-mark-background: #fbffc9; // // Button // @button-primary-color: #FFFFFF; @button-primary-hover-background: @global-secondary-background; @button-primary-hover-color: rgba(255, 255, 255, 0.8); @button-primary-active-color: #FFFFFF; // // Card // @card-primary-color-mode: light; @card-badge-background: @global-primary-background; @card-badge-color: @global-inverse-color; // // Inverse // @inverse-nav-default-divider-border: rgba(255, 255, 255, 0.15); @inverse-nav-primary-divider-border: rgba(255, 255, 255, 0.15); // // Navbar // @navbar-dropdown-background: @global-primary-background; @navbar-dropdown-border: rgba(255, 255, 255, 0.15); @navbar-dropdown-nav-divider-border: rgba(255, 255, 255, 0.15); @navbar-dropdown-nav-sublist-item-active-color: #FFFFFF; // // Offcanvas // @offcanvas-bar-background: #000; @offcanvas-bar-color-mode: light; // // Section // @section-primary-color-mode: light; // // Tile // @tile-primary-color-mode: light; assets/uikit-themes/master-district/styles/white-blue.less000064400000003414151666572410020073 0ustar00// // Global // @global-color: #77808E; @global-emphasis-color: #33455F; @global-link-color: #FF7A7B; @global-link-hover-color: #33455F; @global-muted-background: #F1F3F6; @global-primary-background: #33455F; @global-secondary-background: #242D3A; @global-border: #C9D1DD; // // Accordion // @accordion-item-border: @global-border; @accordion-title-hover-color: @global-emphasis-color; // // Alert // @alert-primary-background: #E4ECF7; // // Badge // @badge-color: @global-inverse-color; // // Base // @base-ins-background: #fbffc9; @base-mark-background: #fbffc9; @base-pre-border: #e2e6ec; // // Button // @button-primary-color: #FFFFFF; @button-primary-hover-background: #445875; @button-primary-hover-color: #FFFFFF; @button-primary-active-color: #FFFFFF; // // Card // @card-default-hover-border: #e2e6ec; @card-primary-color-mode: light; @card-badge-color: @global-inverse-color; // // Form Range // @form-range-track-background: lighten(@form-range-track-focus-background, 20%); @form-range-track-focus-background: @global-color; // // DescriptionList // @description-list-divider-term-border: @global-border; // // Icon // @icon-button-border: fade(@global-border, 50%); // // List // @list-divider-border: @global-border; // // Nav // @nav-default-divider-border: @global-border; // // Navbar // @navbar-dropdown-nav-divider-border: rgba(255, 255, 255, 0.2); @navbar-toggle-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-active-color: #FFFFFF; // // Section // @section-primary-color-mode: light; // // Subnav // @subnav-item-color: @global-emphasis-color; // // Tile // @tile-primary-color-mode: light; assets/uikit-themes/master-district/styles/white-yellow.less000064400000001556151666572410020464 0ustar00// // Global // @global-color: #4E4B48; @global-emphasis-color: #4E4B48; @global-link-color: #eab44d; @global-link-hover-color: #4E4B48; @global-muted-background: #F9F9F9; @global-primary-background: #FFFACB; @global-secondary-background: #403A36; @global-border: #585553; // // Alert // @alert-primary-color: #918E6F; // // Base // @base-blockquote-color: #9F968C; // // Notification // @notification-message-primary-border: darken(@global-primary-background, 45%); @notification-message-primary-color: darken(@global-primary-background, 45%); // // Text // @text-background-color: darken(@global-primary-background, 45%); @text-primary-color: darken(@global-primary-background, 45%); @text-lead-color: #9F968C; // // WooCommerce // @woocommerce-rating-color: darken(@global-primary-background, 40%); assets/uikit-themes/master-tomsen-brody/images/accordion-open.svg000064400000000515151666572410021275 0ustar00<svg width="18" height="18" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M2.2,10.7C2.1,10.6,2,10.5,2,10.3V8c0-0.2,0.1-0.4,0.2-0.5c0.1-0.1,0.3-0.2,0.5-0.2h12.7c0.2,0,0.4,0.1,0.5,0.2 C15.9,7.7,16,7.8,16,8v2.2c0,0.2-0.1,0.4-0.2,0.5c-0.1,0.1-0.3,0.2-0.5,0.2H2.7C2.5,10.9,2.3,10.8,2.2,10.7z" /> </svg> assets/uikit-themes/master-tomsen-brody/images/divider-icon.svg000064400000000277151666572410020756 0ustar00<svg width="40" height="25" viewBox="0 0 40 25" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M40 9c0 2.2-1 6.4-2 8H6C3.1 15-.2 9.7 0 9h3V8h3v1h24V6h-1V4h6V0h3v9h2z" /> </svg> assets/uikit-themes/master-tomsen-brody/images/button-text-arrow.svg000064400000000316151666572410022021 0ustar00<svg width="38" height="11" viewBox="0 0 38 11" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M31.1,0l-1.2,1.6l3.6,2.7H0v2h33.5L29.9,9l1.2,1.6L38,5.4c0.1-0.1,0.1-0.2,0-0.3L31.1,0z" /> </svg> assets/uikit-themes/master-tomsen-brody/images/section-dark-background.svg000064400000000370151666572410023074 0ustar00<svg width="1440" height="40" viewBox="0 0 1440 40" xmlns="http://www.w3.org/2000/svg"> <path fill="#FFF" fill-rule="evenodd" opacity=".12" d="M0-13h1v5011H0zM360-13h1v5011h-1zM719-13h1v5011h-1zM1080-13h1v5011h-1zM1439-13h1v5011h-1z" /> </svg> assets/uikit-themes/master-tomsen-brody/images/list-bullet.svg000064400000000476151666572410020643 0ustar00<svg width="13" height="16" viewBox="0 0 13 16" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M2.3,15.8l-2.2-3c-0.1-0.1-0.1-0.3,0.1-0.4l5.6-4.2C6,8.1,6,7.9,5.8,7.8L0.2,3.6C0.1,3.5,0.1,3.3,0.2,3.2l2.2-3 c0.1-0.1,0.3-0.1,0.4-0.1l10,7.6c0.1,0.1,0.1,0.3,0,0.4l-10,7.6C2.6,15.9,2.4,15.9,2.3,15.8z" /> </svg> assets/uikit-themes/master-tomsen-brody/images/section-light-background.svg000064400000000370151666572410023262 0ustar00<svg width="1440" height="40" viewBox="0 0 1440 40" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" fill-rule="evenodd" opacity=".06" d="M0-13h1v5011H0zM360-13h1v5011h-1zM719-13h1v5011h-1zM1080-13h1v5011h-1zM1439-13h1v5011h-1z" /> </svg> assets/uikit-themes/master-tomsen-brody/images/styles/dark-yellow/section-dark-background.svg000064400000000367151666572410026657 0ustar00<svg width="1440" height="40" viewBox="0 0 1440 40" xmlns="http://www.w3.org/2000/svg"> <path fill="#FFF" fill-rule="evenodd" opacity=".1" d="M0-13h1v5011H0zM360-13h1v5011h-1zM719-13h1v5011h-1zM1080-13h1v5011h-1zM1439-13h1v5011h-1z" /> </svg> assets/uikit-themes/master-tomsen-brody/images/accordion-close.svg000064400000001143151666572410021437 0ustar00<svg width="18" height="18" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M17.8,7.5C17.9,7.7,18,7.8,18,8v2.2c0,0.2-0.1,0.4-0.2,0.5s-0.3,0.2-0.5,0.2H11c-0.1,0-0.2,0.1-0.2,0.2v6.3 c0,0.2-0.1,0.4-0.2,0.5c-0.1,0.1-0.3,0.2-0.5,0.2H7.9c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.5V11c0-0.1-0.1-0.2-0.2-0.2 H0.6c-0.2,0-0.4-0.1-0.5-0.2c0-0.1-0.1-0.3-0.1-0.4V8c0-0.2,0.1-0.4,0.2-0.5s0.3-0.2,0.5-0.2H7c0.1,0,0.2-0.1,0.2-0.2V0.6 c0-0.2,0.1-0.4,0.2-0.5C7.5,0.1,7.7,0,7.9,0h2.2c0.2,0,0.4,0.1,0.5,0.2s0.2,0.3,0.2,0.5v6.5c0,0.1,0.1,0.2,0.2,0.2h6.4 C17.6,7.4,17.7,7.4,17.8,7.5z" /> </svg> assets/uikit-themes/master-tomsen-brody/icons/nav-parent-icon-large.svg000064400000000260151666572410022331 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-tomsen-brody/icons/slidenav-next-large.svg000064400000000257151666572410022117 0ustar00<svg width="22" height="32" viewBox="0 0 22 32" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="3" d="M4.5 30.5L20 16 4.5 1.5" /> </svg> assets/uikit-themes/master-tomsen-brody/icons/slidenav-previous.svg000064400000000252151666572410021720 0ustar00<svg width="12" height="18" viewBox="0 0 12 18" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M9.8 1L1.2 9l8.6 8" /> </svg> assets/uikit-themes/master-tomsen-brody/icons/close-icon.svg000064400000000407151666572410020276 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="2" x1="1" y1="1" x2="13" y2="13" /> <line fill="none" stroke="#000" stroke-width="2" x1="13" y1="1" x2="1" y2="13" /> </svg> assets/uikit-themes/master-tomsen-brody/icons/marker.svg000064400000000227151666572410017524 0ustar00<svg width="17" height="17" viewBox="0 0 17 17" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M16,7v3H10v6H7V10H1V7H7V1h3V7Z" /> </svg> assets/uikit-themes/master-tomsen-brody/icons/totop.svg000064400000000253151666572410017407 0ustar00<svg width="12" height="15" viewBox="0 0 12 15" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M1 7l5-6 5 6M6 2v13" /> </svg> assets/uikit-themes/master-tomsen-brody/icons/slidenav-next.svg000064400000000253151666572410021023 0ustar00<svg width="12" height="18" viewBox="0 0 12 18" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="2" d="M2.2 17l8.6-8-8.6-8" /> </svg> assets/uikit-themes/master-tomsen-brody/icons/slidenav-previous-large.svg000064400000000260151666572410023007 0ustar00<svg width="22" height="32" viewBox="0 0 22 32" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-width="3" d="M17.5 1.5L2 16l15.5 14.5" /> </svg> assets/uikit-themes/master-tomsen-brody/icons/close-large.svg000064400000000407151666572410020440 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="3" x1="1" y1="1" x2="19" y2="19" /> <line fill="none" stroke="#000" stroke-width="3" x1="19" y1="1" x2="1" y2="19" /> </svg> assets/uikit-themes/master-tomsen-brody/_import.less000064400000047456151666572410016767 0ustar00@internal-fonts: 'Barlow|Barlow+Semi+Condensed:500|Barlow+Condensed:700|Roboto'; @global-font-family: Barlow; @global-font-size: 15px; @global-line-height: 1.55; @global-2xlarge-font-size: 48px; @global-xlarge-font-size: 40px; @global-large-font-size: 26px; @global-medium-font-size: 22px; @global-small-font-size: 14px; @global-primary-font-family: 'Barlow Condensed'; @global-primary-font-weight: 700; @global-primary-text-transform: uppercase; @global-primary-letter-spacing: -0.075rem; @global-primary-font-style: inherit; @global-secondary-font-family: 'Barlow Semi Condensed'; @global-secondary-font-weight: 500; @global-secondary-text-transform: none; @global-secondary-letter-spacing: 0; @global-secondary-font-style: inherit; @global-color: #000; @global-emphasis-color: #000; @global-muted-color: #999; @global-link-color: #0045d4; @global-link-hover-color: #1b5ce2; @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #f4f4f4; @global-primary-background: #0045d4; @global-secondary-background: #000; @global-success-background: #01a760; @global-warning-background: #ffaf00; @global-danger-background: #dc0032; @global-border-width: 1px; @global-border: #ddd; @global-border-radius: 0; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 50px; @global-control-small-height: 30px; @global-control-large-height: 60px; @global-z-index: 1000; @base-ins-background: lighten(tint(@global-warning-background, 55%), 15%); @base-mark-background: lighten(tint(@global-warning-background, 55%), 15%); @base-h1-line-height: 0.95; @base-h2-line-height: 0.9; @base-h3-line-height: 1.3; @base-h4-line-height: 1.2; @base-h5-font-size: 18px; @base-h5-line-height: 1.3; @base-h6-font-size: @global-font-size; @base-blockquote-line-height: 1.2; @base-blockquote-font-style: none; @base-pre-padding: @global-margin; @base-pre-background: @global-muted-background; @base-h3-font-family: @global-secondary-font-family; @base-h3-font-weight: @global-secondary-font-weight; @base-h3-text-transform: @global-secondary-text-transform; @base-h3-letter-spacing: @global-secondary-letter-spacing; @base-h3-font-style: @global-secondary-font-style; @base-blockquote-font-family: @global-secondary-font-family; @base-blockquote-font-weight: @global-secondary-font-weight; @base-blockquote-text-transform: @global-secondary-text-transform; @base-blockquote-letter-spacing: @global-secondary-letter-spacing; @heading-small-font-size-m: 56px; @heading-medium-font-size-l: 75px; @heading-xlarge-font-size-l: 8.5rem; @heading-2xlarge-font-size-l: 12rem; @heading-small-line-height: 0.9; @heading-medium-line-height: 0.85; @heading-large-line-height: 0.8; @heading-xlarge-line-height: 0.8; @heading-2xlarge-line-height: 0.8; @heading-3xlarge-line-height: 0.8; @heading-divider-padding-bottom: 0.07em; @heading-divider-border-width: 0.12em; @heading-divider-border: @global-emphasis-color; @heading-bullet-top: ~'calc(-0.095 * 1em)'; @heading-bullet-height: ~'calc(4px + 0.74em)'; @heading-bullet-border-width: ~'calc(1.5px + 0.15em)'; @heading-bullet-border: @global-primary-background; @heading-line-width: 45px; @heading-line-border-width: ~'calc(0.12em)'; @heading-line-border: @global-secondary-background; @inverse-heading-divider-border: @inverse-global-emphasis-color; @inverse-heading-line-border: @inverse-global-emphasis-color; @divider-icon-height: 22px; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-tomsen-brody/images/divider-icon.svg"; @divider-small-border-width: 2px; @divider-small-border: @global-primary-background; @inverse-divider-icon-color: @inverse-global-primary-background; @inverse-divider-small-border: @inverse-global-primary-background; @list-bullet-icon-color: @global-primary-background; @internal-list-bullet-image: "../../../../uikit-themes/master-tomsen-brody/images/list-bullet.svg"; @description-list-term-font-size: @global-medium-font-size; @table-header-cell-font-size: @global-font-size; @table-row-active-background: fade(@global-primary-background, 5%); @table-header-cell-font-family: @global-secondary-font-family; @table-header-cell-letter-spacing: @global-secondary-letter-spacing; @table-header-cell-font-style: @global-secondary-font-style; @icon-link-color: @global-color; @icon-link-hover-color: @global-muted-color; @icon-button-background: @global-primary-background; @icon-button-color: @global-inverse-color; @icon-button-hover-background: @global-muted-background; @icon-button-hover-color: @global-primary-background; @icon-button-active-color: @global-inverse-color; @inverse-icon-link-color: @inverse-global-emphasis-color; @inverse-icon-link-hover-color: @inverse-global-muted-color; @inverse-icon-link-active-color: @inverse-global-muted-color; @inverse-icon-button-background: @inverse-global-primary-background; @inverse-icon-button-color: @inverse-global-inverse-color; @inverse-icon-button-hover-background: @inverse-global-muted-background; @inverse-icon-button-hover-color: @inverse-global-primary-background; @inverse-icon-button-active-background: fadein(@inverse-global-muted-background, 10%); @inverse-icon-button-active-color: @inverse-global-primary-background; @form-range-track-height: 2px; @form-range-thumb-height: 6px; @form-range-thumb-width: 15px; @form-range-thumb-border-radius: 0; @form-range-thumb-background: @global-secondary-background; @form-legend-font-size: @global-medium-font-size; @form-danger-focus-background: fade(@global-danger-background, 5%); @form-success-focus-background: fade(darken(@global-success-background, 5%), 10%); @button-large-font-size: 18px; @button-default-background: transparent; @button-default-hover-background: @global-primary-background; @button-default-hover-color: @global-background; @button-primary-color: @global-background; @button-primary-hover-background: @global-background; @button-primary-hover-color: @global-primary-background; @button-primary-active-background: @button-primary-background; @button-secondary-hover-background: @global-background; @button-secondary-hover-color: @global-emphasis-color; @button-danger-hover-background: @global-background; @button-danger-hover-color: @global-danger-background; @button-danger-active-background: @button-danger-background; @button-link-hover-color: @global-primary-background; @button-text-mode: ~''; @button-text-icon-mode: arrow; @internal-button-text-arrow-image: "../../../../uikit-themes/master-tomsen-brody/images/button-text-arrow.svg"; @internal-button-text-arrow-padding: 15px; @internal-button-text-arrow-width: 38px; @internal-button-text-arrow-color: @global-primary-background; @internal-button-text-arrow-hover-color: @global-primary-background; @button-text-transform: uppercase; @button-border-width: 2px; @button-default-border: @global-emphasis-color; @button-default-hover-border: @global-primary-background; @button-default-active-border: @global-emphasis-color; @button-primary-hover-border: @global-primary-background; @button-secondary-hover-border: @global-emphasis-color; @button-danger-hover-border: @global-danger-background; @inverse-button-default-background: transparent; @inverse-button-default-color: @global-background; @inverse-button-default-hover-background: @global-background; @inverse-button-default-active-color: @global-inverse-color; @inverse-button-primary-background: @global-primary-background; @inverse-button-primary-color: @global-background; @inverse-button-primary-hover-background: transparent; @inverse-button-primary-hover-color: @global-background; @inverse-button-primary-active-color: @global-background; @inverse-button-text-color: @global-inverse-color; @inverse-button-text-hover-color: @global-inverse-color; @inverse-button-link-color: @global-inverse-color; @internal-inverse-button-text-arrow-color: lighten(@global-primary-background, 15%); @internal-inverse-button-text-arrow-hover-color: lighten(@global-primary-background, 15%); @inverse-button-default-border: @global-background; @inverse-button-default-active-border: @global-background; @inverse-button-primary-hover-border: @global-primary-background; @internal-section-default-image: "../../master-tomsen-brody/images/section-light-background.svg"; @internal-section-secondary-image: "../../master-tomsen-brody/images/section-dark-background.svg"; @internal-section-default-background-repeat: repeat-y; @internal-section-secondary-background-repeat: repeat-y; @container-small-max-width: 960px; @container-large-max-width: 1360px; @card-badge-height: 24px; @card-badge-padding-horizontal: 8px; @card-default-background: @global-background; @card-title-font-family: @global-secondary-font-family; @card-title-font-weight: @global-secondary-font-weight; @card-title-text-transform: @global-secondary-text-transform; @card-title-letter-spacing: @global-secondary-letter-spacing; @card-title-font-style: @global-secondary-font-style; @card-badge-text-transform: uppercase; @card-default-border-width: @global-border-width; @card-default-border: @global-border; @marker-background: @global-primary-background; @totop-color: @global-emphasis-color; @totop-hover-color: @global-primary-background; @totop-active-color: darken(@totop-hover-color, 5%); @alert-primary-background: lighten(tint(@global-primary-background, 55%), 20%); @alert-success-background: lighten(tint(@global-success-background, 45%), 25%); @alert-warning-background: lighten(tint(@global-warning-background, 55%), 15%); @alert-warning-color: darken(@global-warning-background, 3%); @alert-danger-background: lighten(tint(@global-danger-background, 50%), 20%); @badge-font-size: 12px; @badge-font-family: Roboto; @badge-font-style: normal; @label-text-transform: uppercase; @article-title-line-height: 0.95; @comment-title-font-size: 18px; @search-navbar-padding-horizontal: 15px; @search-navbar-background: @global-muted-background; @search-navbar-focus-background: darken(@search-navbar-background, 2%); @search-medium-padding-horizontal: 20px; @search-large-font-size: 56px; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-primary-background; @search-navbar-placeholder-color: @global-color; @search-navbar-icon-color: @global-color; @search-navbar-font-family: @global-secondary-font-family; @search-navbar-font-weight: @global-secondary-font-weight; @search-navbar-text-transform: uppercase; @search-navbar-letter-spacing: @global-secondary-letter-spacing; @search-navbar-font-style: @global-secondary-font-style; @inverse-search-color: fade(@inverse-global-color, 90%); @inverse-search-placeholder-color: fade(@inverse-global-color, 90%); @inverse-search-navbar-background: fade(@inverse-global-primary-background, 20%); @inverse-search-navbar-focus-background: fade(@inverse-global-primary-background, 35%); @inverse-search-navbar-placeholder-color: fade(@inverse-global-color, 50%); @accordion-icon-color: @global-primary-background; @internal-accordion-icon-close-image: "../../../../uikit-themes/master-tomsen-brody/images/accordion-close.svg"; @internal-accordion-icon-open-image: "../../../../uikit-themes/master-tomsen-brody/images/accordion-open.svg"; @accordion-title-font-family: @global-secondary-font-family; @accordion-title-font-weight: @global-secondary-font-weight; @accordion-title-text-transform: @global-secondary-text-transform; @accordion-title-letter-spacing: @global-secondary-letter-spacing; @dropdown-padding: @global-margin; @dropdown-background: @global-background; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 6px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 6px)'; @dropdown-nav-subtitle-font-size: 13px; @dropdown-nav-subtitle-color: @global-muted-color; @dropdown-border-width: @global-border-width; @dropdown-border: @global-border; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 1px 0 @global-border; @dropbar-bottom-box-shadow: 0 -1px 0 @global-border; @dropbar-left-box-shadow: 1px 0 0 @global-border; @dropbar-right-box-shadow: -1px 0 0 @global-border; @tooltip-padding-horizontal: 10px; @tooltip-background: @global-muted-color; @tooltip-font-size: @global-small-font-size; @countdown-item-font-family: @global-primary-font-family; @countdown-item-font-weight: @global-primary-font-weight; @countdown-item-text-transform: @global-primary-text-transform; @countdown-item-letter-spacing: @global-primary-letter-spacing; @countdown-item-font-style: @global-primary-font-style; @nav-item-padding-vertical: 7px; @nav-default-item-color: @global-emphasis-color; @nav-default-item-hover-color: @global-primary-background; @nav-default-item-active-color: @global-primary-background; @nav-default-subtitle-font-size: 13px; @nav-default-sublist-item-color: @global-emphasis-color; @nav-default-sublist-item-hover-color: @global-primary-background; @nav-default-sublist-item-active-color: @global-primary-background; @nav-primary-item-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-subtitle-font-size: @global-small-font-size; @nav-primary-sublist-item-color: @global-emphasis-color; @nav-primary-sublist-item-hover-color: @global-primary-background; @nav-primary-sublist-item-active-color: @global-primary-background; @nav-secondary-font-size: 18px; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @global-primary-background; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-subtitle-active-color: @global-primary-background; @nav-secondary-sublist-font-size: 18px; @nav-secondary-sublist-item-color: @global-color; @nav-secondary-sublist-item-hover-color: @global-primary-background; @nav-secondary-sublist-item-active-color: @global-primary-background; @nav-medium-line-height: 0.85; @nav-medium-font-size-l: 75px; @nav-large-line-height: 0.8; @nav-large-font-size: 64px; @nav-large-font-size-m: @nav-medium-font-size-l; @nav-xlarge-line-height: 0.8; @nav-xlarge-font-size: @nav-large-font-size-m; @nav-xlarge-font-size-l: 8.5rem; @nav-secondary-margin-top: 15px; @nav-default-subtitle-color: @global-muted-color; @nav-primary-font-family: @global-secondary-font-family; @nav-primary-font-weight: @global-secondary-font-weight; @nav-primary-text-transform: @global-secondary-text-transform; @nav-primary-letter-spacing: @global-secondary-letter-spacing; @nav-primary-font-style: @global-secondary-font-style; @nav-primary-subtitle-color: @global-color; @nav-secondary-subtitle-font-family: Barlow; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-background; @navbar-gap: 40px; @navbar-nav-gap: 0px; @navbar-nav-item-height: 70px; @navbar-nav-item-padding-horizontal: 40px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-hover-color: @global-inverse-color; @navbar-nav-item-active-color: @global-inverse-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-primary-background; @navbar-subtitle-font-size: 13px; @navbar-dropdown-margin: @global-margin; @navbar-dropdown-padding: 20px; @navbar-dropdown-background: @global-background; @navbar-dropdown-dropbar-shift-margin: @navbar-nav-item-padding-horizontal; @navbar-dropdown-dropbar-large-shift-margin: @navbar-nav-item-padding-horizontal; @navbar-dropdown-nav-subtitle-font-size: 13px; @navbar-gap-m: 40px; @navbar-nav-gap-m: 0px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-height: 0; @navbar-nav-item-line-transition-duration: 0.2s; @navbar-nav-item-line-hover-height: @navbar-nav-item-height; @navbar-nav-item-line-active-height: @navbar-nav-item-height; @navbar-nav-item-text-transform: uppercase; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-text-transform: none; @navbar-subtitle-line-height: 16px; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-subtitle-color: @global-muted-color; @navbar-dropdown-nav-subtitle-text-transform: none; @navbar-mode: border-always; @navbar-border-width: @global-border-width; @navbar-border: @global-border; @internal-navbar-border-mode: overlay; @navbar-dropdown-border-width: @global-border-width; @navbar-dropdown-border: @global-border; @inverse-navbar-nav-item-hover-color: @global-emphasis-color; @inverse-navbar-nav-item-active-color: @global-emphasis-color; @inverse-navbar-toggle-color: @inverse-global-emphasis-color; @inverse-navbar-toggle-hover-color: @inverse-global-muted-color; @inverse-navbar-border: @inverse-global-border; @subnav-margin-horizontal: 25px; @subnav-item-color: @global-emphasis-color; @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; @subnav-pill-item-padding-horizontal: 15px; @pagination-item-padding-vertical: 0; @tab-item-padding-horizontal: 15px; @tab-border-width: 2px; @tab-item-border-width: 2px; @slidenav-padding-vertical: 16px; @slidenav-padding-horizontal: 19px; @slidenav-color: @global-inverse-color; @slidenav-hover-color: lighten(@global-primary-background, 10%); @slidenav-active-color: @global-primary-background; @slidenav-large-padding-vertical: 19px; @slidenav-large-padding-horizontal: 24px; @slidenav-background: @global-secondary-background; @slidenav-hover-background: lighten(@slidenav-background, 5%); @slidenav-active-background: lighten(@slidenav-background, 10%); @inverse-slidenav-color: @global-emphasis-color; @inverse-slidenav-hover-color: @global-primary-background; @inverse-slidenav-active-color: darken(@inverse-slidenav-hover-color, 5%); @inverse-slidenav-background: @inverse-global-primary-background; @inverse-slidenav-hover-background: @inverse-slidenav-background; @inverse-slidenav-active-background: fade(@inverse-slidenav-background, 90%); @dotnav-item-width: 14px; @dotnav-item-background: transparent; @dotnav-item-hover-background: transparent; @dotnav-item-onclick-background: @global-primary-background; @dotnav-item-active-background: transparent; @dotnav-item-border-width: 2px; @dotnav-item-border: @global-secondary-background; @dotnav-item-hover-border: @global-primary-background; @dotnav-item-active-border: @global-primary-background; @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-hover-background: transparent; @inverse-dotnav-item-onclick-background: @global-inverse-color; @inverse-dotnav-item-active-background: transparent; @inverse-dotnav-item-border: @inverse-global-border; @inverse-dotnav-item-hover-border: @global-inverse-color; @inverse-dotnav-item-active-border: @global-inverse-color; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @width-large-width: 480px; @text-lead-font-size: @global-medium-font-size; @text-lead-line-height: 1.4; @text-small-line-height: 1.4; @text-large-font-size: @global-medium-font-size; @text-large-line-height: 1.4; @text-warning-color: darken(@global-warning-background, 3%); @text-lead-font-family: @global-secondary-font-family; @text-lead-font-weight: @global-secondary-font-weight; @text-lead-text-transform: @global-secondary-text-transform; @text-lead-letter-spacing: @global-secondary-letter-spacing; @text-lead-font-style: @global-secondary-font-style; @logo-font-size: 30px; @logo-font-family: @global-primary-font-family; @logo-font-weight: @global-primary-font-weight; @logo-text-transform: @global-primary-text-transform; @logo-letter-spacing: normal; @inverse-global-color: fade(@global-inverse-color, 90%); @inverse-global-muted-color: fade(@global-inverse-color, 60%);assets/uikit-themes/master-tomsen-brody/styles/white-pink.less000064400000001026151666572410020677 0ustar00// // Global // @global-link-color: #ff207a; @global-link-hover-color: #e23c70; @global-danger-background: #a80045; @global-primary-background: #ff207a; @global-success-background: #00bba2; @global-warning-background: #ffc108; // // Alert // @alert-primary-background: lighten(tint(@global-primary-background, 55%), 10%); // // Button // @internal-inverse-button-text-arrow-color: lighten(@global-primary-background, 8%); @internal-inverse-button-text-arrow-hover-color: lighten(@global-primary-background, 8%); assets/uikit-themes/master-tomsen-brody/styles/white-turquoise.less000064400000000710151666572410021775 0ustar00// // Global // @global-color: #333; @global-emphasis-color: #333; @global-link-color: #29d8cb; @global-link-hover-color: #1bb7ac; @global-danger-background: #DC0078; @global-primary-background: #29d8cb; @global-secondary-background: #333; @global-success-background: #019da3; @global-warning-background: #ffbf00; // // Alert // @alert-primary-background: lighten(tint(@global-primary-background, 55%), 15%); assets/uikit-themes/master-tomsen-brody/styles/white-dove.less000064400000001416151666572410020676 0ustar00// // Global // @global-color: #0e233f; @global-emphasis-color: #0e233f; @global-link-color: #527aaf; @global-muted-color: #98a3b0; @global-link-hover-color: #3c5d89; @global-danger-background: #cd3054; @global-muted-background: #f5f6fa; @global-primary-background: #527aaf; @global-secondary-background: #0e233f; @global-success-background: #30b27a; @global-warning-background: #fcA52c; @global-border: #d1dbe6; // // Alert // @alert-primary-background: lighten(tint(@global-primary-background, 55%), 15%); // // Form Range // @form-range-track-focus-background: desaturate(darken(@global-muted-background, 15%), 15%); // // Table // @table-row-active-background: fade(@global-primary-background, 12%); assets/uikit-themes/master-tomsen-brody/styles/white-purple.less000064400000001156151666572410021251 0ustar00// // Global // @global-link-color: #8255ff; @global-link-hover-color: #6a40e0; @global-danger-background: #dc005a; @global-primary-background: #8255ff; @global-success-background: #00be8a; @global-warning-background: #ffb700; // // Alert // @alert-primary-background: lighten(tint(@global-primary-background, 55%), 10%); // // Button // @internal-inverse-button-text-arrow-color: lighten(@global-primary-background, 10%); @internal-inverse-button-text-arrow-hover-color: lighten(@global-primary-background, 10%); // // Table // @table-row-active-background: fade(@global-primary-background, 10%); assets/uikit-themes/master-tomsen-brody/styles/dark-yellow.less000064400000013203151666572410021052 0ustar00// // Global // @global-color: #fff; @global-emphasis-color: #fff; @global-inverse-color: #080443; @global-link-color: #ffef3a; @global-muted-color: #68659b; @global-link-hover-color: #f1bb19; @global-background: #080443; @global-danger-background: #e90150; @global-muted-background: #191558; @global-primary-background: #ffef3a; @global-secondary-background: #140f50; @global-success-background: #02c333; @global-warning-background: #ff9c00; @global-border: #222158; @global-large-box-shadow: 0 14px 25px 0 rgba(0, 0, 0, 0.3); @global-medium-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3); @global-small-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.4); @global-xlarge-box-shadow: 0 28px 50px 0 rgba(0, 0, 0, 0.3); // // Theme // @theme-page-container-color-mode: light; // // Alert // @alert-primary-background: @global-primary-background; @alert-primary-color: @global-inverse-color; @alert-success-background: @global-success-background; @alert-success-color: @global-color; @alert-warning-background: @global-warning-background; @alert-warning-color: @global-color; @alert-danger-background: @global-danger-background; @alert-danger-color: @global-color; // // Base // @base-ins-background: @global-muted-background; @base-mark-background: lighten(@global-muted-background, 5%); // // Button // @button-secondary-color: fade(@global-color, 80%); @button-secondary-active-background: @global-secondary-background; @button-secondary-active-color: fade(@global-color, 80%); // // Card // @card-default-color-mode: light; @card-default-hover-background: @global-muted-background; @card-primary-color: @global-inverse-color; @card-primary-color-mode: dark; @card-secondary-color: @global-color; @card-secondary-hover-background: lighten(desaturate(@card-secondary-background, 5%), 5%); // // Dotnav // @dotnav-item-border: lighten(@global-border, 5%); // // Dropbar // @dropbar-color-mode: light; // // Dropdown // @dropdown-color-mode: light; // // Form Range // @form-range-thumb-background: @global-emphasis-color; @form-range-track-background: @global-muted-background; @form-range-track-focus-background: desaturate(lighten(@global-muted-background, 10%), 15%); // // Form // @form-focus-background: lighten(@form-background, 3%); @form-focus-color: @global-emphasis-color; @form-radio-background: lighten(@global-muted-background, 3%); @form-radio-focus-background: lighten(@global-muted-background, 8%); @form-label-color: @global-emphasis-color; // // Icon // @icon-button-color: @global-inverse-color; @icon-button-active-color: @global-inverse-color; // // Inverse // @inverse-global-color-mode: dark; @inverse-button-primary-hover-background: darken(@inverse-button-primary-background, 12%); @inverse-button-primary-active-background: darken(@inverse-button-primary-background, 15%); @inverse-button-primary-active-color: @global-background; @inverse-button-secondary-hover-background: lighten(@inverse-button-secondary-background, 10%); @inverse-button-secondary-active-background: lighten(@inverse-button-secondary-background, 15%); @internal-inverse-button-text-arrow-color: darken(@global-primary-background, 15%); @internal-inverse-button-text-arrow-hover-color: darken(@global-primary-background, 15%); @inverse-search-navbar-focus-background: fade(@inverse-global-primary-background, 30%); @inverse-slidenav-background: @global-color; @inverse-slidenav-color: @global-background; @inverse-slidenav-hover-background: fade(@global-color, 90%); @inverse-slidenav-hover-color: @global-background; @inverse-slidenav-active-background: fade(@global-color, 85%); @inverse-slidenav-active-color: @global-background; // // Label // @label-color: @global-inverse-color; // // Navbar // @navbar-color-mode: light; @navbar-dropdown-color-mode: light; @navbar-subtitle-color: @global-color; @navbar-nav-item-hover-color: @global-inverse-color; @navbar-nav-item-active-color: @global-inverse-color; // // Overlay // @overlay-default-color-mode: light; @overlay-primary-background: rgba(255, 255, 255, 0.5); @overlay-primary-color-mode: dark; // // Search // @search-default-focus-background: lighten(@search-default-background, 3%); // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; @internal-section-default-image: "../../master-tomsen-brody/images/styles/dark-yellow/section-dark-background.svg"; // // Slidenav // @slidenav-color: @global-muted-color; // // Table // @table-row-active-background: @global-muted-background; @table-striped-row-background: fade(@global-secondary-background, 90%); // // Text // @text-secondary-color: lighten(@global-secondary-background, 50%); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: dark; // // Utility // @box-shadow-bottom-background: #000; @dragover-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5); // // Woocommerce // @woocommerce-rating-color: @global-emphasis-color; @woocommerce-rating-background-color: desaturate(lighten(@global-muted-background, 10%), 15%); assets/uikit-themes/master-line-gallery/icons/pagination-previous.svg000064400000000371151666572410022210 0ustar00<svg width="18" height="14" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="2" x1="18" y1="7" x2="2" y2="7" /> <path fill="none" stroke="#000" stroke-width="2" d="M8,1,2,7l6,6" /> </svg> assets/uikit-themes/master-line-gallery/icons/totop.svg000064400000000260151666572410017347 0ustar00<svg width="16" height="18" viewBox="0 0 16 18" xmlns="http://www.w3.org/2000/svg"> <polygon points="15.7,7.9 14.3,9.3 9,4 9,17.5 7,17.5 7,4 1.7,9.3 0.3,7.9 8,0" /> </svg> assets/uikit-themes/master-line-gallery/icons/pagination-next.svg000064400000000363151666572410021313 0ustar00<svg width="18" height="14" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="2" y1="7" x2="16" y2="7" /> <path fill="none" stroke="#000" stroke-width="2" d="M10,1l6,6-6,6" /> </svg> assets/uikit-themes/master-line-gallery/icons/slidenav-previous.svg000064400000000371151666572410021664 0ustar00<svg width="18" height="14" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="2" x1="18" y1="7" x2="2" y2="7" /> <path fill="none" stroke="#000" stroke-width="2" d="M8,1,2,7l6,6" /> </svg> assets/uikit-themes/master-line-gallery/icons/slidenav-previous-large.svg000064400000000376151666572410022761 0ustar00<svg width="23" height="18" viewBox="0 0 23 18" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="2" x1="2" y1="9" x2="23" y2="9" /> <path fill="none" stroke="#000" stroke-width="2" d="M10.07,1l-8,8,8,8" /> </svg> assets/uikit-themes/master-line-gallery/icons/nav-parent-icon-large.svg000064400000000260151666572410022273 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-line-gallery/icons/marker.svg000064400000000405151666572410017464 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="2" x1="7" y1="1" x2="7" y2="13" /> <line fill="none" stroke="#000" stroke-width="2" x1="1" y1="7" x2="13" y2="7" /> </svg> assets/uikit-themes/master-line-gallery/icons/slidenav-next-large.svg000064400000000366151666572410022062 0ustar00<svg width="23" height="18" viewBox="0 0 23 18" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="2" y1="9" x2="21" y2="9" /> <path fill="none" stroke="#000" stroke-width="2" d="M13.07,1l8,8-8,8" /> </svg> assets/uikit-themes/master-line-gallery/icons/slidenav-next.svg000064400000000363151666572410020767 0ustar00<svg width="18" height="14" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg"> <line fill="none" stroke="#000" stroke-width="2" y1="7" x2="16" y2="7" /> <path fill="none" stroke="#000" stroke-width="2" d="M10,1l6,6-6,6" /> </svg> assets/uikit-themes/master-line-gallery/images/accordion-close.svg000064400000000325151666572410021402 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <rect width="13" height="1.5" fill="#000" x="0" y="6" /> <rect width="1.5" height="13" fill="#000" x="6" y="0" /> </svg> assets/uikit-themes/master-line-gallery/images/subnav-pill-item-background-image.svg000064400000000466151666572410024731 0ustar00<svg width="108" height="32" preserveAspectRatio="none" viewBox="0 0 108 32" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M101.846,31.735C48.719,32.7,0,30.712,0,30.712L2.939,16.343.854,1.431C2.8,1.131,79.923-2.459,108,3.02c-.633,7.887-2.54,21.931-2.54,21.931a16,16,0,0,0-2.667-.878Z" /> </svg> assets/uikit-themes/master-line-gallery/images/section-title-image.svg000064400000000515151666572410022202 0ustar00<svg width="18" height="18" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M18,6.81v4.38l-9-.7-9,.7V6.81L9,7.5Z" /> <path fill="#000" d="M15.37,15.8,11.63,18,7.72,9.75,2.63,2.2,6.37,0l3.91,8.25Z" /> <path fill="#000" d="M11.62,0l3.75,2.19L10.28,9.75,6.38,18,2.63,15.81,7.72,8.25Z" /> </svg> assets/uikit-themes/master-line-gallery/images/box-decoration-primary-image.svg000064400000000735151666572410024021 0ustar00<svg width="371" height="371" viewBox="0 0 371 371" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M29.64,250C68.28,347.42,149.9,352.77,214.12,359.73c66.42,7.2,108.35-15,125.7-66.92C429.07,25.71,225.54-8.55,94.33,45.77c-148.6,61.52-109.75,291.62,39.79,316.64,196.05,44.87,238.72-106.55,212.23-215.72C329.5,77.22,291,11,223.37,2.16,62.83-18.72-22.3,162.66,29.09,276.23,102,437.35,488.93,329.76,334.38,97.44,247.77-32.75-67.13,6,29.64,250Z" /> </svg> assets/uikit-themes/master-line-gallery/images/box-decoration-default-image.svg000064400000000736151666572410023763 0ustar00<svg width="371" height="371" viewBox="0 0 371 371" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" d="M198.24,17.3C83.4,27.85,34,46,14.73,102.63c-22.64,66.49-1.94,131.31,26.81,184.19C127.93,445.7,349,348.49,357.31,192.07,372.78,23.49,124.45-66.34,45.71,72.62-69.83,250.48,58.57,345.16,179.17,358c76.72,8.19,146.63-30.76,170.4-89.44C424.64,83.21,269-36.37,143.42,10.82-41.28,80.26-22.81,443.34,209,357.43,366.36,299.08,480.05-8.6,198.24,17.3Z" /> </svg> assets/uikit-themes/master-line-gallery/images/pagination-item-background-image.svg000064400000001104151666572410024614 0ustar00<svg width="45" height="43" preserveAspectRatio="none" viewBox="0 0 45 43" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M43.49,26.78c-1.29-.15-2.79-.31-1.22,0,.77.12.59.12.93.43l-1,1.49a5.64,5.64,0,0,0-1.33-.7l1,1.27L35.11,39c-1.24-.83-5.62-1.47-7.75-.94L7.53,43,0,27.8c1.35-1.08,2.65-2.15,3.92-3.18l-2-8.83a2,2,0,0,0,.72-.17c.55-.23.5-.53.5-.53L1.7,15,.5,9.74c2.45-.56,6.57-1.83,11-3.17C23.57,2.85,32.62.2,38.73,0l3.88,12.09a2.86,2.86,0,0,1-1.11.63c-.6.09.34.27,1.07.3a.39.39,0,0,0,.3-.12l1,3c-2.69,1.81-5.15,3.55-7.51,5.25A24.25,24.25,0,0,1,45,24.67Z" /> </svg> assets/uikit-themes/master-line-gallery/images/accordion-open.svg000064400000000230151666572410021231 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <rect width="13" height="1.5" fill="#000" x="0" y="6" /> </svg> assets/uikit-themes/master-line-gallery/images/tab-item-background-image.svg000064400000000762151666572410023242 0ustar00<svg width="120" height="50" preserveAspectRatio="none" viewBox="0 0 120 50" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M120,45.62c-18.06,1.94-36.28,3.24-54.51,3.89-21,.75-42,.64-62.88-.32L.68,33l2.16-.79L.6,31.93,0,26.85l6.3-2.43L4.26,8C34.8332,3.4414,80.6592.77,111.5609,0l3.15,17.2a2.3105,2.3105,0,0,0-.83,0c-1.09.21-1.44.93-2.08.95a7.48,7.48,0,0,0,1.89-.11,3.2712,3.2712,0,0,0,1.12-.4l.79,4.36c-2.6,1.14-5.23,2.16-7.9,3.08,6.5439-1.3674,8.1645-1.8208,10.2291-2.22Z" /> </svg> assets/uikit-themes/master-line-gallery/images/divider-icon.svg000064400000000544151666572410020715 0ustar00<svg width="187" height="14" viewBox="0 0 187 14" xmlns="http://www.w3.org/2000/svg"> <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M30.22,12.62a1.78,1.78,0,0,0-2.48.34l0,0C58.23,9.16,89.09,6.78,120,7.26a426,426,0,0,1,60.22,5.06A561.39,561.39,0,0,0,1,10.53C62.18,1.47,124.4-1.86,186,3.74" /> </svg> assets/uikit-themes/master-line-gallery/_import.less000064400000067523151666572410016726 0ustar00@internal-fonts: 'Inter:400,600|Poppins:600'; @global-font-family: Inter; @global-font-size: 16px; @global-line-height: 1.5; @global-2xlarge-font-size: 42px; @global-xlarge-font-size: 32px; @global-large-font-size: 22px; @global-medium-font-size: 18px; @global-small-font-size: 14px; @global-primary-font-family: Poppins; @global-primary-font-weight: 600; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: Inter; @global-secondary-font-weight: 600; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #000; @global-emphasis-color: #000; @global-muted-color: fade(@global-color, 50%); @global-link-color: #000; @global-link-hover-color: fade(@global-link-color, 50%); @global-inverse-color: #FFF; @global-background: #FFF; @global-muted-background: #f9f9f9; @global-primary-background: #F5FC59; @global-secondary-background: #000000; @global-success-background: #C4FC59; @global-warning-background: #FFD371; @global-danger-background: #FF9393; @global-border-width: 1px; @global-border: fade(@global-secondary-background, 50%); @global-border-radius: 0; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.06); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.06); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 48px; @global-control-small-height: 40px; @global-control-large-height: 56px; @global-z-index: 1000; @base-link-text-decoration: underline; @base-code-font-size: 13px; @base-code-color: @global-color; @base-em-color: darken(@global-danger-background, 15%); @base-ins-background: fade(@global-primary-background, 50%); @base-mark-background: fade(@global-primary-background, 50%); @base-blockquote-font-size: @global-large-font-size; @base-blockquote-line-height: 1.4; @base-blockquote-font-style: normal; @base-blockquote-footer-margin-top: @global-margin; @base-blockquote-footer-font-size: @global-font-size; @base-selection-background: @global-secondary-background; @base-selection-color: @global-primary-background; @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 3px; @base-code-background: @global-muted-background; @base-pre-padding: @global-margin @global-margin 16px @global-margin; @base-pre-background: @global-muted-background; @base-blockquote-footer-em-dash: false; @base-blockquote-footer-font-family: @global-font-family; @base-blockquote-footer-font-weight: 400; @base-blockquote-footer-text-transform: none; @base-code-border-radius: 3px; @inverse-base-link-hover-color: @inverse-global-muted-color; @link-heading-hover-color: @global-emphasis-color; @link-heading-hover-text-decoration: underline; @link-heading-text-decoration: none; @heading-large-font-size: 3.2rem; @heading-xlarge-font-size: 3.7rem; @heading-2xlarge-font-size: 5.7rem; @heading-divider-border: fadein(@global-border, 100%); @heading-bullet-border-width: ~'calc(3px + 0.05em)'; @heading-bullet-border: @global-primary-background; @heading-line-border: fadein(@global-border, 100%); @heading-xlarge-font-weight: 700; @heading-2xlarge-font-weight: 700; @heading-3xlarge-font-weight: 700; @inverse-link-heading-hover-color: @global-inverse-color; @inverse-heading-divider-border: fadein(@inverse-global-border, 100%); @inverse-heading-bullet-border: @inverse-global-primary-background; @inverse-heading-line-border: fadein(@inverse-global-border, 100%); @divider-icon-width: 187px; @divider-icon-height: 14px; @divider-icon-color: @global-color; @divider-icon-line-border: transparent; @internal-divider-icon-image: "../../../../uikit-themes/master-line-gallery/images/divider-icon.svg"; @divider-small-width: 70px; @divider-small-border-width: 3px; @divider-small-border: @global-secondary-background; @divider-vertical-border-width: 3px; @divider-vertical-border: @global-secondary-background; @inverse-divider-icon-color: @inverse-global-emphasis-color; @inverse-divider-icon-line-border: transparent; @inverse-divider-small-border: @inverse-global-emphasis-color; @inverse-divider-vertical-border: @inverse-global-emphasis-color; @list-primary-color: @global-muted-color; @table-header-cell-font-weight: @global-secondary-font-weight; @table-header-cell-color: @global-emphasis-color; @table-row-active-background: fade(@global-primary-background, 50%); @table-header-cell-font-family: @global-secondary-font-family; @table-header-cell-text-transform: @global-secondary-text-transform; @table-header-cell-letter-spacing: @global-secondary-letter-spacing; @table-header-cell-font-style: @global-secondary-font-style; @inverse-table-header-cell-color: @inverse-global-emphasis-color; @icon-link-color: @global-emphasis-color; @icon-link-hover-color: @global-muted-color; @icon-link-active-color: @icon-link-hover-color; @icon-button-size: 42px; @icon-button-background: @global-primary-background; @icon-button-color: @global-color; @icon-button-hover-background: @global-secondary-background; @icon-button-hover-color: @global-primary-background; @icon-button-active-background: lighten(@icon-button-hover-background, 15%); @icon-button-active-color: @global-primary-background; @inverse-icon-link-color: @inverse-global-emphasis-color; @inverse-icon-link-hover-color: @inverse-global-primary-background; @inverse-icon-link-active-color: @inverse-global-primary-background; @inverse-icon-button-background: @global-primary-background; @inverse-icon-button-color: @inverse-global-inverse-color; @inverse-icon-button-hover-background: @global-inverse-color; @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-background: fade(@inverse-icon-button-hover-background, 67%); @inverse-icon-button-active-color: @inverse-global-inverse-color; @form-range-track-height: 2px; @form-range-track-background: darken(@global-muted-background, 5%); @form-range-track-focus-background: @global-emphasis-color; @form-range-thumb-height: 12px; @form-range-thumb-background: @global-background; @form-range-thumb-border-width: 2px; @form-range-thumb-border: @global-emphasis-color; @form-padding-horizontal: 0; @form-padding-vertical: 6px; @form-background: transparent; @form-focus-background: transparent; @form-disabled-background: transparent; @form-placeholder-color: @global-color; @form-danger-color: darken(@global-danger-background, 10%); @form-success-color: darken(@global-success-background, 22%); @form-radio-checked-background: @global-secondary-background; @form-radio-checked-focus-background: @form-radio-checked-background; @form-icon-width: 30px; @form-icon-color: @global-emphasis-color; @form-icon-hover-color: @global-muted-color; @form-multi-line-padding-horizontal: 10px; @form-label-font-size: @global-small-font-size; @form-border-mode: -bottom; @form-border-width: 2px; @form-border: @global-secondary-background; @form-focus-border: fade(@form-border, 10%); @form-disabled-border: darken(@global-muted-background, 5%); @form-danger-border: @global-danger-background; @form-success-border: darken(@global-success-background, 20%); @form-blank-focus-border: @form-border; @inverse-form-background: transparent; @inverse-form-color: @inverse-global-emphasis-color; @inverse-form-focus-background: transparent; @inverse-form-focus-color: @inverse-global-emphasis-color; @inverse-form-placeholder-color: @inverse-global-emphasis-color; @inverse-form-radio-background: fade(@global-inverse-color, 30%); @inverse-form-radio-focus-background: fade(@global-inverse-color, 40%); @inverse-form-select-icon-color: @inverse-global-emphasis-color; @inverse-form-datalist-icon-color: @inverse-global-emphasis-color; @inverse-form-icon-color: @inverse-global-emphasis-color; @inverse-form-border: @inverse-global-emphasis-color; @inverse-form-focus-border: fade(@inverse-form-border, 15%); @button-font-size: @global-small-font-size; @button-large-font-size: @global-font-size; @button-default-background: darken(@global-muted-background, 3%); @button-default-active-background: @button-default-background; @button-default-active-color: @button-default-color; @button-primary-color: @global-color; @button-primary-hover-background: @global-secondary-background; @button-primary-hover-color: @global-primary-background; @button-primary-active-background: @button-primary-background; @button-primary-active-color: @global-color; @button-secondary-hover-background: lighten(@global-secondary-background, 15%); @button-secondary-hover-color: @button-secondary-color; @button-secondary-active-background: @button-secondary-background; @button-secondary-active-color: @button-secondary-color; @button-danger-color: @global-color; @button-danger-hover-color: @global-color; @button-danger-active-background: @button-danger-background; @button-danger-active-color: @global-color; @button-text-color: @global-color; @button-text-hover-color: @global-color; @button-text-mode: border-bottom; @button-text-border-width: 2px; @button-text-border: @button-text-color; @button-text-hover-border: transparent; @inverse-button-default-background: @global-background; @inverse-button-default-hover-color: @inverse-button-default-color; @inverse-button-default-active-color: @inverse-button-default-color; @inverse-button-primary-background: @global-primary-background; @inverse-button-primary-hover-background: lighten(@inverse-button-primary-background, 15%); @inverse-button-primary-active-background: lighten(@inverse-button-primary-hover-background, 5%); @inverse-button-secondary-background: @global-inverse-color; @inverse-button-link-hover-color: @inverse-global-emphasis-color; @inverse-button-text-border: @inverse-global-emphasis-color; @progress-height: 5px; @progress-bar-background: @global-secondary-background; @progress-border-radius: 0; @section-primary-color-mode: dark; @tile-primary-color-mode: dark; @card-badge-height: 26px; @card-badge-background: @global-secondary-background; @card-badge-font-size: 12px; @card-default-hover-background: darken(@card-default-background, 3%); @card-primary-color: @global-color; @card-primary-hover-background: lighten(@card-primary-background, 8%); @card-primary-color-mode: dark; @card-secondary-hover-background: lighten(@card-secondary-background, 15%); @close-color: @global-color; @close-hover-color: @global-muted-color; @alert-close-opacity: 1; @inverse-close-color: @global-inverse-color; @inverse-close-hover-color: @inverse-global-muted-color; @marker-padding: 8px; @marker-background: @global-primary-background; @marker-color: @global-color; @marker-hover-color: @global-primary-background; @marker-hover-background: @global-secondary-background; @inverse-marker-background: fade(@inverse-global-emphasis-color, 80%); @inverse-marker-color: @inverse-global-inverse-color; @inverse-marker-hover-color: @inverse-global-inverse-color; @inverse-marker-hover-background: @inverse-global-emphasis-color; @totop-color: @global-color; @totop-hover-color: @global-muted-color; @inverse-totop-color: @inverse-global-emphasis-color; @inverse-totop-hover-color: @inverse-global-muted-color; @alert-primary-background: fade(@global-primary-background, 50%); @alert-primary-color: @global-color; @alert-success-background: fade(@global-success-background, 50%); @alert-success-color: @global-color; @alert-warning-background: fade(@global-warning-background, 50%); @alert-warning-color: @global-color; @alert-danger-background: fade(@global-danger-background, 50%); @alert-danger-color: @global-color; @badge-size: 20px; @badge-background: @global-secondary-background; @badge-font-weight: 600; @label-padding-vertical: 2px; @label-padding-horizontal: 7px; @label-font-size: 12px; @label-color: @global-color; @label-success-color: @global-color; @label-warning-color: @global-color; @label-danger-color: @global-color; @overlay-primary-background: fade(@global-primary-background, 80%); @overlay-primary-color-mode: dark; @article-meta-font-weight: 400; @comment-meta-font-weight: 400; @search-placeholder-color: @global-color; @search-icon-color: @global-color; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-default-focus-background: @search-default-background; @search-navbar-padding-horizontal: 0; @search-navbar-background: transparent; @search-medium-padding-horizontal: 0; @search-large-padding-horizontal: 0; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-muted-color; @search-navbar-font-family: @global-secondary-font-family; @search-navbar-font-weight: @global-secondary-font-weight; @search-navbar-text-transform: @global-secondary-text-transform; @search-navbar-letter-spacing: @global-secondary-letter-spacing; @search-navbar-font-style: @global-secondary-font-style; @search-default-border-mode: -bottom; @search-default-border-width: 2px; @search-default-border: @global-secondary-background; @search-default-focus-border: fade(@search-default-border, 10%); @search-navbar-border-mode: -bottom; @search-navbar-border-width: 2px; @search-navbar-border: @global-secondary-background; @search-navbar-focus-border: fade(@search-default-border, 10%); @search-medium-border-mode: -bottom; @search-medium-border-width: 2px; @search-medium-border: @global-secondary-background; @search-medium-focus-border: fade(@search-default-border, 10%); @search-large-border-mode: -bottom; @search-large-border-width: 2px; @search-large-border: @global-secondary-background; @search-large-focus-border: fade(@search-default-border, 10%); @inverse-search-color: @inverse-global-emphasis-color; @inverse-search-placeholder-color: @inverse-global-emphasis-color; @inverse-search-icon-color: @inverse-global-emphasis-color; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-navbar-background: transparent; @inverse-search-navbar-focus-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-toggle-color: @inverse-global-color; @inverse-search-toggle-hover-color: @inverse-global-emphasis-color; @inverse-search-default-border: @inverse-global-emphasis-color; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-border: @inverse-global-primary-background; @inverse-search-navbar-focus-border: fade(@inverse-global-primary-background, 40%); @inverse-search-medium-border: @inverse-global-emphasis-color; @inverse-search-medium-focus-border: @inverse-global-primary-background; @inverse-search-large-border: @inverse-global-emphasis-color; @inverse-search-large-focus-border: @inverse-global-primary-background; @accordion-item-margin-top: 25px; @accordion-title-hover-color: @global-muted-color; @internal-accordion-icon-close-image: "../../../../uikit-themes/master-line-gallery/images/accordion-close.svg"; @internal-accordion-icon-open-image: "../../../../uikit-themes/master-line-gallery/images/accordion-open.svg"; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @inverse-accordion-icon-color: @global-inverse-color; @dropdown-padding: 30px; @dropdown-background: @global-secondary-background; @dropdown-color: @global-inverse-color; @dropdown-color-mode: light; @dropdown-nav-item-color: @global-inverse-color; @dropdown-nav-item-hover-color: @global-primary-background; @dropdown-nav-subtitle-font-size: 12px; @dropdown-nav-header-color: @global-inverse-color; @dropdown-nav-divider-border: @inverse-global-border; @dropdown-nav-sublist-item-color: @global-inverse-color; @dropdown-nav-sublist-item-hover-color: @global-primary-background; @dropdown-nav-font-weight: 400; @dropbar-padding-top: 30px; @dropbar-background: @global-secondary-background; @dropbar-color: @global-inverse-color; @dropbar-color-mode: light; @modal-background: rgba(245, 252, 90, 0.95); @offcanvas-overlay-background: fade(@global-primary-background, 80%); @notification-message-primary-color: @global-color; @notification-message-success-color: @global-color; @notification-message-warning-color: @global-color; @notification-message-danger-color: @global-color; @notification-message-primary-color-mode: dark; @notification-message-success-color-mode: dark; @notification-message-warning-color-mode: dark; @notification-message-danger-color-mode: dark; @tooltip-background: @global-secondary-background; @tooltip-border-radius: 0; @countdown-item-font-family: @global-primary-font-family; @countdown-item-font-weight: @global-primary-font-weight; @countdown-item-text-transform: @global-primary-text-transform; @countdown-item-letter-spacing: @global-primary-letter-spacing; @countdown-item-font-style: @global-primary-font-style; @nav-header-text-transform: none; @nav-default-subtitle-font-size: 12px; @nav-primary-item-color: @global-color; @nav-primary-item-hover-color: fade(@nav-primary-item-color, 50%); @nav-primary-item-active-color: fade(@nav-primary-item-color, 50%); @nav-primary-subtitle-font-size: @global-small-font-size; @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-large-font-size: 3.2rem; @nav-xlarge-font-size: 3.7rem; @nav-dividers-margin-top: 10px; @nav-secondary-margin-top: 15px; @nav-header-font-weight: @global-secondary-font-weight; @nav-default-font-weight: 400; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-font-weight: 400; @nav-secondary-subtitle-font-family: @global-font-family; @nav-secondary-subtitle-font-weight: 400; @inverse-nav-default-item-color: @inverse-global-emphasis-color; @inverse-nav-default-item-hover-color: @inverse-global-primary-background; @inverse-nav-default-item-active-color: @inverse-nav-default-item-hover-color; @inverse-nav-default-sublist-item-color: @inverse-nav-default-item-color; @inverse-nav-default-sublist-item-hover-color: @inverse-global-primary-background; @inverse-nav-default-sublist-item-active-color: @inverse-nav-default-sublist-item-hover-color; @inverse-nav-primary-item-color: @inverse-global-emphasis-color; @inverse-nav-primary-item-hover-color: @inverse-global-primary-background; @inverse-nav-primary-item-active-color: @inverse-nav-primary-item-hover-color; @inverse-nav-primary-sublist-item-color: @inverse-global-color; @inverse-nav-primary-sublist-item-hover-color: @inverse-global-primary-background; @inverse-nav-primary-sublist-item-active-color: @inverse-nav-primary-sublist-item-hover-color; @inverse-nav-secondary-item-hover-color: @inverse-global-primary-background; @inverse-nav-secondary-item-active-color: @inverse-nav-secondary-item-hover-color; @inverse-nav-secondary-subtitle-color: @inverse-global-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-primary-background; @inverse-nav-secondary-subtitle-active-color: @inverse-nav-secondary-subtitle-hover-color; @navbar-background: @global-background; @navbar-nav-item-color: @global-color; @navbar-toggle-color: @global-color; @navbar-toggle-hover-color: @global-muted-color; @navbar-subtitle-font-size: 12px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-padding: 30px; @navbar-dropdown-background: @global-secondary-background; @navbar-dropdown-color: @global-inverse-color; @navbar-dropdown-color-mode: light; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-color: @global-inverse-color; @navbar-dropdown-nav-item-hover-color: @global-primary-background; @navbar-dropdown-nav-item-active-color: @global-primary-background; @navbar-dropdown-nav-subtitle-font-size: 12px; @navbar-dropdown-nav-header-color: @global-inverse-color; @navbar-dropdown-nav-divider-border: @inverse-global-border; @navbar-dropdown-nav-sublist-item-color: @global-inverse-color; @navbar-dropdown-nav-sublist-item-hover-color: @global-primary-background; @navbar-dropdown-nav-sublist-item-active-color: @global-primary-background; @navbar-gap-m: 50px; @navbar-nav-gap-m: 50px; @navbar-nav-item-padding-horizontal-m: 0; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-margin-vertical: 15px; @navbar-nav-item-line-height: 0; @navbar-nav-item-line-transition-duration: 0.15s; @navbar-nav-item-line-hover-height: 2px; @navbar-nav-item-line-hover-background: @navbar-nav-item-color; @navbar-nav-item-line-onclick-height: @navbar-nav-item-line-hover-height; @navbar-nav-item-line-onclick-background: lighten(@navbar-nav-item-line-hover-background, 20%); @navbar-nav-item-line-active-height: @navbar-nav-item-line-hover-height; @navbar-nav-item-line-active-background: @navbar-nav-item-color; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-font-family: @global-font-family; @navbar-subtitle-font-weight: 400; @navbar-subtitle-text-transform: none; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-primary-nav-item-font-weight: @global-secondary-font-weight; @navbar-dropdown-nav-font-weight: 400; @navbar-dropdown-nav-subtitle-color: @global-inverse-color; @navbar-dropdown-nav-subtitle-font-family: @global-font-family; @navbar-dropdown-nav-subtitle-font-weight: 400; @navbar-dropdown-nav-subtitle-text-transform: none; @inverse-navbar-nav-item-color: @inverse-global-emphasis-color; @inverse-navbar-nav-item-hover-color: @inverse-global-emphasis-color; @inverse-navbar-item-color: @inverse-global-emphasis-color; @inverse-navbar-toggle-color: @inverse-global-emphasis-color; @inverse-navbar-toggle-hover-color: @inverse-global-muted-color; @inverse-navbar-nav-item-line-hover-background: @inverse-global-emphasis-color; @inverse-navbar-nav-item-line-onclick-background: @inverse-global-emphasis-color; @inverse-navbar-nav-item-line-active-background: @inverse-global-emphasis-color; @subnav-item-color: @global-color; @subnav-item-hover-color: @global-muted-color; @subnav-item-active-color: @subnav-item-hover-color; @subnav-divider-border-height: 0.75em; @subnav-pill-item-padding-vertical: 4px; @subnav-pill-item-hover-background: transparent; @subnav-pill-item-hover-color: @global-muted-color; @subnav-pill-item-onclick-background: transparent; @subnav-pill-item-onclick-color: @global-color; @subnav-pill-item-active-background: @global-secondary-background; @subnav-item-text-decoration: none; @internal-subnav-pill-item-background-image: "../../../../uikit-themes/master-line-gallery/images/subnav-pill-item-background-image.svg"; @inverse-subnav-item-color: @inverse-global-emphasis-color; @inverse-subnav-item-hover-color: @inverse-global-primary-background; @inverse-subnav-item-active-color: @inverse-subnav-item-hover-color; @inverse-subnav-pill-item-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-hover-background: transparent; @inverse-subnav-pill-item-hover-color: @inverse-global-primary-background; @inverse-subnav-pill-item-onclick-background: transparent; @inverse-subnav-pill-item-onclick-color: @inverse-global-primary-background; @inverse-subnav-item-disabled-color: fade(@inverse-subnav-item-color, 20%); @breadcrumb-item-color: @global-color; @breadcrumb-item-hover-color: @global-muted-color; @breadcrumb-divider: "›"; @breadcrumb-divider-margin-horizontal: 10px; @breadcrumb-divider-color: @global-color; @inverse-breadcrumb-item-color: @inverse-global-emphasis-color; @inverse-breadcrumb-item-hover-color: @inverse-global-muted-color; @inverse-breadcrumb-item-active-color: @inverse-global-emphasis-color; @inverse-breadcrumb-divider-color: @inverse-global-emphasis-color; @pagination-margin-horizontal: 10px; @pagination-item-padding-vertical: 9px; @pagination-item-padding-horizontal: 17px; @pagination-item-color: @global-color; @pagination-item-hover-color: @global-inverse-color; @pagination-item-active-color: @global-inverse-color; @pagination-item-height: 45px; @pagination-item-hover-background: @global-secondary-background; @pagination-item-active-background: @pagination-item-hover-background; @pagination-item-font-size: @global-medium-font-size; @internal-pagination-item-background-image: "../../../../uikit-themes/master-line-gallery/images/pagination-item-background-image.svg"; @inverse-pagination-item-color: @inverse-global-emphasis-color; @inverse-pagination-item-hover-color: @inverse-global-inverse-color; @inverse-pagination-item-active-color: @inverse-global-inverse-color; @inverse-pagination-item-hover-background: @inverse-global-emphasis-color; @inverse-pagination-item-active-background: @inverse-global-emphasis-color; @tab-item-padding-vertical: 6px; @tab-item-color: @global-color; @tab-item-hover-color: @global-muted-color; @tab-item-active-color: @global-inverse-color; @tab-item-active-background: @global-secondary-background; @tab-border-width: 0; @tab-border: transparent; @tab-item-border-width: 0; @internal-tab-item-background-image: "../../../../uikit-themes/master-line-gallery/images/tab-item-background-image.svg"; @inverse-tab-item-color: @inverse-global-emphasis-color; @inverse-tab-item-hover-color: @inverse-global-primary-background; @inverse-tab-item-active-color: @inverse-global-inverse-color; @inverse-tab-item-active-background: @inverse-global-primary-background; @slidenav-padding-vertical: 17px; @slidenav-padding-horizontal: 15px; @slidenav-color: @global-color; @slidenav-hover-color: @global-primary-background; @slidenav-active-color: @global-color; @slidenav-large-padding-vertical: 22px; @slidenav-large-padding-horizontal: 20px; @slidenav-background: @global-primary-background; @slidenav-hover-background: @global-secondary-background; @slidenav-active-background: @global-primary-background; @inverse-slidenav-color: @global-emphasis-color; @inverse-slidenav-hover-color: @global-emphasis-color; @inverse-slidenav-active-color: @global-emphasis-color; @inverse-slidenav-background: @inverse-global-emphasis-color; @inverse-slidenav-hover-background: fade(@inverse-global-emphasis-color, 80%); @inverse-slidenav-active-background: fade(@inverse-global-emphasis-color, 60%); @dotnav-item-background: fade(@global-secondary-background, 15%); @dotnav-item-hover-background: @global-secondary-background; @dotnav-item-onclick-background: fade(@dotnav-item-hover-background, 50%); @dotnav-item-active-background: @dotnav-item-hover-background; @inverse-dotnav-item-background: fade(@global-inverse-color, 20%); @inverse-dotnav-item-hover-background: @global-inverse-color; @inverse-dotnav-item-active-background: @inverse-dotnav-item-hover-background; @thumbnav-item-border-width: @global-border-width; @thumbnav-item-hover-border: @global-border; @thumbnav-item-active-border: @global-border; @inverse-thumbnav-item-hover-border: @inverse-global-primary-background; @inverse-thumbnav-item-active-border: @inverse-global-primary-background; @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-muted-color; @iconnav-item-active-color: @iconnav-item-hover-color; @inverse-iconnav-item-color: @inverse-global-emphasis-color; @inverse-iconnav-item-hover-color: @global-primary-background; @inverse-iconnav-item-active-color: @inverse-iconnav-item-hover-color; @lightbox-caption-padding-vertical: 20px; @lightbox-caption-padding-horizontal: 20px; @lightbox-caption-background: @global-secondary-background; @lightbox-caption-color: @global-inverse-color; @text-meta-font-size: 15px; @text-primary-color: #e6dc0c; @text-success-color: darken(@global-success-background, 25%); @text-warning-color: darken(@global-warning-background, 10%); @text-danger-color: darken(@global-danger-background, 15%); @text-background-color: @text-primary-color; @text-meta-font-weight: 400; @internal-text-background-color-gradient: linear-gradient(90deg, lighten(@text-background-color, 8%) 30%, saturate(darken(@text-background-color, 6%), 40%) 100%); @inverse-text-lead-color: @inverse-global-emphasis-color; @inverse-text-secondary-color: @global-inverse-color; @logo-font-weight: @global-primary-font-weight; @logo-text-transform: @global-primary-text-transform; @logo-letter-spacing: @global-primary-letter-spacing; @inverse-dropcap-color: @inverse-global-emphasis-color; @inverse-global-color: fade(@global-inverse-color, 75%); @inverse-global-primary-background: @global-primary-background; @inverse-global-border: fade(@global-inverse-color, 15%);assets/uikit-themes/master-line-gallery/styles/white-green.less000064400000000712151666572410021001 0ustar00// // Global // @global-danger-background: #FA8571; @global-muted-background: #ECEDEB; @global-primary-background: #97FA72; @global-success-background: #6DF786; @global-warning-background: #F5FC59; // // List // @list-primary-color: darken(@global-primary-background, 20%); @list-striped-background: lighten(@global-muted-background, 4%); // // Text // @text-primary-color: darken(@global-primary-background, 25%); @text-warning-color: #efdc4b; assets/uikit-themes/master-line-gallery/styles/black-orange.less000064400000025243151666572410021116 0ustar00// // Global // @global-color: #FFFFFF; @global-emphasis-color: #FFFFFF; @global-inverse-color: #1A1A1A; @global-link-color: #FFFFFF; @global-muted-color: rgba(255, 255, 255, 0.6); @global-link-hover-color: rgba(255, 255, 255, 0.6); @global-background: #1A1A1A; @global-danger-background: #FF4D37; @global-muted-background: #272727; @global-primary-background: #FF8C38; @global-secondary-background: #141414; @global-success-background: #95CD5A; @global-border: rgba(255, 255, 255, 0.08); // // Theme // @theme-page-container-color-mode: light; @theme-box-decoration-default-background: @global-primary-background; @theme-box-decoration-primary-background: @global-primary-background; @theme-box-decoration-secondary-background: @global-primary-background; // // Alert // @alert-primary-background: @global-primary-background; @alert-primary-color: @global-inverse-color; @alert-success-background: @global-success-background; @alert-success-color: @global-inverse-color; @alert-warning-background: @global-warning-background; @alert-warning-color: @global-inverse-color; @alert-danger-background: @global-danger-background; @alert-danger-color: @global-inverse-color; // // Badge // @badge-background: @global-primary-background; @badge-color: @global-inverse-color; // // Base // @base-em-color: lighten(@global-primary-background, 10%); @base-ins-background: fade(@global-primary-background, 8%); @base-ins-color: lighten(@global-primary-background, 12%); @base-mark-background: fade(@global-primary-background, 8%); @base-mark-color: lighten(@global-primary-background, 12%); @base-pre-border: @global-border; // // Button // @button-default-background: @global-muted-background; @button-default-hover-background: lighten(@button-default-background, 4%); @button-default-active-background: darken(@button-default-background, 10%); @button-primary-color: @global-inverse-color; @button-primary-hover-background: @global-emphasis-color; @button-primary-hover-color: @global-inverse-color; @button-primary-active-color: @global-inverse-color; @button-secondary-background: @global-emphasis-color; @button-secondary-hover-background: darken(@button-secondary-background, 10%); // // Card // @card-badge-background: @global-primary-background; @card-default-color-mode: light; @card-primary-color-mode: dark; @card-primary-hover-background: desaturate(darken(@global-primary-background, 6%), 8%); @card-secondary-color: @global-color; @card-secondary-hover-background: lighten(@card-secondary-background, 7%); // // Divider // @divider-icon-color: @global-primary-background; @divider-small-border: @global-primary-background; @divider-vertical-border: @global-primary-background; // // Dotnav // @dotnav-item-background: @global-border; @dotnav-item-hover-background: @global-primary-background; @dotnav-item-onclick-background: @global-primary-background; @dotnav-item-active-background: @global-primary-background; // // Dropbar // @dropbar-color: @global-color; // // Dropdown // @dropdown-color: @global-color; @dropdown-nav-item-color: @global-color; @dropdown-nav-divider-border: @global-border; @dropdown-nav-header-color: @global-muted-color; @dropdown-nav-sublist-item-color: @global-color; // // Form // @form-border: @global-border; @form-focus-border: @global-color; @form-disabled-border: rgba(255, 255, 255, 0.5); @form-danger-color: @global-danger-background; @form-success-border: @global-success-background; @form-success-color: @global-success-background; @form-blank-focus-border: @global-color; @form-range-track-background: @global-border; @form-range-track-focus-background: rgba(255, 255, 255, 0.28); @form-radio-background: @global-muted-background; @form-radio-checked-focus-background: @global-primary-background; @form-radio-focus-background: fadein(@global-border, 5%); @form-radio-checked-background: @global-primary-background; // // Icon // @icon-button-color: @global-inverse-color; @icon-button-hover-color: @global-emphasis-color; @icon-button-active-background: @global-primary-background; @icon-button-active-color: @global-inverse-color; // // Iconnav // @iconnav-item-hover-color: @global-primary-background; // // Inverse // @inverse-global-border: rgba(0, 0, 0, 0.3); @inverse-global-color: @global-inverse-color; @inverse-global-color-mode: dark; @inverse-global-muted-background: fade(@global-inverse-color, 4%); @inverse-global-muted-color: fade(@global-inverse-color, 60%); @inverse-global-primary-background: @global-inverse-color; @inverse-button-default-background: @global-muted-background; @inverse-button-default-hover-background: lighten(@inverse-button-default-background, 4%); @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-hover-background: @global-secondary-background; @inverse-button-primary-active-background: @inverse-button-primary-background; @inverse-button-primary-active-color: @inverse-button-primary-color; @inverse-button-secondary-background: @global-secondary-background; @inverse-button-secondary-color: @inverse-global-inverse-color; @inverse-button-secondary-hover-background: lighten(@inverse-button-secondary-background, 7%); @inverse-button-secondary-active-background: @inverse-button-secondary-background; @inverse-form-border: rgba(0, 0, 0, 0.3); @inverse-icon-button-background: @global-primary-background; @inverse-icon-button-color: @global-inverse-color; @inverse-icon-button-hover-background: @global-secondary-background; @inverse-icon-button-hover-color: @global-primary-background; @inverse-icon-button-active-background: fade(@inverse-icon-button-hover-background, 67%); @inverse-icon-button-active-color: @inverse-icon-button-hover-color; @inverse-nav-secondary-subtitle-color: @inverse-global-muted-color; @inverse-subnav-item-hover-color: @inverse-global-muted-color; @inverse-subnav-pill-item-hover-color: @inverse-global-muted-color; @inverse-tab-item-hover-color: @inverse-global-muted-color; // // Label // @label-color: @global-inverse-color; @label-success-color: @global-inverse-color; @label-warning-color: @global-inverse-color; @label-danger-color: @global-inverse-color; // // Lightbox // @lightbox-caption-color: @global-emphasis-color; // // List // @list-primary-color: @global-primary-background; @list-striped-background: fade(@global-border, 4%); // // Marker // @marker-color: @global-inverse-color; // // Nav // @nav-primary-item-hover-color: @global-primary-background; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-item-active-color: @nav-secondary-item-hover-color; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-subtitle-active-color: @nav-secondary-subtitle-hover-color; // // Navbar // @navbar-color-mode: light; @navbar-toggle-hover-color: @global-primary-background; @navbar-dropdown-color-mode: light; @navbar-dropdown-color: @global-color; @navbar-dropdown-nav-divider-border: @global-border; @navbar-dropdown-nav-item-color: @global-emphasis-color; @navbar-dropdown-nav-header-color: @global-emphasis-color; @navbar-dropdown-nav-sublist-item-color: @global-emphasis-color; @navbar-dropdown-nav-subtitle-color: @global-color; // // Notification // @notification-message-primary-color-mode: light; @notification-message-success-color-mode: light; @notification-message-warning-color-mode: light; @notification-message-danger-color-mode: light; // // Offcanvas // @offcanvas-overlay-background: fade(darken(@global-secondary-background, 5%), 80%); // // Overlay // @overlay-default-color-mode: light; // // Pagination // @pagination-item-hover-background: @global-primary-background; // // Progress // @progress-background: @global-muted-background; @progress-bar-background: @global-primary-background; // // Search // @search-default-border: @global-border; @search-default-focus-border: fadein(@search-default-border, 100%); @search-navbar-border: @global-color; @search-navbar-focus-border: fade(@global-color, 30%); @search-medium-border: @global-border; @search-medium-focus-border: fadein(@search-default-border, 100%); @search-large-border: @global-border; @search-large-focus-border: fadein(@search-default-border, 100%); @search-toggle-hover-color: @global-primary-background; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; // // Slidenav // @slidenav-color: @global-inverse-color; @slidenav-active-color: @global-inverse-color; // // Subnav // @subnav-item-hover-color: @global-muted-color; @subnav-item-active-color: @global-primary-background; @subnav-pill-item-active-background: @global-primary-background; // // Tab // @tab-item-active-background: @global-primary-background; // // Table // @table-row-active-background: fade(@global-border, 4%); @table-striped-row-background: fade(@global-border, 4%); // // Text // @text-primary-color: @global-primary-background; @text-secondary-color: lighten(@global-primary-background, 10%); @text-success-color: @global-success-background; @text-warning-color: @global-warning-background; @text-danger-color: @global-danger-background; @internal-text-background-color-gradient: linear-gradient(90deg, @text-background-color 30%, saturate(darken(@text-background-color, 10%), 30%) 100%); // // Thumbnav // @thumbnav-item-hover-border: @global-primary-background; @thumbnav-item-active-border: @global-primary-background; // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: dark; // // Tooltip // @tooltip-color: @global-emphasis-color; // // Woocommerce // @woocommerce-rating-color: @global-primary-background; @woocommerce-rating-background-color: fadein(@global-border, 5%); @woocommerce-widget-active-filters-hover-background: darken(@global-muted-background, 2%); assets/uikit-themes/master-line-gallery/styles/colored-green.less000064400000020671151666572410021316 0ustar00// // Global // @global-color: #004651; @global-emphasis-color: #004651; @global-inverse-color: #00DD87; @global-link-color: #004651; @global-muted-color: rgba(0, 70, 81, 0.5); @global-link-hover-color: #004651; @global-background: #F3D4DF; @global-danger-background: #FB578C; @global-muted-background: #EBC9D6; @global-primary-background: #00DD87; @global-secondary-background: #004651; @global-success-background: #05C382; @global-warning-background: #ffc107; @global-border: rgba(0, 70, 81, 0.15); // // Alert // @alert-primary-background: rgba(0, 70, 81, 0.1); @alert-primary-color: @global-color; @alert-warning-background: rgba(255, 210, 109, 0.5); @alert-danger-background: rgba(251, 87, 140, 0.3); // // Badge // @badge-color: #EAFBFD; // // Base // @base-em-color: @global-danger-background; @base-ins-background: desaturate(darken(@global-muted-background, 2%), 5%); @base-mark-background: desaturate(darken(@global-muted-background, 2%), 5%); @base-pre-border: @global-border; // // Button // @button-default-color: @global-color; @button-default-hover-color: @global-color; @button-default-active-color: @global-color; @button-primary-background: @global-primary-background; @button-primary-color: @global-color; @button-primary-hover-color: #EAFBFD; @button-primary-active-background: @global-primary-background; @button-secondary-background: @global-color; @button-secondary-color: #EAFBFD; @button-secondary-hover-background: darken(@global-secondary-background, 4%); @button-secondary-hover-color: #EAFBFD; @button-secondary-active-background: @global-color; @button-secondary-active-color: #EAFBFD; @button-danger-color: #EAFBFD; @button-danger-hover-color: #EAFBFD; @button-danger-active-color: #EAFBFD; // // Card // @card-badge-color: #EAFBFD; @card-default-color: @global-color; @card-default-title-color: @global-color; @card-primary-background: @global-primary-background; @card-primary-color: @global-color; @card-primary-hover-background: saturate(darken(@global-primary-background, 1%), 3%); @card-secondary-color: @global-primary-background; @card-secondary-color-mode: light; @card-secondary-hover-background: darken(@global-secondary-background, 4%); // // Divider // @divider-small-border: @global-color; @divider-vertical-border: @global-color; // // Dotnav // @dotnav-item-hover-background: @global-primary-background; // // Dropdown // @dropdown-nav-item-hover-color: #EAFBFD; @dropdown-nav-sublist-item-hover-color: #EAFBFD; // // Form Range // @form-range-track-background: fade(@global-muted-color, 15%); @form-range-track-focus-background: @global-muted-color; // // Form // @form-border: fade(@global-color, 15%); @form-focus-border: @global-color; @form-disabled-border: fade(@global-color, 5%); @form-success-border: fade(@global-success-background, 60%); @form-success-color: @global-success-background; @form-radio-background: fade(desaturate(darken(@global-muted-background, 12%), 14%), 40%); @form-radio-checked-icon-color: @global-background; // // Icon // @icon-button-background: @global-secondary-background; @icon-button-color: @global-primary-background; @icon-button-hover-background: darken(@global-secondary-background, 4%); @icon-button-hover-color: @global-primary-background; @icon-button-active-background: @icon-button-background; @icon-button-active-color: @global-primary-background; // // Inverse // @inverse-global-muted-color: fade(@global-inverse-color, 60%); @inverse-global-inverse-color: @global-emphasis-color; @inverse-button-primary-hover-background: lighten(@global-primary-background, 4%); @inverse-button-primary-hover-color: @inverse-button-primary-color; @inverse-button-primary-active-background: darken(@inverse-button-primary-hover-background, 5%); @inverse-button-primary-active-color: @inverse-button-primary-hover-color; @inverse-button-secondary-color: #EAFBFD; @inverse-button-secondary-background: lighten(@global-secondary-background, 3%); @inverse-button-secondary-hover-background: lighten(@inverse-button-secondary-background,4%); @inverse-button-secondary-hover-color: @inverse-button-secondary-color; @inverse-button-secondary-active-background: @inverse-button-secondary-background; @inverse-button-secondary-active-color: @inverse-button-secondary-hover-color; @inverse-dotnav-item-background: fade(@global-background, 50%); @inverse-dotnav-item-hover-background: @global-background; @inverse-dotnav-item-onclick-background: fade(@global-background, 70%); @inverse-form-border: fade(@global-primary-background, 10%); @inverse-icon-button-background: @global-primary-background; @inverse-icon-button-color: @global-color; @inverse-icon-button-hover-background: darken(@global-primary-background, 7%); @inverse-icon-button-hover-color: @global-color; @inverse-icon-button-active-background: darken(@global-primary-background, 17%); @inverse-icon-button-active-color: @global-color; @inverse-marker-background: @global-background; @inverse-nav-default-item-color: @global-inverse-color; @inverse-nav-default-item-hover-color: #EAFBFD; @inverse-nav-default-sublist-item-hover-color: #EAFBFD; @inverse-nav-secondary-item-hover-color: #EAFBFD; @inverse-nav-secondary-sublist-item-hover-color: #EAFBFD; @inverse-nav-secondary-subtitle-hover-color: #EAFBFD; @inverse-nav-secondary-sublist-item-active-color: #EAFBFD; @inverse-slidenav-background: @global-background; @inverse-slidenav-hover-background: darken(@global-primary-background, 7%); @inverse-slidenav-active-background: darken(@global-primary-background, 17%); @inverse-subnav-item-hover-color: @inverse-global-muted-color; @inverse-subnav-pill-item-hover-color: @inverse-global-muted-color; @inverse-tab-item-hover-color: @inverse-global-muted-color; // // Label // @label-background: @global-secondary-background; @label-color: #EAFBFD; @label-success-color: #EAFBFD; @label-warning-color: #EAFBFD; @label-danger-color: #EAFBFD; // // List // @list-primary-color: #B6A8EC; @list-striped-background: fade(@global-muted-background, 63%); // // Navbar // @navbar-dropdown-nav-item-hover-color: #EAFBFD; @navbar-dropdown-nav-item-active-color: #EAFBFD; @navbar-dropdown-nav-sublist-item-hover-color: #EAFBFD; @navbar-dropdown-nav-sublist-item-active-color: #EAFBFD; // // Offcanvas // @offcanvas-bar-color-mode: light; // // Pagination // @pagination-item-hover-background: saturate(darken(@global-primary-background, 2%), 4%); @pagination-item-hover-color: @global-color; @pagination-item-active-color: @global-color; // // Search // @search-default-border: fade(@global-color, 15%); @search-default-focus-border: @global-color; @search-large-border: fade(@global-color, 15%); @search-large-focus-border: @global-color; // // Section // @section-primary-color-mode: dark; @section-secondary-color-mode: light; // // Subnav // @subnav-pill-item-active-color: #FFFFFF; // // SVG // @internal-svg-muted-color: @global-muted-color; // // Tab // @tab-item-active-color: #FFFFFF; // // Table // @table-row-active-background: fade(@global-muted-background, 63%); @table-striped-row-background: fade(@global-muted-background, 63%); // // Text // @text-primary-color: #0ED186; @text-secondary-color: #B3A3F3; @text-success-color: @global-success-background; @text-danger-color: @global-danger-background; @text-warning-color: #efa65d; @internal-text-background-color-gradient: linear-gradient(90deg, @text-background-color 30%, saturate(darken(@text-background-color, 10%), 30%) 100%); // // Woocommerce // @woocommerce-rating-background-color: desaturate(darken(@global-muted-background, 8%), 12%); assets/uikit-themes/master-line-gallery/styles/light-green.less000064400000010234151666572410020770 0ustar00// // Global // @global-color: #151313; @global-emphasis-color: #151313; @global-inverse-color: #FDFAF2; @global-background: #FAF7ED; @global-muted-background: #ECE7DA; @global-primary-background: #017D69; @global-secondary-background: #151313; @global-success-background: #26BFA5; // // Alert // @alert-primary-background: fade(@global-primary-background, 20%); @alert-success-background: fade(@global-success-background, 30%); // // Badge // @badge-color: @global-inverse-color; // // Base // @base-ins-background: fade(@global-primary-background, 20%); @base-mark-background: fade(@global-primary-background, 20%); @base-selection-background: @global-primary-background; @base-selection-color: @global-inverse-color; // // Button // @button-primary-color: @global-inverse-color; @button-primary-hover-color: @global-inverse-color; @button-primary-active-color: @global-inverse-color; // // Card // @card-badge-color: @global-inverse-color; @card-primary-color: @global-inverse-color; @card-primary-color-mode: light; @card-primary-hover-background: darken(@global-primary-background, 2%); // // Form // @form-radio-background: @global-muted-background; @form-radio-focus-background: desaturate(darken(@form-radio-background, 5%), 5%); // // Icon // @icon-button-color: @global-inverse-color; @icon-button-hover-color: @global-inverse-color; @icon-button-active-color: @global-inverse-color; // // Inverse // @inverse-badge-color: @global-inverse-color; @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-hover-background: #02715F; @inverse-button-primary-hover-color: @global-inverse-color; @inverse-button-primary-active-background: #055F4F; @inverse-button-primary-active-color: @global-inverse-color; @inverse-button-text-hover-border: rgba(253, 250, 242, 0); @inverse-card-badge-color: @global-inverse-color; @inverse-form-border: rgba(253, 250, 242, 0.5); @inverse-heading-bullet-border: @global-inverse-color; @inverse-icon-link-hover-color: #fff; @inverse-icon-button-background: @global-inverse-color; @inverse-icon-button-hover-background: #FAF1DC; @inverse-icon-button-active-background: #F6E9C6; @inverse-label-color: @global-inverse-color; @inverse-link-heading-hover-color: rgba(253, 250, 242, 0.5); @inverse-subnav-item-color: #fff; @inverse-subnav-item-hover-color: rgba(255, 255, 255, 0.6); @inverse-subnav-item-active-color: rgba(255, 255, 255, 0.6); @inverse-nav-secondary-item-hover-color: lighten(@global-primary-background, 8%); @inverse-nav-secondary-subtitle-hover-color: lighten(@global-primary-background, 8%); // // Label // @label-color: @global-inverse-color; @label-success-color: @global-inverse-color; @label-warning-color: @global-inverse-color; @label-danger-color: @global-inverse-color; // // List // @list-primary-color: @global-primary-background; @list-striped-background: saturate(lighten(@global-muted-background, 3%), 10%); // // Marker // @marker-color: @global-inverse-color; @marker-hover-color: @global-inverse-color; // // Navbar // @navbar-dropdown-nav-item-hover-color: lighten(@global-primary-background, 8%); @navbar-dropdown-nav-item-active-color: lighten(@global-primary-background, 8%); // // Overlay // @overlay-primary-color-mode: light; // // Section // @section-primary-color-mode: light; // // Slidenav // @slidenav-color: @global-inverse-color; @slidenav-hover-color: @global-inverse-color; @slidenav-active-color: @global-inverse-color; // // Table // @table-row-active-background: saturate(lighten(@global-muted-background, 3%), 10%); @table-striped-row-background: saturate(lighten(@global-muted-background, 3%), 10%); // // Text // @text-primary-color: @global-primary-background; // // Tile // @tile-primary-color-mode: light; // // Woocommerce // @woocommerce-rating-background-color: desaturate(darken(@global-muted-background, 12%), 12%); assets/uikit-themes/master-line-gallery/styles/colored-blue.less000064400000021133151666572410021137 0ustar00// // Global // @global-color: #E8462A; @global-emphasis-color: #E8462A; @global-inverse-color: #FE9FC6; @global-link-color: #FFFFFF; @global-muted-color: rgba(232, 70, 42, 0.7); @global-background: #FE9FC6; @global-muted-background: #FFB4D3; @global-primary-background: #302E72; @global-secondary-background: #EA573D; @global-success-background: #5D9A54; @global-danger-background: #ff5c5c; @global-warning-background: #DD8F1B; @global-border: rgba(232, 70, 42, 0.5); // // Alert // @alert-primary-background: @global-primary-background; @alert-primary-color: @global-inverse-color; @alert-success-background: #E6F7E7; @alert-success-color: @global-success-background; @alert-warning-background: #FFF8DB; @alert-warning-color: @global-warning-background; @alert-danger-background: lighten(@global-danger-background, 40%); @alert-danger-color: @global-danger-background; // // Badge // @badge-color: #FFFFFF; // // Base // @base-em-color: darken(@global-danger-background, 15%); @base-ins-background: @global-muted-background; @base-mark-background: @global-muted-background; @base-pre-border: @global-border; // // Breadcrumb // @breadcrumb-item-hover-color: @global-primary-background; // // Button // @button-default-background: lighten(@global-muted-background, 3%); @button-default-hover-background: #FFFFFF; @button-primary-color: #FFFFFF; @button-primary-hover-color: #FFFFFF; @button-primary-active-color: @button-primary-color; @button-secondary-color: #FFFFFF; @button-secondary-hover-background: lighten(@global-secondary-background, 5%); @button-secondary-active-background: desaturate(darken(@button-secondary-background, 8%), 8%); @button-danger-color: #FFFFFF; @button-danger-hover-color: #FFFFFF; @button-danger-active-color: #FFFFFF; // // Card // @card-badge-color: #FFFFFF; @card-default-hover-background: lighten(@card-default-background, 3%); @card-primary-color-mode: light; @card-secondary-hover-background: saturate(lighten(@card-secondary-background, 3%), 3%); // // Close // @close-hover-color: @global-primary-background; // // Dropdown // @dropdown-nav-item-hover-color: #FFFFFF; @dropdown-nav-sublist-item-hover-color: #FFFFFF; // // Form Range // @form-range-track-background: @global-border; // // Form // @form-disabled-border: fade(@global-border, 30%); @form-focus-border: fade(@form-border, 30%); @form-radio-background: @global-muted-background; @form-radio-focus-background: fade(@global-border, 25%); @form-success-color: @global-success-background; @form-success-border: @global-success-background; @form-radio-checked-icon-color: #FFFFFF; // // Heading // @heading-bullet-border: @global-color; // // Icon // @icon-button-color: @global-inverse-color; @icon-button-hover-color: #FFFFFF; @icon-button-active-background: desaturate(darken(@icon-button-hover-background, 8%), 4%); @icon-button-active-color: #FFFFFF; // // Iconnav // @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: #FFFFFF; // // Inverse // @inverse-global-border: fade(@global-inverse-color, 20%); @inverse-global-color: @global-inverse-color; @inverse-global-primary-background: #FFFFFF; @inverse-button-default-background: @global-muted-background; @inverse-button-default-hover-background: #FFFFFF; @inverse-button-default-active-background: @inverse-button-default-background; @inverse-button-primary-background: lighten(@global-primary-background, 15%); @inverse-button-primary-color: #FFFFFF; @inverse-button-primary-hover-background: lighten(@inverse-button-primary-background, 5%); @inverse-button-primary-hover-color: #FFFFFF; @inverse-button-primary-active-color: #FFFFFF; @inverse-button-secondary-background: @inverse-global-primary-background; @inverse-form-border: @global-inverse-color; @inverse-icon-button-color: @global-inverse-color; @inverse-icon-button-background: lighten(@global-primary-background, 15%); @inverse-icon-button-hover-background: @global-inverse-color; @inverse-icon-button-active-background: darken(@inverse-icon-button-hover-background, 4%); @inverse-iconnav-item-hover-color: #FFFFFF; @inverse-search-navbar-border: @global-inverse-color; @inverse-search-navbar-focus-border: fade(@global-inverse-color, 30%); // // Label // @label-background: lighten(@global-muted-background, 5%); @label-color: @global-emphasis-color; @label-success-background: #E6F7E7; @label-success-color: @global-success-background; @label-warning-background: #FFF8DB; @label-warning-color: @global-warning-background; @label-danger-background: lighten(@global-danger-background, 40%); @label-danger-color: @global-danger-background; // // List // @list-primary-color: @global-primary-background; // // Marker // @marker-color: #FFFFFF; @marker-hover-color: #FFFFFF; // // Nav // @nav-default-item-color: rgba(232, 70, 42, 0.8); @nav-default-item-hover-color: #FFFFFF; @nav-default-item-active-color: #FFFFFF; @nav-default-sublist-item-color: rgba(232, 70, 42, 0.8); @nav-default-sublist-item-hover-color: #FFFFFF; @nav-default-sublist-item-active-color: #FFFFFF; @nav-primary-item-hover-color: #FFFFFF; @nav-primary-item-active-color: #ffffff; @nav-primary-sublist-item-hover-color: #FFFFFF; @nav-primary-sublist-item-active-color: #FFFFFF; @nav-secondary-item-hover-color: #FFFFFF; @nav-secondary-item-active-color: @nav-secondary-item-hover-color; @nav-secondary-subtitle-hover-color: #FFFFFF; @nav-secondary-subtitle-active-color: @nav-secondary-subtitle-hover-color; @nav-secondary-sublist-item-hover-color: #FFFFFF; @nav-secondary-sublist-item-active-color: @nav-secondary-sublist-item-hover-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-nav-secondary-item-hover-color; // // Navbar // @navbar-toggle-hover-color: #FFFFFF; @navbar-primary-nav-item-hover-color: #FFFFFF; @navbar-primary-nav-item-active-color: #FFFFFF; @navbar-dropdown-nav-item-hover-color: #FFFFFF; @navbar-dropdown-nav-item-active-color: #FFFFFF; @navbar-dropdown-nav-divider-border: fade(@inverse-global-border, 30%); @navbar-dropdown-nav-sublist-item-hover-color: #FFFFFF; @navbar-dropdown-nav-sublist-item-active-color: #FFFFFF; // // Notification // @notification-message-primary-color: #FFFFFF; @notification-message-primary-color-mode: light; @notification-message-success-color: #FFFFFF; @notification-message-success-color-mode: light; @notification-message-warning-color: #FFFFFF; @notification-message-warning-color-mode: light; @notification-message-danger-color: #FFFFFF; @notification-message-danger-color-mode: light; // // Offcanvas // @offcanvas-overlay-background: rgba(234, 87, 61, 0.5); // // Overlay // @overlay-primary-color-mode: light; // // Pagination // @pagination-item-hover-background: @global-primary-background; @pagination-item-hover-color: #FFFFFF; @pagination-item-active-background: @global-primary-background; @pagination-item-active-color: #FFFFFF; // // Search // @search-navbar-focus-border: fade(@global-border, 35%); @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: #FFFFFF; // // Section // @section-primary-color-mode: light; @section-secondary-color-mode: light; // // Slidenav // @slidenav-color: #FFFFFF; @slidenav-hover-color: #FFFFFF; // // Subnav // @subnav-pill-item-active-background: @global-primary-background; @subnav-pill-item-active-color: #FFFFFF; // // SVG // @internal-svg-muted-color: @global-muted-color; // // Tab // @tab-item-active-color: #FFFFFF; @tab-item-active-background: @global-primary-background; // // Table // @table-row-active-background: rgba(232, 70, 42, 0.1); // // Text // @text-primary-color: @global-primary-background; @text-success-color: @global-success-background; @text-warning-color: #f2f556; @text-danger-color: @global-danger-background; // // Tile // @tile-primary-color-mode: light; // // Woocommerce // @woocommerce-rating-background-color: @global-border; @woocommerce-widget-active-filters-hover-background: darken(@global-muted-background, 2%); assets/uikit-themes/master-vision/styles/white-yellow.less000064400000006213151666572410020141 0ustar00// // Global // @global-link-color: #e4b902; @global-link-hover-color: #ffbf00; @global-primary-background: #FFED63; // // Alert // @alert-primary-color: @global-link-hover-color; // // Base // @inverse-base-link-color: @inverse-global-primary-background; @inverse-base-link-hover-color: lighten(@inverse-base-link-color, 10%); // // Button // @inverse-button-default-color: @inverse-global-primary-background; @inverse-button-default-hover-background: @inverse-global-primary-background; @inverse-button-default-hover-color: @inverse-global-inverse-color; @inverse-button-default-active-background: darken(@inverse-button-default-hover-background, 8%); @inverse-button-default-active-color: fade(@inverse-global-inverse-color, 80%); @inverse-button-default-border: @inverse-global-primary-background; @inverse-button-default-hover-border: @inverse-button-default-hover-background; @inverse-button-default-active-border: @inverse-button-default-active-background; @button-primary-color: @global-emphasis-color; @button-primary-hover-background: spin(lighten(@button-primary-background, 3%), 3%); @button-primary-hover-color: fade(@button-primary-color, 80%); @internal-button-primary-gradient: ~''; @internal-button-primary-hover-gradient: ~''; @internal-button-primary-active-gradient: ~''; @internal-button-secondary-gradient: ~''; @internal-button-secondary-hover-gradient: ~''; @internal-button-secondary-active-gradient: ~''; // // Card // @card-badge-color: @global-emphasis-color; @card-primary-color: @global-emphasis-color; @card-primary-color-mode: dark; @card-primary-hover-background: spin(lighten(@card-primary-background, 3%), 3%); @internal-card-primary-gradient: ~''; @internal-card-primary-hover-gradient: ~''; @internal-card-secondary-gradient: ~''; @internal-card-secondary-hover-gradient: ~''; @internal-card-badge-gradient: ~''; // // Link // @divider-small-border: darken(@global-primary-background, 20%); @divider-icon-color: darken(@global-primary-background, 20%); // // Link // @link-heading-hover-color: @global-link-hover-color; // // Section // @section-primary-color-mode: dark; @internal-section-primary-gradient: ~''; @internal-section-secondary-gradient: ~''; // // Subnav // @subnav-pill-item-active-color: @global-emphasis-color; @internal-subnav-pill-item-active-gradient: ~''; // // Text // @text-primary-color: @global-link-hover-color; // // Tile // @tile-primary-color-mode: dark; @internal-tile-primary-gradient: ~''; @internal-tile-secondary-gradient: ~''; assets/uikit-themes/master-vision/styles/white-blue.less000064400000002300151666572410017546 0ustar00// // Global // @global-link-color: #4A83FB; @global-primary-background: #4A83FB; // // Button // @internal-button-primary-gradient: linear-gradient(90deg, @button-primary-background 0%, spin(darken(@button-primary-background, 2%), 12%) 50%, @button-primary-background 100%); // // Card // @internal-card-primary-gradient: linear-gradient(155deg, spin(darken(@card-primary-background, 5%), 15%) 0%, @card-primary-background 100%); @internal-card-primary-hover-gradient: linear-gradient(90deg, spin(darken(@card-primary-background, 5%), 15%) 0%, @card-primary-background 100%); // // Section // @internal-section-primary-gradient: linear-gradient(155deg, spin(darken(@section-primary-background, 5%), 15%) 0%, @section-primary-background 100%); // // Subnav // @internal-subnav-pill-item-active-gradient: linear-gradient(155deg, spin(darken(@subnav-pill-item-active-background, 5%), 15%) 0%, @subnav-pill-item-active-background 100%); // // Tile // @internal-tile-primary-gradient: linear-gradient(155deg, spin(darken(@tile-primary-background, 5%), 15%) 0%, @tile-primary-background 100%); assets/uikit-themes/master-vision/styles/white-lilac.less000064400000005343151666572410017715 0ustar00// // Global // @global-emphasis-color: #445190; @global-color: #6D76A2; @global-muted-color: fade(@global-color, 50%); @global-link-color: #8484FF; @global-muted-background: #f6f6ff; @global-primary-background: #8484FF; @global-secondary-background: #140F3D; @global-border: rgba(10,11,18,0.08); @global-small-box-shadow: 2px 4px 16px rgba(10,11,18,0.06); @global-medium-box-shadow: 2px 12px 32px rgba(10,11,18,0.06); @global-large-box-shadow: 2px 18px 48px rgba(10,11,18,0.06); @global-xlarge-box-shadow: 2px 26px 56px rgba(10,11,18,0.06); // // Badge // @badge-background: @global-emphasis-color; // // Button // @button-default-border: fade(@global-secondary-background, 10%); @button-default-hover-border: @global-secondary-background; @button-default-active-border: @global-secondary-background; @inverse-button-default-border: fade(@inverse-global-color, 20%); @button-primary-hover-background: spin(darken(@button-primary-background, 8%), -5%); @internal-button-primary-gradient: ~''; @internal-button-primary-hover-gradient: ~''; @internal-button-primary-active-gradient: ~''; @button-secondary-hover-background: darken(@button-secondary-background, 5%); @internal-button-secondary-gradient: ~''; @internal-button-secondary-hover-gradient: ~''; @internal-button-secondary-active-gradient: ~''; // // Card // @card-primary-hover-background: spin(darken(@card-primary-background, 3%), -5%); @internal-card-primary-gradient: ~''; @internal-card-primary-hover-gradient: ~''; @card-secondary-hover-background: darken(@card-secondary-background, 5%); @internal-card-secondary-gradient: ~''; @internal-card-secondary-hover-gradient: ~''; @internal-card-badge-gradient: ~''; // // Navbar // @navbar-dropdown-background: desaturate(lighten(@global-secondary-background, 7%), 12%); // // Section // @internal-section-primary-gradient: ~''; @internal-section-secondary-gradient: ~''; // // Subnav // @internal-subnav-pill-item-active-gradient: ~''; // // Tile // @internal-tile-primary-gradient: ~''; @internal-tile-secondary-gradient: ~''; // // Woocommerce // @woocommerce-rating-color: @global-emphasis-color; assets/uikit-themes/master-vision/styles/white-pink.less000064400000007224151666572410017572 0ustar00// // Global // @global-emphasis-color: #181937; @global-color: #4A4E58; @global-muted-color: #BEBFC5; @global-link-color: #FF2E64; @global-muted-background: #f7f8f9; @global-primary-background: #FF2E64; @global-secondary-background: #060D2A; @global-border: rgba(6,13,42,0.06); @global-small-box-shadow: 2px 4px 16px rgba(6,13,42,0.06); @global-medium-box-shadow: 2px 12px 32px rgba(6,13,42,0.06); @global-large-box-shadow: 2px 18px 48px rgba(6,13,42,0.06); @global-xlarge-box-shadow: 2px 26px 56px rgba(6,13,42,0.06); // // Button // @button-default-color: @global-primary-background; @button-default-border: @button-default-color; @inverse-button-default-border: fade(@inverse-global-color, 20%); @internal-button-default-gradient: linear-gradient(90deg, @global-primary-background 50%, @button-default-background 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, @global-primary-background 50%, @button-default-hover-background 50%); @internal-button-default-active-gradient: linear-gradient(90deg, lighten(@global-primary-background, 8%) 0%, darken(@global-primary-background, 12%) 100%); @internal-button-primary-gradient: linear-gradient(90deg, @button-primary-background 0%, spin(darken(@button-primary-background, 15%), -15%) 50%, darken(@button-primary-background, 10%) 100%); @internal-button-secondary-gradient: linear-gradient(90deg, @button-secondary-background 0%, lighten(@button-secondary-background, 5%) 50%, @button-secondary-background 50%, #540535 100%); // // Card // @internal-card-primary-gradient: linear-gradient(155deg, spin(darken(@card-primary-background, 7%), -15%) 0%, @card-primary-background 100%); @internal-card-primary-hover-gradient: linear-gradient(90deg, spin(darken(@card-primary-background, 7%), -15%) 0%, darken(@card-primary-background, 5%) 100%); @internal-card-secondary-gradient: linear-gradient(155deg, darken(@card-secondary-background, 8%) 0%, @card-secondary-background 50%, #3A0324 100%); @internal-card-secondary-hover-gradient: linear-gradient(90deg, darken(@card-secondary-background, 8%) 0%, @card-secondary-background 50%, #3A0324 100%); @internal-card-badge-gradient: linear-gradient(90deg, spin(darken(@global-primary-background, 15%), -15%), darken(@global-primary-background, 10%)); // // Navbar // @navbar-dropdown-background: darken(@global-secondary-background, 8%); // // Section // @internal-section-primary-gradient: linear-gradient(155deg, spin(darken(@section-primary-background, 7%), -15%) 0%, @section-primary-background 100%); @internal-section-secondary-gradient: linear-gradient(155deg, darken(@section-secondary-background, 8%) 0%, @section-secondary-background 50%, #3A0324 100%); // // Subnav // @internal-subnav-pill-item-active-gradient: linear-gradient(155deg, spin(darken(@subnav-pill-item-active-background, 7%), -15%) 0%, @subnav-pill-item-active-background 100%); // // Tile // @internal-tile-primary-gradient: linear-gradient(155deg, spin(darken(@tile-primary-background, 7%), -15%) 0%, @tile-primary-background 100%); @internal-tile-secondary-gradient: linear-gradient(155deg, darken(@tile-secondary-background, 8%) 0%, @tile-secondary-background 50%, #3A0324 100%); assets/uikit-themes/master-vision/styles/black-green.less000064400000025346151666572410017672 0ustar00// // Global // @global-emphasis-color: #fff; @global-color: fade(@global-emphasis-color, 60%); @global-muted-color: fade(@global-emphasis-color, 40%); @global-link-color: #40ED70; @global-link-hover-color: lighten(@global-link-color, 10%); @global-inverse-color: #000; @global-background: #171717; @global-muted-background: #1d1d1d; @global-primary-background: #40ED70; @global-secondary-background: #141414; @global-border: rgba(255,255,255,0.06); @global-small-box-shadow: 2px 4px 16px rgba(0,0,0,0.2); @global-medium-box-shadow: 2px 12px 32px rgba(0,0,0,0.2); @global-large-box-shadow: 2px 18px 48px rgba(0,0,0,0.2); @global-xlarge-box-shadow: 2px 26px 56px rgba(0,0,0,0.2); // // Theme // @theme-page-container-color-mode: light; @theme-box-decoration-default-background: lighten(@global-muted-background, 10%); @theme-box-decoration-primary-background: lighten(@global-muted-background, 10%); @theme-box-decoration-secondary-background: lighten(@global-muted-background, 10%); // // Alert // @alert-background: @global-muted-background; @alert-border: lighten(@alert-background, 5%); // // Badge // @badge-background: @global-emphasis-color; @badge-color: @global-inverse-color; @badge-box-shadow: none; // // Base // @base-ins-background: @global-muted-background; @base-mark-background: @global-muted-background; // // Breadcrumb // @breadcrumb-divider-color: fade(@global-muted-color, 20%); // // Button // @button-default-color: @global-primary-background; @button-default-border: @global-primary-background; @button-default-active-border: lighten(@global-primary-background, 10%); @internal-button-default-gradient: linear-gradient(90deg, @global-primary-background 50%, @button-default-background 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, @global-primary-background 50%, @button-default-hover-background 50%); @internal-button-default-active-gradient: linear-gradient(90deg, lighten(@global-primary-background, 10%) 0%, lighten(@global-secondary-background, 10%) 100%); @inverse-button-default-hover-color: @inverse-global-primary-background; @inverse-button-default-active-color: @inverse-global-primary-background; @button-primary-hover-background: lighten(@button-primary-background, 10%); @button-primary-active-background: fade(@button-primary-background, 90%); @internal-button-primary-gradient: ~''; @internal-button-primary-hover-gradient: ~''; @internal-button-primary-active-gradient: ~''; @button-primary-box-shadow: none; @button-primary-hover-box-shadow: none; @inverse-button-primary-background: fade(@global-inverse-color, 90%); @inverse-button-primary-color: @inverse-global-inverse-color; @inverse-button-primary-hover-background: @inverse-button-primary-background; @inverse-button-primary-hover-color: fade(@inverse-button-primary-color, 70%); @inverse-button-primary-active-background: @inverse-button-primary-background; @inverse-button-primary-active-color: fade(@inverse-button-primary-color, 50%); @button-secondary-background: lighten(@global-secondary-background, 5%); @button-secondary-color: @global-primary-background; @button-secondary-hover-background: @global-primary-background; @button-secondary-hover-color: @global-inverse-color; @button-secondary-active-background: lighten(@button-secondary-hover-background, 10%); @button-secondary-active-color: fade(@button-secondary-hover-color, 80%); @internal-button-secondary-gradient: ~''; @internal-button-secondary-hover-gradient: ~''; @internal-button-secondary-active-gradient: ~''; @button-secondary-box-shadow: none; @button-secondary-hover-box-shadow: none; @inverse-button-secondary-background: @global-secondary-background; @inverse-button-secondary-color: @inverse-global-inverse-color; @inverse-button-secondary-hover-background: fade(@inverse-button-secondary-background, 90%); @inverse-button-secondary-hover-color: @inverse-button-secondary-color; @inverse-button-secondary-active-background: @inverse-button-secondary-background; @inverse-button-secondary-active-color: fade(@inverse-button-secondary-color, 70%); // // Card // @card-default-background: @global-muted-background; @card-default-color-mode: light; @card-default-hover-background: lighten(@card-default-background, 1%); @card-primary-hover-background: lighten(@card-primary-background, 10%); @card-primary-color-mode: dark; @internal-card-primary-gradient: ~''; @internal-card-primary-hover-gradient: ~''; @card-primary-box-shadow: @global-xlarge-box-shadow; @card-primary-hover-box-shadow: @global-medium-box-shadow; @card-secondary-background: lighten(@global-secondary-background, 5%); @card-secondary-hover-background: lighten(@global-secondary-background, 7%); @card-secondary-color: @global-color; @card-secondary-title-color: @global-emphasis-color; @internal-card-secondary-gradient: ~''; @internal-card-secondary-hover-gradient: ~''; @internal-card-badge-gradient: ~''; // // Dotnav // @dotnav-item-border: fade(@global-emphasis-color, 30%); @dotnav-item-hover-border: @global-emphasis-color; // // Dropbar // @dropbar-color-mode: light; // // Dropdown // @dropdown-color-mode: light; @dropdown-background: @global-muted-background; @dropdown-box-shadow: none; // // Form // @form-focus-border: @global-primary-background; @form-radio-checked-background: @global-primary-background; @form-radio-checked-focus-background: darken(@global-primary-background, 6%); @form-radio-border: lighten(@global-border, 15%); @form-radio-focus-border: @global-primary-background; // // Form-Range // @form-range-track-background: @global-border; @form-range-track-focus-background: @global-emphasis-color; // // Icon // @icon-button-hover-background: @global-emphasis-color; // // Inverse // @inverse-global-color-mode: dark; // // Label // @label-background: @global-emphasis-color; @label-color: @global-inverse-color; @label-box-shadow: none; @label-success-box-shadow: none; @label-warning-box-shadow: none; @label-danger-box-shadow: none; // // List // @list-bullet-icon-color: @global-primary-background; // // Marker // @marker-background: @global-emphasis-color; @marker-color: @global-inverse-color; @marker-hover-color: @global-inverse-color; // // Nav // @nav-secondary-subtitle-color: @global-color; // // Navbar // @navbar-color-mode: light; @navbar-dropdown-color-mode: light; @navbar-dropdown-color: fade(@global-emphasis-color, 70%); @navbar-dropdown-nav-item-color: fade(@global-emphasis-color, 70%); @navbar-dropdown-nav-item-active-color: @global-emphasis-color; @navbar-dropdown-nav-header-color: fade(@global-emphasis-color, 50%); @navbar-dropdown-nav-divider-border: fade(@global-emphasis-color, 10%); @navbar-dropdown-nav-sublist-item-color: fade(@global-emphasis-color, 50%); @navbar-dropdown-nav-sublist-item-hover-color: fade(@global-emphasis-color, 70%); @navbar-dropdown-nav-sublist-item-active-color: @global-emphasis-color; @navbar-dropdown-box-shadow: none; // // Notification // @notification-message-background: lighten(@global-muted-background, 2%); // // Offcanvas // @offcanvas-bar-color-mode: light; // // Overlay // @overlay-default-color-mode: light; // // Search // @search-default-focus-border: @global-primary-background; @search-medium-focus-border: @global-primary-background; @search-large-focus-border: @global-primary-background; // // Section // @section-default-color-mode: light; @section-muted-color-mode: light; @section-primary-color-mode: dark; @section-secondary-color-mode: light; @internal-section-primary-gradient: ~''; @internal-section-secondary-gradient: ~''; // // Subnav // @subnav-divider-border: fade(@global-muted-color, 20%); @internal-subnav-pill-item-active-gradient: ~''; @subnav-pill-item-active-box-shadow: none; // // Text // @text-secondary-color: lighten(@global-primary-background, 15%); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-color-mode: light; @tile-primary-color-mode: dark; @internal-tile-primary-gradient: ~''; @internal-tile-secondary-gradient: ~''; // // Tooltip // @tooltip-background: @global-primary-background; // // WooCommerce // @woocommerce-rating-background-color: lighten(@global-muted-background, 10%); @woocommerce-rating-color: @global-emphasis-color; @woocommerce-widget-active-filters-hover-background: lighten(@global-muted-background, 2%); assets/uikit-themes/master-vision/_import.less000064400000074756151666572410015657 0ustar00@internal-fonts: 'Barlow:400,400i,500,600,700|Barlow+Semi+Condensed:400,500'; @global-font-family: Barlow; @global-font-size: 16px; @global-line-height: 1.75; // 28px @global-2xlarge-font-size: 42px; @global-xlarge-font-size: 36px; @global-large-font-size: 28px; @global-medium-font-size: 24px; @global-small-font-size: 12px; @global-primary-font-family: Barlow; @global-primary-font-weight: 500; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: 'Barlow Semi Condensed'; @global-secondary-font-weight: 500; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: 0.35px; @global-secondary-font-style: inherit; @global-color: #444; @global-emphasis-color: #111; @global-muted-color: #aaa; @global-link-color: #FF4652; @global-link-hover-color: darken(@global-link-color, 15%); @global-inverse-color: #fff; @global-background: #fff; @global-muted-background: #f8f8f8; @global-primary-background: #FF4652; @global-secondary-background: #111; @global-success-background: #42c65c; @global-warning-background: #FFAD4F; @global-danger-background: #FB3F3F; @global-border-width: 1px; @global-border: rgba(0,0,0,0.06); @global-border-radius: 0; @global-small-box-shadow: 2px 4px 16px rgba(0,0,0,0.06); @global-medium-box-shadow: 2px 12px 32px rgba(0,0,0,0.06); @global-large-box-shadow: 2px 18px 48px rgba(0,0,0,0.06); @global-xlarge-box-shadow: 2px 26px 56px rgba(0,0,0,0.06); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 20px; @global-small-gutter: 10px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-body-font-weight: 400; @base-link-text-decoration: underline; @base-link-hover-text-decoration: none; @base-strong-font-weight: 500; @base-code-color: @global-emphasis-color; @base-em-color: @global-emphasis-color; @base-h1-line-height: 1.3; @base-h3-line-height: 1.3; @base-h4-line-height: 1.3; @base-h5-line-height: 1.3; @base-h6-line-height: 1.3; @base-blockquote-footer-font-size: @global-font-size; @base-selection-background: darken(@global-primary-background, 2%); @base-code-padding-horizontal: 6px; @base-code-padding-vertical: 2px; @base-pre-padding: 10px; @base-pre-background: @global-background; @base-h1-font-weight: 600; @base-h1-letter-spacing: 0.75px; @base-h3-font-weight: 400; @base-h4-font-family: @global-primary-font-family; @base-h4-font-weight: 400; @base-h4-text-transform: @global-primary-text-transform; @base-h4-letter-spacing: @global-primary-letter-spacing; @base-h4-font-style: @global-primary-font-style; @base-h5-text-transform: uppercase; @base-h5-letter-spacing: 1.7px; @base-h6-text-transform: uppercase; @base-h6-letter-spacing: 1.7px; @base-blockquote-font-weight: 400; @base-blockquote-letter-spacing: 0; @base-blockquote-footer-font-family: @global-primary-font-family; @base-blockquote-footer-font-weight: @global-primary-font-weight; @base-code-border-width: @global-border-width; @base-code-border: @global-border; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @inverse-base-link-hover-color: fade(@inverse-global-color, 70%); @inverse-base-code-border: @inverse-global-border; @inverse-link-heading-hover-color: @inverse-global-color; @heading-small-font-size-m: @heading-medium-font-size-l * 0.77; @heading-medium-font-size-l: 70px; @heading-large-font-size-l: 92px; @heading-small-line-height: 1.3; @heading-divider-border-width: ~'calc(0.2px + 0.04em)'; @heading-bullet-height: ~'calc(0.2px + 0.05em)'; @heading-bullet-border-width: ~'calc(8px + 0.3em)'; @heading-bullet-border: @global-primary-background; @heading-line-width: 80px; @heading-line-border-width: ~'calc(0.6px + 0.03em)'; @heading-line-border: @global-primary-background; @heading-line-margin-horizontal: 20px; @heading-small-font-weight: 600; @heading-small-letter-spacing: 0.75px; @heading-medium-font-weight: 600; @heading-medium-letter-spacing: 0.75px; @heading-large-font-weight: 700; @heading-large-text-transform: uppercase; @heading-large-letter-spacing: 2px; @heading-xlarge-font-weight: 700; @heading-xlarge-text-transform: uppercase; @heading-xlarge-letter-spacing: 2px; @heading-2xlarge-font-weight: 700; @heading-2xlarge-text-transform: uppercase; @heading-2xlarge-letter-spacing: 2px; @heading-3xlarge-font-weight: 700; @heading-3xlarge-text-transform: uppercase; @heading-3xlarge-letter-spacing: 2px; @inverse-heading-bullet-border: @inverse-global-primary-background; @inverse-heading-line-border: @inverse-global-primary-background; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-vision/images/divider-icon.svg"; @divider-small-width: 80px; @divider-small-border: @global-primary-background; @inverse-divider-small-border: @divider-small-border; @list-bullet-icon-color: @global-secondary-background; @internal-list-bullet-image: "../../../../uikit-themes/master-vision/images/list-bullet.svg"; @description-list-term-font-size: @global-small-font-size; @description-list-term-text-transform: uppercase; @description-list-term-letter-spacing: 1.7px; @table-row-active-background: darken(@global-muted-background, 2%); @table-striped-row-background: @table-row-active-background; @table-header-cell-font-family: @global-secondary-font-family; @table-header-cell-letter-spacing: 1.7px; @table-header-cell-font-style: @global-secondary-font-style; @icon-link-color: @global-emphasis-color; @icon-link-hover-color: fade(@icon-link-color, 50%); @icon-link-active-color: fade(@icon-link-color, 80%); @icon-button-background: transparent; @icon-button-color: @global-emphasis-color; @icon-button-hover-background: @global-secondary-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: lighten(@icon-button-hover-background, 7%); @icon-button-active-color: fade(@icon-button-hover-color, 80%); @icon-button-border-width: @global-border-width; @icon-button-border: fade(@icon-button-color, 80%); @icon-button-hover-border: @icon-button-hover-background; @icon-button-active-border: @icon-button-active-background; @inverse-icon-link-color: @inverse-global-emphasis-color; @inverse-icon-link-active-color: @inverse-global-muted-color; @inverse-icon-button-background: transparent; @inverse-icon-button-color: @inverse-global-emphasis-color; @inverse-icon-button-hover-background: @inverse-global-emphasis-color; @inverse-icon-button-hover-color: @inverse-global-inverse-color; @inverse-icon-button-active-background: @inverse-global-emphasis-color; @inverse-icon-button-active-color: fade(@inverse-global-inverse-color, 80%); @inverse-icon-button-border: @inverse-global-emphasis-color; @form-range-track-height: 2px; @form-range-track-focus-background: @global-emphasis-color; @form-range-thumb-height: 12px; @form-range-thumb-background: @global-background; @form-range-thumb-border-width: 2px; @form-range-thumb-border: @global-emphasis-color; @form-background: transparent; @form-focus-background: transparent; @form-danger-color: @form-color; @form-success-color: @form-color; @form-radio-background: transparent; @form-radio-checked-background: @global-secondary-background; @form-radio-checked-focus-background: darken(@global-secondary-background, 6%); @form-stacked-margin-bottom: 5px; @form-label-font-size: @global-small-font-size; @form-label-text-transform: uppercase; @form-label-letter-spacing: 1.7px; @form-border-mode: -bottom; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-secondary-background; @form-disabled-border: @global-border; @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @global-border; @form-radio-border-width: @global-border-width; @form-radio-border: fade(@global-secondary-background, 20%); @form-radio-focus-border: @global-secondary-background; @form-radio-disabled-border: @global-border; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @inverse-global-primary-background; @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: @inverse-global-primary-background; @button-large-font-size: 18px; @button-default-background: transparent; @button-default-hover-background: transparent; @button-default-hover-color: @global-inverse-color; @button-default-active-background: transparent; @button-default-active-color: fade(@button-default-hover-color, 80%); @button-primary-hover-background: darken(@button-primary-background, 4%); @button-primary-hover-color: fade(@button-primary-color, 85%); @button-primary-active-background: darken(@button-primary-background, 8%); @button-primary-active-color: fade(@button-primary-color, 60%); @button-secondary-hover-background: lighten(@button-secondary-background, 8%); @button-secondary-hover-color: fade(@button-secondary-color, 85%); @button-secondary-active-background: darken(@button-secondary-background, 8%); @button-secondary-active-color: fade(@button-secondary-color, 60%); @button-danger-hover-background: lighten(@button-danger-background, 4%); @button-danger-hover-color: fade(@button-danger-color, 85%); @button-danger-active-background: darken(@button-danger-background, 4%); @button-danger-active-color: @button-danger-color; @button-link-hover-color: @global-link-color; @button-transition-duration: 0.25s; @button-font-weight: 400; @button-border-width: @global-border-width; @button-default-border: @global-secondary-background; @button-default-hover-border: @button-default-border; @button-default-active-border: @button-default-border; @button-disabled-border: @global-border; @button-background-size: ~'calc(200% + 1px)'; @button-background-position-x: ~'calc(100% + 1px)'; @internal-button-default-gradient: linear-gradient(90deg, @global-secondary-background 50%, @button-default-background 50%); @internal-button-default-hover-gradient: linear-gradient(90deg, @global-secondary-background 50%, @button-default-hover-background 50%); @internal-button-default-active-gradient: linear-gradient(90deg, lighten(@global-secondary-background, 8%) 0%, darken(@global-secondary-background, 12%) 100%); @internal-button-primary-gradient: linear-gradient(90deg, @button-primary-background 0%, spin(@button-primary-background, 15%) 50%, @button-primary-background 100%); @internal-button-primary-hover-gradient: @internal-button-primary-gradient; @internal-button-primary-active-gradient: @internal-button-primary-gradient; @internal-button-secondary-gradient: linear-gradient(90deg, @button-secondary-background 0%, lighten(@button-secondary-background, 12%) 50%, @button-secondary-background 100%); @internal-button-secondary-hover-gradient: @internal-button-secondary-gradient; @internal-button-secondary-active-gradient: @internal-button-secondary-gradient; @button-primary-box-shadow: 1px 3px 15px fade(@button-primary-background, 20%); @button-primary-hover-box-shadow: 3px 5px 25px fade(@button-primary-background, 23%); @button-secondary-box-shadow: 1px 3px 15px fade(@button-secondary-background, 15%); @button-secondary-hover-box-shadow: 3px 5px 25px fade(@button-secondary-background, 18%); @inverse-button-default-background: transparent; @inverse-button-default-color: @inverse-global-emphasis-color; @inverse-button-default-hover-background: @global-inverse-color; @inverse-button-default-active-background: fade(@global-inverse-color, 80%); @inverse-button-primary-background: fade(@global-inverse-color, 90%); @inverse-button-primary-hover-background: @global-inverse-color; @inverse-button-primary-active-background: @global-inverse-color; @inverse-button-primary-active-color: fade(@inverse-global-inverse-color, 70%); @inverse-button-secondary-background: darken(@global-secondary-background, 5%); @inverse-button-secondary-color: @global-inverse-color; @inverse-button-secondary-hover-background: darken(@inverse-button-secondary-background, 8%); @inverse-button-secondary-hover-color: fade(@inverse-button-secondary-color, 85%); @inverse-button-secondary-active-background: darken(@inverse-button-secondary-background, 3%); @inverse-button-secondary-active-color: fade(@inverse-global-color, 70%); @inverse-button-text-hover-color: @inverse-global-color; @inverse-button-link-hover-color: @inverse-global-color; @inverse-button-default-border: @inverse-global-color; @inverse-button-default-hover-border: @inverse-button-default-hover-background; @inverse-button-default-active-border: @inverse-button-default-active-background; @internal-section-primary-gradient: linear-gradient(155deg, @section-primary-background 0%, spin(@section-primary-background, 9%) 100%); @internal-section-secondary-gradient: linear-gradient(5deg, lighten(@section-secondary-background, 5%) 0%, @section-secondary-background 100%); @container-large-max-width: 1360px; @internal-tile-primary-gradient: linear-gradient(155deg, @tile-primary-background 0%, spin(@tile-primary-background, 9%) 100%); @internal-tile-secondary-gradient: linear-gradient(5deg, lighten(@tile-secondary-background, 5%) 0%, @tile-secondary-background 100%); @card-badge-height: 26px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-primary-hover-background: spin(lighten(@card-primary-background, 4%), 6%); @card-secondary-hover-background: lighten(@card-secondary-background, 7%); @card-badge-text-transform: uppercase; @card-badge-letter-spacing: 1.7px; @internal-card-badge-gradient: linear-gradient(90deg, spin(@global-primary-background, 15%), @global-primary-background); @internal-card-primary-gradient: linear-gradient(155deg, @card-primary-background 0%, spin(@card-primary-background, 9%) 100%); @internal-card-primary-hover-gradient: linear-gradient(90deg, darken(@card-primary-background, 2%) 0%, spin(@card-primary-background, 13%) 100%); @internal-card-secondary-gradient: linear-gradient(5deg, lighten(@card-secondary-background, 5%) 0%, @card-secondary-background 100%); @internal-card-secondary-hover-gradient: linear-gradient(155deg, @card-secondary-background 0%, lighten(@card-secondary-background, 7%) 100%); @card-hover-box-shadow: @global-xlarge-box-shadow; @card-default-box-shadow: @global-xlarge-box-shadow; @card-default-hover-box-shadow: @global-medium-box-shadow; @card-primary-box-shadow: 8px 20px 45px fade(@global-primary-background, 12%); @card-primary-hover-box-shadow: 5px 15px 32px fade(@global-primary-background, 20%); @card-secondary-box-shadow: @global-xlarge-box-shadow; @card-secondary-hover-box-shadow: @global-medium-box-shadow; @inverse-card-badge-background: @global-inverse-color; @marker-hover-color: fade(@global-inverse-color, 60%); @inverse-marker-hover-color: fade(@global-color, 50%); @totop-color: @global-emphasis-color; @totop-hover-color: fadeout(@global-emphasis-color, 40%); @totop-active-color: @global-muted-color; @alert-background: @global-background; @alert-primary-background: @alert-background; @alert-primary-color: darken(@global-primary-background, 5%); @alert-success-background: @alert-background; @alert-success-color: darken(@global-success-background, 5%); @alert-warning-background: @alert-background; @alert-warning-color: darken(@global-warning-background, 5%); @alert-danger-background: @alert-background; @alert-danger-color: darken(@global-danger-background, 5%); @alert-border-mode: -right; @alert-border-width: 2px; @alert-border: @global-secondary-background; @alert-primary-border: @global-primary-background; @alert-success-border: @global-success-background; @alert-warning-border: @global-warning-background; @alert-danger-border: @global-danger-background; @alert-box-shadow: @global-medium-box-shadow; @badge-background: @global-secondary-background; @badge-font-weight: @global-secondary-font-weight; @badge-box-shadow: 1px 3px 15px fade(@badge-background, 20%); @inverse-badge-background: @global-inverse-color; @label-padding-vertical: 3px; @label-padding-horizontal: 9px; @label-background: @global-secondary-background; @label-font-size: 10px; @label-text-transform: uppercase; @label-letter-spacing: 1.7px; @label-box-shadow: 1px 3px 15px fade(@label-background, 20%); @label-success-box-shadow: 1px 3px 15px fade(@label-success-background, 20%); @label-warning-box-shadow: 1px 3px 15px fade(@label-warning-background, 20%); @label-danger-box-shadow: 1px 3px 15px fade(@label-danger-background, 20%); @inverse-label-background: transparent; @inverse-label-color: @inverse-global-emphasis-color; @inverse-label-border: @inverse-global-primary-background; @overlay-padding-horizontal: @global-medium-gutter; @overlay-padding-vertical: @global-medium-gutter; @article-meta-text-transform: uppercase; @article-meta-letter-spacing: 1.7px; @comment-title-font-size: @global-font-size; @comment-meta-text-transform: uppercase; @comment-meta-letter-spacing: 1.7px; @search-default-padding-horizontal: 0; @search-default-background: transparent; @search-medium-padding-horizontal: 0; @search-medium-font-size: @global-medium-font-size; @search-large-padding-horizontal: 0; @search-large-font-size: @global-xlarge-font-size; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-muted-color; @search-default-font-family: @global-primary-font-family; @search-default-font-weight: @global-primary-font-weight; @search-default-text-transform: @global-primary-text-transform; @search-default-letter-spacing: @global-primary-letter-spacing; @search-default-font-style: @global-primary-font-style; @search-medium-font-family: @global-primary-font-family; @search-medium-font-weight: 400; @search-medium-text-transform: @global-primary-text-transform; @search-medium-letter-spacing: @global-primary-letter-spacing; @search-medium-font-style: @global-primary-font-style; @search-large-font-family: @global-primary-font-family; @search-large-font-weight: 400; @search-large-text-transform: @global-primary-text-transform; @search-large-letter-spacing: @global-primary-letter-spacing; @search-large-font-style: @global-primary-font-style; @search-default-border-mode: -bottom; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-secondary-background; @search-navbar-border-width: @global-border-width; @search-navbar-border: @global-border; @search-navbar-focus-border: @search-navbar-border; @search-medium-border-mode: -bottom; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-secondary-background; @search-large-border-mode: -bottom; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-secondary-background; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-toggle-color: @inverse-global-color; @inverse-search-toggle-hover-color: @inverse-global-emphasis-color; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @inverse-global-primary-background; @inverse-search-navbar-border: @inverse-global-border; @inverse-search-navbar-focus-border: @inverse-global-border; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @inverse-global-primary-background; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @inverse-global-primary-background; @accordion-title-hover-color: @global-link-color; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @dropdown-padding: 25px; @dropdown-background: @global-background; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-primary-background; @dropdown-nav-subtitle-font-size: 13px; @dropdown-nav-header-color: @global-primary-background; @dropdown-nav-item-padding-vertical: 6px; @dropdown-nav-divider-margin-horizontal: -@dropdown-padding; @dropdown-nav-font-size: @global-small-font-size; @dropdown-nav-text-transform: uppercase; @dropdown-nav-letter-spacing: 1.7px; @dropdown-nav-subtitle-font-weight: normal; @dropdown-nav-subtitle-text-transform: none; @dropdown-nav-subtitle-letter-spacing: normal; @dropdown-nav-subtitle-line-height: 1.4; @dropdown-box-shadow: @global-small-box-shadow; @dropbar-background: lighten(@global-secondary-background, 7%); @dropbar-color-mode: light; @dropbar-top-box-shadow: 0 18px 48px -33px rgba(0,0,0,0.06); @dropbar-bottom-box-shadow: 0 -18px 48px -33px rgba(0,0,0,0.06); @dropbar-left-box-shadow: 18px 0 48px -33px rgba(0,0,0,0.06); @dropbar-right-box-shadow: -18px 0 48px -33px rgba(0,0,0,0.06); @modal-dialog-box-shadow: @global-xlarge-box-shadow; @slider-container-margin-top: -30px; @slider-container-margin-bottom: -82px; @slider-container-margin-left: -54px; @slider-container-margin-right: -58px; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @offcanvas-overlay-background: fade(@global-background, 70%); @offcanvas-bar-box-shadow: @global-medium-box-shadow; @notification-message-background: @global-background; @notification-message-box-shadow: @global-xlarge-box-shadow; @tooltip-background: @global-secondary-background; @tooltip-font-size: 14px; @countdown-item-font-family: @global-secondary-font-family; @countdown-item-font-weight: @global-secondary-font-weight; @countdown-item-text-transform: @global-secondary-text-transform; @countdown-item-letter-spacing: 0; @countdown-item-font-style: @global-secondary-font-style; @nav-item-padding-vertical: 8px; @nav-divider-margin-vertical: 15px; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-link-color; @nav-default-item-active-color: @global-link-color; @nav-default-subtitle-font-size: 13px; @nav-default-header-color: @global-muted-color; @nav-default-sublist-item-color: @global-color; @nav-default-sublist-item-hover-color: @global-link-color; @nav-default-sublist-item-active-color: @global-link-color; @nav-primary-line-height: 1.3; @nav-primary-item-color: @global-color; @nav-primary-item-hover-color: @global-link-color; @nav-primary-item-active-color: @global-link-color; @nav-primary-subtitle-font-size: @global-font-size; @nav-primary-header-color: @global-muted-color; @nav-primary-sublist-font-size: 18px; @nav-primary-sublist-line-height: 1.5; @nav-primary-sublist-item-color: @global-color; @nav-primary-sublist-item-hover-color: @global-link-color; @nav-primary-sublist-item-active-color: @global-link-color; @nav-secondary-font-size: @global-small-font-size; @nav-secondary-line-height: 1.4; @nav-secondary-item-hover-color: @global-primary-background; @nav-secondary-subtitle-font-size: 14px; @nav-secondary-subtitle-hover-color: @global-primary-background; @nav-secondary-sublist-item-hover-color: @global-primary-background; @nav-medium-font-size-l: 70px; @nav-large-font-size-l: 92px; @nav-secondary-margin-top: 10px; @nav-header-letter-spacing: 1.7px; @nav-default-font-weight: 400; @nav-default-subtitle-color: @global-color; @nav-default-subtitle-line-height: 1.4; @nav-primary-font-weight: 400; @nav-primary-subtitle-line-height: 1.4; @nav-secondary-text-transform: uppercase; @nav-secondary-letter-spacing: 1.7px; @nav-secondary-subtitle-font-family: @global-font-family; @nav-secondary-subtitle-font-weight: normal; @nav-secondary-subtitle-text-transform: none; @nav-secondary-subtitle-letter-spacing: normal; @inverse-nav-primary-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-primary-sublist-item-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-item-hover-color: @inverse-global-primary-background; @inverse-nav-secondary-subtitle-color: @inverse-global-color; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-primary-background; @navbar-background: @global-background; @navbar-nav-item-color: @global-color; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-nav-item-onclick-color: @global-color; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-muted-color; @navbar-subtitle-font-size: 13px; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-width: 240px; @navbar-dropdown-padding: 25px; @navbar-dropdown-background: lighten(@global-secondary-background, 7%); @navbar-dropdown-color: fade(@global-inverse-color, 70%); @navbar-dropdown-color-mode: light; @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-color: fade(@global-inverse-color, 70%); @navbar-dropdown-nav-item-hover-color: @global-link-color; @navbar-dropdown-nav-item-active-color: @global-inverse-color; @navbar-dropdown-nav-subtitle-font-size: 13px; @navbar-dropdown-nav-header-color: fade(@global-inverse-color, 50%); @navbar-dropdown-nav-divider-border: fade(@global-inverse-color, 10%); @navbar-dropdown-nav-sublist-item-color: fade(@global-inverse-color, 50%); @navbar-dropdown-nav-sublist-item-hover-color: fade(@global-inverse-color, 70%); @navbar-dropdown-nav-sublist-item-active-color: @global-inverse-color; @navbar-padding-top-m: 20px; @navbar-padding-bottom-m: 20px; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-slide-mode: left; @navbar-nav-item-line-margin-vertical: 25px; @navbar-nav-item-line-margin-horizontal-m: @navbar-nav-item-padding-horizontal; @navbar-nav-item-line-height: @global-border-width; @navbar-nav-item-line-onclick-background: transparent; @navbar-primary-gap-m: 50px; @navbar-primary-nav-gap-m: 50px; @navbar-nav-item-font-weight: 400; @navbar-subtitle-color: @global-color; @navbar-subtitle-line-height: 1.4; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-font-size: @global-small-font-size; @navbar-dropdown-nav-text-transform: uppercase; @navbar-dropdown-nav-letter-spacing: 0.7px; @navbar-dropdown-nav-subtitle-text-transform: none; @navbar-dropdown-nav-subtitle-letter-spacing: normal; @navbar-dropdown-nav-subtitle-line-height: 1.4; @navbar-sticky-box-shadow: @global-medium-box-shadow; @navbar-dropdown-box-shadow: 2px 2px 4px rgba(0,0,0,0.15), 4px 10px 15px rgba(0,0,0,0.1); @inverse-navbar-nav-item-color: @inverse-global-color; @inverse-navbar-nav-item-hover-color: @inverse-global-emphasis-color; @inverse-navbar-nav-item-onclick-color: @inverse-global-color; @inverse-navbar-toggle-color: @inverse-global-color; @inverse-navbar-toggle-hover-color: @inverse-global-emphasis-color; @subnav-item-color: @global-color; @subnav-item-hover-color: fade(@subnav-item-color, 70%); @subnav-divider-border-height: 1em; @subnav-divider-border: fade(@global-muted-color, 50%); @subnav-pill-item-padding-vertical: 7px; @subnav-pill-item-padding-horizontal: 14px; @subnav-item-font-weight: 400; @internal-subnav-pill-item-active-gradient: linear-gradient(155deg, @subnav-pill-item-active-background 0%, spin(@subnav-pill-item-active-background, 15%) 100%); @subnav-pill-item-active-box-shadow: 1px 3px 15px fade(@subnav-pill-item-active-background, 20%); @inverse-subnav-item-color: @inverse-global-color; @inverse-subnav-item-hover-color: @inverse-global-emphasis-color; @inverse-subnav-pill-item-hover-color: @inverse-global-emphasis-color; @breadcrumb-divider-margin-horizontal: 15px; @breadcrumb-divider-color: fade(@global-muted-color, 50%); @breadcrumb-item-text-transform: uppercase; @breadcrumb-item-letter-spacing: 1.7px; @pagination-margin-horizontal: 20px; @pagination-item-padding-vertical: 2px; @pagination-item-padding-horizontal: 4px; @pagination-item-color: @global-color; @pagination-item-hover-color: @global-link-color; @pagination-item-active-color: @global-emphasis-color; @pagination-item-min-width: 16px; @pagination-item-height: 33px; @pagination-item-border-mode: -bottom; @pagination-item-border-width: 1px; @pagination-item-hover-border: @global-primary-background; @pagination-item-active-border: @global-primary-background; @inverse-pagination-item-hover-color: @inverse-global-emphasis-color; @inverse-pagination-item-hover-border: @inverse-global-border; @inverse-pagination-item-active-border: @inverse-global-primary-background; @tab-item-color: @global-color; @tab-item-hover-color: fade(@tab-item-color, 70%); @tab-item-line-height: 24px; @tab-item-font-weight: 400; @tab-border: transparent; @tab-item-hover-border: @global-muted-background; @inverse-tab-item-hover-color: @inverse-global-muted-color; @inverse-tab-border: transparent; @inverse-tab-item-hover-border: @inverse-global-border; @dotnav-item-width: 12px; @dotnav-item-background: transparent; @dotnav-item-hover-background: transparent; @dotnav-item-onclick-background: transparent; @dotnav-item-active-background: transparent; @dotnav-item-border-width: @global-border-width; @dotnav-item-border: fade(@global-secondary-background, 30%); @dotnav-item-hover-border: @global-secondary-background; @dotnav-item-onclick-border: @global-primary-background; @dotnav-item-active-border: @global-primary-background; @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-hover-background: transparent; @inverse-dotnav-item-onclick-background: transparent; @inverse-dotnav-item-active-background: transparent; @inverse-dotnav-item-border: fade(@inverse-global-emphasis-color, 30%); @inverse-dotnav-item-hover-border: @inverse-global-emphasis-color; @inverse-dotnav-item-onclick-border: @inverse-global-primary-background; @inverse-dotnav-item-active-border: @inverse-global-primary-background; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @iconnav-item-color: @global-emphasis-color; @iconnav-item-hover-color: @global-muted-color; @iconnav-item-active-color: @global-primary-background; @text-lead-font-size: 20px; @text-large-font-size: @global-medium-font-size; @text-lead-font-weight: normal; @text-meta-text-transform: uppercase; @text-meta-letter-spacing: 1.7px; @internal-text-background-color-gradient: linear-gradient(90deg, @global-primary-background 0%, spin(@global-primary-background, 7%) 100%); @logo-font-size: 32px; @logo-font-family: @global-secondary-font-family; @logo-font-weight: @global-secondary-font-weight; @logo-text-transform: @global-secondary-text-transform; @logo-letter-spacing: @global-secondary-letter-spacing; @inverse-global-muted-color: fade(@global-inverse-color, 45%); @inverse-global-inverse-color: @global-emphasis-color; @inverse-global-primary-background: @global-primary-background; @inverse-global-border: fade(@global-inverse-color, 10%);assets/uikit-themes/master-vision/images/list-bullet.svg000064400000000251151666572410017517 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1" cx="5" cy="5" r="4" /> </svg> assets/uikit-themes/master-vision/images/divider-icon.svg000064400000000251151666572410017633 0ustar00<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> <circle fill="none" stroke="#000" stroke-width="1" cx="5" cy="5" r="4" /> </svg> assets/uikit-themes/master-vision/images/box-decoration-image.svg000064400000001366151666572410021264 0ustar00<svg width="90" height="90" viewBox="0 0 90 90" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M15 13.5c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm30 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm30 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm-60 30c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm30 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm30 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm-60 30c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm30 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm30 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5z" /> </svg> assets/uikit-themes/master-vision/icons/nav-parent-icon-large.svg000064400000000260151666572410021216 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.8" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-vision/icons/totop.svg000064400000000371151666572410016275 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <polygon points="10.5,4 15.37,9.4 14.63,10.08 10.5,5.49 6.37,10.08 5.63,9.4" /> <line fill="none" stroke="#000" x1="10.5" y1="16" x2="10.5" y2="5" /> </svg> assets/uikit-themes/master-vision/icons/navbar-toggle-icon.svg000064400000002422151666572410020605 0ustar00<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <style> .uk-navbar-toggle-icon svg > [class*='line-'] { transition: 0.2s ease-in-out; transition-property: transform, opacity,; transform-origin: center; opacity: 1; } .uk-navbar-toggle-icon svg > .line-3 { opacity: 0; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-3 { opacity: 1; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-2 { transform: rotate(45deg); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-3 { transform: rotate(-45deg); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-1, .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-4 { opacity: 0; } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-1 { transform: translateY(6px) scaleX(0); } .uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-4 { transform: translateY(-6px) scaleX(0); } </style> <rect class="line-1" width="20" height="1" y="3" /> <rect class="line-2" width="20" height="1" y="9" /> <rect class="line-3" width="20" height="1" y="9" /> <rect class="line-4" width="20" height="1" y="15" /> </svg> assets/uikit-themes/master-vision/icons/pagination-previous.svg000064400000000372151666572410021134 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="5,8.5 1,4.5 5,0.5" /> <line fill="none" stroke="#000" x1="1" y1="4.5" x2="14" y2="4.5" /> </svg> assets/uikit-themes/master-vision/icons/pagination-next.svg000064400000000373151666572410020237 0ustar00<svg width="14" height="9" viewBox="0 0 14 9" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.1" points="9,0.5 13,4.5 9,8.5" /> <line fill="none" stroke="#000" x1="13" y1="4.5" x2="0" y2="4.5" /> </svg> assets/uikit-themes/master-makai/icons/nav-parent-icon-large.svg000064400000000277151666572410021001 0ustar00<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="1.4" points=".97 3.74 6.5 9.26 12.03 3.74" /> </svg> assets/uikit-themes/master-makai/images/accordion-open.svg000064400000000345151666572410017736 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M15.52 1.9L14.1.48 8 6.59 1.9.48.48 1.9 6.59 8 .48 14.1l1.42 1.42L8 9.41l6.1 6.11 1.42-1.42L9.41 8l6.11-6.1z" /> </svg> assets/uikit-themes/master-makai/images/accordion-close.svg000064400000000237151666572410020102 0ustar00<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" d="M15.5 7H9V.5H7V7H.5v2H7v6.5h2V9h6.5V7z" /> </svg> assets/uikit-themes/master-makai/images/divider-icon.svg000064400000002122151666572410017405 0ustar00<svg width="22" height="22" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> <path fill="#000" fill-rule="evenodd" d="M19.35 2.32c-.53-.53-2.46-.8-5.41.68S8.87 6.26 6.05 9.68a28.45 28.45 0 0 0-4.42 8.05l-.07.2 2.18 2.17.19-.1A28.18 28.18 0 0 0 12 15.61c3.43-2.81 5.18-4.88 6.69-7.88s1.18-4.89.66-5.41zm-5.12 1.27c2.77-1.39 4.38-1.08 4.65-.81s.58 1.88-.81 4.65c-.27.54-.55 1-.85 1.52l-8-1.73a19.24 19.24 0 0 1 5.01-3.63zM11.56 15.1a28.24 28.24 0 0 1-7.65 4.24l-1.58-1.59a28.29 28.29 0 0 1 4-7.28l8.39 1.8a36.8 36.8 0 0 1-3.16 2.83zm3.69-3.47L6.8 9.83l.63-.75 8.44 1.81c-.2.25-.41.5-.62.74zm1.12-1.39L8 8.45l.55-.6 8.26 1.77c-.14.21-.29.38-.44.62zM4.73 10.12c.14-.19.28-.38.43-.56a19.11 19.11 0 0 1-1.23-2.13c-1.39-2.77-1.08-4.37-.81-4.64s1.88-.59 4.65.8c.53.27 1 .56 1.52.85l-.19.87c.4-.36.81-.69 1.22-1A22.26 22.26 0 0 0 8.06 3c-2.95-1.48-4.89-1.21-5.41-.68s-.8 2.45.68 5.41a23.83 23.83 0 0 0 1.4 2.39zM17.26 11.47c-.14.19-.29.37-.44.55a29.69 29.69 0 0 1 2.85 5.73l-1.58 1.59a30.25 30.25 0 0 1-5.85-2.93l-.56.43A29 29 0 0 0 18.07 20l.19.07 2.18-2.17-.07-.2a29.7 29.7 0 0 0-3.11-6.23z" /> </svg> assets/uikit-themes/master-makai/styles/white-pink.less000064400000000753151666572410017345 0ustar00// // Global // @global-color: #8C8C8C; @global-emphasis-color: #2D3047; @global-muted-color: #BCBCBC; @global-link-color: #EE4266; @global-muted-background: #F7F7F7; @global-primary-background: #EE4266; @global-secondary-background: #2D3047; @global-success-background: #3BCD96; @global-warning-background: #FFCF56; @global-danger-background: #ED5353; // // Base // @base-pre-border: @global-border; @base-pre-border-width: 1px; @base-pre-padding: 15px; assets/uikit-themes/master-makai/styles/white-orange.less000064400000001542151666572410017654 0ustar00// // Global // @global-color: #979797; @global-emphasis-color: #251F1B; @global-muted-color: #BCBCBC; @global-link-color: #FA7E47; @global-link-hover-color: @global-secondary-background; @global-success-background: #27BA83; @global-danger-background: #F05050; @global-primary-background: #FA7E47; @global-secondary-background: #018580; // // Base // @base-pre-border: @global-border; @base-pre-border-width: 1px; @base-pre-padding: 15px; // // Button // @button-default-color: @global-secondary-background; @button-secondary-hover-background: darken(@button-secondary-background, 4%); @button-secondary-active-background: darken(@button-secondary-background, 7%); @button-link-hover-color: @global-secondary-background; // // Card // @card-secondary-hover-background: lighten(@card-secondary-background, 3%); assets/uikit-themes/master-makai/styles/white-red.less000064400000001724151666572410017155 0ustar00// // Global // @global-color: #949494; @global-emphasis-color: #2F1C1C; @global-muted-color: #BCBCBC; @global-link-color: #FF7F69; @global-link-hover-color: #CA6553; @global-primary-background: #FF7F69; @global-secondary-background: #2F1C1C; @global-success-background: #59D9A9; @global-warning-background: #FFD97B; @global-danger-background: #F46E87; // // Alert // @alert-warning-background: fade(@global-warning-background, 90%); // // Base // @base-pre-border: @global-border; @base-pre-border-width: 1px; @base-pre-padding: 15px; // // Icon // @icon-button-hover-background: @global-primary-background; @icon-button-active-background: darken(@global-primary-background, 4%); // // Notification // @notification-message-warning-background: darken(@global-warning-background, 3%); // // Pagination // @pagination-item-hover-border: @global-secondary-background; @pagination-item-hover-color: darken(@global-emphasis-color, 5%); assets/uikit-themes/master-makai/styles/white-green.less000064400000001046151666572410017500 0ustar00// // Global // @global-emphasis-color: #272727; @global-muted-color: #BCBCBC; @global-link-color: #2CB19D; @global-link-hover-color: #2C5352; @global-primary-background: #2CB19D; @global-secondary-background: #2C5352; // // Base // @base-pre-border: @global-border; @base-pre-border-width: 1px; @base-pre-padding: 15px; // // Button // @button-default-border: @global-primary-background; @button-link-hover-color: @global-secondary-background; // // Icon // @icon-link-color: #C5C5C5; @icon-button-color: #B8B8B8; assets/uikit-themes/master-makai/styles/dark-turquoise.less000064400000023560151666572410020246 0ustar00// // Global // @global-color: rgba(255, 255, 255, 0.6); @global-emphasis-color: #FFFFFF; @global-muted-color: rgba(255, 255, 255, 0.7); @global-link-color: rgba(255, 255, 255, 0.5); @global-link-hover-color: rgba(255, 255, 255, 0.75); @global-background: #061821; @global-inverse-color: #030612; @global-muted-background: #1f3038; @global-primary-background: #33A1C3; @global-secondary-background: #030612; @global-warning-background: #FA915A; @global-border: rgba(255, 255, 255, 0.1); // // Theme // @theme-page-container-color-mode: light; @theme-toolbar-background: rgba(255, 255, 255, 0); @theme-toolbar-color-mode: light; @theme-box-decoration-default-border: rgba(0, 0, 0, 0.1); @section-title-color: #FFFFFF; // // Alert // @alert-background: transparent; @alert-border: #D1D1D1; @alert-border-width: 1px; @alert-color: @global-emphasis-color; @alert-primary-background: transparent; @alert-primary-border: @global-primary-background; @alert-primary-color: @global-emphasis-color; @alert-success-background: transparent; @alert-success-border: #32D296; @alert-success-color: @global-emphasis-color; @alert-warning-background: transparent; @alert-warning-border: #FA915A; @alert-warning-color: @global-emphasis-color; @alert-danger-background: transparent; @alert-danger-border: #F0506E; @alert-danger-color: @global-emphasis-color; // // Badge // @badge-color: @inverse-global-inverse-color; // // Base // @base-link-color: rgb(255, 255, 255); @base-link-hover-color: rgba(255, 255, 255, 0.6); @base-link-hover-text-decoration: none; @base-code-color: @global-color; @base-code-padding-horizontal: 5px; @base-code-padding-vertical: 3px; @base-code-border: rgba(255, 255, 255, 0.1); @base-code-border-width: 1px; @base-em-color: @global-color; @base-ins-background: fade(@global-color, 45%); @base-ins-color: rgba(255, 255, 255, 0.85); @base-mark-background: fade(@global-color, 45%); @base-mark-color: rgba(255, 255, 255, 0.85); @base-selection-color: @inverse-global-inverse-color; // // Breadcrumb // @breadcrumb-item-color: rgba(255, 255, 255, 0.5); // // Button // @button-default-border: #FFFFFF; @button-default-hover-background: darken(@global-primary-background, 3%); @button-default-hover-color: @inverse-global-inverse-color; @button-default-active-background: darken(@global-primary-background, 8%); @button-default-active-border: transparent; @button-default-active-color: @inverse-global-inverse-color; @button-primary-color: @inverse-global-inverse-color; @button-primary-hover-color: @inverse-global-inverse-color; @button-primary-active-background: fade(@global-primary-background, 80%); @button-primary-active-color: @inverse-global-inverse-color; @button-secondary-color: @inverse-global-inverse-color; @button-secondary-hover-background: #070B1E; @button-secondary-hover-color: @inverse-global-inverse-color; @button-secondary-active-background: #0B0F22; @button-secondary-active-color: @inverse-global-inverse-color; @button-danger-color: @inverse-global-inverse-color; @button-danger-hover-color: @inverse-global-inverse-color; @button-danger-active-color: @inverse-global-inverse-color; @button-disabled-color: @inverse-global-inverse-color; // // Card // @card-badge-color: @inverse-global-inverse-color; @card-hover-border: @global-primary-background; @card-default-color-mode: light; @card-default-border: @global-primary-background; @card-default-hover-border: fade(@global-primary-background, 50%); @card-primary-color: @inverse-global-inverse-color; @card-secondary-color: @inverse-global-inverse-color; @card-secondary-hover-background: fade(@global-secondary-background, 60%); // // Divider // @divider-vertical-border: fade(@global-border, 70%); // // Dotnav // @dotnav-item-onclick-background: #FFFFFF; // // Dropbar // @dropbar-color-mode: light; @dropbar-top-box-shadow: inset 0 -1px 0 0 fade(@global-muted-color, 30%); @dropbar-bottom-box-shadow: inset 0 1px 0 fade(@global-muted-color, 30%); @dropbar-left-box-shadow: inset -1px 0 0 fade(@global-muted-color, 30%); @dropbar-right-box-shadow: inset 1px 0 0 fade(@global-muted-color, 30%); // // Dropdown // @dropdown-color-mode: light; @dropdown-background: @global-primary-background; @dropdown-color: @global-muted-color; @dropdown-nav-divider-border: fade(@global-border, 20%); // // Form Range // @form-range-thumb-background: @global-primary-background; @form-range-track-background: fade(lighten(@global-primary-background, 30%), 7%); @form-range-track-focus-background: lighten(@global-muted-background, 10%); // // Form // @form-color: rgba(255, 255, 255, 0.6); @form-focus-color: #EDEDED; @form-focus-border: fade(@global-border, 70%); @form-placeholder-color: rgba(255, 255, 255, 0.6); @form-disabled-background: fade(@global-primary-background, 3%); @form-disabled-color: rgba(228, 228, 228, 0.2); @form-radio-checked-focus-background: @global-primary-background; @form-radio-focus-border: fade(@global-border, 70%); @form-radio-checked-border: rgba(255, 255, 255, 0.1); @form-label-color: #FFFFFF; // // Heading // @heading-bullet-border: @global-primary-background; // // Icon // @icon-link-hover-color: @global-emphasis-color; @icon-link-active-color: @global-emphasis-color; @icon-button-background: #F4F4F4; @icon-button-color: @global-secondary-background; @icon-button-hover-background: @global-primary-background; @icon-button-active-background: @global-primary-background; // // Inverse // @inverse-global-color-mode: dark; @inverse-button-primary-color: @inverse-global-inverse-color; @inverse-button-primary-hover-color: @inverse-global-inverse-color; @inverse-button-primary-active-color: @inverse-global-inverse-color; // // Label // @label-color: @inverse-global-inverse-color; @label-color: @inverse-global-inverse-color; @label-success-color: @inverse-global-inverse-color; @label-warning-color: @inverse-global-inverse-color; @label-danger-color: @inverse-global-inverse-color; // // Link // @link-text-hover-color: @global-emphasis-color; // // List // @list-striped-background: fade(@global-primary-background, 5%); // // Marker // @marker-color: @inverse-global-inverse-color; @marker-hover-background: @global-secondary-background; @marker-hover-color: @inverse-global-inverse-color; // // Nav // @nav-default-sublist-item-color: rgba(255, 255, 255, 0.5); @nav-default-sublist-item-hover-color: rgba(255, 255, 255, 0.9); // // Navbar // @navbar-background: @global-background; @navbar-color-mode: light; @navbar-border: fade(@global-border, 60%); @navbar-nav-item-color: rgba(255, 255, 255, 0.45); @navbar-nav-item-hover-color: #FFFFFF; @navbar-nav-item-onclick-color: rgba(255, 255, 255, 0.65); @navbar-nav-item-active-color: #FFFFFF; @navbar-dropdown-color-mode: light; @navbar-dropdown-border: fade(@navbar-border, 40%); // // Offcanvas // @offcanvas-bar-color-mode: light; // // Overlay // @overlay-default-color-mode: light; // // Pagination // @pagination-item-color: @global-muted-color; @pagination-item-hover-border: rgba(255, 255, 255, 0.6); @pagination-item-hover-color: fade(@pagination-item-color, 90%); @pagination-item-active-color: @global-emphasis-color; // // Progress // @progress-background: fade(@global-primary-background, 10%); // // Search // @search-default-focus-border: fade(@global-border, 70%); @search-medium-focus-border: fade(@global-border, 70%); @search-large-focus-border: fade(@global-border, 70%); // // Section // @section-default-color-mode: light; @section-muted-background: @global-muted-background; @section-muted-color-mode: light; // // Slidenav // @slidenav-border: @global-muted-color; @slidenav-color: @global-muted-color; @slidenav-hover-color: @inverse-global-inverse-color; @slidenav-active-background: fade(@global-primary-background, 90%); @slidenav-active-color: fade(@slidenav-hover-color, 90%); // // Subnav // @subnav-pill-item-hover-color: @inverse-global-inverse-color; @subnav-pill-item-active-color: @inverse-global-inverse-color; // // Tab // @tab-item-hover-color: rgba(255, 255, 255, 0.85); @tab-item-disabled-color: rgba(255, 255, 255, 0.8); // // Table // @table-header-cell-color: rgba(255, 255, 255, 0.8); @table-caption-color: #FFFFFF; @table-row-active-background: fade(@global-primary-background, 4%); @table-striped-row-background: fade(@global-secondary-background, 25%); @table-hover-row-background: fade(@global-primary-background, 4%); // // Text // @text-secondary-color: darken(@global-primary-background, 10%); // // Thumbnav // @thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); // // Tile // @tile-default-color-mode: light; @tile-muted-background: @global-muted-background; @tile-muted-color-mode: light; // // Tooltip // @tooltip-background: @global-muted-background; @tooltip-color: @global-emphasis-color; // // Totop // @totop-border: @global-muted-color; @totop-color: @global-muted-color; @totop-hover-color: @inverse-global-inverse-color; @totop-active-background: fade(@global-primary-background, 90%); @totop-active-color: @totop-color; // // Woocommerce // @woocommerce-rating-background-color: fade(lighten(@global-primary-background, 30%), 15%); assets/uikit-themes/master-makai/_import.less000064400000050150151666572410015410 0ustar00@internal-fonts: 'Montserrat:400,600,700|Playfair+Display:700|Homemade+Apple:400'; @global-font-family: Montserrat; @global-font-size: 14px; @global-line-height: 1.7; @global-2xlarge-font-size: 42px; @global-xlarge-font-size: 36px; @global-large-font-size: 28px; @global-medium-font-size: 19px; @global-small-font-size: 12px; @global-primary-font-family: 'Playfair Display'; @global-primary-font-weight: 700; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: Montserrat; @global-secondary-font-weight: 700; @global-secondary-text-transform: uppercase; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-tertiary-font-family: 'Homemade Apple'; @global-tertiary-font-weight: 400; @global-color: #717171; @global-emphasis-color: #0D1724; @global-muted-color: #A3A3A3; @global-link-color: #0D1724; @global-link-hover-color: #0E536D; @global-inverse-color: #FFFFFF; @global-background: #FFFFFF; @global-muted-background: #f4f4f4; @global-primary-background: #0E536D; @global-secondary-background: #0D1724; @global-success-background: #32d296; @global-warning-background: #faa05a; @global-danger-background: #f0506e; @global-border-width: 1px; @global-border: rgba(0,0,0,0.1); @global-border-radius: 0; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.12); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 44px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-code-color: @global-color; @base-ins-background: @global-muted-background; @base-ins-color: @global-emphasis-color; @base-mark-background: @global-muted-background; @base-mark-color: @global-emphasis-color; @base-quote-font-style: normal; @base-blockquote-font-size: @global-2xlarge-font-size; @base-blockquote-line-height: 1.2; @base-blockquote-font-style: normal; @base-selection-background: @global-primary-background; @base-code-padding-horizontal: 5px; @base-code-padding-vertical: 2px; @base-pre-padding: 15px; @base-blockquote-footer-em-dash: false; @base-blockquote-footer-color: @global-muted-color; @base-blockquote-footer-font-style: normal; @base-code-border-width: @global-border-width; @base-code-border: @global-border; @base-pre-border-width: @global-border-width; @base-pre-border: @global-border; @link-muted-hover-color: @global-emphasis-color; @link-text-hover-color: @global-primary-background; @link-heading-hover-text-decoration: underline; @link-heading-text-decoration: underline; @inverse-link-text-hover-color: @inverse-global-color; @inverse-link-heading-hover-color: fade(@global-inverse-color, 60%); @heading-medium-font-size: @heading-medium-font-size-m * 0.9; @heading-large-font-size: @heading-large-font-size-m * 0.9; @heading-small-font-size-m: 55px; @heading-medium-font-size-l: 66px; @heading-large-font-size-l: 90px; @heading-xlarge-font-size-l: 130px; @heading-2xlarge-font-size-l: 180px; @heading-3xlarge-font-size-l: 250px; @heading-bullet-border-width: ~'calc(2px + 0.05em)'; @heading-bullet-border: @global-secondary-background; @divider-icon-color: @global-primary-background; @internal-divider-icon-image: "../../../../uikit-themes/master-makai/images/divider-icon.svg"; @inverse-divider-icon-color: @global-inverse-color; @inverse-divider-vertical-border: @global-inverse-color; @list-large-striped-padding-vertical: 15px; @list-large-striped-padding-horizontal: @global-margin; @description-list-term-margin-top: 30px; @description-list-term-font-size: 16px; @table-row-active-background: fade(@global-primary-background, 5%); @icon-link-hover-color: @global-primary-background; @icon-link-active-color: @global-secondary-background; @icon-button-hover-background: @global-secondary-background; @icon-button-hover-color: @global-inverse-color; @icon-button-active-background: lighten(@global-secondary-background, 10%); @icon-button-active-color: @global-inverse-color; @inverse-icon-link-color: @global-inverse-color; @inverse-icon-link-hover-color: fade(@global-inverse-color, 90%); @inverse-icon-link-active-color: @global-inverse-color; @inverse-icon-button-color: @inverse-global-color; @inverse-icon-button-hover-background: @inverse-global-primary-background; @inverse-icon-button-hover-color: @global-emphasis-color; @inverse-icon-button-active-background: fade(@inverse-icon-button-hover-background, 90%); @inverse-icon-button-active-color: @global-emphasis-color; @form-range-track-height: 2px; @form-range-thumb-height: 14px; @form-range-thumb-background: @global-primary-background; @form-background: transparent; @form-focus-background: transparent; @form-disabled-background: lighten(@global-muted-background, 3%); @form-disabled-color: lighten(@global-muted-color, 17%); @form-select-icon-color: @global-emphasis-color; @form-select-option-color: @global-emphasis-color; @form-radio-background: transparent; @form-radio-focus-background: transparent; @form-border-width: @global-border-width; @form-border: @global-border; @form-focus-border: @global-secondary-background; @form-disabled-border: lighten(@global-border, 15%); @form-danger-border: @global-danger-background; @form-success-border: @global-success-background; @form-blank-focus-border: @global-border; @form-radio-border-width: @global-border-width; @form-radio-border: @global-border; @form-radio-focus-border: @global-secondary-background; @inverse-form-background: transparent; @inverse-form-focus-background: transparent; @inverse-form-radio-background: transparent; @inverse-form-radio-focus-background: transparent; @inverse-form-border: @inverse-global-border; @inverse-form-focus-border: @global-inverse-color; @inverse-form-radio-border: @inverse-global-border; @inverse-form-radio-focus-border: @global-inverse-color; @button-font-size: @global-small-font-size; @button-large-font-size: 16px; @button-padding-horizontal: 20px; @button-large-padding-horizontal: 25px; @button-default-background: transparent; @button-default-hover-background: @global-secondary-background; @button-default-hover-color: @global-inverse-color; @button-default-active-background: lighten(@global-secondary-background, 5%); @button-default-active-color: @global-inverse-color; @button-primary-active-background: @global-primary-background; @button-secondary-hover-background: lighten(@global-secondary-background, 5%); @button-link-hover-color: @global-primary-background; @button-border-width: @global-border-width; @button-default-border: @global-secondary-background; @button-default-active-border: @global-secondary-background; @inverse-button-default-background: transparent; @inverse-button-default-color: @global-inverse-color; @inverse-button-default-hover-background: @global-inverse-color; @inverse-button-default-active-background: fade(@global-inverse-color, 90%); @inverse-button-primary-background: @global-primary-background; @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-hover-color: @global-inverse-color; @inverse-button-primary-active-color: @global-inverse-color; @inverse-button-link-hover-color: @inverse-global-color; @inverse-button-default-border: @global-inverse-color; @container-small-max-width: 960px; @container-large-max-width: 1360px; @card-badge-height: 24px; @card-badge-padding-horizontal: 8px; @card-hover-background: @global-background; @card-default-background: @global-background; @card-default-hover-background: @global-background; @card-primary-hover-background: darken(@card-primary-background, 3%); @card-secondary-hover-background: lighten(@card-secondary-background, 5%); @card-hover-border-width: @global-border-width; @card-hover-border: @global-border; @card-default-border-width: @global-border-width; @card-default-border: @global-border; @card-default-hover-border: darken(@card-default-border, 10%); @close-hover-color: @global-primary-background; @marker-background: @global-primary-background; @marker-hover-background: @global-secondary-background; @inverse-marker-hover-color: @global-primary-background; @totop-padding: 15px; @totop-color: @global-secondary-background; @totop-hover-color: @global-inverse-color; @totop-active-color: @global-inverse-color; @totop-hover-background: @global-primary-background; @totop-active-background: @global-secondary-background; @totop-border-width: @global-border-width; @totop-border: @global-secondary-background; @inverse-totop-color: @global-inverse-color; @inverse-totop-hover-color: @inverse-global-inverse-color; @inverse-totop-active-color: @inverse-global-inverse-color; @inverse-totop-hover-background: @global-inverse-color; @inverse-totop-active-background: fade(@global-inverse-color, 80%); @inverse-totop-border: @global-inverse-color; @alert-primary-background: fade(@global-primary-background, 80%); @alert-primary-color: @global-inverse-color; @alert-success-background: fade(@global-success-background, 80%); @alert-success-color: @global-inverse-color; @alert-warning-background: fade(@global-warning-background, 80%); @alert-warning-color: @global-inverse-color; @alert-danger-background: fade(@global-danger-background, 80%); @alert-danger-color: @global-inverse-color; @badge-font-weight: 600; @overlay-primary-background: fade(@global-primary-background, 90%); @search-icon-color: @global-emphasis-color; @search-default-background: transparent; @search-navbar-background: transparent; @search-navbar-focus-background: transparent; @search-medium-padding-horizontal: 20px; @search-large-padding-horizontal: 30px; @search-toggle-color: @global-color; @search-toggle-hover-color: @global-emphasis-color; @search-default-border-width: @global-border-width; @search-default-border: @global-border; @search-default-focus-border: @global-secondary-background; @search-medium-border-width: @global-border-width; @search-medium-border: @global-border; @search-medium-focus-border: @global-secondary-background; @search-large-border-width: @global-border-width; @search-large-border: @global-border; @search-large-focus-border: @global-secondary-background; @inverse-search-color: @global-inverse-color; @inverse-search-icon-color: @global-inverse-color; @inverse-search-default-background: transparent; @inverse-search-default-focus-background: transparent; @inverse-search-navbar-background: transparent; @inverse-search-navbar-focus-background: transparent; @inverse-search-medium-focus-background: transparent; @inverse-search-large-focus-background: transparent; @inverse-search-default-border: @inverse-global-border; @inverse-search-default-focus-border: @global-inverse-color; @inverse-search-navbar-border: @inverse-global-border; @inverse-search-navbar-focus-border: @global-inverse-color; @inverse-search-medium-border: @inverse-global-border; @inverse-search-medium-focus-border: @global-inverse-color; @inverse-search-large-border: @inverse-global-border; @inverse-search-large-focus-border: @global-inverse-color; @accordion-icon-color: @global-primary-background; @internal-accordion-icon-close-image: "../../../../uikit-themes/master-makai/images/accordion-close.svg"; @internal-accordion-icon-open-image: "../../../../uikit-themes/master-makai/images/accordion-open.svg"; @accordion-title-font-family: @global-secondary-font-family; @accordion-title-font-weight: @global-secondary-font-weight; @accordion-title-text-transform: @global-secondary-text-transform; @accordion-title-letter-spacing: @global-secondary-letter-spacing; @accordion-title-font-style: @global-secondary-font-style; @accordion-item-border-width: @global-border-width; @accordion-item-border: @global-border; @inverse-accordion-icon-color: @global-inverse-color; @dropdown-padding: 20px; @dropdown-dropbar-margin: 0; @dropdown-dropbar-padding-top: ~'calc(@{dropdown-padding} - 5px)'; @dropdown-dropbar-large-padding-top: ~'calc(@{dropdown-large-padding} - 5px)'; @dropdown-nav-item-color: @global-color; @dropdown-nav-item-hover-color: @global-emphasis-color; @dropdown-nav-subtitle-font-size: 12px; @dropdown-nav-sublist-item-hover-color: @global-emphasis-color; @dropdown-nav-item-padding-vertical: 10px; @dropdown-nav-font-size: @global-small-font-size; @dropdown-nav-subtitle-text-transform: none; @dropdown-nav-subtitle-line-height: 1.5; @dropbar-padding-top: 30px; @dropbar-background: @global-background; @dropbar-top-box-shadow: 0 1px 0 @global-border; @dropbar-bottom-box-shadow: 0 -1px 0 @global-border; @dropbar-left-box-shadow: 1px 0 0 @global-border; @dropbar-right-box-shadow: -1px 0 0 @global-border; @modal-header-background: @global-background; @modal-footer-background: @global-background; @offcanvas-bar-background: @global-background; @offcanvas-bar-color-mode: dark; @leader-color: fade(@global-emphasis-color, 40%); @leader-font-size: 10px; @inverse-leader-color: fade(@global-inverse-color, 30%); @tooltip-padding-vertical: 5px; @tooltip-padding-horizontal: 9px; @tooltip-background: @global-secondary-background; @nav-header-font-size: @global-font-size; @nav-default-item-color: @global-color; @nav-default-item-hover-color: @global-emphasis-color; @nav-default-subtitle-font-size: 12px; @nav-default-sublist-item-hover-color: @global-emphasis-color; @nav-primary-font-size: @global-medium-font-size; @nav-primary-item-color: @global-emphasis-color; @nav-primary-item-hover-color: @global-primary-background; @nav-primary-item-active-color: @global-primary-background; @nav-primary-subtitle-font-size: @global-font-size; @nav-primary-sublist-font-size: 16px; @nav-primary-sublist-item-hover-color: @global-emphasis-color; @nav-primary-sublist-item-active-color: @global-primary-background; @nav-secondary-subtitle-font-size: 13px; @nav-secondary-subtitle-color: @global-color; @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-sublist-font-size: @global-font-size; @nav-dividers-margin-top: 7px; @nav-secondary-margin-top: 15px; @nav-secondary-item-padding-vertical: 8px; @nav-default-font-weight: 400; @nav-default-subtitle-color: @global-muted-color; @nav-default-subtitle-text-transform: none; @nav-default-subtitle-line-height: 1.5; @nav-primary-font-family: @global-secondary-font-family; @nav-primary-font-weight: inherit; @nav-primary-text-transform: @global-secondary-text-transform; @nav-primary-letter-spacing: @global-secondary-letter-spacing; @nav-primary-font-style: @global-secondary-font-style; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-font-weight: normal; @nav-primary-subtitle-text-transform: none; @nav-primary-subtitle-line-height: 1.5; @nav-secondary-font-weight: normal; @nav-secondary-subtitle-text-transform: none; @nav-secondary-subtitle-line-height: 1.5; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @navbar-background: @global-inverse-color; @navbar-gap: 0px; @navbar-nav-gap: 0px; @navbar-nav-item-padding-horizontal: 25px; @navbar-nav-item-color: @global-color; @navbar-nav-item-hover-color: @global-emphasis-color; @navbar-nav-item-onclick-color: @global-color; @navbar-item-padding-horizontal: 25px; @navbar-toggle-color: @global-color; @navbar-toggle-hover-color: @global-emphasis-color; @navbar-dropdown-shift-margin: -1px; @navbar-dropdown-padding: 25px; @navbar-dropdown-background: @global-background; @navbar-dropdown-large-shift-margin: -1px; @navbar-dropdown-dropbar-shift-margin: (@navbar-nav-item-padding-horizontal - @navbar-border-width); @navbar-dropdown-dropbar-large-shift-margin: (@navbar-nav-item-padding-horizontal - @navbar-border-width); @navbar-dropdown-nav-item-color: @global-color; @navbar-dropdown-nav-item-hover-color: @global-emphasis-color; @navbar-padding-top: 15px; @navbar-padding-bottom: @navbar-padding-top; @navbar-gap-m: 0px; @navbar-nav-gap-m: 0px; @navbar-dropdown-nav-sublist-padding-left: 10px; @navbar-nav-item-font-weight: 400; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-text-transform: none; @navbar-subtitle-line-height: 1.4; @navbar-primary-nav-item-font-size: 16px; @navbar-dropdown-nav-font-weight: 400; @navbar-dropdown-nav-subtitle-text-transform: none; @navbar-dropdown-nav-subtitle-line-height: 1.6; @navbar-mode: frame; @navbar-mode-border-vertical: all; @navbar-border-width: @global-border-width; @navbar-border: fade(@global-border, 10%); @navbar-dropdown-border-width: @global-border-width; @navbar-dropdown-border: fade(@global-muted-color, 30%); @inverse-navbar-nav-item-color: fade(@global-inverse-color, 60%); @inverse-navbar-nav-item-hover-color: fade(@global-inverse-color, 90%); @inverse-navbar-nav-item-onclick-color: fade(@global-inverse-color, 50%); @inverse-navbar-nav-item-active-color: @global-inverse-color; @inverse-navbar-item-color: @global-inverse-color; @inverse-navbar-toggle-color: @global-inverse-color; @inverse-navbar-toggle-hover-color: fade(@global-inverse-color, 70%); @inverse-navbar-border: fade(@global-inverse-color, 60%); @subnav-item-color: @global-color; @subnav-item-hover-color: @global-emphasis-color; @subnav-item-font-weight: 400; @breadcrumb-item-color: @global-color; @breadcrumb-item-hover-color: @global-emphasis-color; @breadcrumb-item-active-color: @global-emphasis-color; @breadcrumb-divider: "|"; @breadcrumb-divider-color: @global-border; @breadcrumb-item-font-weight: 400; @pagination-margin-horizontal: 15px; @pagination-item-padding-vertical: 3px; @pagination-item-active-color: @global-inverse-color; @pagination-item-height: 30px; @pagination-item-active-background: @global-primary-background; @pagination-item-border-width: @global-border-width; @pagination-item-border: @global-border; @pagination-item-hover-border: @global-color; @inverse-pagination-item-hover-color: @global-inverse-color; @inverse-pagination-item-active-color: @inverse-global-inverse-color; @inverse-pagination-item-active-background: @global-inverse-color; @inverse-pagination-item-border: @inverse-global-border; @inverse-pagination-item-hover-border: @global-inverse-color; @tab-item-color: @global-color; @tab-item-hover-color: @global-emphasis-color; @tab-vertical-item-padding-horizontal: @global-gutter; @tab-vertical-item-padding-vertical: 10px; @tab-item-font-weight: 400; @slidenav-padding-vertical: 12px; @slidenav-padding-horizontal: 17px; @slidenav-color: @global-secondary-background; @slidenav-hover-color: @global-inverse-color; @slidenav-active-color: @global-inverse-color; @slidenav-large-padding-vertical: 15px; @slidenav-large-padding-horizontal: 22px; @slidenav-hover-background: @global-primary-background; @slidenav-active-background: @global-secondary-background; @slidenav-border-width: @global-border-width; @slidenav-border: @global-secondary-background; @inverse-slidenav-color: @global-inverse-color; @inverse-slidenav-hover-background: @inverse-global-muted-color; @inverse-slidenav-active-background: @inverse-global-muted-background; @inverse-slidenav-border: @global-inverse-color; @dotnav-margin-horizontal: @global-small-margin; @dotnav-item-background: transparent; @dotnav-item-hover-background: @global-primary-background; @dotnav-item-onclick-background: @global-secondary-background; @dotnav-item-active-background: @global-primary-background; @dotnav-item-border-width: 1px; @dotnav-item-border: @global-primary-background; @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-active-background: @global-inverse-color; @inverse-dotnav-item-border: @global-inverse-color; @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @lightbox-background: @global-secondary-background; @width-2xlarge-width: 840px; @text-lead-font-size: @global-medium-font-size; @text-meta-font-size: 12px; @text-large-font-size: @global-medium-font-size; @text-meta-link-color: @global-link-color; @text-meta-link-hover-color: @global-link-hover-color; @inverse-text-meta-color: @global-inverse-color; @logo-font-size: @global-medium-font-size; @logo-font-weight: 700; @logo-text-transform: uppercase; @inverse-global-inverse-color: @global-emphasis-color;assets/uikit-themes/master-soda/_import.less000064400000034621151666572410015261 0ustar00@internal-fonts: 'Heebo:700|Lato:400,400italic'; @global-font-family: Lato; @global-font-size: 15px; @global-line-height: 1.5; @global-2xlarge-font-size: 40px; @global-xlarge-font-size: 30px; @global-large-font-size: 24px; @global-medium-font-size: 19px; @global-small-font-size: 13px; @global-primary-font-family: Heebo; @global-primary-font-weight: 700; @global-primary-text-transform: inherit; @global-primary-letter-spacing: inherit; @global-primary-font-style: inherit; @global-secondary-font-family: Lato; @global-secondary-font-weight: 400; @global-secondary-text-transform: inherit; @global-secondary-letter-spacing: inherit; @global-secondary-font-style: inherit; @global-color: #6F6F6F; @global-emphasis-color: #383838; @global-muted-color: #AAAAAA; @global-link-color: #00A89B; @global-link-hover-color: darken(@global-link-color, 5%); @global-inverse-color: #FFF; @global-background: #FFF; @global-muted-background: #F5F5F5; @global-primary-background: #0DC4B6; @global-secondary-background: #1F1F1F; @global-success-background: #6BC116; @global-warning-background: #EDA929; @global-danger-background: #E84646; @global-border-width: 1px; @global-border: #F1F1F1; @global-border-radius: 2px; @global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08); @global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08); @global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16); @global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16); @global-margin: 20px; @global-small-margin: 10px; @global-medium-margin: 40px; @global-large-margin: 70px; @global-xlarge-margin: 140px; @global-gutter: 30px; @global-small-gutter: 15px; @global-medium-gutter: 40px; @global-large-gutter: 70px; @global-control-height: 40px; @global-control-small-height: 30px; @global-control-large-height: 55px; @global-z-index: 1000; @base-ins-background: #FAF4D1; @base-mark-background: #FAF4D1; @base-blockquote-font-size: @global-large-font-size; @base-blockquote-margin-vertical: @global-medium-margin; @base-blockquote-footer-margin-top: @global-margin; @base-pre-font-size: 12px; @base-pre-padding: @global-margin; @base-pre-background: @global-muted-background; @base-h3-font-family: @global-secondary-font-family; @base-h3-font-weight: @global-secondary-font-weight; @base-h3-text-transform: @global-secondary-text-transform; @base-h3-letter-spacing: @global-secondary-letter-spacing; @base-h3-font-style: @global-secondary-font-style; @base-blockquote-font-family: @global-secondary-font-family; @base-blockquote-font-weight: @global-secondary-font-weight; @link-text-hover-color: @global-primary-background; @inverse-link-text-hover-color: @inverse-global-primary-background; @heading-small-font-size-m: 54px; @heading-medium-font-size-l: 76px; @heading-large-font-size-l: 96px; @heading-xlarge-font-size-l: 120px; @heading-2xlarge-font-size-l: 160px; @heading-divider-border-width: ~'calc(0.2px + 0.03em)'; @inverse-list-bullet-icon-color: @global-primary-background; @inverse-list-bullet-icon-color: @inverse-global-primary-background; @table-row-active-background: fade(@global-primary-background, 8%); @table-header-cell-letter-spacing: 1px; @form-range-track-height: 2px; @form-range-thumb-height: 12px; @form-range-thumb-background: @global-primary-background; @inverse-form-radio-background: fade(@global-inverse-color, 20%); @inverse-form-radio-focus-background: fade(@global-inverse-color, 30%); @inverse-form-radio-checked-icon-color: @global-inverse-color; @form-danger-focus-background: fade(@global-danger-background, 5%); @form-success-focus-background: fade(@global-success-background, 5%); @button-default-hover-background: darken(@button-default-background, 4%); @button-primary-hover-background: darken(@button-primary-background, 4%); @button-secondary-hover-background: darken(@button-secondary-background, 10%); @button-link-hover-color: @global-color; @button-text-mode: ~''; @button-text-icon-mode: arrow; @button-letter-spacing: 0.4px; @button-border-radius: 500px; @button-small-border-radius: @button-border-radius; @button-large-border-radius: @button-border-radius; @inverse-button-default-background: @global-inverse-color; @inverse-button-primary-color: @global-inverse-color; @inverse-button-primary-hover-background: darken(@inverse-button-primary-background, 2%); @inverse-button-primary-hover-color: @global-inverse-color; @inverse-button-secondary-background: @global-background; @inverse-button-text-color: @global-inverse-color; @inverse-button-text-hover-color: @global-inverse-color; @inverse-button-link-hover-color: @inverse-global-color; @progress-background: darken(@global-muted-background, 5%); @card-badge-height: 26px; @card-badge-padding-horizontal: 12px; @card-default-hover-background: darken(@card-default-background, 2%); @card-primary-hover-background: darken(@card-primary-background, 2%); @card-secondary-hover-background: darken(@card-secondary-background, 12%); @card-badge-border-radius: 500px; @inverse-card-badge-background: @inverse-global-emphasis-color; @marker-background: @global-primary-background; @inverse-marker-background: fade(@inverse-global-emphasis-color, 80%); @inverse-marker-color: @inverse-global-inverse-color; @inverse-marker-hover-color: @inverse-global-inverse-color; @inverse-marker-hover-background: @inverse-global-emphasis-color; @alert-background: lighten(@global-muted-background, 2%); @alert-primary-background: fade(@global-primary-background, 8%); @alert-success-background: fade(@global-success-background, 8%); @alert-warning-background: fade(@global-warning-background, 10%); @alert-danger-background: fade(@global-danger-background, 7%); @inverse-badge-color: @global-inverse-color; @label-border-radius: 500px; @inverse-label-color: @global-inverse-color; @article-meta-font-style: italic; @search-color: @global-emphasis-color; @search-default-padding-horizontal: 16px; @search-navbar-padding-horizontal: 16px; @search-navbar-background: @global-muted-background; @search-navbar-focus-background: darken(@search-navbar-background, 2%); @search-medium-padding-horizontal: 20px; @search-large-padding-horizontal: 30px; @search-toggle-color: @global-emphasis-color; @search-toggle-hover-color: @global-primary-background; @search-default-border-radius: 500px; @search-navbar-border-radius: 500px; @search-medium-border-radius: 500px; @search-large-border-radius: 500px; @navbar-dropdown-color-mode: light; @dropdown-background: darken(@global-secondary-background, 10%); @dropdown-color-mode: light; @dropdown-nav-item-hover-color: @global-inverse-color; @dropdown-nav-header-color: fade(@global-inverse-color, 40%); @dropdown-nav-divider-border: fade(@global-inverse-color, 20%); @dropdown-nav-subtitle-color: @global-muted-color; @dropbar-background: darken(@global-secondary-background, 10%); @dropbar-color-mode: light; @leader-letter-spacing: 2px; @notification-message-background: lighten(@global-muted-background, 2%); @tooltip-padding-horizontal: 10px; @tooltip-background: @global-primary-background; @countdown-number-font-size-s: 3.5rem; @countdown-number-font-size-m: 5rem; @countdown-separator-line-height: 1.12; @countdown-separator-font-size: 1.4285rem; @countdown-separator-font-size-s: 2.5rem; @countdown-separator-font-size-m: 3.5714rem; @countdown-item-font-family: @global-primary-font-family; @countdown-item-font-weight: @global-primary-font-weight; @countdown-item-text-transform: @global-primary-text-transform; @countdown-item-letter-spacing: @global-primary-letter-spacing; @countdown-item-font-style: @global-primary-font-style; @nav-default-item-color: @global-emphasis-color; @nav-default-item-active-color: @global-primary-background; @nav-default-sublist-item-color: @global-emphasis-color; @nav-default-sublist-item-active-color: @global-primary-background; @nav-primary-item-color: @global-emphasis-color; @nav-primary-item-active-color: @global-primary-background; @nav-primary-subtitle-font-size: @global-font-size; @nav-primary-sublist-item-color: @global-emphasis-color; @nav-primary-sublist-item-active-color: @global-primary-background; @nav-secondary-subtitle-hover-color: @global-emphasis-color; @nav-secondary-sublist-font-size: @nav-secondary-font-size; @nav-medium-font-size-l: 76px; @nav-large-font-size: 65px; @nav-large-font-size-m: @nav-medium-font-size-l; @nav-large-font-size-l: 96px; @nav-xlarge-font-size: @nav-large-font-size-m; @nav-xlarge-font-size-m: @nav-large-font-size-l; @nav-xlarge-font-size-l: 120px; @nav-secondary-margin-top: 2px; @nav-secondary-item-padding-vertical: 10px; @nav-secondary-item-padding-horizontal: 14px; @nav-secondary-item-hover-background: @global-muted-background; @nav-secondary-item-active-background: @global-muted-background; @nav-default-subtitle-color: @global-muted-color; @nav-default-subtitle-line-height: 1.4; @nav-primary-subtitle-color: @global-muted-color; @nav-primary-subtitle-font-family: @global-font-family; @nav-primary-subtitle-font-weight: normal; @nav-primary-subtitle-line-height: 1.4; @nav-secondary-item-border-radius: 3px; @inverse-nav-default-item-color: @global-inverse-color; @inverse-nav-default-item-hover-color: @inverse-global-primary-background; @inverse-nav-default-item-active-color: @inverse-global-primary-background; @inverse-nav-default-sublist-item-color: @global-inverse-color; @inverse-nav-default-sublist-item-hover-color: @inverse-global-primary-background; @inverse-nav-default-sublist-item-active-color: @inverse-global-primary-background; @inverse-nav-primary-item-color: @global-inverse-color; @inverse-nav-primary-item-hover-color: @inverse-global-primary-background; @inverse-nav-primary-item-active-color: @inverse-global-primary-background; @inverse-nav-primary-sublist-item-color: @global-inverse-color; @inverse-nav-primary-sublist-item-hover-color: @inverse-global-primary-background; @inverse-nav-primary-sublist-item-active-color: @inverse-global-primary-background; @inverse-nav-secondary-subtitle-hover-color: @inverse-global-emphasis-color; @inverse-nav-secondary-item-hover-background: @inverse-global-muted-background; @inverse-nav-secondary-item-active-background: @inverse-nav-secondary-item-hover-background; @navbar-background: @global-background; @navbar-nav-item-height: 100px; @navbar-nav-item-color: @global-emphasis-color; @navbar-nav-item-hover-color: @global-primary-background; @navbar-nav-item-onclick-color: darken(@global-primary-background, 6%); @navbar-nav-item-active-color: @global-primary-background; @navbar-toggle-color: @global-emphasis-color; @navbar-toggle-hover-color: @global-primary-background; @navbar-dropdown-shift-margin: -@navbar-dropdown-padding; @navbar-dropdown-background: darken(@global-secondary-background, 10%); @navbar-dropdown-large-shift-margin: -@navbar-dropdown-large-padding; @navbar-dropdown-nav-item-hover-color: @global-inverse-color; @navbar-dropdown-nav-item-active-color: @global-inverse-color; @navbar-dropdown-nav-header-color: fade(@global-inverse-color, 40%); @navbar-dropdown-nav-divider-border: fade(@global-inverse-color, 20%); @navbar-dropdown-nav-sublist-item-hover-color: @global-inverse-color; @navbar-dropdown-nav-sublist-item-active-color: @global-inverse-color; @navbar-nav-item-line-mode: true; @navbar-nav-item-line-position-mode: top; @navbar-nav-item-line-margin-vertical: 24px; @navbar-nav-item-line-margin-horizontal: ~'calc(50% - (@{navbar-nav-item-line-height} / 2))'; @navbar-nav-item-line-height: 6px; @navbar-nav-item-line-border-radius: 500px; @navbar-nav-item-line-hover-height: 6px; @navbar-nav-item-line-onclick-height: 6px; @navbar-nav-item-line-active-height: 6px; @navbar-primary-gap-m: 40px; @navbar-primary-nav-gap-m: 40px; @navbar-nav-item-text-transform: uppercase; @navbar-nav-item-letter-spacing: 1px; @navbar-subtitle-color: @global-muted-color; @navbar-subtitle-font-family: @global-font-family; @navbar-subtitle-font-weight: @global-secondary-font-weight; @navbar-subtitle-text-transform: none; @navbar-subtitle-letter-spacing: normal; @navbar-primary-nav-item-font-size: @global-medium-font-size; @navbar-dropdown-nav-subtitle-line-height: 1.4; @inverse-navbar-nav-item-color: @global-inverse-color; @inverse-navbar-nav-item-hover-color: @inverse-global-primary-background; @inverse-navbar-nav-item-onclick-color: darken(@inverse-global-primary-background, 6%); @inverse-navbar-nav-item-active-color: @inverse-global-primary-background; @subnav-item-color: @global-emphasis-color; @subnav-item-hover-color: @global-primary-background; @subnav-item-active-color: @global-primary-background; @inverse-subnav-item-color: @global-inverse-color; @inverse-subnav-item-hover-color: @inverse-global-primary-background; @inverse-subnav-item-active-color: @inverse-global-primary-background; @inverse-subnav-pill-item-hover-color: @global-inverse-color; @inverse-subnav-pill-item-active-color: @global-inverse-color; @breadcrumb-divider: "|"; @pagination-margin-horizontal: 20px; @pagination-item-padding-vertical: 0; @pagination-item-padding-horizontal: 7px; @pagination-item-active-color: @global-emphasis-color; @inverse-pagination-item-color: @inverse-global-color; @inverse-pagination-item-hover-color: @global-inverse-color; @inverse-pagination-item-active-color: @global-inverse-color; @tab-item-hover-color: @global-primary-background; @tab-item-active-color: @global-primary-background; @tab-border-width: 0; @inverse-tab-item-hover-color: @inverse-global-primary-background; @inverse-tab-item-active-color: @inverse-global-primary-background; @dotnav-item-width: 12px; @dotnav-item-background: transparent; @dotnav-item-hover-background: fade(@global-color, 40%); @dotnav-item-onclick-background: @global-primary-background; @dotnav-item-active-background: @global-primary-background; @dotnav-item-border-width: @global-border-width; @dotnav-item-border: fade(@global-color, 30%); @inverse-dotnav-item-background: transparent; @inverse-dotnav-item-active-background: @inverse-global-primary-background; @inverse-dotnav-item-border: fade(@inverse-global-color, 90%); @thumbnav-item-background: transparent; @thumbnav-item-gradient: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4)); @inverse-thumbnav-item-background: transparent; @inverse-thumbnav-item-gradient: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4)); @text-large-font-size: @global-medium-font-size; @inverse-text-lead-color: @global-inverse-color; @inverse-text-secondary-color: @global-inverse-color; @logo-font-size: 26px; @logo-font-weight: 700; @logo-text-transform: uppercase; @logo-letter-spacing: 2px; @inverse-global-color: fade(@global-inverse-color, 65%); @inverse-global-inverse-color: @global-emphasis-color; @inverse-global-primary-background: @global-primary-background; @inverse-global-border: fade(@global-inverse-color, 10%);assets/uikit-themes/master-soda/images/button-text-arrow.svg000064400000000172151666572410020325 0ustar00<svg width="30" height="7" viewBox="0 0 30 7" xmlns="http://www.w3.org/2000/svg"> <path d="M30,7H0V6H18V1Z" /> </svg> assets/uikit-themes/master-soda/icons/nav-parent-icon-large.svg000064400000000256151666572410020642 0ustar00<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <polyline fill="none" stroke="#000" stroke-width="2" points="1 4 7 10 13 4" /> </svg> assets/uikit-themes/master-soda/styles/white-darkblue.less000064400000001077151666572410020041 0ustar00// // Global // @global-color: #292B2F; @global-emphasis-color: #0C0F15; @global-link-color: #0062FF; @global-danger-background: #F93B21; @global-primary-background: #0062FF; @global-secondary-background: #0C0F15; @global-success-background: #19E900; @global-warning-background: #F9B821; // // Theme // @theme-page-border: #333333; // // Button // @button-link-hover-color: @global-muted-color; // // Nav // @nav-default-item-hover-color: @global-muted-color; @nav-default-sublist-item-hover-color: @global-muted-color; assets/uikit-themes/master-soda/styles/white-pink.less000064400000000451151666572410017204 0ustar00// // Global // @global-link-color: #E03563; @global-danger-background: #FF573C; @global-primary-background: #E03563; @global-secondary-background: #121212; @global-success-background: #45CA18; @global-warning-background: #FCCA14; // // Theme // @theme-page-border: #333333; assets/uikit-themes/master-soda/styles/white-blue.less000064400000000261151666572410017171 0ustar00// // Global // @global-link-color: #00B1E6; @global-primary-background: #00B1E6; @global-secondary-background: #081A2A; // // Theme // @theme-page-border: #FFF; assets/uikit-themes/master-soda/styles/white-red.less000064400000000520151666572410017012 0ustar00// // Global // @global-emphasis-color: #121212; @global-link-color: #FF6450; @global-danger-background: #D42727; @global-primary-background: #FF6450; @global-secondary-background: #121212; @global-success-background: #7DCB60; @global-warning-background: #FFC547; // // Theme // @theme-page-border: #333333; assets/uikit-themes/master-soda/styles/white-green.less000064400000003077151666572410017352 0ustar00// // Global // @global-color: #383838; @global-emphasis-color: #383838; @global-link-color: #65AE00; @global-danger-background: #F93A4D; @global-primary-background: #94EA1F; @global-secondary-background: #121212; @global-success-background: #63CEA2; @global-warning-background: #F5C900; // // Theme // @theme-page-border: #333333; // // Badge // @badge-color: @global-emphasis-color; @inverse-badge-color: @inverse-global-inverse-color; // // Button // @button-primary-color: @global-emphasis-color; @button-primary-hover-color: @global-emphasis-color; @button-primary-active-color: @global-emphasis-color; @inverse-button-primary-color: @inverse-global-inverse-color; @inverse-button-primary-hover-color: @inverse-global-inverse-color; @button-link-hover-color: @global-muted-color; // // Card // @card-badge-color: @global-emphasis-color; @card-primary-color: @global-emphasis-color; @card-primary-color-mode: dark; // // Form // @inverse-form-radio-checked-icon-color: @inverse-global-inverse-color; // // Marker // @marker-color: @global-emphasis-color; @marker-hover-color: @global-emphasis-color; // // Nav // @nav-default-item-hover-color: @global-muted-color; @nav-default-sublist-item-hover-color: @global-muted-color; // // Section // @section-primary-color-mode: dark; // // Subnav // @subnav-pill-item-active-color: @global-emphasis-color; // // Tile // @tile-primary-color-mode: dark; // // Tooltip // @tooltip-color: @global-emphasis-color; assets/uikit-themes/master/border-radius/notification.less000064400000002141151666572410020104 0ustar00// // Component: Notification // // ======================================================================== // Variables // ======================================================================== // // New // @notification-message-border-radius: 0; // Component // ======================================================================== .hook-notification() {} // Message // ======================================================================== .hook-notification-message() when not (@notification-message-border-radius = 0) { border-radius: @notification-message-border-radius; } // Close // ======================================================================== .hook-notification-close() {} // Style modifiers // ======================================================================== .hook-notification-message-primary() {} .hook-notification-message-success() {} .hook-notification-message-warning() {} .hook-notification-message-danger() {} // Miscellaneous // ======================================================================== .hook-notification-misc() {} assets/uikit-themes/master/border-radius/subnav.less000064400000003070151666572410016716 0ustar00// // Component: Subnav // // ======================================================================== // Variables // ======================================================================== // // New // @subnav-pill-item-border-radius: 0; // Component // ======================================================================== .hook-subnav() {} .hook-subnav-item() {} .hook-subnav-item-hover() {} .hook-subnav-item-active() {} // Divider modifier // ======================================================================== .hook-subnav-divider() {} // Pill modifier // ======================================================================== .hook-subnav-pill-item() when not (@subnav-pill-item-border-radius = 0) { border-radius: @subnav-pill-item-border-radius; } .hook-subnav-pill-item-hover() {} .hook-subnav-pill-item-onclick() {} .hook-subnav-pill-item-active() {} // Disabled // ======================================================================== .hook-subnav-item-disabled() {} // Miscellaneous // ======================================================================== .hook-subnav-misc() {} // Inverse // ======================================================================== .hook-inverse-subnav-item() {} .hook-inverse-subnav-item-hover() {} .hook-inverse-subnav-item-active() {} .hook-inverse-subnav-divider() {} .hook-inverse-subnav-pill-item() {} .hook-inverse-subnav-pill-item-hover() {} .hook-inverse-subnav-pill-item-onclick() {} .hook-inverse-subnav-pill-item-active() {} .hook-inverse-subnav-item-disabled() {} assets/uikit-themes/master/border-radius/modal.less000064400000002613151666572410016516 0ustar00// // Component: Modal // // ======================================================================== // Variables // ======================================================================== // // New // @modal-dialog-border-radius: 0; // Component // ======================================================================== .hook-modal() {} // Dialog // ======================================================================== .hook-modal-dialog() when not (@modal-dialog-border-radius = 0) { border-radius: @modal-dialog-border-radius; } // Full // ======================================================================== .hook-modal-full() {} // Sections // ======================================================================== .hook-modal-header() {} .hook-modal-body() {} .hook-modal-footer() {} // Title // ======================================================================== .hook-modal-title() {} // Close // ======================================================================== .hook-modal-close() {} .hook-modal-close-hover() {} .hook-modal-close-default() {} .hook-modal-close-default-hover() {} .hook-modal-close-outside() {} .hook-modal-close-outside-hover() {} .hook-modal-close-full() {} .hook-modal-close-full-hover() {} // Miscellaneous // ======================================================================== .hook-modal-misc() {} assets/uikit-themes/master/border-radius/alert.less000064400000001611151666572410016526 0ustar00// // Component: Alert // // ======================================================================== // Variables // ======================================================================== // // New // @alert-border-radius: 0; // Component // ======================================================================== .hook-alert() when not (@alert-border-radius = 0) { border-radius: @alert-border-radius; } // Close // ======================================================================== .hook-alert-close() {} .hook-alert-close-hover() {} // Style modifiers // ======================================================================== .hook-alert-primary() {} .hook-alert-success() {} .hook-alert-warning() {} .hook-alert-danger() {} // Miscellaneous // ======================================================================== .hook-alert-misc() {} assets/uikit-themes/master/border-radius/pagination.less000064400000002060151666572410017547 0ustar00// // Component: Pagination // // ======================================================================== // Variables // ======================================================================== // // New // @pagination-item-border-radius: 0; // Component // ======================================================================== .hook-pagination() {} // Items // ======================================================================== .hook-pagination-item() when not (@pagination-item-border-radius = 0) { border-radius: @pagination-item-border-radius; } .hook-pagination-item-hover() {} .hook-pagination-item-active() {} .hook-pagination-item-disabled() {} // Miscellaneous // ======================================================================== .hook-pagination-misc() {} // Inverse // ======================================================================== .hook-inverse-pagination-item() {} .hook-inverse-pagination-item-hover() {} .hook-inverse-pagination-item-active() {} .hook-inverse-pagination-item-disabled() {} assets/uikit-themes/master/border-radius/nav.less000064400000005716151666572410016215 0ustar00// // Component: Nav // // ======================================================================== // Variables // ======================================================================== // // New // @nav-default-item-border-radius: 0; @nav-secondary-item-border-radius: 0; // Sublists // ======================================================================== .hook-nav-sub() {} // Header // ======================================================================== .hook-nav-header() {} // Divider // ======================================================================== .hook-nav-divider() {} // Default style modifier // ======================================================================== .hook-nav-default() {} .hook-nav-default-item() when not (@nav-default-item-border-radius = 0) { border-radius: @nav-default-item-border-radius; } .hook-nav-default-item-hover() {} .hook-nav-default-item-active() {} .hook-nav-default-subtitle() {} .hook-nav-default-header() {} .hook-nav-default-divider() {} // Primary style modifier // ======================================================================== .hook-nav-primary() {} .hook-nav-primary-item() {} .hook-nav-primary-item-hover() {} .hook-nav-primary-item-active() {} .hook-nav-primary-subtitle() {} .hook-nav-primary-header() {} .hook-nav-primary-divider() {} // Secondary style modifier // ======================================================================== .hook-nav-secondary() {} .hook-nav-secondary-item() when not (@nav-secondary-item-border-radius = 0) { border-radius: @nav-secondary-item-border-radius; } .hook-nav-secondary-item-hover() {} .hook-nav-secondary-item-active() {} .hook-nav-secondary-subtitle() {} .hook-nav-secondary-subtitle-hover() {} .hook-nav-secondary-subtitle-active() {} .hook-nav-secondary-header() {} .hook-nav-secondary-divider() {} // Style modifier // ======================================================================== .hook-nav-dividers() {} // Miscellaneous // ======================================================================== .hook-nav-misc() {} // Inverse // ======================================================================== .hook-inverse-nav-default-item() {} .hook-inverse-nav-default-item-hover() {} .hook-inverse-nav-default-item-active() {} .hook-inverse-nav-default-header() {} .hook-inverse-nav-default-divider() {} .hook-inverse-nav-primary-item() {} .hook-inverse-nav-primary-item-hover() {} .hook-inverse-nav-primary-item-active() {} .hook-inverse-nav-primary-header() {} .hook-inverse-nav-primary-divider() {} .hook-inverse-nav-secondary-item() {} .hook-inverse-nav-secondary-item-hover() {} .hook-inverse-nav-secondary-item-active() {} .hook-inverse-nav-secondary-subtitle() {} .hook-inverse-nav-secondary-subtitle-hover() {} .hook-inverse-nav-secondary-subtitle-active() {} .hook-inverse-nav-secondary-header() {} .hook-inverse-nav-secondary-divider() {} .hook-inverse-nav-dividers() {} assets/uikit-themes/master/border-radius/form.less000064400000004306151666572410016366 0ustar00// // Component: Form // // ======================================================================== // Variables // ======================================================================== // // New // @form-border-radius: 0; @form-multi-line-border-radius: ~''; @form-radio-border-radius: 0; // Component // ======================================================================== .hook-form() when not (@form-border-radius = 0) { border-radius: @form-border-radius; } .hook-form-single-line() {} .hook-form-multi-line() when not (@form-multi-line-border-radius = ~'') { border-radius: @form-multi-line-border-radius; } .hook-form-focus() {} .hook-form-disabled() {} // Style modifiers // ======================================================================== .hook-form-danger() {} .hook-form-success() {} .hook-form-blank() {} .hook-form-blank-focus() {} // Radio and checkbox // ======================================================================== .hook-form-radio() when not (@form-radio-border-radius = 0) { border-radius: @form-radio-border-radius; } .hook-form-radio-focus() {} .hook-form-radio-checked() {} .hook-form-radio-checked-focus() {} .hook-form-radio-disabled() {} // Legend // ======================================================================== .hook-form-legend() {} // Label // ======================================================================== .hook-form-label() {} // Layout // ======================================================================== .hook-form-stacked-label() {} .hook-form-horizontal-label() {} // Icon // ======================================================================== .hook-form-icon() {} // Miscellaneous // ======================================================================== .hook-form-misc() {} // Inverse // ======================================================================== .hook-inverse-form() {} .hook-inverse-form-focus() {} .hook-inverse-form-radio() {} .hook-inverse-form-radio-focus() {} .hook-inverse-form-radio-checked() {} .hook-inverse-form-radio-checked-focus() {} .hook-inverse-form-label() {} .hook-inverse-form-icon() {} assets/uikit-themes/master/border-radius/marker.less000064400000001352151666572410016702 0ustar00// // Component: Marker // // ======================================================================== // Variables // ======================================================================== // // New // @marker-border-radius: 500px; // Component // ======================================================================== .hook-marker() when not (@marker-border-radius = 0) { border-radius: @marker-border-radius; } .hook-marker-hover() {} // Miscellaneous // ======================================================================== .hook-marker-misc() {} // Inverse // ======================================================================== .hook-inverse-marker() {} .hook-inverse-marker-hover() {} assets/uikit-themes/master/border-radius/search.less000064400000004756151666572410016701 0ustar00// // Component: Search // // ======================================================================== // Variables // ======================================================================== // // New // @search-default-border-radius: 0; @search-navbar-border-radius: 0; @search-medium-border-radius: 0; @search-large-border-radius: 0; // Component // ======================================================================== .hook-search-input() {} // Icon // ======================================================================== .hook-search-icon() {} // Default modifiers // ======================================================================== .hook-search-default-input() when not (@search-default-border-radius = 0) { border-radius: @search-default-border-radius; } .hook-search-default-input-focus() {} // Navbar modifiers // ======================================================================== .hook-search-navbar-input() when not (@search-navbar-border-radius = 0) { border-radius: @search-navbar-border-radius; } .hook-search-navbar-input-focus() {} // Medium modifiers // ======================================================================== .hook-search-medium-input() when not (@search-medium-border-radius = 0) { border-radius: @search-medium-border-radius; } .hook-search-medium-input-focus() {} // Large modifiers // ======================================================================== .hook-search-large-input() when not (@search-large-border-radius = 0) { border-radius: @search-large-border-radius; } .hook-search-large-input-focus() {} // Toggle // ======================================================================== .hook-search-toggle() {} .hook-search-toggle-hover() {} // Miscellaneous // ======================================================================== .hook-search-misc() {} // Inverse // ======================================================================== .hook-inverse-search-default-input() {} .hook-inverse-search-default-input-focus() {} .hook-inverse-search-navbar-input() {} .hook-inverse-search-navbar-input-focus() {} .hook-inverse-search-medium-input() {} .hook-inverse-search-medium-input-focus() {} .hook-inverse-search-medium-input() {} .hook-inverse-search-medium-input-focus() {} .hook-inverse-search-large-input() {} .hook-inverse-search-large-input-focus() {} .hook-inverse-search-toggle() {} .hook-inverse-search-toggle-hover() {} assets/uikit-themes/master/border-radius/form-range.less000064400000002064151666572410017457 0ustar00// // Component: Form Range // // ======================================================================== // Variables // ======================================================================== // // New // @form-range-track-border-radius: 500px; // Component // ======================================================================== .hook-form-range() {} // Track // ======================================================================== .hook-form-range-track() when not (@form-range-track-border-radius = 0) { border-radius: @form-range-track-border-radius; } .hook-form-range-track-focus() {} // Thumb // ======================================================================== .hook-form-range-thumb() {} // Miscellaneous // ======================================================================== .hook-form-range-misc() {} // Inverse // ======================================================================== .hook-inverse-form-range-track() {} .hook-inverse-form-range-track-focus() {} .hook-inverse-form-range-thumb() {} assets/uikit-themes/master/border-radius/button.less000064400000006756151666572410016751 0ustar00// // Component: Button // // ======================================================================== // Variables // ======================================================================== // // New // @button-border-radius: 0; @button-small-border-radius: 0; @button-large-border-radius: 0; // Component // ======================================================================== .hook-button() when not (@button-border-radius = 0) { border-radius: @button-border-radius; } .hook-button-hover() {} .hook-button-active() {} // Style modifiers // ======================================================================== .hook-button-default() {} .hook-button-default-hover() {} .hook-button-default-active() {} // // Primary // .hook-button-primary() {} .hook-button-primary-hover() {} .hook-button-primary-active() {} // // Secondary // .hook-button-secondary() {} .hook-button-secondary-hover() {} .hook-button-secondary-active() {} // // Danger // .hook-button-danger() {} .hook-button-danger-hover() {} .hook-button-danger-active() {} // Disabled // ======================================================================== .hook-button-disabled() {} // Size modifiers // ======================================================================== .hook-button-small() when not (@button-small-border-radius = 0) { border-radius: @button-small-border-radius; } .hook-button-large() when not (@button-large-border-radius = 0) { border-radius: @button-large-border-radius; } // Text modifier // ======================================================================== .hook-button-text() when not (@button-border-radius = 0), not (@button-small-border-radius = 0), not (@button-large-border-radius = 0) { border-radius: 0; } .hook-button-text-hover() {} .hook-button-text-disabled() {} // Link modifier // ======================================================================== .hook-button-link() when not (@button-border-radius = 0), not (@button-small-border-radius = 0), not (@button-large-border-radius = 0) { border-radius: 0; } // Miscellaneous // ======================================================================== .hook-button-misc() when not (@button-border-radius = 0) { /* Group ========================================================================== */ /* * Reset border-radius */ .uk-button-group > .uk-button:not(:first-child):not(:last-child), .uk-button-group > div:not(:first-child):not(:last-child) .uk-button { border-radius: 0; } .uk-button-group > .uk-button:first-child, .uk-button-group > div:first-child .uk-button { border-top-right-radius: 0; border-bottom-right-radius: 0; } .uk-button-group > .uk-button:last-child, .uk-button-group > div:last-child .uk-button { border-top-left-radius: 0; border-bottom-left-radius: 0; } } // Inverse // ======================================================================== .hook-inverse-button-default() {} .hook-inverse-button-default-hover() {} .hook-inverse-button-default-active() {} .hook-inverse-button-primary() {} .hook-inverse-button-primary-hover() {} .hook-inverse-button-primary-active() {} .hook-inverse-button-secondary() {} .hook-inverse-button-secondary-hover() {} .hook-inverse-button-secondary-active() {} .hook-inverse-button-text() {} .hook-inverse-button-text-hover() {} .hook-inverse-button-text-disabled() {} .hook-inverse-button-link() {} assets/uikit-themes/master/border-radius/label.less000064400000001525151666572410016502 0ustar00// // Component: Label // // ======================================================================== // Variables // ======================================================================== // // New // @label-border-radius: 0; // Component // ======================================================================== .hook-label() when not (@label-border-radius = 0) { border-radius: @label-border-radius; } // Color modifiers // ======================================================================== .hook-label-success() {} .hook-label-warning() {} .hook-label-danger() {} // Miscellaneous // ======================================================================== .hook-label-misc() {} // Inverse // ======================================================================== .hook-inverse-label() {} assets/uikit-themes/master/border-radius/_import.less000064400000003357151666572410017101 0ustar00// Base @import "variables.less"; @import "base.less"; // Elements // @import "link.less"; // @import "heading.less"; // @import "divider.less"; // @import "list.less"; // @import "description-list.less"; // @import "table.less"; // @import "icon.less"; @import "form-range.less"; @import "form.less"; @import "button.less"; @import "progress.less"; // Layout // @import "section.less"; // @import "container.less"; // @import "tile.less"; @import "card.less"; // Common // @import "close.less"; @import "totop.less"; @import "marker.less"; @import "alert.less"; @import "placeholder.less"; // @import "badge.less"; @import "label.less"; // @import "overlay.less"; // @import "article.less"; @import "comment.less"; @import "search.less"; // JavaScript // @import "accordion.less"; // @import "drop.less"; @import "dropdown.less"; // @import "dropbar.less"; @import "modal.less"; // @import "sticky.less"; // @import "offcanvas.less"; // @import "leader.less"; @import "notification.less"; // @import "tooltip.less"; // @import "spinner.less"; // @import "sortable.less"; // @import "countdown.less"; // @import "grid.less"; // Navs @import "nav.less"; @import "navbar.less"; @import "subnav.less"; // @import "breadcrumb.less"; @import "pagination.less"; // @import "tab.less"; @import "slidenav.less"; // @import "dotnav.less"; @import "thumbnav.less"; // @import "iconnav.less"; // Utilities // @import "animation.less"; // @import "width.less"; // @import "height.less"; // @import "text.less"; // @import "column.less"; // @import "background.less"; // @import "align.less"; // @import "svg.less"; // @import "utility.less"; // @import "margin.less"; // @import "padding.less"; // @import "position.less"; // @import "transition.less"; // @import "inverse.less"; assets/uikit-themes/master/border-radius/slidenav.less000064400000002274151666572410017232 0ustar00// // Component: Slidenav // // ======================================================================== // Variables // ======================================================================== // // New // @slidenav-border-radius: 0; // Component // ======================================================================== .hook-slidenav() when not (@slidenav-border-radius = 0) { border-radius: @slidenav-border-radius; } .hook-slidenav-hover() {} .hook-slidenav-active() {} // Icon modifier // ======================================================================== .hook-slidenav-previous() {} .hook-slidenav-next() {} // Size modifier // ======================================================================== .hook-slidenav-large() {} // Container // ======================================================================== .hook-slidenav-container() {} // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== .hook-inverse-slidenav() {} .hook-inverse-slidenav-hover() {} .hook-inverse-slidenav-active() {} assets/uikit-themes/master/border-radius/thumbnav.less000064400000002016151666572410017243 0ustar00// // Component: Thumbnav // // ======================================================================== // Variables // ======================================================================== // // New // @thumbnav-item-border-radius: 0; // Component // ======================================================================== .hook-thumbnav() {} .hook-thumbnav-item() when not (@thumbnav-item-border-radius = 0) { border-radius: @thumbnav-item-border-radius; overflow: hidden; } .hook-thumbnav-item() when not (@thumbnav-item-border-radius = 0) { &::before { border-radius: @thumbnav-item-border-radius; } } .hook-thumbnav-item-hover() {} .hook-thumbnav-item-active() {} // Miscellaneous // ======================================================================== .hook-thumbnav-misc() {} // Inverse // ======================================================================== .hook-inverse-thumbnav-item() {} .hook-inverse-thumbnav-item-hover() {} .hook-inverse-thumbnav-item-active() {} assets/uikit-themes/master/border-radius/comment.less000064400000002546151666572410017071 0ustar00// // Component: Comment // // ======================================================================== // Variables // ======================================================================== // // New // @comment-primary-border-radius: 0; // Component // ======================================================================== .hook-comment() {} // Sections // ======================================================================== .hook-comment-body() {} .hook-comment-header() {} // Title // ======================================================================== .hook-comment-title() {} // Meta // ======================================================================== .hook-comment-meta() {} // Avatar // ======================================================================== .hook-comment-avatar() {} // List // ======================================================================== .hook-comment-list-adjacent() {} .hook-comment-list-sub() {} .hook-comment-list-sub-adjacent() {} // Style modifier // ======================================================================== .hook-comment-primary() when not (@comment-primary-border-radius = 0) { border-radius: @comment-primary-border-radius; } // Miscellaneous // ======================================================================== .hook-comment-misc() {} assets/uikit-themes/master/border-radius/totop.less000064400000001426151666572410016570 0ustar00// // Component: Totop // // ======================================================================== // Variables // ======================================================================== // // New // @totop-border-radius: 0; // Component // ======================================================================== .hook-totop() when not (@totop-border-radius = 0) { border-radius: @totop-border-radius; } .hook-totop-hover() {} .hook-totop-active() {} // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== .hook-inverse-totop() {} .hook-inverse-totop-hover() {} .hook-inverse-totop-active() {} assets/uikit-themes/master/border-radius/navbar.less000064400000005270151666572410016675 0ustar00// // Component: Navbar // // ======================================================================== // Variables // ======================================================================== // // New // @navbar-dropdown-border-radius: 0; @navbar-dropdown-nav-item-border-radius: 0; // Component // ======================================================================== .hook-navbar() {} // Container // ======================================================================== .hook-navbar-container() {} // Nav // ======================================================================== .hook-navbar-nav-item() {} .hook-navbar-nav-item-hover() {} .hook-navbar-nav-item-onclick() {} .hook-navbar-nav-item-active() {} // Item // ======================================================================== .hook-navbar-item() {} // Toggle // ======================================================================== .hook-navbar-toggle() {} .hook-navbar-toggle-hover() {} .hook-navbar-toggle-icon() {} .hook-navbar-toggle-icon-hover() {} // Subtitle // ======================================================================== .hook-navbar-subtitle() {} // Style modifiers // ======================================================================== .hook-navbar-primary() {} .hook-navbar-transparent() {} .hook-navbar-sticky() {} // Dropdown // ======================================================================== .hook-navbar-dropdown() when not (@navbar-dropdown-border-radius = 0) { border-radius: @navbar-dropdown-border-radius; } .hook-navbar-dropdown-large() {} .hook-navbar-dropdown-dropbar() {} .hook-navbar-dropdown-dropbar-large() {} // Dropdown nav // ======================================================================== .hook-navbar-dropdown-nav() {} .hook-navbar-dropdown-nav-item() when not (@navbar-dropdown-nav-item-border-radius = 0) { border-radius: @navbar-dropdown-nav-item-border-radius; } .hook-navbar-dropdown-nav-item-hover() {} .hook-navbar-dropdown-nav-subtitle() {} .hook-navbar-dropdown-nav-header() {} .hook-navbar-dropdown-nav-divider() {} // Dropbar // ======================================================================== .hook-navbar-dropbar() {} // Miscellaneous // ======================================================================== .hook-navbar-misc() {} // Inverse // ======================================================================== .hook-inverse-navbar-nav-item() {} .hook-inverse-navbar-nav-item-hover() {} .hook-inverse-navbar-nav-item-onclick() {} .hook-inverse-navbar-nav-item-active() {} .hook-inverse-navbar-item() {} .hook-inverse-navbar-toggle() {} .hook-inverse-navbar-toggle-hover() {} assets/uikit-themes/master/border-radius/card.less000064400000005051151666572410016332 0ustar00// // Component: Card // // ======================================================================== // Variables // ======================================================================== // // New // @card-border-radius: 0; @card-badge-border-radius: 0; // Component // ======================================================================== .hook-card() when not (@card-border-radius = 0) { border-radius: @card-border-radius; } // Sections // ======================================================================== .hook-card-body() {} .hook-card-header() {} .hook-card-footer() {} // Media // ======================================================================== .hook-card-media() when not (@card-border-radius = 0) { overflow: hidden; } .hook-card-media-top() when not (@card-border-radius = 0) { border-radius: @card-border-radius @card-border-radius 0 0; } .hook-card-media-bottom() when not (@card-border-radius = 0) { border-radius: 0 0 @card-border-radius @card-border-radius; } .hook-card-media-left() when not (@card-border-radius = 0) { border-radius: @card-border-radius 0 0 @card-border-radius; } .hook-card-media-right() when not (@card-border-radius = 0) { border-radius: 0 @card-border-radius @card-border-radius 0; } // Title // ======================================================================== .hook-card-title() {} // Badge // ======================================================================== .hook-card-badge() when not (@card-badge-border-radius = 0) { border-radius: @card-badge-border-radius; } // Hover modifier // ======================================================================== .hook-card-hover() {} // Style modifiers // ======================================================================== .hook-card-default() {} .hook-card-default-title() {} .hook-card-default-hover() {} .hook-card-default-header() {} .hook-card-default-footer() {} // // Primary // .hook-card-primary() {} .hook-card-primary-title() {} .hook-card-primary-hover() {} // // Secondary // .hook-card-secondary() {} .hook-card-secondary-title() {} .hook-card-secondary-hover() {} // Miscellaneous // ======================================================================== .hook-card-misc() {} .hook-card-misc() when not (@nav-default-item-border-radius = 0) { .uk-card-body .uk-nav-default > li > a { border-radius: 0; } } // Inverse // ======================================================================== .hook-inverse-card-badge() {} assets/uikit-themes/master/border-radius/progress.less000064400000001150151666572410017261 0ustar00// // Component: Progress // // ======================================================================== // Variables // ======================================================================== @progress-border-radius: 500px; // Component // ======================================================================== .hook-progress() when not (@progress-border-radius = 0) { border-radius: @progress-border-radius; overflow: hidden; } .hook-progress-bar() {} // Miscellaneous // ======================================================================== .hook-progress-misc() {} assets/uikit-themes/master/border-radius/base.less000064400000004041151666572410016331 0ustar00// // Component: Base // // ======================================================================== // Variables // ======================================================================== // // New // @base-code-border-radius: 0; @base-pre-border-radius: 0; // Body // ======================================================================== .hook-base-body() {} // Links // ======================================================================== .hook-base-link() {} .hook-base-link-hover() {} // Text-level semantics // ======================================================================== .hook-base-code() when not (@base-code-border-radius = 0) { border-radius: @base-code-border-radius; } // Headings // ======================================================================== .hook-base-heading() {} .hook-base-h1() {} .hook-base-h2() {} .hook-base-h3() {} .hook-base-h4() {} .hook-base-h5() {} .hook-base-h6() {} // Horizontal rules // ======================================================================== .hook-base-hr() {} // Blockquotes // ======================================================================== .hook-base-blockquote() {} .hook-base-blockquote-footer() {} // Preformatted text // ======================================================================== .hook-base-pre() when not (@base-pre-border-radius = 0) { border-radius: @base-pre-border-radius; } // Miscellaneous // ======================================================================== .hook-base-misc() {} // Inverse // ======================================================================== .hook-inverse-base-link() {} .hook-inverse-base-link-hover() {} .hook-inverse-base-code() {} .hook-inverse-base-heading() {} .hook-inverse-base-h1() {} .hook-inverse-base-h2() {} .hook-inverse-base-h3() {} .hook-inverse-base-h4() {} .hook-inverse-base-h5() {} .hook-inverse-base-h6() {} .hook-inverse-base-blockquote() {} .hook-inverse-base-blockquote-footer() {} .hook-inverse-base-hr() {} assets/uikit-themes/master/border-radius/dropdown.less000064400000001770151666572410017261 0ustar00// // Component: Dropdown // // ======================================================================== // Variables // ======================================================================== // // New // @dropdown-border-radius: 0; // Component // ======================================================================== .hook-dropdown() when not (@dropdown-border-radius = 0) { border-radius: @dropdown-border-radius; } // Dropbar modifier // ======================================================================== .hook-dropdown-dropbar() {} .hook-dropdown-dropbar-large() {} // Nav // ======================================================================== .hook-dropdown-nav() {} .hook-dropdown-nav-item() {} .hook-dropdown-nav-item-hover() {} .hook-dropdown-nav-subtitle() {} .hook-dropdown-nav-header() {} .hook-dropdown-nav-divider() {} // Miscellaneous // ======================================================================== .hook-dropdown-misc() {} assets/uikit-themes/master/border-radius/placeholder.less000064400000001122151666572410017676 0ustar00// // Component: Placeholder // // ======================================================================== // Variables // ======================================================================== // // New // @placeholder-border-radius: 0; // Component // ======================================================================== .hook-placeholder() when not (@placeholder-border-radius = 0) { border-radius: @placeholder-border-radius; } // Miscellaneous // ======================================================================== .hook-placeholder-misc() {} assets/uikit-themes/master/border-radius/variables.less000064400000000634151666572410017373 0ustar00// // Component: Variables // // ======================================================================== // Global variables // ======================================================================== // // Typography // // // Colors // // // Backgrounds // // // Borders // @global-border-radius: 0; // // Box-Shadows // // // Spacings // // // Controls // // // Z-index // assets/uikit-themes/master/empty/inverse.less000064400000000462151666572410015471 0ustar00// // Component: Inverse // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-inverse() {} assets/uikit-themes/master/empty/countdown.less000064400000002156151666572410016040 0ustar00// // Component: Countdown // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-countdown() {} // Item // ======================================================================== .hook-countdown-item() {} // Number // ======================================================================== .hook-countdown-number() {} // Separator // ======================================================================== .hook-countdown-separator() {} // Label // ======================================================================== .hook-countdown-label() {} // Miscellaneous // ======================================================================== .hook-countdown-misc() {} // Inverse // ======================================================================== .hook-inverse-countdown-item() {} .hook-inverse-countdown-number() {} .hook-inverse-countdown-separator() {} .hook-inverse-countdown-label() {} assets/uikit-themes/master/empty/dotnav.less000064400000001441151666572410015307 0ustar00// // Component: Dotnav // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-dotnav() {} .hook-dotnav-item() {} .hook-dotnav-item-hover() {} .hook-dotnav-item-onclick() {} .hook-dotnav-item-active() {} // Miscellaneous // ======================================================================== .hook-dotnav-misc() {} // Inverse // ======================================================================== .hook-inverse-dotnav() {} .hook-inverse-dotnav-item() {} .hook-inverse-dotnav-item-hover() {} .hook-inverse-dotnav-item-onclick() {} .hook-inverse-dotnav-item-active() {} assets/uikit-themes/master/empty/navbar.less000064400000004554151666572410015275 0ustar00// // Component: Navbar // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-navbar() {} // Container // ======================================================================== .hook-navbar-container() {} // Nav // ======================================================================== .hook-navbar-nav-item() {} .hook-navbar-nav-item-hover() {} .hook-navbar-nav-item-onclick() {} .hook-navbar-nav-item-active() {} // Item // ======================================================================== .hook-navbar-item() {} // Toggle // ======================================================================== .hook-navbar-toggle() {} .hook-navbar-toggle-hover() {} .hook-navbar-toggle-icon() {} .hook-navbar-toggle-icon-hover() {} // Subtitle // ======================================================================== .hook-navbar-subtitle() {} // Style modifiers // ======================================================================== .hook-navbar-primary() {} .hook-navbar-transparent() {} .hook-navbar-sticky() {} // Dropdown // ======================================================================== .hook-navbar-dropdown() {} .hook-navbar-dropdown-large() {} .hook-navbar-dropdown-dropbar() {} .hook-navbar-dropdown-dropbar-large() {} // Dropdown nav // ======================================================================== .hook-navbar-dropdown-nav() {} .hook-navbar-dropdown-nav-item() {} .hook-navbar-dropdown-nav-item-hover() {} .hook-navbar-dropdown-nav-subtitle() {} .hook-navbar-dropdown-nav-header() {} .hook-navbar-dropdown-nav-divider() {} // Dropbar // ======================================================================== .hook-navbar-dropbar() {} // Miscellaneous // ======================================================================== .hook-navbar-misc() {} // Inverse // ======================================================================== .hook-inverse-navbar-nav-item() {} .hook-inverse-navbar-nav-item-hover() {} .hook-inverse-navbar-nav-item-onclick() {} .hook-inverse-navbar-nav-item-active() {} .hook-inverse-navbar-item() {} .hook-inverse-navbar-toggle() {} .hook-inverse-navbar-toggle-hover() {} assets/uikit-themes/master/empty/_import.less000064400000003237151666572410015472 0ustar00// Base @import "variables.less"; @import "base.less"; // Elements @import "link.less"; @import "heading.less"; @import "divider.less"; @import "list.less"; @import "description-list.less"; @import "table.less"; @import "icon.less"; @import "form-range.less"; @import "form.less"; @import "button.less"; @import "progress.less"; // Layout @import "section.less"; @import "container.less"; @import "tile.less"; @import "card.less"; // Common @import "close.less"; @import "spinner.less"; @import "marker.less"; @import "totop.less"; @import "alert.less"; @import "placeholder.less"; @import "badge.less"; @import "label.less"; @import "overlay.less"; @import "article.less"; @import "comment.less"; @import "search.less"; // JavaScript @import "accordion.less"; @import "drop.less"; @import "dropdown.less"; @import "dropbar.less"; @import "modal.less"; @import "slider.less"; @import "sticky.less"; @import "offcanvas.less"; @import "leader.less"; @import "notification.less"; @import "tooltip.less"; @import "sortable.less"; @import "countdown.less"; @import "grid.less"; // Navs @import "nav.less"; @import "navbar.less"; @import "subnav.less"; @import "breadcrumb.less"; @import "pagination.less"; @import "tab.less"; @import "slidenav.less"; @import "dotnav.less"; @import "thumbnav.less"; @import "iconnav.less"; @import "lightbox.less"; // Utilities @import "animation.less"; @import "width.less"; @import "height.less"; @import "text.less"; @import "column.less"; @import "background.less"; @import "align.less"; @import "svg.less"; @import "utility.less"; @import "margin.less"; @import "padding.less"; @import "position.less"; @import "transition.less"; @import "inverse.less"; assets/uikit-themes/master/empty/transition.less000064400000000501151666572410016202 0ustar00// // Component: Transition // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-transition-misc() {} assets/uikit-themes/master/empty/variables.less000064400000000550151666572410015764 0ustar00// // Component: Variables // // ======================================================================== // Global variables // ======================================================================== // // Typography // // // Colors // // // Backgrounds // // // Borders // // // Box-Shadows // // // Spacings // // // Controls // // // Z-index // assets/uikit-themes/master/empty/sticky.less000064400000000471151666572410015324 0ustar00// // Component: Sticky // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-sticky-misc() {} assets/uikit-themes/master/empty/slider.less000064400000000471151666572410015300 0ustar00// // Component: Slider // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-slider-misc() {} assets/uikit-themes/master/empty/list.less000064400000001142151666572410014765 0ustar00// // Component: List // // ======================================================================== // Variables // ======================================================================== // Style modifiers // ======================================================================== .hook-list-divider() {} .hook-list-striped() {} // Miscellaneous // ======================================================================== .hook-list-misc() {} // Inverse // ======================================================================== .hook-inverse-list-divider() {} .hook-inverse-list-striped() {} assets/uikit-themes/master/empty/breadcrumb.less000064400000001722151666572410016124 0ustar00// // Component: Breadcrumb // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-breadcrumb() {} // Items // ======================================================================== .hook-breadcrumb-item() {} .hook-breadcrumb-item-hover() {} .hook-breadcrumb-item-disabled() {} .hook-breadcrumb-item-active() {} .hook-breadcrumb-divider() {} // Miscellaneous // ======================================================================== .hook-breadcrumb-misc() {} // Inverse // ======================================================================== .hook-inverse-breadcrumb-item() {} .hook-inverse-breadcrumb-item-hover() {} .hook-inverse-breadcrumb-item-disabled() {} .hook-inverse-breadcrumb-item-active() {} .hook-inverse-breadcrumb-divider() {} assets/uikit-themes/master/empty/heading.less000064400000002443151666572410015416 0ustar00// // Component: Heading // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-heading-small() {} .hook-heading-medium() {} .hook-heading-large() {} .hook-heading-xlarge() {} .hook-heading-2xlarge() {} .hook-heading-3xlarge() {} // Divider // ======================================================================== .hook-heading-divider() {} // Bullet // ======================================================================== .hook-heading-bullet() {} // Line // ======================================================================== .hook-heading-line() {} // Miscellaneous // ======================================================================== .hook-heading-misc() {} // Inverse // ======================================================================== .hook-inverse-heading-small() {} .hook-inverse-heading-medium() {} .hook-inverse-heading-large() {} .hook-inverse-heading-xlarge() {} .hook-inverse-heading-2xlarge() {} .hook-inverse-heading-3xlarge() {} .hook-inverse-heading-divider() {} .hook-inverse-heading-bullet() {} .hook-inverse-heading-line() {} assets/uikit-themes/master/empty/section.less000064400000001371151666572410015462 0ustar00// // Component: Section // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-section() {} // Style modifiers // ======================================================================== .hook-section-default() {} .hook-section-muted() {} .hook-section-primary() {} .hook-section-secondary() {} // Overlap modifier // ======================================================================== .hook-section-overlap() {} // Miscellaneous // ======================================================================== .hook-section-misc() {} assets/uikit-themes/master/empty/text.less000064400000001545151666572410015005 0ustar00// // Component: Base // // ======================================================================== // Variables // ======================================================================== // Style modifiers // ======================================================================== .hook-text-lead() {} .hook-text-meta() {} // Size modifiers // ======================================================================== .hook-text-small() {} .hook-text-large() {} // Background modifier // ======================================================================== .hook-text-background() {} // Miscellaneous // ======================================================================== .hook-text-misc() {} // Inverse // ======================================================================== .hook-inverse-text-lead() {} .hook-inverse-text-meta() {} assets/uikit-themes/master/empty/notification.less000064400000001655151666572410016511 0ustar00// // Component: Notification // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-notification() {} // Message // ======================================================================== .hook-notification-message() {} // Close // ======================================================================== .hook-notification-close() {} // Style modifiers // ======================================================================== .hook-notification-message-primary() {} .hook-notification-message-success() {} .hook-notification-message-warning() {} .hook-notification-message-danger() {} // Miscellaneous // ======================================================================== .hook-notification-misc() {} assets/uikit-themes/master/empty/totop.less000064400000001206151666572410015160 0ustar00// // Component: Totop // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-totop() {} .hook-totop-hover() {} .hook-totop-active() {} // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== .hook-inverse-totop() {} .hook-inverse-totop-hover() {} .hook-inverse-totop-active() {} assets/uikit-themes/master/empty/svg.less000064400000000463151666572410014616 0ustar00// // Component: SVG // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-svg-misc() {} assets/uikit-themes/master/empty/drop.less000064400000000465151666572410014765 0ustar00// // Component: Drop // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-drop-misc() {} assets/uikit-themes/master/empty/card.less000064400000003276151666572410014735 0ustar00// // Component: Card // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-card() {} // Sections // ======================================================================== .hook-card-body() {} .hook-card-header() {} .hook-card-footer() {} // Media // ======================================================================== .hook-card-media() {} .hook-card-media-top() {} .hook-card-media-bottom() {} .hook-card-media-left() {} .hook-card-media-right() {} // Title // ======================================================================== .hook-card-title() {} // Badge // ======================================================================== .hook-card-badge() {} // Hover modifier // ======================================================================== .hook-card-hover() {} // Style modifiers // ======================================================================== .hook-card-default() {} .hook-card-default-title() {} .hook-card-default-hover() {} .hook-card-default-header() {} .hook-card-default-footer() {} // // Primary // .hook-card-primary() {} .hook-card-primary-title() {} .hook-card-primary-hover() {} // // Secondary // .hook-card-secondary() {} .hook-card-secondary-title() {} .hook-card-secondary-hover() {} // Miscellaneous // ======================================================================== .hook-card-misc() {} // Inverse // ======================================================================== .hook-inverse-card-badge() {} assets/uikit-themes/master/empty/link.less000064400000002056151666572410014754 0ustar00// // Component: Link // // ======================================================================== // Variables // ======================================================================== // Muted // ======================================================================== .hook-link-muted() {} .hook-link-muted-hover() {} // Text // ======================================================================== .hook-link-text() {} .hook-link-text-hover() {} // Heading // ======================================================================== .hook-link-heading() {} .hook-link-heading-hover() {} // Reset // ======================================================================== .hook-link-reset() {} // Miscellaneous // ======================================================================== .hook-link-misc() {} // Inverse // ======================================================================== .hook-inverse-link-muted() {} .hook-inverse-link-muted-hover() {} .hook-inverse-link-text-hover() {} .hook-inverse-link-heading-hover() {} assets/uikit-themes/master/empty/margin.less000064400000000471151666572410015273 0ustar00// // Component: Margin // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-margin-misc() {} assets/uikit-themes/master/empty/position.less000064400000000475151666572410015666 0ustar00// // Component: Position // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-position-misc() {} assets/uikit-themes/master/empty/progress.less000064400000000706151666572410015663 0ustar00// // Component: Progress // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-progress() {} .hook-progress-bar() {} // Miscellaneous // ======================================================================== .hook-progress-misc() {} assets/uikit-themes/master/empty/dropdown.less000064400000001542151666572410015652 0ustar00// // Component: Dropdown // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-dropdown() {} // Dropbar modifier // ======================================================================== .hook-dropdown-dropbar() {} .hook-dropdown-dropbar-large() {} // Nav // ======================================================================== .hook-dropdown-nav() {} .hook-dropdown-nav-item() {} .hook-dropdown-nav-item-hover() {} .hook-dropdown-nav-subtitle() {} .hook-dropdown-nav-header() {} .hook-dropdown-nav-divider() {} // Miscellaneous // ======================================================================== .hook-dropdown-misc() {} assets/uikit-themes/master/empty/article.less000064400000001603151666572410015437 0ustar00// // Component: Article // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-article() {} // Adjacent sibling // ======================================================================== .hook-article-adjacent() {} // Title // ======================================================================== .hook-article-title() {} // Meta // ======================================================================== .hook-article-meta() {} // Miscellaneous // ======================================================================== .hook-article-misc() {} // Inverse // ======================================================================== .hook-inverse-article-meta() {} assets/uikit-themes/master/empty/tooltip.less000064400000000652151666572410015511 0ustar00// // Component: Tooltip // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-tooltip() {} // Miscellaneous // ======================================================================== .hook-tooltip-misc() {} assets/uikit-themes/master/empty/grid.less000064400000001201151666572410014733 0ustar00// // Component: Grid // // ======================================================================== // Variables // ======================================================================== // Divider // ======================================================================== .hook-grid-divider-horizontal() {} .hook-grid-divider-vertical() {} // Miscellaneous // ======================================================================== .hook-grid-misc() {} // Inverse // ======================================================================== .hook-inverse-grid-divider-horizontal() {} .hook-inverse-grid-divider-vertical() {} assets/uikit-themes/master/empty/table.less000064400000002170151666572410015103 0ustar00// // Component: Table // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-table-header-cell() {} .hook-table-cell() {} .hook-table-footer() {} .hook-table-caption() {} .hook-table-row-active() {} // Style modifiers // ======================================================================== .hook-table-divider() {} .hook-table-striped() {} .hook-table-hover() {} // Size modifier // ======================================================================== .hook-table-small() {} .hook-table-large() {} // Miscellaneous // ======================================================================== .hook-table-misc() {} // Inverse // ======================================================================== .hook-inverse-table-header-cell() {} .hook-inverse-table-caption() {} .hook-inverse-table-row-active() {} .hook-inverse-table-divider() {} .hook-inverse-table-striped() {} .hook-inverse-table-hover() {} assets/uikit-themes/master/empty/utility.less000064400000001710151666572410015516 0ustar00// // Component: Utility // // ======================================================================== // Variables // ======================================================================== // Panel // ======================================================================== .hook-panel-scrollable() {} // Box-shadow bottom // ======================================================================== .hook-box-shadow-bottom() {} // Drop cap // ======================================================================== .hook-dropcap() {} // Logo // ======================================================================== .hook-logo() {} .hook-logo-hover() {} // Miscellaneous // ======================================================================== .hook-utility-misc() {} // Inverse // ======================================================================== .hook-inverse-dropcap() {} .hook-inverse-logo() {} .hook-inverse-logo-hover() {} assets/uikit-themes/master/empty/base.less000064400000003401151666572410014724 0ustar00// // Component: Base // // ======================================================================== // Variables // ======================================================================== // Body // ======================================================================== .hook-base-body() {} // Links // ======================================================================== .hook-base-link() {} .hook-base-link-hover() {} // Text-level semantics // ======================================================================== .hook-base-code() {} // Headings // ======================================================================== .hook-base-heading() {} .hook-base-h1() {} .hook-base-h2() {} .hook-base-h3() {} .hook-base-h4() {} .hook-base-h5() {} .hook-base-h6() {} // Horizontal rules // ======================================================================== .hook-base-hr() {} // Blockquotes // ======================================================================== .hook-base-blockquote() {} .hook-base-blockquote-footer() {} // Preformatted text // ======================================================================== .hook-base-pre() {} // Miscellaneous // ======================================================================== .hook-base-misc() {} // Inverse // ======================================================================== .hook-inverse-base-link() {} .hook-inverse-base-link-hover() {} .hook-inverse-base-code() {} .hook-inverse-base-heading() {} .hook-inverse-base-h1() {} .hook-inverse-base-h2() {} .hook-inverse-base-h3() {} .hook-inverse-base-h4() {} .hook-inverse-base-h5() {} .hook-inverse-base-h6() {} .hook-inverse-base-blockquote() {} .hook-inverse-base-blockquote-footer() {} .hook-inverse-base-hr() {} assets/uikit-themes/master/empty/form.less000064400000003423151666572410014761 0ustar00// // Component: Form // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-form() {} .hook-form-single-line() {} .hook-form-multi-line() {} .hook-form-focus() {} .hook-form-disabled() {} // Style modifiers // ======================================================================== .hook-form-danger() {} .hook-form-success() {} .hook-form-blank() {} .hook-form-blank-focus() {} // Radio and checkbox // ======================================================================== .hook-form-radio() {} .hook-form-radio-focus() {} .hook-form-radio-checked() {} .hook-form-radio-checked-focus() {} .hook-form-radio-disabled() {} // Legend // ======================================================================== .hook-form-legend() {} // Label // ======================================================================== .hook-form-label() {} // Layout // ======================================================================== .hook-form-stacked-label() {} .hook-form-horizontal-label() {} // Icon // ======================================================================== .hook-form-icon() {} // Miscellaneous // ======================================================================== .hook-form-misc() {} // Inverse // ======================================================================== .hook-inverse-form() {} .hook-inverse-form-focus() {} .hook-inverse-form-radio() {} .hook-inverse-form-radio-focus() {} .hook-inverse-form-radio-checked() {} .hook-inverse-form-radio-checked-focus() {} .hook-inverse-form-label() {} .hook-inverse-form-icon() {} assets/uikit-themes/master/empty/sortable.less000064400000001415151666572410015630 0ustar00// // Component: Sortable // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-sortable() {} // Drag // ======================================================================== .hook-sortable-drag() {} // Placeholder // ======================================================================== .hook-sortable-placeholder() {} // Empty // ======================================================================== .hook-sortable-empty() {} // Miscellaneous // ======================================================================== .hook-sortable-misc() {} assets/uikit-themes/master/empty/leader.less000064400000001033151666572410015245 0ustar00// // Component: Leader // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-leader() {} // Miscellaneous // ======================================================================== .hook-leader-misc() {} // Inverse // ======================================================================== .hook-inverse-leader() {} assets/uikit-themes/master/empty/divider.less000064400000001735151666572410015450 0ustar00// // Component: Divider // // ======================================================================== // Variables // ======================================================================== // Icon // ======================================================================== .hook-divider-icon() {} .hook-divider-icon-line() {} .hook-divider-icon-line-left() {} .hook-divider-icon-line-right() {} // Small // ======================================================================== .hook-divider-small() {} // Vertical // ======================================================================== .hook-divider-vertical() {} // Miscellaneous // ======================================================================== .hook-divider-misc() {} // Inverse // ======================================================================== .hook-inverse-divider-icon() {} .hook-inverse-divider-icon-line() {} .hook-inverse-divider-small() {} .hook-inverse-divider-vertical() {} assets/uikit-themes/master/empty/column.less000064400000000471151666572410015313 0ustar00// // Component: Column // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-column-misc() {} assets/uikit-themes/master/empty/close.less000064400000001116151666572410015120 0ustar00// // Component: Close // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-close() {} .hook-close-hover() {} // Miscellaneous // ======================================================================== .hook-close-misc() {} // Inverse // ======================================================================== .hook-inverse-close() {} .hook-inverse-close-hover() {} assets/uikit-themes/master/empty/lightbox.less000064400000001223151666572410015632 0ustar00// // Component: Lightbox // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-lightbox() {} // Item // ======================================================================== .hook-lightbox-item() {} // Caption // ======================================================================== .hook-lightbox-caption() {} // Miscellaneous // ======================================================================== .hook-lightbox-misc() {} assets/uikit-themes/master/empty/alert.less000064400000001371151666572410015125 0ustar00// // Component: Alert // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-alert() {} // Close // ======================================================================== .hook-alert-close() {} .hook-alert-close-hover() {} // Style modifiers // ======================================================================== .hook-alert-primary() {} .hook-alert-success() {} .hook-alert-warning() {} .hook-alert-danger() {} // Miscellaneous // ======================================================================== .hook-alert-misc() {} assets/uikit-themes/master/empty/modal.less000064400000002355151666572410015115 0ustar00// // Component: Modal // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-modal() {} // Dialog // ======================================================================== .hook-modal-dialog() {} // Full // ======================================================================== .hook-modal-full() {} // Sections // ======================================================================== .hook-modal-header() {} .hook-modal-body() {} .hook-modal-footer() {} // Title // ======================================================================== .hook-modal-title() {} // Close // ======================================================================== .hook-modal-close() {} .hook-modal-close-hover() {} .hook-modal-close-default() {} .hook-modal-close-default-hover() {} .hook-modal-close-outside() {} .hook-modal-close-outside-hover() {} .hook-modal-close-full() {} .hook-modal-close-full-hover() {} // Miscellaneous // ======================================================================== .hook-modal-misc() {} assets/uikit-themes/master/empty/background.less000064400000000501151666572410016127 0ustar00// // Component: Background // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-background-misc() {} assets/uikit-themes/master/empty/nav.less000064400000005215151666572410014603 0ustar00// // Component: Nav // // ======================================================================== // Variables // ======================================================================== // Sublists // ======================================================================== .hook-nav-sub() {} // Header // ======================================================================== .hook-nav-header() {} // Divider // ======================================================================== .hook-nav-divider() {} // Default style modifier // ======================================================================== .hook-nav-default() {} .hook-nav-default-item() {} .hook-nav-default-item-hover() {} .hook-nav-default-item-active() {} .hook-nav-default-subtitle() {} .hook-nav-default-header() {} .hook-nav-default-divider() {} // Primary style modifier // ======================================================================== .hook-nav-primary() {} .hook-nav-primary-item() {} .hook-nav-primary-item-hover() {} .hook-nav-primary-item-active() {} .hook-nav-primary-subtitle() {} .hook-nav-primary-header() {} .hook-nav-primary-divider() {} // Secondary style modifier // ======================================================================== .hook-nav-secondary() {} .hook-nav-secondary-item() {} .hook-nav-secondary-item-hover() {} .hook-nav-secondary-item-active() {} .hook-nav-secondary-subtitle() {} .hook-nav-secondary-subtitle-hover() {} .hook-nav-secondary-subtitle-active() {} .hook-nav-secondary-header() {} .hook-nav-secondary-divider() {} // Style modifier // ======================================================================== .hook-nav-dividers() {} // Miscellaneous // ======================================================================== .hook-nav-misc() {} // Inverse // ======================================================================== .hook-inverse-nav-default-item() {} .hook-inverse-nav-default-item-hover() {} .hook-inverse-nav-default-item-active() {} .hook-inverse-nav-default-header() {} .hook-inverse-nav-default-divider() {} .hook-inverse-nav-primary-item() {} .hook-inverse-nav-primary-item-hover() {} .hook-inverse-nav-primary-item-active() {} .hook-inverse-nav-primary-header() {} .hook-inverse-nav-primary-divider() {} .hook-inverse-nav-secondary-item() {} .hook-inverse-nav-secondary-item-hover() {} .hook-inverse-nav-secondary-item-active() {} .hook-inverse-nav-secondary-subtitle() {} .hook-inverse-nav-secondary-subtitle-hover() {} .hook-inverse-nav-secondary-subtitle-active() {} .hook-inverse-nav-secondary-header() {} .hook-inverse-nav-secondary-divider() {} .hook-inverse-nav-dividers() {} assets/uikit-themes/master/empty/form-range.less000064400000001612151666572410016051 0ustar00// // Component: Form Range // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-form-range() {} // Track // ======================================================================== .hook-form-range-track() {} .hook-form-range-track-focus() {} // Thumb // ======================================================================== .hook-form-range-thumb() {} // Miscellaneous // ======================================================================== .hook-form-range-misc() {} // Inverse // ======================================================================== .hook-inverse-form-range-thumb() {} .hook-inverse-form-range-track() {} .hook-inverse-form-range-track-focus() {} assets/uikit-themes/master/empty/offcanvas.less000064400000001231151666572410015757 0ustar00// // Component: Off-canvas // // ======================================================================== // Variables // ======================================================================== // Bar // ======================================================================== .hook-offcanvas-bar() {} // Close // ======================================================================== .hook-offcanvas-close() {} // Overlay // ======================================================================== .hook-offcanvas-overlay() {} // Miscellaneous // ======================================================================== .hook-offcanvas-misc() {} assets/uikit-themes/master/empty/thumbnav.less000064400000001322151666572410015636 0ustar00// // Component: Thumbnav // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-thumbnav() {} .hook-thumbnav-item() {} .hook-thumbnav-item-hover() {} .hook-thumbnav-item-active() {} // Miscellaneous // ======================================================================== .hook-thumbnav-misc() {} // Inverse // ======================================================================== .hook-inverse-thumbnav-item() {} .hook-inverse-thumbnav-item-hover() {} .hook-inverse-thumbnav-item-active() {} assets/uikit-themes/master/empty/height.less000064400000000471151666572410015266 0ustar00// // Component: Height // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-height-misc() {} assets/uikit-themes/master/empty/width.less000064400000000467151666572410015142 0ustar00// // Component: Width // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-width-misc() {} assets/uikit-themes/master/empty/iconnav.less000064400000001311151666572410015445 0ustar00// // Component: Iconnav // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-iconnav() {} .hook-iconnav-item() {} .hook-iconnav-item-hover() {} .hook-iconnav-item-active() {} // Miscellaneous // ======================================================================== .hook-iconnav-misc() {} // Inverse // ======================================================================== .hook-inverse-iconnav-item() {} .hook-inverse-iconnav-item-hover() {} .hook-inverse-iconnav-item-active() {} assets/uikit-themes/master/empty/pagination.less000064400000001614151666572410016147 0ustar00// // Component: Pagination // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-pagination() {} // Items // ======================================================================== .hook-pagination-item() {} .hook-pagination-item-hover() {} .hook-pagination-item-active() {} .hook-pagination-item-disabled() {} // Miscellaneous // ======================================================================== .hook-pagination-misc() {} // Inverse // ======================================================================== .hook-inverse-pagination-item() {} .hook-inverse-pagination-item-hover() {} .hook-inverse-pagination-item-active() {} .hook-inverse-pagination-item-disabled() {} assets/uikit-themes/master/empty/animation.less000064400000000477151666572410016003 0ustar00// // Component: Animation // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-animation-misc() {} assets/uikit-themes/master/empty/subnav.less000064400000002622151666572410015314 0ustar00// // Component: Subnav // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-subnav() {} .hook-subnav-item() {} .hook-subnav-item-hover() {} .hook-subnav-item-active() {} // Divider modifier // ======================================================================== .hook-subnav-divider() {} // Pill modifier // ======================================================================== .hook-subnav-pill-item() {} .hook-subnav-pill-item-hover() {} .hook-subnav-pill-item-onclick() {} .hook-subnav-pill-item-active() {} // Disabled // ======================================================================== .hook-subnav-item-disabled() {} // Miscellaneous // ======================================================================== .hook-subnav-misc() {} // Inverse // ======================================================================== .hook-inverse-subnav-item() {} .hook-inverse-subnav-item-hover() {} .hook-inverse-subnav-item-active() {} .hook-inverse-subnav-divider() {} .hook-inverse-subnav-pill-item() {} .hook-inverse-subnav-pill-item-hover() {} .hook-inverse-subnav-pill-item-onclick() {} .hook-inverse-subnav-pill-item-active() {} .hook-inverse-subnav-item-disabled() {} assets/uikit-themes/master/empty/slidenav.less000064400000002046151666572410015623 0ustar00// // Component: Slidenav // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-slidenav() {} .hook-slidenav-hover() {} .hook-slidenav-active() {} // Icon modifier // ======================================================================== .hook-slidenav-previous() {} .hook-slidenav-next() {} // Size modifier // ======================================================================== .hook-slidenav-large() {} // Container // ======================================================================== .hook-slidenav-container() {} // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== .hook-inverse-slidenav() {} .hook-inverse-slidenav-hover() {} .hook-inverse-slidenav-active() {} assets/uikit-themes/master/empty/align.less000064400000000467151666572410015115 0ustar00// // Component: Align // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-align-misc() {} assets/uikit-themes/master/empty/spinner.less000064400000000473151666572410015476 0ustar00// // Component: Spinner // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-spinner-misc() {} assets/uikit-themes/master/empty/description-list.less000064400000001175151666572410017314 0ustar00// // Component: Description list // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-description-list-term() {} .hook-description-list-description() {} // Style modifier // ======================================================================== .hook-description-list-divider-term() {} // Miscellaneous // ======================================================================== .hook-description-list-misc() {} assets/uikit-themes/master/empty/button.less000064400000004152151666572410015331 0ustar00// // Component: Button // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-button() {} .hook-button-hover() {} .hook-button-active() {} // Style modifiers // ======================================================================== .hook-button-default() {} .hook-button-default-hover() {} .hook-button-default-active() {} // // Primary // .hook-button-primary() {} .hook-button-primary-hover() {} .hook-button-primary-active() {} // // Secondary // .hook-button-secondary() {} .hook-button-secondary-hover() {} .hook-button-secondary-active() {} // // Danger // .hook-button-danger() {} .hook-button-danger-hover() {} .hook-button-danger-active() {} // Disabled // ======================================================================== .hook-button-disabled() {} // Size modifiers // ======================================================================== .hook-button-small() {} .hook-button-large() {} // Text modifier // ======================================================================== .hook-button-text() {} .hook-button-text-hover() {} .hook-button-text-disabled() {} // Link modifier // ======================================================================== .hook-button-link() {} // Miscellaneous // ======================================================================== .hook-button-misc() {} // Inverse // ======================================================================== .hook-inverse-button-default() {} .hook-inverse-button-default-hover() {} .hook-inverse-button-default-active() {} .hook-inverse-button-primary() {} .hook-inverse-button-primary-hover() {} .hook-inverse-button-primary-active() {} .hook-inverse-button-secondary() {} .hook-inverse-button-secondary-hover() {} .hook-inverse-button-secondary-active() {} .hook-inverse-button-text() {} .hook-inverse-button-text-hover() {} .hook-inverse-button-text-disabled() {} .hook-inverse-button-link() {} assets/uikit-themes/master/empty/tile.less000064400000001430151666572410014747 0ustar00// // Component: Tile // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-tile() {} // Style modifiers // ======================================================================== .hook-tile-default() {} .hook-tile-default-hover() {} // // Muted // .hook-tile-muted() {} .hook-tile-muted-hover() {} // // Primary // .hook-tile-primary() {} .hook-tile-primary-hover() {} // // Secondary // .hook-tile-secondary() {} .hook-tile-secondary-hover() {} // Miscellaneous // ======================================================================== .hook-tile-misc() {} assets/uikit-themes/master/empty/accordion.less000064400000001766151666572410015767 0ustar00// // Component: Accordion // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-accordion() {} // Item // ======================================================================== .hook-accordion-item() {} // Title // ======================================================================== .hook-accordion-title() {} .hook-accordion-title-hover() {} // Content // ======================================================================== .hook-accordion-content() {} // Miscellaneous // ======================================================================== .hook-accordion-misc() {} // Inverse // ======================================================================== .hook-inverse-accordion-item() {} .hook-inverse-accordion-title() {} .hook-inverse-accordion-title-hover() {} assets/uikit-themes/master/empty/marker.less000064400000001124151666572410015273 0ustar00// // Component: Marker // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-marker() {} .hook-marker-hover() {} // Miscellaneous // ======================================================================== .hook-marker-misc() {} // Inverse // ======================================================================== .hook-inverse-marker() {} .hook-inverse-marker-hover() {} assets/uikit-themes/master/empty/badge.less000064400000001116151666572410015055 0ustar00// // Component: Badge // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-badge() {} .hook-badge-hover() {} // Miscellaneous // ======================================================================== .hook-badge-misc() {} // Inverse // ======================================================================== .hook-inverse-badge() {} .hook-inverse-badge-hover() {} assets/uikit-themes/master/empty/search.less000064400000003503151666572410015262 0ustar00// // Component: Search // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-search-input() {} // Icon // ======================================================================== .hook-search-icon() {} // Default modifiers // ======================================================================== .hook-search-default-input() {} .hook-search-default-input-focus() {} // Navbar modifiers // ======================================================================== .hook-search-navbar-input() {} .hook-search-navbar-input-focus() {} // Medium modifiers // ======================================================================== .hook-search-medium-input() {} .hook-search-medium-input-focus() {} // Large modifiers // ======================================================================== .hook-search-large-input() {} .hook-search-large-input-focus() {} // Toggle // ======================================================================== .hook-search-toggle() {} .hook-search-toggle-hover() {} // Miscellaneous // ======================================================================== .hook-search-misc() {} // Inverse // ======================================================================== .hook-inverse-search-default-input() {} .hook-inverse-search-default-input-focus() {} .hook-inverse-search-navbar-input() {} .hook-inverse-search-navbar-input-focus() {} .hook-inverse-search-medium-input() {} .hook-inverse-search-medium-input-focus() {} .hook-inverse-search-large-input() {} .hook-inverse-search-large-input-focus() {} .hook-inverse-search-toggle() {} .hook-inverse-search-toggle-hover() {} assets/uikit-themes/master/empty/placeholder.less000064400000000666151666572410016306 0ustar00// // Component: Placeholder // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-placeholder() {} // Miscellaneous // ======================================================================== .hook-placeholder-misc() {} assets/uikit-themes/master/empty/label.less000064400000001305151666572410015072 0ustar00// // Component: Label // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-label() {} // Color modifiers // ======================================================================== .hook-label-success() {} .hook-label-warning() {} .hook-label-danger() {} // Miscellaneous // ======================================================================== .hook-label-misc() {} // Inverse // ======================================================================== .hook-inverse-label() {} assets/uikit-themes/master/empty/overlay.less000064400000001261151666572410015475 0ustar00// // Component: Overlay // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-overlay() {} // Icon // ======================================================================== .hook-overlay-icon() {} // Style modifiers // ======================================================================== .hook-overlay-default() {} .hook-overlay-primary() {} // Miscellaneous // ======================================================================== .hook-overlay-misc() {} assets/uikit-themes/master/empty/dropbar.less000064400000001164151666572410015447 0ustar00// // Component: Dropbar // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-dropbar() {} // Direction modifier // ======================================================================== .hook-dropbar-top() {} .hook-dropbar-bottom() {} .hook-dropbar-left() {} .hook-dropbar-right() {} // Miscellaneous // ======================================================================== .hook-dropbar-misc() {} assets/uikit-themes/master/empty/icon.less000064400000001603151666572410014744 0ustar00// // Component: Icon // // ======================================================================== // Variables // ======================================================================== // Style modifiers // ======================================================================== // // Link // .hook-icon-link() {} .hook-icon-link-hover() {} .hook-icon-link-active() {} // // Button // .hook-icon-button() {} .hook-icon-button-hover() {} .hook-icon-button-active() {} // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== .hook-inverse-icon-link() {} .hook-inverse-icon-link-hover() {} .hook-inverse-icon-link-active() {} .hook-inverse-icon-button() {} .hook-inverse-icon-button-hover() {} .hook-inverse-icon-button-active() {} assets/uikit-themes/master/empty/comment.less000064400000002302151666572410015453 0ustar00// // Component: Comment // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-comment() {} // Sections // ======================================================================== .hook-comment-body() {} .hook-comment-header() {} // Title // ======================================================================== .hook-comment-title() {} // Meta // ======================================================================== .hook-comment-meta() {} // Avatar // ======================================================================== .hook-comment-avatar() {} // List // ======================================================================== .hook-comment-list-adjacent() {} .hook-comment-list-sub() {} .hook-comment-list-sub-adjacent() {} // Style modifier // ======================================================================== .hook-comment-primary() {} // Miscellaneous // ======================================================================== .hook-comment-misc() {} assets/uikit-themes/master/empty/padding.less000064400000000473151666572410015426 0ustar00// // Component: Padding // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-padding-misc() {} assets/uikit-themes/master/empty/container.less000064400000000477151666572410016006 0ustar00// // Component: Container // // ======================================================================== // Variables // ======================================================================== // Miscellaneous // ======================================================================== .hook-container-misc() {} assets/uikit-themes/master/empty/tab.less000064400000002115151666572410014561 0ustar00// // Component: Tab // // ======================================================================== // Variables // ======================================================================== // Component // ======================================================================== .hook-tab() {} // Items // ======================================================================== .hook-tab-item() {} .hook-tab-item-hover() {} .hook-tab-item-active() {} .hook-tab-item-disabled() {} // Position modifiers // ======================================================================== .hook-tab-bottom() {} .hook-tab-bottom-item() {} .hook-tab-left() {} .hook-tab-left-item() {} .hook-tab-right() {} .hook-tab-right-item() {} // Miscellaneous // ======================================================================== .hook-tab-misc() {} // Inverse // ======================================================================== .hook-inverse-tab() {} .hook-inverse-tab-item() {} .hook-inverse-tab-item-hover() {} .hook-inverse-tab-item-active() {} .hook-inverse-tab-item-disabled() {} assets/uikit-themes/master/transform/card.less000064400000005374151666572410015613 0ustar00// // Component: Card // // ======================================================================== // Variables // ======================================================================== @card-hover-translate-vertical: 0; @card-default-hover-translate-vertical: 0; @card-primary-hover-translate-vertical: 0; @card-secondary-hover-translate-vertical: 0; // Component // ======================================================================== .hook-card() {} .hook-card() when not (@card-hover-translate-vertical = 0), not (@card-default-hover-translate-vertical = 0), not (@card-primary-hover-translate-vertical = 0), not (@card-secondary-hover-translate-vertical = 0) { &:not([uk-parallax]) { transition-property: color, background-color, background-size, border-color, box-shadow, transform; } } // Sections // ======================================================================== .hook-card-body() {} .hook-card-header() {} .hook-card-footer() {} // Media // ======================================================================== .hook-card-media() {} .hook-card-media-top() {} .hook-card-media-bottom() {} .hook-card-media-left() {} .hook-card-media-right() {} // Title // ======================================================================== .hook-card-title() {} // Badge // ======================================================================== .hook-card-badge() {} // Hover modifier // ======================================================================== .hook-card-hover() when not (@card-hover-translate-vertical = 0) { transform: translateY(@card-hover-translate-vertical); } // Style modifiers // ======================================================================== .hook-card-default() {} .hook-card-default-title() {} .hook-card-default-hover() when not (@card-default-hover-translate-vertical = 0) { transform: translateY(@card-default-hover-translate-vertical); } .hook-card-default-header() {} .hook-card-default-footer() {} // // Primary // .hook-card-primary() {} .hook-card-primary-title() {} .hook-card-primary-hover() when not (@card-primary-hover-translate-vertical = 0) { transform: translateY(@card-primary-hover-translate-vertical); } // // Secondary // .hook-card-secondary() {} .hook-card-secondary-title() {} .hook-card-secondary-hover() when not (@card-secondary-hover-translate-vertical = 0) { transform: translateY(@card-secondary-hover-translate-vertical); } // Miscellaneous // ======================================================================== .hook-card-misc() {} // Inverse // ======================================================================== .hook-inverse-card-badge() {} assets/uikit-themes/master/transform/_import.less000064400000003521151666572410016343 0ustar00// Base // @import "variables.less"; // @import "base.less"; // Elements // @import "link.less"; // @import "heading.less"; // @import "divider.less"; // @import "list.less"; // @import "description-list.less"; // @import "table.less"; // @import "icon.less"; // @import "form-range.less"; // @import "form.less"; // @import "button.less"; // @import "progress.less"; // Layout // @import "section.less"; // @import "container.less"; // @import "tile.less"; @import "card.less"; // Common // @import "close.less"; // @import "spinner.less"; // @import "marker.less"; // @import "totop.less"; // @import "alert.less"; // @import "placeholder.less"; // @import "badge.less"; // @import "label.less"; // @import "overlay.less"; // @import "article.less"; // @import "comment.less"; // @import "search.less"; // JavaScript // @import "accordion.less"; // @import "drop.less"; // @import "dropdown.less"; // @import "dropbar.less"; // @import "modal.less"; // @import "slider.less"; // @import "sticky.less"; // @import "offcanvas.less"; // @import "leader.less"; // @import "notification.less"; // @import "tooltip.less"; // @import "sortable.less"; // @import "countdown.less"; // @import "grid.less"; // Navs // @import "nav.less"; // @import "navbar.less"; // @import "subnav.less"; // @import "breadcrumb.less"; // @import "pagination.less"; // @import "tab.less"; // @import "slidenav.less"; // @import "dotnav.less"; // @import "thumbnav.less"; // @import "iconnav.less"; // @import "lightbox.less"; // Utilities // @import "animation.less"; // @import "width.less"; // @import "height.less"; // @import "text.less"; // @import "column.less"; // @import "background.less"; // @import "align.less"; // @import "utility.less"; // @import "margin.less"; // @import "padding.less"; // @import "position.less"; // @import "transition.less"; // @import "inverse.less"; assets/uikit-themes/master/background-image/section.less000064400000030345151666572410017526 0ustar00// // Component: Section // // ======================================================================== // Variables // ======================================================================== // // New // // Gradient @internal-section-default-gradient: ~''; @internal-section-muted-gradient: ~''; @internal-section-primary-gradient: ~''; @internal-section-secondary-gradient: ~''; // Image @internal-section-default-image: ~''; @internal-section-muted-image: ~''; @internal-section-primary-image: ~''; @internal-section-secondary-image: ~''; // Blend mode @internal-section-default-mode: none; // none, blend @internal-section-muted-mode: none; // none, blend @internal-section-primary-mode: none; // none, blend @internal-section-secondary-mode: none; // none, blend // Repeat @internal-section-default-background-repeat: repeat; @internal-section-muted-background-repeat: repeat; @internal-section-primary-background-repeat: repeat; @internal-section-secondary-background-repeat: repeat; // Overlap image @internal-section-default-overlap-image: ~''; @internal-section-muted-overlap-image: ~''; @internal-section-primary-overlap-image: ~''; @internal-section-secondary-overlap-image: ~''; @internal-section-overlap-height: 0; @internal-section-overlap-background-size: ~''; // Component // ======================================================================== .hook-section() {} // Style modifiers // ======================================================================== // // Default // // Gradient only .hook-section-default() when not (@internal-section-default-gradient = ~'') and (@internal-section-default-image = ~'') { background-image: @internal-section-default-gradient; } // Image only .hook-section-default() when not (@internal-section-default-image = ~'') and (@internal-section-default-gradient = ~'') { background-image: url("@{internal-section-default-image}"); background-position-x: 50%; } // Both (Default) .hook-section-default() when not (@internal-section-default-gradient = ~'') and not (@internal-section-default-image = ~'') and not (@internal-section-default-mode = blend) { background-image: url("@{internal-section-default-image}"), @internal-section-default-gradient; background-position-x: 50%, 0; } // Both (Blend) .hook-section-default() when not (@internal-section-default-gradient = ~'') and not (@internal-section-default-image = ~'') and (@internal-section-default-mode = blend) { @supports (background-blend-mode: soft-light) { & { background-image: @internal-section-default-gradient, url("@{internal-section-default-image}"); background-blend-mode: soft-light; background-position-x: 0, 50%; background-color: transparent; } } } // Repeat .hook-section-default() when not (@internal-section-default-background-repeat = repeat) { background-repeat: @internal-section-default-background-repeat; } // // Muted // // Gradient only .hook-section-muted() when not (@internal-section-muted-gradient = ~'') and (@internal-section-muted-image = ~'') { background-image: @internal-section-muted-gradient; } // Image only .hook-section-muted() when not (@internal-section-muted-image = ~'') and (@internal-section-muted-gradient = ~'') { background-image: url("@{internal-section-muted-image}"); background-position-x: 50%; } // Both (Default) .hook-section-muted() when not (@internal-section-muted-gradient = ~'') and not (@internal-section-muted-image = ~'') and not (@internal-section-muted-mode = blend) { background-image: url("@{internal-section-muted-image}"), @internal-section-muted-gradient; background-position-x: 50%, 0; } // Both (Blend) .hook-section-muted() when not (@internal-section-muted-gradient = ~'') and not (@internal-section-muted-image = ~'') and (@internal-section-muted-mode = blend) { @supports (background-blend-mode: soft-light) { & { background-image: @internal-section-muted-gradient, url("@{internal-section-muted-image}"); background-blend-mode: soft-light; background-position-x: 0, 50%; background-color: transparent; } } } // Repeat .hook-section-muted() when not (@internal-section-muted-background-repeat = repeat) { background-repeat: @internal-section-muted-background-repeat; } // // Primary // // Gradient only .hook-section-primary() when not (@internal-section-primary-gradient = ~'') and (@internal-section-primary-image = ~'') { background-image: @internal-section-primary-gradient; } // Image only .hook-section-primary() when not (@internal-section-primary-image = ~'') and (@internal-section-primary-gradient = ~'') { background-image: url("@{internal-section-primary-image}"); background-position-x: 50%; } // Both (Default) .hook-section-primary() when not (@internal-section-primary-gradient = ~'') and not (@internal-section-primary-image = ~'') and not (@internal-section-primary-mode = blend) { background-image: url("@{internal-section-primary-image}"), @internal-section-primary-gradient; background-position-x: 50%, 0; } // Both (Blend) .hook-section-primary() when not (@internal-section-primary-gradient = ~'') and not (@internal-section-primary-image = ~'') and (@internal-section-primary-mode = blend) { @supports (background-blend-mode: soft-light) { & { background-image: @internal-section-primary-gradient, url("@{internal-section-primary-image}"); background-blend-mode: soft-light; background-position-x: 0, 50%; background-color: transparent; } } } // Repeat .hook-section-primary() when not (@internal-section-primary-background-repeat = repeat) { background-repeat: @internal-section-primary-background-repeat; } // // Secondary // // Gradient only .hook-section-secondary() when not (@internal-section-secondary-gradient = ~'') and (@internal-section-secondary-image = ~'') { background-image: @internal-section-secondary-gradient; } // Image only .hook-section-secondary() when not (@internal-section-secondary-image = ~'') and (@internal-section-secondary-gradient = ~'') { background-image: url("@{internal-section-secondary-image}"); background-position-x: 50%; } // Both (Default) .hook-section-secondary() when not (@internal-section-secondary-gradient = ~'') and not (@internal-section-secondary-image = ~'') and not (@internal-section-secondary-mode = blend) { background-image: url("@{internal-section-secondary-image}"), @internal-section-secondary-gradient; background-position-x: 50%, 0; } // Both (Blend) .hook-section-secondary() when not (@internal-section-secondary-gradient = ~'') and not (@internal-section-secondary-image = ~'') and (@internal-section-secondary-mode = blend) { @supports (background-blend-mode: soft-light) { & { background-image: @internal-section-secondary-gradient, url("@{internal-section-secondary-image}"); background-blend-mode: soft-light; background-position-x: 0, 50%; background-color: transparent; } } } // Repeat .hook-section-secondary() when not (@internal-section-secondary-background-repeat = repeat) { background-repeat: @internal-section-secondary-background-repeat; } // Overlap modifier // ======================================================================== .hook-section-overlap() when not (@internal-section-overlap-height = 0) { &.uk-section::after, & > .uk-section::after { content: ""; display: block; height: @internal-section-overlap-height; } // :not(style, #system-message-container or both) & + [class*="uk-section"], :is(*:has(> &:last-child)) + * > [class*="uk-section"]:first-child, // style or message :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + [class*="uk-section"], // both :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + :not([class*="uk-section"]) + [class*="uk-section"] { position: relative; } & + [class*="uk-section"]::before, :is(*:has(> &:last-child)) + * > [class*="uk-section"]:first-child::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + [class*="uk-section"]::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + :not([class*="uk-section"]) + [class*="uk-section"]::before { content: ""; display: block; position: absolute; top: -(@internal-section-overlap-height); left: 0; right: 0; height: @internal-section-overlap-height; background-repeat: repeat-x; } &-flip.uk-section::after, &-flip > .uk-section::after { height: 0; } &-flip + [class*="uk-section"]::before, :is(*:has(> &-flip:last-child)) + * > [class*="uk-section"]:first-child::before, :is(*:has(> &-flip:last-child)) + * > :not([class*="uk-section"]):first-child + [class*="uk-section"]::before, :is(*:has(> &-flip:last-child)) + * > :not([class*="uk-section"]):first-child + :not([class*="uk-section"]) + [class*="uk-section"]::before { top: 0; transform: rotate(180deg); } } .hook-section-overlap() when not (@internal-section-overlap-height = 0) and not (@internal-section-overlap-background-size = ~'') { & + [class*="uk-section"]::before, :is(*:has(> &:last-child)) + * > [class*="uk-section"]:first-child::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + [class*="uk-section"]::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + :not([class*="uk-section"]) + [class*="uk-section"]::before { background-size: @internal-section-overlap-background-size; } } .hook-section-overlap() when not (@internal-section-default-overlap-image = ~'') { & + .uk-section-default::before, :is(*:has(> &:last-child)) + * > .uk-section-default:first-child::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + .uk-section-default::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + :not([class*="uk-section"]) + .uk-section-default::before { .svg-fill(@internal-section-default-overlap-image, "#000", @section-default-background); } } .hook-section-overlap() when not (@internal-section-muted-overlap-image = ~'') { & + .uk-section-muted::before, :is(*:has(> &:last-child)) + * > .uk-section-muted:first-child::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + .uk-section-muted::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + :not([class*="uk-section"]) + .uk-section-muted::before { .svg-fill(@internal-section-muted-overlap-image, "#000", @section-muted-background); } } .hook-section-overlap() when not (@internal-section-primary-overlap-image = ~'') { & + .uk-section-primary::before, :is(*:has(> &:last-child)) + * > .uk-section-primary:first-child::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + .uk-section-primary::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + :not([class*="uk-section"]) + .uk-section-primary::before { .svg-fill(@internal-section-primary-overlap-image, "#000", @section-primary-background); } } .hook-section-overlap() when not (@internal-section-secondary-overlap-image = ~'') { & + .uk-section-secondary::before, :is(*:has(> &:last-child)) + * > .uk-section-secondary:first-child::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + .uk-section-secondary::before, :is(*:has(> &:last-child)) + * > :not([class*="uk-section"]):first-child + :not([class*="uk-section"]) + .uk-section-secondary::before { .svg-fill(@internal-section-secondary-overlap-image, "#000", @section-secondary-background); } } // Miscellaneous // ======================================================================== .hook-section-misc() {} assets/uikit-themes/master/background-image/thumbnav.less000064400000002052151666572410017700 0ustar00// // Component: Thumbnav // // ======================================================================== // Variables // ======================================================================== // // New // @thumbnav-item-gradient: ~''; // Component // ======================================================================== .hook-thumbnav() {} .hook-thumbnav-item() when not (@thumbnav-item-gradient = ~'') { &::after { background-image: @thumbnav-item-gradient; } } .hook-thumbnav-item-hover() {} .hook-thumbnav-item-active() {} // Miscellaneous // ======================================================================== .hook-thumbnav-misc() {} // Inverse // ======================================================================== @inverse-thumbnav-item-gradient: ~''; .hook-inverse-thumbnav-item() when not (@inverse-thumbnav-item-gradient = ~'') { &::after { background-image: @inverse-thumbnav-item-gradient; } } .hook-inverse-thumbnav-item-hover() {} .hook-inverse-thumbnav-item-active() {} assets/uikit-themes/master/background-image/_import.less000064400000003404151666572410017527 0ustar00// Base // @import "variables.less"; // @import "base.less"; // Elements // @import "link.less"; // @import "heading.less"; // @import "divider.less"; // @import "list.less"; // @import "description-list.less"; // @import "table.less"; @import "icon.less"; @import "form-range.less"; // @import "form.less"; @import "button.less"; @import "progress.less"; // Layout @import "section.less"; // @import "container.less"; @import "tile.less"; @import "card.less"; // Common // @import "close.less"; // @import "totop.less"; // @import "marker.less"; // @import "alert.less"; // @import "placeholder.less"; @import "badge.less"; // @import "label.less"; @import "overlay.less"; // @import "article.less"; // @import "comment.less"; // @import "search.less"; // JavaScript // @import "accordion.less"; // @import "drop.less"; // @import "dropdown.less"; // @import "dropbar.less"; // @import "modal.less"; // @import "sticky.less"; // @import "offcanvas.less"; // @import "leader.less"; // @import "notification.less"; // @import "tooltip.less"; // @import "spinner.less"; // @import "sortable.less"; // @import "countdown.less"; // @import "grid.less"; // Navs // @import "nav.less"; @import "navbar.less"; @import "subnav.less"; @import "breadcrumb.less"; @import "pagination.less"; @import "tab.less"; // @import "slidenav.less"; // @import "dotnav.less"; @import "thumbnav.less"; // @import "iconnav.less"; // Utilities // @import "animation.less"; // @import "width.less"; // @import "height.less"; @import "text.less"; // @import "column.less"; // @import "background.less"; // @import "align.less"; // @import "svg.less"; // @import "utility.less"; // @import "margin.less"; // @import "padding.less"; // @import "position.less"; // @import "transition.less"; // @import "inverse.less"; assets/uikit-themes/master/background-image/breadcrumb.less000064400000002570151666572410020167 0ustar00// // Component: Breadcrumb // // ======================================================================== // Variables // ======================================================================== // // New // @internal-breadcrumb-divider-background-image: ~''; // Component // ======================================================================== .hook-breadcrumb() {} // Items // ======================================================================== .hook-breadcrumb-item() {} .hook-breadcrumb-item-hover() {} .hook-breadcrumb-item-disabled() {} .hook-breadcrumb-item-active() {} .hook-breadcrumb-divider() when not (@internal-breadcrumb-divider-background-image = ~'') { .svg-fill(@internal-breadcrumb-divider-background-image, "#000", @breadcrumb-divider-color, content); } // Miscellaneous // ======================================================================== .hook-breadcrumb-misc() {} // Inverse // ======================================================================== .hook-inverse-breadcrumb-item() {} .hook-inverse-breadcrumb-item-hover() {} .hook-inverse-breadcrumb-item-disabled() {} .hook-inverse-breadcrumb-item-active() {} .hook-inverse-breadcrumb-divider() when not (@internal-breadcrumb-divider-background-image = ~'') { .svg-fill(@internal-breadcrumb-divider-background-image, "#000", @inverse-breadcrumb-divider-color, content); } assets/uikit-themes/master/background-image/navbar.less000064400000017317151666572410017337 0ustar00// // Component: Navbar // // ======================================================================== // Variables // ======================================================================== // // New // @internal-navbar-gradient: ~''; @internal-navbar-nav-item-gradient: ~''; @internal-navbar-nav-item-hover-gradient: ~''; @internal-navbar-nav-item-active-gradient: ~''; @internal-navbar-nav-item-line-gradient: ~''; @internal-navbar-nav-item-background-image: ~''; @internal-navbar-nav-item-background-size: cover; // Component // ======================================================================== .hook-navbar() {} // Container // ======================================================================== .hook-navbar-container() when not (@internal-navbar-gradient = ~'') { background-image: @internal-navbar-gradient; } // Nav // ======================================================================== .hook-navbar-nav-item() when not (@internal-navbar-nav-item-gradient = ~'') { background-image: @internal-navbar-nav-item-gradient; } .hook-navbar-nav-item-hover() when not (@internal-navbar-nav-item-hover-gradient = ~'') { background-image: @internal-navbar-nav-item-hover-gradient; } .hook-navbar-nav-item-hover() when (@internal-navbar-nav-item-hover-gradient = ~'') and not (@internal-navbar-nav-item-gradient = ~'') { background-image: none; } .hook-navbar-nav-item-onclick() {} .hook-navbar-nav-item-active() when not (@internal-navbar-nav-item-active-gradient = ~'') { background-image: @internal-navbar-nav-item-active-gradient; } .hook-navbar-nav-item-active() when (@internal-navbar-nav-item-active-gradient = ~'') and not (@internal-navbar-nav-item-gradient = ~''), (@internal-navbar-nav-item-active-gradient = ~'') and not (@internal-navbar-nav-item-hover-gradient = ~'') { background-image: none; } // Gradient .hook-navbar-nav-item-line() when not (@internal-navbar-nav-item-line-gradient = ~'') and (@internal-navbar-nav-item-background-image = ~'') { background-image: @internal-navbar-nav-item-line-gradient; } // Image .hook-navbar-nav-item-line() when not (@internal-navbar-nav-item-background-image = ~'') and (@internal-navbar-nav-item-line-gradient = ~'') { background-color: transparent !important; background-size: @internal-navbar-nav-item-background-size; } .hook-navbar-nav-item-line() when not (@internal-navbar-nav-item-background-image = ~'') and (@internal-navbar-nav-item-line-gradient = ~'') and not (@navbar-nav-item-line-background = transparent) { .svg-fill(@internal-navbar-nav-item-background-image, "#000", @navbar-nav-item-line-background); } .hook-navbar-nav-item-hover-line() when not (@internal-navbar-nav-item-background-image = ~'') and (@internal-navbar-nav-item-line-gradient = ~'') and not (@navbar-nav-item-line-background = @navbar-nav-item-line-hover-background) { .svg-fill(@internal-navbar-nav-item-background-image, "#000", @navbar-nav-item-line-hover-background); } .hook-navbar-nav-item-onclick-line() when not (@internal-navbar-nav-item-background-image = ~'') and (@internal-navbar-nav-item-line-gradient = ~'') and not (@navbar-nav-item-line-background = @navbar-nav-item-line-onclick-background) { .svg-fill(@internal-navbar-nav-item-background-image, "#000", @navbar-nav-item-line-onclick-background); } .hook-navbar-nav-item-active-line() when not (@internal-navbar-nav-item-background-image = ~'') and (@internal-navbar-nav-item-line-gradient = ~'') and not (@navbar-nav-item-line-background = @navbar-nav-item-line-active-background) { .svg-fill(@internal-navbar-nav-item-background-image, "#000", @navbar-nav-item-line-active-background); } // Item // ======================================================================== .hook-navbar-item() {} // Toggle // ======================================================================== .hook-navbar-toggle() {} .hook-navbar-toggle-hover() {} .hook-navbar-toggle-icon() {} .hook-navbar-toggle-icon-hover() {} // Subtitle // ======================================================================== .hook-navbar-subtitle() {} // Style modifiers // ======================================================================== .hook-navbar-primary() {} .hook-navbar-transparent() {} .hook-navbar-sticky() {} // Dropdown // ======================================================================== .hook-navbar-dropdown() {} .hook-navbar-dropdown-large() {} .hook-navbar-dropdown-dropbar() {} .hook-navbar-dropdown-dropbar-large() {} // Dropdown nav // ======================================================================== .hook-navbar-dropdown-nav() {} .hook-navbar-dropdown-nav-item() {} .hook-navbar-dropdown-nav-item-hover() {} .hook-navbar-dropdown-nav-subtitle() {} .hook-navbar-dropdown-nav-header() {} .hook-navbar-dropdown-nav-divider() {} // Dropbar // ======================================================================== .hook-navbar-dropbar() {} // Miscellaneous // ======================================================================== .hook-navbar-misc() {} // Inverse // ======================================================================== .hook-inverse-navbar-nav-item() {} .hook-inverse-navbar-nav-item-hover() {} .hook-inverse-navbar-nav-item-onclick() {} .hook-inverse-navbar-nav-item-active() {} // Gradient .hook-inverse-navbar-nav-item() when not (@internal-navbar-nav-item-line-gradient = ~'') and (@internal-navbar-nav-item-background-image = ~'') { &::before { background-image: none; } } // Image .hook-inverse-navbar-nav-item() when (@navbar-nav-item-line-mode) and not (@internal-navbar-nav-item-background-image = ~'') and (@internal-navbar-nav-item-line-gradient = ~'') and not (@inverse-navbar-nav-item-line-background = transparent) { &::before { .svg-fill(@internal-navbar-nav-item-background-image, "#000", @inverse-navbar-nav-item-line-background); } } .hook-inverse-navbar-nav-item-hover() when (@navbar-nav-item-line-mode) and not (@internal-navbar-nav-item-background-image = ~'') and (@internal-navbar-nav-item-line-gradient = ~'') and not (@inverse-navbar-nav-item-line-background = @inverse-navbar-nav-item-line-hover-background) { &::before { .svg-fill(@internal-navbar-nav-item-background-image, "#000", @inverse-navbar-nav-item-line-hover-background); } } .hook-inverse-navbar-nav-item-onclick() when (@navbar-nav-item-line-mode) and not (@internal-navbar-nav-item-background-image = ~'') and (@internal-navbar-nav-item-line-gradient = ~'') and not (@inverse-navbar-nav-item-line-background = @inverse-navbar-nav-item-line-onclick-background) { &::before { .svg-fill(@internal-navbar-nav-item-background-image, "#000", @inverse-navbar-nav-item-line-onclick-background); } } .hook-inverse-navbar-nav-item-active() when (@navbar-nav-item-line-mode) and (@navbar-nav-item-line-active-mode) and not (@internal-navbar-nav-item-background-image = ~'') and (@internal-navbar-nav-item-line-gradient = ~'') and not (@inverse-navbar-nav-item-line-background = @inverse-navbar-nav-item-line-active-background) { &::before { .svg-fill(@internal-navbar-nav-item-background-image, "#000", @inverse-navbar-nav-item-line-active-background); } } .hook-inverse-navbar-item() {} .hook-inverse-navbar-toggle() {} .hook-inverse-navbar-toggle-hover() {} assets/uikit-themes/master/background-image/badge.less000064400000001464151666572410017124 0ustar00// // Component: Badge // // ======================================================================== // Variables // ======================================================================== // // New // @internal-badge-gradient: ~''; // Component // ======================================================================== .hook-badge() when not (@internal-badge-gradient = ~'') { background-image: @internal-badge-gradient; } .hook-badge-hover() {} // Miscellaneous // ======================================================================== .hook-badge-misc() {} // Inverse // ======================================================================== .hook-inverse-badge() when not (@internal-badge-gradient = ~'') { background-image: none; } .hook-inverse-badge-hover() {} assets/uikit-themes/master/background-image/tile.less000064400000006757151666572410017031 0ustar00// // Component: Tile // // ======================================================================== // Variables // ======================================================================== // // New // // Gradient @internal-tile-default-gradient: ~''; @internal-tile-muted-gradient: ~''; @internal-tile-primary-gradient: ~''; @internal-tile-secondary-gradient: ~''; // Image @internal-tile-default-image: ~''; @internal-tile-muted-image: ~''; @internal-tile-primary-image: ~''; @internal-tile-secondary-image: ~''; // Component // ======================================================================== .hook-tile() {} // Style modifiers // ======================================================================== // // Default // // Gradient only .hook-tile-default() when not (@internal-tile-default-gradient = ~'') and (@internal-tile-default-image = ~'') { background-image: @internal-tile-default-gradient; } // Image only .hook-tile-default() when not (@internal-tile-default-image = ~'') and (@internal-tile-default-gradient = ~'') { background-image: url("@{internal-tile-default-image}"); } // Both .hook-tile-default() when not (@internal-tile-default-gradient = ~'') and not (@internal-tile-default-image = ~'') { background-image: url("@{internal-tile-default-image}"), @internal-tile-default-gradient; } .hook-tile-default-hover() {} // // Muted // // Gradient only .hook-tile-muted() when not (@internal-tile-muted-gradient = ~'') and (@internal-tile-muted-image = ~'') { background-image: @internal-tile-muted-gradient; } // Image only .hook-tile-muted() when not (@internal-tile-muted-image = ~'') and (@internal-tile-muted-gradient = ~'') { background-image: url("@{internal-tile-muted-image}"); } // Both .hook-tile-muted() when not (@internal-tile-muted-gradient = ~'') and not (@internal-tile-muted-image = ~'') { background-image: url("@{internal-tile-muted-image}"), @internal-tile-muted-gradient; } .hook-tile-muted-hover() {} // // Primary // // Gradient only .hook-tile-primary() when not (@internal-tile-primary-gradient = ~'') and (@internal-tile-primary-image = ~'') { background-image: @internal-tile-primary-gradient; } // Image only .hook-tile-primary() when not (@internal-tile-primary-image = ~'') and (@internal-tile-primary-gradient = ~'') { background-image: url("@{internal-tile-primary-image}"); } // Both .hook-tile-primary() when not (@internal-tile-primary-gradient = ~'') and not (@internal-tile-primary-image = ~'') { background-image: url("@{internal-tile-primary-image}"), @internal-tile-primary-gradient; } .hook-tile-primary-hover() {} // // Secondary // // Gradient only .hook-tile-secondary() when not (@internal-tile-secondary-gradient = ~'') and (@internal-tile-secondary-image = ~'') { background-image: @internal-tile-secondary-gradient; } // Image only .hook-tile-secondary() when not (@internal-tile-secondary-image = ~'') and (@internal-tile-secondary-gradient = ~'') { background-image: url("@{internal-tile-secondary-image}"); } // Both .hook-tile-secondary() when not (@internal-tile-secondary-gradient = ~'') and not (@internal-tile-secondary-image = ~'') { background-image: url("@{internal-tile-secondary-image}"), @internal-tile-secondary-gradient; } .hook-tile-secondary-hover() {} // Miscellaneous // ======================================================================== .hook-tile-misc() {} assets/uikit-themes/master/background-image/tab.less000064400000005775151666572410016641 0ustar00// // Component: Tab // // ======================================================================== // Variables // ======================================================================== // // New // @internal-tab-item-background-image: ~''; // Component // ======================================================================== .hook-tab() {} // Items // ======================================================================== .hook-tab-item() {} .hook-tab-item-hover() {} .hook-tab-item-active() {} .hook-tab-item-disabled() {} // Image only .hook-tab-item() when not (@internal-tab-item-background-image = ~'') { background-color: transparent !important; background-size: 100% 100%; background-repeat: no-repeat; } .hook-tab-item() when not (@internal-tab-item-background-image = ~'') and not (@tab-item-background = transparent) { .svg-fill(@internal-tab-item-background-image, "#000", @tab-item-background); } .hook-tab-item-hover() when not (@internal-tab-item-background-image = ~'') and not (@tab-item-background = @tab-item-hover-background) and not (@tab-item-hover-background = transparent) { .svg-fill(@internal-tab-item-background-image, "#000", @tab-item-hover-background); transition-property: none; } .hook-tab-item-active() when not (@internal-tab-item-background-image = ~'') and not (@tab-item-background = @tab-item-active-background) and not (@tab-item-active-background = transparent) { .svg-fill(@internal-tab-item-background-image, "#000", @tab-item-active-background); transition-property: none; } // Position modifiers // ======================================================================== .hook-tab-bottom() {} .hook-tab-bottom-item() {} .hook-tab-left() {} .hook-tab-left-item() {} .hook-tab-right() {} .hook-tab-right-item() {} // Miscellaneous // ======================================================================== .hook-tab-misc() {} // Inverse // ======================================================================== .hook-inverse-tab() {} .hook-inverse-tab-item() {} .hook-inverse-tab-item-hover() {} .hook-inverse-tab-item-active() {} .hook-inverse-tab-item() when not (@internal-tab-item-background-image = ~'') and not (@inverse-tab-item-background = transparent) { .svg-fill(@internal-tab-item-background-image, "#000", @inverse-tab-item-background); } .hook-inverse-tab-item-hover() when not (@internal-tab-item-background-image = ~'') and not (@inverse-tab-item-background = @inverse-tab-item-hover-background) and not (@inverse-tab-item-hover-background = transparent) { .svg-fill(@internal-tab-item-background-image, "#000", @inverse-tab-item-hover-background); } .hook-inverse-tab-item-active() when not (@internal-tab-item-background-image = ~'') and not (@inverse-tab-item-background = @inverse-tab-item-active-background) and not (@inverse-tab-item-active-background = transparent) { .svg-fill(@internal-tab-item-background-image, "#000", @inverse-tab-item-active-background); } .hook-inverse-tab-item-disabled() {} assets/uikit-themes/master/background-image/icon.less000064400000004110151666572410017001 0ustar00// // Component: Icon // // ======================================================================== // Variables // ======================================================================== // // New // @internal-icon-button-gradient: ~''; @internal-icon-button-hover-gradient: ~''; @internal-icon-button-active-gradient: ~''; // Style modifiers // ======================================================================== // // Link // .hook-icon-link() {} .hook-icon-link-hover() {} .hook-icon-link-active() {} // // Button // .hook-icon-button() when not (@internal-icon-button-gradient = ~'') { background-image: @internal-icon-button-gradient; } // Hover .hook-icon-button-hover() when not (@internal-icon-button-hover-gradient = ~'') { background-image: @internal-icon-button-hover-gradient; } .hook-icon-button-hover() when (@internal-icon-button-hover-gradient = ~'') and not (@internal-icon-button-gradient = ~'') { background-image: none; } // Active .hook-icon-button-active() when not (@internal-icon-button-active-gradient = ~'') { background-image: @internal-icon-button-active-gradient; } .hook-icon-button-active() when (@internal-icon-button-active-gradient = ~'') and not (@internal-icon-button-gradient = ~''), (@internal-icon-button-active-gradient = ~'') and not (@internal-icon-button-hover-gradient = ~'') { background-image: none; } // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== .hook-inverse-icon-link() {} .hook-inverse-icon-link-hover() {} .hook-inverse-icon-link-active() {} .hook-inverse-icon-button() when not (@internal-icon-button-gradient = ~''), not (@internal-icon-button-hover-gradient = ~''), not (@internal-icon-button-active-gradient = ~'') { background-image: none; } .hook-inverse-icon-button-hover() {} .hook-inverse-icon-button-active() {} assets/uikit-themes/master/background-image/pagination.less000064400000005557151666572410020222 0ustar00// // Component: Pagination // // ======================================================================== // Variables // ======================================================================== // // New // @internal-pagination-item-background-image: ~''; // Component // ======================================================================== .hook-pagination() {} // Items // ======================================================================== .hook-pagination-item() when not (@internal-pagination-item-background-image = ~'') { background-color: transparent !important; background-size: 100% 100%; background-repeat: no-repeat; } .hook-pagination-item() when not (@internal-pagination-item-background-image = ~'') and not (@pagination-item-background = transparent) { .svg-fill(@internal-pagination-item-background-image, "#000", @pagination-item-background); } .hook-pagination-item-hover() when not (@internal-pagination-item-background-image = ~'') and not (@pagination-item-background = @pagination-item-hover-background) and not (@pagination-item-hover-background = transparent) { .svg-fill(@internal-pagination-item-background-image, "#000", @pagination-item-hover-background); transition-property: none; } .hook-pagination-item-active() when not (@internal-pagination-item-background-image = ~'') and not (@pagination-item-background = @pagination-item-active-background) and not (@pagination-item-active-background = transparent) { .svg-fill(@internal-pagination-item-background-image, "#000", @pagination-item-active-background); transition-property: none; } .hook-pagination-item-disabled() {} // Miscellaneous // ======================================================================== .hook-pagination-misc() {} // Inverse // ======================================================================== .hook-inverse-pagination-item() when not (@internal-pagination-item-background-image = ~'') and not (@inverse-pagination-item-background = transparent) { .svg-fill(@internal-pagination-item-background-image, "#000", @inverse-pagination-item-background); } .hook-inverse-pagination-item-hover() when not (@internal-pagination-item-background-image = ~'') and not (@inverse-pagination-item-background = @inverse-pagination-item-hover-background) and not (@inverse-pagination-item-hover-background = transparent) { .svg-fill(@internal-pagination-item-background-image, "#000", @inverse-pagination-item-hover-background); } .hook-inverse-pagination-item-active() when not (@internal-pagination-item-background-image = ~'') and not (@inverse-pagination-item-background = @inverse-pagination-item-active-background) and not (@inverse-pagination-item-active-background = transparent) { .svg-fill(@internal-pagination-item-background-image, "#000", @inverse-pagination-item-active-background); } .hook-inverse-pagination-item-disabled() {} assets/uikit-themes/master/background-image/button.less000064400000016723151666572410017401 0ustar00// // Component: Button // // ======================================================================== // Variables // ======================================================================== // // New // @button-background-size: auto; @button-background-position-x: 0; @button-hover-background-position-x: 0; @internal-button-default-gradient: ~''; @internal-button-default-hover-gradient: ~''; @internal-button-default-active-gradient: ~''; @internal-button-primary-gradient: ~''; @internal-button-primary-hover-gradient: ~''; @internal-button-primary-active-gradient: ~''; @internal-button-secondary-gradient: ~''; @internal-button-secondary-hover-gradient: ~''; @internal-button-secondary-active-gradient: ~''; @internal-button-danger-gradient: ~''; @internal-button-danger-hover-gradient: ~''; @internal-button-danger-active-gradient: ~''; // Component // ======================================================================== .hook-button() { background-origin: border-box; } .hook-button-hover() {} .hook-button-active() {} // Background size and position .hook-button() when not (@button-background-size = auto) { background-size: @button-background-size; } .hook-button() when not (@button-background-position-x = 0) { background-position-x: @button-background-position-x; } .hook-button-hover() when not (@button-hover-background-position-x = @button-background-position-x) { background-position-x: @button-hover-background-position-x; } // Style modifiers // ======================================================================== .hook-button-default() when not (@internal-button-default-gradient = ~'') { background-image: @internal-button-default-gradient; } // Hover .hook-button-default-hover() when not (@internal-button-default-hover-gradient = ~'') { background-image: @internal-button-default-hover-gradient; } .hook-button-default-hover() when (@internal-button-default-hover-gradient = ~'') and not (@internal-button-default-gradient = ~'') { background-image: none; } // Active .hook-button-default-active() when not (@internal-button-default-active-gradient = ~'') { background-image: @internal-button-default-active-gradient; } .hook-button-default-active() when (@internal-button-default-active-gradient = ~'') and not (@internal-button-default-gradient = ~''), (@internal-button-default-active-gradient = ~'') and not (@internal-button-default-hover-gradient = ~'') { background-image: none; } // // Primary // .hook-button-primary() when not (@internal-button-primary-gradient = ~'') { background-image: @internal-button-primary-gradient; } // Hover .hook-button-primary-hover() when not (@internal-button-primary-hover-gradient = ~'') { background-image: @internal-button-primary-hover-gradient; } .hook-button-primary-hover() when (@internal-button-primary-hover-gradient = ~'') and not (@internal-button-primary-gradient = ~'') { background-image: none; } // Active .hook-button-primary-active() when not (@internal-button-primary-active-gradient = ~'') { background-image: @internal-button-primary-active-gradient; } .hook-button-primary-active() when (@internal-button-primary-active-gradient = ~'') and not (@internal-button-primary-gradient = ~''), (@internal-button-primary-active-gradient = ~'') and not (@internal-button-primary-hover-gradient = ~'') { background-image: none; } // // Secondary // .hook-button-secondary() when not (@internal-button-secondary-gradient = ~'') { background-image: @internal-button-secondary-gradient; } // Hover .hook-button-secondary-hover() when not (@internal-button-secondary-hover-gradient = ~'') { background-image: @internal-button-secondary-hover-gradient; } .hook-button-secondary-hover() when (@internal-button-secondary-hover-gradient = ~'') and not (@internal-button-secondary-gradient = ~'') { background-image: none; } // Active .hook-button-secondary-active() when not (@internal-button-secondary-active-gradient = ~'') { background-image: @internal-button-secondary-active-gradient; } .hook-button-secondary-active() when (@internal-button-secondary-active-gradient = ~'') and not (@internal-button-secondary-gradient = ~''), (@internal-button-secondary-active-gradient = ~'') and not (@internal-button-secondary-hover-gradient = ~'') { background-image: none; } // // Danger // .hook-button-danger() when not (@internal-button-danger-gradient = ~'') { background-image: @internal-button-danger-gradient; } // Hover .hook-button-danger-hover() when not (@internal-button-danger-hover-gradient = ~'') { background-image: @internal-button-danger-hover-gradient; } .hook-button-danger-hover() when (@internal-button-danger-hover-gradient = ~'') and not (@internal-button-danger-gradient = ~'') { background-image: none; } // Active .hook-button-danger-active() when not (@internal-button-danger-active-gradient = ~'') { background-image: @internal-button-danger-active-gradient; } .hook-button-danger-active() when (@internal-button-danger-active-gradient = ~'') and not (@internal-button-danger-gradient = ~''), (@internal-button-danger-active-gradient = ~'') and not (@internal-button-danger-hover-gradient = ~'') { background-image: none; } // Disabled // ======================================================================== .hook-button-disabled() { background-image: none; } // Size modifiers // ======================================================================== .hook-button-small() {} .hook-button-large() {} // Text modifier // ======================================================================== .hook-button-text() {} .hook-button-text-hover() {} .hook-button-text-disabled() {} // Link modifier // ======================================================================== .hook-button-link() {} // Miscellaneous // ======================================================================== .hook-button-misc() {} // Inverse // ======================================================================== .hook-inverse-button-default() when not (@internal-button-default-gradient = ~''), not (@internal-button-default-hover-gradient = ~''), not (@internal-button-default-active-gradient = ~'') { background-image: none; } .hook-inverse-button-default-hover() {} .hook-inverse-button-default-active() {} .hook-inverse-button-primary() when not (@internal-button-primary-gradient = ~''), not (@internal-button-primary-hover-gradient = ~''), not (@internal-button-primary-active-gradient = ~'') { background-image: none; } .hook-inverse-button-primary-hover() {} .hook-inverse-button-primary-active() {} .hook-inverse-button-secondary() when not (@internal-button-secondary-gradient = ~''), not (@internal-button-secondary-hover-gradient = ~''), not (@internal-button-secondary-active-gradient = ~'') { background-image: none; } .hook-inverse-button-secondary-hover() {} .hook-inverse-button-secondary-active() {} .hook-inverse-button-text() {} .hook-inverse-button-text-hover() {} .hook-inverse-button-text-disabled() {} .hook-inverse-button-link() {} assets/uikit-themes/master/background-image/form-range.less000064400000003122151666572410020110 0ustar00// // Component: Form Range // // ======================================================================== // Variables // ======================================================================== // // New // @internal-form-range-thumb-background-image: ~''; // Component // ======================================================================== .hook-form-range() {} // Track // ======================================================================== .hook-form-range-track() {} .hook-form-range-track-focus() {} // Thumb // ======================================================================== .hook-form-range-thumb() when not (@internal-form-range-thumb-background-image = ~'') { background-color: transparent !important; background-size: 100% 100%; background-repeat: no-repeat; } .hook-form-range-thumb() when not (@internal-form-range-thumb-background-image = ~'') and not (@form-range-thumb-background = transparent) { .svg-fill(@internal-form-range-thumb-background-image, "#000", @form-range-thumb-background); } // Miscellaneous // ======================================================================== .hook-form-range-misc() {} // Inverse // ======================================================================== .hook-inverse-form-range-track() {} .hook-inverse-form-range-track-focus() {} .hook-inverse-form-range-thumb() when not (@internal-form-range-thumb-background-image = ~'') and not (@inverse-form-range-thumb-background = transparent) { .svg-fill(@internal-form-range-thumb-background-image, "#000", @inverse-form-range-thumb-background); } assets/uikit-themes/master/background-image/text.less000064400000002174151666572410017045 0ustar00// // Component: Base // // ======================================================================== // Variables // ======================================================================== // // New // @internal-text-background-color-gradient: linear-gradient(90deg, @text-background-color 0%, spin(@text-background-color, 40%) 100%); // Style modifiers // ======================================================================== .hook-text-lead() {} .hook-text-meta() {} // Size modifiers // ======================================================================== .hook-text-small() {} .hook-text-large() {} // Background modifier // ======================================================================== .hook-text-background() when not (@internal-text-background-color-gradient = ~'') { background-image: @internal-text-background-color-gradient; } // Miscellaneous // ======================================================================== .hook-text-misc() {} // Inverse // ======================================================================== .hook-inverse-text-lead() {} .hook-inverse-text-meta() {} assets/uikit-themes/master/background-image/overlay.less000064400000002006151666572410017534 0ustar00// // Component: Overlay // // ======================================================================== // Variables // ======================================================================== // // New // @internal-overlay-default-gradient: ~''; @internal-overlay-primary-gradient: ~''; // Component // ======================================================================== .hook-overlay() {} // Icon // ======================================================================== .hook-overlay-icon() {} // Style modifiers // ======================================================================== .hook-overlay-default() when not (@internal-overlay-default-gradient = ~'') { background-image: @internal-overlay-default-gradient; } .hook-overlay-primary() when not (@internal-overlay-primary-gradient = ~'') { background-image: @internal-overlay-primary-gradient; } // Miscellaneous // ======================================================================== .hook-overlay-misc() {} assets/uikit-themes/master/background-image/progress.less000064400000001162151666572410017721 0ustar00// // Component: Progress // // ======================================================================== // Variables // ======================================================================== // // New // @internal-progress-bar-gradient: ~''; // Component // ======================================================================== .hook-progress() {} .hook-progress-bar() when not (@internal-progress-bar-gradient = ~'') { background-image: @internal-progress-bar-gradient; } // Miscellaneous // ======================================================================== .hook-progress-misc() {} assets/uikit-themes/master/background-image/card.less000064400000007263151666572410016776 0ustar00// // Component: Card // // ======================================================================== // Variables // ======================================================================== // // New // @internal-card-badge-gradient: ~''; @internal-card-badge-background-image: ~''; @internal-card-default-gradient: ~''; @internal-card-default-hover-gradient: ~''; @internal-card-primary-gradient: ~''; @internal-card-primary-hover-gradient: ~''; @internal-card-secondary-gradient: ~''; @internal-card-secondary-hover-gradient: ~''; // Component // ======================================================================== .hook-card() {} // Sections // ======================================================================== .hook-card-body() {} .hook-card-header() {} .hook-card-footer() {} // Media // ======================================================================== .hook-card-media() {} .hook-card-media-top() {} .hook-card-media-bottom() {} .hook-card-media-left() {} .hook-card-media-right() {} // Title // ======================================================================== .hook-card-title() {} // Badge // ======================================================================== // Gradient .hook-card-badge() when not (@internal-card-badge-gradient = ~'') and (@internal-card-badge-background-image = ~'') { background-image: @internal-card-badge-gradient; } // Image .hook-card-badge() when not (@internal-card-badge-background-image = ~'') and (@internal-card-badge-gradient = ~'') { background-color: transparent !important; background-size: 100% 100%; background-repeat: no-repeat; } .hook-card-badge() when not (@internal-card-badge-background-image = ~'') and not (@card-badge-background = transparent) { .svg-fill(@internal-card-badge-background-image, "#000", @card-badge-background); } // Hover modifier // ======================================================================== .hook-card-hover() {} // Style modifiers // ======================================================================== .hook-card-default() when not (@internal-card-default-gradient = ~'') { background-image: @internal-card-default-gradient; } .hook-card-default-title() {} .hook-card-default-hover() when not (@internal-card-default-hover-gradient = ~'') { background-image: @internal-card-default-hover-gradient; } .hook-card-default-header() {} .hook-card-default-footer() {} // // Primary // .hook-card-primary() when not (@internal-card-primary-gradient = ~'') { background-image: @internal-card-primary-gradient; } .hook-card-primary-title() {} .hook-card-primary-hover() when not (@internal-card-primary-hover-gradient = ~'') { background-image: @internal-card-primary-hover-gradient; } // // Secondary // .hook-card-secondary() when not (@internal-card-secondary-gradient = ~'') { background-image: @internal-card-secondary-gradient; } .hook-card-secondary-title() {} .hook-card-secondary-hover() when not (@internal-card-secondary-hover-gradient = ~'') { background-image: @internal-card-secondary-hover-gradient; } // Miscellaneous // ======================================================================== .hook-card-misc() {} // Inverse // ======================================================================== .hook-inverse-card-badge() when not (@internal-card-badge-gradient = ~'') { background-image: none; } .hook-inverse-card-badge() when not (@internal-card-badge-background-image = ~'') and not (@inverse-card-badge-background = transparent) { .svg-fill(@internal-card-badge-background-image, "#000", @inverse-card-badge-background); } assets/uikit-themes/master/background-image/subnav.less000064400000011232151666572410017352 0ustar00// // Component: Subnav // // ======================================================================== // Variables // ======================================================================== // // New // @internal-subnav-pill-item-active-gradient: ~''; @internal-subnav-pill-item-background-image: ~''; // Component // ======================================================================== .hook-subnav() {} .hook-subnav-item() {} .hook-subnav-item-hover() {} .hook-subnav-item-active() {} // Divider modifier // ======================================================================== .hook-subnav-divider() {} // Pill modifier // ======================================================================== .hook-subnav-pill-item() {} .hook-subnav-pill-item-hover() {} .hook-subnav-pill-item-onclick() {} // Gradient only .hook-subnav-pill-item-active() when not (@internal-subnav-pill-item-active-gradient = ~'') { background-image: @internal-subnav-pill-item-active-gradient; } // Image only .hook-subnav-pill-item() when not (@internal-subnav-pill-item-background-image = ~'') { background-color: transparent !important; background-size: 100% 100%; background-repeat: no-repeat; } .hook-subnav-pill-item() when not (@internal-subnav-pill-item-background-image = ~'') and not (@subnav-pill-item-background = transparent) { .svg-fill(@internal-subnav-pill-item-background-image, "#000", @subnav-pill-item-background); } .hook-subnav-pill-item-hover() when not (@internal-subnav-pill-item-background-image = ~'') and not (@subnav-pill-item-background = @subnav-pill-item-hover-background) and not (@subnav-pill-item-hover-background = transparent) { .svg-fill(@internal-subnav-pill-item-background-image, "#000", @subnav-pill-item-hover-background); transition-property: none; } .hook-subnav-pill-item-onclick() when not (@internal-subnav-pill-item-background-image = ~'') and not (@subnav-pill-item-background = @subnav-pill-item-onclick-background) and not (@subnav-pill-item-onclick-background = transparent) { .svg-fill(@internal-subnav-pill-item-background-image, "#000", @subnav-pill-item-onclick-background); transition-property: none; } .hook-subnav-pill-item-active() when not (@internal-subnav-pill-item-background-image = ~'') and not (@subnav-pill-item-background = @subnav-pill-item-active-background) and not (@subnav-pill-item-active-background = transparent) { .svg-fill(@internal-subnav-pill-item-background-image, "#000", @subnav-pill-item-active-background); transition-property: none; } // Disabled // ======================================================================== .hook-subnav-item-disabled() {} // Miscellaneous // ======================================================================== .hook-subnav-misc() {} // Inverse // ======================================================================== .hook-inverse-subnav-item() {} .hook-inverse-subnav-item-hover() {} .hook-inverse-subnav-item-active() {} .hook-inverse-subnav-divider() {} .hook-inverse-subnav-pill-item() {} .hook-inverse-subnav-pill-item-hover() {} .hook-inverse-subnav-pill-item-onclick() {} .hook-inverse-subnav-pill-item-active() when not (@internal-subnav-pill-item-active-gradient = ~'') { background-image: none; } .hook-inverse-subnav-pill-item() when not (@internal-subnav-pill-item-background-image = ~'') and not (@inverse-subnav-pill-item-background = transparent) { .svg-fill(@internal-subnav-pill-item-background-image, "#000", @inverse-subnav-pill-item-background); } .hook-inverse-subnav-pill-item-hover() when not (@internal-subnav-pill-item-background-image = ~'') and not (@inverse-subnav-pill-item-background = @inverse-subnav-pill-item-hover-background) and not (@inverse-subnav-pill-item-hover-background = transparent) { .svg-fill(@internal-subnav-pill-item-background-image, "#000", @inverse-subnav-pill-item-hover-background); } .hook-inverse-subnav-pill-item-onclick() when not (@internal-subnav-pill-item-background-image = ~'') and not (@inverse-subnav-pill-item-background = @inverse-subnav-pill-item-onclick-background) and not (@inverse-subnav-pill-item-onclick-background = transparent) { .svg-fill(@internal-subnav-pill-item-background-image, "#000", @inverse-subnav-pill-item-onclick-background); } .hook-inverse-subnav-pill-item-active() when not (@internal-subnav-pill-item-background-image = ~'') and not (@inverse-subnav-pill-item-background = @inverse-subnav-pill-item-active-background) and not (@inverse-subnav-pill-item-active-background = transparent) { .svg-fill(@internal-subnav-pill-item-background-image, "#000", @inverse-subnav-pill-item-active-background); } .hook-inverse-subnav-item-disabled() {} assets/uikit-themes/master/border/form.less000064400000012013151666572420015074 0ustar00// // Component: Form // // ======================================================================== // Variables // ======================================================================== @form-line-height: @form-height - (@form-border-width * 2); @form-small-line-height: @form-small-height - (@form-border-width * 2); @form-large-line-height: @form-large-height - (@form-border-width * 2); // // New // @form-border-mode: ~''; @form-multi-line-border-mode: ~''; @form-border-width: 0; @form-border: transparent; @form-focus-border: transparent; @form-disabled-border: transparent; @form-danger-border: transparent; @form-success-border: transparent; @form-blank-focus-border: transparent; @form-blank-focus-border-style: solid; @form-radio-border-width: 0; @form-radio-border: transparent; @form-radio-focus-border: transparent; @form-radio-checked-border: transparent; @form-radio-disabled-border: transparent; // Component // ======================================================================== .hook-form() {} .hook-form-single-line() when not (@form-border-width = 0) { border@{form-border-mode}: @form-border-width solid @form-border; } .hook-form-multi-line() when not (@form-border-width = 0) { border@{form-multi-line-border-mode}: @form-border-width solid @form-border; } // `!important` needed to override single line selector for `uk-select` .hook-form-focus() when not (@form-border-width = 0) { border-color: @form-focus-border !important; } .hook-form-disabled() when not (@form-border-width = 0) { border-color: @form-disabled-border !important; } // Style modifiers // ======================================================================== .hook-form-danger() when not (@form-border-width = 0) { border-color: @form-danger-border !important; } .hook-form-success() when not (@form-border-width = 0) { border-color: @form-success-border !important; } .hook-form-blank() {} .hook-form-blank-focus() when not (@form-border-width = 0) { border-color: @form-blank-focus-border !important; } .hook-form-blank-focus() when not (@form-blank-focus-border-style = solid) { border-style: @form-blank-focus-border-style; } // Radio and checkbox // ======================================================================== .hook-form-radio() when not (@form-radio-border-width = 0) { border: @form-radio-border-width solid @form-radio-border; } .hook-form-radio-focus() when not (@form-radio-border-width = 0) { border-color: @form-radio-focus-border; } .hook-form-radio-checked() when not (@form-radio-border-width = 0) { border-color: @form-radio-checked-border; } .hook-form-radio-checked-focus() {} .hook-form-radio-disabled() when not (@form-radio-border-width = 0) { border-color: @form-radio-disabled-border; } // Legend // ======================================================================== .hook-form-legend() {} // Label // ======================================================================== .hook-form-label() {} // Layout // ======================================================================== .hook-form-stacked-label() {} .hook-form-horizontal-label() {} // Icon // ======================================================================== .hook-form-icon() {} // Miscellaneous // ======================================================================== .hook-form-misc() {} // Inverse // ======================================================================== @inverse-form-border: transparent; @inverse-form-focus-border: transparent; @inverse-form-radio-border: transparent; @inverse-form-radio-focus-border: transparent; @inverse-form-radio-checked-border: transparent; .hook-inverse-form() when not (@form-border-width = 0) { border-color: @inverse-form-border !important; } .hook-inverse-form-focus() when not (@form-border-width = 0) { border-color: @inverse-form-focus-border !important; } .hook-inverse-form-radio() when not (@form-border-width = 0) { border-color: @inverse-form-radio-border; } .hook-inverse-form-radio-focus() when not (@form-border-width = 0) { border-color: @inverse-form-radio-focus-border; } .hook-inverse-form-radio-checked() when not (@form-border-width = 0) { border-color: @inverse-form-radio-checked-border; } .hook-inverse-form-radio-checked-focus() {} .hook-inverse-form-label() {} .hook-inverse-form-icon() {} // Override `!important` .hook-inverse() when not (@form-border-width = 0) { .uk-form-blank { border-color: transparent !important; } } assets/uikit-themes/master/border/label.less000064400000002715151666572420015220 0ustar00// // Component: Label // // ======================================================================== // Variables // ======================================================================== // // New // @label-border-width: 0; @label-border: transparent; @label-success-border: transparent; @label-warning-border: transparent; @label-danger-border: transparent; // Component // ======================================================================== .hook-label() when not (@label-border-width = 0) { border: @label-border-width solid @label-border; } // Color modifiers // ======================================================================== .hook-label-success() when not (@label-border-width = 0) { border-color: @label-success-border; } .hook-label-warning() when not (@label-border-width = 0) { border-color: @label-warning-border; } .hook-label-danger() when not (@label-border-width = 0) { border-color: @label-danger-border; } // Miscellaneous // ======================================================================== .hook-label-misc() {} // Inverse // ======================================================================== @inverse-label-border: transparent; .hook-inverse-label() when not (@label-border-width = 0) { border-color: @inverse-label-border; } assets/uikit-themes/master/border/badge.less000064400000001670151666572420015202 0ustar00// // Component: Badge // // ======================================================================== // Variables // ======================================================================== // // New // @badge-border-width: 0; @badge-border: transparent; // Component // ======================================================================== .hook-badge() when not (@badge-border-width = 0) { border: @badge-border-width solid @badge-border; } .hook-badge-hover() {} // Miscellaneous // ======================================================================== .hook-badge-misc() {} // Inverse // ======================================================================== @inverse-badge-border: transparent; .hook-inverse-badge() when not (@badge-border-width = 0) { border-color: @inverse-badge-border; } .hook-inverse-badge-hover() {} assets/uikit-themes/master/border/nav.less000064400000005215151666572420014723 0ustar00// // Component: Nav // // ======================================================================== // Variables // ======================================================================== // Sublists // ======================================================================== .hook-nav-sub() {} // Header // ======================================================================== .hook-nav-header() {} // Divider // ======================================================================== .hook-nav-divider() {} // Default style modifier // ======================================================================== .hook-nav-default() {} .hook-nav-default-item() {} .hook-nav-default-item-hover() {} .hook-nav-default-item-active() {} .hook-nav-default-subtitle() {} .hook-nav-default-header() {} .hook-nav-default-divider() {} // Primary style modifier // ======================================================================== .hook-nav-primary() {} .hook-nav-primary-item() {} .hook-nav-primary-item-hover() {} .hook-nav-primary-item-active() {} .hook-nav-primary-subtitle() {} .hook-nav-primary-header() {} .hook-nav-primary-divider() {} // Secondary style modifier // ======================================================================== .hook-nav-secondary() {} .hook-nav-secondary-item() {} .hook-nav-secondary-item-hover() {} .hook-nav-secondary-item-active() {} .hook-nav-secondary-subtitle() {} .hook-nav-secondary-subtitle-hover() {} .hook-nav-secondary-subtitle-active() {} .hook-nav-secondary-header() {} .hook-nav-secondary-divider() {} // Style modifier // ======================================================================== .hook-nav-dividers() {} // Miscellaneous // ======================================================================== .hook-nav-misc() {} // Inverse // ======================================================================== .hook-inverse-nav-default-item() {} .hook-inverse-nav-default-item-hover() {} .hook-inverse-nav-default-item-active() {} .hook-inverse-nav-default-header() {} .hook-inverse-nav-default-divider() {} .hook-inverse-nav-primary-item() {} .hook-inverse-nav-primary-item-hover() {} .hook-inverse-nav-primary-item-active() {} .hook-inverse-nav-primary-header() {} .hook-inverse-nav-primary-divider() {} .hook-inverse-nav-secondary-item() {} .hook-inverse-nav-secondary-item-hover() {} .hook-inverse-nav-secondary-item-active() {} .hook-inverse-nav-secondary-subtitle() {} .hook-inverse-nav-secondary-subtitle-hover() {} .hook-inverse-nav-secondary-subtitle-active() {} .hook-inverse-nav-secondary-header() {} .hook-inverse-nav-secondary-divider() {} .hook-inverse-nav-dividers() {} assets/uikit-themes/master/border/subnav.less000064400000014634151666572420015442 0ustar00// // Component: Subnav // // ======================================================================== // Variables // ======================================================================== // // New // @internal-subnav-divider-border-gradient: ~''; @subnav-pill-item-border-width: 0; @subnav-pill-item-border: transparent; @subnav-pill-item-hover-border: transparent; @subnav-pill-item-onclick-border: transparent; @subnav-pill-item-active-border: transparent; @subnav-pill-item-disabled-border: transparent; @internal-subnav-pill-item-border-image-slice: ~''; @internal-subnav-pill-item-border-image-width: ~''; @internal-subnav-pill-item-border-image-repeat: ~''; @internal-subnav-pill-item-border-image: ~''; // Component // ======================================================================== .hook-subnav() {} .hook-subnav-item() {} .hook-subnav-item-hover() {} .hook-subnav-item-active() {} // Divider modifier // ======================================================================== .hook-subnav-divider() when not (@internal-subnav-divider-border-gradient = ~'') { border-image: @internal-subnav-divider-border-gradient; border-image-slice: 1; // Fix Safari setting 3px `border-width` if `border-image` is used. border-width: 0 0 0 @subnav-divider-border-width; } // Pill modifier // ======================================================================== .hook-subnav-pill-item() when not (@subnav-pill-item-border-width = 0) and not (@internal-subnav-pill-item-border-image = ~'') { border-image-slice: @internal-subnav-pill-item-border-image-slice !important; border-image-width: @internal-subnav-pill-item-border-image-width !important; border-image-repeat: @internal-subnav-pill-item-border-image-repeat !important; } // Color .hook-subnav-pill-item() when not (@subnav-pill-item-border-width = 0) { border: @subnav-pill-item-border-width solid @subnav-pill-item-border; } .hook-subnav-pill-item-hover() when not (@subnav-pill-item-border-width = 0) { border-color: @subnav-pill-item-hover-border; } .hook-subnav-pill-item-onclick() when not (@subnav-pill-item-border-width = 0) { border-color: @subnav-pill-item-onclick-border; } .hook-subnav-pill-item-active() when not (@subnav-pill-item-border-width = 0) { border-color: @subnav-pill-item-active-border; } // Image .hook-subnav-pill-item() when not (@subnav-pill-item-border-width = 0) and not (@internal-subnav-pill-item-border-image = ~'') and not (@subnav-pill-item-border = transparent) { .svg-fill(@internal-subnav-pill-item-border-image, "#000", @subnav-pill-item-border, border-image-source); } .hook-subnav-pill-item-hover() when not (@subnav-pill-item-border-width = 0) and not (@internal-subnav-pill-item-border-image = ~'') and not (@subnav-pill-item-border = @subnav-pill-item-hover-border) { .svg-fill(@internal-subnav-pill-item-border-image, "#000", @subnav-pill-item-hover-border, border-image-source); } .hook-subnav-pill-item-active() when not (@subnav-pill-item-border-width = 0) and not (@internal-subnav-pill-item-border-image = ~'') and not (@subnav-pill-item-border = @subnav-pill-item-active-border) { .svg-fill(@internal-subnav-pill-item-border-image, "#000", @subnav-pill-item-active-border, border-image-source); } // Disabled // ======================================================================== .hook-subnav-item-disabled() when not (@subnav-pill-item-border-width = 0) { border-color: @subnav-pill-item-disabled-border; } // Miscellaneous // ======================================================================== .hook-subnav-misc() {} // Inverse // ======================================================================== @inverse-subnav-pill-item-border: transparent; @inverse-subnav-pill-item-hover-border: transparent; @inverse-subnav-pill-item-onclick-border: transparent; @inverse-subnav-pill-item-active-border: transparent; @inverse-subnav-pill-item-disabled-border: transparent; .hook-inverse-subnav-item() {} .hook-inverse-subnav-item-hover() {} .hook-inverse-subnav-item-active() {} .hook-inverse-subnav-divider() when not (@internal-subnav-divider-border-gradient = ~'') { border-image: none; } .hook-inverse-subnav-pill-item() when not (@subnav-pill-item-border-width = 0) { border-color: @inverse-subnav-pill-item-border; } .hook-inverse-subnav-pill-item-hover() when not (@subnav-pill-item-border-width = 0) { border-color: @inverse-subnav-pill-item-hover-border; } .hook-inverse-subnav-pill-item-onclick() when not (@subnav-pill-item-border-width = 0) { border-color: @inverse-subnav-pill-item-onclick-border; } .hook-inverse-subnav-pill-item-active() when not (@subnav-pill-item-border-width = 0) { border-color: @inverse-subnav-pill-item-active-border; } .hook-inverse-subnav-item-disabled() when not (@subnav-pill-item-border-width = 0) { border-color: @inverse-subnav-pill-item-disabled-border; } .hook-inverse-subnav-pill-item() when not (@subnav-pill-item-border-width = 0) and not (@internal-subnav-pill-item-border-image = ~'') and not (@inverse-subnav-pill-item-border = transparent) { .svg-fill(@internal-subnav-pill-item-border-image, "#000", @inverse-subnav-pill-item-border, border-image-source); } .hook-inverse-subnav-pill-item-hover() when not (@subnav-pill-item-border-width = 0) and not (@internal-subnav-pill-item-border-image = ~'') and not (@inverse-subnav-pill-item-border = @inverse-subnav-pill-item-hover-border) { .svg-fill(@internal-subnav-pill-item-border-image, "#000", @inverse-subnav-pill-item-hover-border, border-image-source); } .hook-inverse-subnav-pill-item-active() when not (@subnav-pill-item-border-width = 0) and not (@internal-subnav-pill-item-border-image = ~'') and not (@inverse-subnav-pill-item-border = @inverse-subnav-pill-item-active-border) { .svg-fill(@internal-subnav-pill-item-border-image, "#000", @inverse-subnav-pill-item-active-border, border-image-source); } assets/uikit-themes/master/border/button.less000064400000047267151666572420015467 0ustar00// // Component: Button // // ======================================================================== // Variables // ======================================================================== @button-line-height: @global-control-height - (@button-border-width * 2); @button-small-line-height: @global-control-small-height - (@button-border-width * 2); @button-large-line-height: @global-control-large-height - (@button-border-width * 2); // // New // @button-border-mode: ~''; @button-border-width: 0; @button-default-border: transparent; @button-default-hover-border: transparent; @button-default-active-border: transparent; @button-primary-border: transparent; @button-primary-hover-border: transparent; @button-primary-active-border: transparent; @button-secondary-border: transparent; @button-secondary-hover-border: transparent; @button-secondary-active-border: transparent; @button-danger-border: transparent; @button-danger-hover-border: transparent; @button-danger-active-border: transparent; @button-disabled-border: transparent; @internal-button-default-border-gradient: ~''; @internal-button-default-hover-border-gradient: ~''; @internal-button-default-active-border-gradient: ~''; @internal-button-primary-border-gradient: ~''; @internal-button-primary-hover-border-gradient: ~''; @internal-button-primary-active-border-gradient: ~''; @internal-button-secondary-border-gradient: ~''; @internal-button-secondary-hover-border-gradient: ~''; @internal-button-secondary-active-border-gradient: ~''; @internal-button-danger-border-gradient: ~''; @internal-button-danger-hover-border-gradient: ~''; @internal-button-danger-active-border-gradient: ~''; @internal-button-border-image-slice: ~''; @internal-button-border-image-width: ~''; @internal-button-border-image-repeat: ~''; @internal-button-default-border-image: ~''; @internal-button-primary-border-image: ~''; @internal-button-secondary-border-image: ~''; @internal-button-danger-border-image: ~''; // Component // ======================================================================== .hook-button() {} .hook-button() when not (@button-border-width = 0) and not (@internal-button-default-border-image = ~'') and (@internal-button-default-border-gradient = ~'') and (@internal-button-default-hover-border-gradient = ~'') and (@internal-button-default-active-border-gradient = ~'') { border-image-slice: @internal-button-border-image-slice !important; border-image-width: @internal-button-border-image-width !important; border-image-repeat: @internal-button-border-image-repeat !important; } .hook-button-hover() {} .hook-button-active() {} // Style modifiers // ======================================================================== // // Default // // Need to remove default `border-width` of 4px if `border-image` is used in Safari and Edge // Note: A `transparent` border color overrides the border image in Safari .hook-button-default() when not (@button-border-width = 0) and not (@internal-button-default-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-default-hover-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-default-active-border-gradient = ~'') { border-width: 0; } // Color .hook-button-default() when not (@button-border-width = 0) { border@{button-border-mode}: @button-border-width solid @button-default-border; } .hook-button-default-hover() when not (@button-border-width = 0) { border@{button-border-mode}-color: @button-default-hover-border; } .hook-button-default-active() when not (@button-border-width = 0) { border@{button-border-mode}-color: @button-default-active-border; } // Gradient .hook-button-default() when not (@button-border-width = 0) and not (@internal-button-default-border-gradient = ~'') { border-image: @internal-button-default-border-gradient 1; } .hook-button-default-hover() when not (@button-border-width = 0) and not (@internal-button-default-hover-border-gradient = ~'') { border-image: @internal-button-default-hover-border-gradient 1; } .hook-button-default-active() when not (@button-border-width = 0) and not (@internal-button-default-active-border-gradient = ~'') { border-image: @internal-button-default-active-border-gradient 1; } // Image .hook-button-default() when not (@button-border-width = 0) and not (@internal-button-default-border-image = ~'') and (@internal-button-default-border-gradient = ~'') { .svg-fill(@internal-button-default-border-image, "#000", @button-default-border, border-image-source); } .hook-button-default-hover() when not (@button-border-width = 0) and not (@internal-button-default-border-image = ~'') and (@internal-button-default-hover-border-gradient = ~'') { .svg-fill(@internal-button-default-border-image, "#000", @button-default-hover-border, border-image-source); } .hook-button-default-active() when not (@button-border-width = 0) and not (@internal-button-default-border-image = ~'') and (@internal-button-default-active-border-gradient = ~'') { .svg-fill(@internal-button-default-border-image, "#000", @button-default-active-border, border-image-source); } // // Primary // // Need to remove default `border-width` of 4px if `border-image` is used in Safari and Edge // Note: A `transparent` border color overrides the border image in Safari .hook-button-primary() when not (@button-border-width = 0) and not (@internal-button-primary-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-primary-hover-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-primary-active-border-gradient = ~'') { border-width: 0; } .hook-button-primary() when not (@button-border-width = 0) { border@{button-border-mode}: @button-border-width solid @button-primary-border; } .hook-button-primary-hover() when not (@button-border-width = 0) { border@{button-border-mode}-color: @button-primary-hover-border; } .hook-button-primary-active() when not (@button-border-width = 0) { border@{button-border-mode}-color: @button-primary-active-border; } // Gradient .hook-button-primary() when not (@button-border-width = 0) and not (@internal-button-primary-border-gradient = ~'') { border-image: @internal-button-primary-border-gradient 1; } .hook-button-primary-hover() when not (@button-border-width = 0) and not (@internal-button-primary-hover-border-gradient = ~'') { border-image: @internal-button-primary-hover-border-gradient 1; } .hook-button-primary-active() when not (@button-border-width = 0) and not (@internal-button-primary-active-border-gradient = ~'') { border-image: @internal-button-primary-active-border-gradient 1; } // Image .hook-button-primary() when not (@button-border-width = 0) and not (@internal-button-primary-border-image = ~'') and (@internal-button-primary-border-gradient = ~'') { .svg-fill(@internal-button-primary-border-image, "#000", @button-primary-border, border-image-source); } .hook-button-primary-hover() when not (@button-border-width = 0) and not (@internal-button-primary-border-image = ~'') and (@internal-button-primary-hover-border-gradient = ~'') { .svg-fill(@internal-button-primary-border-image, "#000", @button-primary-hover-border, border-image-source); } .hook-button-primary-active() when not (@button-border-width = 0) and not (@internal-button-primary-border-image = ~'') and (@internal-button-primary-active-border-gradient = ~'') { .svg-fill(@internal-button-primary-border-image, "#000", @button-primary-active-border, border-image-source); } // // Secondary // // Need to remove default `border-width` of 4px if `border-image` is used in Safari and Edge // Note: A `transparent` border color overrides the border image in Safari .hook-button-secondary() when not (@button-border-width = 0) and not (@internal-button-secondary-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-secondary-hover-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-secondary-active-border-gradient = ~'') { border-width: 0; } .hook-button-secondary() when not (@button-border-width = 0) { border@{button-border-mode}: @button-border-width solid @button-secondary-border; } .hook-button-secondary-hover() when not (@button-border-width = 0) { border@{button-border-mode}-color: @button-secondary-hover-border; } .hook-button-secondary-active() when not (@button-border-width = 0) { border@{button-border-mode}-color: @button-secondary-active-border; } // Gradient .hook-button-secondary() when not (@button-border-width = 0) and not (@internal-button-secondary-border-gradient = ~'') { border-image: @internal-button-secondary-border-gradient 1; } .hook-button-secondary-hover() when not (@button-border-width = 0) and not (@internal-button-secondary-hover-border-gradient = ~'') { border-image: @internal-button-secondary-hover-border-gradient 1; } .hook-button-secondary-active() when not (@button-border-width = 0) and not (@internal-button-secondary-active-border-gradient = ~'') { border-image: @internal-button-secondary-active-border-gradient 1; } // Image .hook-button-secondary() when not (@button-border-width = 0) and not (@internal-button-secondary-border-image = ~'') and (@internal-button-secondary-border-gradient = ~'') { .svg-fill(@internal-button-secondary-border-image, "#000", @button-secondary-border, border-image-source); } .hook-button-secondary-hover() when not (@button-border-width = 0) and not (@internal-button-secondary-border-image = ~'') and (@internal-button-secondary-hover-border-gradient = ~'') { .svg-fill(@internal-button-secondary-border-image, "#000", @button-secondary-hover-border, border-image-source); } .hook-button-secondary-active() when not (@button-border-width = 0) and not (@internal-button-secondary-border-image = ~'') and (@internal-button-secondary-active-border-gradient = ~'') { .svg-fill(@internal-button-secondary-border-image, "#000", @button-secondary-active-border, border-image-source); } // // Danger // // Need to remove default `border-width` of 4px if `border-image` is used in Safari and Edge // Note: A `transparent` border color overrides the border image in Safari .hook-button-danger() when not (@button-border-width = 0) and not (@internal-button-danger-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-danger-hover-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-danger-active-border-gradient = ~'') { border-width: 0; } .hook-button-danger() when not (@button-border-width = 0) { border@{button-border-mode}: @button-border-width solid @button-danger-border; } .hook-button-danger-hover() when not (@button-border-width = 0) { border@{button-border-mode}-color: @button-danger-hover-border; } .hook-button-danger-active() when not (@button-border-width = 0) { border@{button-border-mode}-color: @button-danger-active-border; } // Gradient .hook-button-danger() when not (@button-border-width = 0) and not (@internal-button-danger-border-gradient = ~'') { border-image: @internal-button-danger-border-gradient 1; } .hook-button-danger-hover() when not (@button-border-width = 0) and not (@internal-button-danger-hover-border-gradient = ~'') { border-image: @internal-button-danger-hover-border-gradient 1; } .hook-button-danger-active() when not (@button-border-width = 0) and not (@internal-button-danger-active-border-gradient = ~'') { border-image: @internal-button-danger-active-border-gradient 1; } // Image .hook-button-danger() when not (@button-border-width = 0) and not (@internal-button-danger-border-image = ~'') and (@internal-button-danger-border-gradient = ~'') { .svg-fill(@internal-button-danger-border-image, "#000", @button-danger-border, border-image-source); } .hook-button-danger-hover() when not (@button-border-width = 0) and not (@internal-button-danger-border-image = ~'') and (@internal-button-danger-hover-border-gradient = ~'') { .svg-fill(@internal-button-danger-border-image, "#000", @button-danger-hover-border, border-image-source); } .hook-button-danger-active() when not (@button-border-width = 0) and not (@internal-button-danger-border-image = ~'') and (@internal-button-danger-active-border-gradient = ~'') { .svg-fill(@internal-button-danger-border-image, "#000", @button-danger-active-border, border-image-source); } // Disabled // ======================================================================== .hook-button-disabled() when not (@button-border-width = 0) { border@{button-border-mode}: @button-border-width solid @button-disabled-border; } // Size modifiers // ======================================================================== .hook-button-small() {} .hook-button-large() {} // Text modifier // ======================================================================== .hook-button-text() {} .hook-button-text-hover() {} .hook-button-text-disabled() {} // Link modifier // ======================================================================== .hook-button-link() {} // Miscellaneous // ======================================================================== .hook-button-misc() when not (@button-border-width = 0) { /* Group ========================================================================== */ /* * Collapse border */ .uk-button-group > .uk-button:nth-child(n+2), .uk-button-group > div:nth-child(n+2) .uk-button { margin-left: -@button-border-width; } /* * Create position context to superimpose the successor elements border * Known issue: If you use an `a` element as button and an icon inside, * the active state will not work if you click the icon inside the button * Workaround: Just use a `button` or `input` element as button */ .uk-button-group .uk-button:hover, .uk-button-group .uk-button:focus, .uk-button-group .uk-button:active, .uk-button-group .uk-button.uk-active { position: relative; z-index: 1; } } // Inverse // ======================================================================== @inverse-button-default-border: transparent; @inverse-button-default-hover-border: transparent; @inverse-button-default-active-border: transparent; @inverse-button-primary-border: transparent; @inverse-button-primary-hover-border: transparent; @inverse-button-primary-active-border: transparent; @inverse-button-secondary-border: transparent; @inverse-button-secondary-hover-border: transparent; @inverse-button-secondary-active-border: transparent; .hook-inverse-button-default() when not (@button-border-width = 0) { border@{button-border-mode}-color: @inverse-button-default-border; } .hook-inverse-button-default-hover() when not (@button-border-width = 0) { border@{button-border-mode}-color: @inverse-button-default-hover-border; } .hook-inverse-button-default-active() when not (@button-border-width = 0) { border@{button-border-mode}-color: @inverse-button-default-active-border; } .hook-inverse-button-default() when not (@button-border-width = 0) and not (@internal-button-default-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-default-hover-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-default-active-border-gradient = ~'') { border-image: none; } .hook-inverse-button-default() when not (@button-border-width = 0) and not (@internal-button-default-border-image = ~'') and (@internal-button-default-border-gradient = ~'') and (@internal-button-default-hover-border-gradient = ~'') and (@internal-button-default-active-border-gradient = ~'') { .svg-fill(@internal-button-default-border-image, "#000", @inverse-button-default-border, border-image-source); } .hook-inverse-button-primary() when not (@button-border-width = 0) { border@{button-border-mode}-color: @inverse-button-primary-border; } .hook-inverse-button-primary-hover() when not (@button-border-width = 0) { border@{button-border-mode}-color: @inverse-button-primary-hover-border; } .hook-inverse-button-primary-active() when not (@button-border-width = 0) { border@{button-border-mode}-color: @inverse-button-primary-active-border; } .hook-inverse-button-primary() when not (@button-border-width = 0) and not (@internal-button-primary-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-primary-hover-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-primary-active-border-gradient = ~'') { border-image: none; } .hook-inverse-button-primary() when not (@button-border-width = 0) and not (@internal-button-primary-border-image = ~'') and (@internal-button-primary-border-gradient = ~'') and (@internal-button-primary-hover-border-gradient = ~'') and (@internal-button-primary-active-border-gradient = ~'') { .svg-fill(@internal-button-primary-border-image, "#000", @inverse-button-primary-border, border-image-source); } .hook-inverse-button-secondary() when not (@button-border-width = 0) { border@{button-border-mode}-color: @inverse-button-secondary-border; } .hook-inverse-button-secondary-hover() when not (@button-border-width = 0) { border@{button-border-mode}-color: @inverse-button-secondary-hover-border; } .hook-inverse-button-secondary-active() when not (@button-border-width = 0) { border@{button-border-mode}-color: @inverse-button-secondary-active-border; } .hook-inverse-button-secondary() when not (@button-border-width = 0) and not (@internal-button-secondary-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-secondary-hover-border-gradient = ~''), not (@button-border-width = 0) and not (@internal-button-secondary-active-border-gradient = ~'') { border-image: none; } .hook-inverse-button-secondary() when not (@button-border-width = 0) and not (@internal-button-secondary-border-image = ~'') and (@internal-button-secondary-border-gradient = ~'') and (@internal-button-secondary-hover-border-gradient = ~'') and (@internal-button-secondary-active-border-gradient = ~'') { .svg-fill(@internal-button-secondary-border-image, "#000", @inverse-button-secondary-border, border-image-source); } .hook-inverse-button-text() {} .hook-inverse-button-text-hover() {} .hook-inverse-button-text-disabled() {} .hook-inverse-button-link() {} assets/uikit-themes/master/border/pagination.less000064400000005212151666572420016265 0ustar00// // Component: Pagination // // ======================================================================== // Variables // ======================================================================== // // New // @pagination-item-border-mode: ~''; @pagination-item-border-width: 0; @pagination-item-border: transparent; @pagination-item-hover-border: transparent; @pagination-item-active-border: transparent; @pagination-item-disabled-border: transparent; // Component // ======================================================================== .hook-pagination() {} // Items // ======================================================================== .hook-pagination-item() when not (@pagination-item-border-width = 0) { border@{pagination-item-border-mode}: @pagination-item-border-width solid @pagination-item-border; } .hook-pagination-item-hover() when not (@pagination-item-border-width = 0) { border@{pagination-item-border-mode}-color: @pagination-item-hover-border; } .hook-pagination-item-active() when not (@pagination-item-border-width = 0) { border@{pagination-item-border-mode}-color: @pagination-item-active-border; } .hook-pagination-item-disabled() when not (@pagination-item-border-width = 0) { border@{pagination-item-border-mode}-color: @pagination-item-disabled-border; } // Miscellaneous // ======================================================================== .hook-pagination-misc() {} // Inverse // ======================================================================== @inverse-pagination-item-border: transparent; @inverse-pagination-item-hover-border: transparent; @inverse-pagination-item-active-border: transparent; @inverse-pagination-item-disabled-border: transparent; .hook-inverse-pagination-item() when not (@pagination-item-border-width = 0) { border@{pagination-item-border-mode}-color: @inverse-pagination-item-border; } .hook-inverse-pagination-item-hover() when not (@pagination-item-border-width = 0) { border@{pagination-item-border-mode}-color: @inverse-pagination-item-hover-border; } .hook-inverse-pagination-item-active() when not (@pagination-item-border-width = 0) { border@{pagination-item-border-mode}-color: @inverse-pagination-item-active-border; } .hook-inverse-pagination-item-disabled() when not (@pagination-item-border-width = 0) { border@{pagination-item-border-mode}-color: @inverse-pagination-item-disabled-border; } assets/uikit-themes/master/border/form-range.less000064400000002512151666572420016171 0ustar00// // Component: Form Range // // ======================================================================== // Variables // ======================================================================== // // New // @form-range-thumb-border-width: 0; @form-range-thumb-border: transparent; // Component // ======================================================================== .hook-form-range() {} // Track // ======================================================================== .hook-form-range-track() {} .hook-form-range-track-focus() {} // Thumb // ======================================================================== .hook-form-range-thumb() when not (@form-range-thumb-border-width = 0) { border: @form-range-thumb-border-width solid @form-range-thumb-border; } // Miscellaneous // ======================================================================== .hook-form-range-misc() {} // Inverse // ======================================================================== @inverse-form-range-thumb-border: darken(fadein(@inverse-global-border, 100%), 10%); .hook-inverse-form-range-track() {} .hook-inverse-form-range-track-focus() {} .hook-inverse-form-range-thumb() when not (@form-range-thumb-border-width = 0) { border-color: @inverse-form-range-thumb-border; } assets/uikit-themes/master/border/search.less000064400000013225151666572420015404 0ustar00// // Component: Search // // ======================================================================== // Variables // ======================================================================== // // New // @search-default-border-mode: ~''; @search-default-border-width: 0; @search-default-border: transparent; @search-default-focus-border: transparent; @search-navbar-border-mode: ~''; @search-navbar-border-width: 0; @search-navbar-border: transparent; @search-navbar-focus-border: transparent; @search-medium-border-mode: ~''; @search-medium-border-width: 0; @search-medium-border: transparent; @search-medium-focus-border: transparent; @search-large-border-mode: ~''; @search-large-border-width: 0; @search-large-border: transparent; @search-large-focus-border: transparent; // Component // ======================================================================== .hook-search-input() {} // Icon // ======================================================================== .hook-search-icon() {} // Default modifiers // ======================================================================== .hook-search-default-input() when not (@search-default-border-width = 0) { border@{search-default-border-mode}: @search-default-border-width solid @search-default-border; } .hook-search-default-input-focus() when not (@search-default-border-width = 0) { border@{search-default-border-mode}-color: @search-default-focus-border; } // Navbar modifiers // ======================================================================== .hook-search-navbar-input() when not (@search-navbar-border-width = 0) { border@{search-navbar-border-mode}: @search-navbar-border-width solid @search-navbar-border; } .hook-search-navbar-input-focus() when not (@search-navbar-border-width = 0) { border@{search-navbar-border-mode}-color: @search-navbar-focus-border; } // Medium modifiers // ======================================================================== .hook-search-medium-input() when not (@search-medium-border-width = 0) { border@{search-medium-border-mode}: @search-medium-border-width solid @search-medium-border; } .hook-search-medium-input-focus() when not (@search-medium-border-width = 0) { border@{search-medium-border-mode}-color: @search-medium-focus-border; } // Large modifiers // ======================================================================== .hook-search-large-input() when not (@search-large-border-width = 0) { border@{search-large-border-mode}: @search-large-border-width solid @search-large-border; } .hook-search-large-input-focus() when not (@search-large-border-width = 0) { border@{search-large-border-mode}-color: @search-large-focus-border; } // Toggle // ======================================================================== .hook-search-toggle() {} .hook-search-toggle-hover() {} // Miscellaneous // ======================================================================== .hook-search-misc() {} // Inverse // ======================================================================== @inverse-search-default-border: transparent; @inverse-search-default-focus-border: transparent; @inverse-search-navbar-border: transparent; @inverse-search-navbar-focus-border: transparent; @inverse-search-medium-border: transparent; @inverse-search-medium-focus-border: transparent; @inverse-search-large-border: transparent; @inverse-search-large-focus-border: transparent; .hook-inverse-search-default-input() when not (@search-default-border-width = 0) { border@{search-default-border-mode}-color: @inverse-search-default-border; } .hook-inverse-search-default-input-focus() when not (@search-default-border-width = 0) and not (@inverse-search-default-focus-border = @inverse-search-default-border) { border@{search-default-border-mode}-color: @inverse-search-default-focus-border; } .hook-inverse-search-navbar-input() when not (@search-navbar-border-width = 0) { border@{search-navbar-border-mode}-color: @inverse-search-navbar-border; } .hook-inverse-search-navbar-input-focus() when not (@search-navbar-border-width = 0) and not (@inverse-search-navbar-focus-border = @inverse-search-navbar-border) { border@{search-navbar-border-mode}-color: @inverse-search-navbar-focus-border; } .hook-inverse-search-medium-input() when not (@search-medium-border-width = 0) { border@{search-medium-border-mode}-color: @inverse-search-medium-border; } .hook-inverse-search-medium-input-focus() when not (@search-medium-border-width = 0) and not (@inverse-search-medium-focus-border = @inverse-search-medium-border) { border@{search-medium-border-mode}-color: @inverse-search-medium-focus-border; } .hook-inverse-search-large-input() when not (@search-large-border-width = 0) { border@{search-large-border-mode}-color: @inverse-search-large-border; } .hook-inverse-search-large-input-focus() when not (@search-large-border-width = 0) and not (@inverse-search-large-focus-border = @inverse-search-large-border) { border@{search-large-border-mode}-color: @inverse-search-large-focus-border; } .hook-inverse-search-toggle() {} .hook-inverse-search-toggle-hover() {} assets/uikit-themes/master/border/marker.less000064400000002351151666572420015416 0ustar00// // Component: Marker // // ======================================================================== // Variables // ======================================================================== // // New // @marker-border-width: 0; @marker-border: transparent; @marker-hover-border: transparent; // Component // ======================================================================== .hook-marker() when not (@marker-border-width = 0) { border: @marker-border-width solid @marker-border; } .hook-marker-hover() when not (@marker-border-width = 0) { border-color: @marker-hover-border; } // Miscellaneous // ======================================================================== .hook-marker-misc() {} // Inverse // ======================================================================== @inverse-marker-border: transparent; @inverse-marker-hover-border: transparent; .hook-inverse-marker() when not (@marker-border-width = 0) { border-color: @inverse-marker-border; } .hook-inverse-marker-hover() when not (@marker-border-width = 0) { border-color: @inverse-marker-hover-border; } assets/uikit-themes/master/border/variables.less000064400000000550151666572420016104 0ustar00// // Component: Variables // // ======================================================================== // Global variables // ======================================================================== // // Typography // // // Colors // // // Backgrounds // // // Borders // // // Box-Shadows // // // Spacings // // // Controls // // // Z-index // assets/uikit-themes/master/border/alert.less000064400000003223151666572420015243 0ustar00// // Component: Alert // // ======================================================================== // Variables // ======================================================================== // // New // @alert-border-mode: ~''; @alert-border-width: 0; @alert-border: transparent; @alert-primary-border: transparent; @alert-success-border: transparent; @alert-warning-border: transparent; @alert-danger-border: transparent; // Component // ======================================================================== .hook-alert() when not (@alert-border-width = 0) { border@{alert-border-mode}: @alert-border-width solid @alert-border; } // Close // ======================================================================== .hook-alert-close() {} .hook-alert-close-hover() {} // Style modifiers // ======================================================================== .hook-alert-primary() when not (@alert-border-width = 0) { border@{alert-border-mode}-color: @alert-primary-border; } .hook-alert-success() when not (@alert-border-width = 0) { border@{alert-border-mode}-color: @alert-success-border; } .hook-alert-warning() when not (@alert-border-width = 0) { border@{alert-border-mode}-color: @alert-warning-border; } .hook-alert-danger() when not (@alert-border-width = 0) { border@{alert-border-mode}-color: @alert-danger-border; } // Miscellaneous // ======================================================================== .hook-alert-misc() {} assets/uikit-themes/master/border/divider.less000064400000006261151666572420015567 0ustar00// // Component: Divider // // ======================================================================== // Variables // ======================================================================== // // New // @internal-divider-icon-line-left-border-gradient: ~''; @internal-divider-icon-line-right-border-gradient: ~''; @internal-divider-small-border-gradient: ~''; @internal-divider-small-image: ~''; @internal-divider-vertical-border-gradient: ~''; // Icon // ======================================================================== .hook-divider-icon() {} .hook-divider-icon-line() { // Fix Safari setting 3px `border-width` if `border-image` is used. border-width: 0 0 @divider-icon-line-border-width 0; } .hook-divider-icon-line-left() when not (@internal-divider-icon-line-left-border-gradient = ~'') { border-image: @internal-divider-icon-line-left-border-gradient; border-image-slice: 1; } .hook-divider-icon-line-right() when not (@internal-divider-icon-line-right-border-gradient = ~'') { border-image: @internal-divider-icon-line-right-border-gradient; border-image-slice: 1; } // Small // ======================================================================== .hook-divider-small() {} .hook-divider-small() when not (@internal-divider-small-border-gradient = ~'') and (@internal-divider-small-image = ~'') { border-image: @internal-divider-small-border-gradient; border-image-slice: 1; // Fix Safari setting 3px `border-width` if `border-image` is used. border-width: @divider-small-border-width 0 0 0; } .hook-divider-small() when not (@internal-divider-small-image = ~'') and (@internal-divider-small-border-gradient = ~'') { .svg-fill(@internal-divider-small-image, "#000", @divider-small-border); border-color: transparent; } // Vertical // ======================================================================== .hook-divider-vertical() when not (@internal-divider-vertical-border-gradient = ~'') { border-image: @internal-divider-vertical-border-gradient; border-image-slice: 1; // Fix Safari setting 3px `border-width` if `border-image` is used. border-width: 0 0 0 @divider-vertical-border-width; } // Miscellaneous // ======================================================================== .hook-divider-misc() {} // Inverse // ======================================================================== .hook-inverse-divider-icon() {} .hook-inverse-divider-icon-line() when not (@internal-divider-icon-line-left-border-gradient = ~''), not (@internal-divider-icon-line-right-border-gradient = ~'') { border-image: none; } .hook-inverse-divider-small() when not (@internal-divider-small-border-gradient = ~'') and (@internal-divider-small-image = ~'') { border-image: none; } .hook-inverse-divider-small() when not (@internal-divider-small-image = ~'') and (@internal-divider-small-border-gradient = ~'') { .svg-fill(@internal-divider-small-image, "#000", @inverse-divider-small-border); border-color: transparent; } .hook-inverse-divider-vertical() when not (@internal-divider-vertical-border-gradient = ~'') { border-image: none; } assets/uikit-themes/master/border/tab.less000064400000022263151666572420014707 0ustar00// // Component: Tab // // ======================================================================== // Variables // ======================================================================== // // New // @tab-border-width: @global-border-width; @tab-border: @global-border; @tab-item-border-width: @global-border-width; @tab-item-hover-border: currentColor; @tab-item-active-border: @global-primary-background; @internal-tab-item-hover-border-gradient: ~''; @internal-tab-item-active-border-gradient: ~''; @internal-tab-item-active-border-image-slice: ~''; @internal-tab-item-active-border-image: ~''; @internal-tab-vertical-item-active-border-image: ~''; @tab-item-mode: ~''; // line @tab-item-line-left: 0; @tab-item-line-right: 100%; @tab-item-line-hover-left: 0; @tab-item-line-hover-right: 0; @tab-item-line-transition-duration: 0.3s; @tab-item-line-transition-timing-function: ease-out; // Component // ======================================================================== .hook-tab() when not (@tab-border-width = 0) { position: relative; &::before { content: ""; position: absolute; bottom: 0; left: @tab-margin-horizontal; right: 0; border-bottom: @tab-border-width solid @tab-border; } } // Items // ======================================================================== // Need to remove default `border-width` of 4px if `border-image` is used in Safari and Edge // Note: A `transparent` border color overrides the border image in Safari .hook-tab-item() when not (@tab-item-border-width = 0) and not (@internal-tab-item-hover-border-gradient = ~''), not (@tab-item-border-width = 0) and not (@internal-tab-item-active-border-gradient = ~'') { border-width: 0; } .hook-tab-item() when not (@tab-item-border-width = 0) { border-bottom: @tab-item-border-width solid transparent; } .hook-tab-item-hover() when not (@tab-item-border-width = 0) and not (@tab-item-mode = line) { border-color: @tab-item-hover-border; } .hook-tab-item-active() when not (@tab-item-border-width = 0) { border-color: @tab-item-active-border; } // Gradient .hook-tab-item() {} .hook-tab-item-hover() when not (@tab-item-border-width = 0) and not (@internal-tab-item-hover-border-gradient = ~'') and not (@tab-item-mode = line) { border-image: @internal-tab-item-hover-border-gradient 1; } .hook-tab-item-active() when not (@tab-item-border-width = 0) and not (@internal-tab-item-active-border-gradient = ~'') { border-image: @internal-tab-item-active-border-gradient 1; } // Image .hook-tab-item() {} .hook-tab-item-hover() {} .hook-tab-item-active() when not (@tab-item-border-width = 0) and not (@internal-tab-item-active-border-image = ~'') and (@internal-tab-item-active-border-gradient = ~'') { .svg-fill(@internal-tab-item-active-border-image, "#000", @tab-item-active-border, border-image-source); border-image-slice: @internal-tab-item-active-border-image-slice; } .hook-tab-item-disabled() {} // // Line effect // .hook-tab() when (@tab-item-mode = line) { > :not(.uk-active, .uk-disabled) > a { position: relative; } > :not(.uk-active, .uk-disabled) > a::before { content: ""; position: absolute; bottom: -@tab-item-border-width; left: @tab-item-line-left; right: @tab-item-line-right; border-bottom: @tab-item-border-width solid @tab-item-hover-border; transition: @tab-item-line-transition-duration @tab-item-line-transition-timing-function; transition-property: left, right; } > :not(.uk-active, .uk-disabled) > a:hover::before { left: @tab-item-line-hover-left; right: @tab-item-line-hover-right; } } // Position modifiers // ======================================================================== .hook-tab-bottom() when not (@tab-border-width = 0) { &::before { top: 0; bottom: auto; } } // `0` needed for to reset `border-width` if `border-image` is used in Safari and Edge .hook-tab-bottom-item() when not (@tab-item-border-width = 0) { border-top: @tab-item-border-width solid transparent; border-bottom: 0 none; } // Line effect .hook-tab-bottom() when (@tab-item-mode = line) { > :not(.uk-active, .uk-disabled) > a::before { top: -@tab-item-border-width; bottom: auto; } } .hook-tab-left() when not (@tab-border-width = 0) { &::before { top: 0; bottom: 0; left: auto; right: 0; border-left: @tab-border-width solid @tab-border; border-bottom: none; } } // `0` needed for to reset `border-width` if `border-image` is used in Safari and Edge .hook-tab-left-item() when not (@tab-item-border-width = 0) { border-right: @tab-item-border-width solid transparent; border-bottom: 0 none; } // Line effect .hook-tab-left() when (@tab-item-mode = line) { > :not(.uk-active, .uk-disabled) > a::before { right: -@tab-item-border-width; top: @tab-item-line-left; bottom: @tab-item-line-right; border-bottom: 0; border-right: @tab-item-border-width solid @tab-item-hover-border; transition-property: top, bottom; } > :not(.uk-active, .uk-disabled) > a:hover::before { left: auto; right: -@tab-item-border-width; top: @tab-item-line-hover-left; bottom: @tab-item-line-hover-right; } } .hook-tab-right() when not (@tab-border-width = 0) { &::before { top: 0; bottom: 0; left: 0; right: auto; border-left: @tab-border-width solid @tab-border; border-bottom: none; } } // `0` needed for to reset `border-width` if `border-image` is used in Safari and Edge .hook-tab-right-item() when not (@tab-item-border-width = 0) { border-left: @tab-item-border-width solid transparent; border-bottom: 0 none; } // Line effect .hook-tab-right() when (@tab-item-mode = line) { > :not(.uk-active, .uk-disabled) > a::before { left: -@tab-item-border-width; top: @tab-item-line-left; bottom: @tab-item-line-right; border-bottom: 0; border-right: @tab-item-border-width solid @tab-item-hover-border; transition-property: top, bottom; } > :not(.uk-active, .uk-disabled) > a:hover::before { left: -@tab-item-border-width; right: auto; top: @tab-item-line-hover-left; bottom: @tab-item-line-hover-right; } } // Miscellaneous // ======================================================================== .hook-tab-misc() {} // Image .hook-tab-misc() when not (@tab-item-border-width = 0) and not (@internal-tab-vertical-item-active-border-image = ~'') and (@internal-tab-item-active-border-gradient = ~'') { .uk-tab-left > .uk-active > a, .uk-tab-right > .uk-active > a { .svg-fill(@internal-tab-vertical-item-active-border-image, "#000", @tab-item-active-border, border-image-source); border-image-slice: @internal-tab-item-active-border-image-slice; } } // Inverse // ======================================================================== @inverse-tab-border: @inverse-global-border; @inverse-tab-item-hover-border: currentColor; @inverse-tab-item-active-border: @inverse-global-primary-background; .hook-inverse-tab() when not (@tab-border-width = 0) { &::before { border-color: @inverse-tab-border; } } .hook-inverse-tab-item() when not (@tab-item-border-width = 0) and not (@internal-tab-item-hover-border-gradient = ~''), not (@tab-item-border-width = 0) and not (@internal-tab-item-active-border-gradient = ~'') { border-image: none; } .hook-inverse-tab-item-hover() when not (@tab-item-border-width = 0) and not (@tab-item-mode = line) { border-color: @inverse-tab-item-hover-border; } .hook-inverse-tab-item-active() when not (@tab-item-border-width = 0) { border-color: @inverse-tab-item-active-border; } .hook-inverse-tab() when (@tab-item-mode = line) and not (@tab-item-hover-border = @inverse-tab-item-hover-border) { > :not(.uk-active, .uk-disabled) > a::before { border-color: @inverse-tab-item-hover-border; } } .hook-inverse-tab-item-active() when not (@tab-item-border-width = 0) and not (@internal-tab-item-active-border-image = ~'') and (@internal-tab-item-active-border-gradient = ~'') { .svg-fill(@internal-tab-item-active-border-image, "#000", @inverse-tab-item-active-border, border-image-source); } .hook-inverse-tab-item-disabled() {} .hook-inverse() when not (@tab-item-border-width = 0) and not (@internal-tab-vertical-item-active-border-image = ~'') and (@internal-tab-item-active-border-gradient = ~'') { .uk-tab-left > .uk-active > a, .uk-tab-right > .uk-active > a { .svg-fill(@internal-tab-vertical-item-active-border-image, "#000", @inverse-tab-item-active-border, border-image-source); } } assets/uikit-themes/master/border/dropdown.less000064400000002200151666572420015762 0ustar00// // Component: Dropdown // // ======================================================================== // Variables // ======================================================================== // // New // @dropdown-border-width: 0; @dropdown-border: transparent; // Component // ======================================================================== .hook-dropdown() when not (@dropdown-border-width = 0) { border: @dropdown-border-width solid @dropdown-border; } // Dropbar modifier // ======================================================================== .hook-dropdown-dropbar() when not (@dropdown-border-width = 0) { border: none; } .hook-dropdown-dropbar-large() {} // Nav // ======================================================================== .hook-dropdown-nav() {} .hook-dropdown-nav-item() {} .hook-dropdown-nav-item-hover() {} .hook-dropdown-nav-subtitle() {} .hook-dropdown-nav-header() {} .hook-dropdown-nav-divider() {} // Miscellaneous // ======================================================================== .hook-dropdown-misc() {} assets/uikit-themes/master/border/icon.less000064400000007527151666572420015077 0ustar00// // Component: Icon // // ======================================================================== // Variables // ======================================================================== // // New // @icon-button-border-width: 0; @icon-button-border: transparent; @icon-button-hover-border: transparent; @icon-button-active-border: transparent; @internal-icon-button-border-image-slice: ~''; @internal-icon-button-border-image-width: ~''; @internal-icon-button-border-image-repeat: ~''; @internal-icon-button-border-image: ~''; // Style modifiers // ======================================================================== // // Link // .hook-icon-link() {} .hook-icon-link-hover() {} .hook-icon-link-active() {} // // Button // .hook-icon-button() when not (@icon-button-border-width = 0) and not (@internal-icon-button-border-image = ~'') { border-image-slice: @internal-icon-button-border-image-slice !important; border-image-width: @internal-icon-button-border-image-width !important; border-image-repeat: @internal-icon-button-border-image-repeat !important; } // Color .hook-icon-button() when not (@icon-button-border-width = 0) { border: @icon-button-border-width solid @icon-button-border; } .hook-icon-button-hover() when not (@icon-button-border-width = 0) { border-color: @icon-button-hover-border; } .hook-icon-button-active() when not (@icon-button-border-width = 0) { border-color: @icon-button-active-border; } // Image .hook-icon-button() when not (@icon-button-border-width = 0) and not (@internal-icon-button-border-image = ~'') { .svg-fill(@internal-icon-button-border-image, "#000", @icon-button-border, border-image-source); } .hook-icon-button-hover() when not (@icon-button-border-width = 0) and not (@internal-icon-button-border-image = ~'') { .svg-fill(@internal-icon-button-border-image, "#000", @icon-button-hover-border, border-image-source); } .hook-icon-button-active() when not (@icon-button-border-width = 0) and not (@internal-icon-button-border-image = ~'') { .svg-fill(@internal-icon-button-border-image, "#000", @icon-button-active-border, border-image-source); } // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== @inverse-icon-button-border: transparent; @inverse-icon-button-hover-border: transparent; @inverse-icon-button-active-border: transparent; .hook-inverse-icon-link() {} .hook-inverse-icon-link-hover() {} .hook-inverse-icon-link-active() {} .hook-inverse-icon-button() when not (@icon-button-border-width = 0) { border-color: @inverse-icon-button-border; } .hook-inverse-icon-button-hover() when not (@icon-button-border-width = 0) { border-color: @inverse-icon-button-hover-border; } .hook-inverse-icon-button-active() when not (@icon-button-border-width = 0) { border-color: @inverse-icon-button-active-border; } .hook-inverse-icon-button() when not (@icon-button-border-width = 0) and not (@internal-icon-button-border-image = ~'') { .svg-fill(@internal-icon-button-border-image, "#000", @inverse-icon-button-border, border-image-source); } .hook-inverse-icon-button-hover() when not (@icon-button-border-width = 0) and not (@internal-icon-button-border-image = ~'') { .svg-fill(@internal-icon-button-border-image, "#000", @inverse-icon-button-hover-border, border-image-source); } .hook-inverse-icon-button-active() when not (@icon-button-border-width = 0) and not (@internal-icon-button-border-image = ~'') { .svg-fill(@internal-icon-button-border-image, "#000", @inverse-icon-button-active-border, border-image-source); } assets/uikit-themes/master/border/table.less000064400000005557151666572420015237 0ustar00// // Component: Table // // ======================================================================== // Variables // ======================================================================== // // New // @table-divider-header-border-width: 0; @table-divider-header-border: transparent; @table-striped-border-width: 0; @table-striped-border: transparent; // Component // ======================================================================== .hook-table-header-cell() {} .hook-table-cell() {} .hook-table-footer() {} .hook-table-caption() {} .hook-table-row-active() {} // Style modifiers // ======================================================================== .hook-table-divider() {} .hook-table-striped() when not (@table-striped-border-width = 0) { border-top: @table-striped-border-width solid @table-striped-border; border-bottom: @table-striped-border-width solid @table-striped-border; } .hook-table-hover() {} // Size modifier // ======================================================================== .hook-table-small() {} .hook-table-large() {} // Miscellaneous // ======================================================================== .hook-table-misc() when not (@table-divider-header-border-width = 0) { .uk-table-divider > tr:first-child, .uk-table-divider > :first-child > tr, .uk-table-divider > :first-child > tr:first-child { border-bottom: @table-divider-header-border-width solid @table-divider-header-border; } } .hook-table-misc() when not (@table-striped-border-width = 0) { .uk-table-striped > tr:nth-of-type(even):last-child, .uk-table-striped tbody tr:nth-of-type(even):last-child { border-bottom: @table-striped-border-width solid @table-striped-border; } } // Inverse // ======================================================================== @inverse-table-divider-header-border: @inverse-global-border; @inverse-table-striped-border: @inverse-global-border; .hook-inverse-table-header-cell() {} .hook-inverse-table-caption() {} .hook-inverse-table-row-active() {} .hook-inverse-table-divider() {} .hook-inverse-table-striped() when not (@table-striped-border-width = 0) { border-top-color: @inverse-table-striped-border; border-bottom-color: @inverse-table-striped-border; } .hook-inverse-table-hover() {} .hook-inverse() when not (@table-divider-header-border-width = 0) { .uk-table-divider > tr:first-child, .uk-table-divider > :first-child > tr, .uk-table-divider > :first-child > tr:first-child { border-bottom-color: @inverse-table-divider-header-border; } } .hook-inverse() when not (@table-striped-border-width = 0) { .uk-table-striped > tr:nth-of-type(even):last-child, .uk-table-striped tbody tr:nth-of-type(even):last-child { border-bottom-color: @inverse-table-striped-border; } } assets/uikit-themes/master/border/accordion.less000064400000003001151666572420016067 0ustar00// // Component: Accordion // // ======================================================================== // Variables // ======================================================================== // // New // @accordion-item-border-width: 0; @accordion-item-border: transparent; // Component // ======================================================================== .hook-accordion() {} // Item // ======================================================================== .hook-accordion-item() when not (@accordion-item-border-width = 0) { &:nth-child(n+2) { padding-top: @accordion-item-margin-top; border-top: @accordion-item-border-width solid @accordion-item-border; } } // Title // ======================================================================== .hook-accordion-title() {} .hook-accordion-title-hover() {} // Content // ======================================================================== .hook-accordion-content() {} // Miscellaneous // ======================================================================== .hook-accordion-misc() {} // Inverse // ======================================================================== @inverse-accordion-item-border: @inverse-global-border; .hook-inverse-accordion-item() when not (@accordion-item-border-width = 0) { &:nth-child(n+2) { border-top-color: @inverse-accordion-item-border; } } .hook-inverse-accordion-title() {} .hook-inverse-accordion-title-hover() {} assets/uikit-themes/master/border/navbar.less000064400000023266151666572420015416 0ustar00// // Component: Navbar // // ======================================================================== // Variables // ======================================================================== // // New // @navbar-mode: ~''; // border, border-always, rail, frame @navbar-mode-border-vertical: ~''; // partial, all @navbar-border-width: 0; @navbar-border: transparent; @internal-navbar-border-mode: ~''; // overlay @navbar-dropdown-border-width: 0; @navbar-dropdown-border: transparent; // Component // ======================================================================== .hook-navbar() {} // Container // ======================================================================== .hook-navbar-container() {} // Nav // ======================================================================== .hook-navbar-nav-item() {} .hook-navbar-nav-item-hover() {} .hook-navbar-nav-item-onclick() {} .hook-navbar-nav-item-active() {} // Item // ======================================================================== .hook-navbar-item() {} // Toggle // ======================================================================== .hook-navbar-toggle() {} .hook-navbar-toggle-hover() {} .hook-navbar-toggle-icon() {} .hook-navbar-toggle-icon-hover() {} // Subtitle // ======================================================================== .hook-navbar-subtitle() {} // Style modifiers // ======================================================================== .hook-navbar-primary() {} .hook-navbar-transparent() {} .hook-navbar-sticky() {} // Dropdown // ======================================================================== .hook-navbar-dropdown() when not (@navbar-dropdown-border-width = 0) { border: @navbar-dropdown-border-width solid @navbar-dropdown-border; } .hook-navbar-dropdown-large() {} .hook-navbar-dropdown-dropbar() when not (@navbar-dropdown-border-width = 0) { border: none; } .hook-navbar-dropdown-dropbar-large() {} // Dropdown nav // ======================================================================== .hook-navbar-dropdown-nav() {} .hook-navbar-dropdown-nav-item() {} .hook-navbar-dropdown-nav-item-hover() {} .hook-navbar-dropdown-nav-subtitle() {} .hook-navbar-dropdown-nav-header() {} .hook-navbar-dropdown-nav-divider() {} // Dropbar // ======================================================================== .hook-navbar-dropbar() {} // Miscellaneous // ======================================================================== // // Mode Border Vertical // .hook-navbar-misc() when (@navbar-mode-border-vertical = partial) and not (@navbar-border-width = 0), (@navbar-mode-border-vertical = partial) and not (@navbar-border-width = 0) { .uk-navbar-left { padding-right: @container-padding-horizontal; border-right: @navbar-border-width solid @navbar-border; } .uk-navbar-right { padding-left: @container-padding-horizontal; border-left: @navbar-border-width solid @navbar-border; } /* Phone landscape and bigger */ @media (min-width: @breakpoint-small) { .uk-navbar-left { padding-right: @container-padding-horizontal-s; } .uk-navbar-right { padding-left: @container-padding-horizontal-s; } } /* Tablet landscape and bigger */ @media (min-width: @breakpoint-medium) { .uk-navbar-left { padding-right: @container-padding-horizontal-m; } .uk-navbar-right { padding-left: @container-padding-horizontal-m; } } } .hook-navbar-misc() when (@navbar-mode-border-vertical = all) and not (@navbar-border-width = 0) { .uk-navbar-left .uk-navbar-nav, .uk-navbar-left .uk-navbar-item, .uk-navbar-left .uk-navbar-toggle, .uk-navbar-center > :last-child, .uk-navbar-right .uk-navbar-nav > li:nth-last-child(n+2) > a { border-right: @navbar-border-width solid @navbar-border; } .uk-navbar-right .uk-navbar-nav, .uk-navbar-right .uk-navbar-item, .uk-navbar-right .uk-navbar-toggle, .uk-navbar-center .uk-navbar-nav, .uk-navbar-center .uk-navbar-item, .uk-navbar-center .uk-navbar-toggle, .uk-navbar-left .uk-navbar-nav > li:nth-child(n+2) > a, .uk-navbar-center .uk-navbar-nav > li:nth-child(n+2) > a { border-left: @navbar-border-width solid @navbar-border; } } .hook-navbar-misc() when (@navbar-mode-border-vertical = all) and not (@navbar-border-width = 0) and not (@navbar-mode = frame) { .uk-navbar-right { border-right: @navbar-border-width solid @navbar-border; } .uk-navbar-left { border-left: @navbar-border-width solid @navbar-border; } } .hook-navbar-misc() when (@navbar-mode-border-vertical = all) and not (@navbar-border-width = 0) and (@navbar-mode = frame) { .uk-navbar-justify > :last-child > :not(.uk-navbar-nav):last-child, .uk-navbar-justify > :last-child > .uk-navbar-nav > :last-child > a { border-right: none; } } // // Mode Border + Border Always // .hook-navbar-container() when (@navbar-mode = border) and not (@navbar-border-width = 0) { border-bottom-color: @navbar-border; } .hook-navbar-misc() when (@navbar-mode = border) and not (@navbar-border-width = 0) { .uk-navbar-container { border-bottom: @navbar-border-width solid transparent; } } .hook-navbar-misc() when (@navbar-mode = border-always) and not (@navbar-border-width = 0) { .uk-navbar-container { border-bottom: @navbar-border-width solid @navbar-border; } } .hook-navbar-container() when (@navbar-mode = border) and not (@navbar-border-width = 0) and not (@navbar-mode-border-vertical = ~'') { .tm-header .tm-headerbar-top + &:not(.uk-navbar-sticky), .tm-header .tm-headerbar-top + * &:not(.uk-navbar-sticky) { border-top: @navbar-border-width solid @navbar-border; } } .hook-navbar-misc() when (@navbar-mode = border-always) and not (@navbar-border-width = 0) and not (@navbar-mode-border-vertical = ~'') { .tm-header .tm-headerbar-top + .uk-navbar-container:not(.uk-navbar-sticky), .tm-header .tm-headerbar-top + * .uk-navbar-container:not(.uk-navbar-sticky) { border-top: @navbar-border-width solid @navbar-border; } } .hook-navbar-misc() when ((@navbar-mode = border) and not (@navbar-border-width = 0) and (@internal-navbar-border-mode = overlay)), ((@navbar-mode = border-always) and not (@navbar-border-width = 0) and (@internal-navbar-border-mode = overlay)) { .uk-navbar-left, .uk-navbar-right, .uk-navbar-center { margin-bottom: -@navbar-border-width; } } // // Mode Rail // .hook-navbar() when (@navbar-mode = rail) and not (@navbar-border-width = 0) { border-bottom: @navbar-border-width solid @navbar-border; .tm-header .tm-headerbar-top + * & { border-top: @navbar-border-width solid @navbar-border; } .tm-header .tm-headerbar-top + * .uk-navbar-sticky > * > & { border-top-color: transparent !important; } } // // Mode Frame // .hook-navbar() when (@navbar-mode = frame) and not (@navbar-border-width = 0) { border: @navbar-border-width solid @navbar-border; } // Inverse // ======================================================================== @inverse-navbar-border: transparent; .hook-inverse-navbar-nav-item() {} .hook-inverse-navbar-nav-item-hover() {} .hook-inverse-navbar-nav-item-onclick() {} .hook-inverse-navbar-nav-item-active() {} .hook-inverse-navbar-item() {} .hook-inverse-navbar-toggle() {} .hook-inverse-navbar-toggle-hover() {} .hook-inverse() when (@navbar-mode-border-vertical = partial) and not (@navbar-border-width = 0), (@navbar-mode-border-vertical = partial) and not (@navbar-border-width = 0) { .uk-navbar-left { border-right-color: @inverse-navbar-border; } .uk-navbar-right { border-left-color: @inverse-navbar-border; } } .hook-inverse() when (@navbar-mode-border-vertical = all) and not (@navbar-border-width = 0) { .uk-navbar-left .uk-navbar-nav, .uk-navbar-left .uk-navbar-item, .uk-navbar-left .uk-navbar-toggle, .uk-navbar-center > :last-child, .uk-navbar-right .uk-navbar-nav > li:nth-last-child(n+2) > a { border-right-color: @inverse-navbar-border; } .uk-navbar-right .uk-navbar-nav, .uk-navbar-right .uk-navbar-item, .uk-navbar-right .uk-navbar-toggle, .uk-navbar-center .uk-navbar-nav, .uk-navbar-center .uk-navbar-item, .uk-navbar-center .uk-navbar-toggle, .uk-navbar-left .uk-navbar-nav > li:nth-child(n+2) > a, .uk-navbar-center .uk-navbar-nav > li:nth-child(n+2) > a { border-left-color: @inverse-navbar-border; } } .hook-inverse() when (@navbar-mode-border-vertical = all) and not (@navbar-border-width = 0) and not (@navbar-mode = frame) { .uk-navbar-right { border-right-color: @inverse-navbar-border; } .uk-navbar-left { border-left-color: @inverse-navbar-border; } } .hook-inverse() when (@navbar-mode = border) and not (@navbar-border-width = 0) { .uk-navbar-container:not(.uk-navbar-transparent), &.uk-navbar-container:not(.uk-navbar-transparent) { border-bottom-color: @inverse-navbar-border; } } .hook-inverse() when (@navbar-mode = border-always) and not (@navbar-border-width = 0) { .uk-navbar-container, &.uk-navbar-container { border-bottom-color: @inverse-navbar-border; } } .hook-inverse() when (@navbar-mode = rail) and not (@navbar-border-width = 0) { .uk-navbar { border-bottom-color: @inverse-navbar-border; } .tm-header &.tm-headerbar-top + * .uk-navbar { border-top-color: @inverse-navbar-border; } } .hook-inverse() when (@navbar-mode = frame) and not (@navbar-border-width = 0) { .uk-navbar { border-color: @inverse-navbar-border; } } assets/uikit-themes/master/border/dotnav.less000064400000004207151666572420015432 0ustar00// // Component: Dotnav // // ======================================================================== // Variables // ======================================================================== // // New // @dotnav-item-border-width: 0; @dotnav-item-border: transparent; @dotnav-item-hover-border: transparent; @dotnav-item-onclick-border: transparent; @dotnav-item-active-border: transparent; // Component // ======================================================================== .hook-dotnav() {} .hook-dotnav-item() when not (@dotnav-item-border-width = 0) { border: @dotnav-item-border-width solid @dotnav-item-border; } .hook-dotnav-item-hover() when not (@dotnav-item-border-width = 0) { border-color: @dotnav-item-hover-border; } .hook-dotnav-item-onclick() when not (@dotnav-item-border-width = 0) { border-color: @dotnav-item-onclick-border; } .hook-dotnav-item-active() when not (@dotnav-item-border-width = 0) { border-color: @dotnav-item-active-border; } // Miscellaneous // ======================================================================== .hook-dotnav-misc() {} // Inverse // ======================================================================== @inverse-dotnav-item-border: transparent; @inverse-dotnav-item-hover-border: transparent; @inverse-dotnav-item-onclick-border: transparent; @inverse-dotnav-item-active-border: transparent; .hook-inverse-dotnav() {} .hook-inverse-dotnav-item() when not (@dotnav-item-border-width = 0) { border-color: @inverse-dotnav-item-border; } .hook-inverse-dotnav-item-hover() when not (@dotnav-item-border-width = 0) { border-color: @inverse-dotnav-item-hover-border; } .hook-inverse-dotnav-item-onclick() when not (@dotnav-item-border-width = 0) { border-color: @inverse-dotnav-item-onclick-border; } .hook-inverse-dotnav-item-active() when not (@dotnav-item-border-width = 0) { border-color: @inverse-dotnav-item-active-border; } assets/uikit-themes/master/border/list.less000064400000002302151666572420015104 0ustar00// // Component: List // // ======================================================================== // Variables // ======================================================================== // // New // @list-striped-border-width: 0; @list-striped-border: transparent; // Style modifiers // ======================================================================== .hook-list-divider() {} .hook-list-striped() when not (@list-striped-border-width = 0) { &:nth-of-type(odd) { border-top: @list-striped-border-width solid @list-striped-border; border-bottom: @list-striped-border-width solid @list-striped-border; } } // Miscellaneous // ======================================================================== .hook-list-misc() {} // Inverse // ======================================================================== @inverse-list-striped-border: transparent; .hook-inverse-list-divider() {} .hook-inverse-list-striped() when not (@list-striped-border-width = 0) { &:nth-of-type(odd) { border-top-color: @inverse-list-striped-border; border-bottom-color: @inverse-list-striped-border; } } assets/uikit-themes/master/border/slidenav.less000064400000003773151666572420015753 0ustar00// // Component: Slidenav // // ======================================================================== // Variables // ======================================================================== // // New // @slidenav-border-width: 0; @slidenav-border: transparent; @slidenav-hover-border: transparent; @slidenav-active-border: transparent; // Component // ======================================================================== .hook-slidenav() when not (@slidenav-border-width = 0) { border: @slidenav-border-width solid @slidenav-border; } .hook-slidenav-hover() when not (@slidenav-border-width = 0) { border-color: @slidenav-hover-border; } .hook-slidenav-active() when not (@slidenav-border-width = 0) { border-color: @slidenav-active-border; } // Icon modifier // ======================================================================== .hook-slidenav-previous() {} .hook-slidenav-next() {} // Size modifier // ======================================================================== .hook-slidenav-large() {} // Container // ======================================================================== .hook-slidenav-container() {} // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== @inverse-slidenav-border: transparent; @inverse-slidenav-hover-border: transparent; @inverse-slidenav-active-border: transparent; .hook-inverse-slidenav() when not (@slidenav-border-width = 0) { border-color: @inverse-slidenav-border; } .hook-inverse-slidenav-hover() when not (@slidenav-border-width = 0) { border-color: @inverse-slidenav-hover-border; } .hook-inverse-slidenav-active() when not (@slidenav-border-width = 0) { border-color: @inverse-slidenav-active-border; } assets/uikit-themes/master/border/thumbnav.less000064400000004212151666572420015757 0ustar00// // Component: Thumbnav // // ======================================================================== // Variables // ======================================================================== // // New // @thumbnav-item-border-width: 0; @thumbnav-item-border: transparent; @thumbnav-item-hover-border: transparent; @thumbnav-item-active-border: transparent; // Component // ======================================================================== .hook-thumbnav() {} .hook-thumbnav-item() when not (@thumbnav-item-border-width = 0) { &::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1; transition: 0.1s ease-in-out; transition-property: border-color; } } .hook-thumbnav-item() when not (@thumbnav-item-border-width = 0) { &::before { border: @thumbnav-item-border-width solid @thumbnav-item-border; } } .hook-thumbnav-item-hover() when not (@thumbnav-item-border-width = 0) { &::before { border-color: @thumbnav-item-hover-border; } } .hook-thumbnav-item-active() when not (@thumbnav-item-border-width = 0) { &::before { border-color: @thumbnav-item-active-border; } } // Miscellaneous // ======================================================================== .hook-thumbnav-misc() {} // Inverse // ======================================================================== @inverse-thumbnav-item-border: transparent; @inverse-thumbnav-item-hover-border: transparent; @inverse-thumbnav-item-active-border: transparent; .hook-inverse-thumbnav-item() when not (@thumbnav-item-border-width = 0) { &::before { border-color: @inverse-thumbnav-item-border; } } .hook-inverse-thumbnav-item-hover() when not (@thumbnav-item-border-width = 0) { &::before { border-color: @inverse-thumbnav-item-hover-border; } } .hook-inverse-thumbnav-item-active() when not (@thumbnav-item-border-width = 0) { &::before { border-color: @inverse-thumbnav-item-active-border; } } assets/uikit-themes/master/border/totop.less000064400000003064151666572420015304 0ustar00// // Component: Totop // // ======================================================================== // Variables // ======================================================================== // // New // @totop-border-width: 0; @totop-border: transparent; @totop-hover-border: transparent; @totop-active-border: transparent; // Component // ======================================================================== .hook-totop() when not (@totop-border-width = 0) { border: @totop-border-width solid @totop-border; } .hook-totop-hover() when not (@totop-border-width = 0) { border-color: @totop-hover-border; } .hook-totop-active() when not (@totop-border-width = 0) { border-color: @totop-active-border; } // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== @inverse-totop-border: transparent; @inverse-totop-hover-border: transparent; @inverse-totop-active-border: transparent; .hook-inverse-totop() when not (@totop-border-width = 0) { border-color: @inverse-totop-border; } .hook-inverse-totop-hover() when not (@totop-border-width = 0) { border-color: @inverse-totop-hover-border; } .hook-inverse-totop-active() when not (@totop-border-width = 0) { border-color: @inverse-totop-active-border; } assets/uikit-themes/master/border/card.less000064400000016652151666572420015057 0ustar00// // Component: Card // // ======================================================================== // Variables // ======================================================================== // // New // @card-badge-border-mode: ~''; @card-badge-border-width: 0; @card-badge-border: transparent; @card-hover-border-mode: ~''; @card-hover-border-width: 0; @card-hover-border: transparent; @card-default-border-mode: ~''; @card-default-border-width: 0; @card-default-border: transparent; @card-default-hover-border: transparent; @card-primary-border-mode: ~''; @card-primary-border-width: 0; @card-primary-border: transparent; @card-primary-hover-border: transparent; @card-secondary-border-mode: ~''; @card-secondary-border-width: 0; @card-secondary-border: transparent; @card-secondary-hover-border: transparent; @internal-card-border-image-slice: ~''; @internal-card-border-image-width: ~''; @internal-card-border-image-repeat: ~''; @internal-card-hover-border-image: ~''; @internal-card-default-border-image: ~''; @internal-card-primary-border-image: ~''; @internal-card-secondary-border-image: ~''; // Component // ======================================================================== .hook-card() {} // Sections // ======================================================================== .hook-card-body() {} .hook-card-header() {} .hook-card-footer() {} // Media // ======================================================================== .hook-card-media() {} .hook-card-media-top() {} .hook-card-media-bottom() {} .hook-card-media-left() {} .hook-card-media-right() {} // Title // ======================================================================== .hook-card-title() {} // Badge // ======================================================================== .hook-card-badge() when not (@card-badge-border-width = 0) { border@{card-badge-border-mode}: @card-badge-border-width solid @card-badge-border; } // Hover modifier // ======================================================================== .hook-card-hover() when not (@card-hover-border-width = 0) and not (@internal-card-hover-border-image = ~'') { border-image-slice: @internal-card-border-image-slice !important; border-image-width: @internal-card-border-image-width !important; border-image-repeat: @internal-card-border-image-repeat !important; } // Color .hook-card-hover() when not (@card-hover-border-width = 0) { border@{card-hover-border-mode}-color: @card-hover-border; } // Image .hook-card-hover() when not (@card-hover-border-width = 0) and not (@internal-card-hover-border-image = ~'') { .svg-fill(@internal-card-hover-border-image, "#000", @card-hover-border, border-image-source); } // Style modifiers // ======================================================================== .hook-card-default() when not (@card-default-border-width = 0) and not (@internal-card-default-border-image = ~'') { border-image-slice: @internal-card-border-image-slice !important; border-image-width: @internal-card-border-image-width !important; border-image-repeat: @internal-card-border-image-repeat !important; } // Color .hook-card-default() when not (@card-default-border-width = 0) { border@{card-default-border-mode}: @card-default-border-width solid @card-default-border; } .hook-card-default-hover() when not (@card-default-border-width = 0) { border@{card-default-border-mode}-color: @card-default-hover-border; } // Image .hook-card-default() when not (@card-default-border-width = 0) and not (@internal-card-default-border-image = ~'') { .svg-fill(@internal-card-default-border-image, "#000", @card-default-border, border-image-source); } .hook-card-default-hover() when not (@card-default-border-width = 0) and not (@internal-card-default-border-image = ~'') { .svg-fill(@internal-card-default-border-image, "#000", @card-default-hover-border, border-image-source); } .hook-card-default-title() {} .hook-card-default-header() {} .hook-card-default-footer() {} // // Primary // .hook-card-primary() when not (@card-primary-border-width = 0) and not (@internal-card-primary-border-image = ~'') { border-image-slice: @internal-card-border-image-slice !important; border-image-width: @internal-card-border-image-width !important; border-image-repeat: @internal-card-border-image-repeat !important; } // Color .hook-card-primary() when not (@card-primary-border-width = 0) { border@{card-primary-border-mode}: @card-primary-border-width solid @card-primary-border; } .hook-card-primary-hover() when not (@card-primary-border-width = 0) { border@{card-primary-border-mode}-color: @card-primary-hover-border; } // Image .hook-card-primary() when not (@card-primary-border-width = 0) and not (@internal-card-primary-border-image = ~'') { .svg-fill(@internal-card-primary-border-image, "#000", @card-primary-border, border-image-source); } .hook-card-primary-hover() when not (@card-primary-border-width = 0) and not (@internal-card-primary-border-image = ~'') { .svg-fill(@internal-card-primary-border-image, "#000", @card-primary-hover-border, border-image-source); } .hook-card-primary-title() {} // // Secondary // .hook-card-secondary() when not (@card-secondary-border-width = 0) and not (@internal-card-secondary-border-image = ~'') { border-image-slice: @internal-card-border-image-slice !important; border-image-width: @internal-card-border-image-width !important; border-image-repeat: @internal-card-border-image-repeat !important; } // Color .hook-card-secondary() when not (@card-secondary-border-width = 0) { border@{card-secondary-border-mode}: @card-secondary-border-width solid @card-secondary-border; } .hook-card-secondary-hover() when not (@card-secondary-border-width = 0) { border@{card-secondary-border-mode}-color: @card-secondary-hover-border; } // Image .hook-card-secondary() when not (@card-secondary-border-width = 0) and not (@internal-card-secondary-border-image = ~'') { .svg-fill(@internal-card-secondary-border-image, "#000", @card-secondary-border, border-image-source); } .hook-card-secondary-hover() when not (@card-secondary-border-width = 0) and not (@internal-card-secondary-border-image = ~'') { .svg-fill(@internal-card-secondary-border-image, "#000", @card-secondary-hover-border, border-image-source); } .hook-card-secondary-title() {} // Miscellaneous // ======================================================================== .hook-card-misc() {} .hook-card-misc() when not (@card-hover-border-width = 0) { .uk-card-hover:not(.uk-card-default):not(.uk-card-primary):not(.uk-card-secondary) { border@{card-hover-border-mode}: @card-hover-border-width solid transparent; } } // Inverse // ======================================================================== @inverse-card-badge-border: transparent; .hook-inverse-card-badge() when not (@card-badge-border-width = 0) { border@{card-badge-border-mode}-color: @inverse-card-badge-border; } assets/uikit-themes/master/border/notification.less000064400000004174151666572420016630 0ustar00// // Component: Notification // // ======================================================================== // Variables // ======================================================================== // // New // @notification-message-border-mode: ~''; @notification-message-border-width: 0; @notification-message-border: transparent; @notification-message-primary-border: transparent; @notification-message-success-border: transparent; @notification-message-warning-border: transparent; @notification-message-danger-border: transparent; // Component // ======================================================================== .hook-notification() {} // Message // ======================================================================== .hook-notification-message() when not (@notification-message-border-width = 0) { border@{notification-message-border-mode}: @notification-message-border-width solid @notification-message-border; } // Close // ======================================================================== .hook-notification-close() {} // Style modifiers // ======================================================================== .hook-notification-message-primary() when not (@notification-message-border-width = 0) { border@{notification-message-border-mode}-color: @notification-message-primary-border; } .hook-notification-message-success() when not (@notification-message-border-width = 0) { border@{notification-message-border-mode}-color: @notification-message-success-border; } .hook-notification-message-warning() when not (@notification-message-border-width = 0) { border@{notification-message-border-mode}-color: @notification-message-warning-border; } .hook-notification-message-danger() when not (@notification-message-border-width = 0) { border@{notification-message-border-mode}-color: @notification-message-danger-border; } // Miscellaneous // ======================================================================== .hook-notification-misc() {} assets/uikit-themes/master/border/grid.less000064400000002750151666572420015065 0ustar00// // Component: Grid // // ======================================================================== // Variables // ======================================================================== @internal-grid-divider-horizontal-border-gradient: ~''; @internal-grid-divider-vertical-border-gradient: ~''; // Divider // ======================================================================== .hook-grid-divider-horizontal() when not (@internal-grid-divider-horizontal-border-gradient = ~'') { border-image: @internal-grid-divider-horizontal-border-gradient; border-image-slice: 1; // Fix Safari setting 3px `border-width` if `border-image` is used. border-width: 0 0 0 @grid-divider-border-width; } .hook-grid-divider-vertical() when not (@internal-grid-divider-vertical-border-gradient = ~'') { border-image: @internal-grid-divider-vertical-border-gradient; border-image-slice: 1; // Fix Safari setting 3px `border-width` if `border-image` is used. border-width: @grid-divider-border-width 0 0 0; } // Miscellaneous // ======================================================================== .hook-grid-misc() {} // Inverse // ======================================================================== .hook-inverse-grid-divider-horizontal() when not (@internal-grid-divider-horizontal-border-gradient = ~'') { border-image: none; } .hook-inverse-grid-divider-vertical() when not (@internal-grid-divider-vertical-border-gradient = ~'') { border-image: none; } assets/uikit-themes/master/border/heading.less000064400000004216151666572420015536 0ustar00// // Component: Heading // // ======================================================================== // Variables // ======================================================================== @internal-heading-bullet-border-image-slice: ~''; @internal-heading-bullet-border-image-width: ~''; @internal-heading-bullet-border-image-repeat: ~''; @internal-heading-bullet-border-image: ~''; // Component // ======================================================================== .hook-heading-small() {} .hook-heading-medium() {} .hook-heading-large() {} .hook-heading-xlarge() {} .hook-heading-2xlarge() {} .hook-heading-3xlarge() {} // Divider // ======================================================================== .hook-heading-divider() {} // Bullet // ======================================================================== .hook-heading-bullet() when not (@heading-bullet-border-width = 0) and not (@internal-heading-bullet-border-image = ~'') { .svg-fill(@internal-heading-bullet-border-image, "#000", @heading-bullet-border, border-image-source); border-image-slice: @internal-heading-bullet-border-image-slice; border-image-width: @internal-heading-bullet-border-image-width; border-image-repeat: @internal-heading-bullet-border-image-repeat; } // Line // ======================================================================== .hook-heading-line() {} // Miscellaneous // ======================================================================== .hook-heading-misc() {} // Inverse // ======================================================================== .hook-inverse-heading-small() {} .hook-inverse-heading-medium() {} .hook-inverse-heading-large() {} .hook-inverse-heading-xlarge() {} .hook-inverse-heading-2xlarge() {} .hook-inverse-heading-3xlarge() {} .hook-inverse-heading-divider() {} .hook-inverse-heading-bullet() when not (@heading-bullet-border-width = 0) and not (@internal-heading-bullet-border-image = ~'') { .svg-fill(@internal-heading-bullet-border-image, "#000", @inverse-heading-bullet-border, border-image-source); } .hook-inverse-heading-line() {} assets/uikit-themes/master/border/base.less000064400000005673151666572420015061 0ustar00// // Component: Base // // ======================================================================== // Variables // ======================================================================== // // New // @base-code-border-width: 0; @base-code-border: transparent; @base-blockquote-border-mode: ~''; @base-blockquote-border-width: 0; @base-blockquote-border: transparent; @base-pre-border-mode: ~''; @base-pre-border-width: 0; @base-pre-border: transparent; // Body // ======================================================================== .hook-base-body() {} // Links // ======================================================================== .hook-base-link() {} .hook-base-link-hover() {} // Text-level semantics // ======================================================================== .hook-base-code() when not (@base-code-border-width = 0) { border: @base-code-border-width solid @base-code-border; } // Headings // ======================================================================== .hook-base-heading() {} .hook-base-h1() {} .hook-base-h2() {} .hook-base-h3() {} .hook-base-h4() {} .hook-base-h5() {} .hook-base-h6() {} // Horizontal rules // ======================================================================== .hook-base-hr() {} // Blockquotes // ======================================================================== .hook-base-blockquote() {} .hook-base-blockquote() when not (@base-blockquote-border-width = 0) { border@{base-blockquote-border-mode}: @base-blockquote-border-width solid @base-blockquote-border; } .hook-base-blockquote-footer() {} // Preformatted text // ======================================================================== .hook-base-pre() when not (@base-pre-border-width = 0) { border@{base-pre-border-mode}: @base-pre-border-width solid @base-pre-border; } // Miscellaneous // ======================================================================== .hook-base-misc() {} // Inverse // ======================================================================== @inverse-base-code-border: transparent; @inverse-base-blockquote-border: transparent; .hook-inverse-base-link() {} .hook-inverse-base-link-hover() {} .hook-inverse-base-code() when not (@base-code-border-width = 0) { border-color: @inverse-base-code-border; } .hook-inverse-base-heading() {} .hook-inverse-base-h1() {} .hook-inverse-base-h2() {} .hook-inverse-base-h3() {} .hook-inverse-base-h4() {} .hook-inverse-base-h5() {} .hook-inverse-base-h6() {} .hook-inverse-base-blockquote() when not (@base-blockquote-border-width = 0) { border@{base-blockquote-border-mode}-color: @inverse-base-blockquote-border; } .hook-inverse-base-blockquote-footer() {} .hook-inverse-base-hr() {} assets/uikit-themes/master/border/_import.less000064400000003371151666572420015611 0ustar00// Base @import "variables.less"; @import "base.less"; // Elements // @import "link.less"; @import "heading.less"; @import "divider.less"; @import "list.less"; // @import "description-list.less"; @import "table.less"; @import "icon.less"; @import "form-range.less"; @import "form.less"; @import "button.less"; // @import "progress.less"; // Layout // @import "section.less"; // @import "container.less"; // @import "tile.less"; @import "card.less"; // Common // @import "close.less"; @import "totop.less"; @import "marker.less"; @import "alert.less"; // @import "placeholder.less"; @import "badge.less"; @import "label.less"; // @import "overlay.less"; // @import "article.less"; // @import "comment.less"; @import "search.less"; // JavaScript @import "accordion.less"; // @import "drop.less"; @import "dropdown.less"; // @import "dropbar.less"; // @import "modal.less"; // @import "lightbox.less"; // @import "sticky.less"; // @import "offcanvas.less"; // @import "leader.less"; @import "notification.less"; // @import "tooltip.less"; // @import "spinner.less"; // @import "sortable.less"; // @import "countdown.less"; @import "grid.less"; // Navs @import "nav.less"; @import "navbar.less"; @import "subnav.less"; // @import "breadcrumb.less"; @import "pagination.less"; @import "tab.less"; @import "slidenav.less"; @import "dotnav.less"; @import "thumbnav.less"; // @import "iconnav.less"; // Utilities // @import "animation.less"; // @import "width.less"; // @import "height.less"; // @import "text.less"; // @import "column.less"; // @import "background.less"; // @import "align.less"; // @import "svg.less"; // @import "utility.less"; // @import "margin.less"; // @import "padding.less"; // @import "position.less"; // @import "transition.less"; // @import "inverse.less"; assets/uikit-themes/master/_import.less000064400000000654151666572420014335 0ustar00// // Fonts // @internal-fonts: ~''; .font() when not (@internal-fonts = ~'') { @import (css) 'https://fonts.googleapis.com/css?family=@{internal-fonts}'; } .font(); // // Master // @import "base/_import.less"; @import "typo/_import.less"; @import "border/_import.less"; @import "border-radius/_import.less"; @import "background-image/_import.less"; @import "box-shadow/_import.less"; @import "transform/_import.less"; assets/uikit-themes/master/box-shadow/dropdown.less000064400000002320151666572420016563 0ustar00// // Component: Dropdown // // ======================================================================== // Variables // ======================================================================== // // New // @dropdown-box-shadow: none; @dropdown-nav-divider-box-shadow: none; // Component // ======================================================================== .hook-dropdown() when not (@dropdown-box-shadow = none) { box-shadow: @dropdown-box-shadow; } // Dropbar modifier // ======================================================================== .hook-dropdown-dropbar() when not (@dropdown-box-shadow = none) { box-shadow: none; } .hook-dropdown-dropbar-large() {} // Nav // ======================================================================== .hook-dropdown-nav() {} .hook-dropdown-nav-item() {} .hook-dropdown-nav-item-hover() {} .hook-dropdown-nav-subtitle() {} .hook-dropdown-nav-header() {} .hook-dropdown-nav-divider() when not (@dropdown-nav-divider-box-shadow = none) { box-shadow: @dropdown-nav-divider-box-shadow; } // Miscellaneous // ======================================================================== .hook-dropdown-misc() {} assets/uikit-themes/master/box-shadow/progress.less000064400000001131151666572420016572 0ustar00// // Component: Progress // // ======================================================================== // Variables // ======================================================================== // // New // @progress-box-shadow: none; // Component // ======================================================================== .hook-progress() when not (@progress-box-shadow = none) { box-shadow: @progress-box-shadow; } .hook-progress-bar() {} // Miscellaneous // ======================================================================== .hook-progress-misc() {} assets/uikit-themes/master/box-shadow/subnav.less000064400000005266151666572420016241 0ustar00// // Component: Subnav // // ======================================================================== // Variables // ======================================================================== // // New // @subnav-pill-item-box-shadow: none; @subnav-pill-item-hover-box-shadow: none; @subnav-pill-item-onclick-box-shadow: none; @subnav-pill-item-active-box-shadow: none; // Component // ======================================================================== .hook-subnav() {} .hook-subnav-item() {} .hook-subnav-item-hover() {} .hook-subnav-item-active() {} // Divider modifier // ======================================================================== .hook-subnav-divider() {} // Pill modifier // ======================================================================== .hook-subnav-pill-item() when not (@subnav-pill-item-box-shadow = none) { box-shadow: @subnav-pill-item-box-shadow; } .hook-subnav-pill-item-hover() when not (@subnav-pill-item-hover-box-shadow = none) { box-shadow: @subnav-pill-item-hover-box-shadow; } .hook-subnav-pill-item-onclick() when not (@subnav-pill-item-onclick-box-shadow = none) { box-shadow: @subnav-pill-item-onclick-box-shadow; } .hook-subnav-pill-item-active() when not (@subnav-pill-item-active-box-shadow = none) { box-shadow: @subnav-pill-item-active-box-shadow; } // Disabled // ======================================================================== .hook-subnav-item-disabled() {} // Miscellaneous // ======================================================================== .hook-subnav-misc() {} // Inverse // ======================================================================== @inverse-subnav-pill-item-box-shadow: none; @inverse-subnav-pill-item-hover-box-shadow: none; @inverse-subnav-pill-item-onclick-box-shadow: none; @inverse-subnav-pill-item-active-box-shadow: none; .hook-inverse-subnav-item() {} .hook-inverse-subnav-item-hover() {} .hook-inverse-subnav-item-active() {} .hook-inverse-subnav-divider() {} .hook-inverse-subnav-pill-item() when not (@subnav-pill-item-box-shadow = none) { box-shadow: @inverse-subnav-pill-item-box-shadow; } .hook-inverse-subnav-pill-item-hover() when not (@subnav-pill-item-hover-box-shadow = none) { box-shadow: @inverse-subnav-pill-item-hover-box-shadow; } .hook-inverse-subnav-pill-item-onclick() when not (@subnav-pill-item-onclick-box-shadow = none) { box-shadow: @inverse-subnav-pill-item-onclick-box-shadow; } .hook-inverse-subnav-pill-item-active() when not (@subnav-pill-item-active-box-shadow = none) { box-shadow: @inverse-subnav-pill-item-active-box-shadow; } .hook-inverse-subnav-item-disabled() {} assets/uikit-themes/master/box-shadow/placeholder.less000064400000001117151666572420017214 0ustar00// // Component: Placeholder // // ======================================================================== // Variables // ======================================================================== // // New // @placeholder-box-shadow: none; // Component // ======================================================================== .hook-placeholder() when not (@placeholder-box-shadow = none) { box-shadow: @placeholder-box-shadow; } // Miscellaneous // ======================================================================== .hook-placeholder-misc() {} assets/uikit-themes/master/box-shadow/totop.less000064400000002726151666572420016106 0ustar00// // Component: Totop // // ======================================================================== // Variables // ======================================================================== // // New // @totop-box-shadow: none; @totop-hover-box-shadow: none; @totop-active-box-shadow: none; // Component // ======================================================================== .hook-totop() when not (@totop-box-shadow = none) { box-shadow: @totop-box-shadow; } .hook-totop-hover() when not (@totop-hover-box-shadow = none) { box-shadow: @totop-hover-box-shadow; } .hook-totop-active() when not (@totop-active-box-shadow = none) { box-shadow: @totop-active-box-shadow; } // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== @inverse-totop-box-shadow: none; @inverse-totop-hover-box-shadow: none; @inverse-totop-active-box-shadow: none; .hook-inverse-totop() when not (@totop-box-shadow = none) { box-shadow: @inverse-totop-box-shadow; } .hook-inverse-totop-hover() when not (@totop-hover-box-shadow = none) { box-shadow: @inverse-totop-hover-box-shadow; } .hook-inverse-totop-active() when not (@totop-active-box-shadow = none) { box-shadow: @inverse-totop-active-box-shadow; } assets/uikit-themes/master/box-shadow/_import.less000064400000003324151666572420016405 0ustar00// Base // @import "variables.less"; @import "base.less"; // Elements // @import "link.less"; @import "heading.less"; @import "divider.less"; @import "list.less"; @import "description-list.less"; @import "table.less"; @import "icon.less"; @import "form-range.less"; @import "form.less"; @import "button.less"; @import "progress.less"; // Layout // @import "section.less"; // @import "container.less"; // @import "tile.less"; @import "card.less"; // Common // @import "close.less"; @import "totop.less"; // @import "marker.less"; @import "alert.less"; @import "placeholder.less"; @import "badge.less"; @import "label.less"; // @import "overlay.less"; // @import "article.less"; @import "comment.less"; @import "search.less"; // JavaScript @import "accordion.less"; // @import "drop.less"; @import "dropdown.less"; @import "dropbar.less"; @import "modal.less"; // @import "sticky.less"; @import "offcanvas.less"; // @import "leader.less"; @import "notification.less"; // @import "tooltip.less"; // @import "spinner.less"; // @import "sortable.less"; // @import "countdown.less"; @import "grid.less"; // Navs @import "nav.less"; @import "navbar.less"; @import "subnav.less"; // @import "breadcrumb.less"; @import "pagination.less"; @import "tab.less"; // @import "slidenav.less"; @import "dotnav.less"; // @import "thumbnav.less"; // @import "iconnav.less"; // Utilities // @import "animation.less"; // @import "width.less"; // @import "height.less"; // @import "text.less"; // @import "column.less"; // @import "background.less"; // @import "align.less"; // @import "svg.less"; // @import "utility.less"; // @import "margin.less"; // @import "padding.less"; // @import "position.less"; // @import "transition.less"; // @import "inverse.less"; assets/uikit-themes/master/box-shadow/heading.less000064400000003563151666572420016340 0ustar00// // Component: Heading // // ======================================================================== // Variables // ======================================================================== @heading-divider-box-shadow: none; @heading-line-box-shadow: none; // Component // ======================================================================== .hook-heading-small() {} .hook-heading-medium() {} .hook-heading-large() {} .hook-heading-xlarge() {} .hook-heading-2xlarge() {} .hook-heading-3xlarge() {} // Divider // ======================================================================== .hook-heading-divider() when not (@heading-divider-box-shadow = none) { box-shadow: @heading-divider-box-shadow; } // Bullet // ======================================================================== .hook-heading-bullet() {} // Line // ======================================================================== .hook-heading-line() when not (@heading-line-box-shadow = none) { box-shadow: @heading-line-box-shadow; } // Miscellaneous // ======================================================================== .hook-heading-misc() {} // Inverse // ======================================================================== @inverse-heading-divider-box-shadow: none; @inverse-heading-line-box-shadow: none; .hook-inverse-heading-small() {} .hook-inverse-heading-medium() {} .hook-inverse-heading-large() {} .hook-inverse-heading-xlarge() {} .hook-inverse-heading-2xlarge() {} .hook-inverse-heading-3xlarge() {} .hook-inverse-heading-divider() when not (@heading-divider-box-shadow = none) { box-shadow: @inverse-heading-divider-box-shadow; } .hook-inverse-heading-bullet() {} .hook-inverse-heading-line() when not (@heading-line-box-shadow = none) { box-shadow: @inverse-heading-line-box-shadow; } assets/uikit-themes/master/box-shadow/list.less000064400000001622151666572420015706 0ustar00// // Component: List // // ======================================================================== // Variables // ======================================================================== // // New // @list-divider-box-shadow: none; // Style modifiers // ======================================================================== .hook-list-divider() when not (@list-divider-box-shadow = none) { box-shadow: @list-divider-box-shadow; } .hook-list-striped() {} // Miscellaneous // ======================================================================== .hook-list-misc() {} // Inverse // ======================================================================== @inverse-list-divider-box-shadow: none; .hook-inverse-list-divider() when not (@list-divider-box-shadow = none) { box-shadow: @inverse-list-divider-box-shadow; } .hook-inverse-list-striped() {} assets/uikit-themes/master/box-shadow/accordion.less000064400000002534151666572420016677 0ustar00// // Component: Accordion // // ======================================================================== // Variables // ======================================================================== // // New // @accordion-item-box-shadow: none; // Component // ======================================================================== .hook-accordion() {} // Item // ======================================================================== .hook-accordion-item() when not (@accordion-item-box-shadow = none) { &:nth-child(n+2) { box-shadow: @accordion-item-box-shadow; } } // Title // ======================================================================== .hook-accordion-title() {} .hook-accordion-title-hover() {} // Content // ======================================================================== .hook-accordion-content() {} // Miscellaneous // ======================================================================== .hook-accordion-misc() {} // Inverse // ======================================================================== @inverse-accordion-item-box-shadow: none; .hook-inverse-accordion-item() when not (@accordion-item-box-shadow = none) { &:nth-child(n+2) { box-shadow: @inverse-accordion-item-box-shadow; } } .hook-inverse-accordion-title() {} .hook-inverse-accordion-title-hover() {} assets/uikit-themes/master/box-shadow/offcanvas.less000064400000001476151666572420016710 0ustar00// // Component: Off-canvas // // ======================================================================== // Variables // ======================================================================== // // New // @offcanvas-bar-box-shadow: none; // Bar // ======================================================================== .hook-offcanvas-bar() when not (@offcanvas-bar-box-shadow = none) { box-shadow: @offcanvas-bar-box-shadow; } // Close // ======================================================================== .hook-offcanvas-close() {} // Overlay // ======================================================================== .hook-offcanvas-overlay() {} // Miscellaneous // ======================================================================== .hook-offcanvas-misc() {} assets/uikit-themes/master/box-shadow/base.less000064400000004167151666572420015654 0ustar00// // Component: Base // // ======================================================================== // Variables // ======================================================================== // // New // @base-hr-box-shadow: none; // Body // ======================================================================== .hook-base-body() {} // Links // ======================================================================== .hook-base-link() {} .hook-base-link-hover() {} // Text-level semantics // ======================================================================== .hook-base-code() {} // Headings // ======================================================================== .hook-base-heading() {} .hook-base-h1() {} .hook-base-h2() {} .hook-base-h3() {} .hook-base-h4() {} .hook-base-h5() {} .hook-base-h6() {} // Horizontal rules // ======================================================================== .hook-base-hr() when not (@base-hr-box-shadow = none) { &:not([class*="uk-divider"]) { box-shadow: @base-hr-box-shadow; } } // Blockquotes // ======================================================================== .hook-base-blockquote() {} .hook-base-blockquote-footer() {} // Preformatted text // ======================================================================== .hook-base-pre() {} // Miscellaneous // ======================================================================== .hook-base-misc() {} // Inverse // ======================================================================== @inverse-base-hr-box-shadow: none; .hook-inverse-base-link() {} .hook-inverse-base-link-hover() {} .hook-inverse-base-code() {} .hook-inverse-base-heading() {} .hook-inverse-base-h1() {} .hook-inverse-base-h2() {} .hook-inverse-base-h3() {} .hook-inverse-base-h4() {} .hook-inverse-base-h5() {} .hook-inverse-base-h6() {} .hook-inverse-base-blockquote() {} .hook-inverse-base-blockquote-footer() {} .hook-inverse-base-hr() when not (@base-hr-box-shadow = none) { &:not([class*="uk-divider"]) { box-shadow: @inverse-base-hr-box-shadow; } } assets/uikit-themes/master/box-shadow/grid.less000064400000002441151666572420015660 0ustar00// // Component: Grid // // ======================================================================== // Variables // ======================================================================== // // New // @grid-divider-horizontal-box-shadow: none; @grid-divider-vertical-box-shadow: none; // Divider // ======================================================================== .hook-grid-divider-horizontal() when not (@grid-divider-horizontal-box-shadow = none) { box-shadow: @grid-divider-horizontal-box-shadow; } .hook-grid-divider-vertical() when not (@grid-divider-vertical-box-shadow = none) { box-shadow: @grid-divider-vertical-box-shadow; } // Miscellaneous // ======================================================================== .hook-grid-misc() {} // Inverse // ======================================================================== @inverse-grid-divider-horizontal-box-shadow: none; @inverse-grid-divider-vertical-box-shadow: none; .hook-inverse-grid-divider-horizontal() when not (@grid-divider-horizontal-box-shadow = none) { box-shadow: @inverse-grid-divider-horizontal-box-shadow; } .hook-inverse-grid-divider-vertical() when not (@grid-divider-vertical-box-shadow = none) { box-shadow: @inverse-grid-divider-vertical-box-shadow; } assets/uikit-themes/master/box-shadow/search.less000064400000010631151666572420016200 0ustar00// // Component: Search // // ======================================================================== // Variables // ======================================================================== // // New // @search-default-input-box-shadow: none; @search-default-input-focus-box-shadow: none; @search-navbar-input-box-shadow: none; @search-navbar-input-focus-box-shadow: none; @search-medium-input-box-shadow: none; @search-medium-input-focus-box-shadow: none; @search-large-input-box-shadow: none; @search-large-input-focus-box-shadow: none; // Component // ======================================================================== .hook-search-input() {} // Icon // ======================================================================== .hook-search-icon() {} // Default modifiers // ======================================================================== .hook-search-default-input() when not (@search-default-input-box-shadow = none) { box-shadow: @search-default-input-box-shadow; } .hook-search-default-input-focus() when not (@search-default-input-focus-box-shadow = none) { box-shadow: @search-default-input-focus-box-shadow; } // Navbar modifiers // ======================================================================== .hook-search-navbar-input() when not (@search-navbar-input-box-shadow = none) { box-shadow: @search-navbar-input-box-shadow; } .hook-search-navbar-input-focus() when not (@search-navbar-input-focus-box-shadow = none) { box-shadow: @search-navbar-input-focus-box-shadow; } // Medium modifiers // ======================================================================== .hook-search-medium-input() when not (@search-medium-input-box-shadow = none) { box-shadow: @search-medium-input-box-shadow; } .hook-search-medium-input-focus() when not (@search-medium-input-focus-box-shadow = none) { box-shadow: @search-medium-input-focus-box-shadow; } // Large modifiers // ======================================================================== .hook-search-large-input() when not (@search-large-input-box-shadow = none) { box-shadow: @search-large-input-box-shadow; } .hook-search-large-input-focus() when not (@search-large-input-focus-box-shadow = none) { box-shadow: @search-large-input-focus-box-shadow; } // Toggle // ======================================================================== .hook-search-toggle() {} .hook-search-toggle-hover() {} // Miscellaneous // ======================================================================== .hook-search-misc() {} // Inverse // ======================================================================== @inverse-search-default-input-box-shadow: none; @inverse-search-default-input-focus-box-shadow: none; @inverse-search-navbar-input-box-shadow: none; @inverse-search-navbar-input-focus-box-shadow: none; @inverse-search-medium-input-box-shadow: none; @inverse-search-medium-input-focus-box-shadow: none; @inverse-search-large-input-box-shadow: none; @inverse-search-large-input-focus-box-shadow: none; .hook-inverse-search-default-input() when not (@search-default-input-box-shadow = none) { box-shadow: @inverse-search-default-input-box-shadow; } .hook-inverse-search-default-input-focus() when not (@search-default-input-focus-box-shadow = none) { box-shadow: @inverse-search-default-input-focus-box-shadow; } .hook-inverse-search-navbar-input() when not (@search-navbar-input-box-shadow = none) { box-shadow: @inverse-search-navbar-input-box-shadow; } .hook-inverse-search-navbar-input-focus() when not (@search-navbar-input-focus-box-shadow = none) { box-shadow: @inverse-search-navbar-input-focus-box-shadow; } .hook-inverse-search-medium-input() when not (@search-medium-input-box-shadow = none) { box-shadow: @inverse-search-medium-input-box-shadow; } .hook-inverse-search-medium-input-focus() when not (@search-medium-input-focus-box-shadow = none) { box-shadow: @inverse-search-medium-input-focus-box-shadow; } .hook-inverse-search-large-input() when not (@search-large-input-box-shadow = none) { box-shadow: @inverse-search-large-input-box-shadow; } .hook-inverse-search-large-input-focus() when not (@search-large-input-focus-box-shadow = none) { box-shadow: @inverse-search-large-input-focus-box-shadow; } .hook-inverse-search-toggle() {} .hook-inverse-search-toggle-hover() {} assets/uikit-themes/master/box-shadow/table.less000064400000002654151666572420016030 0ustar00// // Component: Table // // ======================================================================== // Variables // ======================================================================== // // New // @table-divider-box-shadow: none; // Component // ======================================================================== .hook-table-header-cell() {} .hook-table-cell() {} .hook-table-footer() {} .hook-table-caption() {} .hook-table-row-active() {} // Style modifiers // ======================================================================== .hook-table-divider() when not (@table-divider-box-shadow = none) { box-shadow: @table-divider-box-shadow; } .hook-table-striped() {} .hook-table-hover() {} // Size modifier // ======================================================================== .hook-table-small() {} .hook-table-large() {} // Miscellaneous // ======================================================================== .hook-table-misc() {} // Inverse // ======================================================================== @inverse-table-divider-box-shadow: none; .hook-inverse-table-header-cell() {} .hook-inverse-table-caption() {} .hook-inverse-table-row-active() {} .hook-inverse-table-divider() when not (@table-divider-box-shadow = none) { box-shadow: @inverse-table-divider-box-shadow; } .hook-inverse-table-striped() {} .hook-inverse-table-hover() {} assets/uikit-themes/master/box-shadow/card.less000064400000005757151666572420015661 0ustar00// // Component: Card // // ======================================================================== // Variables // ======================================================================== // // New // @card-hover-box-shadow: none; @internal-card-hover-transition-box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); @card-default-box-shadow: none; @card-default-hover-box-shadow: none; @card-primary-box-shadow: none; @card-primary-hover-box-shadow: none; @card-secondary-box-shadow: none; @card-secondary-hover-box-shadow: none; // Component // ======================================================================== .hook-card() {} // Sections // ======================================================================== .hook-card-body() {} .hook-card-header() {} .hook-card-footer() {} // Media // ======================================================================== .hook-card-media() {} .hook-card-media-top() {} .hook-card-media-bottom() {} .hook-card-media-left() {} .hook-card-media-right() {} // Title // ======================================================================== .hook-card-title() {} // Badge // ======================================================================== .hook-card-badge() {} // Hover modifier // ======================================================================== .hook-card-hover() when not (@card-hover-box-shadow = none) { box-shadow: @card-hover-box-shadow; } // Style modifiers // ======================================================================== .hook-card-default() when not (@card-default-box-shadow = none) { box-shadow: @card-default-box-shadow; } .hook-card-default-title() {} .hook-card-default-hover() when not (@card-default-hover-box-shadow = none) { box-shadow: @card-default-hover-box-shadow; } .hook-card-default-header() {} .hook-card-default-footer() {} // // Primary // .hook-card-primary() when not (@card-primary-box-shadow = none) { box-shadow: @card-primary-box-shadow; } .hook-card-primary-title() {} .hook-card-primary-hover() when not (@card-primary-hover-box-shadow = none) { box-shadow: @card-primary-hover-box-shadow; } // // Secondary // .hook-card-secondary() when not (@card-secondary-box-shadow = none) { box-shadow: @card-secondary-box-shadow; } .hook-card-secondary-title() {} .hook-card-secondary-hover() when not (@card-secondary-hover-box-shadow = none) { box-shadow: @card-secondary-hover-box-shadow; } // Miscellaneous // ======================================================================== .hook-card-misc() when not (@card-hover-box-shadow = none) { .uk-card-hover:not(.uk-card-default):not(.uk-card-primary):not(.uk-card-secondary) { box-shadow: @internal-card-hover-transition-box-shadow; } } // Inverse // ======================================================================== .hook-inverse-card-badge() {} assets/uikit-themes/master/box-shadow/description-list.less000064400000001472151666572420020232 0ustar00// // Component: Description list // // ======================================================================== // Variables // ======================================================================== // // New // @description-list-divider-term-box-shadow: none; // Component // ======================================================================== .hook-description-list-term() {} .hook-description-list-description() {} // Style modifier // ======================================================================== .hook-description-list-divider-term() when not (@description-list-divider-term-box-shadow = none) { box-shadow: @description-list-divider-term-box-shadow; } // Miscellaneous // ======================================================================== .hook-description-list-misc() {} assets/uikit-themes/master/box-shadow/button.less000064400000012562151666572420016253 0ustar00// // Component: Button // // ======================================================================== // Variables // ======================================================================== // // New // @button-default-box-shadow: none; @button-default-hover-box-shadow: none; @button-default-active-box-shadow: none; @button-primary-box-shadow: none; @button-primary-hover-box-shadow: none; @button-primary-active-box-shadow: none; @button-secondary-box-shadow: none; @button-secondary-hover-box-shadow: none; @button-secondary-active-box-shadow: none; @button-danger-box-shadow: none; @button-danger-hover-box-shadow: none; @button-danger-active-box-shadow: none; // Component // ======================================================================== .hook-button() {} .hook-button-hover() {} .hook-button-active() {} // Style modifiers // ======================================================================== .hook-button-default() when not (@button-default-box-shadow = none) { box-shadow: @button-default-box-shadow; } .hook-button-default-hover() when not (@button-default-hover-box-shadow = none) { box-shadow: @button-default-hover-box-shadow; } .hook-button-default-active() when not (@button-default-active-box-shadow = none) { box-shadow: @button-default-active-box-shadow; } // // Primary // .hook-button-primary() when not (@button-primary-box-shadow = none) { box-shadow: @button-primary-box-shadow; } .hook-button-primary-hover() when not (@button-primary-hover-box-shadow = none) { box-shadow: @button-primary-hover-box-shadow; } .hook-button-primary-active() when not (@button-primary-active-box-shadow = none) { box-shadow: @button-primary-active-box-shadow; } // // Secondary // .hook-button-secondary() when not (@button-secondary-box-shadow = none) { box-shadow: @button-secondary-box-shadow; } .hook-button-secondary-hover() when not (@button-secondary-hover-box-shadow = none) { box-shadow: @button-secondary-hover-box-shadow; } .hook-button-secondary-active() when not (@button-secondary-active-box-shadow = none) { box-shadow: @button-secondary-active-box-shadow; } // // Danger // .hook-button-danger() when not (@button-danger-box-shadow = none) { box-shadow: @button-danger-box-shadow; } .hook-button-danger-hover() when not (@button-danger-hover-box-shadow = none) { box-shadow: @button-danger-hover-box-shadow; } .hook-button-danger-active() when not (@button-danger-active-box-shadow = none) { box-shadow: @button-danger-active-box-shadow; } // Disabled // ======================================================================== .hook-button-disabled() { box-shadow: none; } // Size modifiers // ======================================================================== .hook-button-small() {} .hook-button-large() {} // Text modifier // ======================================================================== .hook-button-text() {} .hook-button-text-hover() {} .hook-button-text-disabled() {} // Link modifier // ======================================================================== .hook-button-link() {} // Miscellaneous // ======================================================================== .hook-button-misc() {} // Inverse // ======================================================================== @inverse-button-default-box-shadow: none; @inverse-button-default-hover-box-shadow: none; @inverse-button-default-active-box-shadow: none; @inverse-button-primary-box-shadow: none; @inverse-button-primary-hover-box-shadow: none; @inverse-button-primary-active-box-shadow: none; @inverse-button-secondary-box-shadow: none; @inverse-button-secondary-hover-box-shadow: none; @inverse-button-secondary-active-box-shadow: none; .hook-inverse-button-default() when not (@button-default-box-shadow = none) { box-shadow: @inverse-button-default-box-shadow; } .hook-inverse-button-default-hover() when not (@button-default-hover-box-shadow = none) { box-shadow: @inverse-button-default-hover-box-shadow; } .hook-inverse-button-default-active() when not (@button-default-active-box-shadow = none) { box-shadow: @inverse-button-default-active-box-shadow; } .hook-inverse-button-primary() when not (@button-primary-box-shadow = none) { box-shadow: @inverse-button-primary-box-shadow; } .hook-inverse-button-primary-hover() when not (@button-primary-hover-box-shadow = none) { box-shadow: @inverse-button-primary-hover-box-shadow; } .hook-inverse-button-primary-active() when not (@button-primary-active-box-shadow = none) { box-shadow: @inverse-button-primary-active-box-shadow; } .hook-inverse-button-secondary() when not (@button-secondary-box-shadow = none) { box-shadow: @inverse-button-secondary-box-shadow; } .hook-inverse-button-secondary-hover() when not (@button-secondary-hover-box-shadow = none) { box-shadow: @inverse-button-secondary-hover-box-shadow; } .hook-inverse-button-secondary-active() when not (@button-secondary-active-box-shadow = none) { box-shadow: @inverse-button-secondary-active-box-shadow; } .hook-inverse-button-text() {} .hook-inverse-button-text-hover() {} .hook-inverse-button-text-disabled() {} .hook-inverse-button-link() {} assets/uikit-themes/master/box-shadow/modal.less000064400000002610151666572420016025 0ustar00// // Component: Modal // // ======================================================================== // Variables // ======================================================================== // // New // @modal-dialog-box-shadow: none; // Component // ======================================================================== .hook-modal() {} // Dialog // ======================================================================== .hook-modal-dialog() when not (@modal-dialog-box-shadow = none) { box-shadow: @modal-dialog-box-shadow; } // Full // ======================================================================== .hook-modal-full() {} // Sections // ======================================================================== .hook-modal-header() {} .hook-modal-body() {} .hook-modal-footer() {} // Title // ======================================================================== .hook-modal-title() {} // Close // ======================================================================== .hook-modal-close() {} .hook-modal-close-hover() {} .hook-modal-close-default() {} .hook-modal-close-default-hover() {} .hook-modal-close-outside() {} .hook-modal-close-outside-hover() {} .hook-modal-close-full() {} .hook-modal-close-full-hover() {} // Miscellaneous // ======================================================================== .hook-modal-misc() {} assets/uikit-themes/master/box-shadow/alert.less000064400000001606151666572420016044 0ustar00// // Component: Alert // // ======================================================================== // Variables // ======================================================================== // // New // @alert-box-shadow: none; // Component // ======================================================================== .hook-alert() when not (@alert-box-shadow = none) { box-shadow: @alert-box-shadow; } // Close // ======================================================================== .hook-alert-close() {} .hook-alert-close-hover() {} // Style modifiers // ======================================================================== .hook-alert-primary() {} .hook-alert-success() {} .hook-alert-warning() {} .hook-alert-danger() {} // Miscellaneous // ======================================================================== .hook-alert-misc() {} assets/uikit-themes/master/box-shadow/nav.less000064400000010311151666572420015512 0ustar00// // Component: Nav // // ======================================================================== // Variables // ======================================================================== // // New // @nav-default-item-hover-box-shadow: none; @nav-default-divider-box-shadow: none; @nav-primary-divider-box-shadow: none; @nav-secondary-divider-box-shadow: none; @nav-dividers-box-shadow: none; // Sublists // ======================================================================== .hook-nav-sub() {} // Header // ======================================================================== .hook-nav-header() {} // Divider // ======================================================================== .hook-nav-divider() {} // Default style modifier // ======================================================================== .hook-nav-default() {} .hook-nav-default-item() {} .hook-nav-default-item-hover() when not (@nav-default-item-hover-box-shadow = none) { box-shadow: @nav-default-item-hover-box-shadow; } .hook-nav-default-item-active() {} .hook-nav-default-subtitle() {} .hook-nav-default-header() {} .hook-nav-default-divider() when not (@nav-default-divider-box-shadow = none) { box-shadow: @nav-default-divider-box-shadow; } // Primary style modifier // ======================================================================== .hook-nav-primary() {} .hook-nav-primary-item() {} .hook-nav-primary-item-hover() {} .hook-nav-primary-item-active() {} .hook-nav-primary-subtitle() {} .hook-nav-primary-header() {} .hook-nav-primary-divider() when not (@nav-primary-divider-box-shadow = none) { box-shadow: @nav-primary-divider-box-shadow; } // Secondary style modifier // ======================================================================== .hook-nav-secondary() {} .hook-nav-secondary-item() {} .hook-nav-secondary-item-hover() {} .hook-nav-secondary-item-active() {} .hook-nav-secondary-subtitle() {} .hook-nav-secondary-subtitle-hover() {} .hook-nav-secondary-subtitle-active() {} .hook-nav-secondary-header() {} .hook-nav-secondary-divider() when not (@nav-secondary-divider-box-shadow = none) { box-shadow: @nav-secondary-divider-box-shadow; } // Style modifier // ======================================================================== .hook-nav-dividers() when not (@nav-dividers-box-shadow = none) { box-shadow: @nav-dividers-box-shadow; } // Miscellaneous // ======================================================================== .hook-nav-misc() {} // Inverse // ======================================================================== @inverse-nav-default-item-hover-box-shadow: none; @inverse-nav-default-divider-box-shadow: none; @inverse-nav-primary-divider-box-shadow: none; @inverse-nav-secondary-divider-box-shadow: none; @inverse-nav-dividers-box-shadow: none; .hook-inverse-nav-default-item() {} .hook-inverse-nav-default-item-hover() when not (@nav-default-item-hover-box-shadow = none) { box-shadow: @inverse-nav-default-item-hover-box-shadow; } .hook-inverse-nav-default-item-active() {} .hook-inverse-nav-default-header() {} .hook-inverse-nav-default-divider() when not (@nav-default-divider-box-shadow = none) { box-shadow: @inverse-nav-default-divider-box-shadow; } .hook-inverse-nav-primary-item() {} .hook-inverse-nav-primary-item-hover() {} .hook-inverse-nav-primary-item-active() {} .hook-inverse-nav-primary-header() {} .hook-inverse-nav-primary-divider() when not (@nav-default-divider-box-shadow = none) { box-shadow: @inverse-nav-default-divider-box-shadow; } .hook-inverse-nav-secondary-item() {} .hook-inverse-nav-secondary-item-hover() {} .hook-inverse-nav-secondary-item-active() {} .hook-inverse-nav-secondary-subtitle() {} .hook-inverse-nav-secondary-subtitle-hover() {} .hook-inverse-nav-secondary-subtitle-active() {} .hook-inverse-nav-secondary-header() {} .hook-inverse-nav-secondary-divider() when not (@nav-secondary-divider-box-shadow = none) { box-shadow: @inverse-nav-secondary-divider-box-shadow; } .hook-inverse-nav-dividers() when not (@nav-dividers-box-shadow = none) { box-shadow: @inverse-nav-dividers-box-shadow; } assets/uikit-themes/master/box-shadow/divider.less000064400000003571151666572420016366 0ustar00// // Component: Divider // // ======================================================================== // Variables // ======================================================================== // // New // @divider-icon-line-box-shadow: none; @divider-small-box-shadow: none; @divider-vertical-box-shadow: none; // Icon // ======================================================================== .hook-divider-icon() {} .hook-divider-icon-line() when not (@divider-icon-line-box-shadow = none) { box-shadow: @divider-icon-line-box-shadow; } .hook-divider-icon-line-left() {} .hook-divider-icon-line-right() {} // Small // ======================================================================== .hook-divider-small() when not (@divider-small-box-shadow = none) { box-shadow: @divider-small-box-shadow; } // Vertical // ======================================================================== .hook-divider-vertical() when not (@divider-vertical-box-shadow = none) { box-shadow: @divider-vertical-box-shadow; } // Miscellaneous // ======================================================================== .hook-divider-misc() {} // Inverse // ======================================================================== @inverse-divider-icon-line-box-shadow: none; @inverse-divider-small-box-shadow: none; @inverse-divider-vertical-box-shadow: none; .hook-inverse-divider-icon() {} .hook-inverse-divider-icon-line() when not (@divider-icon-line-box-shadow = none) { box-shadow: @inverse-divider-icon-line-box-shadow; } .hook-inverse-divider-small() when not (@divider-small-box-shadow = none) { box-shadow: @inverse-divider-small-box-shadow; } .hook-inverse-divider-vertical() when not (@divider-vertical-box-shadow = none) { box-shadow: @inverse-divider-vertical-box-shadow; } assets/uikit-themes/master/box-shadow/form.less000064400000007564151666572420015711 0ustar00// // Component: Form // // ======================================================================== // Variables // ======================================================================== // // New // @form-box-shadow: none; @form-focus-box-shadow: none; @form-disabled-box-shadow: none; @form-danger-box-shadow: none; @form-success-box-shadow: none; @form-blank-focus-box-shadow: none; @form-radio-box-shadow: none; @form-radio-focus-box-shadow: none; @form-radio-checked-box-shadow: none; // Component // ======================================================================== .hook-form() when not (@form-box-shadow = none) { box-shadow: @form-box-shadow; } .hook-form-single-line() {} .hook-form-multi-line() {} .hook-form-focus() when not (@form-focus-box-shadow = @form-box-shadow) { box-shadow: @form-focus-box-shadow; } .hook-form-disabled() when not (@form-box-shadow = none) { box-shadow: @form-disabled-box-shadow; } // Style modifiers // ======================================================================== .hook-form-danger() when not (@form-danger-box-shadow = none) { box-shadow: @form-danger-box-shadow; } .hook-form-success() when not (@form-success-box-shadow = none) { box-shadow: @form-success-box-shadow; } .hook-form-blank() when not (@form-box-shadow = none) { box-shadow: none; } .hook-form-blank-focus() when not (@form-blank-focus-box-shadow = none) { box-shadow: @form-blank-focus-box-shadow; } // Radio and checkbox // ======================================================================== .hook-form-radio() when not (@form-radio-box-shadow = none) { box-shadow: @form-radio-box-shadow; } .hook-form-radio-focus() when not (@form-radio-focus-box-shadow = none) { box-shadow: @form-radio-focus-box-shadow; } .hook-form-radio-checked() when not (@form-radio-checked-box-shadow = none) { box-shadow: @form-radio-checked-box-shadow; } .hook-form-radio-checked-focus() {} .hook-form-radio-disabled() when not (@form-radio-box-shadow = none) { box-shadow: none; } // Legend // ======================================================================== .hook-form-legend() {} // Label // ======================================================================== .hook-form-label() {} // Layout // ======================================================================== .hook-form-stacked-label() {} .hook-form-horizontal-label() {} // Icon // ======================================================================== .hook-form-icon() {} // Miscellaneous // ======================================================================== .hook-form-misc() {} // Inverse // ======================================================================== @inverse-form-box-shadow: none; @inverse-form-focus-box-shadow: none; @inverse-form-radio-box-shadow: none; @inverse-form-radio-focus-box-shadow: none; @inverse-form-radio-checked-box-shadow: none; .hook-inverse-form() when not (@form-box-shadow = none) { box-shadow: @inverse-form-box-shadow; } .hook-inverse-form-focus() when not (@form-focus-box-shadow = none) { box-shadow: @inverse-form-focus-box-shadow; } .hook-inverse-form-radio() when not (@form-radio-box-shadow = none) { box-shadow: @inverse-form-radio-box-shadow; } .hook-inverse-form-radio-focus() when not (@form-radio-focus-box-shadow = none) { box-shadow: @inverse-form-radio-focus-box-shadow; } .hook-inverse-form-radio-checked() when not (@form-radio-checked-box-shadow = none) { box-shadow: @inverse-form-radio-checked-box-shadow; } .hook-inverse-form-radio-checked-focus() {} .hook-inverse-form-label() {} .hook-inverse-form-icon() {} assets/uikit-themes/master/box-shadow/dotnav.less000064400000003765151666572420016240 0ustar00// // Component: Dotnav // // ======================================================================== // Variables // ======================================================================== // // New // @dotnav-item-box-shadow: none; @dotnav-item-hover-box-shadow: none; @dotnav-item-onclick-box-shadow: none; @dotnav-item-active-box-shadow: none; // Component // ======================================================================== .hook-dotnav() {} .hook-dotnav-item() when not (@dotnav-item-box-shadow = none) { box-shadow: @dotnav-item-box-shadow; } .hook-dotnav-item-hover() when not (@dotnav-item-hover-box-shadow = none) { box-shadow: @dotnav-item-hover-box-shadow; } .hook-dotnav-item-onclick() when not (@dotnav-item-onclick-box-shadow = none) { box-shadow: @dotnav-item-onclick-box-shadow; } .hook-dotnav-item-active() when not (@dotnav-item-active-box-shadow = none) { box-shadow: @dotnav-item-active-box-shadow; } // Miscellaneous // ======================================================================== .hook-dotnav-misc() {} // Inverse // ======================================================================== @inverse-dotnav-item-box-shadow: none; @inverse-dotnav-item-hover-box-shadow: none; @inverse-dotnav-item-onclick-box-shadow: none; @inverse-dotnav-item-active-box-shadow: none; .hook-inverse-dotnav() {} .hook-inverse-dotnav-item() when not (@dotnav-item-box-shadow = none) { box-shadow: @inverse-dotnav-item-box-shadow; } .hook-inverse-dotnav-item-hover() when not (@dotnav-item-hover-box-shadow = none) { box-shadow: @inverse-dotnav-item-hover-box-shadow; } .hook-inverse-dotnav-item-onclick() when not (@dotnav-item-onclick-box-shadow = none) { box-shadow: @inverse-dotnav-item-onclick-box-shadow; } .hook-inverse-dotnav-item-active() when not (@dotnav-item-active-box-shadow = none) { box-shadow: @inverse-dotnav-item-active-box-shadow; } assets/uikit-themes/master/box-shadow/navbar.less000064400000007303151666572420016206 0ustar00// // Component: Navbar // // ======================================================================== // Variables // ======================================================================== // // New // @navbar-box-shadow: none; @navbar-nav-item-hover-box-shadow: none; @navbar-nav-item-active-box-shadow: none; @navbar-sticky-box-shadow: none; @navbar-dropdown-box-shadow: none; // Component // ======================================================================== .hook-navbar() {} // Container // ======================================================================== // // 1. Make sure box shadow is not shown below content // `z-index` is taken from `uk-navbar-center` // 2. This means the toolbar and headerbar also need a `z-index`, so // there dropdowns are shown above the navbar // .hook-navbar-container() when not (@navbar-box-shadow = none) { box-shadow: @navbar-box-shadow; // 1 position: relative; z-index: @global-z-index - 10; } // 2 .tm-toolbar when not (@navbar-box-shadow = none) { z-index: @global-z-index - 10 + 2; } .tm-headerbar-top when not (@navbar-box-shadow = none) { position: relative; z-index: @global-z-index - 10 + 1; } // Nav // ======================================================================== .hook-navbar-nav-item() {} .hook-navbar-nav-item-hover() when not (@navbar-nav-item-hover-box-shadow = none) { box-shadow: @navbar-nav-item-hover-box-shadow; } .hook-navbar-nav-item-onclick() {} .hook-navbar-nav-item-active() when not (@navbar-nav-item-active-box-shadow = none) { box-shadow: @navbar-nav-item-active-box-shadow; } // Item // ======================================================================== .hook-navbar-item() {} // Toggle // ======================================================================== .hook-navbar-toggle() {} .hook-navbar-toggle-hover() {} .hook-navbar-toggle-icon() {} .hook-navbar-toggle-icon-hover() {} // Subtitle // ======================================================================== .hook-navbar-subtitle() {} // Style modifiers // ======================================================================== .hook-navbar-primary() {} .hook-navbar-transparent() {} .hook-navbar-sticky() when not (@navbar-sticky-box-shadow = none) { &:not(.uk-navbar-transparent) { box-shadow: @navbar-sticky-box-shadow; } } // Dropdown // ======================================================================== .hook-navbar-dropdown() when not (@navbar-dropdown-box-shadow = none) { box-shadow: @navbar-dropdown-box-shadow; } .hook-navbar-dropdown-large() {} .hook-navbar-dropdown-dropbar() when not (@navbar-dropdown-box-shadow = none) { box-shadow: none; } .hook-navbar-dropdown-dropbar-large() {} // Dropdown nav // ======================================================================== .hook-navbar-dropdown-nav() {} .hook-navbar-dropdown-nav-item() {} .hook-navbar-dropdown-nav-item-hover() {} .hook-navbar-dropdown-nav-subtitle() {} .hook-navbar-dropdown-nav-header() {} .hook-navbar-dropdown-nav-divider() {} // Dropbar // ======================================================================== .hook-navbar-dropbar() {} // Miscellaneous // ======================================================================== .hook-navbar-misc() {} // Inverse // ======================================================================== .hook-inverse-navbar-nav-item() {} .hook-inverse-navbar-nav-item-hover() {} .hook-inverse-navbar-nav-item-onclick() {} .hook-inverse-navbar-nav-item-active() {} .hook-inverse-navbar-item() {} .hook-inverse-navbar-toggle() {} .hook-inverse-navbar-toggle-hover() {} assets/uikit-themes/master/box-shadow/tab.less000064400000002606151666572420015504 0ustar00// // Component: Tab // // ======================================================================== // Variables // ======================================================================== // // New // @tab-box-shadow: none; // Component // ======================================================================== .hook-tab() when not (@tab-box-shadow = none) { &::before { box-shadow: @tab-box-shadow; } } // Items // ======================================================================== .hook-tab-item() {} .hook-tab-item-hover() {} .hook-tab-item-active() {} .hook-tab-item-disabled() {} // Position modifiers // ======================================================================== .hook-tab-bottom() {} .hook-tab-bottom-item() {} .hook-tab-left() {} .hook-tab-left-item() {} .hook-tab-right() {} .hook-tab-right-item() {} // Miscellaneous // ======================================================================== .hook-tab-misc() {} // Inverse // ======================================================================== @inverse-tab-box-shadow: none; .hook-inverse-tab() when not (@tab-box-shadow = none) { &::before { box-shadow: @inverse-tab-box-shadow; } } .hook-inverse-tab-item() {} .hook-inverse-tab-item-hover() {} .hook-inverse-tab-item-active() {} .hook-inverse-tab-item-disabled() {} assets/uikit-themes/master/box-shadow/notification.less000064400000002136151666572420017422 0ustar00// // Component: Notification // // ======================================================================== // Variables // ======================================================================== // // New // @notification-message-box-shadow: none; // Component // ======================================================================== .hook-notification() {} // Message // ======================================================================== .hook-notification-message() when not (@notification-message-box-shadow = none) { box-shadow: @notification-message-box-shadow; } // Close // ======================================================================== .hook-notification-close() {} // Style modifiers // ======================================================================== .hook-notification-message-primary() {} .hook-notification-message-success() {} .hook-notification-message-warning() {} .hook-notification-message-danger() {} // Miscellaneous // ======================================================================== .hook-notification-misc() {} assets/uikit-themes/master/box-shadow/comment.less000064400000002543151666572420016400 0ustar00// // Component: Comment // // ======================================================================== // Variables // ======================================================================== // // New // @comment-primary-box-shadow: none; // Component // ======================================================================== .hook-comment() {} // Sections // ======================================================================== .hook-comment-body() {} .hook-comment-header() {} // Title // ======================================================================== .hook-comment-title() {} // Meta // ======================================================================== .hook-comment-meta() {} // Avatar // ======================================================================== .hook-comment-avatar() {} // List // ======================================================================== .hook-comment-list-adjacent() {} .hook-comment-list-sub() {} .hook-comment-list-sub-adjacent() {} // Style modifier // ======================================================================== .hook-comment-primary() when not (@comment-primary-box-shadow = none) { box-shadow: @comment-primary-box-shadow; } // Miscellaneous // ======================================================================== .hook-comment-misc() {} assets/uikit-themes/master/box-shadow/icon.less000064400000003463151666572420015670 0ustar00// // Component: Icon // // ======================================================================== // Variables // ======================================================================== // // New // @icon-button-box-shadow: none; @icon-button-hover-box-shadow: none; @icon-button-active-box-shadow: none; // Style modifiers // ======================================================================== // // Link // .hook-icon-link() {} .hook-icon-link-hover() {} .hook-icon-link-active() {} // // Button // .hook-icon-button() when not (@icon-button-box-shadow = none) { box-shadow: @icon-button-box-shadow; } .hook-icon-button-hover() when not (@icon-button-hover-box-shadow = none) { box-shadow: @icon-button-hover-box-shadow; } .hook-icon-button-active() when not (@icon-button-active-box-shadow = none) { box-shadow: @icon-button-active-box-shadow; } // Miscellaneous // ======================================================================== .hook-icon-misc() {} // Inverse // ======================================================================== @inverse-icon-button-box-shadow: none; @inverse-icon-button-hover-box-shadow: none; @inverse-icon-button-active-box-shadow: none; .hook-inverse-icon-link() {} .hook-inverse-icon-link-hover() {} .hook-inverse-icon-link-active() {} .hook-inverse-icon-button() when not (@icon-button-box-shadow = none) { box-shadow: @inverse-icon-button-box-shadow; } .hook-inverse-icon-button-hover() when not (@icon-button-hover-box-shadow = none) { box-shadow: @inverse-icon-button-hover-box-shadow; } .hook-inverse-icon-button-active() when not (@icon-button-active-box-shadow = none) { box-shadow: @inverse-icon-button-active-box-shadow; } assets/uikit-themes/master/box-shadow/badge.less000064400000001543151666572420015777 0ustar00// // Component: Badge // // ======================================================================== // Variables // ======================================================================== // // New // @badge-box-shadow: none; // Component // ======================================================================== .hook-badge() when not (@badge-box-shadow = none) { box-shadow: @badge-box-shadow; } .hook-badge-hover() {} // Miscellaneous // ======================================================================== .hook-badge-misc() {} // Inverse // ======================================================================== @inverse-badge-box-shadow: none; .hook-inverse-badge() when not (@badge-box-shadow = none) { box-shadow: @inverse-badge-box-shadow; } .hook-inverse-badge-hover() {} assets/uikit-themes/master/box-shadow/dropbar.less000064400000002267151666572420016372 0ustar00// // Component: Dropbar // // ======================================================================== // Variables // ======================================================================== // // New // @dropbar-top-box-shadow: none; @dropbar-bottom-box-shadow: none; @dropbar-left-box-shadow: none; @dropbar-right-box-shadow: none; // Component // ======================================================================== .hook-dropbar() {} // Direction modifier // ======================================================================== .hook-dropbar-top() when not (@dropbar-top-box-shadow = none) { box-shadow: @dropbar-top-box-shadow; } .hook-dropbar-bottom() when not (@dropbar-bottom-box-shadow = none) { box-shadow: @dropbar-bottom-box-shadow; } .hook-dropbar-left() when not (@dropbar-left-box-shadow = none) { box-shadow: @dropbar-left-box-shadow; } .hook-dropbar-right() when not (@dropbar-right-box-shadow = none) { box-shadow: @dropbar-right-box-shadow; } // Miscellaneous // ======================================================================== .hook-dropbar-misc() {} assets/uikit-themes/master/box-shadow/pagination.less000064400000003524151666572420017067 0ustar00// // Component: Pagination // // ======================================================================== // Variables // ======================================================================== // // New // @pagination-item-box-shadow: none; @pagination-item-hover-box-shadow: none; @pagination-item-active-box-shadow: none; // Component // ======================================================================== .hook-pagination() {} // Items // ======================================================================== .hook-pagination-item() when not (@pagination-item-box-shadow = none) { box-shadow: @pagination-item-box-shadow; } .hook-pagination-item-hover() when not (@pagination-item-hover-box-shadow = none) { box-shadow: @pagination-item-hover-box-shadow; } .hook-pagination-item-active() when not (@pagination-item-active-box-shadow = none) { box-shadow: @pagination-item-active-box-shadow; } .hook-pagination-item-disabled() {} // Miscellaneous // ======================================================================== .hook-pagination-misc() {} // Inverse // ======================================================================== @inverse-pagination-item-box-shadow: none; @inverse-pagination-item-hover-box-shadow: none; @inverse-pagination-item-active-box-shadow: none; .hook-inverse-pagination-item() when not (@pagination-item-box-shadow = none) { box-shadow: @inverse-pagination-item-box-shadow; } .hook-inverse-pagination-item-hover() when not (@pagination-item-hover-box-shadow = none) { box-shadow: @inverse-pagination-item-hover-box-shadow; } .hook-inverse-pagination-item-active() when not (@pagination-item-active-box-shadow = none) { box-shadow: @inverse-pagination-item-active-box-shadow; } .hook-inverse-pagination-item-disabled() {} assets/uikit-themes/master/box-shadow/form-range.less000064400000003501151666572420016766 0ustar00// // Component: Form Range // // ======================================================================== // Variables // ======================================================================== // // New // @form-range-track-box-shadow: none; @form-range-track-focus-box-shadow: none; @form-range-thumb-box-shadow: none; // Component // ======================================================================== .hook-form-range() {} // Track // ======================================================================== .hook-form-range-track() when not (@form-range-track-box-shadow = none) { box-shadow: @form-range-track-box-shadow; } .hook-form-range-track-focus() when not (@form-range-track-focus-box-shadow = none) { box-shadow: @form-range-track-focus-box-shadow; } // Thumb // ======================================================================== .hook-form-range-thumb() when not (@form-range-thumb-box-shadow = none) { box-shadow: @form-range-thumb-box-shadow; } // Miscellaneous // ======================================================================== .hook-form-range-misc() {} // Inverse // ======================================================================== @inverse-form-range-track-box-shadow: none; @inverse-form-range-track-focus-box-shadow: none; @inverse-form-range-thumb-box-shadow: none; .hook-inverse-form-range-track() when not (@form-range-track-box-shadow = none) { box-shadow: @inverse-form-range-track-box-shadow; } .hook-inverse-form-range-track-focus() when not (@form-range-track-focus-box-shadow = none) { box-shadow: @inverse-form-range-track-focus-box-shadow; } .hook-inverse-form-range-thumb() when not (@form-range-thumb-box-shadow = none) { box-shadow: @inverse-form-range-thumb-box-shadow; } assets/uikit-themes/master/box-shadow/label.less000064400000002671151666572420016017 0ustar00// // Component: Label // // ======================================================================== // Variables // ======================================================================== // // New // @label-box-shadow: none; @label-success-box-shadow: none; @label-warning-box-shadow: none; @label-danger-box-shadow: none; // Component // ======================================================================== .hook-label() when not (@label-box-shadow = none) { box-shadow: @label-box-shadow; } .hook-label-hover() {} // Color modifiers // ======================================================================== .hook-label-success() when not (@label-success-box-shadow = none) { box-shadow: @label-success-box-shadow; } .hook-label-warning() when not (@label-warning-box-shadow = none) { box-shadow: @label-warning-box-shadow; } .hook-label-danger() when not (@label-danger-box-shadow = none) { box-shadow: @label-danger-box-shadow; } // Miscellaneous // ======================================================================== .hook-label-misc() {} // Inverse // ======================================================================== @inverse-label-box-shadow: none; .hook-inverse-label() when not (@label-box-shadow = none) { box-shadow: @inverse-label-box-shadow; } .hook-inverse-label-hover() {} assets/uikit-themes/master/typo/tab.less000064400000004543151666572420014426 0ustar00// // Component: Tab // // ======================================================================== // Variables // ======================================================================== // // New // @tab-item-font-size: @global-font-size; @tab-item-line-height: @global-line-height; @tab-item-font-family: @global-secondary-font-family; @tab-item-font-weight: @global-secondary-font-weight; @tab-item-text-transform: @global-secondary-text-transform; @tab-item-letter-spacing: @global-secondary-letter-spacing; @tab-item-font-style: @global-secondary-font-style; // Component // ======================================================================== .hook-tab() {} // Items // ======================================================================== .hook-tab-item() when not (@tab-item-font-size = @base-body-font-size) { font-size: @tab-item-font-size; } .hook-tab-item() when not (@tab-item-line-height = @base-body-line-height) { line-height: @tab-item-line-height; } .hook-tab-item() when not (@tab-item-font-family = inherit) { font-family: @tab-item-font-family; } .hook-tab-item() when not (@tab-item-font-weight = inherit) { font-weight: @tab-item-font-weight; } .hook-tab-item() when not (@tab-item-text-transform = inherit) { text-transform: @tab-item-text-transform; } .hook-tab-item() when not (@tab-item-letter-spacing = inherit) { letter-spacing: @tab-item-letter-spacing; } .hook-tab-item() when not (@tab-item-font-style = inherit) { font-style: @tab-item-font-style; } .hook-tab-item-hover() {} .hook-tab-item-active() {} .hook-tab-item-disabled() {} // Position modifiers // ======================================================================== .hook-tab-bottom() {} .hook-tab-bottom-item() {} .hook-tab-left() {} .hook-tab-left-item() {} .hook-tab-right() {} .hook-tab-right-item() {} // Miscellaneous // ======================================================================== .hook-tab-misc() {} // Inverse // ======================================================================== .hook-inverse-tab() {} .hook-inverse-tab-item() {} .hook-inverse-tab-item-hover() {} .hook-inverse-tab-item-active() {} .hook-inverse-tab-item-disabled() {} assets/uikit-themes/master/typo/_import.less000064400000003343151666572420015326 0ustar00// Base @import "variables.less"; @import "base.less"; // Elements // @import "link.less"; @import "heading.less"; // @import "divider.less"; // @import "list.less"; @import "description-list.less"; @import "table.less"; // @import "icon.less"; // @import "form-range.less"; @import "form.less"; @import "button.less"; // @import "progress.less"; // Layout // @import "section.less"; // @import "container.less"; // @import "tile.less"; @import "card.less"; // Common // @import "close.less"; // @import "totop.less"; // @import "marker.less"; // @import "alert.less"; // @import "placeholder.less"; @import "badge.less"; @import "label.less"; // @import "overlay.less"; @import "article.less"; @import "comment.less"; @import "search.less"; // JavaScript @import "accordion.less"; // @import "drop.less"; @import "dropdown.less"; // @import "dropbar.less"; @import "modal.less"; // @import "sticky.less"; // @import "offcanvas.less"; @import "leader.less"; // @import "notification.less"; // @import "tooltip.less"; // @import "spinner.less"; // @import "sortable.less"; @import "countdown.less"; // @import "grid.less"; // Navs @import "nav.less"; @import "navbar.less"; @import "subnav.less"; @import "breadcrumb.less"; @import "pagination.less"; @import "tab.less"; // @import "slidenav.less"; // @import "dotnav.less"; // @import "thumbnav.less"; @import "iconnav.less"; // Utilities // @import "animation.less"; // @import "width.less"; // @import "height.less"; @import "text.less"; // @import "column.less"; // @import "background.less"; // @import "align.less"; // @import "svg.less"; @import "utility.less"; // @import "margin.less"; // @import "padding.less"; // @import "position.less"; // @import "transition.less"; // @import "inverse.less"; assets/uikit-themes/master/typo/subnav.less000064400000004741151666572420015156 0ustar00// // Component: Subnav // // ======================================================================== // Variables // ======================================================================== // // New // @subnav-item-font-size: @global-font-size; @subnav-item-font-family: @global-secondary-font-family; @subnav-item-font-weight: @global-secondary-font-weight; @subnav-item-text-transform: @global-secondary-text-transform; @subnav-item-letter-spacing: @global-secondary-letter-spacing; @subnav-item-font-style: @global-secondary-font-style; // Component // ======================================================================== .hook-subnav() {} .hook-subnav-item() { font-size: @subnav-item-font-size; } .hook-subnav-item() when not (@subnav-item-font-family = inherit) { font-family: @subnav-item-font-family; } .hook-subnav-item() when not (@subnav-item-font-weight = inherit) { font-weight: @subnav-item-font-weight; } .hook-subnav-item() when not (@subnav-item-text-transform = inherit) { text-transform: @subnav-item-text-transform; } .hook-subnav-item() when not (@subnav-item-letter-spacing = inherit) { letter-spacing: @subnav-item-letter-spacing; } .hook-subnav-item() when not (@subnav-item-font-style = inherit) { font-style: @subnav-item-font-style; } .hook-subnav-item-hover() {} .hook-subnav-item-active() {} // Divider modifier // ======================================================================== .hook-subnav-divider() {} // Pill modifier // ======================================================================== .hook-subnav-pill-item() {} .hook-subnav-pill-item-hover() {} .hook-subnav-pill-item-onclick() {} .hook-subnav-pill-item-active() {} // Disabled // ======================================================================== .hook-subnav-item-disabled() {} // Miscellaneous // ======================================================================== .hook-subnav-misc() {} // Inverse // ======================================================================== .hook-inverse-subnav-item() {} .hook-inverse-subnav-item-hover() {} .hook-inverse-subnav-item-active() {} .hook-inverse-subnav-divider() {} .hook-inverse-subnav-pill-item() {} .hook-inverse-subnav-pill-item-hover() {} .hook-inverse-subnav-pill-item-onclick() {} .hook-inverse-subnav-pill-item-active() {} .hook-inverse-subnav-item-disabled() {} assets/uikit-themes/master/typo/heading.less000064400000030733151666572420015257 0ustar00// // Component: Heading // // ======================================================================== // Variables // ======================================================================== // // New // @heading-small-color: @global-emphasis-color; @heading-small-font-family: @global-primary-font-family; @heading-small-font-weight: @global-primary-font-weight; @heading-small-text-transform: @global-primary-text-transform; @heading-small-letter-spacing: @global-primary-letter-spacing; @heading-small-font-style: @global-primary-font-style; @heading-small-text-shadow: none; @heading-medium-color: @global-emphasis-color; @heading-medium-font-family: @global-primary-font-family; @heading-medium-font-weight: @global-primary-font-weight; @heading-medium-text-transform: @global-primary-text-transform; @heading-medium-letter-spacing: @global-primary-letter-spacing; @heading-medium-font-style: @global-primary-font-style; @heading-medium-text-shadow: none; @heading-large-color: @global-emphasis-color; @heading-large-font-family: @global-primary-font-family; @heading-large-font-weight: @global-primary-font-weight; @heading-large-text-transform: @global-primary-text-transform; @heading-large-letter-spacing: @global-primary-letter-spacing; @heading-large-font-style: @global-primary-font-style; @heading-large-text-shadow: none; @heading-xlarge-color: @global-emphasis-color; @heading-xlarge-font-family: @global-primary-font-family; @heading-xlarge-font-weight: @global-primary-font-weight; @heading-xlarge-text-transform: @global-primary-text-transform; @heading-xlarge-letter-spacing: @global-primary-letter-spacing; @heading-xlarge-font-style: @global-primary-font-style; @heading-xlarge-text-shadow: none; @heading-2xlarge-color: @global-emphasis-color; @heading-2xlarge-font-family: @global-primary-font-family; @heading-2xlarge-font-weight: @global-primary-font-weight; @heading-2xlarge-text-transform: @global-primary-text-transform; @heading-2xlarge-letter-spacing: @global-primary-letter-spacing; @heading-2xlarge-font-style: @global-primary-font-style; @heading-2xlarge-text-shadow: none; @heading-3xlarge-color: @global-emphasis-color; @heading-3xlarge-font-family: @global-primary-font-family; @heading-3xlarge-font-weight: @global-primary-font-weight; @heading-3xlarge-text-transform: @global-primary-text-transform; @heading-3xlarge-letter-spacing: @global-primary-letter-spacing; @heading-3xlarge-font-style: @global-primary-font-style; @heading-3xlarge-text-shadow: none; // Component // ======================================================================== // // Small // .hook-heading-small() when not (@heading-small-color = @base-heading-color) { color: @heading-small-color; } .hook-heading-small() when not (@heading-small-font-family = inherit) and not (@heading-small-font-family = @base-heading-font-family) { font-family: @heading-small-font-family; } .hook-heading-small() when not (@heading-small-font-weight = inherit) and not (@heading-small-font-weight = @base-heading-font-weight) { font-weight: @heading-small-font-weight; } .hook-heading-small() when not (@heading-small-text-transform = inherit) and not (@heading-small-text-transform = @base-heading-text-transform) { text-transform: @heading-small-text-transform; } .hook-heading-small() when not (@heading-small-letter-spacing = inherit) and not (@heading-small-letter-spacing = @base-heading-text-transform) { letter-spacing: @heading-small-letter-spacing; } .hook-heading-small() when not (@heading-small-font-style = inherit) and not (@heading-small-font-style = @base-heading-text-transform) { font-style: @heading-small-font-style; } .hook-heading-small() when not (@heading-small-text-shadow = none) { text-shadow: @heading-small-text-shadow; } // // Medium // .hook-heading-medium() when not (@heading-medium-color = @base-heading-color) { color: @heading-medium-color; } .hook-heading-medium() when not (@heading-medium-font-family = inherit) and not (@heading-medium-font-family = @base-heading-font-family) { font-family: @heading-medium-font-family; } .hook-heading-medium() when not (@heading-medium-font-weight = inherit) and not (@heading-medium-font-weight = @base-heading-font-weight) { font-weight: @heading-medium-font-weight; } .hook-heading-medium() when not (@heading-medium-text-transform = inherit) and not (@heading-medium-text-transform = @base-heading-text-transform) { text-transform: @heading-medium-text-transform; } .hook-heading-medium() when not (@heading-medium-letter-spacing = inherit) and not (@heading-medium-letter-spacing = @base-heading-text-transform) { letter-spacing: @heading-medium-letter-spacing; } .hook-heading-medium() when not (@heading-medium-font-style = inherit) and not (@heading-medium-font-style = @base-heading-text-transform) { font-style: @heading-medium-font-style; } .hook-heading-medium() when not (@heading-medium-text-shadow = none) { text-shadow: @heading-medium-text-shadow; } // // Large // .hook-heading-large() when not (@heading-large-color = @base-heading-color) { color: @heading-large-color; } .hook-heading-large() when not (@heading-large-font-family = inherit) and not (@heading-large-font-family = @base-heading-font-family) { font-family: @heading-large-font-family; } .hook-heading-large() when not (@heading-large-font-weight = inherit) and not (@heading-large-font-weight = @base-heading-font-weight) { font-weight: @heading-large-font-weight; } .hook-heading-large() when not (@heading-large-text-transform = inherit) and not (@heading-large-text-transform = @base-heading-text-transform) { text-transform: @heading-large-text-transform; } .hook-heading-large() when not (@heading-large-letter-spacing = inherit) and not (@heading-large-letter-spacing = @base-heading-text-transform) { letter-spacing: @heading-large-letter-spacing; } .hook-heading-large() when not (@heading-large-font-style = inherit) and not (@heading-large-font-style = @base-heading-text-transform) { font-style: @heading-large-font-style; } .hook-heading-large() when not (@heading-large-text-shadow = none) { text-shadow: @heading-large-text-shadow; } // // X-Large // .hook-heading-xlarge() when not (@heading-xlarge-color = @base-heading-color) { color: @heading-xlarge-color; } .hook-heading-xlarge() when not (@heading-xlarge-font-family = inherit) and not (@heading-xlarge-font-family = @base-heading-font-family) { font-family: @heading-xlarge-font-family; } .hook-heading-xlarge() when not (@heading-xlarge-font-weight = inherit) and not (@heading-xlarge-font-weight = @base-heading-font-weight) { font-weight: @heading-xlarge-font-weight; } .hook-heading-xlarge() when not (@heading-xlarge-text-transform = inherit) and not (@heading-xlarge-text-transform = @base-heading-text-transform) { text-transform: @heading-xlarge-text-transform; } .hook-heading-xlarge() when not (@heading-xlarge-letter-spacing = inherit) and not (@heading-xlarge-letter-spacing = @base-heading-text-transform) { letter-spacing: @heading-xlarge-letter-spacing; } .hook-heading-xlarge() when not (@heading-xlarge-font-style = inherit) and not (@heading-xlarge-font-style = @base-heading-text-transform) { font-style: @heading-xlarge-font-style; } .hook-heading-xlarge() when not (@heading-xlarge-text-shadow = none) { text-shadow: @heading-xlarge-text-shadow; } // // 2X-Large // .hook-heading-2xlarge() when not (@heading-2xlarge-color = @base-heading-color) { color: @heading-2xlarge-color; } .hook-heading-2xlarge() when not (@heading-2xlarge-font-family = inherit) and not (@heading-2xlarge-font-family = @base-heading-font-family) { font-family: @heading-2xlarge-font-family; } .hook-heading-2xlarge() when not (@heading-2xlarge-font-weight = inherit) and not (@heading-2xlarge-font-weight = @base-heading-font-weight) { font-weight: @heading-2xlarge-font-weight; } .hook-heading-2xlarge() when not (@heading-2xlarge-text-transform = inherit) and not (@heading-2xlarge-text-transform = @base-heading-text-transform) { text-transform: @heading-2xlarge-text-transform; } .hook-heading-2xlarge() when not (@heading-2xlarge-letter-spacing = inherit) and not (@heading-2xlarge-letter-spacing = @base-heading-text-transform) { letter-spacing: @heading-2xlarge-letter-spacing; } .hook-heading-2xlarge() when not (@heading-2xlarge-font-style = inherit) and not (@heading-2xlarge-font-style = @base-heading-text-transform) { font-style: @heading-2xlarge-font-style; } .hook-heading-2xlarge() when not (@heading-2xlarge-text-shadow = none) { text-shadow: @heading-2xlarge-text-shadow; } // // 3X-Large // .hook-heading-3xlarge() when not (@heading-3xlarge-color = @base-heading-color) { color: @heading-3xlarge-color; } .hook-heading-3xlarge() when not (@heading-3xlarge-font-family = inherit) and not (@heading-3xlarge-font-family = @base-heading-font-family) { font-family: @heading-3xlarge-font-family; } .hook-heading-3xlarge() when not (@heading-3xlarge-font-weight = inherit) and not (@heading-3xlarge-font-weight = @base-heading-font-weight) { font-weight: @heading-3xlarge-font-weight; } .hook-heading-3xlarge() when not (@heading-3xlarge-text-transform = inherit) and not (@heading-3xlarge-text-transform = @base-heading-text-transform) { text-transform: @heading-3xlarge-text-transform; } .hook-heading-3xlarge() when not (@heading-3xlarge-letter-spacing = inherit) and not (@heading-3xlarge-letter-spacing = @base-heading-text-transform) { letter-spacing: @heading-3xlarge-letter-spacing; } .hook-heading-3xlarge() when not (@heading-3xlarge-font-style = inherit) and not (@heading-3xlarge-font-style = @base-heading-text-transform) { font-style: @heading-3xlarge-font-style; } .hook-heading-3xlarge() when not (@heading-3xlarge-text-shadow = none) { text-shadow: @heading-3xlarge-text-shadow; } // Divider // ======================================================================== .hook-heading-divider() {} // Bullet // ======================================================================== .hook-heading-bullet() {} // Line // ======================================================================== .hook-heading-line() {} // Miscellaneous // ======================================================================== .hook-heading-misc() {} // Inverse // ======================================================================== @