Commit 665391dc508e0e1f9ed8a497947b369b9a4f40a8

Authored by zhuqin
1 parent 6d7ccbbf

feat: 单元测试 demo

  1 +module.exports = {
  2 + presets: [
  3 + // 'react-app',
  4 + // '@babel/preset-env',
  5 + // ['@babel/preset-react', { runtime: 'automatic' }],
  6 + ['@babel/preset-env', { targets: { node: 'current' } }],
  7 + '@babel/preset-typescript',
  8 + ],
  9 +};
  10 +
  11 +
  12 +// ['@babel/preset-env', { targets: { node: 'current' } }],
  13 +// ['@babel/preset-react', { runtime: 'automatic' }],
  14 +// '@babel/preset-typescript',
\ No newline at end of file
... ...
  1 +body, html {
  2 + margin:0; padding: 0;
  3 + height: 100%;
  4 +}
  5 +body {
  6 + font-family: Helvetica Neue, Helvetica, Arial;
  7 + font-size: 14px;
  8 + color:#333;
  9 +}
  10 +.small { font-size: 12px; }
  11 +*, *:after, *:before {
  12 + -webkit-box-sizing:border-box;
  13 + -moz-box-sizing:border-box;
  14 + box-sizing:border-box;
  15 + }
  16 +h1 { font-size: 20px; margin: 0;}
  17 +h2 { font-size: 14px; }
  18 +pre {
  19 + font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
  20 + margin: 0;
  21 + padding: 0;
  22 + -moz-tab-size: 2;
  23 + -o-tab-size: 2;
  24 + tab-size: 2;
  25 +}
  26 +a { color:#0074D9; text-decoration:none; }
  27 +a:hover { text-decoration:underline; }
  28 +.strong { font-weight: bold; }
  29 +.space-top1 { padding: 10px 0 0 0; }
  30 +.pad2y { padding: 20px 0; }
  31 +.pad1y { padding: 10px 0; }
  32 +.pad2x { padding: 0 20px; }
  33 +.pad2 { padding: 20px; }
  34 +.pad1 { padding: 10px; }
  35 +.space-left2 { padding-left:55px; }
  36 +.space-right2 { padding-right:20px; }
  37 +.center { text-align:center; }
  38 +.clearfix { display:block; }
  39 +.clearfix:after {
  40 + content:'';
  41 + display:block;
  42 + height:0;
  43 + clear:both;
  44 + visibility:hidden;
  45 + }
  46 +.fl { float: left; }
  47 +@media only screen and (max-width:640px) {
  48 + .col3 { width:100%; max-width:100%; }
  49 + .hide-mobile { display:none!important; }
  50 +}
  51 +
  52 +.quiet {
  53 + color: #7f7f7f;
  54 + color: rgba(0,0,0,0.5);
  55 +}
  56 +.quiet a { opacity: 0.7; }
  57 +
  58 +.fraction {
  59 + font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  60 + font-size: 10px;
  61 + color: #555;
  62 + background: #E8E8E8;
  63 + padding: 4px 5px;
  64 + border-radius: 3px;
  65 + vertical-align: middle;
  66 +}
  67 +
  68 +div.path a:link, div.path a:visited { color: #333; }
  69 +table.coverage {
  70 + border-collapse: collapse;
  71 + margin: 10px 0 0 0;
  72 + padding: 0;
  73 +}
  74 +
  75 +table.coverage td {
  76 + margin: 0;
  77 + padding: 0;
  78 + vertical-align: top;
  79 +}
  80 +table.coverage td.line-count {
  81 + text-align: right;
  82 + padding: 0 5px 0 20px;
  83 +}
  84 +table.coverage td.line-coverage {
  85 + text-align: right;
  86 + padding-right: 10px;
  87 + min-width:20px;
  88 +}
  89 +
  90 +table.coverage td span.cline-any {
  91 + display: inline-block;
  92 + padding: 0 5px;
  93 + width: 100%;
  94 +}
  95 +.missing-if-branch {
  96 + display: inline-block;
  97 + margin-right: 5px;
  98 + border-radius: 3px;
  99 + position: relative;
  100 + padding: 0 4px;
  101 + background: #333;
  102 + color: yellow;
  103 +}
  104 +
  105 +.skip-if-branch {
  106 + display: none;
  107 + margin-right: 10px;
  108 + position: relative;
  109 + padding: 0 4px;
  110 + background: #ccc;
  111 + color: white;
  112 +}
  113 +.missing-if-branch .typ, .skip-if-branch .typ {
  114 + color: inherit !important;
  115 +}
  116 +.coverage-summary {
  117 + border-collapse: collapse;
  118 + width: 100%;
  119 +}
  120 +.coverage-summary tr { border-bottom: 1px solid #bbb; }
  121 +.keyline-all { border: 1px solid #ddd; }
  122 +.coverage-summary td, .coverage-summary th { padding: 10px; }
  123 +.coverage-summary tbody { border: 1px solid #bbb; }
  124 +.coverage-summary td { border-right: 1px solid #bbb; }
  125 +.coverage-summary td:last-child { border-right: none; }
  126 +.coverage-summary th {
  127 + text-align: left;
  128 + font-weight: normal;
  129 + white-space: nowrap;
  130 +}
  131 +.coverage-summary th.file { border-right: none !important; }
  132 +.coverage-summary th.pct { }
  133 +.coverage-summary th.pic,
  134 +.coverage-summary th.abs,
  135 +.coverage-summary td.pct,
  136 +.coverage-summary td.abs { text-align: right; }
  137 +.coverage-summary td.file { white-space: nowrap; }
  138 +.coverage-summary td.pic { min-width: 120px !important; }
  139 +.coverage-summary tfoot td { }
  140 +
  141 +.coverage-summary .sorter {
  142 + height: 10px;
  143 + width: 7px;
  144 + display: inline-block;
  145 + margin-left: 0.5em;
  146 + background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
  147 +}
  148 +.coverage-summary .sorted .sorter {
  149 + background-position: 0 -20px;
  150 +}
  151 +.coverage-summary .sorted-desc .sorter {
  152 + background-position: 0 -10px;
  153 +}
  154 +.status-line { height: 10px; }
  155 +/* yellow */
  156 +.cbranch-no { background: yellow !important; color: #111; }
  157 +/* dark red */
  158 +.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 }
  159 +.low .chart { border:1px solid #C21F39 }
  160 +.highlighted,
  161 +.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{
  162 + background: #C21F39 !important;
  163 +}
  164 +/* medium red */
  165 +.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE }
  166 +/* light red */
  167 +.low, .cline-no { background:#FCE1E5 }
  168 +/* light green */
  169 +.high, .cline-yes { background:rgb(230,245,208) }
  170 +/* medium green */
  171 +.cstat-yes { background:rgb(161,215,106) }
  172 +/* dark green */
  173 +.status-line.high, .high .cover-fill { background:rgb(77,146,33) }
  174 +.high .chart { border:1px solid rgb(77,146,33) }
  175 +/* dark yellow (gold) */
  176 +.status-line.medium, .medium .cover-fill { background: #f9cd0b; }
  177 +.medium .chart { border:1px solid #f9cd0b; }
  178 +/* light yellow */
  179 +.medium { background: #fff4c2; }
  180 +
  181 +.cstat-skip { background: #ddd; color: #111; }
  182 +.fstat-skip { background: #ddd; color: #111 !important; }
  183 +.cbranch-skip { background: #ddd !important; color: #111; }
  184 +
  185 +span.cline-neutral { background: #eaeaea; }
  186 +
  187 +.coverage-summary td.empty {
  188 + opacity: .5;
  189 + padding-top: 4px;
  190 + padding-bottom: 4px;
  191 + line-height: 1;
  192 + color: #888;
  193 +}
  194 +
  195 +.cover-fill, .cover-empty {
  196 + display:inline-block;
  197 + height: 12px;
  198 +}
  199 +.chart {
  200 + line-height: 0;
  201 +}
  202 +.cover-empty {
  203 + background: white;
  204 +}
  205 +.cover-full {
  206 + border-right: none !important;
  207 +}
  208 +pre.prettyprint {
  209 + border: none !important;
  210 + padding: 0 !important;
  211 + margin: 0 !important;
  212 +}
  213 +.com { color: #999 !important; }
  214 +.ignore-none { color: #999; font-weight: normal; }
  215 +
  216 +.wrapper {
  217 + min-height: 100%;
  218 + height: auto !important;
  219 + height: 100%;
  220 + margin: 0 auto -48px;
  221 +}
  222 +.footer, .push {
  223 + height: 48px;
  224 +}
... ...
  1 +/* eslint-disable */
  2 +var jumpToCode = (function init() {
  3 + // Classes of code we would like to highlight in the file view
  4 + var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no'];
  5 +
  6 + // Elements to highlight in the file listing view
  7 + var fileListingElements = ['td.pct.low'];
  8 +
  9 + // We don't want to select elements that are direct descendants of another match
  10 + var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > `
  11 +
  12 + // Selecter that finds elements on the page to which we can jump
  13 + var selector =
  14 + fileListingElements.join(', ') +
  15 + ', ' +
  16 + notSelector +
  17 + missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b`
  18 +
  19 + // The NodeList of matching elements
  20 + var missingCoverageElements = document.querySelectorAll(selector);
  21 +
  22 + var currentIndex;
  23 +
  24 + function toggleClass(index) {
  25 + missingCoverageElements
  26 + .item(currentIndex)
  27 + .classList.remove('highlighted');
  28 + missingCoverageElements.item(index).classList.add('highlighted');
  29 + }
  30 +
  31 + function makeCurrent(index) {
  32 + toggleClass(index);
  33 + currentIndex = index;
  34 + missingCoverageElements.item(index).scrollIntoView({
  35 + behavior: 'smooth',
  36 + block: 'center',
  37 + inline: 'center'
  38 + });
  39 + }
  40 +
  41 + function goToPrevious() {
  42 + var nextIndex = 0;
  43 + if (typeof currentIndex !== 'number' || currentIndex === 0) {
  44 + nextIndex = missingCoverageElements.length - 1;
  45 + } else if (missingCoverageElements.length > 1) {
  46 + nextIndex = currentIndex - 1;
  47 + }
  48 +
  49 + makeCurrent(nextIndex);
  50 + }
  51 +
  52 + function goToNext() {
  53 + var nextIndex = 0;
  54 +
  55 + if (
  56 + typeof currentIndex === 'number' &&
  57 + currentIndex < missingCoverageElements.length - 1
  58 + ) {
  59 + nextIndex = currentIndex + 1;
  60 + }
  61 +
  62 + makeCurrent(nextIndex);
  63 + }
  64 +
  65 + return function jump(event) {
  66 + if (
  67 + document.getElementById('fileSearch') === document.activeElement &&
  68 + document.activeElement != null
  69 + ) {
  70 + // if we're currently focused on the search input, we don't want to navigate
  71 + return;
  72 + }
  73 +
  74 + switch (event.which) {
  75 + case 78: // n
  76 + case 74: // j
  77 + goToNext();
  78 + break;
  79 + case 66: // b
  80 + case 75: // k
  81 + case 80: // p
  82 + goToPrevious();
  83 + break;
  84 + }
  85 + };
  86 +})();
  87 +window.addEventListener('keydown', jumpToCode);
... ...
  1 +
  2 +<!doctype html>
  3 +<html lang="en">
  4 +
  5 +<head>
  6 + <title>Code coverage report for icon-app.js</title>
  7 + <meta charset="utf-8" />
  8 + <link rel="stylesheet" href="prettify.css" />
  9 + <link rel="stylesheet" href="base.css" />
  10 + <link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
  11 + <meta name="viewport" content="width=device-width, initial-scale=1" />
  12 + <style type='text/css'>
  13 + .coverage-summary .sorter {
  14 + background-image: url(sort-arrow-sprite.png);
  15 + }
  16 + </style>
  17 +</head>
  18 +
  19 +<body>
  20 +<div class='wrapper'>
  21 + <div class='pad1'>
  22 + <h1><a href="index.html">All files</a> icon-app.js</h1>
  23 + <div class='clearfix'>
  24 +
  25 + <div class='fl pad1y space-right2'>
  26 + <span class="strong">0% </span>
  27 + <span class="quiet">Statements</span>
  28 + <span class='fraction'>0/11</span>
  29 + </div>
  30 +
  31 +
  32 + <div class='fl pad1y space-right2'>
  33 + <span class="strong">0% </span>
  34 + <span class="quiet">Branches</span>
  35 + <span class='fraction'>0/14</span>
  36 + </div>
  37 +
  38 +
  39 + <div class='fl pad1y space-right2'>
  40 + <span class="strong">0% </span>
  41 + <span class="quiet">Functions</span>
  42 + <span class='fraction'>0/6</span>
  43 + </div>
  44 +
  45 +
  46 + <div class='fl pad1y space-right2'>
  47 + <span class="strong">0% </span>
  48 + <span class="quiet">Lines</span>
  49 + <span class='fraction'>0/1</span>
  50 + </div>
  51 +
  52 +
  53 + </div>
  54 + <p class="quiet">
  55 + Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
  56 + </p>
  57 + <template id="filterTemplate">
  58 + <div class="quiet">
  59 + Filter:
  60 + <input oninput="onInput()" type="search" id="fileSearch">
  61 + </div>
  62 + </template>
  63 + </div>
  64 + <div class='status-line low'></div>
  65 + <pre><table class="coverage">
  66 +<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
  67 +<a name='L2'></a><a href='#L2'>2</a></td><td class="line-coverage quiet"><span class="cline-any cline-no">&nbsp;</span>
  68 +<span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js"><span class="cstat-no" title="statement not covered" >!<span class="fstat-no" title="function not covered" >fu</span>nction(e){var t,n,d,o,i,a,r=<span class="cstat-no" title="statement not covered" >'&lt;svg&gt;&lt;symbol id="icon-app-bridge-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 4a1 1 0 0 1 1 1v1.722a4.758 4.758 0 0 0 .937.997C8.71 8.338 9.993 9 12 9c2.007 0 3.29-.662 4.063-1.28A4.757 4.757 0 0 0 17 6.721V5a1 1 0 1 1 2 0v1.565c.144.127.332.288.551.458.533.415 1.177.832 1.765 1.028a1 1 0 1 1-.632 1.898c-.606-.202-1.188-.528-1.684-.858V14h3a1 1 0 1 1 0 2h-3v3a1 1 0 1 1-2 0v-3H7v3a1 1 0 1 1-2 0v-3H2a1 1 0 1 1 0-2h3V9.09c-.496.331-1.078.657-1.684.859a1 1 0 0 1-.632-1.898c.588-.196 1.232-.613 1.765-1.028.219-.17.407-.33.551-.458V5a1 1 0 0 1 1-1Zm3 6.533c.59.2 1.255.349 2 .42V14H9v-3.467ZM13 14h2v-3.467c-.59.2-1.255.349-2 .42V14Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-building-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 3a2 2 0 0 0-2 2v14H3a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2h-1v-8a2 2 0 0 0-2-2h-1.5a.5.5 0 0 0-.5.5V19h-1V5a2 2 0 0 0-2-2H6Zm5 4H8v2h3V7Zm0 4H8v2h3v-2Zm-3 4h3v2H8v-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-home-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.772 2.688a2 2 0 0 1 2.456 0l8.384 6.52c.753.587.337 1.792-.615 1.792H20v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8h-.997c-.953 0-1.367-1.206-.615-1.791l8.384-6.52Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-store-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4.9 3.8A2 2 0 0 1 6.5 3h11a2 2 0 0 1 1.6.8l2.688 3.584a.995.995 0 0 1 .204.616H22v1a3.99 3.99 0 0 1-1 2.646V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7.354A3.985 3.985 0 0 1 2 9V8h.008a.995.995 0 0 1 .204-.616L4.9 3.8ZM18 11a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Zm-6 0a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Zm-6 0a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-tower-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 3a1 1 0 1 0-2 0v.723L10.834 4H10a1 1 0 0 0-.332 1.943L8.434 8H7a1 1 0 0 0 0 2h1c-.628.836-1 1.874-1 3a4.99 4.99 0 0 0 2 4 5 5 0 0 0-1.9 3H5a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2h-2.1a5.001 5.001 0 0 0-1.9-3 4.992 4.992 0 0 0 2-4 4.978 4.978 0 0 0-1-3h1a1 1 0 1 0 0-2h-1.434l-1.234-2.057A1 1 0 0 0 14 4h-.834L13 3.723V3Zm-.966 3h-.068l-1.2 2h2.468l-1.2-2ZM12 18c1.306 0 2.418.835 2.83 2H9.17A3.001 3.001 0 0 1 12 18Zm3-5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-pavilon-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12.903 2.57a1.01 1.01 0 0 0-1.806 0c-.945 1.884-1.964 3.096-3.208 3.907-1.254.816-2.828 1.287-4.99 1.528a1.01 1.01 0 0 0-.883 1.173c.33 1.95 1.665 2.922 2.804 3.377l.18.069V20H4a1 1 0 1 0 0 2h16a1 1 0 0 0 0-2h-1v-7.376l.18-.069c1.14-.455 2.474-1.428 2.804-3.377a1.01 1.01 0 0 0-.884-1.173c-2.16-.241-3.735-.712-4.988-1.528-1.245-.811-2.264-2.023-3.209-3.907ZM17 13h-1v7h1v-7Zm-3 0h-4v7h4v-7Zm-6 0H7v7h1v-7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-home-3-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.228 2.688a2 2 0 0 0-2.456 0l-8.384 6.52C1.636 9.795 2.05 11 3.003 11H4v8a2 2 0 0 0 2 2h4v-6a2 2 0 1 1 4 0v6h4a2 2 0 0 0 2-2v-8h.997c.952 0 1.368-1.205.615-1.791l-8.384-6.52Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-store-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4.9 3.8A2 2 0 0 1 6.5 3h11a2 2 0 0 1 1.6.8l2.688 3.584a.995.995 0 0 1 .204.616H22v1a3.99 3.99 0 0 1-1 2.646V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7.354A3.985 3.985 0 0 1 2 9V8h.008a.995.995 0 0 1 .204-.616L4.9 3.8Zm.1 9.074V19h14v-6.126a4.01 4.01 0 0 1-4-1.228A3.99 3.99 0 0 1 12 13a3.99 3.99 0 0 1-3-1.354 3.99 3.99 0 0 1-4 1.228ZM18 11a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Zm-6 0a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2ZM8 9a2 2 0 1 1-4 0h4Zm9.5-4h-11L5 7h14l-1.5-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-home-4-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.8 2.65a2 2 0 0 1 2.4 0l7 5.25a2 2 0 0 1 .8 1.6V19a2 2 0 0 1-2 2h-4.9a1.1 1.1 0 0 1-1.1-1.1V14a1 1 0 1 0-2 0v5.9A1.1 1.1 0 0 1 9.9 21H5a2 2 0 0 1-2-2V9.5a2 2 0 0 1 .8-1.6l7-5.25Zm1.2 1.6L5 9.5V19h4v-5a3 3 0 1 1 6 0v5h4V9.5l-7-5.25Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-home-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.8 2.65a2 2 0 0 1 2.4 0l7 5.25a2 2 0 0 1 .8 1.6V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.5a2 2 0 0 1 .8-1.6l7-5.25Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-lighthouse-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 10a1 1 0 0 1 .746-.967l.24-3.848a1.5 1.5 0 0 1 .666-1.154l2.516-1.678a1.5 1.5 0 0 1 1.664 0l2.516 1.677c.39.26.636.687.665 1.155l.241 3.848a1 1 0 0 1 .118 1.895L16.94 20H19a1 1 0 1 1 0 2H5a1 1 0 1 1 0-2h2.06l.568-9.072A1 1 0 0 1 7 10Zm5-5.798L9.967 5.557 9.752 9h4.496l-.215-3.443L12 4.202ZM9.064 20l.563-9h4.746l.563 9H9.063Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3.293 4.293a1 1 0 0 1 1.414 0l1 1a1 1 0 0 1-1.414 1.414l-1-1a1 1 0 0 1 0-1.414Zm16 0a1 1 0 1 1 1.414 1.414l-1 1a1 1 0 1 1-1.414-1.414l1-1Zm-13.586 4a1 1 0 0 0-1.414 0l-1 1a1 1 0 1 0 1.414 1.414l1-1a1 1 0 0 0 0-1.414Zm14 0a1 1 0 1 0-1.414 1.414l1 1a1 1 0 1 0 1.414-1.414l-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-greatwall-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" d="M3.5 3A1.5 1.5 0 0 0 2 4.5V9h20V4.5A1.5 1.5 0 0 0 20.5 3h-3A1.5 1.5 0 0 0 16 4.5V6h-1V4.5A1.5 1.5 0 0 0 13.5 3h-3A1.5 1.5 0 0 0 9 4.5V6H8V4.5A1.5 1.5 0 0 0 6.5 3h-3ZM22 11h-9v4h9v-4Zm0 6h-5v4h3.5a1.5 1.5 0 0 0 1.5-1.5V17Zm-7 4v-4H9v4h6Zm-8 0v-4H2v2.5A1.5 1.5 0 0 0 3.5 21H7Zm-5-6h9v-4H2v4Z" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-pavilon-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M20 22a1 1 0 0 0 0-2h-1v-7.377c.06-.021.12-.044.18-.068 1.14-.455 2.474-1.428 2.804-3.377a1.01 1.01 0 0 0-.884-1.173c-2.16-.241-3.735-.712-4.988-1.528-1.245-.811-2.264-2.023-3.209-3.907a1.01 1.01 0 0 0-1.806 0c-.945 1.884-1.964 3.096-3.208 3.907-1.254.816-2.828 1.287-4.99 1.528a1.01 1.01 0 0 0-.883 1.173c.33 1.95 1.665 2.922 2.804 3.377.06.024.12.047.18.068V20H4a1 1 0 1 0 0 2h16ZM8.98 8.152c1.191-.775 2.169-1.804 3.02-3.124.851 1.32 1.829 2.349 3.02 3.124 1.315.857 2.831 1.367 4.604 1.667-.302.427-.73.697-1.185.878-.45.18-.944.289-1.428.303H7.004a4.202 4.202 0 0 1-1.442-.303c-.455-.181-.884-.451-1.186-.878 1.773-.3 3.289-.81 4.604-1.667ZM8 13H7v7h1v-7Zm2 7v-7h4v7h-4Zm6-7v7h1v-7h-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-monument-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16 5.236V17h1.75c.69 0 1.25.56 1.25 1.25V20h1a1 1 0 1 1 0 2H4a1 1 0 1 1 0-2h1v-1.75c0-.69.56-1.25 1.25-1.25H8V5.236L7.112 3.46a1.01 1.01 0 0 1 .778-1.454l3.955-.494a1.25 1.25 0 0 1 .31 0l3.955.494c.692.086 1.09.83.778 1.454L16 5.236Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-monument-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M16 17V5.236l.888-1.776a1.01 1.01 0 0 0-.778-1.454l-3.955-.494a1.25 1.25 0 0 0-.31 0l-3.955.494a1.01 1.01 0 0 0-.778 1.454L8 5.236V17H6.25C5.56 17 5 17.56 5 18.25V20H4a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2h-1v-1.75c0-.69-.56-1.25-1.25-1.25H16ZM12 3.508l-2.473.309.262.525a2 2 0 0 1 .211.894V17h4V5.236a2 2 0 0 1 .211-.894l.262-.525L12 3.507ZM17 20v-1H7v1h10Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-factory-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6.023 4.561A1.512 1.512 0 0 1 7.533 3H12.5c.82 0 1.49.654 1.506 1.476.013.644.052 1.889.17 3.524h2.258c.906 0 1.555.773 1.53 1.595-.034 1.161.06 4.434 1.747 9.405H21a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h1.257C6.112 12.616 6.08 6.365 6.023 4.561ZM17.604 19c-1.405-4.362-1.64-7.452-1.645-9h-1.615c.252 2.6.688 5.78 1.443 9h1.817ZM12.02 5c.065 2.245.361 8.002 1.716 14h-7.4c1.645-5.982 1.74-11.712 1.7-14h3.983Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bridge-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 5a1 1 0 0 0-2 0v1.565c-.144.127-.332.288-.551.458-.533.415-1.177.832-1.765 1.028a1 1 0 1 0 .632 1.898C3.922 9.747 4.504 9.42 5 9.09V14H2a1 1 0 1 0 0 2h3v3a1 1 0 1 0 2 0v-3h10v3a1 1 0 1 0 2 0v-3h3a1 1 0 1 0 0-2h-3V9.09c.496.331 1.078.657 1.684.859a1 1 0 0 0 .632-1.898c-.588-.196-1.232-.613-1.765-1.028-.219-.17-.407-.33-.551-.458V5a1 1 0 1 0-2 0v1.722a4.757 4.757 0 0 1-.937.997C15.29 8.338 14.007 9 12 9c-2.007 0-3.29-.662-4.063-1.28A4.758 4.758 0 0 1 7 6.721V5Zm8 9h2V9.517c-.538.384-1.2.746-2 1.016V14Zm-2-3.047V14h-2v-3.047a10.486 10.486 0 0 0 2 0ZM9 14v-3.467a7.62 7.62 0 0 1-2-1.016V14h2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-building-4-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.753 2.197a2 2 0 0 0-1.662.182l-4.12 2.472A2 2 0 0 0 4 6.566V20H3a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2h-1V6.72a2 2 0 0 0-1.367-1.897l-7.88-2.626ZM9 4.767l-3 1.8V20h3V4.766Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-building-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 7H8v2h3V7Zm-3 4h3v2H8v-2Zm3 4H8v2h3v-2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 3a2 2 0 0 0-2 2v14H3a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2h-1v-8a2 2 0 0 0-2-2h-3V5a2 2 0 0 0-2-2H6Zm9 8h3v8h-3v-8Zm-2 8V5H6v14h7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-campground-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M14.824 4.566a1 1 0 0 0-1.648-1.133L12 5.143l-1.176-1.71a1 1 0 1 0-1.648 1.133l1.61 2.343L2.475 19H2a1 1 0 1 0 0 2h20a1 1 0 1 0 0-2h-.474L13.213 6.91l1.611-2.344ZM15.986 19h3.113L12 8.674 4.901 19h3.114l3.155-4.557a1.01 1.01 0 0 1 1.66 0L15.985 19Zm-5.539 0h3.106L12 16.757 10.447 19Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-factory-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6.023 4.561A1.512 1.512 0 0 1 7.533 3H12.5c.82 0 1.49.654 1.506 1.476.035 1.768.268 8.07 1.78 14.524h1c-.961-4.104-1.405-8.146-1.61-11h1.258c.906 0 1.555.773 1.53 1.595-.034 1.161.06 4.434 1.747 9.405H21a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h1.257C6.112 12.616 6.08 6.365 6.023 4.561Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-campground-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14.824 4.566a1 1 0 0 0-1.648-1.133L12 5.143l-1.176-1.71a1 1 0 1 0-1.648 1.133l1.61 2.343L2.475 19H2a1 1 0 1 0 0 2h4.633a.985.985 0 0 1 .045-.07l4.492-6.487a1.01 1.01 0 0 1 1.66 0l4.492 6.488c.016.022.03.046.044.069H22a1 1 0 1 0 0-2h-.474L13.213 6.91l1.611-2.344Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14.938 21 12 16.757 9.062 21h5.876Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-home-3-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.228 2.688a2 2 0 0 0-2.456 0l-8.384 6.52C1.636 9.795 2.05 11 3.003 11H4v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8h.997c.952 0 1.368-1.205.615-1.791l-8.384-6.52ZM15 19h3v-8.99c0-.317.146-.6.375-.785L12 4.267 5.625 9.225c.229.185.375.468.375.785V19h3v-5a3 3 0 1 1 6 0v5Zm-4 0h2v-5a1 1 0 1 0-2 0v5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-home-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.8 2.65a2 2 0 0 1 2.4 0l7 5.25a2 2 0 0 1 .8 1.6V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.5a2 2 0 0 1 .8-1.6l7-5.25Zm1.2 1.6L5 9.5V19h14V9.5l-7-5.25Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-greatwall-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3.5 3A1.5 1.5 0 0 0 2 4.5v15A1.5 1.5 0 0 0 3.5 21h17a1.5 1.5 0 0 0 1.5-1.5v-15A1.5 1.5 0 0 0 20.5 3h-3A1.5 1.5 0 0 0 16 4.5V6h-1V4.5A1.5 1.5 0 0 0 13.5 3h-3A1.5 1.5 0 0 0 9 4.5V6H8V4.5A1.5 1.5 0 0 0 6.5 3h-3ZM17 19h3v-3h-3v3Zm-2-3v3H9v-3h6Zm-8 3v-3H4v3h3Zm13-5v-2h-7v2h7Zm-9-2v2H4v-2h7Zm9-2V5h-2v1.5A1.5 1.5 0 0 1 16.5 8h-2A1.5 1.5 0 0 1 13 6.5V5h-2v1.5A1.5 1.5 0 0 1 9.5 8h-2A1.5 1.5 0 0 1 6 6.5V5H4v5h16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-building-4-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.753 2.197a2 2 0 0 0-1.662.182l-4.12 2.472A2 2 0 0 0 4 6.566V20H3a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2h-1V6.72a2 2 0 0 0-1.367-1.897l-7.88-2.626ZM18 20V6.72l-7-2.333V20h7ZM9 4.766l-3 1.8V20h3V4.766Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-lighthouse-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.746 9.033a1 1 0 0 0-.118 1.895L7.06 20H5a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2h-2.06l-.568-9.072a1 1 0 0 0-.118-1.895l-.24-3.848a1.5 1.5 0 0 0-.665-1.154l-2.517-1.678a1.5 1.5 0 0 0-1.664 0L8.652 4.03a1.5 1.5 0 0 0-.666 1.155l-.24 3.848ZM13.5 7a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3.293 4.293a1 1 0 0 1 1.414 0l1 1a1 1 0 0 1-1.414 1.414l-1-1a1 1 0 0 1 0-1.414Zm17.414 0a1 1 0 0 0-1.414 0l-1 1a1 1 0 0 0 1.414 1.414l1-1a1 1 0 0 0 0-1.414Zm-16.414 4a1 1 0 0 1 1.414 1.414l-1 1a1 1 0 0 1-1.414-1.414l1-1Zm14 0a1 1 0 0 1 1.414 0l1 1a1 1 0 0 1-1.414 1.414l-1-1a1 1 0 0 1 0-1.414Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-home-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.772 2.688a2 2 0 0 1 2.456 0l8.384 6.52c.753.587.337 1.792-.615 1.792H20v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8h-.997c-.953 0-1.367-1.206-.615-1.791l8.384-6.52ZM5.625 9.225c.229.185.375.468.375.785V19h12v-8.99c0-.317.146-.6.375-.785L12 4.267 5.625 9.225Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-home-4-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.2 2.65a2 2 0 0 0-2.4 0l-7 5.25A2 2 0 0 0 3 9.5V19a2 2 0 0 0 2 2h3.9a1.1 1.1 0 0 0 1.1-1.1V15a2 2 0 1 1 4 0v4.9a1.1 1.1 0 0 0 1.1 1.1H19a2 2 0 0 0 2-2V9.5a2 2 0 0 0-.8-1.6l-7-5.25Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-tower-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 3a1 1 0 1 0-2 0v.723L10.834 4H10a1 1 0 0 0-.332 1.943L8.434 8H7a1 1 0 0 0 0 2h1c-.628.836-1 1.874-1 3a4.99 4.99 0 0 0 2 4 5 5 0 0 0-1.9 3H5a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2h-2.1a5.001 5.001 0 0 0-1.9-3 4.992 4.992 0 0 0 2-4 4.978 4.978 0 0 0-1-3h1a1 1 0 1 0 0-2h-1.434l-1.234-2.057A1 1 0 0 0 14 4h-.834L13 3.723V3Zm-.966 3h-.068l-1.2 2h2.468l-1.2-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-auction-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2.686 10.462a2.5 2.5 0 0 0 0 3.536l2.829 2.828a2.5 2.5 0 0 0 4.095-2.681l.792-.791 6.406 7.392a2.793 2.793 0 1 0 3.94-3.94l-7.392-6.407.791-.79a2.5 2.5 0 0 0 2.682-4.096L14 2.684a2.5 2.5 0 0 0-4.095 2.681L5.368 9.902a2.5 2.5 0 0 0-2.682.56Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-coin-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3.049 16.12v1.35c0 .81.379 1.503.904 2.047.521.539 1.227.978 2.022 1.326 1.593.697 3.724 1.103 6.025 1.103s4.432-.406 6.025-1.103c.795-.348 1.5-.787 2.022-1.326.525-.544.905-1.237.905-2.047v-1.35c-.463.263-.958.496-1.486.691-2.02.748-4.66 1.165-7.466 1.165s-5.447-.417-7.466-1.165a10.135 10.135 0 0 1-1.485-.69Zm0-2.382V10.65c.462.263.957.495 1.485.691 2.02.748 4.66 1.165 7.466 1.165s5.447-.417 7.466-1.165a10.135 10.135 0 0 0 1.486-.69v3.087a8.281 8.281 0 0 1-2.177 1.208c-1.745.646-4.142 1.041-6.775 1.041s-5.03-.395-6.775-1.041a8.282 8.282 0 0 1-2.176-1.208ZM12 3.048c-2.301 0-4.432.407-6.025 1.103-.795.348-1.5.788-2.022 1.327-.525.543-.904 1.236-.904 2.046v.744a8.282 8.282 0 0 0 2.176 1.208c1.746.646 4.142 1.04 6.775 1.04s5.03-.394 6.775-1.04a8.275 8.275 0 0 0 2.177-1.208v-.744c0-.81-.38-1.503-.905-2.046-.521-.539-1.227-.979-2.022-1.327-1.593-.696-3.724-1.103-6.025-1.103Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-currency-euro-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm6.7 1c.104.856.357 1.716.786 2.458.597 1.031 1.572 1.88 2.96 2.043 1.407.166 2.837-.51 3.7-1.615a1 1 0 0 0-.175-1.404c-.492-.384-1.093-.199-1.46.243-.948 1.145-2.55 1.016-3.294-.27A4.373 4.373 0 0 1 10.72 13H15a1 1 0 1 0 0-2h-4.254c.1-.517.273-.998.51-1.393.71-1.185 2.334-1.491 3.243-.34.352.445.95.646 1.448.282a1 1 0 0 0 .213-1.398c-.845-1.156-2.098-1.721-3.531-1.599-1.433.123-2.457.973-3.088 2.026-.436.727-.703 1.572-.823 2.422H8a1 1 0 1 0 0 2h.7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chart-line-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M5.5 5a1.5 1.5 0 1 0-3 0v14A1.5 1.5 0 0 0 4 20.5h16a1.5 1.5 0 0 0 0-3H5.5V5Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m12.157 8.95 2.404 2.404 2.181-2.182a1.5 1.5 0 0 1 .647-2.854h2.805c1.345 0 2.018 1.627 1.067 2.578l-5.569 5.569a1.6 1.6 0 0 1-2.263 0l-2.404-2.404-2.475 2.475a1.5 1.5 0 1 1-2.12-2.122L9.893 8.95a1.6 1.6 0 0 1 2.263 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flag-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 3a2 2 0 0 0-2 2v16a1 1 0 1 0 2 0v-5h13.804a1.1 1.1 0 0 0 .89-1.747L17.236 9.5l3.456-4.753A1.1 1.1 0 0 0 19.803 3H6Zm0 11V5h12.036l-2.63 3.618a1.5 1.5 0 0 0 0 1.764L18.035 14H6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-copper-coin-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="m10.586 7.757-2.829 2.829a2 2 0 0 0 0 2.828l2.829 2.829a2 2 0 0 0 2.828 0l2.829-2.829a2 2 0 0 0 0-2.828l-2.829-2.829a2 2 0 0 0-2.828 0ZM9.172 12 12 9.172 14.828 12 12 14.828 9.172 12Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-safe-box-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 14a1.999 1.999 0 0 1-1.724-.986L10.268 13l-.01-.015a2 2 0 1 1 3.486-.006l-.012.02-.012.022A2 2 0 0 1 12 14Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M20 3a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-1a1 1 0 1 1-2 0H7a1 1 0 1 1-2 0H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16Zm-8 4a1 1 0 0 1 1 1v.126a4.002 4.002 0 0 1 2.855 4.945l.109.063a1 1 0 1 1-1 1.732l-.11-.063A3.988 3.988 0 0 1 12 16a3.988 3.988 0 0 1-2.854-1.197l-.11.063a1 1 0 1 1-1-1.732l.109-.063A4.004 4.004 0 0 1 11 8.126V8a1 1 0 0 1 1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-currency-bitcoin-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 6a1 1 0 0 0-1 1v1H9.1A1.1 1.1 0 0 0 8 9.1v5.8A1.1 1.1 0 0 0 9.1 16H11v1a1 1 0 1 0 2 0v-1h1.5a2.5 2.5 0 0 0 2-4 2.5 2.5 0 0 0-2-4H13V7a1 1 0 0 0-1-1Zm-2 8v-1h4.5a.5.5 0 0 1 0 1H10Zm4.5-3H10v-1h4.5a.5.5 0 0 1 0 1Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-currency-dollar-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.5 10.5A2.5 2.5 0 0 1 10 8h1V7a1 1 0 1 1 2 0v1h2a1 1 0 1 1 0 2h-2v1h1a2.5 2.5 0 0 1 0 5h-1v1a1 1 0 1 1-2 0v-1H9a1 1 0 1 1 0-2h2v-1h-1a2.5 2.5 0 0 1-2.5-2.5Zm3.5.5v-1h-1a.5.5 0 0 0 0 1h1Zm2 2v1h1a.5.5 0 0 0 0-1h-1Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-red-packet-open-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 0a8 8 0 0 0-8 8v11a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a8 8 0 0 0-8-8ZM6.313 6.083a6.003 6.003 0 0 1 11.374 0L17.6 6.2a7 7 0 0 1-11.2 0l-.087-.117ZM6 8.708V19a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V8.708a9 9 0 0 1-12 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-currency-bitcoin-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8 9.1A1.1 1.1 0 0 1 9.1 8H11V7a1 1 0 1 1 2 0v1h1.5a2.5 2.5 0 0 1 2 4 2.5 2.5 0 0 1-2 4H13v1a1 1 0 1 1-2 0v-1H9.1A1.1 1.1 0 0 1 8 14.9V9.1Zm2 1.9h4.5a.5.5 0 0 0 0-1H10v1Zm0 2v1h4.5a.5.5 0 0 0 0-1H10Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-red-packet-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V5Zm3-1a1 1 0 0 0-.973.768L6.8 6.056a6.065 6.065 0 0 0 10.4 0l.773-1.288A1 1 0 0 0 17 4H7ZM6 19V8.324a8.068 8.068 0 0 0 4.506 2.537 1.5 1.5 0 1 0 2.987 0A8.068 8.068 0 0 0 18 8.324V19a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-presentation-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.243 7.172a1 1 0 0 1 1.414 1.414l-4.236 4.236a1.01 1.01 0 0 1-1.428 0L9.88 10.707 7.759 12.83a1 1 0 0 1-1.415-1.415l2.822-2.82a1.01 1.01 0 0 1 1.428 0l2.113 2.112 3.536-3.535Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 3a1 1 0 0 0 0 2v11a2 2 0 0 0 2 2h5.046l-2.293 2.293a1 1 0 1 0 1.414 1.414l2.829-2.828 2.828 2.828a1 1 0 0 0 1.414-1.414L13.945 18H19a2 2 0 0 0 2-2V5a1 1 0 1 0 0-2H3Zm16 2H5v11h14V5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-safe-box-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 7a1 1 0 0 1 1 1v.126a4.002 4.002 0 0 1 2.855 4.945l.109.063a1 1 0 1 1-1 1.732l-.11-.063A3.988 3.988 0 0 1 12 16a3.988 3.988 0 0 1-2.854-1.197l-.11.063a1 1 0 1 1-1-1.732l.109-.063A4.004 4.004 0 0 1 11 8.126V8a1 1 0 0 1 1-1Zm0 7a1.999 1.999 0 0 1-1.724-.986L10.268 13l-.01-.015a2 2 0 1 1 3.486-.006l-.012.02-.012.022A2 2 0 0 1 12 14Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M20 3a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-1a1 1 0 1 1-2 0H7a1 1 0 1 1-2 0H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16Zm0 15H4V5h16v13Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shopping-cart-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" clip-rule="evenodd" d="M2.106 2.553a1 1 0 0 1 1.341-.447l1.494.746a2 2 0 0 1 1.1 1.636L6.08 5h13.722a2 2 0 0 1 1.968 2.358l-1.637 9A2 2 0 0 1 18.165 18H6.926a2 2 0 0 1-1.994-1.847L4.158 6.088l-.002-.02-.11-1.427-1.493-.747a1 1 0 0 1-.447-1.341ZM6.234 7l.692 9h11.24l1.636-9H6.234ZM9 20.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm8.5 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" fill-rule="evenodd" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-presentation-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 4a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2v11a2 2 0 0 1-2 2h-5.055l2.293 2.293a1 1 0 0 1-1.414 1.414l-2.828-2.828-2.829 2.828a1 1 0 0 1-1.414-1.414L10.046 18H5a2 2 0 0 1-2-2V5a1 1 0 0 1-1-1Zm14.243 3.172a1 1 0 1 1 1.414 1.414l-4.236 4.236a1.01 1.01 0 0 1-1.428 0L9.88 10.709l-2.121 2.12a1 1 0 0 1-1.415-1.413l2.822-2.822a1.01 1.01 0 0 1 1.428 0l2.113 2.113 3.536-3.535Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-medal-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 17a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3.56 4.244A1.5 1.5 0 0 1 4.861 2H9.42a2 2 0 0 1 1.736 1.008L12 4.484l.844-1.476A2 2 0 0 1 14.58 2h4.558a1.5 1.5 0 0 1 1.303 2.244l-3.382 5.918a7 7 0 1 1-10.118 0L3.559 4.244Zm10.653 4.113c.439.146.858.335 1.254.56L18.277 4H14.58l-1.428 2.5 1.06 1.857Zm-5.68.56a6.961 6.961 0 0 1 3.176-.911L9.419 4H5.724l2.81 4.917ZM12 10a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wallet-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10.053 10.606a1 1 0 0 1 1.341.447l.606 1.21.606-1.21a1 1 0 1 1 1.788.894L13.868 13H14a1 1 0 1 1 0 2h-1v.5h1a1 1 0 1 1 0 2h-1v.5a1 1 0 1 1-2 0v-.5h-1a1 1 0 1 1 0-2h1V15h-1a1 1 0 1 1 0-2h.132l-.526-1.053a1 1 0 0 1 .447-1.341Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M15.69 6.861c.242-.17.469-.363.663-.58.353-.395.647-.925.647-1.567 0-.666-.317-1.188-.723-1.553-.386-.348-.872-.577-1.336-.733C14.01 2.113 12.892 2 12 2c-.892 0-2.01.113-2.941.428-.464.156-.95.385-1.336.733C7.317 3.526 7 4.048 7 4.714c0 .642.294 1.172.647 1.566a3.8 3.8 0 0 0 .663.581C5.325 8.284 3 11.335 3 15c0 2.556 1.02 4.386 2.766 5.525C7.441 21.617 9.67 22 12 22s4.56-.383 6.234-1.475C19.98 19.386 21 17.555 21 15c0-3.665-2.325-6.716-5.31-8.139ZM9.06 4.647a.31.31 0 0 0-.06.069c0 .01.008.086.137.231.14.157.375.335.702.504.66.342 1.503.549 2.161.549.658 0 1.502-.207 2.161-.549.327-.169.561-.347.702-.504.129-.145.136-.22.137-.231a.309.309 0 0 0-.06-.069c-.106-.094-.31-.213-.639-.325C13.647 4.102 12.765 4 12 4c-.765 0-1.647.101-2.301.322-.33.112-.533.23-.638.325ZM12 8c-3.488 0-7 3.092-7 7 0 1.944.73 3.114 1.859 3.85C8.059 19.633 9.83 20 12 20s3.94-.367 5.141-1.15C18.27 18.114 19 16.944 19 15c0-3.908-3.512-7-7-7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-medal-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4.862 2a1.5 1.5 0 0 0-1.303 2.244l2.357 4.124a8.968 8.968 0 0 1 6.975-2.324l-1.735-3.036A2 2 0 0 0 9.42 2H4.862ZM20.44 4.244l-2.356 4.124a9.001 9.001 0 0 0-2.883-1.782l-2.045-3.578A2.069 2.069 0 0 0 13 2.774 2 2 0 0 1 14.58 2h4.558a1.5 1.5 0 0 1 1.303 2.244Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 15a7 7 0 1 1 14 0 7 7 0 0 1-14 0Zm9 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-red-packet-open-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 0a8 8 0 0 0-8 8v11a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a8 8 0 0 0-8-8ZM6.313 6.083a6.003 6.003 0 0 1 11.374 0L17.6 6.2a7 7 0 0 1-11.2 0l-.087-.117Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-vip-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2a2 2 0 0 0-1.354 3.472l-1.435 2.87A3 3 0 0 1 6.528 10H3.915a1.5 1.5 0 1 0-1.568 1.992l3.211 7.226A3 3 0 0 0 8.3 21h7.4a3 3 0 0 0 2.742-1.782l3.211-7.226A1.5 1.5 0 1 0 20.085 10h-2.288a3 3 0 0 1-2.59-1.488l-1.802-3.088A2 2 0 0 0 12 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-auction-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2.686 10.462a2.5 2.5 0 0 0 0 3.536l2.829 2.828a2.5 2.5 0 0 0 4.242-2.121l.973-.973 6.078 7.014a2.793 2.793 0 1 0 3.94-3.94l-7.013-6.079.972-.972a2.5 2.5 0 0 0 2.121-4.243L14 2.685a2.5 2.5 0 0 0-4.243 2.122l-4.95 4.949a2.496 2.496 0 0 0-2.12.707ZM12.94 8.695l-4.242 4.242-2.122-2.121 4.243-4.243 2.121 2.122ZM4.1 12.584a.5.5 0 1 1 .707-.708l2.829 2.829a.5.5 0 1 1-.707.707L4.1 12.583Zm7.778-7.779a.5.5 0 1 1 .707-.707l2.829 2.829a.5.5 0 1 1-.707.707l-2.829-2.829Zm6.442 14.631-6.008-6.932.194-.195 6.933 6.008a.793.793 0 1 1-1.12 1.12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-award-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 6a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 10a8 8 0 1 1 13 6.245v4.61a1.1 1.1 0 0 1-1.486 1.03L12 20.569l-3.514 1.318A1.1 1.1 0 0 1 7 20.856v-4.61A7.985 7.985 0 0 1 4 10Zm8 6a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bank-card-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v1H2V7Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 10h20v7a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-7Zm13 4a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2h-3Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-award-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8 10a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 10a8 8 0 1 1 13 6.245v4.61a1.1 1.1 0 0 1-1.486 1.03L12 20.569l-3.514 1.318A1.1 1.1 0 0 1 7 20.856v-4.61A7.985 7.985 0 0 1 4 10Zm8-6a6 6 0 1 0 0 12 6 6 0 0 0 0-12ZM9 17.419v2.138l2.298-.862a2 2 0 0 1 1.404 0l2.298.862v-2.138A7.978 7.978 0 0 1 12 18a7.978 7.978 0 0 1-3-.581Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-basket-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.536 3.282a2 2 0 0 0-3.072 0L6.532 8H3.543c-.872 0-1.58.75-1.484 1.647.11 1.015.397 3.299.97 5.595a21.095 21.095 0 0 0 1.817 4.75A1.929 1.929 0 0 0 6.554 21h10.88a1.94 1.94 0 0 0 1.724-1.028 21.861 21.861 0 0 0 1.812-4.73c.552-2.209.852-4.553.967-5.587A1.49 1.49 0 0 0 20.453 8h-2.985l-3.932-4.718ZM14.865 8 12 4.562 9.135 8h5.73Zm-4.879 4.836a1 1 0 0 0-1.972.328l.5 3a1 1 0 1 0 1.972-.328l-.5-3Zm5.178-.822a1 1 0 0 1 .822 1.15l-.5 3a1 1 0 1 1-1.972-.328l.5-3a1 1 0 0 1 1.15-.822Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chart-line-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 20a1 1 0 0 1-1-1V5a1 1 0 1 1 2 0v13h15a1 1 0 1 1 0 2H4Zm2.293-6.707a1 1 0 1 0 1.414 1.414L11 11.414l3.5 3.5 6.036-6.036C21.23 8.185 20.738 7 19.76 7H17.5a1 1 0 1 0 0 2h.086L14.5 12.086l-3.5-3.5-4.707 4.707Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chart-bar-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 3a2 2 0 0 0-2 2v16h6V5a2 2 0 0 0-2-2h-2Zm6 5h3a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-3V8ZM2 13a2 2 0 0 1 2-2h3v10H4a2 2 0 0 1-2-2v-6Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-currency-bitcoin-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 14v-1h4.5a.5.5 0 0 1 0 1H10Zm4.5-3H10v-1h4.5a.5.5 0 0 1 0 1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm0 4a1 1 0 0 0-1 1v1H9.1A1.1 1.1 0 0 0 8 9.1v5.8A1.1 1.1 0 0 0 9.1 16H11v1a1 1 0 1 0 2 0v-1h1.5a2.5 2.5 0 0 0 2-4 2.5 2.5 0 0 0-2-4H13V7a1 1 0 0 0-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-calendar-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8 3a1 1 0 0 0-1 1v1H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2V4a1 1 0 1 0-2 0v1H9V4a1 1 0 0 0-1-1Zm11 4v3H5V7h14ZM5 12v7h14v-7H5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chart-bar-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8 5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v3h4a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h4V5Zm6 14V5h-4v14h4Zm2 0h4v-9h-4v9Zm-8-6v6H4v-6h4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-copyright-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 12a3 3 0 0 1 5.25-1.984 1 1 0 1 0 1.5-1.324 5 5 0 1 0 0 6.615 1 1 0 1 0-1.5-1.323A3 3 0 0 1 9 12Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-currency-cny-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M15.423 7.424a1 1 0 0 1 .21 1.399L14.024 11H15a1 1 0 1 1 0 2h-2v1h2a1 1 0 1 1 0 2h-2v1a1 1 0 0 1-2 0v-1H9a1 1 0 0 1 0-2h2v-1H9a1 1 0 0 1 0-2h.976L8.367 8.823a1 1 0 1 1 1.609-1.189L12 10.374l2.024-2.74a1 1 0 0 1 1.399-.21Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-luggage-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10 2a2 2 0 0 0-2 2v2H7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2 1 1 0 1 0 2 0h6a1 1 0 1 0 2 0 2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-1V4a2 2 0 0 0-2-2h-4Zm4 4V4h-4v2h4Zm-3 5a1 1 0 1 0-2 0v5a1 1 0 1 0 2 0v-5Zm3-1a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shopping-bag-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8 6a4 4 0 0 1 8 0h1.566a2 2 0 0 1 1.995 1.867l.797 12A2 2 0 0 1 18.363 22H5.637a2 2 0 0 1-1.995-2.133l.796-12A2 2 0 0 1 6.434 6H8Zm4-2a2 2 0 0 1 2 2h-4a2 2 0 0 1 2-2Zm4.95 6.381a1 1 0 0 1 0 1.415l-5.586 5.586a1.1 1.1 0 0 1-1.556 0L7.05 14.624a1 1 0 1 1 1.414-1.414l2.122 2.121 4.95-4.95a1 1 0 0 1 1.414 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flag-3-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 21a1 1 0 1 0 2 0v-4.343l13.339-5.78c1.205-.523 1.205-2.231 0-2.753L6.096 2.385A1.5 1.5 0 0 0 4 3.762V21ZM6 4.523 17.485 9.5 6 14.477V4.523Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-tag-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5.352 2.636a3 3 0 0 0-2.716 2.716l-.472 5.185a3 3 0 0 0 .867 2.393l7.823 7.823a3 3 0 0 0 4.242 0l5.657-5.657a3 3 0 0 0 0-4.242L12.93 3.03a3 3 0 0 0-2.393-.867l-5.185.472Zm5.5 8.217a2 2 0 1 0-2.827-2.828 2 2 0 0 0 2.828 2.829Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-seal-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M14.583 13.417a6 6 0 1 0-5.166 0L9.153 15H7a4 4 0 0 0-4 4v1a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-1a4 4 0 0 0-4-4h-2.153l-.264-1.583Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flag-3-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6.097 2.385A1.5 1.5 0 0 0 4 3.762V21a1 1 0 1 0 2 0v-4.343l13.339-5.78c1.205-.523 1.205-2.231 0-2.753L6.097 2.385Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-vip-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2a2 2 0 0 0-1.354 3.472l-1.435 2.87A3 3 0 0 1 6.528 10H3.915a1.5 1.5 0 1 0-1.568 1.992l3.211 7.226A3 3 0 0 0 8.3 21h7.4a3 3 0 0 0 2.742-1.782l3.211-7.226A1.5 1.5 0 1 0 20.085 10h-2.288a3 3 0 0 1-2.59-1.488l-1.802-3.088A2 2 0 0 0 12 2Zm-1 7.236 1.068-2.135 1.41 2.418A5 5 0 0 0 17.799 12h1.663l-2.847 6.406A1 1 0 0 1 15.7 19H8.3a1 1 0 0 1-.914-.594L4.539 12h1.989A5 5 0 0 0 11 9.236Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-coin-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M22 14c0 .878-.404 1.639-.983 2.246-.573.603-1.356 1.1-2.247 1.496C16.986 18.535 14.592 19 12 19c-2.592 0-4.986-.465-6.77-1.258-.89-.396-1.674-.893-2.247-1.496C2.404 15.64 2 14.878 2 14v-4c0-.878.404-1.639.983-2.246.573-.603 1.356-1.1 2.247-1.496C7.014 5.465 9.408 5 12 5c2.592 0 4.986.465 6.77 1.258.89.396 1.674.893 2.247 1.496C21.596 8.36 22 9.122 22 10v4ZM4 10c0-.227.1-.518.432-.868.337-.354.872-.719 1.61-1.047C7.516 7.431 9.622 7 12 7c2.379 0 4.484.43 5.958 1.085.738.328 1.273.693 1.61 1.047.333.35.432.641.432.868 0 .227-.1.518-.432.868-.337.354-.872.719-1.61 1.047C16.484 12.57 14.378 13 12 13c-2.379 0-4.484-.43-5.958-1.085-.738-.328-1.273-.693-1.61-1.047C4.099 10.518 4 10.227 4 10Zm16 3.08c-.375.246-.79.466-1.23.662C16.986 14.535 14.592 15 12 15c-2.592 0-4.986-.465-6.77-1.258A8.689 8.689 0 0 1 4 13.08V14c0 .227.1.518.432.868.337.354.872.719 1.61 1.047C7.516 16.57 9.622 17 12 17c2.379 0 4.484-.43 5.958-1.085.738-.328 1.273-.693 1.61-1.047.333-.35.432-.641.432-.868v-.92Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-seal-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M16 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm-3.353 5.966a6.067 6.067 0 0 1-1.294 0L11.18 15h1.639l-.173-1.034Zm1.936-.549a6 6 0 1 0-5.166 0L9.153 15H7a4 4 0 0 0-4 4v1a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-1a4 4 0 0 0-4-4h-2.153l-.264-1.583ZM5 19a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1H5v-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-trophy-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5.398 4.752A2 2 0 0 1 7.383 3h9.234a2 2 0 0 1 1.985 1.752L18.758 6h.668a2.29 2.29 0 0 1 2.246 2.74l-.201 1.005a4.05 4.05 0 0 1-2.972 3.13A7.184 7.184 0 0 1 13 16.931V19h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.069a7.184 7.184 0 0 1-5.5-4.056 4.05 4.05 0 0 1-2.97-3.13l-.202-1.006A2.29 2.29 0 0 1 4.574 6h.668l.156-1.248ZM19.124 8.93 19.008 8h.418a.29.29 0 0 1 .285.347l-.201 1.005a2.045 2.045 0 0 1-.336.78 7.25 7.25 0 0 0-.05-1.202ZM4.992 8h-.418a.29.29 0 0 0-.285.347l.201 1.005c.058.289.174.553.336.78-.017-.394 0-.796.05-1.202L4.992 8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-coupon-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" clip-rule="evenodd" d="M2 7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v.539a4 4 0 0 1-.745 2.325l-.696.973a2 2 0 0 0 0 2.325l.696.974A4 4 0 0 1 22 16.461V17a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-.703a4 4 0 0 1 .527-1.985l.754-1.32a2 2 0 0 0 0-1.984l-.754-1.32A4 4 0 0 1 2 7.703V7Zm8 2a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0v-4a1 1 0 0 1 1-1Z" fill-rule="evenodd" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-vip-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6.58 3a2 2 0 0 0-1.736 1.008L1.51 9.84a2 2 0 0 0 .322 2.406l9.283 9.283a1.25 1.25 0 0 0 1.768 0l9.283-9.283a2 2 0 0 0 .322-2.406l-3.333-5.833A2 2 0 0 0 17.42 3H6.58Zm2.127 6.293a1 1 0 0 0-1.414 1.414l3.823 3.823a1.25 1.25 0 0 0 1.768 0l3.823-3.823a1 1 0 0 0-1.414-1.414L12 12.586 8.707 9.293Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-coupon-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 4a3 3 0 0 0-3 3v.703a4 4 0 0 0 .527 1.985l.754 1.32a2 2 0 0 1 0 1.984l-.754 1.32A4 4 0 0 0 2 16.297V17a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-.539a4 4 0 0 0-.745-2.325l-.696-.973a2 2 0 0 1 0-2.325l.696-.974A4 4 0 0 0 22 7.539V7a3 3 0 0 0-3-3H5ZM4 7a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v.539a2 2 0 0 1-.372 1.162l-.696.974a4 4 0 0 0 0 4.65l.696.974A2 2 0 0 1 20 16.46V17a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-.703a2 2 0 0 1 .264-.993l.754-1.32a4 4 0 0 0 0-3.969l-.754-1.32A2 2 0 0 1 4 7.704V7Zm7 3a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bank-card-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 13a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2h-3Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Zm3-1a1 1 0 0 0-1 1v1h16V7a1 1 0 0 0-1-1H5ZM4 17v-7h16v7a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-block-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM6 8a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2v1h1a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-1H8a2 2 0 0 1-2-2V8Zm7 0v1h-2a2 2 0 0 0-2 2v2H8V8h5Zm2 5a2 2 0 0 1-2 2h-2v1h5v-5h-1v2Zm-4-2v2h2v-2h-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-calendar-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 4a1 1 0 0 1 2 0v1h6V4a1 1 0 1 1 2 0v1h2a2 2 0 0 1 2 2v3H3V7a2 2 0 0 1 2-2h2V4Zm-4 8h18v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-block-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm4-4a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2v1h1a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-1H8a2 2 0 0 1-2-2V8Zm5 7v1h5v-5h-1v2a2 2 0 0 1-2 2h-2Zm2-4v2h-2v-2h2Zm0-2h-2a2 2 0 0 0-2 2v2H8V8h5v1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-coin-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 5c-2.592 0-4.986.465-6.77 1.258-.89.396-1.673.893-2.247 1.496C2.404 8.36 2 9.122 2 10v4c0 .878.405 1.639.983 2.246.574.603 1.356 1.1 2.247 1.496C7.014 18.535 9.408 19 12 19c2.592 0 4.986-.465 6.77-1.258.89-.396 1.674-.893 2.247-1.496.579-.607.983-1.368.983-2.246v-4c0-.878-.404-1.639-.983-2.246-.573-.603-1.356-1.1-2.247-1.496C16.986 5.465 14.592 5 12 5Zm8 8.08c-.375.246-.79.466-1.23.662C16.986 14.535 14.592 15 12 15c-2.592 0-4.986-.465-6.77-1.258A8.689 8.689 0 0 1 4 13.08V14c0 .227.1.518.432.868.337.354.872.719 1.61 1.047C7.516 16.57 9.622 17 12 17c2.379 0 4.485-.43 5.958-1.085.738-.328 1.273-.693 1.61-1.047.333-.35.432-.641.432-.868v-.92Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-basket-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8.836 12.014a1 1 0 0 1 1.15.822l.5 3a1 1 0 1 1-1.972.328l-.5-3a1 1 0 0 1 .822-1.15Zm7.15 1.15a1 1 0 1 0-1.972-.328l-.5 3a1 1 0 1 0 1.972.328l.5-3Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.537 3.282a2 2 0 0 0-3.073 0L6.532 8H3.543c-.872 0-1.58.75-1.484 1.647.11 1.015.397 3.299.97 5.595a21.095 21.095 0 0 0 1.817 4.75A1.929 1.929 0 0 0 6.554 21h10.88a1.94 1.94 0 0 0 1.724-1.028 21.861 21.861 0 0 0 1.812-4.73c.552-2.209.852-4.553.967-5.587A1.49 1.49 0 0 0 20.453 8h-2.985l-3.931-4.718ZM19.883 10c-.143 1.146-.416 3.009-.853 4.758A19.872 19.872 0 0 1 17.41 19H6.583a19.144 19.144 0 0 1-1.613-4.242c-.453-1.815-.72-3.639-.857-4.758h15.77Zm-5.018-2L12 4.562 9.135 8h5.73Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-coin-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M21 7.5c0-.814-.381-1.51-.91-2.057-.523-.542-1.233-.984-2.032-1.334C16.456 3.409 14.314 3 12 3c-2.314 0-4.456.408-6.058 1.109-.799.35-1.509.792-2.032 1.334C3.38 5.989 3 6.686 3 7.5v10c0 .814.381 1.51.91 2.057.523.542 1.233.984 2.032 1.334C7.544 21.591 9.686 22 12 22c2.314 0 4.456-.408 6.058-1.109.799-.35 1.509-.792 2.032-1.334.529-.546.91-1.243.91-2.057v-10ZM5.348 6.833C5.066 7.123 5 7.348 5 7.5c0 .152.066.376.348.667.286.296.748.608 1.396.892C8.038 9.625 9.895 10 12 10c2.105 0 3.962-.375 5.256-.941.648-.284 1.11-.596 1.396-.892.282-.29.348-.515.348-.667 0-.152-.066-.376-.348-.667-.286-.296-.748-.608-1.396-.892C15.962 5.375 14.105 5 12 5c-2.105 0-3.962.375-5.256.941-.648.284-1.11.596-1.396.892ZM19 10.407a8.13 8.13 0 0 1-.942.484C16.456 11.591 14.314 12 12 12c-2.314 0-4.456-.408-6.058-1.109A8.122 8.122 0 0 1 5 10.407V12.5c0 .152.066.376.348.667.286.296.748.608 1.396.892C8.038 14.625 9.895 15 12 15c2.105 0 3.962-.375 5.256-.941.648-.284 1.11-.596 1.396-.892.282-.29.348-.515.348-.667v-2.093Zm0 5a8.13 8.13 0 0 1-.942.484C16.456 16.591 14.314 17 12 17c-2.314 0-4.456-.408-6.058-1.109A8.122 8.122 0 0 1 5 15.407V17.5c0 .152.066.376.348.667.286.296.748.608 1.396.892C8.038 19.625 9.895 20 12 20c2.105 0 3.962-.375 5.256-.941.648-.284 1.11-.596 1.396-.892.282-.29.348-.515.348-.667v-2.093Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flag-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6 3a2 2 0 0 0-2 2v16a1 1 0 1 0 2 0v-5h13.804a1.1 1.1 0 0 0 .89-1.747L17.236 9.5l3.456-4.753A1.1 1.1 0 0 0 19.803 3H6Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-copyright-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM9 12a3 3 0 0 1 5.25-1.984 1 1 0 1 0 1.5-1.324 5 5 0 1 0 0 6.615 1 1 0 1 0-1.5-1.323A3 3 0 0 1 9 12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-currency-bitcoin-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 14v-1h4.5a.5.5 0 0 1 0 1H10Zm4.5-3H10v-1h4.5a.5.5 0 0 1 0 1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm0 4a1 1 0 0 0-1 1v1H9.1A1.1 1.1 0 0 0 8 9.1v5.8A1.1 1.1 0 0 0 9.1 16H11v1a1 1 0 1 0 2 0v-1h1.5a2.5 2.5 0 0 0 2-4 2.5 2.5 0 0 0-2-4H13V7a1 1 0 0 0-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-currency-dollar-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 10h1v1h-1a.5.5 0 0 1 0-1Zm3 4v-1h1a.5.5 0 0 1 0 1h-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm-1 5a1 1 0 1 1 2 0v1h2a1 1 0 1 1 0 2h-2v1h1a2.5 2.5 0 0 1 0 5h-1v1a1 1 0 1 1-2 0v-1H9a1 1 0 1 1 0-2h2v-1h-1a2.5 2.5 0 0 1 0-5h1V7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-currency-cny-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm3.423 5.424a1 1 0 0 1 .21 1.399L14.024 11H15a1 1 0 0 1 0 2h-2v1h2a1 1 0 0 1 0 2h-2v1a1 1 0 1 1-2 0v-1H9a1 1 0 1 1 0-2h2v-1H9a1 1 0 1 1 0-2h.976L8.367 8.823a1 1 0 0 1 1.609-1.189L12 10.374l2.024-2.74a1 1 0 0 1 1.399-.21Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-currency-euro-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8.7 13c.104.856.357 1.716.786 2.458.597 1.031 1.572 1.88 2.96 2.043 1.407.166 2.837-.51 3.7-1.615a1 1 0 0 0-.175-1.404c-.492-.384-1.093-.199-1.46.243-.948 1.145-2.55 1.016-3.294-.27A4.373 4.373 0 0 1 10.72 13H15a1 1 0 1 0 0-2h-4.254c.1-.517.273-.998.51-1.393.71-1.185 2.334-1.491 3.243-.34.352.445.95.646 1.448.282a1 1 0 0 0 .213-1.398c-.845-1.156-2.098-1.721-3.531-1.599-1.433.123-2.457.973-3.088 2.026-.436.727-.703 1.572-.823 2.422H8a1 1 0 1 0 0 2h.7Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shopping-cart-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3.6 2.7a1 1 0 1 0-1.2 1.6l1.708 1.28 2.739 11.87A2 2 0 0 0 8.796 19H17.5a1 1 0 0 0 0-2H8.796l-.26-1.124 7.313-.61a5 5 0 0 0 4.546-4.363l.457-3.655A2 2 0 0 0 18.867 5H6.022a2 2 0 0 0-.714-1.02L3.6 2.7ZM10 21a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm6 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-copper-coin-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm-.707 6.464-2.829 2.829a1 1 0 0 0 0 1.414l2.829 2.829a1 1 0 0 0 1.414 0l2.829-2.829a1 1 0 0 0 0-1.414l-2.829-2.829a1 1 0 0 0-1.414 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-red-packet-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m4.211 3.892 1.996 2.395a7.54 7.54 0 0 0 11.585 0l1.997-2.395A3.001 3.001 0 0 0 17 2H7a3.001 3.001 0 0 0-2.789 1.892Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m20 6.762-.671.805a9.54 9.54 0 0 1-5.834 3.315 1.5 1.5 0 1 1-2.99 0A9.54 9.54 0 0 1 4.67 7.567L4 6.762V19a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V6.762Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-luggage-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 10a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1Zm4 0a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10 2a2 2 0 0 0-2 2v2H7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2 1 1 0 1 0 2 0h6a1 1 0 1 0 2 0 2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-1V4a2 2 0 0 0-2-2h-4Zm7 17V8H7v11h10ZM14 6V4h-4v2h4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shopping-bag-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.95 11.796a1 1 0 0 0-1.414-1.415l-4.95 4.95-2.122-2.121a1 1 0 0 0-1.414 1.414l2.758 2.758a1.1 1.1 0 0 0 1.556 0l5.586-5.587Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2a4 4 0 0 0-4 4H6.434a2 2 0 0 0-1.996 1.867l-.796 12A2 2 0 0 0 5.637 22h12.726a2 2 0 0 0 1.995-2.133l-.797-12A2 2 0 0 0 17.566 6H16a4 4 0 0 0-4-4Zm2 6v1a1 1 0 1 0 2 0V8h1.566l.797 12H5.637l.797-12H8v1a1 1 0 1 0 2 0V8h4Zm0-2a2 2 0 0 0-4 0h4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-target-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 12a8 8 0 0 1 8-8 1 1 0 1 0 0-2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10a1 1 0 1 0-2 0 8 8 0 1 1-16 0Zm5 0a3 3 0 0 1 3-3 1 1 0 1 0 0-2 5 5 0 1 0 5 5 1 1 0 1 0-2 0 3 3 0 1 1-6 0Zm2.793.207a1 1 0 0 1 0-1.414L14 8.586v-3l.293-.293 2.659-2.659c.755-.756 2.048-.22 2.048.849V5h1.517c1.07 0 1.605 1.293.849 2.049l-2.659 2.658-.293.293h-3l-2.207 2.207a1 1 0 0 1-1.414 0ZM16 6.414l1-1V5.8A1.2 1.2 0 0 0 18.2 7h.386l-1 1H16V6.414Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-tag-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.317 7.318a3 3 0 1 0 4.243 4.243 3 3 0 0 0-4.243-4.243Zm1.414 2.828a1 1 0 1 1 1.415-1.414 1 1 0 0 1-1.415 1.414Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5.352 2.636a3 3 0 0 0-2.716 2.716l-.472 5.185a3 3 0 0 0 .867 2.393l7.823 7.823a3 3 0 0 0 4.242 0l5.657-5.657a3 3 0 0 0 0-4.242L12.93 3.03a3 3 0 0 0-2.393-.867l-5.185.472Zm-.724 2.897a1 1 0 0 1 .905-.905l5.186-.472a1 1 0 0 1 .797.289l7.823 7.823a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 0 1-1.414 0l-7.823-7.823a1 1 0 0 1-.289-.798l.472-5.185Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-target-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 5a7.1 7.1 0 0 1 1.088.084l2.443-2.443A9.978 9.978 0 0 0 12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10a9.977 9.977 0 0 0-.641-3.53l-2.443 2.442A7 7 0 1 1 12 5Zm8.927 2.488.439-.44c.756-.755.22-2.048-.849-2.048H19V3.483c0-1.07-1.293-1.605-2.049-.849l-.439.44-2.22 2.219-.067.068-.225.225v3l-2.207 2.207a1 1 0 0 0 1.414 1.414L15.414 10h3l.225-.225.068-.068 2.22-2.22ZM17 12c0-.342-.034-.677-.1-1h-1.072l-1.914 1.914a2 2 0 1 1-2.828-2.828L13 8.172V7.1a5 5 0 1 0 4 4.9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-trophy-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5.398 4.752A2 2 0 0 1 7.383 3h9.234a2 2 0 0 1 1.985 1.752L18.758 6h.668a2.29 2.29 0 0 1 2.246 2.74l-.201 1.005a4.05 4.05 0 0 1-2.972 3.13A7.184 7.184 0 0 1 13 16.931V19h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.069a7.184 7.184 0 0 1-5.5-4.056 4.05 4.05 0 0 1-2.97-3.13l-.202-1.006A2.29 2.29 0 0 1 4.574 6h.668l.156-1.248ZM12 15a5.18 5.18 0 0 0 5.14-5.822L16.617 5H7.383L6.86 9.178A5.18 5.18 0 0 0 12 15Zm7.124-6.07L19.008 8h.418a.29.29 0 0 1 .285.347l-.201 1.005a2.045 2.045 0 0 1-.336.78 7.25 7.25 0 0 0-.05-1.202ZM4.992 8h-.418a.29.29 0 0 0-.285.347l.201 1.005c.058.289.174.553.336.78-.017-.394 0-.796.05-1.202L4.992 8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-vip-3-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2.338 4.863A1.25 1.25 0 0 1 3.428 3h5.18a1.5 1.5 0 0 1 1.307.765L13 9.258l3.085-5.493A1.5 1.5 0 0 1 17.393 3h3.18a1.25 1.25 0 0 1 1.089 1.863l-8.572 15.24a1.25 1.25 0 0 1-2.18 0L2.339 4.863Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wallet-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v1h-6a5 5 0 0 0 0 10h6v1a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 12a3 3 0 0 1 3-3h5a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-5a3 3 0 0 1-3-3Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wallet-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M15.69 6.861c.242-.17.469-.363.663-.58.353-.395.647-.925.647-1.567 0-.666-.317-1.188-.723-1.553-.386-.348-.872-.577-1.336-.733C14.01 2.113 12.892 2 12 2c-.892 0-2.01.113-2.941.428-.464.156-.95.385-1.336.733C7.317 3.526 7 4.048 7 4.714c0 .642.294 1.172.647 1.566a3.8 3.8 0 0 0 .663.581C5.325 8.284 3 11.335 3 15c0 2.556 1.02 4.386 2.766 5.525C7.441 21.617 9.67 22 12 22s4.56-.383 6.234-1.475C19.98 19.386 21 17.555 21 15c0-3.665-2.325-6.716-5.31-8.139ZM9.06 4.647a.31.31 0 0 0-.06.069c0 .01.008.086.137.231.14.157.375.335.702.504.66.342 1.503.549 2.161.549.658 0 1.502-.207 2.161-.549.327-.169.561-.347.702-.504.129-.145.136-.22.137-.231a.309.309 0 0 0-.06-.069c-.106-.094-.31-.213-.639-.325C13.647 4.102 12.765 4 12 4c-.765 0-1.647.101-2.301.322-.33.112-.533.23-.638.325Zm2.334 6.406a1 1 0 1 0-1.788.894L10.132 13H10a1 1 0 1 0 0 2h1v.5h-1a1 1 0 1 0 0 2h1v.5a1 1 0 1 0 2 0v-.5h1a1 1 0 1 0 0-2h-1V15h1a1 1 0 1 0 0-2h-.132l.526-1.053a1 1 0 1 0-1.788-.894L12 12.263l-.606-1.21Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wallet-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2.268A2 2 0 0 1 22 10v4a2 2 0 0 1-1 1.732V18a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6Zm16 0v2h-4a4 4 0 0 0 0 8h4v2H5V6h14Zm-4 4a2 2 0 1 0 0 4h5v-4h-5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-vip-3-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2.338 4.863A1.25 1.25 0 0 1 3.428 3h6.28c.541 0 1.04.29 1.306.761L13 7.27l1.986-3.509A1.5 1.5 0 0 1 16.291 3h4.282a1.25 1.25 0 0 1 1.089 1.863l-8.572 15.24a1.25 1.25 0 0 1-2.18 0L2.339 4.863ZM4.71 5 12 17.96 19.29 5h-2.707L13 11.33 9.417 5H4.71Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-vip-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8.707 9.293a1 1 0 0 0-1.414 1.414l3.823 3.823a1.25 1.25 0 0 0 1.768 0l3.823-3.823a1 1 0 0 0-1.414-1.414L12 12.586 8.707 9.293Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6.58 3a2 2 0 0 0-1.736 1.008L1.51 9.84a2 2 0 0 0 .322 2.406l9.283 9.283a1.25 1.25 0 0 0 1.768 0l9.283-9.283a2 2 0 0 0 .322-2.406l-3.333-5.833A2 2 0 0 0 17.42 3H6.58Zm0 2h10.84l3.333 5.833L12 19.586l-8.753-8.753L6.58 5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chat-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10H4a2 2 0 0 1-2-2v-8Zm6-1a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chat-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10a9.95 9.95 0 0 1-5.168-1.438l-3.032.892A1.01 1.01 0 0 1 2.546 20.2l.892-3.032A9.958 9.958 0 0 1 2 12Zm8 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5.5 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-invite-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 6a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v4.373a1.5 1.5 0 0 1 2 1.415V18a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-6.247a1.5 1.5 0 0 1 2-1.414V6Zm14 0v5.307l-5.12 2.409a1 1 0 0 1-.813.017L6 11.178V6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1ZM4 12.506V18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-5.424l-6.268 2.95a3 3 0 0 1-2.441.05L4 12.506ZM10 8a1 1 0 0 0 0 2h2a1 1 0 1 0 0-2h-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chat-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5.5 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10a9.95 9.95 0 0 1-5.168-1.438l-3.032.892A1.01 1.01 0 0 1 2.546 20.2l.892-3.032A9.958 9.958 0 0 1 2 12Zm10-8a8 8 0 0 0-6.759 12.282c.227.357.305.807.177 1.24l-.441 1.501 1.501-.441c.433-.128.883-.05 1.24.177A8 8 0 1 0 12 4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chat-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8 11a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H9Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10H4a2 2 0 0 1-2-2v-8Zm10-8a8 8 0 0 0-8 8v8h8a8 8 0 1 0 0-16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-mail-send-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 4a2 2 0 0 0-2 2v2h2v-.586l6.94 6.94a1.5 1.5 0 0 0 2.12 0L20 7.414V18H4v-1H2v1a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Zm14.586 2H5.414L12 12.586 18.586 6Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 10a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H2Zm-2 4a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-message-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 6a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3h-7.667L8 21.5c-.824.618-2 .03-2-1V19H5a3 3 0 0 1-3-3V6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chat-3-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 11.5C2 6.643 6.656 3 12 3s10 3.643 10 8.5S17.344 20 12 20c-.653 0-1.292-.053-1.911-.155-.093.073-.253.205-.45.344C9.07 20.59 8.249 21 7 21a1 1 0 0 1-1-1c0-.55.143-1.234-.094-1.756C3.577 16.723 2 14.298 2 11.5Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chat-3-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 5c-4.597 0-8 3.073-8 6.5 0 2.014 1.141 3.872 3.042 5.096.738.476.939 1.403.972 2.222.753-.31 1.258-1.16 2.172-.986.582.11 1.189.168 1.814.168 4.597 0 8-3.073 8-6.5S16.597 5 12 5ZM2 11.5C2 6.643 6.656 3 12 3s10 3.643 10 8.5S17.344 20 12 20c-.653 0-1.292-.053-1.911-.155-.093.073-.253.205-.45.344C9.07 20.59 8.249 21 7 21a1 1 0 0 1-1-1c0-.55.143-1.234-.094-1.756C3.577 16.723 2 14.298 2 11.5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-message-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 6a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3h-7.667L8 21.5c-.824.618-2 .03-2-1V19H5a3 3 0 0 1-3-3V6Zm3-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h1.5A1.5 1.5 0 0 1 8 18.5v.5l2.133-1.6a2 2 0 0 1 1.2-.4H19a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-invite-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 6a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v4.373a1.5 1.5 0 0 1 2 1.415V18a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-6.247a1.5 1.5 0 0 1 2-1.414V6Zm14 0v5.307l-5.12 2.409a1 1 0 0 1-.813.017L6 11.178V6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1Zm-8 2a1 1 0 0 0 0 2h2a1 1 0 1 0 0-2h-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-message-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 6a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3h-3.697l-2.61 1.74c-.42.28-.966.28-1.386 0L8.697 19H5a3 3 0 0 1-3-3V6Zm8 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5.5 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-message-4-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 6a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H7.333L4 21.5c-.824.618-2 .03-2-1V6Zm5 3a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-mail-send-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1h2v1h16V7.423l-6.935 6.935a1.5 1.5 0 0 1-2.121 0L4 7.414V8H2V6Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M1 11a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2H2a1 1 0 0 1-1-1Zm0 2a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2H1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-message-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 11.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm7 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h3.697l2.61 1.74c.42.28.966.28 1.386 0l2.61-1.74H19a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H5ZM4 6a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-3.697a2 2 0 0 0-1.11.336L12 18.798l-2.193-1.462A2 2 0 0 0 8.697 17H5a1 1 0 0 1-1-1V6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-message-4-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 9a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H8Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 6a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H7.333L4 21.5c-.824.618-2 .03-2-1V6Zm3-1a1 1 0 0 0-1 1v13l2.133-1.6a2 2 0 0 1 1.2-.4H19a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-add-circle-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 12a1 1 0 0 1 1-1h3V8a1 1 0 1 1 2 0v3h3a1 1 0 1 1 0 2h-3v3a1 1 0 1 1-2 0v-3H8a1 1 0 0 1-1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-alert-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.7 3.148a1.5 1.5 0 0 1 2.599 0l8.634 14.954a1.5 1.5 0 0 1-1.299 2.25H3.366a1.5 1.5 0 0 1-1.299-2.25l8.634-14.954ZM12 8a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0V9a1 1 0 0 1 1-1Zm0 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-alert-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 8a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0V9a1 1 0 0 1 1-1Zm0 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.7 3.148a1.5 1.5 0 0 1 2.599 0l8.634 14.954a1.5 1.5 0 0 1-1.299 2.25H3.366a1.5 1.5 0 0 1-1.299-2.25l8.634-14.954Zm1.3 1.75L4.232 18.352h15.536L12 4.898Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-alert-octagon-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9.1 2h5.8a3 3 0 0 1 2.12.879l4.101 4.1A3 3 0 0 1 22 9.101v5.798a3 3 0 0 1-.879 2.122l-4.1 4.1a3 3 0 0 1-2.122.879H9.101a3 3 0 0 1-2.122-.879l-4.1-4.1A3 3 0 0 1 2 14.899V9.101a3 3 0 0 1 .879-2.122l4.1-4.1A3 3 0 0 1 9.101 2ZM12 6a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Zm0 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-add-circle-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm5 0a1 1 0 0 1 1-1h3V8a1 1 0 1 1 2 0v3h3a1 1 0 1 1 0 2h-3v3a1 1 0 1 1-2 0v-3H8a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-close-circle-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8.465 8.464a1 1 0 0 1 1.414 0L12 10.586l2.121-2.122a1 1 0 1 1 1.415 1.415l-2.122 2.12 2.122 2.122a1 1 0 0 1-1.415 1.415L12 13.414l-2.121 2.122a1 1 0 0 1-1.415-1.415L10.586 12 8.465 9.879a1 1 0 0 1 0-1.415Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-door-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M20 19h-1V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v14H4a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2Zm-5.5-5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-eye-close-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2.5 9a1.5 1.5 0 0 1 2.945-.404c1.947 6.502 11.158 6.503 13.109.005a1.5 1.5 0 1 1 2.877.85 10.104 10.104 0 0 1-1.623 3.236l.96.96a1.5 1.5 0 1 1-2.122 2.12l-1.01-1.01a9.616 9.616 0 0 1-1.67.915l.243.906a1.5 1.5 0 0 1-2.897.776l-.251-.935c-.705.073-1.417.073-2.122 0l-.25.935a1.5 1.5 0 0 1-2.898-.776l.242-.907a9.61 9.61 0 0 1-1.669-.914l-1.01 1.01a1.5 1.5 0 1 1-2.122-2.12l.96-.96a10.102 10.102 0 0 1-1.62-3.23A1.5 1.5 0 0 1 2.5 9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-forbid-circle-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7.757 14.829a1 1 0 0 0 1.415 1.414l7.07-7.071a1 1 0 0 0-1.414-1.415l-7.07 7.072Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-filter-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 6a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm3 6a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm4 5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-filter-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2.5 6A1.5 1.5 0 0 1 4 4.5h16a1.5 1.5 0 0 1 0 3H4A1.5 1.5 0 0 1 2.5 6Zm3 6A1.5 1.5 0 0 1 7 10.5h10a1.5 1.5 0 0 1 0 3H7A1.5 1.5 0 0 1 5.5 12Zm4.5 4.5a1.5 1.5 0 0 0 0 3h4a1.5 1.5 0 0 0 0-3h-4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-eye-close-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3.05 9.31a1 1 0 1 1 1.914-.577c2.086 6.986 11.982 6.987 14.07.004a1 1 0 1 1 1.918.57 9.509 9.509 0 0 1-1.813 3.417L20.414 14A1 1 0 0 1 19 15.414l-1.311-1.311a9.116 9.116 0 0 1-2.32 1.269l.357 1.335a1 1 0 1 1-1.931.518l-.364-1.357c-.947.14-1.915.14-2.862 0l-.364 1.357a1 1 0 1 1-1.931-.518l.357-1.335a9.118 9.118 0 0 1-2.32-1.27l-1.31 1.312A1 1 0 0 1 3.585 14l1.275-1.275c-.784-.936-1.41-2.074-1.812-3.414Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-grid-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm10 0a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V5ZM3 15a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4Zm10 0a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-exit-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13 4a1 1 0 0 0-1-1H7a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h4.5a1 1 0 1 0 0-2H7a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h5a1 1 0 0 0 1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 12a1 1 0 0 1 1-1h5.414l-1.121-1.121a1 1 0 0 1 1.414-1.415l2.828 2.829a1 1 0 0 1 0 1.414l-2.828 2.829a1 1 0 1 1-1.414-1.415L17.414 13H12a1 1 0 0 1-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-certificate-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.494 10.397a1 1 0 0 0-1.415-1.415l-4.244 4.245-1.768-1.768a1 1 0 1 0-1.414 1.415l2.404 2.404a1.1 1.1 0 0 0 1.556 0l4.88-4.881Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.414 2.1a2 2 0 0 0-2.828 0L8.686 4H6a2 2 0 0 0-2 2v2.686l-1.9 1.9a2 2 0 0 0 0 2.828l1.9 1.9V18a2 2 0 0 0 2 2h2.686l1.9 1.9a2 2 0 0 0 2.828 0l1.9-1.9H18a2 2 0 0 0 2-2v-2.686l1.9-1.9a2 2 0 0 0 0-2.828l-1.9-1.9V6a2 2 0 0 0-2-2h-2.686l-1.9-1.9ZM12 3.515l1.9 1.9A2 2 0 0 0 15.313 6H18v2.686a2 2 0 0 0 .586 1.414l1.9 1.9-1.9 1.9A2 2 0 0 0 18 15.313V18h-2.686a2 2 0 0 0-1.415.586L12 20.486l-1.9-1.9A2 2 0 0 0 8.687 18H6v-2.686a2 2 0 0 0-.586-1.415l-1.9-1.9 1.9-1.899A2 2 0 0 0 6 8.687V6h2.686a2 2 0 0 0 1.415-.586L12 3.514Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-open-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M19.5 4a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Zm-2.5.5a2.5 2.5 0 1 1 1.97 2.444l-3.08 3.08c.385.563.61 1.243.61 1.976 0 .861-.31 1.65-.827 2.26l2.913 2.912a2.5 2.5 0 1 1-1.414 1.414l-3.218-3.218A3.505 3.505 0 0 1 9.644 13H6.793a2.5 2.5 0 1 1 0-2h2.853a3.502 3.502 0 0 1 4.68-2.24l3.01-3.01A2.489 2.489 0 0 1 17 4.5Zm-4 6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm6 9a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm-14.5-8a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-setting-4-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.414 2.1a2 2 0 0 0-2.828 0L8.686 4H6a2 2 0 0 0-2 2v2.686l-1.9 1.9a2 2 0 0 0 0 2.828l1.9 1.9V18a2 2 0 0 0 2 2h2.686l1.9 1.9a2 2 0 0 0 2.828 0l1.9-1.9H18a2 2 0 0 0 2-2v-2.686l1.9-1.9a2 2 0 0 0 0-2.828l-1.9-1.9V6a2 2 0 0 0-2-2h-2.686l-1.9-1.9ZM12 3.515l1.9 1.9A2 2 0 0 0 15.313 6H18v2.686a2 2 0 0 0 .586 1.414l1.9 1.9-1.9 1.9A2 2 0 0 0 18 15.313V18h-2.686a2 2 0 0 0-1.415.586l-1.9 1.9-1.899-1.9A2 2 0 0 0 8.686 18H6v-2.686a2 2 0 0 0-.586-1.415l-1.9-1.9 1.9-1.899A2 2 0 0 0 6 8.687V6h2.686a2 2 0 0 0 1.414-.586l1.9-1.9ZM10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-power-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.5 3a1.5 1.5 0 0 0-3 0v10a1.5 1.5 0 0 0 3 0V3ZM7.854 5.75a1.5 1.5 0 1 0-1.661-2.5A10.492 10.492 0 0 0 1.5 12c0 5.799 4.701 10.5 10.5 10.5S22.5 17.799 22.5 12c0-3.654-1.867-6.87-4.693-8.75a1.5 1.5 0 0 0-1.66 2.5 7.5 7.5 0 1 1-8.292 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-close-circle-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm6.465-3.536a1 1 0 0 1 1.414 0L12 10.586l2.121-2.122a1 1 0 1 1 1.415 1.415l-2.122 2.12 2.122 2.122a1 1 0 0 1-1.415 1.415L12 13.414l-2.121 2.122a1 1 0 0 1-1.415-1.415L10.586 12 8.465 9.879a1 1 0 0 1 0-1.415Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-lock-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 12a1 1 0 0 0-1 1v4a1 1 0 1 0 2 0v-4a1 1 0 0 0-1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 8a6 6 0 1 1 12 0h1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2h1Zm6-4a4 4 0 0 1 4 4H8a4 4 0 0 1 4-4Zm-7 6h14v10H5V10Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-open-door-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.5 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5.671 3.721A2 2 0 0 0 4 5.694v12.612a2 2 0 0 0 1.671 1.973l8.582 1.43A1.5 1.5 0 0 0 16 20.229V19h2a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2V3.772a1.5 1.5 0 0 0-1.747-1.48l-8.582 1.43Zm8.329.64L6 5.694v12.612l8 1.333V4.361ZM18 17h-2V7h2v10Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shield-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.298 2.195a2 2 0 0 1 1.404 0l7 2.625A2 2 0 0 1 21 6.693v5.363a9 9 0 0 1-4.975 8.05l-3.354 1.677a1.5 1.5 0 0 1-1.342 0l-3.354-1.677A9 9 0 0 1 3 12.056V6.693A2 2 0 0 1 4.298 4.82l7-2.625ZM12 4.068 5 6.693v5.363a7 7 0 0 0 3.87 6.26L12 19.883l3.13-1.565A7 7 0 0 0 19 12.056V6.693l-7-2.625Zm4.707 5.639a1 1 0 0 0-1.414-1.414l-4.586 4.586-1.586-1.586a1 1 0 1 0-1.414 1.414l2.222 2.222a1.1 1.1 0 0 0 1.556 0l5.222-5.222Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-thumb-down-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9.5 21.5c1.356 0 2.294-.852 2.895-2.053.522-1.044.571-2.3.597-3.447h4.834a3 3 0 0 0 2.99-3.25l-.361-4.331A7 7 0 0 0 13.479 2h-1.512A6.937 6.937 0 0 0 6.9 4.179a5.538 5.538 0 0 0-1.4-.18c-1.108 0-2.028.622-2.624 1.61-.58.96-.876 2.284-.876 3.89 0 1.607.297 2.932.876 3.892C3.472 14.38 4.392 15 5.5 15c.281 0 .579-.05.877-.134.458 1.2.784 2.437.63 3.735C6.835 20.046 8.016 21.5 9.5 21.5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-settings-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.25 2.567a2.5 2.5 0 0 0-2.5 0L4.456 6.2a2.5 2.5 0 0 0-1.25 2.165v7.268a2.5 2.5 0 0 0 1.25 2.165l6.294 3.634a2.5 2.5 0 0 0 2.5 0l6.294-3.634a2.5 2.5 0 0 0 1.25-2.165V8.366a2.5 2.5 0 0 0-1.25-2.165L13.25 2.567ZM12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-thumb-up-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9.5 2.5c1.356 0 2.294.852 2.895 2.053.522 1.045.571 2.3.597 3.447h4.834a3 3 0 0 1 2.99 3.25l-.361 4.331A7 7 0 0 1 13.479 22h-1.512a6.956 6.956 0 0 1-4.642-1.762 1.241 1.241 0 0 0-1.009-.298A5.49 5.49 0 0 1 5.5 20c-1.108 0-2.028-.62-2.624-1.608C2.296 17.432 2 16.107 2 14.5c0-1.606.297-2.931.876-3.891C3.472 9.62 4.392 9 5.5 9c.281 0 .579.05.877.134.458-1.2.784-2.437.63-3.735C6.835 3.954 8.016 2.5 9.5 2.5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-thumb-up-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8.993 5.163c.169 1.423-.062 2.907-.576 4.239-.569 1.474-1.325 3.07-1.419 4.657-.079 1.337.224 2.919 1.032 4.002C8.915 19.247 10.368 20 11.967 20h1.512a5 5 0 0 0 4.983-4.585l.361-4.332A1 1 0 0 0 17.826 10H12.5a1.503 1.503 0 0 1-1.502-1.492c-.007-.97.054-2.167-.392-3.06-.4-.8-.774-.948-1.106-.948-.3 0-.54.393-.507.663ZM9.5 2.5c1.356 0 2.294.852 2.895 2.053.522 1.045.571 2.3.597 3.447h4.834a3 3 0 0 1 2.99 3.25l-.361 4.331A7 7 0 0 1 13.479 22h-1.512A6.937 6.937 0 0 1 6.9 19.822 5.54 5.54 0 0 1 5.5 20c-1.108 0-2.028-.62-2.624-1.608C2.296 17.432 2 16.107 2 14.5c0-1.606.297-2.931.876-3.891C3.472 9.62 4.392 9 5.5 9c.281 0 .579.05.877.134.458-1.2.784-2.437.63-3.735C6.835 3.954 8.016 2.5 9.5 2.5Zm-3.804 8.524c-.485-.1-.865.216-1.107.618C4.263 12.182 4 13.106 4 14.5c0 1.394.263 2.319.588 2.859.31.512.64.641.912.641.064 0 .127-.002.19-.005-.536-1.208-.766-2.74-.688-4.054.047-.805.361-1.918.694-2.917Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-open-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M17 4.5a2.5 2.5 0 1 1 1.97 2.444l-3.08 3.08c.385.563.61 1.243.61 1.976 0 .861-.31 1.65-.827 2.26l2.913 2.912a2.5 2.5 0 1 1-1.414 1.414l-3.218-3.218A3.505 3.505 0 0 1 9.644 13H6.793a2.5 2.5 0 1 1 0-2h2.853a3.502 3.502 0 0 1 4.68-2.24l3.01-3.01A2.489 2.489 0 0 1 17 4.5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-smile-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-10C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm-3 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-8 1a1 1 0 0 1 1 1 4 4 0 0 0 8 0 1 1 0 1 1 2 0 6 6 0 0 1-12 0 1 1 0 0 1 1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-brush-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1H4a2 2 0 0 0-2 2v2h20v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2Zm11 13v5a2 2 0 0 1-2 2h-1v-3a1 1 0 1 0-2 0v3h-4v-3a1 1 0 1 0-2 0v3H7v-3a1 1 0 1 0-2 0v3H4a2 2 0 0 1-2-2v-5h20Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-exit-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.5 4A1.5 1.5 0 0 0 12 2.5H7A3.5 3.5 0 0 0 3.5 6v12A3.5 3.5 0 0 0 7 21.5h4.5a1.5 1.5 0 0 0 0-3H7a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5h5A1.5 1.5 0 0 0 13.5 4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10.5 12a1.5 1.5 0 0 1 1.5-1.5h4.207l-.268-.268a1.5 1.5 0 1 1 2.122-2.121l2.828 2.828a1.5 1.5 0 0 1 0 2.122l-2.828 2.828a1.5 1.5 0 1 1-2.122-2.121l.268-.268H12a1.5 1.5 0 0 1-1.5-1.5Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-delete-back-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.535 15.536a1 1 0 0 1-1.414 0L13 13.414l-2.121 2.122a1 1 0 1 1-1.415-1.415L11.586 12 9.464 9.879a1 1 0 0 1 1.415-1.415l2.12 2.122 2.122-2.122a1 1 0 1 1 1.414 1.415L14.415 12l2.12 2.121a1 1 0 0 1 0 1.415Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8.108 3a3 3 0 0 0-2.544 1.41l-4.08 6.53a2 2 0 0 0 0 2.12l4.08 6.53A3 3 0 0 0 8.108 21H19a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H8.108ZM7.26 5.47A1 1 0 0 1 8.108 5H19a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H8.108a1 1 0 0 1-.848-.47L3.18 12l4.08-6.53Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-entrance-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.5 4A1.5 1.5 0 0 0 12 2.5H7A3.5 3.5 0 0 0 3.5 6v12A3.5 3.5 0 0 0 7 21.5h4.5a1.5 1.5 0 0 0 0-3H7a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5h5A1.5 1.5 0 0 0 13.5 4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m15.793 10.5.268-.268a1.5 1.5 0 1 0-2.122-2.121l-2.828 2.828a1.5 1.5 0 0 0 0 2.122l2.828 2.828a1.5 1.5 0 1 0 2.122-2.121l-.268-.268H20a1.5 1.5 0 0 0 0-3h-4.207Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-key-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 11.9A5.002 5.002 0 0 0 12 2a5 5 0 0 0-1 9.9V21a1 1 0 1 0 2 0v-1h2a1 1 0 1 0 0-2h-2v-1h2a1 1 0 1 0 0-2h-2v-3.1ZM9 7a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-earlywarning-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 2.5a1 1 0 1 0-2 0V4a1 1 0 1 0 2 0V2.5Zm6.293 1.793a1 1 0 1 1 1.414 1.414l-1 1a1 1 0 1 1-1.414-1.414l1-1ZM12 6a7 7 0 0 0-7 7v7H4a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2h-1v-7a7 7 0 0 0-7-7Zm5 14v-7a5 5 0 0 0-10 0v7h10ZM3.293 4.293a1 1 0 0 0 0 1.414l1 1a1 1 0 0 0 1.414-1.414l-1-1a1 1 0 0 0-1.414 0ZM3.5 11a1 1 0 1 1 0 2H2a1 1 0 1 1 0-2h1.5ZM23 12a1 1 0 0 0-1-1h-1.5a1 1 0 1 0 0 2H22a1 1 0 0 0 1-1Zm-8.106 2.447L15.618 13h-4l1.276-2.553a1 1 0 1 0-1.788-.894l-2 4L8.382 15h4l-1.276 2.553a1 1 0 1 0 1.788.894l2-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-entrance-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13 4a1 1 0 0 0-1-1H7a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h4.5a1 1 0 1 0 0-2H7a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h5a1 1 0 0 0 1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m14.586 11 1.121-1.121a1 1 0 1 0-1.414-1.415l-2.829 2.829a1 1 0 0 0 0 1.414l2.829 2.829a1 1 0 1 0 1.414-1.415L14.586 13H20a1 1 0 1 0 0-2h-5.414Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-forbid-circle-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM7.757 14.828a1 1 0 1 0 1.415 1.415l7.07-7.071a1 1 0 0 0-1.414-1.415l-7.07 7.071Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-earlywarning-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 2.5a1 1 0 1 0-2 0V4a1 1 0 1 0 2 0V2.5Zm6.293 1.793a1 1 0 1 1 1.414 1.414l-1 1a1 1 0 1 1-1.414-1.414l1-1ZM12 6a7 7 0 0 0-7 7v7H4a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2h-1v-7a7 7 0 0 0-7-7ZM3.293 4.293a1 1 0 0 0 0 1.414l1 1a1 1 0 0 0 1.414-1.414l-1-1a1 1 0 0 0-1.414 0ZM3.5 11a1 1 0 1 1 0 2H2a1 1 0 1 1 0-2h1.5ZM23 12a1 1 0 0 0-1-1h-1.5a1 1 0 1 0 0 2H22a1 1 0 0 0 1-1Zm-8.106 2.447L15.618 13h-4l1.276-2.553a1 1 0 1 0-1.788-.894l-2 4L8.382 15h4l-1.276 2.553a1 1 0 1 0 1.788.894l2-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-grid-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 3a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4Zm0 2H5v6h4V5Zm10-2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4Zm0 2h-4v2h4V5Zm2 8a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-6Zm-6 0h4v6h-4v-6Zm-6 2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h4Zm0 2H5v2h4v-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-open-door-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18 19a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1v14h1ZM4 5.694a2 2 0 0 1 1.671-1.973l8.582-1.43A1.5 1.5 0 0 1 16 3.771v16.458a1.5 1.5 0 0 1-1.747 1.48l-8.582-1.43A2 2 0 0 1 4 18.306V5.694Zm7.5 7.806a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-grid-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M15 3a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-4Zm0 2h4v4h-4V5ZM5 3a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm0 2h4v4H5V5ZM3 15a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4Zm6 0H5v4h4v-4Zm6-2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-4Zm0 2h4v4h-4v-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-question-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm11 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-2.625-6.875a1.625 1.625 0 1 1 2.23 1.51c-.676.27-1.605.962-1.605 2.115V14a1 1 0 1 0 2 0c0-.274.063-.395.348-.51a3.626 3.626 0 1 0-4.973-3.365 1 1 0 1 0 2 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-setting-4-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path fill="currentColor" d="M13.414 2.1a2 2 0 0 0-2.828 0L8.686 4H6a2 2 0 0 0-2 2v2.686l-1.9 1.9a2 2 0 0 0 0 2.828l1.9 1.9V18a2 2 0 0 0 2 2h2.686l1.9 1.9a2 2 0 0 0 2.828 0l1.9-1.9H18a2 2 0 0 0 2-2v-2.686l1.9-1.9a2 2 0 0 0 0-2.828l-1.9-1.9V6a2 2 0 0 0-2-2h-2.686l-1.9-1.9ZM12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" clip-rule="evenodd" fill-rule="evenodd" data-follow-fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-brush-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8 4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v5h4a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h4V4Zm6 0h-4v5a2 2 0 0 1-2 2H4v2h16v-2h-4a2 2 0 0 1-2-2V4Zm6 11H4v5h2v-2a1 1 0 1 1 2 0v2h3v-2a1 1 0 1 1 2 0v2h3v-2a1 1 0 1 1 2 0v2h2v-5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shield-4-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.298 2.195a2 2 0 0 1 1.404 0l7 2.625A2 2 0 0 1 21 6.693v5.363a9 9 0 0 1-4.975 8.05l-3.354 1.677a1.5 1.5 0 0 1-1.342 0l-3.354-1.677A9 9 0 0 1 3 12.056V6.693A2 2 0 0 1 4.298 4.82l7-2.625ZM13 5.462a.2.2 0 0 0-.364-.115L6.8 13.685a.2.2 0 0 0 .163.315H10.8c.11 0 .2.09.2.2v3.338a.2.2 0 0 0 .364.115L17.2 9.315A.2.2 0 0 0 17.037 9H13.2a.2.2 0 0 1-.2-.2V5.462Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shield-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.298 2.195a2 2 0 0 1 1.404 0l7 2.625A2 2 0 0 1 21 6.693v5.363a9 9 0 0 1-4.975 8.05l-3.354 1.676a1.5 1.5 0 0 1-1.342 0l-3.354-1.677A9 9 0 0 1 3 12.055V6.694A2 2 0 0 1 4.298 4.82l7-2.625ZM8 12a1 1 0 0 1 1-1h2V9a1 1 0 1 1 2 0v2h2a1 1 0 1 1 0 2h-2v2a1 1 0 1 1-2 0v-2H9a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-restore-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 3a2 2 0 0 0-2 2v2H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-2h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H9Zm8 12h2V5H9v2h6a2 2 0 0 1 2 2v6ZM5 9h10v10H5V9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-share-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path fill="currentColor" d="M15 5.5a3.5 3.5 0 1 1 .994 2.443L11.67 10.21c.213.555.33 1.16.33 1.79a4.99 4.99 0 0 1-.33 1.79l4.324 2.267a3.5 3.5 0 1 1-.93 1.771l-4.476-2.346a5 5 0 1 1 0-6.963l4.476-2.347A3.524 3.524 0 0 1 15 5.5Z" clip-rule="evenodd" fill-rule="evenodd" data-follow-fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-restore-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path fill="currentColor" d="M9 2.5A2.5 2.5 0 0 0 6.5 5v1.5H5A2.5 2.5 0 0 0 2.5 9v10A2.5 2.5 0 0 0 5 21.5h10a2.5 2.5 0 0 0 2.5-2.5v-1.5H19a2.5 2.5 0 0 0 2.5-2.5V5A2.5 2.5 0 0 0 19 2.5H9Zm8.5 12h1v-9h-9v1H15A2.5 2.5 0 0 1 17.5 9v5.5Zm-12 4v-9h9v9h-9Z" clip-rule="evenodd" fill-rule="evenodd" data-follow-fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-warning-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm10-6a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Zm0 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-warning-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 6a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Zm0 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-version-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M20.116 6.674c1.066.563 1.066 2.09 0 2.652l-7.181 3.796a2 2 0 0 1-1.87 0L3.884 9.327c-1.066-.563-1.066-2.089 0-2.652l7.181-3.796a2 2 0 0 1 1.87 0l7.181 3.796Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M20.245 10.75a1.59 1.59 0 0 1-.129.076l-7.181 3.796a2 2 0 0 1-1.87 0l-7.181-3.796a1.595 1.595 0 0 1-.129-.076c-.935.614-.892 2.037.129 2.576l7.181 3.796a2 2 0 0 0 1.87 0l7.181-3.796c1.021-.54 1.064-1.962.13-2.576Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M20.116 14.826a1.59 1.59 0 0 0 .13-.076c.934.614.891 2.037-.13 2.576l-7.181 3.796a2 2 0 0 1-1.87 0l-7.181-3.796c-1.02-.54-1.064-1.962-.129-2.576.041.027.084.052.129.076l7.181 3.796a2 2 0 0 0 1.87 0l7.181-3.796Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-thumb-down-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8.993 18.837c.169-1.423-.062-2.907-.576-4.239-.569-1.474-1.325-3.07-1.419-4.657-.079-1.337.224-2.919 1.032-4.002C8.915 4.753 10.368 4 11.967 4h1.512a5 5 0 0 1 4.983 4.585l.361 4.332A1 1 0 0 1 17.826 14H12.5c-.831 0-1.495.673-1.502 1.492-.007.97.054 2.167-.392 3.06-.4.8-.774.948-1.106.948-.3 0-.54-.393-.507-.663ZM9.5 21.5c1.356 0 2.294-.852 2.895-2.053.522-1.044.571-2.3.597-3.447h4.834a3 3 0 0 0 2.99-3.25l-.361-4.331A7 7 0 0 0 13.479 2h-1.512A6.937 6.937 0 0 0 6.9 4.179a5.538 5.538 0 0 0-1.4-.18c-1.108 0-2.028.622-2.624 1.61-.58.96-.876 2.284-.876 3.89 0 1.607.297 2.932.876 3.892C3.472 14.38 4.392 15 5.5 15c.281 0 .579-.05.877-.134.458 1.2.784 2.437.63 3.735C6.835 20.046 8.016 21.5 9.5 21.5Zm-3.804-8.524c-.485.1-.865-.216-1.107-.618C4.263 11.818 4 10.894 4 9.5c0-1.394.263-2.319.588-2.859.31-.512.64-.641.912-.641.064 0 .127.002.19.005-.536 1.208-.766 2.74-.688 4.054.047.805.361 1.918.694 2.917Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-database-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a2 2 0 0 0-2 2v3.5h18V5a2 2 0 0 0-2-2H5Zm10.5 2H19v1.5h-3.5V5Zm-2 0H5v1.5h8.5V5ZM5 21a2 2 0 0 1-2-2v-3.5h18V19a2 2 0 0 1-2 2H5Zm0-2h8.5v-1.5H5V19Zm14 0h-3.5v-1.5H19V19ZM3 14.75h18v-5.5H3v5.5Zm2-2v-1.5h8.5v1.5H5Zm10.5 0H19v-1.5h-3.5v1.5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-alert-octagon-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 6a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Zm0 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9.1 2h5.8a3 3 0 0 1 2.12.879l4.101 4.1A3 3 0 0 1 22 9.101v5.798a3 3 0 0 1-.879 2.122l-4.1 4.1a3 3 0 0 1-2.122.879H9.101a3 3 0 0 1-2.122-.879l-4.1-4.1A3 3 0 0 1 2 14.899V9.101a3 3 0 0 1 .879-2.122l4.1-4.1A3 3 0 0 1 9.101 2Zm5.8 2H9.1a1 1 0 0 0-.707.293l-4.1 4.1A1 1 0 0 0 4 9.101v5.798a1 1 0 0 0 .293.708l4.1 4.1a1 1 0 0 0 .708.293h5.798a1 1 0 0 0 .708-.293l4.1-4.1A1 1 0 0 0 20 14.9V9.1a1 1 0 0 0-.293-.707l-4.1-4.1A1 1 0 0 0 14.9 4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-time-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13 7a1 1 0 1 0-2 0v5a1 1 0 0 0 .293.707l3 3a1 1 0 0 0 1.414-1.414L13 11.586V7Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shield-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8 12a1 1 0 0 1 1-1h2V9a1 1 0 1 1 2 0v2h2a1 1 0 1 1 0 2h-2v2a1 1 0 1 1-2 0v-2H9a1 1 0 0 1-1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.298 2.195a2 2 0 0 1 1.404 0l7 2.625A2 2 0 0 1 21 6.693v5.363a9 9 0 0 1-4.975 8.05l-3.354 1.677a1.5 1.5 0 0 1-1.342 0l-3.354-1.677A9 9 0 0 1 3 12.056V6.693A2 2 0 0 1 4.298 4.82l7-2.625ZM12 4.068 5 6.693v5.363a7 7 0 0 0 3.87 6.26L12 19.883l3.13-1.565A7 7 0 0 0 19 12.056V6.693l-7-2.625Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-delete-back-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8.108 3a3 3 0 0 0-2.544 1.41l-4.08 6.53a2 2 0 0 0 0 2.12l4.08 6.53A3 3 0 0 0 8.108 21H19a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H8.108Zm8.427 12.536a1 1 0 0 1-1.414 0L13 13.414l-2.121 2.122a1 1 0 1 1-1.415-1.415L11.586 12 9.464 9.879a1 1 0 0 1 1.415-1.415L13 10.586l2.121-2.122a1 1 0 1 1 1.414 1.415L14.415 12l2.12 2.121a1 1 0 0 1 0 1.415Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-check-circle-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm4.95 7.796a1 1 0 0 0-1.415-1.415l-4.95 4.95-2.12-2.121a1 1 0 0 0-1.415 1.414l2.758 2.758a1.1 1.1 0 0 0 1.556 0l5.586-5.586Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-smile-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm8-3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm6 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-8 3a1 1 0 1 0-2 0 6 6 0 0 0 12 0 1 1 0 1 0-2 0 4 4 0 0 1-8 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-door-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16 12.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M19 19h1a1 1 0 1 1 0 2H4a1 1 0 1 1 0-2h1V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v14ZM7 19h10V5H7v14Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-certificate-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.414 2.1a2 2 0 0 0-2.828 0L8.686 4H6a2 2 0 0 0-2 2v2.686l-1.9 1.9a2 2 0 0 0 0 2.828l1.9 1.9V18a2 2 0 0 0 2 2h2.686l1.9 1.9a2 2 0 0 0 2.828 0l1.9-1.9H18a2 2 0 0 0 2-2v-2.686l1.9-1.9a2 2 0 0 0 0-2.828l-1.9-1.9V6a2 2 0 0 0-2-2h-2.686l-1.9-1.9Zm3.08 8.297a1 1 0 1 0-1.415-1.415l-4.244 4.245-1.768-1.768a1 1 0 1 0-1.414 1.415l2.404 2.404a1.1 1.1 0 0 0 1.556 0l4.88-4.881Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-database-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a2 2 0 0 0-2 2v3.5h18V5a2 2 0 0 0-2-2H5Zm10.5 2H19v1.5h-3.5V5ZM5 21a2 2 0 0 1-2-2v-3.5h18V19a2 2 0 0 1-2 2H5Zm14-2h-3.5v-1.5H19V19ZM3 14.75h18v-5.5H3v5.5Zm12.5-2H19v-1.5h-3.5v1.5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-lock-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 8a6 6 0 1 1 12 0h1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2h1Zm6-4a4 4 0 0 1 4 4H8a4 4 0 0 1 4-4Zm0 8a1 1 0 0 0-1 1v4a1 1 0 1 0 2 0v-4a1 1 0 0 0-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-share-3-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-9a1 1 0 1 0-2 0v9H5V5h4a1 1 0 0 0 0-2H5Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 3a1 1 0 1 0 0 2h2.272a21.37 21.37 0 0 0-1.587 1.219c-1.811 1.532-3.706 3.681-4.634 6.465a1 1 0 0 0 1.898.632c.77-2.309 2.373-4.171 4.027-5.57a20.478 20.478 0 0 1 4.027-2.643c.56-.276.676-.858.585-1.247-.091-.388-.453-.856-1.075-.856H14Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-minus-circle-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8 11a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-minus-circle-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm-4 9a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-key-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 11.9A5.002 5.002 0 0 1 12 2a5 5 0 0 1 1 9.9V15h2a1 1 0 1 1 0 2h-2v1h2a1 1 0 1 1 0 2h-2v1a1 1 0 1 1-2 0v-9.1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-share-forward-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="m9.894 16.002.227 3.574c.08.804.926 1.353 1.704.914 2.185-1.233 4.192-2.771 6.13-4.358a42.072 42.072 0 0 0 3.495-3.228c.462-.484.508-1.285.024-1.792-1.114-1.165-2.688-2.624-4.647-4.172-1.588-1.242-3.23-2.402-4.97-3.421-.837-.477-1.667.177-1.743.972l-.223 3.561C5.374 8.524 2 12.509 2 17c0 2.675 1.068 2.411 2.914.825a8.072 8.072 0 0 1 4.98-1.823Zm-5.819-.059a9.955 9.955 0 0 1 5.512-1.935h.02l1.704-.036a.5.5 0 0 1 .51.472l.197 3.596c1.603-1.021 3.131-2.196 4.664-3.45a43.717 43.717 0 0 0 2.857-2.595 45.724 45.724 0 0 0-3.948-3.482 46.172 46.172 0 0 0-3.568-2.548l-.192 3.472a.5.5 0 0 1-.447.47l-1.361.142c-3.065.366-5.497 2.762-5.948 5.894Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-grid-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 3a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4Zm10 0a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4Zm2 10a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-6ZM9 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-share-forward-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m10.114 4.491-.203 3.144-.02.417-.09.01C5.363 8.582 2 12.366 2 17c0 .457.034.91.102 1.357.279 1.845.489 2.024 1.772.498a8.953 8.953 0 0 1 1.04-1.03 7.958 7.958 0 0 1 4.754-1.818l.226-.005.061 1.229.166 2.345c.08.804.926 1.353 1.704.914.352-.198.695-.41 1.04-.62 1.787-1.118 3.46-2.403 5.09-3.738.96-.8 1.8-1.558 2.516-2.248.33-.323.66-.646.979-.98.462-.484.508-1.285.024-1.792-1.114-1.165-2.688-2.624-4.647-4.172-1.588-1.242-3.23-2.402-4.97-3.421-.837-.477-1.667.177-1.743.972Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-time-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm1 5a1 1 0 1 0-2 0v5a1 1 0 0 0 .293.707l3 3a1 1 0 0 0 1.414-1.414L13 11.586V7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shield-3-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11 21.618V12H3v.056a9 9 0 0 0 4.975 8.05L11 21.618Zm2 0 3.025-1.512A9 9 0 0 0 21 12.056V12h-8v9.618ZM21 10V6.693a2 2 0 0 0-1.298-1.873L13 2.307V10h8ZM11 2.307 4.298 4.82A2 2 0 0 0 3 6.693V10h8V2.307Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-share-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M15 5.5a3.5 3.5 0 1 1 .994 2.443L11.67 10.21c.213.555.33 1.16.33 1.79a4.99 4.99 0 0 1-.33 1.79l4.324 2.267a3.5 3.5 0 1 1-.93 1.771l-4.476-2.346a5 5 0 1 1 0-6.963l4.476-2.347A3.524 3.524 0 0 1 15 5.5ZM18.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM4 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm13 6.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shield-3-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.507 2.13c-.07.018-.14.04-.21.065l-7 2.625A2 2 0 0 0 3 6.693v5.363a9 9 0 0 0 4.975 8.05l3.354 1.677c.041.02.083.039.126.056a.995.995 0 0 0 1.09 0 1.48 1.48 0 0 0 .126-.056l3.354-1.677A9 9 0 0 0 21 12.056V6.693a2 2 0 0 0-1.298-1.873l-7-2.625a1.998 1.998 0 0 0-.209-.065.996.996 0 0 0-.986 0ZM19 10h-6V4.443l6 2.25V10Zm0 2v.056a7 7 0 0 1-3.87 6.26L13 19.383V12h6Zm-8 7.382V12H5v.056a7 7 0 0 0 3.87 6.26L11 19.383ZM5 10h6V4.443l-6 2.25V10Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-settings-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm-2 4a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.25 2.567a2.5 2.5 0 0 0-2.5 0L4.456 6.2a2.5 2.5 0 0 0-1.25 2.165v7.268a2.5 2.5 0 0 0 1.25 2.165l6.294 3.634a2.5 2.5 0 0 0 2.5 0l6.294-3.634a2.5 2.5 0 0 0 1.25-2.165V8.366a2.5 2.5 0 0 0-1.25-2.165L13.25 2.567Zm-1.5 1.732a.5.5 0 0 1 .5 0l6.294 3.634a.5.5 0 0 1 .25.433v7.268a.5.5 0 0 1-.25.433L12.25 19.7a.5.5 0 0 1-.5 0l-6.294-3.634a.5.5 0 0 1-.25-.433V8.366a.5.5 0 0 1 .25-.433l6.294-3.634Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-check-circle-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.95 9.795a1 1 0 0 0-1.415-1.414l-4.95 4.95-2.12-2.121a1 1 0 1 0-1.415 1.414l2.758 2.758a1.1 1.1 0 0 0 1.556 0l5.586-5.587Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-t-shirt-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.121 5.293 3.414 9l1.478 1.478.788-1.052c.598-.797 1.867-.339 1.817.657l-.393 7.867A1 1 0 0 0 8.102 19h7.796a1 1 0 0 0 .998-1.05l-.393-7.867c-.05-.996 1.219-1.454 1.817-.657l.788 1.052L20.586 9l-3.707-3.707C16.5 4.915 15.95 5 15.465 5A3.998 3.998 0 0 1 12 7a3.998 3.998 0 0 1-3.465-2c-.486 0-1.036-.085-1.414.293ZM5.707 3.879A3 3 0 0 1 7.828 3H9.1c.472 0 .872.297 1.03.71a2.001 2.001 0 0 0 3.74 0c.158-.413.558-.71 1.03-.71h1.272a3 3 0 0 1 2.12.879L22 7.586a2 2 0 0 1 0 2.828l-1.478 1.478c-.52.52-1.246.689-1.9.526l.272 5.432A3 3 0 0 1 15.898 21H8.102a3 3 0 0 1-2.996-3.15l.272-5.432a1.996 1.996 0 0 1-1.9-.526L2 10.414a2 2 0 0 1 0-2.828l3.707-3.707Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shield-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12.702 2.195a2 2 0 0 0-1.404 0l-7 2.625A2 2 0 0 0 3 6.693v5.363a9 9 0 0 0 4.975 8.05l3.354 1.677a1.5 1.5 0 0 0 1.342 0l3.354-1.677A9 9 0 0 0 21 12.056V6.693a2 2 0 0 0-1.298-1.873l-7-2.625Zm4.005 7.512a1 1 0 0 0-1.414-1.414l-4.586 4.586-1.586-1.586a1 1 0 1 0-1.414 1.414l2.222 2.222a1.1 1.1 0 0 0 1.556 0l5.222-5.222Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-version-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M20.116 6.674c1.066.563 1.066 2.09 0 2.652L18.842 10l1.274.674c1.066.563 1.066 2.09 0 2.652L18.842 14l1.274.674c1.066.563 1.066 2.09 0 2.652l-7.181 3.796a2 2 0 0 1-1.87 0l-7.181-3.796c-1.066-.563-1.066-2.089 0-2.652L5.159 14l-1.275-.674c-1.066-.563-1.066-2.089 0-2.652L5.159 10l-1.275-.674c-1.066-.563-1.066-2.089 0-2.652l7.181-3.796a2 2 0 0 1 1.87 0l7.181 3.796ZM18.346 8 12 4.646 5.655 8 12 11.354 18.346 8ZM7.298 15.131l-1.643.87L12 19.353 18.346 16l-1.644-.869-3.767 1.991a2 2 0 0 1-1.87 0l-3.767-1.99Zm5.637-2.008 3.767-1.992 1.643.87L12 15.353 5.655 12l1.643-.869 3.767 1.992a2 2 0 0 0 1.87 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-settings-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18.5 4a1.5 1.5 0 0 0-3 0v.5H4a1.5 1.5 0 1 0 0 3h11.5V8a1.5 1.5 0 0 0 3 0v-.5H20a1.5 1.5 0 0 0 0-3h-1.5V4ZM4 10.5a1.5 1.5 0 0 0 0 3h1.5v.5a1.5 1.5 0 0 0 3 0v-.5H20a1.5 1.5 0 0 0 0-3H8.5V10a1.5 1.5 0 1 0-3 0v.5H4ZM2.5 18A1.5 1.5 0 0 1 4 16.5h11.5V16a1.5 1.5 0 0 1 3 0v.5H20a1.5 1.5 0 0 1 0 3h-1.5v.5a1.5 1.5 0 0 1-3 0v-.5H4A1.5 1.5 0 0 1 2.5 18Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-question-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.375 10.125a1.625 1.625 0 1 1 2.23 1.51c-.676.27-1.605.962-1.605 2.115V14a1 1 0 1 0 2 0c0-.104-.03-.226.043-.309a.837.837 0 0 1 .305-.2 3.626 3.626 0 1 0-4.973-3.366 1 1 0 1 0 2 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-power-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13 3a1 1 0 1 0-2 0v10a1 1 0 1 0 2 0V3Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7.577 5.333A1 1 0 1 0 6.47 3.667 9.992 9.992 0 0 0 2 12c0 5.523 4.477 10 10 10s10-4.477 10-10a9.992 9.992 0 0 0-4.47-8.333 1 1 0 1 0-1.107 1.666 8 8 0 1 1-8.846 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-t-shirt-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5.707 3.879A3 3 0 0 1 7.828 3c.79 0 1.948-.22 2.302.711a2.001 2.001 0 0 0 3.74 0c.354-.93 1.513-.71 2.302-.71a3 3 0 0 1 2.12.878L22 7.586a2 2 0 0 1 0 2.828l-1.478 1.478c-.52.52-1.246.689-1.9.526l.272 5.432A3 3 0 0 1 15.898 21H8.102a3 3 0 0 1-2.996-3.15l.272-5.432a1.996 1.996 0 0 1-1.9-.526L2 10.414a2 2 0 0 1 0-2.828l3.707-3.707Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-share-3-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path fill="currentColor" d="M11 4c0-.35.06-.687.17-1H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.839a18.483 18.483 0 0 0-3.732 2.434c-1.497 1.266-2.81 2.841-3.422 4.676a3 3 0 0 1-5.692-1.898c.81-2.429 2.23-4.401 3.716-5.938A2.99 2.99 0 0 1 11 4Z" data-follow-fill="currentColor"/&gt;&lt;path fill="currentColor" d="M14 3a1 1 0 1 0 0 2h2.272a21.37 21.37 0 0 0-1.587 1.219c-1.811 1.532-3.706 3.681-4.634 6.465a1 1 0 0 0 1.898.632c.77-2.309 2.373-4.171 4.027-5.57a20.478 20.478 0 0 1 4.027-2.643c.56-.276.676-.858.585-1.247-.091-.388-.453-.856-1.075-.856H14Z" data-follow-fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-shield-4-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12.702 2.195a2 2 0 0 0-1.404 0l-7 2.625A2 2 0 0 0 3 6.693v5.363a9 9 0 0 0 4.975 8.05l3.354 1.677a1.5 1.5 0 0 0 1.342 0l3.354-1.677A9 9 0 0 0 21 12.056V6.693a2 2 0 0 0-1.298-1.873l-7-2.625ZM5 6.693l7-2.625 7 2.625v5.363a7 7 0 0 1-3.87 6.26L12 19.883l-3.13-1.565A7 7 0 0 1 5 12.056V6.693Zm8-1.23a.2.2 0 0 0-.364-.116L6.8 13.685a.2.2 0 0 0 .163.315H10.8c.11 0 .2.09.2.2v3.338a.2.2 0 0 0 .364.115L17.2 9.315A.2.2 0 0 0 17.037 9H13.2a.2.2 0 0 1-.2-.2V5.462Zm-.06 6.452a.2.2 0 0 1-.165.085h-1.97a.2.2 0 0 1-.164-.315l.42-.6a.2.2 0 0 1 .164-.085h1.97a.2.2 0 0 1 .164.315l-.42.6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-settings-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18 4a1 1 0 1 0-2 0v1H4a1 1 0 0 0 0 2h12v1a1 1 0 1 0 2 0V7h2a1 1 0 1 0 0-2h-2V4ZM4 11a1 1 0 1 0 0 2h2v1a1 1 0 1 0 2 0v-1h12a1 1 0 1 0 0-2H8v-1a1 1 0 0 0-2 0v1H4Zm-1 7a1 1 0 0 1 1-1h12v-1a1 1 0 1 1 2 0v1h2a1 1 0 1 1 0 2h-2v1a1 1 0 1 1-2 0v-1H4a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-baby-carriage-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.746 2.609c.764-.296 1.566.093 1.877.773L12.643 10H18V8.5A2.5 2.5 0 0 1 20.5 6h.5a1 1 0 1 1 0 2h-.5a.5.5 0 0 0-.5.5V11a9 9 0 0 1-2.489 6.213A2.5 2.5 0 1 1 14 19.5v-.015a9.002 9.002 0 0 1-6 0v.015a2.5 2.5 0 1 1-3.511-2.287A9 9 0 0 1 7.746 2.609Zm.266 2.06A7 7 0 0 0 4.072 10h6.372L8.012 4.67Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-airplane-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M19.71 2.837c.733.147 1.306.72 1.453 1.453a3.557 3.557 0 0 1-.773 2.995l-2.751 3.252 1.944 7.131a1.25 1.25 0 0 1-.322 1.213l-1.302 1.302a1.01 1.01 0 0 1-1.597-.224l-2.993-5.387-3.258 2.255v.787c0 .331-.132.65-.366.884L8.062 20.18a1.01 1.01 0 0 1-1.673-.395l-.544-1.631-1.631-.544a1.01 1.01 0 0 1-.395-1.673l1.683-1.683a1.25 1.25 0 0 1 .884-.366h.787l2.255-3.258-5.387-2.993a1.01 1.01 0 0 1-.224-1.597l1.302-1.302a1.25 1.25 0 0 1 1.213-.322l7.13 1.944 3.253-2.751a3.557 3.557 0 0 1 2.995-.773Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-riding-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 17a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm8 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.99 7.555a1.5 1.5 0 0 1 2.048.069l.662.662a.765.765 0 0 1 .013.012L16.414 10H18a1 1 0 1 1 0 2h-1.793a1.5 1.5 0 0 1-1.06-.44l-1.193-1.191-2.632 2.303 1.317 1.537a1.5 1.5 0 0 1 .361.976V19a1 1 0 1 1-2 0v-3.63l-2.437-2.843a1.5 1.5 0 0 1 .151-2.105l3.275-2.867Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-run-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 2a3 3 0 0 0-2.353 4.862L7.21 7.893a2 2 0 0 0-1.323 1.283l-.836 2.508a1 1 0 0 0 1.898.632l.836-2.507 1.569-.471-.794 3.177a2 2 0 0 0 .69 2.047.978.978 0 0 0 .154.14l3.15 2.341.442 3.979A1.1 1.1 0 0 0 14.09 22H15a1 1 0 1 0 0-2h-.105l-.353-3.178a2 2 0 0 0-.795-1.384l-1.653-1.229c.158-.209.279-.453.346-.724l.606-2.424.163.26a2 2 0 0 0 2.439.797l1.723-.69a1 1 0 0 0-.742-1.856l-1.724.689-1.436-2.297A3 3 0 0 0 13 2Zm-1 3a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.8 16.6a1 1 0 0 0-1.6-1.2l-.932 1.243-2.206-1.47a1.01 1.01 0 0 0-1.275.126l-.494.494a1 1 0 0 0 1.329 1.49l1.93 1.287a1.5 1.5 0 0 0 2.032-.348L9.8 16.6Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-walk-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 2a3 3 0 0 0-2.15 5.092L7.088 9.065a2 2 0 0 0-.552.599l-1.393 2.322a1 1 0 1 0 1.715 1.028l1.393-2.321.322-.23-.513 2.052a2 2 0 0 0 1.033 2.268l3.01 2.752.908 3.632a1.1 1.1 0 0 0 1.067.833H15a1 1 0 0 0 0-2h-.22l-.737-2.95a2 2 0 0 0-.59-.991l-1.929-1.763c.194-.228.339-.502.416-.811l.66-2.638 1.018 1.164a2 2 0 0 0 .61.471l1.825.912a1 1 0 0 0 .894-1.789l-1.824-.912-2.428-2.774A3.001 3.001 0 0 0 12 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.316 15.551a1 1 0 0 1 .633 1.265l-.426 1.276a2 2 0 0 1-.483.782l-1.657 1.657a1 1 0 0 1-1.59 1.176l-.493-.493a1.01 1.01 0 0 1 0-1.428l2.326-2.326.425-1.276a1 1 0 0 1 1.265-.633Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-charging-pilen-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v7h1a2 2 0 0 1 2 2v2.5a.5.5 0 0 0 1 0v-6.086l-1.25-1.25-.043.043a1 1 0 1 1-1.414-1.414l.043-.043-.043-.043a1 1 0 0 1 1.414-1.414L20.414 9A2 2 0 0 1 21 10.414V16.5a2.5 2.5 0 0 1-5 0V14h-1v5a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2V5Zm6.894 3.447a1 1 0 0 0-1.788-.894l-1.993 3.985A1.01 1.01 0 0 0 7.016 13h2.366l-1.276 2.553a1 1 0 1 0 1.788.894l1.993-3.985A1.01 1.01 0 0 0 10.984 11H8.618l1.276-2.553Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-baby-carriage-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9.623 3.382c-.31-.68-1.113-1.07-1.877-.773A9 9 0 0 0 4.49 17.213 2.5 2.5 0 1 0 8 19.5v-.015a8.998 8.998 0 0 0 6 0v.015a2.5 2.5 0 1 0 3.511-2.287A8.998 8.998 0 0 0 20 11V8.5a.5.5 0 0 1 .5-.5h.5a1 1 0 1 0 0-2h-.5A2.5 2.5 0 0 0 18 8.5V10h-5.357l-3.02-6.618ZM5.677 6.454A7 7 0 0 1 8.012 4.67L10.444 10H4.072a7.006 7.006 0 0 1 1.605-3.546ZM4.072 12a7 7 0 0 0 13.856 0H4.072ZM5.5 19a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Zm11 0a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-ship-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.2 2A1.2 1.2 0 0 0 10 3.2v1.12l-3.747.624A1.5 1.5 0 0 0 5 6.424v3.855l-1.188.396a2 2 0 0 0-1.129 2.846l2.554 4.742-1.684.843a1 1 0 1 0 .894 1.788l2.211-1.105a3 3 0 0 1 2.684 0l.422.211a5 5 0 0 0 4.472 0l.422-.211a3 3 0 0 1 2.684 0l2.21 1.105a1 1 0 1 0 .895-1.788l-1.684-.843 2.554-4.742a2 2 0 0 0-1.129-2.846L19 10.28V6.424a1.5 1.5 0 0 0-1.253-1.48L14 4.32V3.2A1.2 1.2 0 0 0 12.8 2h-1.6ZM7 6.847l5-.833 5 .833v2.766l-4.367-1.456a2 2 0 0 0-1.265 0L7 9.613V6.847Zm12.556 5.726-2.68 4.976a5 5 0 0 0-3.112.451l-.422.211a3 3 0 0 1-2.684 0L10.236 18a5 5 0 0 0-3.112-.45l-2.68-4.977L12 10.054l7.556 2.519Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-train-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M1 7c0-1.101.89-2 1.998-2H12c3.224 0 5.942 1.075 7.868 2.589C21.759 9.075 23 11.085 23 13c0 .842-.258 1.56-.713 2.14-.443.566-1.034.95-1.636 1.214-1.186.518-2.597.646-3.651.646H2.994A1.995 1.995 0 0 1 1 15V7Zm2 5v3h14c.946 0 2.035-.122 2.85-.479.397-.174.681-.383.863-.615.17-.216.287-.498.287-.906 0-.306-.06-.644-.183-1H3Zm0-2h4V7H3v3Zm10 0H9V7h3c.34 0 .674.014 1 .04V10Zm2 0h4.551a8.216 8.216 0 0 0-.919-.839c-.962-.756-2.19-1.395-3.632-1.778V10Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M1 19a1 1 0 0 1 1-1h19a1 1 0 1 1 0 2H2a1 1 0 0 1-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-car-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.58 4a2 2 0 0 0-1.736 1.008l-3.58 6.265a2 2 0 0 0-.264.993v4.498a2 2 0 0 0 .211.894l1.118 2.236A2 2 0 0 0 5.118 21H6a2 2 0 0 0 2-2h8a2 2 0 0 0 2 2h.882a2 2 0 0 0 1.789-1.106l1.118-2.236c.139-.277.211-.584.211-.894v-4.498a2 2 0 0 0-.264-.993l-3.58-6.265A2 2 0 0 0 16.42 4H7.58ZM12 12c-1.597 0-3.072-.343-4.553-.895a1 1 0 0 0-.894 1.79C7.047 13.14 9.56 14 12 14c1.854 0 3.768-.274 5.445-1.104a1.01 1.01 0 0 0 .45-1.343 1 1 0 0 0-1.342-.448C15.188 11.787 13.496 12 12 12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-ship-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.2 2A1.2 1.2 0 0 0 10 3.2v1.12l-3.747.624A1.5 1.5 0 0 0 5 6.424v3.855l-1.188.396a2 2 0 0 0-1.129 2.846l2.554 4.742-1.684.843a1 1 0 1 0 .894 1.788l2.211-1.105a3 3 0 0 1 2.684 0l.422.211a5 5 0 0 0 4.472 0l.422-.211a3 3 0 0 1 2.684 0l2.21 1.105a1 1 0 1 0 .895-1.788l-1.684-.843 2.554-4.742a2 2 0 0 0-1.129-2.846L19 10.28V6.424a1.5 1.5 0 0 0-1.253-1.48L14 4.32V3.2A1.2 1.2 0 0 0 12.8 2h-1.6ZM7 6.847l5-.833 5 .833v2.766l-4.367-1.456a2 2 0 0 0-1.265 0L7 9.613V6.847Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-scooter-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M15.236 4H14a1 1 0 1 1 0-2h4a1 1 0 1 1 0 2h-.69l2.651 9.724A1.01 1.01 0 0 1 18.987 15h-.756a2.61 2.61 0 0 0-2.334 1.442c-.171.342-.52.558-.903.558h-4.166c-1.143 0-1.902-.66-2.656-1.414A2 2 0 0 0 6.757 15H5a1 1 0 1 1 0-2h1.757a4 4 0 0 1 2.829 1.172c.353.352.695.828 1.242.828h3.603a4.61 4.61 0 0 1 3.268-1.97L15.236 4ZM3 19a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm16-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-train-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8 7v2h8V7H8Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 6a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v9a4.002 4.002 0 0 1-3.127 3.904L19.6 20.2a1 1 0 0 1-1.2 1.6L14.667 19H9.333L5.6 21.8a1 1 0 1 1-1.2-1.6l1.727-1.296A4.001 4.001 0 0 1 3 15V6Zm3 .5A1.5 1.5 0 0 1 7.5 5h9A1.5 1.5 0 0 1 18 6.5v3a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 6 9.5v-3Zm2.25 9.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM17 14.5a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-ufo-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 5.618a1.5 1.5 0 1 0-2 0v1.453a7.004 7.004 0 0 0-5.953 6.113C3.664 13.758 2 14.808 2 16.5c0 1.78 1.823 2.843 3.274 3.407C7.044 20.596 9.423 21 12 21s4.956-.404 6.726-1.093C20.177 19.343 22 18.28 22 16.5c0-1.692-1.664-2.742-3.047-3.316A7.004 7.004 0 0 0 13 7.071V5.618Zm5.22 9.428c-.808.474-2.895 1.454-6.22 1.454-3.325 0-5.412-.98-6.22-1.454C5.266 15.262 4 15.78 4 16.5c0 .785 1.447 1.328 1.998 1.543C7.485 18.62 9.606 19 12 19c2.393 0 4.515-.379 6.002-.957.551-.215 1.998-.758 1.998-1.543 0-.72-1.266-1.238-1.78-1.454ZM7.03 13.452a5 5 0 0 1 9.94 0c-.73.379-2.377 1.048-4.97 1.048s-4.24-.67-4.97-1.048Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-charging-pilen-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.447 7.106a1 1 0 0 1 .447 1.341L8.618 11h2.366c.75 0 1.239.79.903 1.462l-1.993 3.985a1 1 0 1 1-1.788-.894L9.382 13H7.016a1.01 1.01 0 0 1-.903-1.462l1.993-3.985a1 1 0 0 1 1.341-.447Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v7h1a2 2 0 0 1 2 2v2.5a.5.5 0 0 0 1 0v-6.086l-1.25-1.25-.043.043a1 1 0 1 1-1.414-1.414l.043-.043-.043-.043a1 1 0 0 1 1.414-1.414L20.414 9A2 2 0 0 1 21 10.414V16.5a2.5 2.5 0 0 1-5 0V14h-1v5a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2V5Zm10 0v14H5V5h8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-gas-station-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path fill="currentColor" d="M5 3a2 2 0 0 0-2 2v14a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2v-5h1v2.5a2.5 2.5 0 0 0 5 0v-6.086A2 2 0 0 0 20.414 9l-2.707-2.707a1 1 0 1 0-1.414 1.414l1.1 1.101A1.999 1.999 0 0 0 19 12v4.5a.5.5 0 0 1-.999 0V14a2 2 0 0 0-2-2h-1V5a2 2 0 0 0-2-2H5Zm8 8V5H5v6h8Zm-8 2h8v6H5v-6Z" clip-rule="evenodd" fill-rule="evenodd" data-follow-fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bus-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6 15a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm10-1a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2h-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M15.98 3H6a3 3 0 0 0-3 3 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1v7a2 2 0 0 0 1 1.732v.768a1.5 1.5 0 0 0 3 0V19h10v.5a1.5 1.5 0 0 0 3 0v-.768A2 2 0 0 0 21 17v-7a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1 3 3 0 0 0-3-3h-2.02Zm-1.598 2h-2.764L9.894 8.447a1 1 0 0 1-1.788-.894L9.382 5H6a1 1 0 0 0-1 1v5h14V6a1 1 0 0 0-1-1h-1.382l-1.724 3.447a1 1 0 1 1-1.788-.894L14.382 5ZM5 13v4h14v-4H5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-airplane-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M19.71 2.837c.733.147 1.306.72 1.453 1.453a3.557 3.557 0 0 1-.773 2.995l-2.751 3.252 1.944 7.131a1.25 1.25 0 0 1-.322 1.213l-1.302 1.302a1.01 1.01 0 0 1-1.597-.224l-2.942-5.296-2.858 2.381.21 1.053a1.25 1.25 0 0 1-.341 1.13L8.767 20.89a1.01 1.01 0 0 1-1.617-.263L5.89 18.11l-2.516-1.26a1.01 1.01 0 0 1-.263-1.617l1.664-1.664a1.25 1.25 0 0 1 1.129-.341l1.053.21 2.381-2.857-5.296-2.943a1.01 1.01 0 0 1-.224-1.597L5.12 4.739a1.25 1.25 0 0 1 1.213-.322l7.13 1.944 3.253-2.751a3.557 3.557 0 0 1 2.995-.773Zm-.492 1.945a1.557 1.557 0 0 0-1.211.354l-3.65 3.089a1.01 1.01 0 0 1-.918.203L6.226 6.46l-.067.066 5.195 2.886a1.01 1.01 0 0 1 .285 1.53L8.115 15.17a1.01 1.01 0 0 1-.974.344l-1.237-.247-.408.408 1.557.779a1.1 1.1 0 0 1 .492.492l.78 1.557.407-.408-.247-1.237a1.01 1.01 0 0 1 .344-.974l4.229-3.524a1.01 1.01 0 0 1 1.53.285l2.885 5.195.066-.067-1.967-7.213a1.01 1.01 0 0 1 .204-.918l3.088-3.65c.285-.337.412-.777.354-1.211Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-train-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.5 6A1.5 1.5 0 0 0 6 7.5v3A1.5 1.5 0 0 0 7.5 12h9a1.5 1.5 0 0 0 1.5-1.5v-3A1.5 1.5 0 0 0 16.5 6h-9Zm.5 4V8h8v2H8Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.5 14.5a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Zm6.25 1.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 2a4 4 0 0 0-4 4v9a4.001 4.001 0 0 0 3.127 3.904L4.4 20.2a1 1 0 0 0 1.2 1.6L9.333 19h5.334l3.733 2.8a1 1 0 0 0 1.2-1.6l-1.727-1.296A4.002 4.002 0 0 0 21 15V6a4 4 0 0 0-4-4H7Zm8.012 15H17a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h8.012Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-scooter-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M15.236 4H14a1 1 0 1 1 0-2h4a1 1 0 1 1 0 2h-.69l2.651 9.724A1.01 1.01 0 0 1 18.987 15h-.756a2.61 2.61 0 0 0-2.334 1.442c-.171.342-.52.558-.903.558h-4.166c-1.143 0-1.902-.66-2.656-1.414A2 2 0 0 0 6.757 15H5a1 1 0 1 1 0-2h1.757a4 4 0 0 1 2.829 1.172c.353.352.695.828 1.242.828h3.603a4.61 4.61 0 0 1 3.268-1.97L15.236 4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 16a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-1 3a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm14-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-1 3a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-walk-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2a3 3 0 0 0-2.15 5.092L7.088 9.065a2 2 0 0 0-.552.599l-1.393 2.322a1 1 0 0 0 1.715 1.028l1.393-2.321.322-.23-.513 2.052a2 2 0 0 0 1.033 2.268l3.01 2.752.908 3.632a1.1 1.1 0 0 0 1.067.833H15a1 1 0 1 0 0-2h-.22l-.737-2.95a2 2 0 0 0-.59-.991l-1.929-1.763c.194-.228.339-.502.416-.81l.66-2.639 1.018 1.164a2 2 0 0 0 .61.471l1.825.912a1 1 0 1 0 .894-1.788l-1.824-.912-2.428-2.775A3.001 3.001 0 0 0 12 2Zm-1 3a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.949 16.816a1 1 0 1 0-1.898-.632l-.425 1.276L5.3 19.786a1.01 1.01 0 0 0 0 1.428l.493.493a1 1 0 0 0 1.59-1.176l1.657-1.657a2 2 0 0 0 .483-.782l.426-1.276Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flighicon-app-takeoff-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m1.21 12.062 1.623-.435a1.5 1.5 0 0 1 1.379.322l.746.656a.01.01 0 0 0 .01.002l4.2-1.64a.01.01 0 0 0 .003-.016L4.447 5.196a.5.5 0 0 1 .257-.8l1.89-.506a1.5 1.5 0 0 1 1.336.287l6.56 5.358a.01.01 0 0 0 .007.002l4.569-.855a3 3 0 0 1 2.953 1.152c.247.329.498.645.407 1.087a2.913 2.913 0 0 1-2.1 2.23L5.207 17.2a1.5 1.5 0 0 1-1.614-.585L.93 12.833a.5.5 0 0 1 .28-.77ZM3 20a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2H3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-run-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13 2a3 3 0 0 0-2.353 4.862L7.21 7.893a2 2 0 0 0-1.323 1.283l-.836 2.508a1 1 0 1 0 1.898.632l.836-2.507 1.569-.471-.794 3.177a2 2 0 0 0 .69 2.047.978.978 0 0 0 .154.14l3.15 2.341.442 3.979A1.1 1.1 0 0 0 14.09 22H15a1 1 0 1 0 0-2h-.105l-.353-3.178a2 2 0 0 0-.795-1.384l-1.653-1.229c.158-.209.279-.453.346-.724l.606-2.424.163.26a2 2 0 0 0 2.439.797l1.723-.69a1 1 0 1 0-.742-1.856l-1.724.689-1.436-2.297A3 3 0 0 0 13 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.6 15.2a1 1 0 0 1 .2 1.4l-1.216 1.622a1.5 1.5 0 0 1-2.032.348l-1.93-1.287a1 1 0 0 1-1.33-1.49l.495-.494a1.01 1.01 0 0 1 1.275-.127l2.206 1.471L8.2 15.4a1 1 0 0 1 1.4-.2Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-ebike-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11 4a1 1 0 0 1 1-1h2a2 2 0 0 1 2 2h3a2 2 0 0 1 2 2v2a2 2 0 0 1-1.51 1.94l2.43 5.666c.116.273.08.601.08.894a3.5 3.5 0 0 1-6.663 1.5H9.663a3.5 3.5 0 0 1-6.628-1H3a1 1 0 0 1-1-1V9a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2a2 2 0 1 0 4 0V5h-2a1 1 0 0 1-1-1Zm9 13.5a1.5 1.5 0 1 1-1.5-1.5c.799 0 1.5.704 1.5 1.5ZM18.022 9H16V7h3v2h-.978ZM8 9v2H4V9h4Zm0 8.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-truck-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 6a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v1h1.52a2 2 0 0 1 1.561.75l1.48 1.851a2 2 0 0 1 .439 1.25V15a2 2 0 0 1-2 2 3 3 0 1 1-6 0h-4a3 3 0 1 1-6 0 2 2 0 0 1-2-2V6Zm13 8.764a3.023 3.023 0 0 0-.236.236H9.236c-.55-.614-1.348-1-2.236-1-.888 0-1.687.386-2.236 1H4V6h11v8.764Zm4.236.236c-.55-.614-1.348-1-2.236-1V9h1.52L20 10.85V15h-.764ZM8 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm9 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flighicon-app-land-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m2.878 6.998 1.624.435a1.5 1.5 0 0 1 1.033.968l.319.942a.01.01 0 0 0 .008.007l4.456.678a.01.01 0 0 0 .011-.011L9.115 2.67a.5.5 0 0 1 .623-.565l1.89.506a1.5 1.5 0 0 1 1.014.918l3 7.92a.01.01 0 0 0 .007.006l4.383 1.543a3 3 0 0 1 1.983 2.474c.049.409.108.807-.192 1.146a2.913 2.913 0 0 1-2.933.88L3.771 13.45a1.5 1.5 0 0 1-1.106-1.315l-.414-4.608a.5.5 0 0 1 .627-.528ZM3 20a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2H3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-ebike-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11 4a1 1 0 0 1 1-1h2a2 2 0 0 1 2 2h3a2 2 0 0 1 2 2v2a2 2 0 0 1-1.51 1.94l2.142 4.996c.264.527.368.985.368 1.564a3.5 3.5 0 0 1-6.663 1.5H9.663a3.5 3.5 0 0 1-6.628-1H3a1 1 0 0 1-1-1V9a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2a2 2 0 1 0 4 0V5h-2a1 1 0 0 1-1-1Zm9 13.5a1.5 1.5 0 1 1-1.5-1.5c.815 0 1.5.689 1.5 1.5Zm-1.373-3.498L17.341 11H16a4 4 0 0 1-7.465 2H4v2.05A3.5 3.5 0 0 1 9.965 17h5.07c.25-1.749 1.83-3.06 3.592-2.998ZM18.022 9H16V7h3v2h-.978ZM8 9v2H4V9h4Zm0 8.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bus-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.022 3H18a3 3 0 0 1 3 3 1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7a2 2 0 0 1-1 1.732v.768a1.5 1.5 0 0 1-3 0V19H7v.5a1.5 1.5 0 0 1-3 0v-.768A2 2 0 0 1 3 17v-7a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1 3 3 0 0 1 3-3h5.022Zm.596 2h2.764l-1.276 2.553a1 1 0 1 0 1.788.894L16.618 5H18a1 1 0 0 1 1 1v5H5V6a1 1 0 0 1 1-1h3.382L8.106 7.553a1 1 0 0 0 1.788.894L11.618 5ZM6 15a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm9 0a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-ufo-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.5 4.5c0 .444-.193.843-.5 1.118v1.453a7.007 7.007 0 0 1 5.802 5.27C17.454 13.1 15.193 14 12 14c-3.193 0-5.454-.899-6.802-1.66A7.007 7.007 0 0 1 11 7.07V5.619A1.5 1.5 0 1 1 13.5 4.5Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3.786 13.829c.295.182.634.374 1.017.565C6.425 15.206 8.827 16 12 16s5.575-.794 7.197-1.606c.383-.19.722-.383 1.017-.565.933.591 1.786 1.5 1.786 2.671 0 1.78-1.823 2.843-3.274 3.407C16.956 20.596 14.577 21 12 21s-4.956-.404-6.726-1.093C3.823 19.343 2 18.28 2 16.5c0-1.172.853-2.08 1.786-2.671Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-gas-station-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a2 2 0 0 0-2 2v14a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2v-5h1v2.5a2.5 2.5 0 0 0 5 0v-6.086A2 2 0 0 0 20.414 9l-2.707-2.707a1 1 0 1 0-1.414 1.414l1.1 1.101A1.999 1.999 0 0 0 19 12v4.5a.5.5 0 0 1-.999 0V14a2 2 0 0 0-2-2h-1V5a2 2 0 0 0-2-2H5Zm8 7V5H5v5h8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-riding-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M18 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-6.01 2.555a1.5 1.5 0 0 1 2.048.069L16.414 10H18a1 1 0 1 1 0 2h-1.793a1.5 1.5 0 0 1-1.06-.44l-1.193-1.191-2.632 2.303 1.317 1.537a1.5 1.5 0 0 1 .361.976V19a1 1 0 1 1-2 0v-3.63l-2.437-2.843a1.5 1.5 0 0 1 .151-2.105l3.275-2.867Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 17a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm16-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flighicon-app-land-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M21.422 17.173c.53-.465.702-1.154.564-1.828a3.96 3.96 0 0 0-2.54-2.933l-3.665-1.317-2.81-7.501a1.25 1.25 0 0 0-.848-.769l-2.758-.74a1.01 1.01 0 0 0-1.261 1.12l.891 6.19-2.542-.388-.34-1.004a1.25 1.25 0 0 0-.86-.807l-2.271-.609a1.01 1.01 0 0 0-1.265 1.095l.628 5.266a1.1 1.1 0 0 0 .808.932l15.076 4.04c1.122.3 2.32.02 3.193-.747Zm-2.653-2.879a1.96 1.96 0 0 1 1.256 1.44 1.475 1.475 0 0 1-1.278.254L4.259 12.106l-.382-3.209.47.127.405 1.195c.121.357.431.618.805.675l4.456.678a1.01 1.01 0 0 0 1.152-1.142l-.868-6.024.936.251 2.836 7.57c.104.277.325.495.604.595l4.096 1.472Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 20a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2H3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-train-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M1 7c0-1.101.89-2 1.998-2H12c3.224 0 5.942 1.075 7.868 2.589C21.759 9.075 23 11.085 23 13c0 .842-.258 1.56-.713 2.14-.443.566-1.034.95-1.636 1.214-1.186.518-2.597.646-3.651.646H2.994A1.995 1.995 0 0 1 1 15V7Zm2 3h4V7H3v3Zm10 0H9V7h3c.34 0 .674.014 1 .04V10Zm2 0h4.551a8.216 8.216 0 0 0-.919-.839c-.962-.756-2.19-1.395-3.632-1.778V10Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M1 19a1 1 0 0 1 1-1h19a1 1 0 1 1 0 2H2a1 1 0 0 1-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-truck-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 6a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v1h1.52a2 2 0 0 1 1.561.75l1.48 1.851a2 2 0 0 1 .439 1.25V15a2 2 0 0 1-2 2h-1a3 3 0 1 1-6 0h-3a3 3 0 1 1-6 0 2 2 0 0 1-2-2V6Zm15 7V9h1.52L20 10.85V13h-3Zm-9 4a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm8 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flighicon-app-takeoff-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M22.488 11.55c.227-.669.032-1.351-.425-1.866a3.96 3.96 0 0 0-3.667-1.27l-3.832.692L8.38 4.015a1.25 1.25 0 0 0-1.118-.243l-2.76.74a1.01 1.01 0 0 0-.532 1.6l3.867 4.913-2.395.936-.796-.7a1.25 1.25 0 0 0-1.149-.268l-2.271.608a1.01 1.01 0 0 0-.548 1.58l3.177 4.247c.27.36.73.52 1.165.403l15.077-4.04a3.474 3.474 0 0 0 2.391-2.242Zm-3.736-1.168a1.96 1.96 0 0 1 1.807.62c-.175.42-.536.74-.98.858L5.091 15.742l-1.935-2.587.47-.127.948.833c.284.25.683.32 1.035.182l4.199-1.64a1.01 1.01 0 0 0 .426-1.566L6.471 6.056l.935-.25 6.24 5.136c.23.189.53.267.822.215l4.284-.774Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 20a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2H3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-car-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6.106 11.553a1.017 1.017 0 0 0 .452 1.344C8.23 13.717 10.154 14 12 14c1.81 0 3.802-.286 5.446-1.105a1.01 1.01 0 0 0 .448-1.342 1 1 0 0 0-1.34-.448C15.17 11.768 13.517 12 12 12c-2.604 0-4.405-.824-4.547-.892-.494-.235-1.098-.054-1.347.445Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.58 4a2 2 0 0 0-1.736 1.008l-3.58 6.265a2 2 0 0 0-.264.993v4.498a2 2 0 0 0 .211.894l1.118 2.236A2 2 0 0 0 5.118 21H7a2 2 0 0 0 2-2h6a2 2 0 0 0 2 2h1.882a2 2 0 0 0 1.789-1.106l1.118-2.236c.139-.277.211-.584.211-.894v-4.498a2 2 0 0 0-.264-.993l-3.58-6.265A2 2 0 0 0 16.42 4H7.58Zm0 2h8.84L20 12.266v4.498L18.882 19H17v-.9a1.1 1.1 0 0 0-1.1-1.1H8.1A1.1 1.1 0 0 0 7 18.1v.9H5.118L4 16.764v-4.498L7.58 6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-contacts-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11 2a5 5 0 1 0 0 10 5 5 0 0 0 0-10ZM8 7a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 14a5 5 0 0 0-5 5v2a1 1 0 1 0 2 0v-2a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v2a1 1 0 1 0 2 0v-2a5 5 0 0 0-5-5H7Zm11-7a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2h-3Zm0 4a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Zm1 3a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-badge-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" clip-rule="evenodd" d="M9.566 1.164a.995.995 0 0 1 1.334.445l1.1 2.2 1.1-2.2a.995.995 0 1 1 1.779.89l-.772 1.544h3.86c1.1 0 1.99.89 1.99 1.99v13.924a1.99 1.99 0 0 1-1.99 1.99H6.033a1.99 1.99 0 0 1-1.989-1.99V6.032a1.99 1.99 0 0 1 1.99-1.989h3.86L9.121 2.5a.995.995 0 0 1 .445-1.335ZM8.022 16.476a2.487 2.487 0 0 1 2.486-2.487h2.984a2.487 2.487 0 0 1 2.486 2.487v.497a.995.995 0 0 1-1.989 0v-.497a.497.497 0 0 0-.497-.498h-2.984a.497.497 0 0 0-.497.498v.497a.995.995 0 0 1-1.99 0v-.497ZM12 12.995a1.99 1.99 0 1 0 0-3.979 1.99 1.99 0 0 0 0 3.979Z" fill-rule="evenodd" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-add-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 7a5 5 0 1 1 10 0A5 5 0 0 1 7 7ZM3 19a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v1a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-1Zm17-5a1 1 0 0 1-1-1v-1h-1a1 1 0 1 1 0-2h1V9a1 1 0 1 1 2 0v1h1a1 1 0 1 1 0 2h-1v1a1 1 0 0 1-1 1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-IDcard-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2.054 6.032a1.99 1.99 0 0 1 1.99-1.989h15.913c1.099 0 1.99.89 1.99 1.99v11.935a1.99 1.99 0 0 1-1.99 1.989H4.043a1.99 1.99 0 0 1-1.99-1.99V6.033Zm2.984 8.454A2.487 2.487 0 0 1 7.524 12h1.99A2.487 2.487 0 0 1 12 14.486v.498a.995.995 0 0 1-1.99 0v-.498a.497.497 0 0 0-.497-.497H7.524a.497.497 0 0 0-.497.497v.498a.995.995 0 0 1-1.99 0v-.498Zm3.48-2.983a1.74 1.74 0 1 0 0-3.481 1.74 1.74 0 0 0 0 3.48Zm4.477-.498c0-.549.445-.994.994-.994h1.99a.995.995 0 0 1 0 1.989h-1.99a.995.995 0 0 1-.994-.995Zm.994 1.99a.995.995 0 0 0 0 1.989h3.979a.995.995 0 0 0 0-1.99h-3.979Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-add-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 7a5 5 0 1 1 10 0A5 5 0 0 1 7 7Zm5-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 19a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v2a1 1 0 1 1-2 0v-2a3 3 0 0 0-3-3H8a3 3 0 0 0-3 3v2a1 1 0 1 1-2 0v-2Zm17-5a1 1 0 0 1-1-1v-1h-1a1 1 0 1 1 0-2h1V9a1 1 0 1 1 2 0v1h1a1 1 0 1 1 0 2h-1v1a1 1 0 0 1-1 1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-follow-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 7a5 5 0 1 1 10 0A5 5 0 0 1 7 7Zm5-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 19a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v2a1 1 0 1 1-2 0v-2a3 3 0 0 0-3-3H8a3 3 0 0 0-3 3v2a1 1 0 1 1-2 0v-2Zm14.172-7.09 1.414 1.414a1 1 0 0 0 1.414 0l2.828-2.829a1 1 0 0 0-1.414-1.414l-2.121 2.122-.707-.707a1 1 0 0 0-1.414 1.414Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-IDcard-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Zm0 2h16v12H4V6Zm6.25 3.75a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5 14.5A2.5 2.5 0 0 1 7.5 12h2a2.5 2.5 0 0 1 2.5 2.5v.5a1 1 0 1 1-2 0v-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v.5a1 1 0 1 1-2 0v-.5Zm8-3.5a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Zm1 2a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-badge-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 11a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-6 5.5a2.5 2.5 0 0 1 2.5-2.5h3a2.5 2.5 0 0 1 2.5 2.5v.5a1 1 0 1 1-2 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v.5a1 1 0 1 1-2 0v-.5Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9.553 1.106a1 1 0 0 1 1.341.447L12 3.763l1.106-2.21a1 1 0 1 1 1.788.894L14.118 4H18a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3.882l-.776-1.553a1 1 0 0 1 .447-1.341Zm1.553 5.341L10.882 6H6v14h12V6h-5a1 1 0 0 1-1.894.447Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-4-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8 9a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 14.722 4.34C17.073 14.992 14.665 14 12 14s-5.073.992-6.722 2.34A7.962 7.962 0 0 1 4 12Zm2.565 5.87A7.972 7.972 0 0 0 12 20a7.972 7.972 0 0 0 5.435-2.13C16.149 16.829 14.199 16 12 16c-2.2 0-4.149.828-5.435 1.87Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-female-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 9.5a7.5 7.5 0 1 1 2.942 5.957l-1.788 1.787L9.58 18.67a1 1 0 1 1-1.415 1.414L6.74 18.659l-2.12 2.12a1 1 0 0 1-1.414-1.415l2.12-2.12-1.403-1.403a1 1 0 1 1 1.414-1.414L6.74 15.83l1.79-1.79A7.467 7.467 0 0 1 7 9.5Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2a5 5 0 1 0 0 10 5 5 0 0 0 0-10ZM9 7a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8 14a5 5 0 0 0-5 5v2a1 1 0 1 0 2 0v-2a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v2a1 1 0 1 0 2 0v-2a5 5 0 0 0-5-5H8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-follow-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 7a5 5 0 1 1 10 0A5 5 0 0 1 7 7ZM3 19a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v1a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-1Zm14.172-7.09 1.414 1.414a1 1 0 0 0 1.414 0l2.828-2.828a1 1 0 0 0-1.414-1.415l-2.121 2.122-.707-.707a1 1 0 1 0-1.414 1.414Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-male-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M21 9a1 1 0 1 1-2 0V6.414l-3.537 3.537a7.5 7.5 0 1 1-1.414-1.414L17.586 5H15a1 1 0 1 1 0-2h4.75c.69 0 1.25.56 1.25 1.25V9Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2.5 19A5.5 5.5 0 0 1 8 13.5h8a5.5 5.5 0 0 1 5.5 5.5v1.5a1.5 1.5 0 0 1-3 0V19a2.5 2.5 0 0 0-2.5-2.5H8A2.5 2.5 0 0 0 5.5 19v1.5a1.5 1.5 0 0 1-3 0V19ZM12 4.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5ZM6.5 7a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-contacts-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6.032 7.027a4.973 4.973 0 1 1 9.946 0 4.973 4.973 0 0 1-9.946 0Zm10.941.995c0-.55.445-.995.995-.995h2.984a.995.995 0 0 1 0 1.99h-2.984a.995.995 0 0 1-.995-.995Zm1.99 1.989a.995.995 0 0 0 0 1.989h1.989a.995.995 0 0 0 0-1.99h-1.99Zm.994 2.984a.995.995 0 0 0 0 1.989h.995a.995.995 0 0 0 0-1.99h-.995ZM2.054 18.962a4.973 4.973 0 0 1 4.973-4.973h7.957a4.973 4.973 0 0 1 4.973 4.973v.995a1.99 1.99 0 0 1-1.99 1.99H4.044a1.99 1.99 0 0 1-1.99-1.99v-.995Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-male-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M21 9a1 1 0 1 1-2 0V6.414l-3.537 3.537a7.5 7.5 0 1 1-1.414-1.414L17.586 5H15a1 1 0 1 1 0-2h4.75c.69 0 1.25.56 1.25 1.25V9ZM9.5 9a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-female-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 9.5a7.5 7.5 0 1 1 2.942 5.957l-1.788 1.787L9.58 18.67a1 1 0 1 1-1.415 1.414L6.74 18.659l-2.12 2.12a1 1 0 0 1-1.414-1.415l2.12-2.12-1.403-1.403a1 1 0 1 1 1.414-1.414L6.74 15.83l1.79-1.79A7.467 7.467 0 0 1 7 9.5ZM14.5 4a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-4-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM8.5 8.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0Zm-3.222 7.84C6.927 14.992 9.335 14 12 14s5.073.992 6.722 2.34A7.993 7.993 0 0 1 12 20a7.993 7.993 0 0 1-6.722-3.66Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-5-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 2c-.784 0-1.661.19-2.38.391C7.957 2.854 7 4.41 7 5.997v4.006c0 1.588.957 3.143 2.62 3.606.719.2 1.596.391 2.38.391.784 0 1.661-.19 2.38-.391 1.663-.463 2.62-2.018 2.62-3.606V5.997c0-1.587-.957-3.143-2.62-3.606C13.661 2.191 12.784 2 12 2ZM5.562 15a3 3 0 0 0-2.91 2.272l-.467 1.864A1.5 1.5 0 0 0 3.64 21h16.72a1.5 1.5 0 0 0 1.455-1.864l-.466-1.864A3 3 0 0 0 18.439 15h-4.025a2 2 0 0 0-1.414.586l-1 1-1-1A2 2 0 0 0 9.586 15H5.562Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-group-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 7.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0ZM9.5 5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 17a4 4 0 0 1 4-4h7a4 4 0 0 1 4 4v2a1 1 0 1 1-2 0v-2a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v2a1 1 0 1 1-2 0v-2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18 6a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-1 3a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M17.584 15a5.02 5.02 0 0 0-1.583-2H19a3 3 0 0 1 3 3v2a1 1 0 1 1-2 0v-2a1 1 0 0 0-1-1h-1.416Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2a5 5 0 1 0 0 10 5 5 0 0 0 0-10ZM9 7a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm-1 7a5 5 0 0 0-5 5v1a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-1a5 5 0 0 0-5-5H8Zm-3 5a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v1H5v-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-remove-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 7a5 5 0 1 1 10 0A5 5 0 0 1 7 7Zm5-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 19a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v2a1 1 0 1 1-2 0v-2a3 3 0 0 0-3-3H8a3 3 0 0 0-3 3v2a1 1 0 1 1-2 0v-2Zm15-9a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 2.054A4.973 4.973 0 1 0 12 12a4.973 4.973 0 0 0 0-9.946ZM8.02 13.989a4.973 4.973 0 0 0-4.973 4.973v.995a1.99 1.99 0 0 0 1.99 1.99h13.924a1.99 1.99 0 0 0 1.99-1.99v-.995a4.973 4.973 0 0 0-4.974-4.973H8.021Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-group-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.513 3.048a4.476 4.476 0 1 0 0 8.952 4.476 4.476 0 0 0 0-8.952Zm5.47 5.968a2.984 2.984 0 1 1 5.968 0 2.984 2.984 0 0 1-5.967 0Zm1.99 3.979h1.99a2.984 2.984 0 0 1 2.983 2.984v1.492c0 .824-.668 1.491-1.492 1.491h-1.492v-1.989c0-1.627-.78-3.07-1.988-3.978Zm-14.92 3.978a3.979 3.979 0 0 1 3.98-3.978h6.962a3.979 3.979 0 0 1 3.978 3.978v1.492c0 .824-.668 1.492-1.492 1.492H3.546a1.492 1.492 0 0 1-1.492-1.492v-1.492Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-remove-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 7a5 5 0 1 1 10 0A5 5 0 0 1 7 7ZM3 19a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v1a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-1Zm15-9a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-user-5-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2c-.784 0-1.661.19-2.38.391C7.957 2.854 7 4.41 7 5.997v4.006c0 1.588.957 3.143 2.62 3.606.719.2 1.596.391 2.38.391.784 0 1.661-.19 2.38-.391 1.663-.463 2.62-2.018 2.62-3.606V5.997c0-1.587-.957-3.143-2.62-3.606C13.661 2.191 12.784 2 12 2Zm-1.843 2.318C10.823 4.132 11.49 4 12 4c.509 0 1.177.132 1.843.318.668.186 1.157.847 1.157 1.679v4.006c0 .832-.489 1.493-1.157 1.68-.666.185-1.334.317-1.843.317-.509 0-1.177-.132-1.843-.318C9.489 11.496 9 10.835 9 10.003V5.997c0-.832.489-1.493 1.157-1.68Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4.591 17.758a1 1 0 0 1 .97-.758h4.025l1 1a2 2 0 0 0 2.828 0l1-1h4.024a1 1 0 0 1 .97.758l.622 2.485a1 1 0 1 0 1.94-.485l-.621-2.486A3 3 0 0 0 18.439 15h-4.025a2 2 0 0 0-1.414.586l-1 1-1-1A2 2 0 0 0 9.586 15H5.562a3 3 0 0 0-2.91 2.272l-.622 2.486a1 1 0 1 0 1.94.485l.621-2.485Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-cloud-lightning-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M5 8.416a6.5 6.5 0 0 1 12.586-2.204 6.002 6.002 0 0 1-.773 11.733c.449-1.555-.41-3.198-1.894-3.751a3.001 3.001 0 0 0-5.524-2.182l-1.914 3.35A3.06 3.06 0 0 0 7.273 18H7a5 5 0 0 1-2-9.584Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12.868 13.996a1 1 0 1 0-1.736-.992l-1.915 3.35A1.1 1.1 0 0 0 10.172 18h2.105l-1.145 2.004a1 1 0 1 0 1.736.992l1.915-3.35A1.1 1.1 0 0 0 13.828 16h-2.105l1.145-2.004Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-cloud-lightning-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.5 2A6.5 6.5 0 0 0 5 8.416a5 5 0 0 0 .75 9.426 1 1 0 1 0 .5-1.936 3.002 3.002 0 0 1 .019-5.816A1.01 1.01 0 0 0 7.027 9a4.5 4.5 0 0 1 8.817-1.679c.104.382.421.668.811.732a4.001 4.001 0 0 1 .945 7.615 1 1 0 1 0 .8 1.832 6.001 6.001 0 0 0-.814-11.288A6.502 6.502 0 0 0 11.5 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12.868 13.996a1 1 0 1 0-1.736-.992l-1.915 3.35A1.1 1.1 0 0 0 10.172 18h2.105l-1.145 2.004a1 1 0 1 0 1.736.992l1.915-3.35A1.1 1.1 0 0 0 13.828 16h-2.105l1.145-2.004Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wind-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.5 4.5a1 1 0 0 0-.917.6 1.5 1.5 0 1 1-2.75-1.2A4 4 0 1 1 10.5 9.5H5a1.5 1.5 0 1 1 0-3h5.5a1 1 0 1 0 0-2Zm8 4a1 1 0 0 0-.917.6 1.5 1.5 0 0 1-2.75-1.2 4 4 0 1 1 3.667 5.6H3a1.5 1.5 0 0 1 0-3h15.5a1 1 0 1 0 0-2Zm-4.917 10.4a1 1 0 1 0 .917-1.4H8a1.5 1.5 0 0 1 0-3h6.5a4 4 0 1 1-3.666 5.6 1.5 1.5 0 1 1 2.749-1.2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-typhoon-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M20 12c0 5.523-4.477 10-10 10a9.966 9.966 0 0 1-6.322-2.252l-.985-.804c-.455-.372-.16-1.108.425-1.063l1.268.096c.72.054 1.464.01 2.159-.126A7.978 7.978 0 0 1 4 12C4 6.477 8.478 2 14 2c2.397 0 4.6.844 6.323 2.252l.985.804c.455.372.16 1.108-.425 1.063l-1.268-.096a8.173 8.173 0 0 0-2.159.126A7.979 7.979 0 0 1 20 12Zm-8 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-typhoon-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-1 3a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M20 12c0 5.523-4.477 10-10 10a9.966 9.966 0 0 1-6.322-2.252l-.985-.804c-.455-.372-.16-1.108.425-1.063l1.268.096c.72.054 1.464.01 2.159-.126A7.978 7.978 0 0 1 4 12C4 6.477 8.478 2 14 2c2.397 0 4.6.844 6.323 2.252l.985.804c.455.372.16 1.108-.425 1.063l-1.268-.096a8.173 8.173 0 0 0-2.159.126A7.979 7.979 0 0 1 20 12ZM9.891 18.773c-.731.34-1.472.662-2.249.874A8 8 0 0 0 18 12a6 6 0 0 0-3.199-5.308l-.719-.38a.608.608 0 0 1 .028-1.085c.731-.34 1.472-.662 2.249-.874A8 8 0 0 0 6 12a6 6 0 0 0 3.2 5.308l.719.38a.608.608 0 0 1-.028 1.085Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-moon-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.574 3.137a1.01 1.01 0 0 0-1.097 1.409 6 6 0 0 1-7.931 7.931 1.01 1.01 0 0 0-1.409 1.097A9 9 0 0 0 21 12c0-4.434-3.206-8.118-7.426-8.863Zm1.307 2.481A7.002 7.002 0 0 1 12 19a7.002 7.002 0 0 1-6.382-4.12 8 8 0 0 0 9.263-9.263Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-sunset-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.293 8.707 9.172 6.586a1 1 0 1 1 1.414-1.415l.414.415V2.88a1 1 0 1 1 2 0v2.706l.414-.415a1 1 0 1 1 1.414 1.415l-2.12 2.121a1 1 0 0 1-1.415 0Zm-4.95.222a1 1 0 1 0-1.414 1.414l.707.707A1 1 0 0 0 7.05 9.636l-.707-.707ZM20 17a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2h-1ZM3 17a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2H3Zm15.364-5.95a1 1 0 0 1-1.414-1.414l.707-.707a1 1 0 1 1 1.414 1.414l-.707.707Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 19a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2h-2.803a6 6 0 1 0-10.394 0H4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-thermometer-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 5a3 3 0 1 1 6 0v7.956a.34.34 0 0 0 .097.118 5 5 0 1 1-6.193 0 .34.34 0 0 0 .087-.097.097.097 0 0 0 .009-.021V5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-lightning-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8.084 2.6c.162-.365.523-.6.922-.6h7.978c.75 0 1.239.79.903 1.462L15.618 8h3.358c.9 0 1.35 1.088.714 1.724L7.737 21.677c-.754.754-2.01-.022-1.672-1.033L8.613 13H5.015a1.01 1.01 0 0 1-.923-1.42L8.084 2.6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-rain-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.5 2A6.5 6.5 0 0 0 5 8.416a5 5 0 0 0-.5 8.915 1 1 0 0 0 1-1.732 3.002 3.002 0 0 1 .768-5.51A1.01 1.01 0 0 0 7.029 9a4.5 4.5 0 0 1 8.817-1.679c.103.383.42.67.81.733A4.001 4.001 0 0 1 18.4 15.2a1 1 0 1 0 1.202 1.6 6.002 6.002 0 0 0-2.015-10.588A6.502 6.502 0 0 0 11.5 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 13a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm7 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Zm-4 1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm0 4a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm4-1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Zm-7-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wind-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.5 4a1.5 1.5 0 0 0-1.47 1.199A1 1 0 1 1 7.07 4.8 3.5 3.5 0 1 1 10.5 9H5a1 1 0 0 1 0-2h5.5a1.5 1.5 0 0 0 0-3Zm8 4a1.5 1.5 0 0 0-1.47 1.199 1 1 0 1 1-1.96-.398A3.5 3.5 0 1 1 18.5 13H3a1 1 0 1 1 0-2h15.5a1.5 1.5 0 0 0 0-3Zm-5.47 10.801A1.5 1.5 0 1 0 14.5 17H8a1 1 0 1 1 0-2h6.5a3.5 3.5 0 1 1-3.43 4.199 1 1 0 1 1 1.96-.398Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-sun-cloudy-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.8 6.003a6 6 0 0 0-5.795 6.251A4.501 4.501 0 0 0 6.5 21h9a5.5 5.5 0 0 0 4.926-7.949 6 6 0 1 0-9.625-7.048Zm2.209.341a6.016 6.016 0 0 1 3.694 3.788c.942.21 1.792.662 2.483 1.286a4 4 0 0 0-6.178-5.074ZM7 12a4 4 0 0 1 7.922-.793c.088.44.455.767.899.807A3.5 3.5 0 0 1 15.5 19h-9a2.5 2.5 0 0 1-.292-4.983 1.01 1.01 0 0 0 .874-1.207A4.022 4.022 0 0 1 7 12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-cloud-snoicon-app-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M5 8.416a6.5 6.5 0 0 1 12.586-2.204 6.002 6.002 0 0 1 .19 11.52A3.5 3.5 0 0 0 14.5 13a1.52 1.52 0 0 1-1.199-.599 3.5 3.5 0 0 0-6.012 3.492 1.54 1.54 0 0 1 0 1.216c-.122.28-.208.58-.253.892H7a5 5 0 0 1-2-9.584Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 14.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm2.5-.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm1.5 2.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-sun-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 3a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0V3Zm0 17a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0v-1Zm-9-8a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2H3a1 1 0 0 0-1 1Zm18 1a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2h-1ZM6.343 4.929A1 1 0 0 0 4.93 6.343l.707.707A1 1 0 0 0 7.05 5.636l-.707-.707ZM16.95 18.364a1 1 0 0 1 1.414-1.414l.707.707a1 1 0 0 1-1.414 1.414l-.707-.707Zm-12.021-.707a1 1 0 1 0 1.414 1.414l.707-.707a1 1 0 1 0-1.414-1.414l-.707.707ZM18.364 7.05a1 1 0 1 1-1.414-1.414l.707-.707a1 1 0 1 1 1.414 1.414l-.707.707ZM12 6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-sun-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 3a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0V3Zm0 17a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0v-1Zm-9-8a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2H3a1 1 0 0 0-1 1Zm18 1a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2h-1ZM6.343 4.929A1 1 0 0 0 4.93 6.343l.707.707A1 1 0 0 0 7.05 5.636l-.707-.707ZM16.95 18.364a1 1 0 0 1 1.414-1.414l.707.707a1 1 0 0 1-1.414 1.414l-.707-.707Zm-12.021-.707a1 1 0 1 0 1.414 1.414l.707-.707a1 1 0 1 0-1.414-1.414l-.707.707ZM18.364 7.05a1 1 0 1 1-1.414-1.414l.707-.707a1 1 0 1 1 1.414 1.414l-.707.707Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Zm-4 6a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-sun-cloudy-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16 3c-1.786 0-3.39.78-4.489 2.018a7.004 7.004 0 0 1 5.95 4.283 6.517 6.517 0 0 1 3.628 2.879A6 6 0 0 0 16 3Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 6a6 6 0 0 0-5.995 6.254A4.501 4.501 0 0 0 6.5 21h9a5.5 5.5 0 0 0 1.203-10.868A6.002 6.002 0 0 0 11 6Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-moon-cloudy-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M15.894 3.015c-.789-.139-1.43.66-1.095 1.406.257.573.4 1.21.4 1.882 0 .433-.059.852-.171 1.25a6 6 0 0 0-10.023 4.701A4.501 4.501 0 0 0 6.5 21h9a5.5 5.5 0 0 0 5.358-6.746 7.402 7.402 0 0 0-4.964-11.238Zm3.838 8.972a5.4 5.4 0 0 0-2.575-6.442 6.571 6.571 0 0 1-.738 3.876c.109.23.204.467.284.711a5.5 5.5 0 0 1 3.03 1.855ZM7 12a4 4 0 0 1 7.922-.793c.088.44.455.767.899.807A3.5 3.5 0 0 1 15.5 19h-9a2.5 2.5 0 0 1-.292-4.983 1.01 1.01 0 0 0 .874-1.207A4.022 4.022 0 0 1 7 12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-moon-cloudy-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M15.894 3.015c-.789-.139-1.43.66-1.095 1.406a4.58 4.58 0 0 1 .4 1.978A7.023 7.023 0 0 1 17.461 9.3a6.518 6.518 0 0 1 4.036 3.688 7.402 7.402 0 0 0-5.603-9.974ZM11 6a6 6 0 0 0-5.995 6.254A4.501 4.501 0 0 0 6.5 21h9a5.5 5.5 0 0 0 1.203-10.868A6.002 6.002 0 0 0 11 6Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-sunrise-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.293 2.173a1 1 0 0 1 1.414 0l2.121 2.121a1 1 0 1 1-1.414 1.414L13 5.294V8a1 1 0 1 1-2 0V5.294l-.414.414a1 1 0 0 1-1.414-1.414l2.12-2.121ZM3 20a1 1 0 0 1 1-1h2.803a6 6 0 1 1 10.394 0H20a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1ZM4.929 8.929a1 1 0 0 1 1.414 0l.707.707a1 1 0 0 1-1.414 1.414l-.707-.707a1 1 0 0 1 0-1.414Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M19 16a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2h-1a1 1 0 0 0-1 1ZM2 16a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2H3a1 1 0 0 0-1 1Zm14.95-4.95a1 1 0 0 0 1.414 0l.707-.707a1 1 0 0 0-1.414-1.414l-.707.707a1 1 0 0 0 0 1.414Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-thermometer-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.848 17.765A2 2 0 0 0 14 17h-4a2 2 0 0 0 3.848.765Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2a3 3 0 0 0-3 3v7.956a.34.34 0 0 1-.097.118 5 5 0 1 0 6.193 0 .34.34 0 0 1-.087-.097.094.094 0 0 1-.009-.021V5a3 3 0 0 0-3-3Zm-1 3a1 1 0 1 1 2 0v7.958c0 .736.4 1.325.857 1.686a3 3 0 1 1-3.714 0c.456-.36.857-.95.857-1.686V5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-cloud-snoicon-app-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.5 2A6.5 6.5 0 0 0 5 8.416a5 5 0 0 0 .75 9.426 1 1 0 1 0 .5-1.936 3.002 3.002 0 0 1 .019-5.816A1.01 1.01 0 0 0 7.027 9a4.5 4.5 0 0 1 8.817-1.679c.104.382.421.668.811.732a4.001 4.001 0 0 1 1.744 7.148 1 1 0 1 0 1.202 1.599 6.002 6.002 0 0 0-2.015-10.588A6.502 6.502 0 0 0 11.5 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 14.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm2.5-.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm1.5 2.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-sunrise-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.293 2.173a1 1 0 0 1 1.414 0l2.121 2.121a1 1 0 1 1-1.414 1.414L13 5.294V8a1 1 0 1 1-2 0V5.294l-.414.414a1 1 0 0 1-1.414-1.414l2.12-2.121Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 20a1 1 0 0 1 1-1h2.803a6 6 0 1 1 10.394 0H20a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm11.646-1H9.355a4 4 0 1 1 5.291 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6.343 8.929a1 1 0 1 0-1.414 1.414l.707.707A1 1 0 0 0 7.05 9.636l-.707-.707ZM20 17a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2h-1ZM3 17a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2H3Zm15.364-5.95a1 1 0 0 1-1.414-1.414l.707-.707a1 1 0 1 1 1.414 1.414l-.707.707Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-lightning-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="m9.65 4-3.111 7h3.447c.69 0 1.176.675.958 1.33l-1.656 4.967L16.586 10h-2.57a1.01 1.01 0 0 1-.903-1.462L15.382 4H9.65ZM8.084 2.6c.162-.365.523-.6.922-.6h7.978c.75 0 1.239.79.903 1.462L15.618 8h3.358c.9 0 1.35 1.088.714 1.724L7.737 21.677c-.754.754-2.01-.022-1.672-1.033L8.613 13H5.015a1.01 1.01 0 0 1-.923-1.42L8.084 2.6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-sunset-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m9.172 6.586 2.12 2.121a1 1 0 0 0 1.415 0l2.121-2.121a1 1 0 0 0-1.414-1.415L13 5.586V2.88a1 1 0 1 0-2 0v2.706l-.414-.415a1 1 0 0 0-1.414 1.415ZM4.929 8.929a1 1 0 0 1 1.414 0l.707.707a1 1 0 0 1-1.414 1.414l-.707-.707a1 1 0 0 1 0-1.414ZM19 16a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2h-1a1 1 0 0 0-1 1ZM2 16a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2H3a1 1 0 0 0-1 1Zm14.95-4.95a1 1 0 0 0 1.414 0l.707-.707a1 1 0 0 0-1.414-1.414l-.707.707a1 1 0 0 0 0 1.414Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6.803 19a6 6 0 1 1 10.394 0H20a1 1 0 1 1 0 2H4a1 1 0 1 1 0-2h2.803ZM8 16a4 4 0 1 1 6.646 3H9.355A3.988 3.988 0 0 1 8 16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-umbrella-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 3a1 1 0 1 0-2 0v.022a8.62 8.62 0 0 0-8 8.597A1.38 1.38 0 0 0 4.381 13H11v6a1 1 0 1 1-2 0v-1a1 1 0 1 0-2 0v1a3 3 0 1 0 6 0v-6h6.619A1.38 1.38 0 0 0 21 11.619a8.62 8.62 0 0 0-8-8.597V3Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-rain-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.5 2A6.5 6.5 0 0 0 5 8.416 5 5 0 0 0 6 17.9v-3.4a3.5 3.5 0 0 1 5.19-3.065c.491.27 1.129.27 1.62 0A3.5 3.5 0 0 1 18 14.5v3.159a6.003 6.003 0 0 0-.414-11.447A6.502 6.502 0 0 0 11.5 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 13a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm7 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Zm-4 1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm0 4a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm4-1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Zm-7-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-moon-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.574 3.137a1.01 1.01 0 0 0-1.097 1.409 6 6 0 0 1-7.931 7.931 1.01 1.01 0 0 0-1.409 1.097A9 9 0 0 0 21 12c0-4.434-3.206-8.118-7.426-8.863Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-umbrella-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 3a1 1 0 1 0-2 0v.022a8.62 8.62 0 0 0-8 8.597A1.38 1.38 0 0 0 4.381 13H11v6a1 1 0 1 1-2 0v-1a1 1 0 1 0-2 0v1a3 3 0 1 0 6 0v-6h6.619A1.38 1.38 0 0 0 21 11.619a8.62 8.62 0 0 0-8-8.597V3Zm-1 8h6.971a6.62 6.62 0 0 0-6.59-6h-.762a6.62 6.62 0 0 0-6.59 6H12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-compass-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm13.494-4.886a1.1 1.1 0 0 1 1.391 1.392l-1.92 5.763a1.1 1.1 0 0 1-.696.695l-5.763 1.921a1.1 1.1 0 0 1-1.391-1.391l1.92-5.763a1.1 1.1 0 0 1 .696-.696l5.763-1.92ZM12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-earth-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm7.245-7.513a8.024 8.024 0 0 0-4.758 4.758c.265-.114.544-.219.833-.315a17.191 17.191 0 0 1 2.94-.67c.158-1.092.386-2.088.67-2.94.096-.29.201-.568.315-.833Zm5.51 0c.114.265.219.544.315.833.284.852.512 1.848.67 2.94 1.092.158 2.088.386 2.94.67.29.096.568.201.833.315a8.023 8.023 0 0 0-4.758-4.758ZM13.682 8.05a14.437 14.437 0 0 0-.51-2.098c-.251-.756-.53-1.295-.79-1.626C12.312 4.236 12.14 4 12 4s-.312.237-.382.326c-.26.33-.539.87-.79 1.626a14.437 14.437 0 0 0-.51 2.098 28.417 28.417 0 0 1 3.364 0Zm2.268 2.267c.786.136 1.494.309 2.098.51.756.252 1.296.53 1.626.79.099.079.313.236.326.381 0 .16-.216.298-.326.384-.33.26-.87.539-1.626.79a14.35 14.35 0 0 1-2.098.51 28.45 28.45 0 0 0 0-3.365Zm-2.022 3.611a25.537 25.537 0 0 0 0-3.856 25.526 25.526 0 0 0-3.856 0 25.528 25.528 0 0 0 0 3.856c1.282.097 2.574.097 3.856 0Zm1.813 1.813c1.091-.16 2.087-.387 2.94-.671.288-.096.567-.201.832-.315a8.023 8.023 0 0 1-4.758 4.758c.114-.265.219-.544.315-.833.284-.852.512-1.848.67-2.94ZM12 20c.146-.013.303-.227.381-.326.26-.33.539-.87.79-1.626a14.35 14.35 0 0 0 .51-2.098 28.45 28.45 0 0 1-3.365 0c.136.786.309 1.494.51 2.098.252.756.53 1.296.79 1.626.088.11.223.326.385.326Zm-2.756-.487a8.023 8.023 0 0 1-4.758-4.758c.265.114.544.219.833.315.852.284 1.848.512 2.94.67.158 1.092.386 2.088.67 2.94.096.29.201.568.315.833Zm-1.195-5.83a14.437 14.437 0 0 1-2.098-.51c-.756-.252-1.295-.53-1.626-.79-.093-.075-.368-.249-.323-.398.01-.035.084-.179.323-.367.33-.26.87-.539 1.626-.79a14.437 14.437 0 0 1 2.098-.51 28.417 28.417 0 0 0 0 3.364Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-compass-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm12.419-2.419-3.628 1.21-1.21 3.628 3.628-1.21 1.21-3.628Zm1.075-2.466a1.1 1.1 0 0 1 1.391 1.391l-1.92 5.763a1.1 1.1 0 0 1-.696.695l-5.763 1.921a1.1 1.1 0 0 1-1.391-1.391l1.92-5.763a1.1 1.1 0 0 1 .696-.695l5.763-1.921ZM12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-location-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4.5 9.5a7.5 7.5 0 1 1 15 0c0 2.568-1.4 4.656-2.85 6.14-1.46 1.492-3.088 2.492-3.804 2.896a1.71 1.71 0 0 1-1.691 0c-.717-.404-2.345-1.404-3.805-2.897C5.9 14.156 4.5 12.068 4.5 9.5Zm9.5 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7.28 18.56a1 1 0 1 0-.56-1.92c-.668.195-1.28.445-1.75.766-.435.299-.97.82-.97 1.594 0 .783.548 1.308.99 1.607.478.322 1.103.573 1.786.768C8.154 21.77 10 22 12 22s3.846-.23 5.224-.625c.683-.195 1.308-.446 1.786-.768.442-.3.99-.824.99-1.607 0-.774-.535-1.295-.97-1.594-.47-.321-1.082-.571-1.75-.766a1 1 0 0 0-.56 1.92c.5.146.86.3 1.091.44-.238.143-.613.303-1.136.452-1.155.33-2.808.548-4.675.548s-3.52-.218-4.675-.548c-.522-.149-.898-.309-1.136-.452.23-.14.59-.294 1.09-.44Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-navigation-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18.846 5.15 5.673 9.892l5.245 2.053a2 2 0 0 1 1.134 1.133l2.052 5.245L18.846 5.15Zm.922-2.457c.956-.344 1.88.58 1.536 1.535l-6.04 16.777c-.375 1.043-1.842 1.063-2.246.03l-2.829-7.228-7.228-2.828c-1.032-.404-1.012-1.871.03-2.247l16.777-6.04Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-map-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8.526 3.104a1.5 1.5 0 0 1 .948 0L15 4.946l5.289-1.763A1.3 1.3 0 0 1 22 4.416V17.64a1.5 1.5 0 0 1-1.026 1.423l-5.5 1.833c-.308.103-.64.103-.948 0L9 19.054l-5.289 1.763A1.3 1.3 0 0 1 2 19.584V6.36a1.5 1.5 0 0 1 1.026-1.423l5.5-1.833ZM8 17.28V5.387L4 6.721v11.892l4-1.334Zm2-11.892V17.28l4 1.334V6.72l-4-1.334Zm6 1.334v11.892l4-1.334V5.387l-4 1.334Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-earth-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.19 6.502C12.67 5.18 12.155 5 12 5c-.154 0-.67.18-1.19 1.502a9.684 9.684 0 0 0-.45 1.548 26.169 26.169 0 0 1 3.28 0 9.684 9.684 0 0 0-.45-1.548Zm-3.114 3.574a23.459 23.459 0 0 0 0 3.848c1.278.106 2.57.106 3.848 0 .106-1.278.106-2.57 0-3.848a23.459 23.459 0 0 0-3.848 0ZM8.05 13.64a9.674 9.674 0 0 1-1.548-.45C5.18 12.67 5 12.155 5 12c0-.154.18-.67 1.502-1.19a9.674 9.674 0 0 1 1.548-.45 26.165 26.165 0 0 0 0 3.28Zm2.31 2.31c.126.595.278 1.112.45 1.548C11.33 18.82 11.845 19 12 19c.154 0 .67-.18 1.19-1.502.172-.436.325-.953.45-1.548a26.012 26.012 0 0 1-3.28 0Zm5.59-2.31a9.676 9.676 0 0 0 1.548-.45C18.82 12.67 19 12.155 19 12c0-.154-.18-.67-1.502-1.19a9.676 9.676 0 0 0-1.548-.45 26.012 26.012 0 0 1 0 3.28Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM8.948 5.77c-.28.713-.505 1.557-.665 2.513-.956.16-1.8.384-2.513.665C4.334 9.513 3 10.498 3 12c0 1.503 1.334 2.487 2.77 3.052.713.28 1.557.505 2.513.665.16.956.384 1.8.665 2.513C9.513 19.666 10.498 21 12 21c1.503 0 2.487-1.334 3.052-2.77.28-.713.505-1.557.665-2.513.956-.16 1.8-.384 2.513-.665C19.666 14.487 21 13.502 21 12c0-1.503-1.334-2.487-2.77-3.052-.713-.28-1.557-.505-2.513-.665-.16-.956-.384-1.8-.665-2.513C14.487 4.334 13.502 3 12 3c-1.503 0-2.487 1.334-3.052 2.77Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-world-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm2.317-3.89a1.8 1.8 0 0 0 1.017 1.164 8.021 8.021 0 0 0 2.533-1.835 2.234 2.234 0 0 0-.006-.051l-.228-1.826a2 2 0 0 0-1.09-1.54l-1.47-.736A1 1 0 0 0 14 13.4l-1.564 1.251a.5.5 0 0 0-.041.744l1.239 1.239a2 2 0 0 1 .508.864l.175.613ZM5.5 9.02V7.335A7.99 7.99 0 0 1 12 4c.933 0 1.828.16 2.66.453a2.667 2.667 0 0 1-1.989 3.262l-.611.14a1 1 0 0 0-.764 1.14l.175 1.048a2 2 0 0 1-2.558 2.24l-1.29-.394A3 3 0 0 1 5.5 9.02Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-location-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 9.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4.5 9.5a7.5 7.5 0 1 1 15 0c0 2.568-1.4 4.656-2.85 6.14-1.46 1.492-3.088 2.492-3.804 2.896a1.71 1.71 0 0 1-1.691 0c-.717-.404-2.345-1.404-3.805-2.897C5.9 14.156 4.5 12.068 4.5 9.5ZM12 4a5.5 5.5 0 0 0-5.5 5.5c0 1.816.996 3.428 2.28 4.74 1.188 1.216 2.527 2.074 3.22 2.476.693-.402 2.031-1.26 3.22-2.475 1.284-1.313 2.28-2.925 2.28-4.741A5.5 5.5 0 0 0 12 4Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.28 18.56a1 1 0 1 0-.56-1.92c-.668.195-1.28.445-1.75.766-.435.299-.97.82-.97 1.594 0 .783.548 1.308.99 1.607.478.322 1.103.573 1.786.768C8.154 21.77 10 22 12 22s3.846-.23 5.224-.625c.683-.195 1.308-.446 1.786-.768.442-.3.99-.824.99-1.607 0-.774-.535-1.295-.97-1.594-.47-.321-1.082-.571-1.75-.766a1 1 0 0 0-.56 1.92c.5.146.86.3 1.091.44-.238.143-.613.303-1.136.452-1.155.33-2.808.548-4.675.548s-3.52-.218-4.675-.548c-.522-.149-.898-.309-1.136-.452.23-.14.59-.294 1.09-.44Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-navigation-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M19.768 2.693c.956-.344 1.88.58 1.536 1.535l-6.04 16.777c-.375 1.043-1.842 1.063-2.246.03l-2.829-7.228-7.228-2.828c-1.032-.404-1.012-1.871.03-2.247l16.777-6.04Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-map-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 5.054c-.065 1.642 0 11.973 0 11.973.16 0 .32.026.474.077L15 18.946V6.973a1.5 1.5 0 0 1-.474-.077L9 5.054Zm-.474-1.95a1.5 1.5 0 0 1 .948 0L15 4.946l5.289-1.763A1.3 1.3 0 0 1 22 4.416V17.64a1.5 1.5 0 0 1-1.026 1.423l-5.5 1.833c-.308.103-.64.103-.948 0L9 19.054l-5.289 1.763A1.3 1.3 0 0 1 2 19.584V6.36a1.5 1.5 0 0 1 1.026-1.423l5.5-1.833Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-route-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm1 0a1 1 0 0 1 1-1h4.5a4.5 4.5 0 1 1 0 9h-7a2.5 2.5 0 0 0 0 5H13a1 1 0 1 1 0 2H8.5a4.5 4.5 0 1 1 0-9h7a2.5 2.5 0 0 0 0-5H11a1 1 0 0 1-1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M18 22a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-route-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 5a1 1 0 0 1 1-1h4.5a4.5 4.5 0 1 1 0 9h-7a2.5 2.5 0 0 0 0 5H13a1 1 0 1 1 0 2H8.5a4.5 4.5 0 1 1 0-9h7a2.5 2.5 0 0 0 0-5H11a1 1 0 0 1-1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18 16a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-1 3a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-world-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M15.478 21.378A10.004 10.004 0 0 0 22 12c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10a9.988 9.988 0 0 0 3.18-.516 1.002 1.002 0 0 0 .298-.106ZM12 4a7.963 7.963 0 0 0-4.506 1.389c.004.036.006.073.006.111v3.52a1 1 0 0 0 .707.957l1.291.394-.175-1.048a3 3 0 0 1 2.291-3.418l.401-.091a1 1 0 0 0 .758-.78l.196-.976A8.082 8.082 0 0 0 12 4ZM5.5 9.02V7.335a8 8 0 0 0 8.261 12.47l-.58-2.032a1 1 0 0 0-.255-.432l-1.238-1.239a1.5 1.5 0 0 1 .123-2.232l1.565-1.251a2 2 0 0 1 2.144-.227l1.47.735a3 3 0 0 1 1.635 2.311l.11.881A8.003 8.003 0 0 0 14.91 4.546l-.176.881a3 3 0 0 1-2.273 2.336l-.401.092a1 1 0 0 0-.764 1.14l.175 1.048a2 2 0 0 1-2.558 2.24l-1.29-.394A3 3 0 0 1 5.5 9.02Zm11.464 9.254a7.97 7.97 0 0 1-1.317.848l-.543-1.898a3 3 0 0 0-.763-1.298l-.844-.843 1.128-.902 1.47.735a1 1 0 0 1 .546.77l.323 2.588Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-service-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" clip-rule="evenodd" d="M12 2a7 7 0 0 0-7 7v1.035A3.5 3.5 0 0 0 5.5 17h.357C6.488 17 7 16.488 7 15.857V9a5 5 0 0 1 10 0v6a3.999 3.999 0 0 1-2.063 3.5A2 2 0 0 0 13 17h-2a2 2 0 1 0 0 4h2a6.003 6.003 0 0 0 5.66-4.004 3.5 3.5 0 0 0 .34-6.96V9a7 7 0 0 0-7-7Z" fill-rule="evenodd" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-service-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" clip-rule="evenodd" d="M12 2a7 7 0 0 0-7 7v1.035A3.5 3.5 0 0 0 5.5 17h.357C6.488 17 7 16.488 7 15.857V9a5 5 0 0 1 10 0v6a3.999 3.999 0 0 1-2.063 3.5A2 2 0 0 0 13 17h-2a2 2 0 1 0 0 4h2a6.003 6.003 0 0 0 5.66-4.004 3.5 3.5 0 0 0 .34-6.96V9a7 7 0 0 0-7-7Zm8 11.5a1.5 1.5 0 0 0-1-1.415v2.83a1.5 1.5 0 0 0 1-1.415Zm-16 0a1.5 1.5 0 0 1 1-1.415v2.83A1.5 1.5 0 0 1 4 13.5Z" fill-rule="evenodd" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-mosaic-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 6h4v4h-4V6Zm-4 8H6v4h4v-4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm16 0h-6v6h6V5ZM5 13v6h6v-6H5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-quill-pen-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 16.973V21a1 1 0 1 0 2 0v-3c6.252 0 11.471-4.413 12.718-10.293a.997.997 0 0 0 .016-.309c.907-1.412 1.174-2.713 1.24-3.138.111-.722-.472-1.26-1.084-1.26H19C11.288 3 5.032 9.236 5 16.941v.032Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-scale-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-6a1 1 0 1 0-2 0v6H5V5h6a1 1 0 1 0 0-2H5Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M21 8a1 1 0 1 1-2 0V6.414L12.414 13H14a1 1 0 1 1 0 2h-3.75C9.56 15 9 14.44 9 13.75V10a1 1 0 0 1 2 0v1.586L17.586 5H16a1 1 0 1 1 0-2h3.75c.69 0 1.25.56 1.25 1.25V8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-color-filter-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6.42 10.21a6 6 0 1 1 11.16 0A6 6 0 1 1 12 20.472 6 6 0 1 1 6.42 10.21ZM12 4a4 4 0 0 0-.45 7.975 5.989 5.989 0 0 1 3.9-1.95A4 4 0 0 0 12 4Zm1.25 9.095c.478.86.75 1.852.75 2.905a5.972 5.972 0 0 1-.75 2.906 4 4 0 1 0 0-5.811Zm-1.8.88a4 4 0 1 1-3.9-1.95 5.986 5.986 0 0 0 3.9 1.95Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-scale-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M18.003 10.24a3.013 3.013 0 0 0 2.997.59V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.17a3.013 3.013 0 0 0 .59 2.997L11.997 7.76A3 3 0 0 0 7 10v3.749A3.25 3.25 0 0 0 10.25 17H14a3 3 0 0 0 2.24-4.996l1.764-1.765Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M21 8a1 1 0 1 1-2 0V6.414L12.414 13H14a1 1 0 1 1 0 2h-3.75C9.56 15 9 14.44 9 13.75V10a1 1 0 0 1 2 0v1.586L17.586 5H16a1 1 0 1 1 0-2h3.75c.69 0 1.25.56 1.25 1.25V8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bling-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.365 4.795A5.732 5.732 0 0 0 18.78 2.12a.241.241 0 0 1 .44 0 5.732 5.732 0 0 0 2.415 2.674c.16.09.16.32 0 .41A5.732 5.732 0 0 0 19.22 7.88a.241.241 0 0 1-.44 0 5.732 5.732 0 0 0-2.415-2.674.236.236 0 0 1 0-.41Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.923 2.614c-.355-.8-1.49-.8-1.846 0L9.035 4.96a11 11 0 0 1-4.659 5.12l-1.85 1.04a1.01 1.01 0 0 0 0 1.761l1.85 1.041a11 11 0 0 1 4.66 5.12l1.041 2.345c.355.8 1.49.8 1.846 0l1.042-2.345a11 11 0 0 1 4.659-5.12l1.85-1.04a1.01 1.01 0 0 0 0-1.761l-1.85-1.041a11 11 0 0 1-4.66-5.12l-1.041-2.345ZM5.04 12C7.714 10.496 9.756 8.262 11 5.462c1.244 2.8 3.286 5.034 5.96 6.538-2.67 1.502-4.713 3.73-5.96 6.538-1.244-2.8-3.286-5.034-5.96-6.538Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-paster-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.28 4.032a8 8 0 1 0 8.688 8.687 7 7 0 0 1-8.687-8.687Zm1.903.62 6.165 6.165a5 5 0 0 1-6.164-6.164ZM2 12C2 6.477 6.477 2 12 2c.242 0 .483.009.722.026a1.94 1.94 0 0 1 1.233.57l7.449 7.449c.316.316.536.747.57 1.233.017.239.026.48.026.722 0 5.523-4.477 10-10 10S2 17.523 2 12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bling-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.365 4.795A5.732 5.732 0 0 0 18.78 2.12a.241.241 0 0 1 .44 0 5.732 5.732 0 0 0 2.415 2.674c.16.09.16.32 0 .41A5.732 5.732 0 0 0 19.22 7.88a.241.241 0 0 1-.44 0 5.732 5.732 0 0 0-2.415-2.674.236.236 0 0 1 0-.41Zm-4.442-2.181c-.355-.8-1.49-.8-1.846 0L9.035 4.96a11 11 0 0 1-4.659 5.12l-1.85 1.04a1.01 1.01 0 0 0 0 1.761l1.85 1.041a11 11 0 0 1 4.66 5.12l1.041 2.345c.355.8 1.49.8 1.846 0l1.042-2.345a11 11 0 0 1 4.659-5.12l1.85-1.04a1.01 1.01 0 0 0 0-1.761l-1.85-1.041a11 11 0 0 1-4.66-5.12l-1.041-2.345Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-anticlockwise-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M18 3a1 1 0 1 1 0 2h-.995c.22.134.442.275.663.426 1.694 1.15 3.4 2.835 4.272 5.232a1 1 0 1 1-1.88.684c-.683-1.879-2.042-3.26-3.516-4.262-1.474-1.002-3.008-1.584-3.935-1.875-.735-.231-.801-.948-.76-1.233.04-.284.307-.972 1.095-.972H18ZM4 8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2H4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-clockwise-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6 3a1 1 0 1 0 0 2h.995c-.22.134-.442.275-.663.426-1.694 1.15-3.4 2.835-4.272 5.232a1 1 0 1 0 1.88.684c.683-1.879 2.042-3.26 3.516-4.262 1.474-1.002 3.008-1.584 3.935-1.875.735-.231.801-.948.761-1.233-.04-.284-.308-.972-1.096-.972H6Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M20 8a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h10Zm0 2H10v9h10v-9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-brightness-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 1.5A1.5 1.5 0 0 0 10.5 3v1a1.5 1.5 0 0 0 3 0V3A1.5 1.5 0 0 0 12 1.5Zm0 17a1.5 1.5 0 0 0-1.5 1.5v1a1.5 1.5 0 0 0 3 0v-1a1.5 1.5 0 0 0-1.5-1.5ZM1.5 12A1.5 1.5 0 0 0 3 13.5h1a1.5 1.5 0 0 0 0-3H3A1.5 1.5 0 0 0 1.5 12Zm17 0a1.5 1.5 0 0 0 1.5 1.5h1a1.5 1.5 0 0 0 0-3h-1a1.5 1.5 0 0 0-1.5 1.5ZM6.697 4.575a1.5 1.5 0 1 0-2.122 2.122l.707.707a1.5 1.5 0 1 0 2.122-2.122l-.707-.707Zm9.899 12.021a1.5 1.5 0 0 0 0 2.122l.707.707a1.5 1.5 0 0 0 2.122-2.122l-.707-.707a1.5 1.5 0 0 0-2.122 0Zm-12.021.707a1.5 1.5 0 1 0 2.122 2.122l.707-.707a1.5 1.5 0 1 0-2.122-2.122l-.707.707Zm12.021-9.899a1.5 1.5 0 0 0 2.122 0l.707-.707a1.5 1.5 0 1 0-2.122-2.122l-.707.707a1.5 1.5 0 0 0 0 2.122Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Zm-6 3a3 3 0 1 1 0-6v6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-palette-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 16.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2v.636L13.636 4a2 2 0 0 1 2.828 0L20 7.536a2 2 0 0 1 0 2.828L18.364 12H19a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm7 14V5H5v14h5Zm2 0h7v-5h-2.636L12 18.364V19Zm0-3.465 6.585-6.585-3.535-3.536L12 8.464v7.071Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-brightness-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 2a1 1 0 0 0-1 1v1a1 1 0 1 0 2 0V3a1 1 0 0 0-1-1Zm0 17a1 1 0 0 0-1 1v1a1 1 0 1 0 2 0v-1a1 1 0 0 0-1-1Zm-9-6a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2H3Zm16-1a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2h-1a1 1 0 0 0-1 1ZM4.929 4.929a1 1 0 0 1 1.414 0l.707.707A1 1 0 0 1 5.636 7.05l-.707-.707a1 1 0 0 1 0-1.414ZM16.95 16.95a1 1 0 0 0 0 1.414l.707.707a1 1 0 0 0 1.414-1.414l-.707-.707a1 1 0 0 0-1.414 0ZM4.929 19.071a1 1 0 0 1 0-1.414l.707-.707a1 1 0 1 1 1.414 1.414l-.707.707a1 1 0 0 1-1.414 0ZM16.95 7.05a1 1 0 0 0 1.414 0l.707-.707a1 1 0 0 0-1.414-1.414l-.707.707a1 1 0 0 0 0 1.414Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 12a6 6 0 1 1 12 0 6 6 0 0 1-12 0Zm6-4a4 4 0 1 0 0 8V8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-ruler-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5a2 2 0 0 0 2-2v-7h7a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm2 2v1a1 1 0 0 0 2 0V5h2v1a1 1 0 1 0 2 0V5h2v1a1 1 0 0 0 2 0V5h2v5h-7.5a1.5 1.5 0 0 0-1.5 1.5V19H5v-2h1a1 1 0 1 0 0-2H5v-2h1a1 1 0 1 0 0-2H5V9h1a1 1 0 0 0 0-2H5V5h2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-anticlockwise-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M18 3a1 1 0 1 1 0 2h-.995c.22.134.442.275.663.426 1.694 1.15 3.4 2.835 4.272 5.232a1 1 0 1 1-1.88.684c-.683-1.879-2.042-3.26-3.516-4.262-1.474-1.002-3.008-1.584-3.935-1.875-.735-.231-.801-.948-.76-1.233.04-.284.307-.972 1.095-.972H18Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2H4Zm0 2h10v9H4v-9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-color-filter-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6.42 10.21a6 6 0 1 1 11.16 0A6 6 0 1 1 12 20.472 6 6 0 1 1 6.42 10.21Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-mosaic-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 6h4v4h-4V6Zm-4 8H6v4h4v-4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm16 0h-6v6h6V5Zm0 8h-6v6h6v-6Zm-8-2V5H5v6h6Zm-6 2v6h6v-6H5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-clockwise-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6 3a1 1 0 1 0 0 2h.995c-.22.134-.442.275-.663.426-1.694 1.15-3.4 2.835-4.272 5.232a1 1 0 1 0 1.88.684c.683-1.879 2.042-3.26 3.516-4.262 1.474-1.002 3.008-1.584 3.935-1.875.735-.231.801-.948.761-1.233-.04-.284-.308-.972-1.096-.972H6Zm14 5a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h10Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-layout-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm16 0H5v3h14V5ZM5 19v-9h4v9H5Zm6 0h8v-9h-8v9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-layout-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3H3V5Zm6 5H3v9a2 2 0 0 0 2 2h4V10Zm2 11h8a2 2 0 0 0 2-2v-9H11v11Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-paint-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3h1a2 2 0 0 1 2 2v1.38a5 5 0 0 1-4.503 4.975l-5.497.55V14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2v-.095a2 2 0 0 1 1.801-1.99l5.498-.55A3 3 0 0 0 20 8.38V7h-1a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V5Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-ruler-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5a2 2 0 0 0 2-2v-7h7a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm3 4a1 1 0 0 1-1-1V5a1 1 0 0 1 2 0v1a1 1 0 0 1-1 1ZM4 8a1 1 0 0 1 1-1h1a1 1 0 0 1 0 2H5a1 1 0 0 1-1-1Zm0 4a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2H5Zm6-9a1 1 0 1 0 2 0V5a1 1 0 1 0-2 0v1Zm5 1a1 1 0 0 1-1-1V5a1 1 0 0 1 2 0v1a1 1 0 0 1-1 1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-quill-pen-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 16.973V21a1 1 0 1 0 2 0v-3c6.252 0 11.471-4.413 12.718-10.293a.997.997 0 0 0 .016-.309c.907-1.412 1.174-2.713 1.24-3.138.111-.722-.472-1.26-1.084-1.26H19C11.288 3 5.032 9.236 5 16.941v.032ZM7.041 16c.5-6.066 5.512-10.852 11.672-10.997-.51 1.375-1.876 3.632-5.456 4.527a1 1 0 1 0 .486 1.94 11.225 11.225 0 0 0 2.88-1.137A10.999 10.999 0 0 1 7.041 16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-palette-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm6 11.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13 21h6a2 2 0 0 0 2-2v-5a2 2 0 0 0-1.34-1.889L13 18.771V21Zm7.097-10.74A2 2 0 0 0 20 7.535L16.464 4a2 2 0 0 0-2.828 0L13 4.636v12.72l7.097-7.097Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-paint-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3h1a2 2 0 0 1 2 2v1.38a5 5 0 0 1-4.503 4.975l-5.497.55V14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2v-.095a2 2 0 0 1 1.801-1.99l5.498-.55A3 3 0 0 0 20 8.38V7h-1a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V5Zm9 11h-2v4h2v-4ZM6 4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-paster-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12.234 2.003A9.45 9.45 0 0 0 12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-.078 0-.156-.003-.234C20.764 12.504 19.461 13 18 13a7 7 0 0 1-7-7c0-1.464.495-2.763 1.234-3.997Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m21.245 9.885-7.13-7.13C13.505 3.775 13 4.772 13 6a5 5 0 0 0 5 5c1.228 0 2.225-.504 3.245-1.115Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-braces-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 2.5A3.5 3.5 0 0 0 3.5 6v4a.5.5 0 0 1-.5.5 1.5 1.5 0 0 0 0 3 .5.5 0 0 1 .5.5v4A3.5 3.5 0 0 0 7 21.5h1a1.5 1.5 0 0 0 0-3H7a.5.5 0 0 1-.5-.5v-4c0-.744-.232-1.433-.627-2a3.484 3.484 0 0 0 .627-2V6a.5.5 0 0 1 .5-.5h1a1.5 1.5 0 1 0 0-3H7Zm10 19a3.5 3.5 0 0 0 3.5-3.5v-4a.5.5 0 0 1 .5-.5 1.5 1.5 0 0 0 0-3 .5.5 0 0 1-.5-.5V6A3.5 3.5 0 0 0 17 2.5h-1a1.5 1.5 0 0 0 0 3h1a.5.5 0 0 1 .5.5v4c0 .744.232 1.433.627 2a3.484 3.484 0 0 0-.627 2v4a.5.5 0 0 1-.5.5h-1a1.5 1.5 0 0 0 0 3h1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-terminal-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m5.05 18.364 5.657-5.657a1 1 0 0 0 0-1.414L5.05 5.636A1 1 0 0 0 3.636 7.05L8.586 12l-4.95 4.95a1 1 0 0 0 1.414 1.414ZM12 17a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-directory-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6 3a3 3 0 0 0-1 5.83V17a3 3 0 0 0 3 3h7.17a3.001 3.001 0 1 0 0-2H8a1 1 0 0 1-1-1v-4h8.17a3.001 3.001 0 1 0 0-2H7V8.83A3.001 3.001 0 0 0 6 3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-terminal-box-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.05 15.536a1 1 0 0 1-1.414-1.415l2.121-2.12-2.12-2.122A1 1 0 1 1 9.05 8.465l2.829 2.828a1 1 0 0 1 0 1.414L9.05 15.536ZM14 14a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm16 0H5v14h14V5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-terminal-box-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm6.05 10.536a1 1 0 0 1-1.414-1.415l2.121-2.12-2.12-2.122A1 1 0 1 1 9.05 8.465l2.829 2.828a1 1 0 0 1 0 1.414L9.05 15.536ZM14 14a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-department-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 6a3 3 0 1 1 4 2.83V11h3a3 3 0 0 1 3 3v1.17a3.001 3.001 0 1 1-2 0V14a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v1.17a3.001 3.001 0 1 1-2 0V14a3 3 0 0 1 3-3h3V8.83A3.001 3.001 0 0 1 9 6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-braces-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 3a3 3 0 0 0-3 3v4a1 1 0 0 1-1 1 1 1 0 1 0 0 2 1 1 0 0 1 1 1v4a3 3 0 0 0 3 3h1a1 1 0 1 0 0-2H7a1 1 0 0 1-1-1v-4c0-.768-.289-1.47-.764-2 .475-.53.764-1.232.764-2V6a1 1 0 0 1 1-1h1a1 1 0 0 0 0-2H7Zm10 18a3 3 0 0 0 3-3v-4a1 1 0 0 1 1-1 1 1 0 1 0 0-2 1 1 0 0 1-1-1V6a3 3 0 0 0-3-3h-1a1 1 0 1 0 0 2h1a1 1 0 0 1 1 1v4c0 .768.289 1.47.764 2A2.989 2.989 0 0 0 18 14v4a1 1 0 0 1-1 1h-1a1 1 0 1 0 0 2h1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bug-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 3c2.356 0 4.44 1.58 5.708 4H6.292C7.56 4.58 9.644 3 12 3ZM4.667 6.455a1 1 0 0 0-1.334 1.49A13.04 13.04 0 0 0 5.368 9.44 12.625 12.625 0 0 0 5.009 12H3a1 1 0 1 0 0 2h2.086a11.84 11.84 0 0 0 .875 3.327 9.016 9.016 0 0 0-2.306 3.298 1 1 0 1 0 1.853.75 7.01 7.01 0 0 1 1.463-2.244C8.187 20.83 9.948 22 12 22s3.813-1.17 5.029-2.87a7.008 7.008 0 0 1 1.463 2.245 1 1 0 0 0 1.854-.75 9.018 9.018 0 0 0-2.306-3.298A11.85 11.85 0 0 0 18.914 14H21a1 1 0 1 0 0-2h-2.01a12.53 12.53 0 0 0-.358-2.561 13.035 13.035 0 0 0 2.035-1.494 1 1 0 1 0-1.334-1.49A11.028 11.028 0 0 1 17.11 8H6.89a11.028 11.028 0 0 1-2.224-1.545ZM13 13v6.845c.887-.277 1.729-.924 2.426-1.911C16.379 16.584 17 14.665 17 12.5c0-.88-.102-1.72-.29-2.5H7.29c-.187.78-.29 1.62-.29 2.5 0 2.165.621 4.083 1.574 5.434.697.987 1.539 1.634 2.426 1.911V13a1 1 0 1 1 2 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-code-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.476 3.63a1.5 1.5 0 0 1 1.217 1.737l-2.431 13.787a1.5 1.5 0 0 1-2.955-.52l2.431-13.788a1.5 1.5 0 0 1 1.738-1.217ZM7.56 6.697a1.5 1.5 0 0 1 0 2.121L4.38 12l3.182 3.182a1.5 1.5 0 1 1-2.122 2.121l-4.242-4.242a1.5 1.5 0 0 1 0-2.122L5.44 6.697a1.5 1.5 0 0 1 2.122 0Zm8.88 2.121a1.5 1.5 0 1 1 2.12-2.121l4.243 4.242a1.5 1.5 0 0 1 0 2.122l-4.242 4.242a1.5 1.5 0 1 1-2.122-2.121L19.621 12 16.44 8.818Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-git-pull-request-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M17 15.17a3.001 3.001 0 1 0 2 0V8a3 3 0 0 0-3-3h-2.207l.414-.414a1 1 0 1 0-1.414-1.414l-2.121 2.12a1 1 0 0 0 0 1.415l2.12 2.121a1 1 0 1 0 1.415-1.414L13.793 7H16a1 1 0 0 1 1 1v7.17ZM19 18a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM7 8.83a3.001 3.001 0 1 0-2 0v6.34a3.001 3.001 0 1 0 2 0V8.83ZM5 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm0 12a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-performance-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M15.466 7.741c-.278-.926-1.573-.97-1.913-.064l-1.998 5.327-1.099-3.297c-.284-.854-1.459-.937-1.861-.133L7.382 12H7a1 1 0 1 0 0 2h.994c.382 0 .732-.216.903-.558l.418-.835 1.227 3.682c.301.903 1.57.927 1.904.036l1.949-5.196.645 2.151c.128.428.521.72.967.72H17a1 1 0 1 0 0-2h-.256l-1.278-4.259Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm0 2h14v14H5V5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-performance-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm10.466 4.741c-.278-.926-1.573-.97-1.913-.064l-1.998 5.327-1.099-3.297c-.284-.854-1.459-.937-1.861-.133L7.382 12H7a1 1 0 1 0 0 2h.994c.382 0 .732-.216.903-.558l.418-.835 1.227 3.682c.301.903 1.57.927 1.904.036l1.949-5.196.645 2.151c.128.428.521.72.967.72H17a1 1 0 1 0 0-2h-.256l-1.278-4.259Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-directory-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 6a3.001 3.001 0 0 1-2 2.83V11h8.17a3.001 3.001 0 1 1 0 2H7v4a1 1 0 0 0 1 1h7.17a3.001 3.001 0 1 1 0 2H8a3 3 0 0 1-3-3V8.83A3.001 3.001 0 1 1 9 6ZM6 5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm11 14a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm1-6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-web-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6Zm2 11v-7h14v7a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1Zm1-9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bug-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M17.02 19.121c-1.053 1.47-2.453 2.479-4.02 2.783V13a1 1 0 1 0-2 0v8.904c-1.567-.305-2.967-1.313-4.02-2.783a7.008 7.008 0 0 0-1.472 2.254 1 1 0 1 1-1.853-.75 9.019 9.019 0 0 1 2.312-3.304A11.769 11.769 0 0 1 5.087 14H3a1 1 0 1 1 0-2h2.01c.037-.973.182-1.907.419-2.78A13.038 13.038 0 0 1 3.4 7.75a1 1 0 0 1 1.323-1.5C5.524 6.957 6.43 7.55 7.41 8h9.18a11.01 11.01 0 0 0 2.686-1.75 1 1 0 0 1 1.323 1.5 13.038 13.038 0 0 1-2.028 1.469 12.5 12.5 0 0 1 .42 2.781H21a1 1 0 1 1 0 2h-2.087a11.77 11.77 0 0 1-.88 3.321 9.021 9.021 0 0 1 2.313 3.304 1 1 0 0 1-1.854.75 7.008 7.008 0 0 0-1.472-2.254ZM12 3c2.356 0 4.44 1.58 5.708 4H6.292C7.56 4.58 9.644 3 12 3Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-code-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.39 4.121a1 1 0 0 1 .81 1.159l-2.43 13.787a1 1 0 1 1-1.97-.347l2.43-13.787a1 1 0 0 1 1.16-.812ZM7.207 7.05a1 1 0 0 1 0 1.414L3.672 12l3.535 3.535a1 1 0 1 1-1.414 1.415L1.55 12.707a1 1 0 0 1 0-1.414L5.793 7.05a1 1 0 0 1 1.414 0Zm9.586 1.414a1 1 0 0 1 1.414-1.414l4.243 4.243a1 1 0 0 1 0 1.414l-4.243 4.243a1 1 0 0 1-1.414-1.415L20.328 12l-3.535-3.536Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-cursor-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8.559 5.387 7.992 14.3l1.627-1.406a1.088 1.088 0 0 1 1.713.4l2.714 6.415.869-.37-2.587-6.181c-.289-.69.19-1.46.936-1.506l2.206-.136-6.911-6.13Zm-1.877-1.99a1.088 1.088 0 0 1 1.807-.746l9.951 8.827c.724.642.312 1.84-.655 1.9l-3.117.191 2.092 4.999a2 2 0 0 1-1.062 2.612l-.868.37a2 2 0 0 1-2.626-1.061l-2.226-5.262-2.323 2.007c-.73.63-1.858.07-1.797-.892l.824-12.946Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-cursor-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6.682 3.396a1.088 1.088 0 0 1 1.807-.745l9.951 8.827c.724.642.312 1.84-.655 1.9l-3.117.191 2.092 4.999a2 2 0 0 1-1.062 2.612l-.868.37a2 2 0 0 1-2.626-1.061l-2.226-5.262-2.323 2.007c-.73.63-1.858.07-1.797-.892l.824-12.946Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-git-compare-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m12.793 3.172-2.121 2.12a1 1 0 0 0 0 1.415l2.12 2.121a1 1 0 0 0 1.415-1.414L13.793 7H16a1 1 0 0 1 1 1v7.17a3.001 3.001 0 1 0 2 0V8a3 3 0 0 0-3-3h-2.207l.414-.414a1 1 0 0 0-1.414-1.414ZM6 3a3 3 0 0 0-1 5.83V16a3 3 0 0 0 3 3h2.207l-.414.414a1 1 0 0 0 1.414 1.414l2.121-2.12a1 1 0 0 0 0-1.415l-2.121-2.121a1 1 0 1 0-1.414 1.414l.414.414H8a1 1 0 0 1-1-1V8.83A3.001 3.001 0 0 0 6 3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-git-compare-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M17 15.17a3.001 3.001 0 1 0 2 0V8a3 3 0 0 0-3-3h-2.207l.414-.414a1 1 0 1 0-1.414-1.414l-2.121 2.12a1 1 0 0 0 0 1.415l2.12 2.121a1 1 0 1 0 1.415-1.414L13.793 7H16a1 1 0 0 1 1 1v7.17ZM19 18a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM7 8.83A3.001 3.001 0 0 0 6 3a3 3 0 0 0-1 5.83V16a3 3 0 0 0 3 3h2.207l-.414.414a1 1 0 0 0 1.414 1.414l2.121-2.12a1 1 0 0 0 0-1.415l-2.12-2.121a1 1 0 1 0-1.415 1.414l.414.414H8a1 1 0 0 1-1-1V8.83ZM5 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-git-commit-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 2a1 1 0 0 1 1 1v5.126a4.002 4.002 0 0 1 0 7.748V21a1 1 0 1 1-2 0v-5.126a4.002 4.002 0 0 1 0-7.748V3a1 1 0 0 1 1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-git-pull-request-close-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M17 15.17A3.001 3.001 0 0 0 18 21a3 3 0 0 0 1-5.83V11a1 1 0 1 0-2 0v4.17ZM19 18a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M19.414 8.828a1 1 0 1 0 1.414-1.414L19.414 6l1.414-1.414a1 1 0 1 0-1.414-1.414L18 4.586l-1.414-1.414a1 1 0 1 0-1.414 1.414L16.586 6l-1.414 1.414a1 1 0 0 0 1.414 1.414L18 7.414l1.414 1.414Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 8.83A3.001 3.001 0 0 0 6 3a3 3 0 0 0-1 5.83v6.34a3.001 3.001 0 1 0 2 0V8.83ZM5 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm0 12a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-web-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6Zm2 0h14v4H5V6Zm0 12v-6h14v6H5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-terminal-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m5.404 18.718 5.657-5.657a1.5 1.5 0 0 0 0-2.122L5.404 5.282a1.5 1.5 0 1 0-2.122 2.122L7.88 12l-4.597 4.596a1.5 1.5 0 1 0 2.122 2.122ZM12 16.5a1.5 1.5 0 0 0 0 3h8a1.5 1.5 0 0 0 0-3h-8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-git-pull-request-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m12.793 3.172-2.121 2.12a1 1 0 0 0 0 1.415l2.12 2.121a1 1 0 0 0 1.415-1.414L13.793 7H16a1 1 0 0 1 1 1v7.17a3.001 3.001 0 1 0 2 0V8a3 3 0 0 0-3-3h-2.207l.414-.414a1 1 0 0 0-1.414-1.414ZM6 3a3 3 0 0 0-1 5.83v6.34a3.001 3.001 0 1 0 2 0V8.83A3.001 3.001 0 0 0 6 3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-git-commit-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2a1 1 0 0 1 1 1v5.126a4.002 4.002 0 0 1 0 7.748V21a1 1 0 1 1-2 0v-5.126a4.002 4.002 0 0 1 0-7.748V3a1 1 0 0 1 1-1Zm0 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-department-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 5a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM9 6a3 3 0 1 1 4 2.83V11h3a3 3 0 0 1 3 3v1.17a3.001 3.001 0 1 1-2 0V14a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v1.17a3.001 3.001 0 1 1-2 0V14a3 3 0 0 1 3-3h3V8.83A3.001 3.001 0 0 1 9 6ZM5 18a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm13-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-git-pull-request-close-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M20.828 8.828a1 1 0 0 1-1.414 0L18 7.414l-1.414 1.414a1 1 0 1 1-1.414-1.414L16.585 6l-1.414-1.414a1 1 0 0 1 1.414-1.414L18 4.586l1.414-1.414a1 1 0 1 1 1.414 1.414L19.414 6l1.414 1.414a1 1 0 0 1 0 1.414ZM6 3a3 3 0 0 0-1 5.83v6.34a3.001 3.001 0 1 0 2 0V8.83A3.001 3.001 0 0 0 6 3Zm12 18a3 3 0 0 0 1-5.83V11a1 1 0 1 0-2 0v4.17A3.001 3.001 0 0 0 18 21Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-airplay-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2h-2.753l-3.62-5.064a2 2 0 0 0-3.254 0L6.753 19H4a2 2 0 0 1-2-2V6Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12.813 15.945a1 1 0 0 0-1.627 0l-3 4.196A1 1 0 0 0 9 21.723h6a1 1 0 0 0 .813-1.582l-3-4.196Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-airplay-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h4v-2H4V6h16v11h-4v2h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12.822 15.957a1.01 1.01 0 0 0-1.644 0l-2.98 4.168a1.01 1.01 0 0 0 .821 1.598h5.962c.821 0 1.3-.929.821-1.598l-2.98-4.168Zm-1.878 3.766L12 18.246l1.056 1.477h-2.112Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-alarm-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3.974 8.923A3.5 3.5 0 1 1 9.307 4.41 8.996 8.996 0 0 1 12 4c.938 0 1.842.143 2.693.41a3.5 3.5 0 1 1 5.333 4.513A8.962 8.962 0 0 1 21 13a8.977 8.977 0 0 1-2.936 6.65l.643.643a1 1 0 0 1-1.414 1.414l-.868-.868A8.96 8.96 0 0 1 12 22a8.96 8.96 0 0 1-4.425-1.161l-.868.868a1 1 0 0 1-1.414-1.414l.643-.643A8.977 8.977 0 0 1 3 13a8.96 8.96 0 0 1 .974-4.077ZM11 9a1 1 0 1 1 2 0v3.586l1.813 1.812a1 1 0 1 1-1.415 1.415l-2.105-2.106a.997.997 0 0 1-.293-.72V9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-ceiling-lamp-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 3a1 1 0 1 0-2 0v1.1l-8.175 8.176c-.636.636-.186 1.724.714 1.724H7.1a5.002 5.002 0 0 0 9.8 0h3.561c.9 0 1.35-1.088.714-1.724L13 4.1V3Zm1.83 11a3.001 3.001 0 0 1-5.66 0h5.66Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 20a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0v-1Zm5.95-3.05a1 1 0 0 0 0 1.414l.707.707a1 1 0 0 0 1.414-1.414l-.707-.707a1 1 0 0 0-1.414 0ZM4.929 19.071a1 1 0 0 1 0-1.414l.707-.707a1 1 0 1 1 1.414 1.414l-.707.707a1 1 0 0 1-1.414 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bulb-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 9.933C4 5.543 7.59 2 12 2s8 3.543 8 7.933c0 4.508-3.424 7.181-4.244 7.763-.29.204-.465.522-.637.833-.272.493-.537.971-1.226.971h-3.786c-.69 0-.954-.478-1.226-.97-.172-.312-.348-.63-.637-.834C7.424 17.114 4 14.44 4 9.933Zm9.707-3.64a1 1 0 0 1 0 1.414L12.414 9l1.286 1.286a1.01 1.01 0 0 1 0 1.428l-1.993 1.993a1 1 0 0 1-1.414-1.414L11.586 11 10.3 9.714a1.01 1.01 0 0 1 0-1.428l1.993-1.993a1 1 0 0 1 1.414 0ZM11 20a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-ceiling-lamp-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13 3a1 1 0 1 0-2 0v1.1l-8.175 8.176c-.636.636-.186 1.724.714 1.724H7.1a5.002 5.002 0 0 0 9.8 0h3.561c.9 0 1.35-1.088.714-1.724L13 4.1V3Zm1.83 11a3.001 3.001 0 0 1-5.66 0h5.66Zm-2.761-8.002L18.07 12H5.93l6.002-6.002a1.015 1.015 0 0 0 .138 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 20a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0v-1Zm5.95-3.05a1 1 0 0 0 0 1.414l.707.707a1 1 0 0 0 1.414-1.414l-.707-.707a1 1 0 0 0-1.414 0ZM4.929 19.071a1 1 0 0 1 0-1.414l.707-.707a1 1 0 1 1 1.414 1.414l-.707.707a1 1 0 0 1-1.414 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-cellphone-vibration-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12.707 2.808a2 2 0 0 1 2.829 0l5.656 5.656a2 2 0 0 1 0 2.829l-9.9 9.9a2 2 0 0 1-2.828 0l-5.656-5.658a2 2 0 0 1 0-2.828l9.9-9.9Zm-3.182 10.96a.5.5 0 0 0-.707 0l-.707.707a.5.5 0 0 0 0 .707l.707.707a.5.5 0 0 0 .707 0l.707-.707a.5.5 0 0 0 0-.707l-.707-.707Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8.464 2.808a1 1 0 0 1 0 1.414L4.222 8.464A1 1 0 1 1 2.808 7.05L7.05 2.808a1 1 0 0 1 1.414 0Zm12.728 12.728a1 1 0 0 1 0 1.414l-4.242 4.242a1 1 0 0 1-1.414-1.414l4.242-4.242a1 1 0 0 1 1.414 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-cellphone-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H7Zm4.5 14a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-computer-camera-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm-1.77 7.567a1 1 0 1 0-1.46-1.366C4.326 16.675 4 17.285 4 18c0 .752.36 1.386.838 1.87.474.48 1.11.867 1.818 1.17 1.419.608 3.309.96 5.344.96s3.925-.352 5.344-.96c.707-.303 1.344-.69 1.818-1.17.478-.485.838-1.118.838-1.87 0-.715-.326-1.325-.77-1.799a1 1 0 1 0-1.46 1.366c.201.216.23.36.23.433 0 .076-.032.232-.262.465-.234.238-.623.497-1.182.737C15.44 19.68 13.83 20 12 20s-3.44-.32-4.556-.798c-.56-.24-.948-.5-1.182-.737C6.032 18.232 6 18.076 6 18c0-.073.029-.217.23-.433Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-dashboaricon-app-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.293 12.707c-.153-.153-.207-.5.07-.778v.001c.382-.353.89-.617 1.373-.867.146-.076.29-.15.426-.226-.075.138-.15.281-.225.427-.25.483-.514.99-.867 1.373-.277.277-.624.223-.777.07Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2.05 11A10.003 10.003 0 0 1 11 2.05V4a1 1 0 0 0 2 0V2.05A10.003 10.003 0 0 1 21.95 11H20a1 1 0 0 0 0 2h1.95c-.501 5.053-4.765 9-9.95 9s-9.449-3.947-9.95-9H4a1 1 0 1 0 0-2H2.05Zm10.808-2.273c.738-.395 4.922-2.507 4.922-2.507s-2.378 4.68-2.508 4.922c-.515.963-1 2.122-1.787 2.909-.972.971-2.588 1.089-3.606.07-1.019-1.018-.901-2.634.07-3.606.787-.787 1.946-1.272 2.91-1.788Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-desk-lamp-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8.72 2a2 2 0 0 0-1.897 1.368L3.271 14.026A1.5 1.5 0 0 0 4.694 16H11v4H8a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-3v-4h6.306a1.5 1.5 0 0 0 1.423-1.974L17.177 3.368A2 2 0 0 0 15.279 2H8.721ZM5.388 14 8.721 4h6.558l3.334 10H5.386Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16 16a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-fridge-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H7Zm3 4a1 1 0 0 0-2 0v2a1 1 0 0 0 2 0V6Zm-1 9a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1Zm-1-4a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-computer-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h4v1H8a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-1v-1h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm8 15h-2v1h2v-1ZM5 5h14v11H5V5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-fridge-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 6a1 1 0 0 1 1 1v2a1 1 0 0 1-2 0V7a1 1 0 0 1 1-1Zm1 9a1 1 0 1 0-2 0v2a1 1 0 1 0 2 0v-2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H7Zm0 2h10v7H7V4Zm0 9v7h10v-7H7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-dashboaricon-app-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2Zm1 3v-.938a7.976 7.976 0 0 1 4.616 2.24c-.78.395-4.107 2.077-4.758 2.425-.963.516-2.122 1.001-2.909 1.788-.971.972-1.089 2.588-.07 3.606 1.018 1.019 2.634.901 3.606-.07.787-.787 1.272-1.946 1.788-2.91.114-.214 2.002-3.928 2.424-4.758A7.976 7.976 0 0 1 19.938 11H19a1 1 0 1 0 0 2h.938a8.001 8.001 0 0 1-15.876 0H5a1 1 0 1 0 0-2h-.938A8.004 8.004 0 0 1 11 4.062V5a1 1 0 1 0 2 0Zm-1.707 7.707c-.153-.153-.207-.5.07-.778v.001c.382-.353.89-.617 1.373-.867.146-.075.29-.15.426-.225-.075.137-.15.28-.225.426-.25.483-.514.99-.867 1.373-.277.277-.624.223-.777.07Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-laptop-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M5 4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H5ZM3 19a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2H3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-device-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2h-4a3 3 0 0 0-3 3v11H4a2 2 0 0 1-2-2V6Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16 8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-battery-charging-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12.857 7.515a1 1 0 0 0-1.714-1.03L8.152 11.47A1.01 1.01 0 0 0 9.018 13h2.216l-2.091 3.485a1 1 0 1 0 1.714 1.03l2.991-4.985a1.01 1.01 0 0 0-.866-1.53h-2.216l2.091-3.485Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14.829 6H18a2 2 0 0 1 2 2v1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2v1a2 2 0 0 1-2 2h-5.101l2.664-4.441c.986-1.642.197-3.65-1.405-4.325l.415-.69c.478-.799.543-1.73.255-2.544ZM7.171 18a2.994 2.994 0 0 1 .257-2.543l.414-.691c-1.602-.675-2.39-2.683-1.405-4.325L9.1 6H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h3.171Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-paicon-app-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm5.5 14a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-radar-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6.697 6.697a1.5 1.5 0 1 0-2.122-2.122A10.472 10.472 0 0 0 1.5 12c0 2.899 1.177 5.526 3.075 7.425a1.5 1.5 0 1 0 2.122-2.122A7.472 7.472 0 0 1 4.5 12a7.47 7.47 0 0 1 2.197-5.303Zm12.728-2.122a1.5 1.5 0 1 0-2.122 2.122A7.472 7.472 0 0 1 19.5 12a7.472 7.472 0 0 1-2.197 5.303 1.5 1.5 0 0 0 2.122 2.122A10.472 10.472 0 0 0 22.5 12c0-2.9-1.177-5.526-3.075-7.425Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.525 7.404a1.5 1.5 0 0 1 0 2.121A3.484 3.484 0 0 0 8.5 12c0 .988.408 1.879 1.068 2.517a1.5 1.5 0 1 1-2.085 2.157A6.485 6.485 0 0 1 5.5 12c0-1.795.73-3.422 1.904-4.596a1.5 1.5 0 0 1 2.121 0Zm4.993.023a1.5 1.5 0 0 1 2.12.02A6.484 6.484 0 0 1 18.5 12c0 1.794-.73 3.421-1.904 4.596a1.5 1.5 0 1 1-2.121-2.121A3.484 3.484 0 0 0 15.5 12c0-.955-.38-1.819-1.002-2.452a1.5 1.5 0 0 1 .02-2.12Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-microscope-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18.51 3.282a2 2 0 0 0-2.828 0l-.707.708a2.02 2.02 0 0 0-.171.194 2 2 0 0 0-1.95.513l-5.657 5.657a2 2 0 0 0 0 2.828l2.121 2.121a2 2 0 0 0 2.828 0l3.249-3.248A4.5 4.5 0 0 1 12.5 20H4a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2h-2.81A6.478 6.478 0 0 0 19 15.5a6.485 6.485 0 0 0-2.187-4.863l.99-.99a2 2 0 0 0 .513-1.951c.068-.052.133-.11.194-.17l.707-.708a2 2 0 0 0 0-2.828l-.707-.708Zm-1.414 2.829.707-.707-.707-.707-.707.707.707.707Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M5.075 13.89a1 1 0 0 1 1.415 0l2.12 2.12a1 1 0 1 1-1.413 1.415l-2.122-2.122a1 1 0 0 1 0-1.414Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chip-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 10h4v4h-4v-4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 2a1 1 0 0 1 1 1v1h4V3a1 1 0 1 1 2 0v1h1a3 3 0 0 1 3 3v1h1a1 1 0 1 1 0 2h-1v4h1a1 1 0 1 1 0 2h-1v1a3 3 0 0 1-3 3h-1v1a1 1 0 1 1-2 0v-1h-4v1a1 1 0 1 1-2 0v-1H7a3 3 0 0 1-3-3v-1H3a1 1 0 1 1 0-2h1v-4H3a1 1 0 0 1 0-2h1V7a3 3 0 0 1 3-3h1V3a1 1 0 0 1 1-1Zm7 8a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-alarm-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.634 2.97a1 1 0 0 1 1.367-.364 12.054 12.054 0 0 1 3.271 2.776 1 1 0 0 1-1.544 1.27 10.053 10.053 0 0 0-2.729-2.315 1 1 0 0 1-.365-1.366Zm-9.268 0A1 1 0 0 1 7 4.338a10.053 10.053 0 0 0-2.729 2.316 1 1 0 1 1-1.544-1.27 12.053 12.053 0 0 1 3.271-2.777 1 1 0 0 1 1.367.365Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 13a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm8-4a1 1 0 1 1 2 0v3.586l1.813 1.812a1 1 0 1 1-1.415 1.415l-2.105-2.106a.997.997 0 0 1-.293-.72V9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-battery-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-1a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2V8a2 2 0 0 0-2-2H4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-computer-camera-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 4a6 6 0 1 0 0 12 6 6 0 0 0 0-12Zm-8 6a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm-1.77 7.567a1 1 0 1 0-1.46-1.366C4.326 16.675 4 17.285 4 18c0 .752.36 1.386.838 1.87.474.48 1.11.867 1.818 1.17 1.419.608 3.309.96 5.344.96s3.925-.352 5.344-.96c.707-.303 1.344-.69 1.818-1.17.478-.485.838-1.118.838-1.87 0-.715-.326-1.325-.77-1.799a1 1 0 1 0-1.46 1.366c.201.216.23.36.23.433 0 .076-.032.232-.262.465-.234.238-.623.497-1.182.737C15.44 19.68 13.83 20 12 20s-3.44-.32-4.556-.798c-.56-.24-.948-.5-1.182-.737C6.032 18.232 6 18.076 6 18c0-.073.029-.217.23-.433Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bluetooth-off-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12.616 2.212A1.01 1.01 0 0 0 11 3.02v6.566L4.93 3.515a1 1 0 0 0-1.414 1.414L19.07 20.485a1 1 0 0 0 1.414-1.414l-6.962-6.963 4.97-3.728a1.1 1.1 0 0 0 0-1.76l-5.877-4.408Zm3.296 17.104L11 14.404v6.576c0 .832.95 1.308 1.616.808l3.296-2.472Zm-5.142-5.143-1.43-1.428L5.4 15.7a1 1 0 0 0 1.2 1.6l4.17-3.127Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-alarm-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M18 2.606a1 1 0 0 0-1 1.731 10.053 10.053 0 0 1 2.728 2.316 1 1 0 1 0 1.544-1.27 12.054 12.054 0 0 0-3.271-2.777ZM7 4.337a1 1 0 1 0-1-1.731 12.053 12.053 0 0 0-3.272 2.776 1 1 0 1 0 1.544 1.27 10.053 10.053 0 0 1 2.729-2.315ZM12 8a1 1 0 0 0-1 1v3.986a.997.997 0 0 0 .293.721l2.105 2.105a1 1 0 1 0 1.415-1.414L13 12.586V9a1 1 0 0 0-1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 13a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm9-7a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-tv-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.95 4.007a1 1 0 0 0-1.414-1.414l-3.89 3.889a.5.5 0 0 1-.707 0L8.464 4.007A1 1 0 0 0 7.05 5.42l1.414 1.414c.057.057.116.112.175.165H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-5.053a4.48 4.48 0 0 0 .174-.165l2.829-2.828Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-desk-lamp-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8.72 2a2 2 0 0 0-1.897 1.368L3.271 14.026A1.5 1.5 0 0 0 4.694 16H11v4H8a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-3v-4h6.306a1.5 1.5 0 0 0 1.423-1.974L17.177 3.368A2 2 0 0 0 15.279 2H8.721Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16 16a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-battery-charging-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12.514 6.143a1 1 0 0 1 .344 1.372L10.765 11h2.216c.785 0 1.27.857.866 1.53l-2.99 4.985a1 1 0 1 1-1.715-1.03L11.233 13H9.019a1.01 1.01 0 0 1-.866-1.53l2.99-4.984a1 1 0 0 1 1.373-.343Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 8a2 2 0 0 1 2-2h4a1 1 0 1 1 0 2H4v8h3a1 1 0 1 1 0 2H4a2 2 0 0 1-2-2V8Zm12-1a1 1 0 0 1 1-1h3a2 2 0 0 1 2 2v1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2v1a2 2 0 0 1-2 2h-4a1 1 0 1 1 0-2h4V8h-3a1 1 0 0 1-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-qrcode-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 3a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4Zm0 2H5v4h4V5Zm10-2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4Zm0 2h-4v4h4V5Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M15 14a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0v-6Zm3 0a1 1 0 1 0-2 0v1.5a1 1 0 1 0 2 0V14Zm-1 3.5a1 1 0 0 1 1 1V20a1 1 0 1 1-2 0v-1.5a1 1 0 0 1 1-1Zm4-3.5a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0v-6Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h4Zm0 2H5v4h4v-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bluetooth-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11 3.02c0-.832.95-1.307 1.616-.808l5.877 4.408a1.1 1.1 0 0 1 0 1.76L13.667 12l4.826 3.62a1.1 1.1 0 0 1 0 1.76l-5.877 4.408A1.01 1.01 0 0 1 11 20.98V14l-4.4 3.3a1 1 0 1 1-1.2-1.6l4.933-3.7L5.4 8.3a1 1 0 1 1 1.2-1.6L11 10V3.02Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bluetooth-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11 3.02c0-.832.95-1.307 1.616-.808l5.877 4.408a1.1 1.1 0 0 1 0 1.76L13.667 12l4.826 3.62a1.1 1.1 0 0 1 0 1.76l-5.877 4.408A1.01 1.01 0 0 1 11 20.98V14l-4.4 3.3a1 1 0 1 1-1.2-1.6l4.933-3.7L5.4 8.3a1 1 0 1 1 1.2-1.6L11 10V3.02ZM13 14l3.333 2.5L13 19v-5Zm0-4V5l3.333 2.5L13 10Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-computer-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2h-4v1h1a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h1v-1H5a2 2 0 0 1-2-2V5Zm10 14v-1h-2v1h2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flash-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.232 1.36c.632-.758 1.863-.24 1.763.742L14.289 9H20a1 1 0 0 1 .768 1.64l-10 12c-.632.758-1.863.24-1.763-.742L9.711 15H4a1 1 0 0 1-.768-1.64l10-12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-print-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M15 10a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.1 3A1.1 1.1 0 0 0 6 4.1V7H5a3 3 0 0 0-3 3v7a2 2 0 0 0 2 2h2v1.9A1.1 1.1 0 0 0 7.1 22h9.8a1.1 1.1 0 0 0 1.1-1.1V19h2a2 2 0 0 0 2-2v-7a3 3 0 0 0-3-3h-1V4.1A1.1 1.1 0 0 0 16.9 3H7.1ZM6 15.1V17H4v-7a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v7h-2v-1.9a1.1 1.1 0 0 0-1.1-1.1H7.1A1.1 1.1 0 0 0 6 15.1ZM16 7V5H8v2h8Zm-8 9v4h8v-4H8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chip-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M16 10a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4Zm-6 0h4v4h-4v-4Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 2a1 1 0 0 1 1 1v1h4V3a1 1 0 1 1 2 0v1h1a3 3 0 0 1 3 3v1h1a1 1 0 1 1 0 2h-1v4h1a1 1 0 1 1 0 2h-1v1a3 3 0 0 1-3 3h-1v1a1 1 0 1 1-2 0v-1h-4v1a1 1 0 1 1-2 0v-1H7a3 3 0 0 1-3-3v-1H3a1 1 0 1 1 0-2h1v-4H3a1 1 0 0 1 0-2h1V7a3 3 0 0 1 3-3h1V3a1 1 0 0 1 1-1Zm9 5a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-battery-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-1a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2V8a2 2 0 0 0-2-2H4Zm0 2h14v8H4V8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-paicon-app-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.5 16a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm0 2h12v16H6V4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-device-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10.268A2 2 0 0 0 16 21h4a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-1V6a2 2 0 0 0-2-2H4Zm13 4V6H4v12h10v-8a2 2 0 0 1 2-2h1Zm-1 2h4v9h-4v-9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flash-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.232 1.36c.632-.758 1.863-.24 1.763.742L14.289 9H20a1 1 0 0 1 .768 1.64l-10 12c-.632.758-1.863.24-1.763-.742L9.711 15H4a1 1 0 0 1-.768-1.64l10-12ZM6.135 13h5.348a.4.4 0 0 1 .398.44l-.553 5.405L17.865 11h-5.348a.4.4 0 0 1-.398-.44l.553-5.404L6.135 13Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-alarm-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11 9a1 1 0 1 1 2 0v3.586l1.813 1.812a1 1 0 0 1-1.415 1.415l-2.105-2.106a.997.997 0 0 1-.293-.72V9Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 6.5c0 .94.372 1.795.974 2.423A8.962 8.962 0 0 0 3 13a8.977 8.977 0 0 0 2.936 6.65l-.643.643a1 1 0 1 0 1.414 1.414l.868-.868A8.96 8.96 0 0 0 12 22a8.96 8.96 0 0 0 4.425-1.161l.868.868a1 1 0 0 0 1.414-1.414l-.643-.643A8.977 8.977 0 0 0 21 13a8.962 8.962 0 0 0-.974-4.077 3.5 3.5 0 1 0-5.333-4.513A8.996 8.996 0 0 0 12 4c-.938 0-1.842.143-2.693.41A3.5 3.5 0 0 0 3 6.5ZM6.5 5a1.5 1.5 0 0 0-1.348 2.16 9.044 9.044 0 0 1 2.22-1.88A1.494 1.494 0 0 0 6.5 5Zm10.128.28a9.043 9.043 0 0 1 2.22 1.88 1.5 1.5 0 0 0-2.22-1.88ZM5 13a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-print-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2H6V3Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 10a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v7a2 2 0 0 1-2 2h-1v-3a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3H4a2 2 0 0 1-2-2v-7Zm12 0a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8 16a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1H8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-cellphone-vibration-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.525 13.768a.5.5 0 0 0-.707 0l-.707.707a.5.5 0 0 0 0 .707l.707.707a.5.5 0 0 0 .707 0l.707-.707a.5.5 0 0 0 0-.707l-.707-.707Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M15.536 2.808a2 2 0 0 0-2.829 0l-9.9 9.9a2 2 0 0 0 0 2.828l5.657 5.656a2 2 0 0 0 2.829 0l9.9-9.9a2 2 0 0 0 0-2.828l-5.658-5.656ZM14.12 4.222l5.657 5.657-9.9 9.9-5.656-5.658 9.9-9.9Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8.464 2.808a1 1 0 0 1 0 1.414L4.222 8.464A1 1 0 1 1 2.808 7.05L7.05 2.808a1 1 0 0 1 1.414 0ZM21.192 16.95a1 1 0 0 0-1.414-1.414l-4.242 4.242a1 1 0 0 0 1.414 1.414l4.242-4.242Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-qrcode-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 3a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4Zm10 0a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4Zm-4 11a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0v-6Zm3 0a1 1 0 1 0-2 0v1.5a1 1 0 1 0 2 0V14Zm-1 3.5a1 1 0 0 1 1 1V20a1 1 0 1 1-2 0v-1.5a1 1 0 0 1 1-1Zm4-3.5a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0v-6ZM9 13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-plugin-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10 3a1 1 0 0 0-2 0v3H6a2 2 0 0 0-2 2v5a6 6 0 0 0 6 6h4a6 6 0 0 0 6-6V8a2 2 0 0 0-2-2h-2V3a1 1 0 1 0-2 0v3h-4V3ZM6 8h12v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 20a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H9Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-sandglass-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 2a2 2 0 0 0-2 2v1.86a5 5 0 0 0 2.226 4.16L10.197 12l-2.97 1.98A5 5 0 0 0 5 18.14V20a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-1.86a5 5 0 0 0-2.227-4.16L13.803 12l2.97-1.98A5 5 0 0 0 19 5.86V4a2 2 0 0 0-2-2H7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wifi-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 7.5c-2.9 0-5.523 1.174-7.425 3.075a1.5 1.5 0 1 1-2.121-2.12A13.462 13.462 0 0 1 12 4.5c3.727 0 7.105 1.513 9.546 3.954a1.5 1.5 0 1 1-2.122 2.121A10.462 10.462 0 0 0 12 7.5Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7.404 13.404A6.475 6.475 0 0 1 12 11.5c1.795 0 3.418.726 4.596 1.904a1.5 1.5 0 1 0 2.121-2.121A9.475 9.475 0 0 0 12 8.5c-2.623 0-5 1.065-6.718 2.783a1.5 1.5 0 1 0 2.122 2.12Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10.232 16.232A2.488 2.488 0 0 1 12 15.5c.69 0 1.314.278 1.768.732a1.5 1.5 0 1 0 2.121-2.121 5.488 5.488 0 0 0-3.89-1.611 5.488 5.488 0 0 0-3.888 1.61 1.5 1.5 0 1 0 2.121 2.122Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 16.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bulb-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.707 7.707a1 1 0 0 0-1.414-1.414L10.3 8.286a1.01 1.01 0 0 0 0 1.428L11.586 11l-1.293 1.293a1 1 0 1 0 1.414 1.414l1.993-1.993a1.01 1.01 0 0 0 0-1.428L12.414 9l1.293-1.293Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 9.933C4 5.543 7.59 2 12 2s8 3.543 8 7.933c0 4.508-3.424 7.181-4.244 7.763-.745.527-.737 1.804-1.863 1.804h-3.786c-1.126 0-1.118-1.277-1.863-1.804C7.424 17.114 4 14.44 4 9.933ZM12 4C8.677 4 6 6.665 6 9.933c0 3.464 2.67 5.614 3.4 6.13.504.357.8.934 1.135 1.437h2.93c.335-.503.631-1.08 1.135-1.436.73-.517 3.4-2.667 3.4-6.13C18 6.664 15.323 4 12 4Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 21a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-plugin-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 3a1 1 0 0 0-2 0v3H6a2 2 0 0 0-2 2v5a6 6 0 0 0 6 6h4a6 6 0 0 0 6-6V8a2 2 0 0 0-2-2h-2V3a1 1 0 1 0-2 0v3h-4V3ZM8 21a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-scan-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M5.5 5.5H9a1.5 1.5 0 1 0 0-3H5A2.5 2.5 0 0 0 2.5 5v3a1.5 1.5 0 1 0 3 0V5.5Zm0 13H9a1.5 1.5 0 0 1 0 3H5A2.5 2.5 0 0 1 2.5 19v-3a1.5 1.5 0 0 1 3 0v2.5Zm9.5-13h3.5V8a1.5 1.5 0 0 0 3 0V5A2.5 2.5 0 0 0 19 2.5h-4a1.5 1.5 0 0 0 0 3Zm3.5 13H15a1.5 1.5 0 0 0 0 3h4a2.5 2.5 0 0 0 2.5-2.5v-3a1.5 1.5 0 0 0-3 0v2.5ZM4 10.5a1.5 1.5 0 0 0 0 3h16a1.5 1.5 0 0 0 0-3H4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-radio-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M15 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.422 3.61a1 1 0 0 1 1.282-.598L19.66 7H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h9.813L8.02 4.89a1 1 0 0 1-.598-1.281ZM12 14a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm-5-2a1 1 0 0 0 0 2h1a1 1 0 1 0 0-2H7Zm0 3a1 1 0 0 0 0 2h3a1 1 0 1 0 0-2H7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-scan-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 4a8 8 0 1 0 6.32 3.094l-5.613 5.613a1 1 0 0 1-1.414-1.414l6.357-6.357a1.01 1.01 0 0 1 1.429 0A9.971 9.971 0 0 1 22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2c.962 0 1.894.136 2.777.391a1 1 0 0 1-.554 1.922A8.005 8.005 0 0 0 12 4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-scan-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 4.5a7.5 7.5 0 1 0 6.258 3.364L13.06 13.06a1.5 1.5 0 0 1-2.122-2.122l6.357-6.357a1.51 1.51 0 0 1 2.137.002A10.472 10.472 0 0 1 22.5 12c0 5.799-4.701 10.5-10.5 10.5S1.5 17.799 1.5 12 6.201 1.5 12 1.5c1.01 0 1.988.143 2.916.41a1.5 1.5 0 0 1-.832 2.883A7.504 7.504 0 0 0 12 4.5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-radio-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6 13a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm1 2a1 1 0 1 0 0 2h3a1 1 0 0 0 0-2H7Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 14a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M8.704 3.012a1 1 0 1 0-.684 1.88L13.813 7H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-.339L8.704 3.012ZM19.308 9a.996.996 0 0 0 .66 0H20v10H4V9h15.308Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-tv-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Zm4 15a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-scan-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 5a2 2 0 0 1 2-2h4a1 1 0 0 1 0 2H5v3a1 1 0 0 1-2 0V5Zm0 14a2 2 0 0 0 2 2h4a1 1 0 1 0 0-2H5v-3a1 1 0 1 0-2 0v3ZM19 3a2 2 0 0 1 2 2v3a1 1 0 1 1-2 0V5h-4a1 1 0 1 1 0-2h4Zm2 16a2 2 0 0 1-2 2h-4a1 1 0 1 1 0-2h4v-3a1 1 0 1 1 2 0v3ZM4 11a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2H4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-radar-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6.343 6.343A1 1 0 0 0 4.93 4.93 9.972 9.972 0 0 0 2 11.999a9.972 9.972 0 0 0 2.929 7.072 1 1 0 0 0 1.414-1.414A7.972 7.972 0 0 1 4 12a7.97 7.97 0 0 1 2.343-5.657Zm12.728-1.414a1 1 0 1 0-1.414 1.414A7.972 7.972 0 0 1 20 12a7.97 7.97 0 0 1-2.343 5.657 1 1 0 1 0 1.414 1.414A9.972 9.972 0 0 0 22 12a9.972 9.972 0 0 0-2.929-7.071Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.172 7.757a1 1 0 0 1 0 1.415A3.984 3.984 0 0 0 8 12c0 1.13.467 2.148 1.22 2.876a1 1 0 1 1-1.39 1.438A5.985 5.985 0 0 1 6 12c0-1.657.673-3.158 1.757-4.243a1 1 0 0 1 1.415 0Zm5.696.027a1 1 0 0 1 1.414.013A5.984 5.984 0 0 1 18 12a5.984 5.984 0 0 1-1.757 4.243 1 1 0 0 1-1.415-1.415A3.984 3.984 0 0 0 16 12c0-1.092-.436-2.08-1.145-2.802a1 1 0 0 1 .013-1.414ZM13.5 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-laptop-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H5Zm0 2h14v10H5V6Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 19a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2H3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bluetooth-off-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12.616 2.212A1.01 1.01 0 0 0 11 3.02v6.566L4.93 3.515a1 1 0 0 0-1.414 1.414L19.07 20.485a1 1 0 0 0 1.414-1.414l-6.962-6.963 4.97-3.728a1.1 1.1 0 0 0 0-1.76l-5.877-4.408ZM16.333 7.5 13 5v5l3.333-2.5Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m15.912 19.316-1.429-1.428L13 19v-2.596l-2-2v6.576c0 .832.95 1.308 1.616.808l3.296-2.472Zm-5.142-5.143-1.43-1.428L5.4 15.7a1 1 0 0 0 1.2 1.6l4.17-3.127Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-telescope-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14.211 14.287c.54.203 1.165.171 1.704-.14l5.196-3a2 2 0 0 0 .732-2.732l-2.5-4.33a2 2 0 0 0-2.732-.732l-5.196 3a2 2 0 0 0-1 1.751 2.018 2.018 0 0 0-.232.115l-4.33 2.5a2 2 0 0 0-1 1.751 2.02 2.02 0 0 0-.232.115l-1.732 1a2 2 0 0 0-.732 2.732l.5.866a2 2 0 0 0 2.732.732l1.732-1c.076-.044.147-.092.215-.143a2 2 0 0 0 2.017.01l1.817-1.05-2.09 4.874a1 1 0 0 0 1.84.788L13 16.539l2.08 4.855a1 1 0 1 0 1.84-.788l-2.709-6.319Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-telescope-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M14.211 14.287c.54.203 1.165.171 1.704-.14l5.196-3a2 2 0 0 0 .732-2.732l-2.5-4.33a2 2 0 0 0-2.732-.732l-5.196 3a2 2 0 0 0-1 1.751 2.016 2.016 0 0 0-.232.115l-4.33 2.5a2 2 0 0 0-1 1.751 2.02 2.02 0 0 0-.232.115l-1.732 1a2 2 0 0 0-.732 2.732l.5.866a2 2 0 0 0 2.732.732l1.732-1c.076-.044.147-.092.215-.143a2 2 0 0 0 2.017.01l1.817-1.05-2.09 4.874a1 1 0 0 0 1.84.788L13 16.539l2.08 4.855a1 1 0 1 0 1.84-.788l-2.709-6.319Zm-8.09.896-.5-.866-1.732 1 .5.866 1.732-1Zm2.232-.134-.496-.858-.004-.008-.5-.866-.005-.008-.495-.858 4.33-2.5 1.5 2.598-4.33 2.5Zm4.062-6.964 5.196-3 2.5 4.33-5.196 3-2.5-4.33Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wifi-off-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5.636 3.222a1 1 0 1 0-1.414 1.414l14.142 14.142a1 1 0 0 0 1.414-1.414l-6.18-6.181a6.985 6.985 0 0 1 3.352 1.867 1 1 0 0 0 1.414-1.414 8.975 8.975 0 0 0-6.932-2.618l-1.77-1.77A11.047 11.047 0 0 1 12 7c3.038 0 5.786 1.23 7.778 3.222a1 1 0 0 0 1.414-1.414A12.962 12.962 0 0 0 12 5a12.99 12.99 0 0 0-3.969.617L5.636 3.222ZM2.808 8.808a13.059 13.059 0 0 1 1.974-1.622L6.23 8.633a11.06 11.06 0 0 0-2.007 1.589 1 1 0 0 1-1.414-1.414Zm4.884 1.288a9.028 9.028 0 0 0-2.056 1.54A1 1 0 0 0 7.05 13.05a7.01 7.01 0 0 1 2.135-1.461l-1.493-1.493Zm4.979 4.98-1.918-1.919a4.997 4.997 0 0 0-2.289 1.307A1 1 0 1 0 9.88 15.88a2.987 2.987 0 0 1 2.792-.804ZM13 18a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wifi-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 7a10.96 10.96 0 0 0-7.778 3.222 1 1 0 0 1-1.414-1.414A12.962 12.962 0 0 1 12 5c3.59 0 6.84 1.456 9.192 3.808a1 1 0 0 1-1.414 1.414A10.962 10.962 0 0 0 12 7Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7.05 13.05A6.975 6.975 0 0 1 12 11c1.933 0 3.682.782 4.95 2.05a1 1 0 0 0 1.414-1.414A8.975 8.975 0 0 0 12 9a8.975 8.975 0 0 0-6.364 2.636A1 1 0 0 0 7.05 13.05Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9.879 15.879a2.987 2.987 0 0 1 2.12-.879c.83 0 1.578.335 2.122.879a1 1 0 0 0 1.415-1.415A4.987 4.987 0 0 0 12 13c-1.38 0-2.632.56-3.536 1.464A1 1 0 1 0 9.88 15.88ZM12 19a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wifi-off-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path fill="currentColor" d="M5.99 2.868A1.5 1.5 0 0 0 3.868 4.99L18.01 19.132a1.5 1.5 0 0 0 2.122-2.122l-4.144-4.143c.214.166.417.345.608.537a1.5 1.5 0 1 0 2.121-2.121 9.475 9.475 0 0 0-7.088-2.776L10.7 7.58c.425-.052.859-.079 1.299-.079 2.9 0 5.523 1.174 7.424 3.075a1.5 1.5 0 0 0 2.122-2.12A13.463 13.463 0 0 0 12 4.5a13.5 13.5 0 0 0-3.828.55L5.99 2.869ZM2.454 8.454c.53-.53 1.105-1.017 1.718-1.454l2.16 2.16c-.636.408-1.225.883-1.757 1.415a1.5 1.5 0 1 1-2.121-2.12Zm4.603 1.432a9.533 9.533 0 0 0-1.775 1.397 1.5 1.5 0 1 0 2.122 2.12A6.514 6.514 0 0 1 9.27 12.1L7.057 9.886Zm5.746 5.745-2.77-2.769a5.508 5.508 0 0 0-1.922 1.249 1.5 1.5 0 1 0 2.121 2.121A2.488 2.488 0 0 1 12 15.5c.281 0 .551.046.803.131ZM10.5 18a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z" clip-rule="evenodd" fill-rule="evenodd" data-follow-fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-microscope-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18.51 3.282a2 2 0 0 0-2.828 0l-.707.708a2.018 2.018 0 0 0-.17.194 2 2 0 0 0-1.951.513l-5.657 5.657a2 2 0 0 0 0 2.828l2.121 2.121a2 2 0 0 0 2.829 0l3.248-3.248A4.5 4.5 0 0 1 12.5 20H4a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2h-2.81A6.478 6.478 0 0 0 19 15.5a6.486 6.486 0 0 0-2.187-4.863l.99-.99a2 2 0 0 0 .513-1.951c.068-.052.133-.11.195-.17l.707-.708a2 2 0 0 0 0-2.828l-.707-.708Zm-1.414 2.829.707-.707-.707-.707-.707.707.707.707Zm-2.828 0L8.61 11.768l2.121 2.121 5.657-5.657-2.121-2.121Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M5.075 13.889a1 1 0 0 1 1.415 0l2.12 2.121a1 1 0 1 1-1.414 1.415l-2.122-2.122a1 1 0 0 1 0-1.414Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-radar-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 2a1 1 0 1 0 0 2 4 4 0 0 1 4 4 1 1 0 1 0 2 0 6 6 0 0 0-6-6Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5.269 4.026c.592-.667 1.577-.625 2.15-.053l4.847 4.847.087-.087a1 1 0 0 1 1.414 1.414l-.087.087 4.347 4.348c.572.572.614 1.557-.053 2.15a8.97 8.97 0 0 1-4.807 2.193l.98 1.318A1.1 1.1 0 0 1 13.266 22h-6.58a1.1 1.1 0 0 1-1.017-1.518l1.253-3.051A8.99 8.99 0 0 1 3 10a8.97 8.97 0 0 1 2.269-5.974ZM10.655 18.9a8.933 8.933 0 0 1-1.96-.526L8.028 20h3.446l-.819-1.1Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12.95 5.864a1 1 0 0 1 1.158-.81 3.5 3.5 0 0 1 2.858 2.959 1 1 0 1 1-1.98.278 1.5 1.5 0 0 0-1.226-1.268 1 1 0 0 1-.81-1.159Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-sandglass-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 2a2 2 0 0 0-2 2v1.86a5 5 0 0 0 2.226 4.16L10.197 12l-2.97 1.98A5 5 0 0 0 5 18.14V20a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-1.86a5 5 0 0 0-2.227-4.16L13.803 12l2.97-1.98A5 5 0 0 0 19 5.86V4a2 2 0 0 0-2-2H7Zm5 8.798 3.664-2.443A3 3 0 0 0 17 5.86V4H7v1.86a3 3 0 0 0 1.336 2.495L12 10.798Zm0 2.404-3.664 2.443A3 3 0 0 0 7 18.14V20h10v-1.86a3 3 0 0 0-1.336-2.495L12 13.202Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-tv-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Zm0 2h16v10H4V6Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8 19a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-tv-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M16.95 4.007a1 1 0 0 0-1.414-1.414l-3.89 3.889a.5.5 0 0 1-.707 0L8.464 4.007A1 1 0 0 0 7.05 5.42l1.414 1.414c.057.057.116.112.175.165H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-5.053a3.86 3.86 0 0 0 .174-.165l2.829-2.828ZM5 9h14v10H5V9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-radar-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 2a1 1 0 1 0 0 2 4 4 0 0 1 4 4 1 1 0 1 0 2 0 6 6 0 0 0-6-6Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12.266 8.82 7.418 3.973c-.572-.572-1.557-.614-2.15.053A8.97 8.97 0 0 0 3 10a8.99 8.99 0 0 0 3.92 7.43l-1.252 3.052A1.1 1.1 0 0 0 6.685 22h6.58a1.1 1.1 0 0 0 .883-1.757l-.981-1.318a8.97 8.97 0 0 0 4.807-2.194c.667-.592.625-1.577.053-2.15l-4.347-4.347.087-.087a1 1 0 0 0-1.414-1.414l-.087.087ZM6.407 5.79a7 7 0 0 0 9.803 9.803l-3.944-3.944-1.559 1.558a1 1 0 0 1-1.414-1.414l1.558-1.559L6.407 5.79Zm2.288 12.584a8.933 8.933 0 0 0 1.96.526l.819 1.1H8.028l.667-1.626Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12.95 5.864a1 1 0 0 1 1.158-.81 3.5 3.5 0 0 1 2.858 2.959 1 1 0 1 1-1.98.278 1.5 1.5 0 0 0-1.226-1.268 1 1 0 0 1-.81-1.159Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-cellphone-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.5 16a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H7Zm0 2h10v16H7V4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-tablicon-app-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm8 2h6v3h-6V5Zm0 5h6v4h-6v-4Zm-2 4v-4H5v4h6Zm-6 2h6v3H5v-3Zm8 0h6v3h-6v-3ZM11 5v3H5V5h6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-edit-3-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M16.724 3.03a2 2 0 0 0-2.828 0L3.582 13.344a2 2 0 0 0-.586 1.414v5.233c0 .557.453 1.01 1.01 1.01L20 21a1 1 0 1 0 0-2h-7.932l8.899-8.899a2 2 0 0 0 0-2.828L16.724 3.03ZM9.24 19 19.553 8.687 15.31 4.444 4.996 14.758V19H9.24Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-tablicon-app-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a2 2 0 0 0-2 2v3h8V3H5Zm8 0v5h8V5a2 2 0 0 0-2-2h-6Zm8 7h-8v4h8v-4Zm0 6h-8v5h6a2 2 0 0 0 2-2v-3Zm-10 5v-5H3v3a2 2 0 0 0 2 2h6Zm-8-7h8v-4H3v4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-edit-3-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.724 3.03a2 2 0 0 0-2.828 0L3.582 13.344a2 2 0 0 0-.586 1.414v5.233c0 .558.453 1.01 1.01 1.01L20 21a1 1 0 1 0 0-2h-7.932l8.899-8.899a2 2 0 0 0 0-2.828L16.724 3.03Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-desk-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 6a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2v12a1 1 0 1 1-2 0v-2h-3.5a1.5 1.5 0 0 1-1.5-1.5V11H5v8a1 1 0 1 1-2 0V7a1 1 0 0 1-1-1Zm17 9v-4h-3v4h3Zm0-6V7h-3v2h3Zm-5 0H5V7h9v2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flask-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4.139 3a1.1 1.1 0 0 0-1.044 1.448L4 7.162V18a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V4.5A1.5 1.5 0 0 0 18.5 3H4.139ZM6 8h4a1 1 0 1 1 0 2H6V8Zm0 3h4a1 1 0 1 1 0 2H6v-2Zm0 5v-2h4a1 1 0 1 1 0 2H6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-book-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 7a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2h-4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 5a3 3 0 0 1 3-3h11a2 2 0 0 1 2 2v12.99c0 .168-.038.322-.113.472l-.545 1.09a1 1 0 0 0 0 .895l.543 1.088A1 1 0 0 1 19 22H7a3 3 0 0 1-3-3V5Zm13.408 13a3 3 0 0 0 0 2H7a1 1 0 1 1 0-2h10.408ZM7 16c-.35 0-.687.06-1 .17V5a1 1 0 0 1 1-1h11v12H7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-mortarboard-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2.278 8.994a1.1 1.1 0 0 1 0-1.988l9.08-4.294a1.5 1.5 0 0 1 1.283 0l9.08 4.294c.734.346.827 1.302.279 1.803v4.19a1 1 0 1 1-2 0V9.81l-1 .472V14a7 7 0 1 1-14 0v-3.72L2.278 8.994ZM17 9h.031l2.115-1L12 4.62 4.854 8 6.97 9H7v.015l5 2.364 5-2.364V9Zm-5.641 4.288L7 11.227V14a5 5 0 1 0 10 0v-2.773l-4.359 2.061a1.5 1.5 0 0 1-1.282 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bookmark-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v16.028c0 1.22-1.38 1.93-2.372 1.221L12 18.229l-5.628 4.02c-.993.71-2.372 0-2.372-1.22V5Zm3-1a1 1 0 0 0-1 1v15.057l5.128-3.663a1.5 1.5 0 0 1 1.744 0L18 20.057V5a1 1 0 0 0-1-1H7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-book-5-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 4a2 2 0 0 1 2-2h2c.364 0 .706.097 1 .268A1.99 1.99 0 0 1 9 2h2c.727 0 1.364.388 1.714.969.21-.168.456-.296.732-.37l1.932-.517a2 2 0 0 1 2.45 1.414l4.14 15.455a2 2 0 0 1-1.414 2.45l-1.932.517a2 2 0 0 1-2.45-1.414L13 8.663V20a2 2 0 0 1-2 2H9a1.99 1.99 0 0 1-1-.268A1.99 1.99 0 0 1 7 22H5a2 2 0 0 1-2-2V4Zm2 0h2v16H5V4Zm6 16H9V4h2v16Zm2.963-15.469 1.932-.517 4.142 15.455-1.932.517-4.142-15.455Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-mortarboard-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2.279 8.994a1.1 1.1 0 0 1 0-1.988l9.08-4.294a1.5 1.5 0 0 1 1.282 0l9.08 4.294c.734.346.827 1.302.279 1.803v4.19a1 1 0 1 1-2 0V9.81l-7.359 3.48a1.5 1.5 0 0 1-1.282 0l-9.08-4.295Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M5 14v-1.72l6.359 3.007a1.5 1.5 0 0 0 1.282 0L19 12.281V14a7 7 0 1 1-14 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-book-4-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13.964 6.914a1 1 0 1 0-.928 1.772l2.1 1.1a1 1 0 1 0 .928-1.772l-2.1-1.1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M22.32 9.28a1.51 1.51 0 0 0-.764-1.775l-7.444-3.76a1.499 1.499 0 0 0-1.47.065c-1.474.92-9.664 6.034-10.711 6.788-.927.667-1.26 1.88-1.265 2.85-.005.957.313 2.207 1.332 2.822 1.067.645 6.692 3.401 7.901 3.993a1.492 1.492 0 0 0 1.457-.082l10.284-6.51c.666-.421.844-1.232.587-1.87-.255-.632-.299-1.19.092-2.521Zm-2.863-.594-5.995-3.03c-1.56.974-6.458 4.036-8.958 5.641l6.026 3.04 8.927-5.651ZM2.8 12.678a2.255 2.255 0 0 0-.134.78c-.003.672.237 1.023.365 1.1.71.428 3.848 1.99 5.98 3.04-.008-.1-.013-.2-.014-.302a5.304 5.304 0 0 1 .18-1.401L2.8 12.678Zm17.442-.489-9.148 5.79a3.265 3.265 0 0 1-.097-.713c-.004-.272.034-.565.144-.973.075-.032.149-.07.219-.114l8.673-5.49a4.35 4.35 0 0 0 .209 1.5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-book-5-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 4a2 2 0 0 1 2-2h2c.364 0 .706.097 1 .268A1.99 1.99 0 0 1 9 2h2c.727 0 1.364.388 1.714.969.21-.168.456-.296.732-.37l1.932-.517a2 2 0 0 1 2.45 1.414l4.14 15.455a2 2 0 0 1-1.414 2.45l-1.932.517a2 2 0 0 1-2.45-1.414L13 8.663V20a2 2 0 0 1-2 2H9a1.99 1.99 0 0 1-1-.268A1.99 1.99 0 0 1 7 22H5a2 2 0 0 1-2-2V4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-globe-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M18.667 1.547a1 1 0 1 0-1.334 1.49A8 8 0 0 1 12.011 17h-.022a7.992 7.992 0 0 1-6.656-3.577 1 1 0 0 0-1.666 1.107A9.997 9.997 0 0 0 11 18.95V20H8a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-3v-1.05c5.053-.501 9-4.765 9-9.95a9.978 9.978 0 0 0-3.333-7.453Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2a7 7 0 1 0 0 14 7 7 0 0 0 0-14ZM7 9a5 5 0 1 1 10 0A5 5 0 0 1 7 9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flask-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4.139 3a1.1 1.1 0 0 0-1.044 1.448L4 7.162V18a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V4.5A1.5 1.5 0 0 0 18.5 3H4.139ZM6 16h4a1 1 0 1 0 0-2H6v-1h4a1 1 0 1 0 0-2H6v-1h4a1 1 0 1 0 0-2H6v-.838a2 2 0 0 0-.103-.632L5.387 5H18v13a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-book-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 5a3 3 0 0 1 3-3h11a2 2 0 0 1 2 2v12.99c0 .168-.038.322-.113.472l-.545 1.09a1 1 0 0 0 0 .895l.543 1.088A1 1 0 0 1 19 22H7a3 3 0 0 1-3-3V5Zm3 13h10.408a3 3 0 0 0 0 2H7a1 1 0 1 1 0-2Zm3-11a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2h-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-book-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 5a2 2 0 0 1 2-2h6c.768 0 1.47.289 2 .764A2.989 2.989 0 0 1 14 3h6a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-7a1 1 0 1 1-2 0H4a2 2 0 0 1-2-2V5Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-bookmark-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v16.028c0 1.22-1.38 1.93-2.372 1.221L12 18.229l-5.628 4.02c-.993.71-2.372 0-2.372-1.22V5Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-book-4-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M21.556 7.505a1.51 1.51 0 0 1 .763 1.775c-.39 1.331-.347 1.89-.092 2.521.257.638.079 1.449-.587 1.87l-10.284 6.51c-.431.273-.98.315-1.457.082-1.209-.591-6.834-3.348-7.901-3.993C.978 15.655.66 14.405.666 13.45c.005-.971.338-2.184 1.265-2.85 1.048-.755 9.237-5.869 10.711-6.789a1.498 1.498 0 0 1 1.47-.066l7.444 3.761Zm-1.523 3.183-8.673 5.49c-.07.045-.144.083-.219.115-.11.408-.148.701-.144.973.003.217.033.439.097.714l9.148-5.79a4.331 4.331 0 0 1-.209-1.502ZM9.178 15.895 2.8 12.678a2.254 2.254 0 0 0-.134.78c-.003.672.237 1.023.365 1.1.71.428 3.848 1.99 5.98 3.04a4.577 4.577 0 0 1-.014-.302 5.303 5.303 0 0 1 .18-1.4Zm3.436-8.559a1 1 0 0 1 1.35-.422l2.1 1.1a1 1 0 0 1-.928 1.772l-2.1-1.1a1 1 0 0 1-.422-1.35Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-book-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 5a2 2 0 0 1 2-2h6c.768 0 1.47.289 2 .764A2.989 2.989 0 0 1 14 3h6a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-7a1 1 0 1 1-2 0H4a2 2 0 0 1-2-2V5Zm9 13H4V5h6a1 1 0 0 1 1 1v12Zm2 0h7V5h-6a1 1 0 0 0-1 1v12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flask-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9 4H8a1 1 0 1 1 0-2h8a1 1 0 1 1 0 2h-1v5.631l5.227 7.681c1.355 1.992-.072 4.688-2.48 4.688H6.253c-2.41 0-3.836-2.696-2.48-4.688L9 9.632V4Zm4 0h-2v5.631a2 2 0 0 1-.347 1.125l-5.226 7.681A1 1 0 0 0 6.254 20h11.492a1 1 0 0 0 .827-1.563l-5.227-7.68A2 2 0 0 1 13 9.63V4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-science-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M13.909 18.29c.359.163.706.297 1.039.403 1.698.536 2.816.27 3.416-.33.6-.6.865-1.718.329-3.415a9.115 9.115 0 0 0-.403-1.04 22.78 22.78 0 0 1-2.047 2.335 22.791 22.791 0 0 1-2.334 2.046ZM12 17.2a19.75 19.75 0 0 0 2.829-2.372A19.752 19.752 0 0 0 17.198 12a19.758 19.758 0 0 0-2.37-2.829A19.748 19.748 0 0 0 12 6.801a19.749 19.749 0 0 0-2.828 2.37A19.751 19.751 0 0 0 6.8 12a19.749 19.749 0 0 0 2.372 2.828A19.82 19.82 0 0 0 12 17.2Zm-6.29-3.291c.59.778 1.274 1.56 2.047 2.333a22.774 22.774 0 0 0 2.334 2.047 9.098 9.098 0 0 1-1.039.404c-1.698.536-2.816.27-3.416-.33-.6-.599-.865-1.718-.329-3.415.105-.334.24-.68.404-1.04Zm-1.266-1.91A12.26 12.26 0 0 0 3.4 14.346c-.645 2.043-.53 4.08.822 5.433 1.353 1.353 3.39 1.467 5.433.822A12.262 12.262 0 0 0 12 19.555c.803.457 1.59.806 2.345 1.045 2.044.645 4.08.53 5.433-.822 1.353-1.353 1.468-3.39.822-5.433A12.26 12.26 0 0 0 19.556 12c.456-.803.805-1.59 1.044-2.345.646-2.044.531-4.08-.822-5.433-1.352-1.353-3.39-1.468-5.433-.822A12.26 12.26 0 0 0 12 4.444 12.26 12.26 0 0 0 9.655 3.4c-2.043-.646-4.08-.531-5.433.822-1.353 1.352-1.467 3.39-.822 5.433.239.756.588 1.542 1.044 2.345Zm1.267-1.908c.59-.778 1.273-1.56 2.046-2.334a22.776 22.776 0 0 1 2.334-2.047 9.11 9.11 0 0 0-1.039-.403c-1.698-.537-2.816-.271-3.416.329-.6.6-.865 1.718-.329 3.416.105.333.24.68.404 1.039Zm8.198-4.38a9.111 9.111 0 0 1 1.039-.404c1.698-.536 2.816-.27 3.416.329.6.6.865 1.718.329 3.416-.105.333-.24.68-.403 1.039a22.78 22.78 0 0 0-2.047-2.334 22.783 22.783 0 0 0-2.334-2.047ZM13.5 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-desk-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 6a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2v12a1 1 0 1 1-2 0v-2h-3.5a1.5 1.5 0 0 1-1.5-1.5V11H5v8a1 1 0 1 1-2 0V7a1 1 0 0 1-1-1Zm14 1h3v2h-3V7Zm3 5h-3v2h3v-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-globe-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18.667 1.547a1 1 0 1 0-1.334 1.49A8 8 0 0 1 12.011 17h-.022a7.992 7.992 0 0 1-6.656-3.577 1 1 0 0 0-1.666 1.107A9.997 9.997 0 0 0 11 18.95V20H8a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-3v-1.05c5.053-.501 9-4.765 9-9.95a9.978 9.978 0 0 0-3.333-7.453ZM12 2a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-flask-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M15 9.631V4h1a1 1 0 1 0 0-2H8a1 1 0 0 0 0 2h1v5.631l-5.227 7.681C2.418 19.304 3.845 22 6.253 22h11.493c2.41 0 3.836-2.696 2.48-4.688L15 9.632Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-science-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M14.345 3.4c-.756.239-1.542.588-2.345 1.044A12.26 12.26 0 0 0 9.655 3.4c-2.043-.645-4.08-.53-5.433.822-1.353 1.353-1.467 3.39-.822 5.433.239.756.588 1.542 1.044 2.345-.456.803-.805 1.59-1.044 2.345-.645 2.043-.53 4.08.822 5.433 1.353 1.353 3.39 1.468 5.433.822A12.258 12.258 0 0 0 12 19.556c.803.456 1.59.805 2.345 1.044 2.044.646 4.08.531 5.433-.822 1.353-1.353 1.468-3.39.822-5.433A12.26 12.26 0 0 0 19.556 12 12.26 12.26 0 0 0 20.6 9.655c.646-2.044.531-4.08-.822-5.433-1.352-1.353-3.39-1.468-5.433-.822Zm.603 1.907a9.11 9.11 0 0 0-1.04.404 22.7 22.7 0 0 1 2.335 2.046 22.787 22.787 0 0 1 2.047 2.334c.164-.359.298-.706.403-1.039.537-1.698.271-2.816-.329-3.416-.6-.6-1.718-.865-3.416-.329Zm-9.64 3.745c.104.333.239.68.403 1.04.59-.78 1.273-1.561 2.047-2.335a22.777 22.777 0 0 1 2.333-2.046 9.11 9.11 0 0 0-1.039-.404c-1.697-.536-2.816-.27-3.416.33-.6.599-.865 1.717-.329 3.415Zm0 5.896c.104-.333.239-.68.403-1.04.59.78 1.273 1.561 2.047 2.335a22.771 22.771 0 0 0 2.333 2.046 9.094 9.094 0 0 1-1.039.404c-1.697.536-2.816.27-3.416-.33-.6-.599-.865-1.718-.329-3.415Zm9.64 3.745a9.137 9.137 0 0 1-1.04-.404 22.7 22.7 0 0 0 2.335-2.046 22.78 22.78 0 0 0 2.047-2.334 9.1 9.1 0 0 1 .403 1.039c.537 1.698.271 2.816-.329 3.416-.6.6-1.718.865-3.416.329ZM12 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-attachment-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18.718 18.718a4.5 4.5 0 0 0 0-6.364l-7.072-7.072a1.5 1.5 0 1 1 2.122-2.12l7.07 7.07A7.5 7.5 0 0 1 10.233 20.84l-8.485-8.485a5.5 5.5 0 1 1 7.778-7.779l8.132 8.132a3.5 3.5 0 0 1-4.95 4.95l-7.425-7.425a1.5 1.5 0 1 1 2.122-2.121l7.424 7.425a.5.5 0 1 0 .708-.708L7.404 6.697a2.5 2.5 0 0 0-3.536 3.535l8.486 8.486a4.5 4.5 0 0 0 6.364 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-box-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 14a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 3a2 2 0 0 0-2 2v4h1v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V9h1V5a2 2 0 0 0-2-2H4Zm15 6H5v10h14V9Zm1-2V5H4v2h16Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-box-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" clip-rule="evenodd" d="M7.566 3a2 2 0 0 0-1.715.971l-2.423 4.04A3 3 0 0 0 3 9.553V19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V9.554a3 3 0 0 0-.427-1.544l-2.424-4.039A2 2 0 0 0 16.434 3H7.566ZM13 5h3.434l2.4 4H13V5Zm-2 0H7.566l-2.4 4H11V5Z" fill-rule="evenodd" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-copy-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M19 2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2V4a2 2 0 0 1 2-2h10ZM9 6h6a2 2 0 0 1 2 2v8h2V4H9v2Zm-1 5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H8Zm-1 5a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-clipboard-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10 2a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2h-4ZM6 3h1v1a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V3h1a2 2 0 0 1 2 2v11a6 6 0 0 1-6 6H6a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Zm2 8a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-zoom-out-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 10.5a8.5 8.5 0 1 1 15.176 5.262l3.652 3.652a1 1 0 0 1-1.414 1.414l-3.652-3.652A8.5 8.5 0 0 1 2 10.5Zm5-1a1 1 0 0 0 0 2h7a1 1 0 1 0 0-2H7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-zoom-out-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6 10.5a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 10.5a8.5 8.5 0 1 1 15.176 5.262l3.652 3.652a1 1 0 0 1-1.414 1.414l-3.652-3.652A8.5 8.5 0 0 1 2 10.5ZM10.5 4a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-search-1-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 10.5a8.5 8.5 0 1 1 15.176 5.262l3.652 3.652a1 1 0 0 1-1.414 1.414l-3.652-3.652A8.5 8.5 0 0 1 2 10.5ZM10.5 4a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Zm0 1.5a1 1 0 0 0 0 2 3 3 0 0 1 3 3 1 1 0 1 0 2 0 5 5 0 0 0-5-5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-search-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.5 2a8.5 8.5 0 1 0 5.262 15.176l3.652 3.652a1 1 0 0 0 1.414-1.414l-3.652-3.652A8.5 8.5 0 0 0 10.5 2ZM4 10.5a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-save-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6.414A2 2 0 0 0 19.414 5L17 2.586A2 2 0 0 0 15.586 2H6Zm10.238 8.793a1 1 0 1 0-1.414-1.414l-4.242 4.242-1.415-1.414a1 1 0 0 0-1.414 1.414l2.05 2.051a1.1 1.1 0 0 0 1.556 0l4.88-4.879Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-unlink-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4.222 4.222a5.5 5.5 0 0 0 0 7.778l2.121 2.121a1 1 0 0 0 1.414-1.414l-2.121-2.121a3.5 3.5 0 0 1 4.95-4.95l2.121 2.121a1 1 0 1 0 1.414-1.414L12 4.222a5.5 5.5 0 0 0-7.778 0Zm7.071 12.02a1 1 0 0 0-1.414 1.415l2.12 2.12A5.5 5.5 0 0 0 19.78 12l-2.122-2.122a1 1 0 1 0-1.414 1.415l2.12 2.121a3.5 3.5 0 0 1-4.949 4.95l-2.121-2.122Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10.586 9.171a1 1 0 0 0-1.415 1.415l4.243 4.242a1 1 0 0 0 1.414-1.414l-4.242-4.243ZM17 3a1 1 0 1 0-2 0v2a1 1 0 1 0 2 0V3ZM9 19a1 1 0 1 0-2 0v2a1 1 0 1 0 2 0v-2Zm9-12a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1ZM4 16a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2H4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-zoom-in-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M7 9.5a1 1 0 0 0 0 2h2.5V14a1 1 0 1 0 2 0v-2.5H14a1 1 0 1 0 0-2h-2.5V7a1 1 0 1 0-2 0v2.5H7Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.5 2a8.5 8.5 0 1 0 5.262 15.176l3.652 3.652a1 1 0 0 0 1.414-1.414l-3.652-3.652A8.5 8.5 0 0 0 10.5 2ZM4 10.5a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8.414A2 2 0 0 0 19.414 7L15 2.586A2 2 0 0 0 13.586 2H6Zm6 2H6v16h12V10h-4.5A1.5 1.5 0 0 1 12 8.5V4Zm5.586 4L14 4.414V8h3.586Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-paper-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a3 3 0 0 0-3 3v1.75C2 8.44 2.56 9 3.25 9H5v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3v-1.75c0-.69-.56-1.25-1.25-1.25H19V6a3 3 0 0 0-3-3H5Zm0 2a1 1 0 0 0-1 1v1h1V5Zm4.83 15H18a1 1 0 0 0 1-1v-1h-9v1c0 .35-.06.687-.17 1ZM10 8a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2h-4Zm-1 5a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-search-1-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 10.5a8.5 8.5 0 1 1 15.176 5.262l3.652 3.652a1 1 0 0 1-1.414 1.414l-3.652-3.652A8.5 8.5 0 0 1 2 10.5Zm8.5-5a1 1 0 0 0 0 2 3 3 0 0 1 3 3 1 1 0 1 0 2 0 5 5 0 0 0-5-5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-box-3-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M14.095 2.866a5 5 0 0 0-4.19 0L3.263 5.93 12 10.5l8.737-4.569-6.642-3.065ZM21 7.382l-8 4v10.236L18.236 19A5 5 0 0 0 21 14.528V7.382Zm-18 0 8 4v10.236L5.764 19A5 5 0 0 1 3 14.528V7.382Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-upload-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.243 5.827a1 1 0 1 1-1.415 1.415L13 5.413V9h-2V5.413L9.172 7.242a1 1 0 1 1-1.415-1.415l3.36-3.358a1.25 1.25 0 0 1 1.767 0l3.359 3.358ZM11 9H5a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-6v6a1 1 0 1 1-2 0V9Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-zip-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h3v-3.5a1.5 1.5 0 0 1 1.5-1.5h3a1.5 1.5 0 0 1 1.5 1.5V22h3a2 2 0 0 0 2-2V8.414A2 2 0 0 0 19.414 7L15 2.586A2 2 0 0 0 13.586 2H6Zm3 12a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1Zm1-5a1 1 0 0 0 0 2h1a1 1 0 1 0 0-2h-1Zm2 3a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1Zm1-5a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2h-1Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13 22v-3h-2v3h2Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-box-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7.566 3a2 2 0 0 0-1.715.971l-2.423 4.04A3 3 0 0 0 3 9.553V19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V9.554a3 3 0 0 0-.427-1.544l-2.424-4.039A2 2 0 0 0 16.434 3H7.566ZM11 5H7.566l-1.8 3H11V5Zm-6 5v9h14v-9H5Zm13.234-2H13V5h3.434l1.8 3Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-download-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 2a1 1 0 0 1 1 1v10.243l2.536-2.536a1 1 0 1 1 1.414 1.414l-4.066 4.066a1.25 1.25 0 0 1-1.768 0L7.05 12.121a1 1 0 1 1 1.414-1.414L11 13.243V3a1 1 0 0 1 1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 15a1 1 0 0 1 1 1v4h14v-4a1 1 0 1 1 2 0v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4a1 1 0 0 1 1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-copy-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M19 2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2V4a2 2 0 0 1 2-2h10ZM9 6h6a2 2 0 0 1 2 2v8h2V4H9v2ZM5 8h10v12H5V8Zm3 3a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H8Zm-1 5a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-docment-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm14 0H6v16h12V4ZM8 9a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 4a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-download-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 2a1.5 1.5 0 0 1 1.5 1.5V11h2.76a.75.75 0 0 1 .53 1.28l-4.083 4.084a1 1 0 0 1-1.414 0L7.209 12.28A.75.75 0 0 1 7.74 11h2.76V3.5A1.5 1.5 0 0 1 12 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 14a1.5 1.5 0 0 1 1.5 1.5V19h13v-3.5a1.5 1.5 0 0 1 3 0v4A2.5 2.5 0 0 1 19 22H5a2.5 2.5 0 0 1-2.5-2.5v-4A1.5 1.5 0 0 1 4 14Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-upload-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M17.303 7.187a1.5 1.5 0 1 1-2.121 2.121L13.5 7.626V16a1.5 1.5 0 0 1-3 0V7.626L8.818 9.308a1.5 1.5 0 1 1-2.121-2.121l4.066-4.066a1.75 1.75 0 0 1 2.474 0l4.066 4.066Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 14.5A1.5 1.5 0 0 1 5.5 16v3.5h13V16a1.5 1.5 0 0 1 3 0v4a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 20v-4A1.5 1.5 0 0 1 4 14.5Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-zoom-in-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.5 2a8.5 8.5 0 1 0 5.262 15.176l3.652 3.652a1 1 0 0 0 1.414-1.414l-3.652-3.652A8.5 8.5 0 0 0 10.5 2ZM6 10.5a1 1 0 0 1 1-1h2.5V7a1 1 0 0 1 2 0v2.5H14a1 1 0 1 1 0 2h-2.5V14a1 1 0 1 1-2 0v-2.5H7a1 1 0 0 1-1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-upload-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.243 5.827a1 1 0 1 1-1.415 1.415L13 5.413V15a1 1 0 1 1-2 0V5.413L9.172 7.242a1 1 0 1 1-1.415-1.415l3.36-3.358a1.25 1.25 0 0 1 1.767 0l3.359 3.358Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 11a2 2 0 0 1 2-2h3v2H5v9h14v-9h-3V9h3a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-9Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-search-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10.5 2a8.5 8.5 0 1 0 5.262 15.176l3.652 3.652a1 1 0 1 0 1.414-1.414l-3.652-3.652A8.5 8.5 0 0 0 10.5 2Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-import-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 4a2 2 0 0 1 2-2h6v6.5a1.5 1.5 0 0 0 1.5 1.5H20v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-1h3.414l-1.121 1.121a1 1 0 1 0 1.414 1.415l2.829-2.829a1 1 0 0 0 0-1.414l-2.829-2.829a1 1 0 1 0-1.414 1.415L7.414 17H4V4Zm0 13v2H3a1 1 0 1 1 0-2h1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 8V2.043a2 2 0 0 1 1 .543L19.414 7a2 2 0 0 1 .543 1H14Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V10h-6.5A1.5 1.5 0 0 1 12 8.5V2H6Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 2.043V8h5.957a2 2 0 0 0-.543-1L15 2.586a2 2 0 0 0-1-.543Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-download-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2a1 1 0 0 0-1 1v2H5a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-6V3a1 1 0 0 0-1-1Zm1 3v6.707h3.14a.75.75 0 0 1 .53 1.28l-3.963 3.963a1 1 0 0 1-1.414 0L7.33 12.987a.75.75 0 0 1 .53-1.28H11V5h2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-unlink-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3.868 3.868a6 6 0 0 0 0 8.486l1.77 1.77a1.5 1.5 0 1 0 2.121-2.122l-1.77-1.77a3 3 0 0 1 4.243-4.242l1.77 1.77a1.5 1.5 0 1 0 2.121-2.122l-1.77-1.77a6 6 0 0 0-8.485 0Zm8.134 12.376a1.5 1.5 0 1 0-2.121 2.122l1.766 1.766a6 6 0 0 0 8.485-8.486L18.366 9.88a1.5 1.5 0 1 0-2.121 2.122l1.765 1.766a3 3 0 1 1-4.242 4.242l-1.766-1.766Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10.94 8.818a1.5 1.5 0 1 0-2.122 2.121l4.243 4.243a1.5 1.5 0 1 0 2.12-2.121L10.94 8.818ZM17.5 3a1.5 1.5 0 0 0-3 0v2a1.5 1.5 0 0 0 3 0V3Zm-8 16a1.5 1.5 0 0 0-3 0v2a1.5 1.5 0 0 0 3 0v-2Zm8-12A1.5 1.5 0 0 1 19 5.5h1a1.5 1.5 0 0 1 0 3h-1A1.5 1.5 0 0 1 17.5 7ZM4 15.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 0 0-3H4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-paper-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 9a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm0 4a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5 3a3 3 0 0 0-3 3v1.75C2 8.44 2.56 9 3.25 9H5v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3v-1.75c0-.69-.56-1.25-1.25-1.25H19V6a3 3 0 0 0-3-3H5Zm12 13V6a1 1 0 0 0-1-1H7v14a1 1 0 1 0 2 0v-1.75c0-.69.56-1.25 1.25-1.25H17Zm-6.17 4H18a1 1 0 0 0 1-1v-1h-8v1c0 .35-.06.687-.17 1ZM4 6a1 1 0 0 1 1-1v2H4V6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-zip-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8.414A2 2 0 0 0 19.414 7L15 2.586A2 2 0 0 0 13.586 2H6Zm0 2h7.586L18 8.414V20h-3v-2.5a1.5 1.5 0 0 0-1.5-1.5h-3A1.5 1.5 0 0 0 9 17.5V20H6V4Zm7 16v-2h-2v2h2Zm-4-6a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1Zm1-5a1 1 0 0 0 0 2h1a1 1 0 1 0 0-2h-1Zm2 3a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1Zm1-5a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2h-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-new-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V10h-6.5A1.5 1.5 0 0 1 12 8.5V2H6Zm6 9.5a1 1 0 0 1 1 1V14h1.5a1 1 0 1 1 0 2H13v1.5a1 1 0 1 1-2 0V16H9.5a1 1 0 1 1 0-2H11v-1.5a1 1 0 0 1 1-1Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 2.043V8h5.957a2 2 0 0 0-.543-1L15 2.586a2 2 0 0 0-1-.543Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-folder-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7.5a2 2 0 0 0-2-2h-7.52l-1.399-1.75A2 2 0 0 0 9.52 3H4Zm0 2h5.52l1.399 1.75a2 2 0 0 0 1.562.75H20V9H4V5Zm0 6v8h16v-8H4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-new-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 11.5a1 1 0 0 1 1 1V14h1.5a1 1 0 1 1 0 2H13v1.5a1 1 0 1 1-2 0V16H9.5a1 1 0 1 1 0-2H11v-1.5a1 1 0 0 1 1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8.414A2 2 0 0 0 19.414 7L15 2.586A2 2 0 0 0 13.586 2H6Zm6 2H6v16h12V10h-4.5A1.5 1.5 0 0 1 12 8.5V4Zm5.586 4L14 4.414V8h3.586Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-pic-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M17 8.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5Zm18 0H4v10.1l4.995-4.994a1.25 1.25 0 0 1 1.768 0l4.065 4.066 1.238-1.238a1.25 1.25 0 0 1 1.768 0L20 15.101V5Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-link-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4.222 4.222a5.5 5.5 0 0 0 0 7.778l2.475 2.475A1 1 0 0 0 8.11 13.06l-2.475-2.475a3.5 3.5 0 1 1 4.95-4.95L13.06 8.11a1 1 0 1 0 1.414-1.414L12 4.222a5.5 5.5 0 0 0-7.778 0Zm6.718 11.667a1 1 0 0 0-1.415 1.414L12 19.778A5.5 5.5 0 1 0 19.778 12l-2.475-2.475a1 1 0 1 0-1.414 1.414l2.475 2.475a3.5 3.5 0 0 1-4.95 4.95l-2.475-2.475Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10.586 9.172a1 1 0 1 0-1.414 1.414l4.242 4.242a1 1 0 0 0 1.415-1.414l-4.243-4.242Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-link-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3.868 3.868a6 6 0 0 0 0 8.486l2.122 2.12a1.5 1.5 0 1 0 2.12-2.12l-2.12-2.122a3 3 0 0 1 4.242-4.242l2.122 2.12a1.5 1.5 0 1 0 2.12-2.12l-2.12-2.122a6 6 0 0 0-8.486 0Zm7.778 12.021a1.5 1.5 0 0 0-2.121 2.121l2.121 2.122a6 6 0 0 0 8.486-8.486L18.01 9.525a1.5 1.5 0 1 0-2.121 2.121l2.121 2.122a3 3 0 1 1-4.242 4.242l-2.122-2.121Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10.94 8.818a1.5 1.5 0 1 0-2.122 2.121l4.242 4.243a1.5 1.5 0 0 0 2.122-2.121l-4.243-4.243Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-folder-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 3a2 2 0 0 0-2 2v4h20V7.5a2 2 0 0 0-2-2h-7.52l-1.399-1.75A2 2 0 0 0 9.52 3H4Zm18 8H2v8a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-attachment-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M18.715 19.218a3.5 3.5 0 0 0 0-4.95l-8.132-8.132a1 1 0 0 1 1.414-1.414l8.132 8.132a5.5 5.5 0 0 1-7.778 7.778l-9.546-9.546a4 4 0 1 1 5.657-5.657l9.192 9.192a2.5 2.5 0 1 1-3.536 3.536L5.633 9.672a1 1 0 1 1 1.414-1.415l8.486 8.486a.5.5 0 0 0 .707-.707L7.047 6.843A2 2 0 1 0 4.22 9.672l9.546 9.546a3.5 3.5 0 0 0 4.95 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-box-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3H2V5Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M3 10h18v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-9Zm7 3a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-download-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path fill="currentColor" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V10h-6.5A1.5 1.5 0 0 1 12 8.5V2H6Zm6 9a1 1 0 0 1 1 1v2.708l.414-.414a1 1 0 0 1 1.414 1.414l-2.12 2.122a1 1 0 0 1-1.415 0l-2.121-2.122a1 1 0 1 1 1.414-1.414l.414.414V12a1 1 0 0 1 1-1Z" clip-rule="evenodd" fill-rule="evenodd" data-follow-fill="currentColor"/&gt;&lt;path fill="currentColor" d="M14 2.043V8h5.957a2 2 0 0 0-.543-1L15 2.586a2 2 0 0 0-1-.543Z" data-follow-fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-box-3-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M10.743 4.682a3 3 0 0 1 2.514 0l3.006 1.387L12 8.364 7.737 6.07l3.006-1.387Zm3.352-1.816a5 5 0 0 0-4.19 0L5.08 5.092l-1.818.84 1.763.948 6.5 3.5.474.256.474-.255 6.5-3.5 1.763-.95-1.818-.839-4.824-2.226ZM21 7.382l-1.447.724-6 3-.553.276v10.236l1.447-.723L18.237 19A5 5 0 0 0 21 14.528V7.382Zm-2 3.236v3.91a3 3 0 0 1-1.658 2.683L15 18.382v-5.764l4-2ZM3 7.382l1.447.724 6 3 .553.276v10.236l-1.447-.723L5.763 19A5 5 0 0 1 3 14.528V7.382Zm2 3.236v3.91a3 3 0 0 0 1.658 2.683L9 18.382v-5.764l-4-2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-download-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 2a1 1 0 0 1 1 1v10.828L14.828 12a1 1 0 1 1 1.415 1.414l-3.36 3.359a1.25 1.25 0 0 1-1.767 0l-3.359-3.359A1 1 0 1 1 9.172 12L11 13.828V3a1 1 0 0 1 1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M3 7a2 2 0 0 1 2-2h3v2H5v13h14V7h-3V5h3a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-download-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 11a1 1 0 0 1 1 1v2.708l.414-.414a1 1 0 0 1 1.414 1.414l-2.12 2.122a1 1 0 0 1-1.415 0l-2.121-2.122a1 1 0 1 1 1.414-1.414l.414.414V12a1 1 0 0 1 1-1Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8.414A2 2 0 0 0 19.414 7L15 2.586A2 2 0 0 0 13.586 2H6Zm6 2H6v16h12V10h-4.5A1.5 1.5 0 0 1 12 8.5V4Zm5.586 4L14 4.414V8h3.586Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-clipboard-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M7 5H6v15h9a3 3 0 0 0 3-3V5h-1a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2Zm8 0V4H9v1h6ZM7.268 3H6a2 2 0 0 0-2 2v15a2 2 0 0 0 2 2h9a5 5 0 0 0 5-5V5a2 2 0 0 0-2-2h-1.268A2 2 0 0 0 15 2H9a2 2 0 0 0-1.732 1ZM8 11a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-save-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6.414A2 2 0 0 0 19.414 5L17 2.586A2 2 0 0 0 15.586 2H6Zm0 2h9.586L18 6.414V20H6V4Zm10.238 6.793a1 1 0 1 0-1.414-1.414l-4.242 4.242-1.415-1.414a1 1 0 0 0-1.414 1.414l2.05 2.051a1.1 1.1 0 0 0 1.556 0l4.88-4.879Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-upload-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M16.95 7.54a1 1 0 1 1-1.414 1.414L13 6.42V16a1 1 0 1 1-2 0V6.419L8.464 8.954A1 1 0 0 1 7.05 7.54l4.066-4.066a1.25 1.25 0 0 1 1.768 0L16.95 7.54Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 15a1 1 0 0 1 1 1v4h14v-4a1 1 0 1 1 2 0v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4a1 1 0 0 1 1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-upload-3-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M11.5 4C8.851 4 6.739 6.38 7.027 9a1.01 1.01 0 0 1-.758 1.09A3.002 3.002 0 0 0 7 16h1a1 1 0 1 1 0 2H7a5 5 0 0 1-2-9.584 6.5 6.5 0 0 1 12.586-2.204A6.002 6.002 0 0 1 16 18a1 1 0 1 1 0-2 4 4 0 0 0 .655-7.947 1.01 1.01 0 0 1-.81-.732A4.502 4.502 0 0 0 11.5 4Zm1.5 8.416 1.293 1.292a1 1 0 0 0 1.414-1.416l-2.824-2.819a1.25 1.25 0 0 0-1.766 0l-2.824 2.82a1 1 0 0 0 1.414 1.415L11 12.416V21a1 1 0 1 0 2 0v-8.584Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-upload-3-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.5 2A6.5 6.5 0 0 0 5 8.416 5.001 5.001 0 0 0 7 18h2v-2a3 3 0 0 1-2.12-5.123l2.824-2.819a3.25 3.25 0 0 1 4.592 0l2.824 2.82A3 3 0 0 1 15 16v2h1a6 6 0 0 0 1.586-11.788A6.502 6.502 0 0 0 11.5 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M15.708 13.707a1 1 0 0 0-.001-1.415l-2.824-2.819a1.25 1.25 0 0 0-1.766 0l-2.824 2.82a1 1 0 1 0 1.414 1.415L11 12.416V21a1 1 0 1 0 2 0v-8.584l1.293 1.292a1 1 0 0 0 1.415-.001Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-import-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v8h2V4h6v4.5a1.5 1.5 0 0 0 1.5 1.5H18v10h-6v2h6a2 2 0 0 0 2-2V8.414A2 2 0 0 0 19.414 7L15 2.586A2 2 0 0 0 13.586 2H6Zm11.586 6L14 4.414V8h3.586Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 18a1 1 0 0 1 1-1h4.414l-1.121-1.121a1 1 0 1 1 1.414-1.415l2.829 2.829a1 1 0 0 1 0 1.414l-2.829 2.828a1 1 0 1 1-1.414-1.414L7.414 19H3a1 1 0 0 1-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-pic-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M17 8.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5Zm18 0H4v10.1l4.995-4.994a1.25 1.25 0 0 1 1.767 0l4.066 4.066 1.238-1.238a1.25 1.25 0 0 1 1.768 0L20 15.101V5Zm0 12.875a.997.997 0 0 1-.222-.168L16.95 14.88l-1.238 1.237a1.25 1.25 0 0 1-1.768 0L9.88 12.05l-5.657 5.657a1.002 1.002 0 0 1-.222.168V19h16v-1.125Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-export-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 4a2 2 0 0 1 2-2h6v6.5a1.5 1.5 0 0 0 1.5 1.5H20v5.757l-1.293-1.293a1 1 0 1 0-1.414 1.415L18.414 17H14a1 1 0 1 0 0 2h4.414l-1.121 1.121a1 1 0 0 0 1.414 1.415l1.276-1.277A2 2 0 0 1 18 22H6a2 2 0 0 1-2-2V4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M14 8V2.043a2 2 0 0 1 1 .543L19.414 7a2 2 0 0 1 .543 1H14Zm7.535 10.707L20 20.243v-4.486l1.535 1.536a1 1 0 0 1 0 1.414Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-docment-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M4 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm4 5a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 4a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H9Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-file-export-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h6v-2H6V4h6v4.5a1.5 1.5 0 0 0 1.5 1.5H18v2h2V8.414A2 2 0 0 0 19.414 7L15 2.586A2 2 0 0 0 13.586 2H6Zm11.586 6L14 4.414V8h3.586Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M13 18a1 1 0 0 1 1-1h4.414l-1.121-1.121a1 1 0 0 1 1.414-1.415l2.828 2.829a1 1 0 0 1 0 1.414l-2.828 2.828a1 1 0 1 1-1.414-1.414L18.414 19H14a1 1 0 0 1-1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-android-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6.293 3.293a1 1 0 0 1 1.414 0l.606.606A7.966 7.966 0 0 1 12 3c1.33 0 2.584.324 3.687.899l.606-.606a1 1 0 1 1 1.414 1.414l-.35.35A7.98 7.98 0 0 1 20 11v1H4v-1a7.98 7.98 0 0 1 2.644-5.942l-.351-.35a1 1 0 0 1 0-1.415ZM9 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M4 19v-5h16v5a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-android-2-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5.553 4.106a1 1 0 0 1 1.341.447L8.028 6.82A9.967 9.967 0 0 1 12 6c1.411 0 2.755.292 3.972.82l1.134-2.267a1 1 0 1 1 1.788.894l-1.174 2.35A9.988 9.988 0 0 1 22 16v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1a9.988 9.988 0 0 1 4.28-8.204L5.106 5.447a1 1 0 0 1 .447-1.341ZM7.5 15a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM18 13.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-qiyeweixin-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M20.934 16.779v.006c.212 0 .418-.067.594-.19.175-.121.312-.295.392-.498a1.135 1.135 0 0 0-.236-1.207 1.034 1.034 0 0 0-1.496-.011l.009-.392a2.835 2.835 0 0 0-.674-1.141 2.79 2.79 0 0 1-.338-.882 1.438 1.438 0 0 0-.227-.749 1.378 1.378 0 0 0-.614-.522 1.334 1.334 0 0 0-.797-.081 1.359 1.359 0 0 0-.703.389c-.19.197-.32.448-.372.72a1.446 1.446 0 0 0 .18 1.014 2.71 2.71 0 0 0-1.098.705c-.252.164-.53.282-.82.347a1.342 1.342 0 0 0-.747.242 1.4 1.4 0 0 0-.5.635 1.447 1.447 0 0 0-.074.808c.053.27.182.521.373.718.192.197.436.332.704.387a1.335 1.335 0 0 0 .973-.176c.131.428.36.818.668 1.137.16.272.274.571.335.884.006.266.084.525.228.748.149.231.362.413.613.521a1.334 1.334 0 0 0 1.498-.308c.191-.197.32-.447.372-.718a1.446 1.446 0 0 0-.18-1.013c.431-.14.82-.39 1.134-.723l.008-.355a2.85 2.85 0 0 1 .796-.295Zm-2.087 1.105a1.713 1.713 0 0 1 .518-.996c.233-.369.401-.778.496-1.209a1.138 1.138 0 0 1 .327-.8 1.138 1.138 0 0 0-.327.8 3.8 3.8 0 0 1-.496 1.21c-.28.259-.462.611-.518.995Zm-.327.16a1.093 1.093 0 0 1-.092-.073 1.042 1.042 0 0 0-.594-.186 3.51 3.51 0 0 1-1.16-.53v.007m1.846.782a1.092 1.092 0 0 0-.092-.073l.092.073Zm-.092-.073a1.042 1.042 0 0 0-.594-.186l.594.186Zm-.594-.186a3.49 3.49 0 0 1-.86-.342l.86.342Zm-.86-.342a3.553 3.553 0 0 1-.29-.181l.29.181Zm-.29-.181-.006-.004.005.004Zm-.006-.004-.005-.003.005.003Zm-.005-.003v.007-.007Zm0 .007-.002-.003.003.003Zm-.002-.003a1.595 1.595 0 0 0-.95-.548 1.567 1.567 0 0 1 .652.273c.108.077.207.168.295.27l.003.005Zm2.149 1.21c.01.025.02.05.028.076l-.028-.076Zm-2.906-2.023c.363.091.691.291.945.573.31.215.653.372 1.014.466.25.008.491.085.7.223a1.98 1.98 0 0 1 .556-1.01 3.5 3.5 0 0 0 .432-1.054c.005-.25.075-.493.203-.707a1.904 1.904 0 0 1-.968-.572 3.228 3.228 0 0 0-1.02-.464 1.343 1.343 0 0 1-.67-.203 1.992 1.992 0 0 1-.552.98 3.503 3.503 0 0 0-.43 1.05 1.437 1.437 0 0 1-.21.718Zm3.74-2.44Zm-.908-2.058a1.078 1.078 0 0 0-.521-.479 1.034 1.034 0 0 0-.618-.063 1.058 1.058 0 0 0-.548.303c.15-.155.34-.26.548-.303a1.03 1.03 0 0 1 .617.063 1.079 1.079 0 0 1 .522.479Zm-.47 1.801Zm-3.504.836c.347-.074.678-.215.976-.414a2.41 2.41 0 0 1 1.092-.681 2.423 2.423 0 0 0-1.091.681 2.836 2.836 0 0 1-.978.414l-.02.002a1.032 1.032 0 0 0-.593.188 1.101 1.101 0 0 0-.392.5 1.1 1.1 0 0 1 .392-.5 1.035 1.035 0 0 1 .593-.189v.004l.014-.003.006-.002Zm2.147-4.33.301-.017.045.278c.192-.031.385-.05.579-.058.172.008.344.025.515.052l.381.06-.035-.384C18.366 6.525 14.892 3.7 10.72 3.7c-4.39 0-8.02 3.13-8.02 7.073v.007c.028 1.1.316 2.178.84 3.136a6.643 6.643 0 0 0 1.992 2.244l-.427 1.782a.936.936 0 0 0 .02.508c.055.164.153.31.286.42a.882.882 0 0 0 .965.105l2.558-1.324c.589.125 1.188.19 1.789.193h.002c.708 0 1.415-.085 2.105-.252l.306-.073-.089-.303a5.357 5.357 0 0 1-.204-1.145l-.024-.358-.348.088a6.973 6.973 0 0 1-2.613.148h-.002a6.888 6.888 0 0 1-.413-.07h-.004l-.061-.01a6.925 6.925 0 0 1-.575-.118l-.112-.03-1.382.716.273-1.133-.194-.112a6.433 6.433 0 0 1-.681-.453l-.009-.006-.01-.006a4.803 4.803 0 0 1-1.572-1.696 5.023 5.023 0 0 1-.625-2.263c.004-2.844 2.747-5.233 6.234-5.233 3.263 0 5.894 2.113 6.195 4.72Zm.556-.07c-.086.01-.172.021-.258.035v.001a4.75 4.75 0 0 0 0-.003v.003a5.71 5.71 0 0 1 .258-.036ZM10.72 4c3.436 0 6.344 1.972 7.342 4.695C17.065 5.972 14.157 4 10.721 4 6.459 4 3 7.032 3 10.773 3 7.032 6.459 4 10.72 4ZM5.87 16.029l-.474 1.983.475-1.983Zm6.673.063a7.263 7.263 0 0 1-3.157.082l-.062-.01c-.202-.036-.405-.07-.6-.123l-1.462.758-.165-.08h-.001l-.147-.072.147.072.166.08 1.462-.758c.195.052.398.087.6.122l.062.011a7.181 7.181 0 0 0 3.157-.082Zm-5.306-.64Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-moment-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M15 2.458A9.996 9.996 0 0 0 12 2c-1.822 0-3.53.487-5.002 1.339L15 7.959V2.457ZM5.239 4.632A9.974 9.974 0 0 0 2 12l8-4.619-4.76-2.749Zm-3.002 9.54A10.016 10.016 0 0 0 7 20.663v-9.24l-4.763 2.75ZM9 21.543A9.994 9.994 0 0 0 12 22c1.822 0 3.53-.487 5.002-1.339L9 16.041v5.501Zm9.761-2.174A9.973 9.973 0 0 0 22 12l-8 4.619 4.761 2.749Zm3.002-9.54L17 12.577v-9.24a10.015 10.015 0 0 1 4.763 6.49ZM9 10.267l3-1.732 3 1.732v3.464l-3 1.732-3-1.732v-3.464Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wechat-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 9.623C2 5.807 5.525 3 9.5 3c3.777 0 7.149 2.535 7.474 6.062A7.686 7.686 0 0 0 16 9c-3.533 0-7 2.473-7 6.209 0 .354.031.697.09 1.027a8.506 8.506 0 0 1-.926-.094c-.67.549-1.443.858-2.31.858-.518 0-.937-.434-.937-.97 0-.392.068-.798-.034-1.183C3.17 13.665 2 11.793 2 9.623ZM8 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" clip-rule="evenodd"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M16 10c3.154 0 6 2.186 6 5.213 0 1.696-.92 3.153-2.26 4.08-.044.265-.008.532-.008.799a.903.903 0 0 1-.897.908c-.68 0-1.31-.224-1.843-.645a6.895 6.895 0 0 1-.992.071c-3.154 0-6-2.186-6-5.213S12.846 10 16 10Zm-2 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm5-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-android-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm5 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6.293 3.293a1 1 0 0 1 1.414 0l.606.606A7.966 7.966 0 0 1 12 3c1.33 0 2.584.324 3.687.899l.606-.606a1 1 0 1 1 1.414 1.414l-.35.35A7.98 7.98 0 0 1 20 11v8a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3v-8a7.98 7.98 0 0 1 2.644-5.942l-.351-.35a1 1 0 0 1 0-1.415ZM6 11a6 6 0 1 1 12 0v1H6v-1Zm0 3v5a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-5H6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-android-2-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M10 13.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5.5 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M5.553 4.106a1 1 0 0 1 1.341.447L8.028 6.82A9.967 9.967 0 0 1 12 6c1.411 0 2.755.292 3.972.82l1.134-2.267a1 1 0 1 1 1.788.894l-1.174 2.35A9.989 9.989 0 0 1 22 16v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1a9.988 9.988 0 0 1 4.28-8.204L5.106 5.447a1 1 0 0 1 .447-1.341ZM12 8a8 8 0 0 0-8 8v1h16v-1a8 8 0 0 0-8-8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-alipay-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M20.893 16.578A9.957 9.957 0 0 0 22 12c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10a9.981 9.981 0 0 0 7.794-3.735l-.725-.362a258.153 258.153 0 0 1-3.192-1.484c-.805-.379-1.522-.716-2.18-1.013a8.582 8.582 0 0 1-.927 1.114C11.648 17.64 10.52 18 9.5 18 7.632 18 6 16.82 6 15c0-1.684 1.48-3 3-3 1.268 0 2.494.334 3.887.884.212-.407.428-.866.647-1.384H9a1 1 0 1 1 0-2h2V9H8a1 1 0 0 1 0-2h3V6a1 1 0 1 1 2 0v1h3a1 1 0 1 1 0 2h-3v.5h2a1 1 0 0 1 .94 1.342 25.217 25.217 0 0 1-1.212 2.835c.629.287 1.313.609 2.06.96.938.442 1.975.93 3.126 1.453l.033.016.946.472Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M9 14c.827 0 1.687.194 2.797.608a5.85 5.85 0 0 1-.442.497C10.602 15.86 9.98 16 9.5 16 8.368 16 8 15.38 8 15c0-.516.52-1 1-1Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-alipay-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M20.225 17.689A9.989 9.989 0 0 1 12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10a9.953 9.953 0 0 1-1.59 5.414 1 1 0 0 1-.185.275ZM4 12a8 8 0 1 1 15.089 3.712c-.828-.382-1.593-.741-2.3-1.075-.748-.351-1.432-.673-2.06-.96.408-.801.813-1.74 1.21-2.835A1 1 0 0 0 15 9.5h-2V9h3a1 1 0 1 0 0-2h-3V6a1 1 0 1 0-2 0v1H8a1 1 0 0 0 0 2h3v.5H9a1 1 0 1 0 0 2h4.534a19.09 19.09 0 0 1-.647 1.384C11.494 12.334 10.267 12 9 12c-1.52 0-3 1.316-3 3 0 1.82 1.632 3 3.5 3 1.02 0 2.148-.359 3.27-1.48.31-.312.62-.68.928-1.114.657.297 1.374.634 2.178 1.013.625.294 1.303.613 2.048.958A8 8 0 0 1 4 12Zm5 2c.827 0 1.687.194 2.797.608a5.85 5.85 0 0 1-.442.497C10.602 15.86 9.98 16 9.5 16 8.368 16 8 15.38 8 15c0-.516.52-1 1-1Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-dingding-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M18.22 11.234C14.463 8.281 10.236 4.376 5.582.185c-.366-.33-.69-.202-.854.246a6.026 6.026 0 0 0-.269 3.637 5.947 5.947 0 0 0 1.875 3.108c1.647 1.445 4.093 2.776 5.593 3.482.058.027 0 .113-.053.089-2.753-1.23-4.667-2.126-7.258-4.164-.28-.219-.563-.133-.597.295a5.507 5.507 0 0 0 .785 3.322 5.364 5.364 0 0 0 2.58 2.188 15.77 15.77 0 0 0 3.629.832c.06 0 .046.1-.015.1a14.273 14.273 0 0 1-4.969-.984c-.336-.13-.452.143-.401.36.273 1.134 1.654 2.871 3.85 3.236.41.06.826.082 1.24.064.094 0 .116.049.087.123 0 0-1.495 2.6-1.56 2.707-.066.105-.02.157.086.157h1.97c.091 0 .147.06.101.138L8.65 23.767c-.106.18.02.32.218.17l8.695-6.475c.108-.081.082-.19-.07-.19H15.73c-.116 0-.14-.078-.063-.157.078-.078 2.006-2.032 2.69-2.763.685-.731 1.067-2.17-.137-3.118Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-telegram-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M19.777 4.43a1.5 1.5 0 0 1 2.062 1.626L19.57 19.813c-.218 1.327-1.675 2.088-2.892 1.427-1.018-.553-2.53-1.405-3.89-2.294-.68-.445-2.763-1.87-2.507-2.884C10.5 15.195 14 11.938 16 10c.786-.761.428-1.2-.5-.5-2.302 1.738-5.997 4.381-7.219 5.125-1.078.656-1.64.768-2.312.656-1.226-.204-2.363-.52-3.291-.905-1.255-.52-1.194-2.244-.001-2.746l17.1-7.2Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chrome-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M2 12c0-1.396.286-2.724.802-3.931L6.746 14.9a5.998 5.998 0 0 0 6.481 2.974l-2.346 4.064C5.885 21.382 2 17.145 2 12Zm4.299-1.875L3.953 6.062A9.986 9.986 0 0 1 12 2a9.985 9.985 0 0 1 8 4h-8a6.003 6.003 0 0 0-5.701 4.125ZM16.472 8h4.696A9.966 9.966 0 0 1 22 12c0 5.118-3.845 9.338-8.805 9.93l3.95-6.84c.543-.902.855-1.96.855-3.09a5.978 5.978 0 0 0-1.528-4Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-messenger-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.207 9.793a1 1 0 0 0-1.414 0l-3 3a1 1 0 1 0 1.414 1.414l2.293-2.293 2.293 2.293a1 1 0 0 0 1.414 0l3-3a1 1 0 0 0-1.414-1.414L13.5 12.086l-2.293-2.293Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12c0 1.89.525 3.66 1.438 5.168L2.546 20.2A1.01 1.01 0 0 0 3.8 21.454l3.032-.892A9.957 9.957 0 0 0 12 22c5.523 0 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 3.718 6.759 1.516 1.516 0 0 0-1.24-.177l-1.501.441.441-1.501c.128-.433.05-.883-.177-1.24A7.958 7.958 0 0 1 4 12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-dingding-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-stroke="currentColor" stroke="currentColor" stroke-width="2" d="M15.522 18.071a1.023 1.023 0 0 1-.379-.49c-.23-.6.143-1.049.277-1.18l.046-.045c.316-.309 2.08-2.033 2.732-2.702a1.38 1.38 0 0 0 .382-.835c.014-.246-.058-.52-.412-.788l-2.646 6.04Zm0 0-3.601 2.581m3.6-2.58-3.6 2.58m0 0 .62-1.007.003-.006c.19-.313.27-.828-.084-1.255a1.132 1.132 0 0 0-.876-.401h-.464l.022-.037.541-.906.177-.297.05-.082.013-.022.003-.006v-.001h.001l-.858-.513.858.512.039-.064.028-.07c.053-.129.206-.57-.087-1.016-.298-.455-.777-.485-.929-.485h-.043a5.93 5.93 0 0 1-1.094-.053 4.308 4.308 0 0 1-2.246-1.098c1.195.295 2.422.455 3.658.476h.017c.667 0 .99-.542 1.043-.903a1.035 1.035 0 0 0-.941-1.195 15.939 15.939 0 0 1-3.514-.774A4.522 4.522 0 0 1 5.68 9.664c-.3-.471-.503-.99-.605-1.528 2.296 1.6 4.197 2.449 6.706 3.528.62.27 1.121-.116 1.303-.39a1.038 1.038 0 0 0-.437-1.526c-1.53-.695-3.972-1.98-5.578-3.336l-.002-.002a4.912 4.912 0 0 1-1.619-2.582 4.811 4.811 0 0 1 .038-2.455l1.798 1.563c3.933 3.422 7.58 6.596 10.884 9.095l-6.247 8.621ZM5.699.767l-.003.006a.037.037 0 0 1 .003-.006Zm6.876 9.061-.006-.002a.811.811 0 0 1 .008.003h-.002Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-messenger-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12c0 1.89.525 3.66 1.438 5.168L2.546 20.2A1.01 1.01 0 0 0 3.8 21.454l3.032-.892A9.957 9.957 0 0 0 12 22c5.523 0 10-4.477 10-10S17.523 2 12 2Zm-.793 7.793a1 1 0 0 0-1.414 0l-3 3a1 1 0 1 0 1.414 1.414l2.293-2.293 2.293 2.293a1 1 0 0 0 1.414 0l3-3a1 1 0 0 0-1.414-1.414L13.5 12.086l-2.293-2.293Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-moment-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm4.292-5.605A7.974 7.974 0 0 0 4 12l6-3.464-3.708-2.141Zm1.707-1.324L14 8.536V4.252A8.015 8.015 0 0 0 12 4c-1.458 0-2.824.39-4.001 1.071ZM14 10.833l-2.01-1.149-2 1.168.01 2.315 2.01 1.149 2-1.168-.01-2.315ZM8 18.93a8.018 8.018 0 0 1-3.71-4.788L8 12v6.93Zm2-3.466v4.284A8 8 0 0 0 12 20c1.458 0 2.824-.39 4.001-1.071l-6-3.465ZM20 12a7.974 7.974 0 0 1-2.292 5.605L14 15.464 20 12Zm-4 0 3.71-2.142A8.018 8.018 0 0 0 16 5.07V12Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-apple-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.06 5.596c.354.354 1.853.27 2.83-.707.976-.976 1.06-2.475.706-2.828-.353-.354-1.852-.27-2.828.707-.976.976-1.06 2.475-.707 2.828Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 6.934c-.465 0-.872-.164-1.496-.426-.639-.268-1.532-.642-2.623-.459-2.067.348-3.422 1.532-4.163 3.053-.72 1.476-.842 3.22-.615 4.775a13.457 13.457 0 0 0 1.784 4.986c.849 1.387 1.972 2.563 3.245 3.067.874.346 1.826.064 2.686-.18.56-.158.922-.252 1.182-.252.26 0 .621.094 1.181.253.86.243 1.813.525 2.687.179 1.011-.4 1.92-1.221 2.662-2.209.754-1 1.39-2.239 1.831-3.581a1.01 1.01 0 0 0-.639-1.263 2.502 2.502 0 0 1-.133-4.706c.56-.22.802-.907.502-1.429-.777-1.354-2.081-2.375-3.972-2.693-1.091-.183-1.984.191-2.623.459-.624.262-1.031.426-1.496.426ZM8.212 8.02c.492-.082.899.072 1.63.378.541.227 1.276.535 2.158.535.882 0 1.617-.308 2.158-.535.731-.306 1.138-.46 1.63-.378.845.143 1.48.473 1.953.924A4.492 4.492 0 0 0 16 12.5c0 1.627.863 3.05 2.155 3.841a10.04 10.04 0 0 1-1.222 2.177c-.618.82-1.255 1.336-1.801 1.552-.4.159-1.092-.155-1.47-.262-.466-.132-1.092-.31-1.662-.31-.57 0-1.197.178-1.662.31-.378.107-1.07.42-1.47.262-.704-.278-1.537-1.045-2.275-2.25a11.454 11.454 0 0 1-1.51-4.232c-.187-1.278-.063-2.592.433-3.61.475-.975 1.304-1.722 2.696-1.957Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-telegram-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" clip-rule="evenodd" d="M21.84 6.056a1.5 1.5 0 0 0-2.063-1.626l-17.1 7.2c-1.193.502-1.254 2.226 0 2.746.929.385 2.35.949 3.774 1.418 1.168.386 2.442.743 3.462.844.28.334.631.655.989.95.547.45 1.205.913 1.885 1.357 1.362.89 2.873 1.741 3.89 2.295 1.218.66 2.675-.1 2.893-1.427l2.27-13.757ZM4.594 12.992l15.123-6.367-2.117 12.84c-.999-.543-2.438-1.356-3.72-2.194a19.966 19.966 0 0 1-1.71-1.229 8.007 8.007 0 0 1-.425-.374l3.961-3.96a1 1 0 0 0-1.414-1.415L9.955 14.63c-.734-.094-1.756-.366-2.878-.736a48.887 48.887 0 0 1-2.482-.902Z" fill-rule="evenodd" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-qiyeweixin-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" d="M15.722 16.597c.551.561 1.218.899 1.958 1.11l.249.065c.519.096.79.576.814 1.067 0 .28-.098.55-.278.762-.18.212-.43.35-.702.39-.542.071-1.11-.277-1.227-.828a4.206 4.206 0 0 0-1.133-2.218c-.07-.073-.023-.228-.048-.348l.277-.021a.135.135 0 0 1 .09.021Zm1.003-10.864c1.155 1.247 1.794 2.721 1.817 4.436a2.218 2.218 0 0 0-.933-.202h-.047a2.222 2.222 0 0 0-1.434.605c-.392.37-.64.87-.701 1.408-.023.2-.023.4 0 .6a2.76 2.76 0 0 1-1.546.791h-.013a2.148 2.148 0 0 0-1.058.574 2.225 2.225 0 0 0-.537 2.276 2.2 2.2 0 0 0 .687 1 8.437 8.437 0 0 1-2.184.372 9.724 9.724 0 0 1-2.82-.277 1.006 1.006 0 0 0-.46.048l-2.137 1.068c-.272.144-.52.167-.756-.024-.224-.169-.247-.42-.224-.72.095-.599.166-1.199.225-1.798a.654.654 0 0 0-.166-.395c-.932-.95-1.734-1.992-2.135-3.309-.757-2.614-.072-4.855 1.794-6.723 3.41-3.403 9.369-3.247 12.628.267v.003Zm4.249 8.644c.281.029.542.162.732.375.19.213.294.49.294.778 0 .576-.342 1.043-.909 1.151a3.805 3.805 0 0 0-1.84.886l-.189.182c-.119.12-.295.227-.414.048a.465.465 0 0 1 .048-.396 3.9 3.9 0 0 0 1.05-2.1c.052-.283.207-.536.435-.708a1.11 1.11 0 0 1 .793-.218v.002Zm-4.412-1.079c-.023.12.024.3-.047.372-.59.6-.909 1.319-1.074 2.147a1.077 1.077 0 0 1-.439.686 1.041 1.041 0 0 1-.788.168 1.18 1.18 0 0 1-.703-.4 1.215 1.215 0 0 1-.289-.764c.003-.25.09-.493.246-.687.157-.194.374-.328.615-.38a3.886 3.886 0 0 0 2.114-1.09c.063-.078.245-.054.362-.054l.003.002Zm1.05-2.255c.26-.004.513.083.715.247.203.164.343.395.396.653.13.811.505 1.561 1.073 2.146.072.073.024.277.048.396-.142 0-.316.048-.389-.023-.591-.625-1.323-.948-2.137-1.127a1.101 1.101 0 0 1-.651-.45 1.133 1.133 0 0 1-.19-.774c.032-.287.164-.552.372-.748a1.18 1.18 0 0 1 .76-.322l.004.002Z" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-apple-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M11.06 5.596c.354.354 1.853.27 2.83-.707.975-.976 1.06-2.475.706-2.828-.353-.354-1.852-.27-2.828.707-.977.976-1.06 2.475-.707 2.828ZM12 6.934c-.465 0-.872-.164-1.496-.426-.639-.268-1.532-.642-2.623-.459-2.067.348-3.422 1.532-4.163 3.053-.72 1.476-.842 3.221-.615 4.775a13.457 13.457 0 0 0 1.784 4.986c.849 1.387 1.972 2.563 3.245 3.067.857.339 1.797.073 2.644-.167.392-.111.812-.265 1.224-.265.412 0 .832.154 1.224.265.847.24 1.787.506 2.644.167 1.011-.4 1.92-1.221 2.663-2.209.753-1 1.39-2.239 1.83-3.581a1.01 1.01 0 0 0-.639-1.263 2.501 2.501 0 0 1-.133-4.706c.56-.22.802-.907.502-1.429-.777-1.354-2.08-2.375-3.972-2.693-1.091-.183-1.984.191-2.623.46-.624.261-1.031.425-1.496.425Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-windows-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="m10 5.258-5 .625V11h5V5.258Zm2-.25V11h7V4.133l-7 .875ZM10 13H5v5.117l5 .625V13Zm2 5.992V13h7v6.867l-7-.875ZM3 5.882v12.235a2 2 0 0 0 1.752 1.985l14.562 1.82A1.5 1.5 0 0 0 21 20.434V3.566a1.5 1.5 0 0 0-1.686-1.488L4.752 3.898A2 2 0 0 0 3 5.883Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-wechat-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="M8 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm5-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm1.62 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM17 15a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M17.982 9.368C17.7 5.671 14.072 3 10 3 5.76 3 2 5.896 2 9.833c0 2.24 1.248 4.171 3.076 5.39.108.397.035.816.035 1.221a1 1 0 0 0 1 1c.924 0 1.748-.318 2.464-.885.15.023.301.042.454.058.962 2.26 3.517 3.751 6.284 3.751a7.84 7.84 0 0 0 1.105-.078 3.3 3.3 0 0 0 2.054.71 1 1 0 0 0 1-1c0-.293-.04-.588.009-.88C20.974 18.1 22 16.496 22 14.629c0-2.45-1.714-4.398-4.018-5.26ZM10 5C6.508 5 4 7.327 4 9.833c0 1.477.837 2.858 2.264 3.777.531.343.76.957.83 1.559.086-.058.17-.118.253-.179.382-.278.754-.549 1.279-.451.056-3.287 3.203-5.65 6.687-5.65.192 0 .383.007.573.021C15.361 6.784 13.059 5 10 5Zm10 9.629c0-1.903-1.92-3.74-4.688-3.74-2.767 0-4.687 1.837-4.687 3.74 0 1.902 1.92 3.74 4.688 3.74a5.8 5.8 0 0 0 1.078-.101c.434-.082.819.1 1.15.36.099-.433.324-.842.706-1.088C19.363 16.82 20 15.753 20 14.629Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-chrome-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a7.98 7.98 0 0 1 .546-2.91l3.076 5.327a4.999 4.999 0 0 0 4.976 2.548l-1.709 2.959A8.002 8.002 0 0 1 4 12Zm3.401-1.966L5.694 7.077A7.986 7.986 0 0 1 12 4a7.985 7.985 0 0 1 6.245 3H12a5.001 5.001 0 0 0-4.599 3.034ZM12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm1.207 10.91A8.002 8.002 0 0 0 19.419 9H16c.628.836 1 1.874 1 3 0 .942-.26 1.823-.713 2.575l-3.08 5.335Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-windows-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" d="m12 21.008 7.314.914A1.5 1.5 0 0 0 21 20.434V13h-9v8.008ZM12 11h9V3.566a1.5 1.5 0 0 0-1.686-1.488L12 2.992V11Zm-2-7.758V11H3V5.883a2 2 0 0 1 1.752-1.985L10 3.242ZM10 13v7.758l-5.248-.656A2 2 0 0 1 3 18.117V13h7Z"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-diary-line" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" clip-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v1a1 1 0 0 0 0 2v2a1 1 0 0 0 0 2v2a1 1 0 1 0 0 2v2a1 1 0 1 0 0 2v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm0 16v2h12V4H6v14ZM8.5 5A1.5 1.5 0 0 0 7 6.5v3A1.5 1.5 0 0 0 8.5 11h7A1.5 1.5 0 0 0 17 9.5v-3A1.5 1.5 0 0 0 15.5 5h-7ZM9 9V7h6v2H9Z" fill-rule="evenodd" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-app-diary-fill" viewBox="0 0 24 24" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M6 2a2 2 0 0 0-2 2v1a1 1 0 0 0 0 2v2a1 1 0 0 0 0 2v2a1 1 0 1 0 0 2v2a1 1 0 1 0 0 2v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm2.5 4A1.5 1.5 0 0 0 7 7.5v1A1.5 1.5 0 0 0 8.5 10h7A1.5 1.5 0 0 0 17 8.5v-1A1.5 1.5 0 0 0 15.5 6h-7Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;/svg&gt;';</span>function <span class="fstat-no" title="function not covered" >c(</span>){<span class="cstat-no" title="statement not covered" >i||(i=!0,d())}<span class="cstat-no" title="statement not covered" ></span>t=<span class="fstat-no" title="function not covered" >fu</span>nction(){var e,t,n;<span class="cstat-no" title="statement not covered" >(n=document.createElement("div")).innerHTML=r,r=null,(t=n.getElementsByTagName("svg")[0])&amp;&amp;(t.setAttribute("aria-hidden","true"),t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="hidden",e=t,(n=document.body).firstChild?(t=n.firstChild).parentNode.insertBefore(e,t):n.appendChild(e))}</span>,document.addEventListener?["complete","loaded","interactive"].indexOf(document.readyState)&gt;-1?setTimeout(t,0):(n=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >document.removeEventListener("DOMContentLoaded",n,!1),t()}</span>,document.addEventListener("DOMContentLoaded",n,!1)):document.attachEvent&amp;&amp;(d=t,o=e.document,i=!1,(a=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >try{<span class="cstat-no" title="statement not covered" >o.documentElement.doScroll("left")}</span>catch(e){<span class="cstat-no" title="statement not covered" >return void setTimeout(a,50)}<span class="cstat-no" title="statement not covered" ></span>c</span>()}</span>)(),o.onreadystatechange=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >"complete"==o.readyState&amp;&amp;(o.onreadystatechange=null,c())}</span>)}</span>(window);</span>
  69 +&nbsp;</pre></td></tr></table></pre>
  70 +
  71 + <div class='push'></div><!-- for sticky footer -->
  72 + </div><!-- /wrapper -->
  73 + <div class='footer quiet pad2 space-top1 center small'>
  74 + Code coverage generated by
  75 + <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
  76 + at 2023-10-09T07:31:57.720Z
  77 + </div>
  78 + <script src="prettify.js"></script>
  79 + <script>
  80 + window.onload = function () {
  81 + prettyPrint();
  82 + };
  83 + </script>
  84 + <script src="sorter.js"></script>
  85 + <script src="block-navigation.js"></script>
  86 + </body>
  87 +</html>
  88 +
\ No newline at end of file
... ...
  1 +
  2 +<!doctype html>
  3 +<html lang="en">
  4 +
  5 +<head>
  6 + <title>Code coverage report for icon-base.js</title>
  7 + <meta charset="utf-8" />
  8 + <link rel="stylesheet" href="prettify.css" />
  9 + <link rel="stylesheet" href="base.css" />
  10 + <link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
  11 + <meta name="viewport" content="width=device-width, initial-scale=1" />
  12 + <style type='text/css'>
  13 + .coverage-summary .sorter {
  14 + background-image: url(sort-arrow-sprite.png);
  15 + }
  16 + </style>
  17 +</head>
  18 +
  19 +<body>
  20 +<div class='wrapper'>
  21 + <div class='pad1'>
  22 + <h1><a href="index.html">All files</a> icon-base.js</h1>
  23 + <div class='clearfix'>
  24 +
  25 + <div class='fl pad1y space-right2'>
  26 + <span class="strong">0% </span>
  27 + <span class="quiet">Statements</span>
  28 + <span class='fraction'>0/11</span>
  29 + </div>
  30 +
  31 +
  32 + <div class='fl pad1y space-right2'>
  33 + <span class="strong">0% </span>
  34 + <span class="quiet">Branches</span>
  35 + <span class='fraction'>0/14</span>
  36 + </div>
  37 +
  38 +
  39 + <div class='fl pad1y space-right2'>
  40 + <span class="strong">0% </span>
  41 + <span class="quiet">Functions</span>
  42 + <span class='fraction'>0/6</span>
  43 + </div>
  44 +
  45 +
  46 + <div class='fl pad1y space-right2'>
  47 + <span class="strong">0% </span>
  48 + <span class="quiet">Lines</span>
  49 + <span class='fraction'>0/1</span>
  50 + </div>
  51 +
  52 +
  53 + </div>
  54 + <p class="quiet">
  55 + Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
  56 + </p>
  57 + <template id="filterTemplate">
  58 + <div class="quiet">
  59 + Filter:
  60 + <input oninput="onInput()" type="search" id="fileSearch">
  61 + </div>
  62 + </template>
  63 + </div>
  64 + <div class='status-line low'></div>
  65 + <pre><table class="coverage">
  66 +<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
  67 +<a name='L2'></a><a href='#L2'>2</a></td><td class="line-coverage quiet"><span class="cline-any cline-no">&nbsp;</span>
  68 +<span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js"><span class="cstat-no" title="statement not covered" >!<span class="fstat-no" title="function not covered" >fu</span>nction(e){var t,n,d,o,i,a,r=<span class="cstat-no" title="statement not covered" >'&lt;svg&gt;&lt;symbol id="qx-icon-plus" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path fill-rule="evenodd" d="M7.333 7.333V1.667h1.333v5.666h5.667v1.334H8.666v5.666H7.333V8.667H1.666V7.333h5.667Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-edit" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path fill-rule="evenodd" d="M9.266 1.63a1 1 0 0 1 1.414 0l1.862 1.862a1 1 0 0 1 0 1.414l-6.816 6.817a1 1 0 0 1-.591.286l-2.016.236a1 1 0 0 1-1.113-1.069l.159-2.103a1 1 0 0 1 .29-.632L9.266 1.63ZM8.77 4.013l1.39 1.39L11.365 4.2l-1.39-1.39L8.77 4.014Zm.448 2.333-1.39-1.39-4.342 4.34-.12 1.578 1.5-.176 4.352-4.352ZM14 14.666H2v-1.333h12v1.334Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-delete" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path fill-rule="evenodd" d="M9.8 2a.6.6 0 0 1 .6.6v.6h3.215c.134 0 .183.014.232.04a.272.272 0 0 1 .113.113c.026.05.04.098.04.232v.43c0 .134-.014.183-.04.232a.272.272 0 0 1-.114.113c-.048.026-.097.04-.23.04H12.8v9a.6.6 0 0 1-.6.6H3.8a.6.6 0 0 1-.6-.6v-9h-.815c-.134 0-.183-.014-.232-.04a.273.273 0 0 1-.113-.113c-.026-.05-.04-.098-.04-.232v-.43c0-.134.014-.183.04-.232a.273.273 0 0 1 .113-.113c.05-.026.098-.04.232-.04H5.6v-.6a.6.6 0 0 1 .6-.6h3.6Zm1.8 2.4H4.4v8.4h7.2V4.4ZM7.1 6.2a.3.3 0 0 1 .3.3v4.2a.3.3 0 0 1-.3.3h-.6a.3.3 0 0 1-.3-.3V6.5a.3.3 0 0 1 .3-.3h.6Zm2.4 0a.3.3 0 0 1 .3.3v4.2a.3.3 0 0 1-.3.3h-.6a.3.3 0 0 1-.3-.3V6.5a.3.3 0 0 1 .3-.3h.6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-minus" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path fill-rule="evenodd" d="M14.333 8.667H1.667V7.333h12.666v1.334Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-info-circle-fill" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path clip-rule="evenodd" d="M1.333 8a6.667 6.667 0 1 1 13.334 0A6.667 6.667 0 0 1 1.333 8Zm7.334-2V4.667H7.333V6h1.334Zm-1.334.667v4.666h1.334V6.667H7.333Z" fill-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-exclamation-circle" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path clip-rule="evenodd" d="M8 13.333A5.333 5.333 0 1 0 8 2.667a5.333 5.333 0 0 0 0 10.666ZM14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0Zm-7.334 3.333V10h1.334v1.333H7.333Zm1.334-6.666v4.666H7.333V4.667h1.334Z" fill-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-help-circle-fill" viewBox="0 0 18 18" fill="currentColor"&gt;&lt;path clip-rule="evenodd" d="M1.5 9a7.5 7.5 0 1 1 15 0 7.5 7.5 0 0 1-15 0Zm6.225-1.508v-.173c0-.206.074-.434.239-.606.151-.158.447-.338 1.032-.338.549 0 .93.262 1.125.56.208.318.167.584.069.718-.123.166-.276.32-.461.486l-.2.175c-.133.116-.281.245-.4.358-.421.401-.879.96-.879 1.828l.002.38 1.5-.01-.002-.372c0-.257.106-.447.413-.74a8.21 8.21 0 0 1 .302-.27c.079-.068.165-.142.268-.234.213-.193.451-.424.662-.708.569-.768.436-1.738-.018-2.432-.468-.715-1.318-1.239-2.381-1.239-.92 0-1.634.298-2.116.801a2.389 2.389 0 0 0-.655 1.64v.176h1.5Zm.527 4.133v1.503h1.5v-1.503h-1.5Z" fill-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="check-circle-fill" viewBox="0 0 24 24" fill="currentColor"&gt;&lt;path clip-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm9 3.914 6.457-6.457-1.414-1.414L11 13.086l-2.793-2.793-1.414 1.414L11 15.914Z" fill-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-exclamation-circle-fill" viewBox="0 0 24 24" fill="currentColor"&gt;&lt;path clip-rule="evenodd" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm9 3v2h2v-2h-2Zm2-1V7h-2v7h2Z" fill-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-left" viewBox="0 0 48 48" fill="currentColor"&gt;&lt;path fill-rule="evenodd" d="m30.586 6.986 2.828 2.828-14.142 14.142 14.142 14.142-2.828 2.829L15.03 25.37l1.414-1.415-1.414 1.415-1.415-1.415 16.97-16.97Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-caret-down" viewBox="0 0 48 48" fill="currentColor"&gt;&lt;path d="M24.937 34.829a1.2 1.2 0 0 1-1.874 0L9.56 17.949c-.63-.784-.07-1.949.937-1.949h27.006c1.007 0 1.566 1.164.937 1.95L24.937 34.829Z"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-close" viewBox="0 0 48 48" fill="currentColor"&gt;&lt;path fill-rule="evenodd" d="M21.172 24 8.444 11.272l2.828-2.828L24 21.172 36.728 8.444l2.828 2.828L26.828 24l12.728 12.728-2.828 2.828L24 26.828 11.272 39.556l-2.828-2.828L21.172 24Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-close-circle-fill" viewBox="0 0 48 48" fill="currentColor"&gt;&lt;path clip-rule="evenodd" d="M4 24C4 12.954 12.954 4 24 4s20 8.954 20 20-8.954 20-20 20S4 35.046 4 24Zm12.228-4.943 4.95 4.95-4.95 4.95 2.829 2.828 4.95-4.95 4.95 4.95 2.828-2.828-4.95-4.95 4.95-4.95-2.829-2.828-4.95 4.95-4.95-4.95-2.828 2.828Z" fill-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-info-circle" viewBox="0 0 48 48" fill="currentColor"&gt;&lt;path fill-rule="evenodd" d="M24 8C15.163 8 8 15.163 8 24s7.163 16 16 16 16-7.163 16-16S32.837 8 24 8ZM4 24C4 12.954 12.954 4 24 4s20 8.954 20 20-8.954 20-20 20S4 35.046 4 24Zm22-10v4h-4v-4h4Zm-4 20V20h4v14h-4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;/svg&gt;';</span>function <span class="fstat-no" title="function not covered" >c(</span>){<span class="cstat-no" title="statement not covered" >i||(i=!0,d())}<span class="cstat-no" title="statement not covered" ></span>t=<span class="fstat-no" title="function not covered" >fu</span>nction(){var e,t,n;<span class="cstat-no" title="statement not covered" >(n=document.createElement("div")).innerHTML=r,r=null,(t=n.getElementsByTagName("svg")[0])&amp;&amp;(t.setAttribute("aria-hidden","true"),t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="hidden",e=t,(n=document.body).firstChild?(t=n.firstChild).parentNode.insertBefore(e,t):n.appendChild(e))}</span>,document.addEventListener?["complete","loaded","interactive"].indexOf(document.readyState)&gt;-1?setTimeout(t,0):(n=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >document.removeEventListener("DOMContentLoaded",n,!1),t()}</span>,document.addEventListener("DOMContentLoaded",n,!1)):document.attachEvent&amp;&amp;(d=t,o=e.document,i=!1,(a=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >try{<span class="cstat-no" title="statement not covered" >o.documentElement.doScroll("left")}</span>catch(e){<span class="cstat-no" title="statement not covered" >return void setTimeout(a,50)}<span class="cstat-no" title="statement not covered" ></span>c</span>()}</span>)(),o.onreadystatechange=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >"complete"==o.readyState&amp;&amp;(o.onreadystatechange=null,c())}</span>)}</span>(window);</span>
  69 +&nbsp;</pre></td></tr></table></pre>
  70 +
  71 + <div class='push'></div><!-- for sticky footer -->
  72 + </div><!-- /wrapper -->
  73 + <div class='footer quiet pad2 space-top1 center small'>
  74 + Code coverage generated by
  75 + <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
  76 + at 2023-10-09T07:31:57.720Z
  77 + </div>
  78 + <script src="prettify.js"></script>
  79 + <script>
  80 + window.onload = function () {
  81 + prettyPrint();
  82 + };
  83 + </script>
  84 + <script src="sorter.js"></script>
  85 + <script src="block-navigation.js"></script>
  86 + </body>
  87 +</html>
  88 +
\ No newline at end of file
... ...
  1 +
  2 +<!doctype html>
  3 +<html lang="en">
  4 +
  5 +<head>
  6 + <title>Code coverage report for icon-field.js</title>
  7 + <meta charset="utf-8" />
  8 + <link rel="stylesheet" href="prettify.css" />
  9 + <link rel="stylesheet" href="base.css" />
  10 + <link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
  11 + <meta name="viewport" content="width=device-width, initial-scale=1" />
  12 + <style type='text/css'>
  13 + .coverage-summary .sorter {
  14 + background-image: url(sort-arrow-sprite.png);
  15 + }
  16 + </style>
  17 +</head>
  18 +
  19 +<body>
  20 +<div class='wrapper'>
  21 + <div class='pad1'>
  22 + <h1><a href="index.html">All files</a> icon-field.js</h1>
  23 + <div class='clearfix'>
  24 +
  25 + <div class='fl pad1y space-right2'>
  26 + <span class="strong">0% </span>
  27 + <span class="quiet">Statements</span>
  28 + <span class='fraction'>0/11</span>
  29 + </div>
  30 +
  31 +
  32 + <div class='fl pad1y space-right2'>
  33 + <span class="strong">0% </span>
  34 + <span class="quiet">Branches</span>
  35 + <span class='fraction'>0/14</span>
  36 + </div>
  37 +
  38 +
  39 + <div class='fl pad1y space-right2'>
  40 + <span class="strong">0% </span>
  41 + <span class="quiet">Functions</span>
  42 + <span class='fraction'>0/6</span>
  43 + </div>
  44 +
  45 +
  46 + <div class='fl pad1y space-right2'>
  47 + <span class="strong">0% </span>
  48 + <span class="quiet">Lines</span>
  49 + <span class='fraction'>0/1</span>
  50 + </div>
  51 +
  52 +
  53 + </div>
  54 + <p class="quiet">
  55 + Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
  56 + </p>
  57 + <template id="filterTemplate">
  58 + <div class="quiet">
  59 + Filter:
  60 + <input oninput="onInput()" type="search" id="fileSearch">
  61 + </div>
  62 + </template>
  63 + </div>
  64 + <div class='status-line low'></div>
  65 + <pre><table class="coverage">
  66 +<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
  67 +<a name='L2'></a><a href='#L2'>2</a></td><td class="line-coverage quiet"><span class="cline-any cline-no">&nbsp;</span>
  68 +<span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js"><span class="cstat-no" title="statement not covered" >!<span class="fstat-no" title="function not covered" >fu</span>nction(e){var t,n,d,o,i,a,r=<span class="cstat-no" title="statement not covered" >'&lt;svg&gt;&lt;symbol id="icon-field-multi-select" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;rect x="10" y="1.5" width="5" height="5" rx="1"/&gt;&lt;path d="M7.578 2.19 4.043 5.724a.5.5 0 0 1-.707 0L1.922 4.31h0" stroke-linecap="round"/&gt;&lt;rect x="10" y="9.5" width="5" height="5" rx="1"/&gt;&lt;path d="m7.578 10.19-3.535 3.535a.5.5 0 0 1-.707 0L1.922 12.31h0" stroke-linecap="round"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-department" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" fill="none" fill-rule="evenodd" transform="translate(1 1)" stroke="currentColor" stroke-width="1.33"&gt;&lt;rect y="9.5" width="4.5" height="4.5" rx="1"/&gt;&lt;path d="M2 9.5v-1a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v1h0" stroke-linecap="round"/&gt;&lt;rect x="9.5" y="9.5" width="4.5" height="4.5" rx="1"/&gt;&lt;rect x="4.25" width="5.5" height="5.5" rx="1"/&gt;&lt;path d="M7 5.5V7" stroke-linecap="square"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-created-at" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M15 8a7 7 0 1 0-7 7M8 4.5V8m0 0-3 2.5m6 2.5h4m-2-2v4" data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" stroke-linecap="round" fill="none"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-divider" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M15 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V1h0m14 14v-3a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v3h0m3-7h8" data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" stroke-linecap="round" fill="none"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-percent" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;path d="M14 2 2 14" stroke-linecap="round"/&gt;&lt;circle cx="5.5" cy="3.5" r="1.5"/&gt;&lt;circle cx="10.5" cy="12.5" r="1.5"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-email" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M14 1.835c.92 0 1.665.745 1.665 1.665v9c0 .92-.745 1.665-1.665 1.665H2c-.92 0-1.665-.745-1.665-1.665v-9c0-.92.745-1.665 1.665-1.665Zm.2 2.043-.083.07-5.15 3.678a1.665 1.665 0 0 1-1.798.088l-.137-.088-5.149-3.678a.662.662 0 0 1-.22-.267l.002 8.819c0 .185.15.335.335.335h12c.185 0 .335-.15.335-.335l.002-8.82a.66.66 0 0 1-.137.198Zm-1.277-.713H3.076l4.73 3.379c.092.066.211.08.315.04l.074-.04 4.728-3.379Z" fill="currentColor" data-follow-fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-boolean" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g fill="none" fill-rule="evenodd"&gt;&lt;rect data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" x="1" y="2" width="14" height="5" rx="2.5"/&gt;&lt;rect data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" x="1" y="9" width="14" height="5" rx="2.5"/&gt;&lt;circle data-follow-fill="currentColor" fill="currentColor" cx="12.5" cy="4.5" r="1"/&gt;&lt;circle data-follow-fill="currentColor" fill="currentColor" cx="3.5" cy="11.5" r="1"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-created-by" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" stroke-linecap="round" fill="none" fill-rule="evenodd"&gt;&lt;circle cx="8" cy="4.5" r="3"/&gt;&lt;path d="M15 15a7 7 0 0 0-14 0m5-2h4m-2-2v4"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-subform" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;rect x="1" y="2" width="14" height="12" rx="1"/&gt;&lt;path d="M1 6h14M5.5 2v12m5-12v12M1 10h14" stroke-linecap="round"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-updated-at" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" stroke-linecap="round" fill="none" fill-rule="evenodd"&gt;&lt;path d="M15 8a7 7 0 1 0-7 7M8 4.5V8m0 0-3 2.5"/&gt;&lt;path d="M14.342 10.833a2.625 2.625 0 0 0-2.352-1.458c-1.03 0-1.903.594-2.332 1.458m0-1.166v1.166m.989 0h-.989m0 2.334a2.625 2.625 0 0 0 2.352 1.458c1.03 0 1.903-.594 2.332-1.458m0 1.166v-1.166m-.989 0h.989"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-updated-by" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" stroke-linecap="round" fill="none" fill-rule="evenodd"&gt;&lt;circle cx="8" cy="4" r="2"/&gt;&lt;path d="M15 14a7 7 0 0 0-14 0"/&gt;&lt;path d="M10.342 10.833A2.625 2.625 0 0 0 7.99 9.375c-1.03 0-1.903.594-2.332 1.458m0-1.166v1.166m.989 0h-.989m0 2.334a2.625 2.625 0 0 0 2.352 1.458c1.03 0 1.903-.594 2.332-1.458m0 1.166v-1.166m-.989 0h.989"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-no" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;rect x="1" y="1" width="14" height="14" rx="1"/&gt;&lt;path d="M3 8.5V5.135a.05.05 0 0 1 .088-.032l2.824 3.294A.05.05 0 0 0 6 8.365V5h0" stroke-linecap="round"/&gt;&lt;ellipse cx="9.5" cy="6.75" rx="1.5" ry="1.75"/&gt;&lt;path d="M12.5 8.5h.5m-10 3h10" stroke-linecap="round"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-tree" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;rect x="5" y="1.5" width="10" height="3" rx=".1"/&gt;&lt;rect x="7" y="8" width="8" height="2" rx=".1"/&gt;&lt;path d="M2 4v10m0-5h4.5M3 3h2" stroke-linecap="round"/&gt;&lt;rect x="7" y="13" width="8" height="2" rx=".1"/&gt;&lt;path d="M2 14h4.5" stroke-linecap="round"/&gt;&lt;circle cx="2" cy="3" r="1"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-text" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M1 2h10m-5 .5V14m3-6h6m-3 0v6" data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" stroke-linecap="round" fill="none"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-time" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;circle cx="8" cy="8" r="7"/&gt;&lt;path d="M8 4.5V8m0 0 3 2.5" stroke-linecap="round"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-remark" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;path d="M4 1h8a1 1 0 0 1 1 1v12.616a.2.2 0 0 1-.315.164l-4.57-3.2a.2.2 0 0 0-.23 0l-4.57 3.2A.2.2 0 0 1 3 14.616V2a1 1 0 0 1 1-1Z"/&gt;&lt;path d="M5.5 4.5h5m-5 3h2" stroke-linecap="round"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-finance" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;circle cx="8" cy="8" r="7"/&gt;&lt;path d="M5.75 7.255h4.5m-4.5 2.25h4.5m-2.247-2.25v4.5M10.25 4.63 8 6.88 5.75 4.63" stroke-linecap="round" stroke-linejoin="round"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-rel" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;rect x="1" y="1" width="9" height="9" rx="1"/&gt;&lt;rect x="6" y="6" width="9" height="9" rx="1"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-location" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.2" stroke-linejoin="round" fill="none" fill-rule="evenodd"&gt;&lt;path d="M3.05 11.065C1.784 11.445 1 11.97 1 12.55c0 1.16 3.134 2.1 7 2.1s7-.94 7-2.1c0-.58-.784-1.105-2.05-1.485" stroke-linecap="round"/&gt;&lt;path d="M8 11.85s4.55-2.974 4.55-6.411C12.55 2.987 10.513 1 8 1S3.45 2.987 3.45 5.439C3.45 8.876 8 11.85 8 11.85Z"/&gt;&lt;path d="M8 7.3a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5Z"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-datetime" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;path d="M3 2.5h10a2 2 0 0 1 2 2V13a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4.5a2 2 0 0 1 2-2Z"/&gt;&lt;path d="M1 7h14M4.5 9.5H6m4 0h1.5m-7 3H6M5 1v3m6-3v3" stroke-linecap="round"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-user" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" stroke-linecap="round" fill="none" fill-rule="evenodd"&gt;&lt;circle cx="8" cy="4.5" r="3"/&gt;&lt;path d="M15 15a7 7 0 0 0-14 0"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-select" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;rect x="10" y="1.5" width="5" height="5" rx="1"/&gt;&lt;path d="M7.578 2.19 4.043 5.724a.5.5 0 0 1-.707 0L1.922 4.31h0" stroke-linecap="round"/&gt;&lt;rect x="10" y="9.5" width="5" height="5" rx="1"/&gt;&lt;rect x="2" y="9.5" width="5" height="5" rx="1"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-mobile" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;path d="M4 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1Z"/&gt;&lt;path d="M3 11h10" stroke-linecap="square"/&gt;&lt;path d="M7 13h2" stroke-linecap="round"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-embed" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;path d="m9 7-2 5" stroke-linecap="round"/&gt;&lt;rect x="1" y="2" width="14" height="12" rx="1"/&gt;&lt;path d="M5 10.918 3.656 9.575a.1.1 0 0 1 0-.141L5 8.09h0m6 2.828 1.344-1.343a.1.1 0 0 0 0-.141L11 8.09h0" stroke-linecap="round"/&gt;&lt;path d="M1 5h14" stroke-linecap="square"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-num" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g fill="none" fill-rule="evenodd"&gt;&lt;path data-follow-stroke="currentColor" d="M1 3h14M1 13h14" stroke="currentColor" stroke-width="1.33" stroke-linecap="round"/&gt;&lt;path data-follow-fill="currentColor" d="M3.902 11.102V4.694h-1.17L1.427 5.828v1.26l1.305-1.134v5.148h1.17Zm5.913 0v-1.053H7.34L9.131 7.97c.258-.3.437-.546.535-.738.1-.192.149-.435.149-.729 0-.57-.18-1.023-.54-1.359-.36-.336-.828-.504-1.404-.504-.57 0-1.038.168-1.404.504-.366.336-.549.792-.549 1.368h1.17c0-.294.074-.504.22-.63a.834.834 0 0 1 .563-.189c.246 0 .436.074.572.22.135.147.202.341.202.581a.938.938 0 0 1-.076.387 1.745 1.745 0 0 1-.257.387l-2.394 2.781v1.053h3.897Zm2.88.054c.582 0 1.066-.167 1.454-.5.387-.333.58-.802.58-1.408 0-.366-.073-.666-.22-.9a1.583 1.583 0 0 0-.608-.558c.228-.12.408-.287.54-.5.132-.213.198-.484.198-.814 0-.54-.183-.981-.549-1.323-.366-.342-.834-.513-1.404-.513-.558 0-1.024.167-1.4.5-.374.333-.562.775-.562 1.327h1.17c0-.24.075-.429.225-.567a.805.805 0 0 1 .567-.207c.222 0 .408.072.558.216.15.144.225.345.225.603 0 .24-.067.434-.202.58-.135.147-.338.221-.608.221h-.171V8.33h.171c.282 0 .502.08.661.239.16.158.239.373.239.643 0 .288-.08.508-.239.662-.159.152-.367.229-.625.229a.921.921 0 0 1-.621-.216c-.168-.144-.252-.351-.252-.621h-1.17c0 .63.197 1.102.59 1.418.392.315.877.472 1.453.472Z" fill="currentColor" fill-rule="nonzero"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-address" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" stroke-linejoin="round" fill="none" fill-rule="evenodd"&gt;&lt;path d="M8 15s6-3.837 6-8.273C14 3.564 11.314 1 8 1S2 3.564 2 6.727C2 11.163 8 15 8 15Z"/&gt;&lt;path d="M8 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-ref" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;path d="m4 11 3.907-9.768a.1.1 0 0 1 .186 0L12 11h0" stroke-linecap="round"/&gt;&lt;path d="M5.5 8.5h5" stroke-linecap="square"/&gt;&lt;path d="M1 14h14" stroke-linecap="round"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-formula" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M9 15H1.972a.5.5 0 0 1-.407-.79l4.227-5.92a.5.5 0 0 0 0-.58L1.565 1.79A.5.5 0 0 1 1.972 1H9m2 14 4-5m0 5-4-5" data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" stroke-linecap="round" fill="none"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-richtext" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="1.33" fill="none" fill-rule="evenodd"&gt;&lt;path d="M2 2h12a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Z"/&gt;&lt;path d="M4 5h4m2 0h2m-2 3h2m-8 3h8M6 5v4" stroke-linecap="round"/&gt;&lt;/g&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-file" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path data-follow-stroke="currentColor" fill="none" d="M8.035 2.138 2.06 8.112a3.62 3.62 0 0 0 0 5.12h0a3.62 3.62 0 0 0 5.12 0l7.112-7.111a2.414 2.414 0 0 0 0-3.414h0a2.414 2.414 0 0 0-3.414 0L3.767 9.819a1.207 1.207 0 0 0 0 1.707h0a1.207 1.207 0 0 0 1.707 0l5.974-5.974" stroke="currentColor" stroke-width="1.33" stroke-linecap="round" stroke-linejoin="round"/&gt;&lt;/symbol&gt;&lt;symbol id="icon-field-img" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M14 1.335c.92 0 1.665.745 1.665 1.665v10c0 .92-.745 1.665-1.665 1.665H2C1.08 14.665.335 13.92.335 13V3c0-.92.745-1.665 1.665-1.665ZM8.832 8.699l-1.8 2.102a.667.667 0 0 1-.834.146l-.087-.06-1.378-1.101-3.068 3.068V13c0 .162.115.297.267.328l.068.007h12c.185 0 .335-.15.335-.335v-.093L8.832 8.699ZM14 2.665H2A.335.335 0 0 0 1.665 3v7.972l2.549-2.547a.665.665 0 0 1 .793-.111l.093.061 1.339 1.072 1.793-2.09c.207-.241.55-.3.821-.152l.088.056 5.194 3.972V3a.335.335 0 0 0-.267-.328L14 2.665Zm-9.5 1.17a1.665 1.665 0 1 1 0 3.33 1.665 1.665 0 0 1 0-3.33Zm0 1.33a.335.335 0 1 0 0 .67.335.335 0 0 0 0-.67Z" fill="currentColor" data-follow-fill="currentColor"/&gt;&lt;/symbol&gt;&lt;/svg&gt;';</span>function <span class="fstat-no" title="function not covered" >c(</span>){<span class="cstat-no" title="statement not covered" >i||(i=!0,d())}<span class="cstat-no" title="statement not covered" ></span>t=<span class="fstat-no" title="function not covered" >fu</span>nction(){var e,t,n;<span class="cstat-no" title="statement not covered" >(n=document.createElement("div")).innerHTML=r,r=null,(t=n.getElementsByTagName("svg")[0])&amp;&amp;(t.setAttribute("aria-hidden","true"),t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="hidden",e=t,(n=document.body).firstChild?(t=n.firstChild).parentNode.insertBefore(e,t):n.appendChild(e))}</span>,document.addEventListener?["complete","loaded","interactive"].indexOf(document.readyState)&gt;-1?setTimeout(t,0):(n=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >document.removeEventListener("DOMContentLoaded",n,!1),t()}</span>,document.addEventListener("DOMContentLoaded",n,!1)):document.attachEvent&amp;&amp;(d=t,o=e.document,i=!1,(a=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >try{<span class="cstat-no" title="statement not covered" >o.documentElement.doScroll("left")}</span>catch(e){<span class="cstat-no" title="statement not covered" >return void setTimeout(a,50)}<span class="cstat-no" title="statement not covered" ></span>c</span>()}</span>)(),o.onreadystatechange=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >"complete"==o.readyState&amp;&amp;(o.onreadystatechange=null,c())}</span>)}</span>(window);</span>
  69 +&nbsp;</pre></td></tr></table></pre>
  70 +
  71 + <div class='push'></div><!-- for sticky footer -->
  72 + </div><!-- /wrapper -->
  73 + <div class='footer quiet pad2 space-top1 center small'>
  74 + Code coverage generated by
  75 + <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
  76 + at 2023-10-09T07:31:57.720Z
  77 + </div>
  78 + <script src="prettify.js"></script>
  79 + <script>
  80 + window.onload = function () {
  81 + prettyPrint();
  82 + };
  83 + </script>
  84 + <script src="sorter.js"></script>
  85 + <script src="block-navigation.js"></script>
  86 + </body>
  87 +</html>
  88 +
\ No newline at end of file
... ...
  1 +
  2 +<!doctype html>
  3 +<html lang="en">
  4 +
  5 +<head>
  6 + <title>Code coverage report for icon-flow.js</title>
  7 + <meta charset="utf-8" />
  8 + <link rel="stylesheet" href="prettify.css" />
  9 + <link rel="stylesheet" href="base.css" />
  10 + <link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
  11 + <meta name="viewport" content="width=device-width, initial-scale=1" />
  12 + <style type='text/css'>
  13 + .coverage-summary .sorter {
  14 + background-image: url(sort-arrow-sprite.png);
  15 + }
  16 + </style>
  17 +</head>
  18 +
  19 +<body>
  20 +<div class='wrapper'>
  21 + <div class='pad1'>
  22 + <h1><a href="index.html">All files</a> icon-flow.js</h1>
  23 + <div class='clearfix'>
  24 +
  25 + <div class='fl pad1y space-right2'>
  26 + <span class="strong">0% </span>
  27 + <span class="quiet">Statements</span>
  28 + <span class='fraction'>0/11</span>
  29 + </div>
  30 +
  31 +
  32 + <div class='fl pad1y space-right2'>
  33 + <span class="strong">0% </span>
  34 + <span class="quiet">Branches</span>
  35 + <span class='fraction'>0/14</span>
  36 + </div>
  37 +
  38 +
  39 + <div class='fl pad1y space-right2'>
  40 + <span class="strong">0% </span>
  41 + <span class="quiet">Functions</span>
  42 + <span class='fraction'>0/6</span>
  43 + </div>
  44 +
  45 +
  46 + <div class='fl pad1y space-right2'>
  47 + <span class="strong">0% </span>
  48 + <span class="quiet">Lines</span>
  49 + <span class='fraction'>0/1</span>
  50 + </div>
  51 +
  52 +
  53 + </div>
  54 + <p class="quiet">
  55 + Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
  56 + </p>
  57 + <template id="filterTemplate">
  58 + <div class="quiet">
  59 + Filter:
  60 + <input oninput="onInput()" type="search" id="fileSearch">
  61 + </div>
  62 + </template>
  63 + </div>
  64 + <div class='status-line low'></div>
  65 + <pre><table class="coverage">
  66 +<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
  67 +<a name='L2'></a><a href='#L2'>2</a></td><td class="line-coverage quiet"><span class="cline-any cline-no">&nbsp;</span>
  68 +<span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js"><span class="cstat-no" title="statement not covered" >!<span class="fstat-no" title="function not covered" >fu</span>nction(e){var t,n,d,o,i,a,r=<span class="cstat-no" title="statement not covered" >'&lt;svg&gt;&lt;symbol id="qx-icon-flow-condition" viewBox="0 0 16 16" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M6 4a2 2 0 1 1 2.667 1.886v1.447h2a2 2 0 0 1 2 2v.78a2 2 0 1 1-1.334 0v-.78a.667.667 0 0 0-.666-.666H5.333a.667.667 0 0 0-.666.666v.78a2 2 0 1 1-1.334 0v-.78a2 2 0 0 1 2-2h2V5.886A2 2 0 0 1 6 4Z" fill="currentColor"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-start" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M5.844 3.658a.333.333 0 0 0-.512.281v8.12c0 .262.29.422.512.28l6.38-4.06a.333.333 0 0 0 0-.562l-6.38-4.059Z"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-end" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path fill-rule="evenodd" clip-rule="evenodd" d="M9 2a1 1 0 1 0-2 0v6.667a1 1 0 0 0 2 0V2ZM5.236 3.833a1 1 0 0 0-1.107-1.666 7 7 0 1 0 7.743 0 1 1 0 1 0-1.108 1.666 5 5 0 1 1-5.528 0Z"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-loop" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M10 3.333a2 2 0 1 0 4 0 2 2 0 0 0-4 0Zm-.667 0a.667.667 0 0 0-.666-.666h-3a3 3 0 1 0 0 6h4.666a1.667 1.667 0 1 1 0 3.333h-3a.667.667 0 0 0 0 1.333h3a3 3 0 1 0 0-6H5.667a1.667 1.667 0 1 1 0-3.333h3a.667.667 0 0 0 .666-.667Z"/&gt;&lt;path d="M4 14.667a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-branch" viewBox="0 0 48 48" fill="currentColor"&gt;&lt;path fill-rule="evenodd" d="M13 38a2 2 0 1 0 4 0 2 2 0 0 0-4 0Zm2 6a6 6 0 0 1-2-11.659V15.66a6 6 0 1 1 4 0v2.336c.009.035.057.158.269.382.322.34.868.745 1.69 1.214 1.265.72 2.84 1.411 4.608 2.186.565.247 1.15.504 1.75.772 2.373 1.062 4.952 2.303 6.945 3.859 1.837 1.434 3.462 3.364 3.706 5.922a6 6 0 1 1-4.04.037c-.203-.9-.858-1.815-2.128-2.806-1.569-1.225-3.74-2.297-6.117-3.36-.513-.23-1.04-.461-1.571-.694-1.806-.79-3.65-1.598-5.112-2.429v9.263A6 6 0 0 1 15 44Zm1.998-26.016.002.01a.033.033 0 0 0-.002-.01ZM32 38a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM15 12a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-extract" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path fill-rule="evenodd" d="m5.706 3.591-.378 5.942 1.085-.937a.725.725 0 0 1 1.142.266l1.81 4.278.578-.247-1.724-4.121a.725.725 0 0 1 .624-1.004l1.47-.09L5.706 3.59ZM4.454 2.264a.725.725 0 0 1 1.205-.496l6.634 5.884a.725.725 0 0 1-.436 1.266l-2.078.128 1.394 3.332a1.333 1.333 0 0 1-.707 1.742l-.58.246a1.333 1.333 0 0 1-1.75-.707l-1.484-3.508-1.549 1.338a.725.725 0 0 1-1.198-.594l.55-8.63Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-boxline" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path clip-rule="evenodd" d="M5.044 2c-.468 0-.902.246-1.143.647L2.285 5.34A2 2 0 0 0 2 6.37v6.297C2 13.403 2.597 14 3.333 14h9.334c.736 0 1.333-.597 1.333-1.333V6.369a2 2 0 0 0-.285-1.029l-1.616-2.693A1.333 1.333 0 0 0 10.956 2H5.044Zm2.29 1.333h-2.29l-1.2 2h3.49v-2Zm-4 3.334v6h9.333v-6H3.333Zm8.822-1.334h-3.49v-2h2.29l1.2 2Z" fill-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-clear" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path fill-rule="evenodd" d="M10.666 2.667c0-.737-.596-1.334-1.333-1.334H6.666c-.736 0-1.333.597-1.333 1.334V6H2.666c-.736 0-1.333.597-1.333 1.333v6c0 .737.597 1.334 1.334 1.334h10.666c.736 0 1.333-.597 1.333-1.334v-6c0-.736-.597-1.333-1.333-1.333h-2.667V2.667Zm-4 0h2.667V6c0 .736.597 1.333 1.333 1.333h2.667v1.334H2.667V7.333h2.666c.737 0 1.333-.597 1.333-1.333V2.667Zm-4 7.333h10.667v3.333H12V12a.667.667 0 1 0-1.334 0v1.333h-2V12a.667.667 0 1 0-1.333 0v1.333h-2V12A.667.667 0 1 0 4 12v1.333H2.667V10Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-delete" viewBox="0 0 16 16" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M9.8 2a.6.6 0 0 1 .6.6v.6h3.215c.134 0 .183.014.232.04a.272.272 0 0 1 .113.113c.026.05.04.098.04.232v.43c0 .134-.014.183-.04.232a.272.272 0 0 1-.114.113c-.048.026-.097.04-.23.04H12.8v9a.6.6 0 0 1-.6.6H3.8a.6.6 0 0 1-.6-.6v-9h-.815c-.134 0-.183-.014-.232-.04a.273.273 0 0 1-.113-.113c-.026-.05-.04-.098-.04-.232v-.43c0-.134.014-.183.04-.232a.273.273 0 0 1 .113-.113c.05-.026.098-.04.232-.04H5.6v-.6a.6.6 0 0 1 .6-.6h3.6Zm1.8 2.4H4.4v8.4h7.2V4.4ZM7.1 6.2a.3.3 0 0 1 .3.3v4.2a.3.3 0 0 1-.3.3h-.6a.3.3 0 0 1-.3-.3V6.5a.3.3 0 0 1 .3-.3h.6Zm2.4 0a.3.3 0 0 1 .3.3v4.2a.3.3 0 0 1-.3.3h-.6a.3.3 0 0 1-.3-.3V6.5a.3.3 0 0 1 .3-.3h.6Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-copy" viewBox="0 0 16 16" fill="none"&gt;&lt;path data-follow-fill="currentColor" fill="currentColor" fill-rule="evenodd" d="M12.667 2.667h-6V1.333h6c.736 0 1.333.597 1.333 1.334V10h-1.333V2.667ZM2 5.333C2 4.597 2.597 4 3.333 4H10c.735 0 1.333.594 1.333 1.332v8.004a1.33 1.33 0 0 1-1.332 1.33H3.33A1.332 1.332 0 0 1 2 13.334v-8Zm8 0H3.333v8H10v-8Z" clip-rule="evenodd"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-break" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M13.886 5.886a.667.667 0 0 1-.943 0L12 4.943l-.943.943a.667.667 0 1 1-.943-.943L11.057 4l-.943-.943a.667.667 0 0 1 .943-.943l.943.943.943-.943a.667.667 0 0 1 .943.943L12.943 4l.943.943c.26.26.26.682 0 .943zM4 2a2 2 0 0 0-.667 3.886v4.228a2 2 0 1 0 1.334 0V5.886A2 2 0 0 0 4 2zm8 12a2 2 0 0 0 .667-3.886v-2.78a.667.667 0 0 0-1.334 0v2.78A2 2 0 0 0 12 14z"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-add" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M7.333 7.333V1.667h1.333v5.666h5.667v1.334H8.666v5.666H7.333V8.667H1.666V7.333h5.667Z"/&gt;&lt;/symbol&gt;&lt;symbol id="qx-icon-flow-code" viewBox="0 0 16 16" fill="currentColor"&gt;&lt;path d="M6.326 13.795 8.41 1.978l1.313.231L7.64 14.027l-1.313-.232ZM2.75 8l3.3-3.3-.943-.943L.864 8l4.242 4.243.943-.943L2.75 8Zm8.14-4.243L15.133 8l-4.242 4.243-.943-.943 3.3-3.3-3.3-3.3.943-.943Z"/&gt;&lt;/symbol&gt;&lt;/svg&gt;';</span>function <span class="fstat-no" title="function not covered" >c(</span>){<span class="cstat-no" title="statement not covered" >i||(i=!0,d())}<span class="cstat-no" title="statement not covered" ></span>t=<span class="fstat-no" title="function not covered" >fu</span>nction(){var e,t,n;<span class="cstat-no" title="statement not covered" >(n=document.createElement("div")).innerHTML=r,r=null,(t=n.getElementsByTagName("svg")[0])&amp;&amp;(t.setAttribute("aria-hidden","true"),t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="hidden",e=t,(n=document.body).firstChild?(t=n.firstChild).parentNode.insertBefore(e,t):n.appendChild(e))}</span>,document.addEventListener?["complete","loaded","interactive"].indexOf(document.readyState)&gt;-1?setTimeout(t,0):(n=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >document.removeEventListener("DOMContentLoaded",n,!1),t()}</span>,document.addEventListener("DOMContentLoaded",n,!1)):document.attachEvent&amp;&amp;(d=t,o=e.document,i=!1,(a=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >try{<span class="cstat-no" title="statement not covered" >o.documentElement.doScroll("left")}</span>catch(e){<span class="cstat-no" title="statement not covered" >return void setTimeout(a,50)}<span class="cstat-no" title="statement not covered" ></span>c</span>()}</span>)(),o.onreadystatechange=<span class="fstat-no" title="function not covered" >fu</span>nction(){<span class="cstat-no" title="statement not covered" >"complete"==o.readyState&amp;&amp;(o.onreadystatechange=null,c())}</span>)}</span>(window);</span>
  69 +&nbsp;</pre></td></tr></table></pre>
  70 +
  71 + <div class='push'></div><!-- for sticky footer -->
  72 + </div><!-- /wrapper -->
  73 + <div class='footer quiet pad2 space-top1 center small'>
  74 + Code coverage generated by
  75 + <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
  76 + at 2023-10-09T07:31:57.720Z
  77 + </div>
  78 + <script src="prettify.js"></script>
  79 + <script>
  80 + window.onload = function () {
  81 + prettyPrint();
  82 + };
  83 + </script>
  84 + <script src="sorter.js"></script>
  85 + <script src="block-navigation.js"></script>
  86 + </body>
  87 +</html>
  88 +
\ No newline at end of file
... ...
  1 +
  2 +<!doctype html>
  3 +<html lang="en">
  4 +
  5 +<head>
  6 + <title>Code coverage report for All files</title>
  7 + <meta charset="utf-8" />
  8 + <link rel="stylesheet" href="prettify.css" />
  9 + <link rel="stylesheet" href="base.css" />
  10 + <link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
  11 + <meta name="viewport" content="width=device-width, initial-scale=1" />
  12 + <style type='text/css'>
  13 + .coverage-summary .sorter {
  14 + background-image: url(sort-arrow-sprite.png);
  15 + }
  16 + </style>
  17 +</head>
  18 +
  19 +<body>
  20 +<div class='wrapper'>
  21 + <div class='pad1'>
  22 + <h1>All files</h1>
  23 + <div class='clearfix'>
  24 +
  25 + <div class='fl pad1y space-right2'>
  26 + <span class="strong">Unknown% </span>
  27 + <span class="quiet">Statements</span>
  28 + <span class='fraction'>0/0</span>
  29 + </div>
  30 +
  31 +
  32 + <div class='fl pad1y space-right2'>
  33 + <span class="strong">Unknown% </span>
  34 + <span class="quiet">Branches</span>
  35 + <span class='fraction'>0/0</span>
  36 + </div>
  37 +
  38 +
  39 + <div class='fl pad1y space-right2'>
  40 + <span class="strong">Unknown% </span>
  41 + <span class="quiet">Functions</span>
  42 + <span class='fraction'>0/0</span>
  43 + </div>
  44 +
  45 +
  46 + <div class='fl pad1y space-right2'>
  47 + <span class="strong">Unknown% </span>
  48 + <span class="quiet">Lines</span>
  49 + <span class='fraction'>0/0</span>
  50 + </div>
  51 +
  52 +
  53 + </div>
  54 + <p class="quiet">
  55 + Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
  56 + </p>
  57 + <template id="filterTemplate">
  58 + <div class="quiet">
  59 + Filter:
  60 + <input oninput="onInput()" type="search" id="fileSearch">
  61 + </div>
  62 + </template>
  63 + </div>
  64 + <div class='status-line medium'></div>
  65 + <div class="pad1">
  66 +<table class="coverage-summary">
  67 +<thead>
  68 +<tr>
  69 + <th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
  70 + <th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
  71 + <th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
  72 + <th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
  73 + <th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
  74 + <th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
  75 + <th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
  76 + <th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
  77 + <th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
  78 + <th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
  79 +</tr>
  80 +</thead>
  81 +<tbody></tbody>
  82 +</table>
  83 +</div>
  84 + <div class='push'></div><!-- for sticky footer -->
  85 + </div><!-- /wrapper -->
  86 + <div class='footer quiet pad2 space-top1 center small'>
  87 + Code coverage generated by
  88 + <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
  89 + at 2023-10-09T10:23:14.046Z
  90 + </div>
  91 + <script src="prettify.js"></script>
  92 + <script>
  93 + window.onload = function () {
  94 + prettyPrint();
  95 + };
  96 + </script>
  97 + <script src="sorter.js"></script>
  98 + <script src="block-navigation.js"></script>
  99 + </body>
  100 +</html>
  101 +
\ No newline at end of file
... ...
  1 +.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}
... ...
  1 +/* eslint-disable */
  2 +window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V<U;++V){var ae=Z[V];if(ae.ignoreCase){ac=true}else{if(/[a-z]/i.test(ae.source.replace(/\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi,""))){S=true;ac=false;break}}}var Y={b:8,t:9,n:10,v:11,f:12,r:13};function ab(ah){var ag=ah.charCodeAt(0);if(ag!==92){return ag}var af=ah.charAt(1);ag=Y[af];if(ag){return ag}else{if("0"<=af&&af<="7"){return parseInt(ah.substring(1),8)}else{if(af==="u"||af==="x"){return parseInt(ah.substring(2),16)}else{return ah.charCodeAt(1)}}}}function T(af){if(af<32){return(af<16?"\\x0":"\\x")+af.toString(16)}var ag=String.fromCharCode(af);if(ag==="\\"||ag==="-"||ag==="["||ag==="]"){ag="\\"+ag}return ag}function X(am){var aq=am.substring(1,am.length-1).match(new RegExp("\\\\u[0-9A-Fa-f]{4}|\\\\x[0-9A-Fa-f]{2}|\\\\[0-3][0-7]{0,2}|\\\\[0-7]{1,2}|\\\\[\\s\\S]|-|[^-\\\\]","g"));var ak=[];var af=[];var ao=aq[0]==="^";for(var ar=ao?1:0,aj=aq.length;ar<aj;++ar){var ah=aq[ar];if(/\\[bdsw]/i.test(ah)){ak.push(ah)}else{var ag=ab(ah);var al;if(ar+2<aj&&"-"===aq[ar+1]){al=ab(aq[ar+2]);ar+=2}else{al=ag}af.push([ag,al]);if(!(al<65||ag>122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;ar<af.length;++ar){var at=af[ar];if(at[0]<=ap[1]+1){ap[1]=Math.max(ap[1],at[1])}else{ai.push(ap=at)}}var an=["["];if(ao){an.push("^")}an.push.apply(an,ak);for(var ar=0;ar<ai.length;++ar){var at=ai[ar];an.push(T(at[0]));if(at[1]>at[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak<ah;++ak){var ag=aj[ak];if(ag==="("){++am}else{if("\\"===ag.charAt(0)){var af=+ag.substring(1);if(af&&af<=am){an[af]=-1}}}}for(var ak=1;ak<an.length;++ak){if(-1===an[ak]){an[ak]=++ad}}for(var ak=0,am=0;ak<ah;++ak){var ag=aj[ak];if(ag==="("){++am;if(an[am]===undefined){aj[ak]="(?:"}}else{if("\\"===ag.charAt(0)){var af=+ag.substring(1);if(af&&af<=am){aj[ak]="\\"+an[am]}}}}for(var ak=0,am=0;ak<ah;++ak){if("^"===aj[ak]&&"^"!==aj[ak+1]){aj[ak]=""}}if(al.ignoreCase&&S){for(var ak=0;ak<ah;++ak){var ag=aj[ak];var ai=ag.charAt(0);if(ag.length>=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V<U;++V){var ae=Z[V];if(ae.global||ae.multiline){throw new Error(""+ae)}aa.push("(?:"+W(ae)+")")}return new RegExp(aa.join("|"),ac?"gi":"g")}function a(V){var U=/(?:^|\s)nocode(?:\s|$)/;var X=[];var T=0;var Z=[];var W=0;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=document.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Y=S&&"pre"===S.substring(0,3);function aa(ab){switch(ab.nodeType){case 1:if(U.test(ab.className)){return}for(var ae=ab.firstChild;ae;ae=ae.nextSibling){aa(ae)}var ad=ab.nodeName;if("BR"===ad||"LI"===ad){X[W]="\n";Z[W<<1]=T++;Z[(W++<<1)|1]=ab}break;case 3:case 4:var ac=ab.nodeValue;if(ac.length){if(!Y){ac=ac.replace(/[ \t\r\n]+/g," ")}else{ac=ac.replace(/\r\n?/g,"\n")}X[W]=ac;Z[W<<1]=T;T+=ac.length;Z[(W++<<1)|1]=ab}break}}aa(V);return{sourceCode:X.join("").replace(/\n$/,""),spans:Z}}function B(S,U,W,T){if(!U){return}var V={sourceCode:U,basePos:S};W(V);T.push.apply(T,V.decorations)}var v=/\S/;function o(S){var V=undefined;for(var U=S.firstChild;U;U=U.nextSibling){var T=U.nodeType;V=(T===1)?(V?S:U):(T===3)?(v.test(U.nodeValue)?S:V):V}return V===S?undefined:V}function g(U,T){var S={};var V;(function(){var ad=U.concat(T);var ah=[];var ag={};for(var ab=0,Z=ad.length;ab<Z;++ab){var Y=ad[ab];var ac=Y[3];if(ac){for(var ae=ac.length;--ae>=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae<aq;++ae){var ag=an[ae];var ap=aj[ag];var ai=void 0;var am;if(typeof ap==="string"){am=false}else{var aa=S[ag.charAt(0)];if(aa){ai=ag.match(aa[1]);ap=aa[0]}else{for(var ao=0;ao<X;++ao){aa=T[ao];ai=ag.match(aa[1]);if(ai){ap=aa[0];break}}if(!ai){ap=F}}am=ap.length>=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y<W.length;++Y){ae(W[Y])}if(ag===(ag|0)){W[0].setAttribute("value",ag)}var aa=ac.createElement("OL");aa.className="linenums";var X=Math.max(0,((ag-1))|0)||0;for(var Y=0,T=W.length;Y<T;++Y){af=W[Y];af.className="L"+((Y+X)%10);if(!af.firstChild){af.appendChild(ac.createTextNode("\xA0"))}aa.appendChild(af)}V.appendChild(aa)}function D(ac){var aj=/\bMSIE\b/.test(navigator.userAgent);var am=/\n/g;var al=ac.sourceCode;var an=al.length;var V=0;var aa=ac.spans;var T=aa.length;var ah=0;var X=ac.decorations;var Y=X.length;var Z=0;X[Y]=an;var ar,aq;for(aq=ar=0;aq<Y;){if(X[aq]!==X[aq+2]){X[ar++]=X[aq++];X[ar++]=X[aq++]}else{aq+=2}}Y=ar;for(aq=ar=0;aq<Y;){var at=X[aq];var ab=X[aq+1];var W=aq+2;while(W+2<=Y&&X[W+1]===ab){W+=2}X[ar++]=at;X[ar++]=ab;aq=W}Y=X.length=ar;var ae=null;while(ah<T){var af=aa[ah];var S=aa[ah+2]||an;var ag=X[Z];var ap=X[Z+2]||an;var W=Math.min(S,ap);var ak=aa[ah+1];var U;if(ak.nodeType!==1&&(U=al.substring(V,W))){if(aj){U=U.replace(am,"\r")}ak.nodeValue=U;var ai=ak.ownerDocument;var ao=ai.createElement("SPAN");ao.className=X[Z+1];var ad=ak.parentNode;ad.replaceChild(ao,ak);ao.appendChild(ak);if(V<S){aa[ah+1]=ak=ai.createTextNode(al.substring(W,S));ad.insertBefore(ak,ao.nextSibling)}}V=W;if(V>=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*</.test(S)?"default-markup":"default-code"}return t[T]}c(K,["default-code"]);c(g([],[[F,/^[^<?]+/],[E,/^<!\w[^>]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);c(g([[F,/^[\s]+/,null," \t\r\n"],[n,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[m,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[P,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[L,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);c(g([],[[n,/^[\s\S]+/]]),["uq.val"]);c(i({keywords:l,hashComments:true,cStyleComments:true,types:e}),["c","cc","cpp","cxx","cyc","m"]);c(i({keywords:"null,true,false"}),["json"]);c(i({keywords:R,hashComments:true,cStyleComments:true,verbatimStrings:true,types:e}),["cs"]);c(i({keywords:x,cStyleComments:true}),["java"]);c(i({keywords:H,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);c(i({keywords:I,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);c(i({keywords:s,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);c(i({keywords:f,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);c(i({keywords:w,cStyleComments:true,regexLiterals:true}),["js"]);c(i({keywords:r,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);c(g([],[[C,/^[\s\S]+/]]),["regex"]);function d(V){var U=V.langExtension;try{var S=a(V.sourceNode);var T=S.sourceCode;V.sourceCode=T;V.spans=S.spans;V.basePos=0;q(U,T)(V);D(V)}catch(W){if("console" in window){console.log(W&&W.stack?W.stack:W)}}}function y(W,V,U){var S=document.createElement("PRE");S.innerHTML=W;if(U){Q(S,U)}var T={langExtension:V,numberLines:U,sourceNode:S};d(T);return S.innerHTML}function b(ad){function Y(af){return document.getElementsByTagName(af)}var ac=[Y("pre"),Y("code"),Y("xmp")];var T=[];for(var aa=0;aa<ac.length;++aa){for(var Z=0,V=ac[aa].length;Z<V;++Z){T.push(ac[aa][Z])}}ac=null;var W=Date;if(!W.now){W={now:function(){return +(new Date)}}}var X=0;var S;var ab=/\blang(?:uage)?-([\w.]+)(?!\S)/;var ae=/\bprettyprint\b/;function U(){var ag=(window.PR_SHOULD_USE_CONTINUATION?W.now()+250:Infinity);for(;X<T.length&&W.now()<ag;X++){var aj=T[X];var ai=aj.className;if(ai.indexOf("prettyprint")>=0){var ah=ai.match(ab);var am;if(!ah&&(am=o(aj))&&"CODE"===am.tagName){ah=am.className.match(ab)}if(ah){ah=ah[1]}var al=false;for(var ak=aj.parentNode;ak;ak=ak.parentNode){if((ak.tagName==="pre"||ak.tagName==="code"||ak.tagName==="xmp")&&ak.className&&ak.className.indexOf("prettyprint")>=0){al=true;break}}if(!al){var af=aj.className.match(/\blinenums\b(?::(\d+))?/);af=af?af[1]&&af[1].length?+af[1]:true:false;if(af){Q(aj,af)}S={langExtension:ah,sourceNode:aj,numberLines:af};d(S)}}}if(X<T.length){setTimeout(U,250)}else{if(ad){ad()}}}U()}window.prettyPrintOne=y;window.prettyPrint=b;window.PR={createSimpleLexer:g,registerLangHandler:c,sourceDecorator:i,PR_ATTRIB_NAME:P,PR_ATTRIB_VALUE:n,PR_COMMENT:j,PR_DECLARATION:E,PR_KEYWORD:z,PR_LITERAL:G,PR_NOCODE:N,PR_PLAIN:F,PR_PUNCTUATION:L,PR_SOURCE:J,PR_STRING:C,PR_TAG:m,PR_TYPE:O}})();PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_DECLARATION,/^<!\w[^>]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^<script\b[^>]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:<!--|-->)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]);
... ...
  1 +/* eslint-disable */
  2 +var addSorting = (function() {
  3 + 'use strict';
  4 + var cols,
  5 + currentSort = {
  6 + index: 0,
  7 + desc: false
  8 + };
  9 +
  10 + // returns the summary table element
  11 + function getTable() {
  12 + return document.querySelector('.coverage-summary');
  13 + }
  14 + // returns the thead element of the summary table
  15 + function getTableHeader() {
  16 + return getTable().querySelector('thead tr');
  17 + }
  18 + // returns the tbody element of the summary table
  19 + function getTableBody() {
  20 + return getTable().querySelector('tbody');
  21 + }
  22 + // returns the th element for nth column
  23 + function getNthColumn(n) {
  24 + return getTableHeader().querySelectorAll('th')[n];
  25 + }
  26 +
  27 + function onFilterInput() {
  28 + const searchValue = document.getElementById('fileSearch').value;
  29 + const rows = document.getElementsByTagName('tbody')[0].children;
  30 + for (let i = 0; i < rows.length; i++) {
  31 + const row = rows[i];
  32 + if (
  33 + row.textContent
  34 + .toLowerCase()
  35 + .includes(searchValue.toLowerCase())
  36 + ) {
  37 + row.style.display = '';
  38 + } else {
  39 + row.style.display = 'none';
  40 + }
  41 + }
  42 + }
  43 +
  44 + // loads the search box
  45 + function addSearchBox() {
  46 + var template = document.getElementById('filterTemplate');
  47 + var templateClone = template.content.cloneNode(true);
  48 + templateClone.getElementById('fileSearch').oninput = onFilterInput;
  49 + template.parentElement.appendChild(templateClone);
  50 + }
  51 +
  52 + // loads all columns
  53 + function loadColumns() {
  54 + var colNodes = getTableHeader().querySelectorAll('th'),
  55 + colNode,
  56 + cols = [],
  57 + col,
  58 + i;
  59 +
  60 + for (i = 0; i < colNodes.length; i += 1) {
  61 + colNode = colNodes[i];
  62 + col = {
  63 + key: colNode.getAttribute('data-col'),
  64 + sortable: !colNode.getAttribute('data-nosort'),
  65 + type: colNode.getAttribute('data-type') || 'string'
  66 + };
  67 + cols.push(col);
  68 + if (col.sortable) {
  69 + col.defaultDescSort = col.type === 'number';
  70 + colNode.innerHTML =
  71 + colNode.innerHTML + '<span class="sorter"></span>';
  72 + }
  73 + }
  74 + return cols;
  75 + }
  76 + // attaches a data attribute to every tr element with an object
  77 + // of data values keyed by column name
  78 + function loadRowData(tableRow) {
  79 + var tableCols = tableRow.querySelectorAll('td'),
  80 + colNode,
  81 + col,
  82 + data = {},
  83 + i,
  84 + val;
  85 + for (i = 0; i < tableCols.length; i += 1) {
  86 + colNode = tableCols[i];
  87 + col = cols[i];
  88 + val = colNode.getAttribute('data-value');
  89 + if (col.type === 'number') {
  90 + val = Number(val);
  91 + }
  92 + data[col.key] = val;
  93 + }
  94 + return data;
  95 + }
  96 + // loads all row data
  97 + function loadData() {
  98 + var rows = getTableBody().querySelectorAll('tr'),
  99 + i;
  100 +
  101 + for (i = 0; i < rows.length; i += 1) {
  102 + rows[i].data = loadRowData(rows[i]);
  103 + }
  104 + }
  105 + // sorts the table using the data for the ith column
  106 + function sortByIndex(index, desc) {
  107 + var key = cols[index].key,
  108 + sorter = function(a, b) {
  109 + a = a.data[key];
  110 + b = b.data[key];
  111 + return a < b ? -1 : a > b ? 1 : 0;
  112 + },
  113 + finalSorter = sorter,
  114 + tableBody = document.querySelector('.coverage-summary tbody'),
  115 + rowNodes = tableBody.querySelectorAll('tr'),
  116 + rows = [],
  117 + i;
  118 +
  119 + if (desc) {
  120 + finalSorter = function(a, b) {
  121 + return -1 * sorter(a, b);
  122 + };
  123 + }
  124 +
  125 + for (i = 0; i < rowNodes.length; i += 1) {
  126 + rows.push(rowNodes[i]);
  127 + tableBody.removeChild(rowNodes[i]);
  128 + }
  129 +
  130 + rows.sort(finalSorter);
  131 +
  132 + for (i = 0; i < rows.length; i += 1) {
  133 + tableBody.appendChild(rows[i]);
  134 + }
  135 + }
  136 + // removes sort indicators for current column being sorted
  137 + function removeSortIndicators() {
  138 + var col = getNthColumn(currentSort.index),
  139 + cls = col.className;
  140 +
  141 + cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, '');
  142 + col.className = cls;
  143 + }
  144 + // adds sort indicators for current column being sorted
  145 + function addSortIndicators() {
  146 + getNthColumn(currentSort.index).className += currentSort.desc
  147 + ? ' sorted-desc'
  148 + : ' sorted';
  149 + }
  150 + // adds event listeners for all sorter widgets
  151 + function enableUI() {
  152 + var i,
  153 + el,
  154 + ithSorter = function ithSorter(i) {
  155 + var col = cols[i];
  156 +
  157 + return function() {
  158 + var desc = col.defaultDescSort;
  159 +
  160 + if (currentSort.index === i) {
  161 + desc = !currentSort.desc;
  162 + }
  163 + sortByIndex(i, desc);
  164 + removeSortIndicators();
  165 + currentSort.index = i;
  166 + currentSort.desc = desc;
  167 + addSortIndicators();
  168 + };
  169 + };
  170 + for (i = 0; i < cols.length; i += 1) {
  171 + if (cols[i].sortable) {
  172 + // add the click event handler on the th so users
  173 + // dont have to click on those tiny arrows
  174 + el = getNthColumn(i).querySelector('.sorter').parentElement;
  175 + if (el.addEventListener) {
  176 + el.addEventListener('click', ithSorter(i));
  177 + } else {
  178 + el.attachEvent('onclick', ithSorter(i));
  179 + }
  180 + }
  181 + }
  182 + }
  183 + // adds sorting functionality to the UI
  184 + return function() {
  185 + if (!getTable()) {
  186 + return;
  187 + }
  188 + cols = loadColumns();
  189 + loadData();
  190 + addSearchBox();
  191 + addSortIndicators();
  192 + enableUI();
  193 + };
  194 +})();
  195 +
  196 +window.addEventListener('load', addSorting);
... ...
  1 +// /** @type {import("ts-jest").JestConfigWithTsJest} */
  2 +
  3 +
  4 +module.exports = {
  5 + preset: "ts-jest",
  6 + testEnvironment: "jsdom",
  7 + bail: 1, // 这个选项可以设置当n个test失败之后停止执行。
  8 + verbose: true,
  9 +
  10 + collectCoverage: true,
  11 + coverageDirectory: "coverage",
  12 + collectCoverageFrom: ["(/src/.*\\.(test|spec))\\.[tj]sx?$"], // 配置需要统计覆盖率的文件或目录
  13 + coverageReporters: ["lcov", "text-summary"], // 配置覆盖率报告的格式
  14 + rootDir: "./",
  15 + modulePaths: ["<rootDir>/src/"],
  16 + coveragePathIgnorePatterns: ["/node_modules/"],
  17 + modulePathIgnorePatterns: ["/node_modules/"],
  18 + watchPathIgnorePatterns: ["/node_modules/"],
  19 +
  20 + transform: {
  21 + "^.+\\.(ts|tsx)$": "ts-jest",
  22 + "^.+\\.(js|jsx)$": "babel-jest",
  23 + },
  24 + transformIgnorePatterns: ['/node_modules/'],
  25 +
  26 + testRegex: "(/src/*/.*\\.(test|spec))\\.[tj]sx?$",
  27 +
  28 + moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json"],
  29 + moduleNameMapper: {
  30 + "^.+\\.(css|less)$": "identity-obj-proxy",
  31 + "antd/es": "<rootDir>/node_modules/antd/dist/antd.min.js",
  32 + },
  33 + testPathIgnorePatterns: ["<rootDir>/node_modules/"],
  34 +
  35 +};
\ No newline at end of file
... ...
... ... @@ -18,7 +18,8 @@
18 18 "lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
19 19 "lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
20 20 "prepublishOnly": "father doctor && npm run build",
21   - "start": "npm run dev"
  21 + "start": "npm run dev",
  22 + "test": "jest"
22 23 },
23 24 "commitlint": {
24 25 "extends": [
... ... @@ -52,6 +53,8 @@
52 53 "codemirror": "5.65.8",
53 54 "dayjs": "^1.11.9",
54 55 "hot-formula-parser": "^4.0.0",
  56 + "identity-obj-proxy": "^3.0.0",
  57 + "jest-cli": "^29.7.0",
55 58 "js-beautify": "^1.14.9",
56 59 "jshint": "^2.13.6",
57 60 "lodash-es": "^4.17.21",
... ... @@ -59,23 +62,35 @@
59 62 "react-codemirror2": "^7.2.1"
60 63 },
61 64 "devDependencies": {
  65 + "@babel/core": "^7.23.0",
  66 + "@babel/preset-env": "^7.22.20",
  67 + "@babel/preset-react": "^7.22.15",
  68 + "@babel/preset-typescript": "^7.23.0",
62 69 "@commitlint/cli": "^17.1.2",
63 70 "@commitlint/config-conventional": "^17.1.0",
  71 + "@jest/globals": "^29.7.0",
64 72 "@qx/utils": "0.0.58",
  73 + "@testing-library/jest-dom": "^6.1.3",
  74 + "@testing-library/react": "^14.0.0",
65 75 "@types/codemirror": "^5.60.10",
66 76 "@types/hot-formula-parser": "^4.0.1",
  77 + "@types/jest": "^29.5.5",
67 78 "@types/js-beautify": "^1.14.1",
68 79 "@types/jshint": "^2.12.2",
69 80 "@types/lodash-es": "^4.17.8",
70 81 "@types/react": "^18.0.0",
71 82 "@types/react-dom": "^18.0.0",
  83 + "@types/react-test-renderer": "^18.0.3",
72 84 "@umijs/lint": "^4.0.0",
73 85 "ahooks": "^3.7.5",
74 86 "antd": "^5.8.4",
  87 + "babel-jest": "^29.7.0",
75 88 "dumi": "^2.2.0",
76 89 "eslint": "^8.23.0",
77 90 "father": "^4.1.0",
78 91 "husky": "^8.0.1",
  92 + "jest": "^29.7.0",
  93 + "jest-environment-jsdom": "^29.7.0",
79 94 "lint-staged": "^13.0.3",
80 95 "prettier": "^2.7.1",
81 96 "prettier-plugin-organize-imports": "^3.0.0",
... ... @@ -84,7 +99,10 @@
84 99 "react-cookies": ">=0.1.1",
85 100 "react-dom": "^18.0.0",
86 101 "react-router": ">=4.3.1",
87   - "stylelint": "^14.9.1"
  102 + "react-test-renderer": "^18.2.0",
  103 + "stylelint": "^14.9.1",
  104 + "ts-jest": "^29.1.1",
  105 + "typescript": "^5.2.2"
88 106 },
89 107 "peerDependencies": {
90 108 "@qx/utils": "0.0.58",
... ...
... ... @@ -61,6 +61,73 @@ export enum FIELD_TYPE_PROPS {
61 61 COMBINED_TEXT = 'COMBINED_TEXT',
62 62 // 时间
63 63 TIME = 'TIME',
  64 + LOCATION = 'LOCATION',
  65 +}
  66 +
  67 +export declare enum FIELD_TYPE {
  68 + EMPTY = '',
  69 + // 文本
  70 + TEXT = 'TEXT',
  71 + STRING = 'STRING',
  72 +
  73 + // 日期
  74 + DATE = 'DATE',
  75 + DATE_TIME = 'DATE_TIME',
  76 + // 人员
  77 + USER = 'USER',
  78 + USER_MULTI = 'USER_MULTI',
  79 + // 部门
  80 + ORG = 'ORG',
  81 + ORG_MULTI = 'ORG_MULTI',
  82 + // 数字
  83 + NUM = 'NUM',
  84 + // 布尔
  85 + BOOL = 'BOOL',
  86 + // 枚举
  87 + ENUM = 'ENUM',
  88 + ENUM_MULTI = 'ENUM_MULTI',
  89 + // 文件
  90 + FILE = 'FILE',
  91 +
  92 + // 公式:数值类
  93 + FORMULA = 'FORMULA',
  94 +
  95 + DOUBLE = 'DOUBLE',
  96 + INTEGER = 'INTEGER',
  97 + DECIMAL = 'DECIMAL',
  98 + PERCENT = 'PERCENT',
  99 +
  100 + YEAR = 'YEAR',
  101 + YEAR_MONTH = 'YEAR_MONTH',
  102 + YEAR_HOUR = 'YEAR_HOUR',
  103 + YEAR_DATE = 'YEAR_DATE',
  104 + YEAR_MIN = 'YEAR_MIN',
  105 + YEAR_SEC = 'YEAR_SEC',
  106 + HOUR = 'HOUR',
  107 + HOUR_MIN = 'HOUR_MIN',
  108 + HOUR_SEC = 'HOUR_SEC',
  109 +
  110 + TREE = 'TREE',
  111 + REL = 'REL',
  112 + REL_MULTI = 'REL_MULTI',
  113 + REL_FIELD = 'REL_FIELD',
  114 +
  115 + TABLE = 'TABLE',
  116 +
  117 + // 流程专用
  118 + FLOW_WF_APRV_USR = 'FLOW_WF_APRV_USR',
  119 + FLOW_WF_DQ_MODEL = 'FLOW_WF_DQ_MODEL',
  120 + FLOW_WF_RECORD = 'FLOW_WF_RECORD',
  121 +
  122 + //参数专用
  123 + OBJECT = 'OBJECT',
  124 + ARRAY = 'ARRAY',
  125 +
  126 + // 组合文本,用于文本和变量组合
  127 + COMBINED_TEXT = 'COMBINED_TEXT',
  128 + // 时间
  129 + TIME = 'TIME',
  130 + LOCATION = 'LOCATION',
64 131 }
65 132
66 133 export const formatEnum: Record<string, string> = {
... ...
... ... @@ -182,6 +182,7 @@ const FxPicker: React.FC<PickProps> = ({
182 182 justifyContent: 'center',
183 183 color: '#999',
184 184 }}
  185 + description="暂无数据"
185 186 />
186 187 ) : (
187 188 <Tree
... ... @@ -250,7 +251,18 @@ const FxPicker: React.FC<PickProps> = ({
250 251 {dataSource?.length ? (
251 252 treeRender
252 253 ) : (
253   - <div className={'qx-empty-center'}>(暂无数据)</div>
  254 + <Empty
  255 + image={emptyImg}
  256 + style={{
  257 + height: '100%',
  258 + width: '100%',
  259 + display: 'flex',
  260 + flexDirection: 'column',
  261 + justifyContent: 'center',
  262 + color: '#999',
  263 + }}
  264 + description="暂无数据"
  265 + />
254 266 )}
255 267 {/*{_.size(dataSource) === 0 && (*/}
256 268 {/* <div className={'qx-empty-center'}>(暂无数据)</div>*/}
... ...
  1 +import { render, screen } from '@testing-library/react';
  2 +import React from 'react';
  3 +import VarPicker from './var-picker';
  4 +
  5 +// const Test = () => {
  6 +// const [number1, setNumber] = useState(0);
  7 +
  8 +// return (
  9 +// <div>
  10 +// <button
  11 +// onClick={() => {
  12 +// setNumber(5);
  13 +// }}
  14 +// data-testid="clickBtn"
  15 +// type="button"
  16 +// >
  17 +// 点击
  18 +// </button>
  19 +// {number1 && <span data-testid="showText">{number1}</span>}
  20 +// </div>
  21 +// );
  22 +// };
  23 +
  24 +// "test": "jest --no-cache --config jest.config.js"
  25 +describe('test component', () => {
  26 + test('click event', () => {
  27 + render(
  28 + <VarPicker
  29 + onPick={jest.fn()}
  30 + dataSource={[
  31 + {
  32 + key: 'FORM',
  33 + titleStr: '表单变量',
  34 + children: [],
  35 + },
  36 + {
  37 + key: 'SYS',
  38 + titleStr: '系统变量',
  39 + children: [
  40 + {
  41 + key: '${SYS.CUR_USER}',
  42 + titleStr: '当前人员',
  43 + widget: 'qxObject',
  44 + fieldGroupType: 'OBJECT',
  45 + attrs: [
  46 + {
  47 + key: '${SYS.CUR_USER.id}',
  48 + titleStr: '用户ID',
  49 + fieldGroupType: 'TEXT',
  50 + },
  51 + {
  52 + key: '${SYS.CUR_USER.name}',
  53 + titleStr: '用户名',
  54 + fieldGroupType: 'TEXT',
  55 + },
  56 + {
  57 + key: '${SYS.CUR_USER.code}',
  58 + titleStr: '工号',
  59 + fieldGroupType: 'TEXT',
  60 + },
  61 + {
  62 + key: '${SYS.CUR_USER.mobile}',
  63 + titleStr: '手机号',
  64 + fieldGroupType: 'TEXT',
  65 + },
  66 + {
  67 + key: '${SYS.CUR_USER.email}',
  68 + titleStr: '邮箱',
  69 + fieldGroupType: 'TEXT',
  70 + },
  71 + ],
  72 + },
  73 + {
  74 + key: '${SYS.CUR_ORG}',
  75 + titleStr: '当前部门',
  76 + widget: 'qxObject',
  77 + fieldGroupType: 'OBJECT',
  78 + attrs: [
  79 + {
  80 + key: '${SYS.CUR_ORG.id}',
  81 + titleStr: '部门ID',
  82 + fieldGroupType: 'TEXT',
  83 + },
  84 + {
  85 + key: '${SYS.CUR_ORG.code}',
  86 + titleStr: '部门编号',
  87 + fieldGroupType: 'TEXT',
  88 + },
  89 + {
  90 + key: '${SYS.CUR_ORG.name}',
  91 + titleStr: '部门名称',
  92 + fieldGroupType: 'TEXT',
  93 + },
  94 + {
  95 + key: '${SYS.CUR_ORG.orgLevel}',
  96 + titleStr: '部门层级',
  97 + fieldGroupType: 'TEXT',
  98 + },
  99 + ],
  100 + },
  101 + {
  102 + key: '${SYS.CUR_CORP}',
  103 + titleStr: '当前公司',
  104 + widget: 'qxObject',
  105 + fieldGroupType: 'OBJECT',
  106 + attrs: [
  107 + {
  108 + key: '${SYS.CUR_CORP.corpCode}',
  109 + titleStr: '公司编号',
  110 + fieldGroupType: 'TEXT',
  111 + },
  112 + {
  113 + key: '${SYS.CUR_CORP.corpName}',
  114 + titleStr: '公司名称',
  115 + fieldGroupType: 'TEXT',
  116 + },
  117 + ],
  118 + },
  119 + {
  120 + key: '${SYS.CUR_DATE}',
  121 + titleStr: '当前时间',
  122 + widget: 'qxDatetime',
  123 + fieldGroupType: 'DATE',
  124 + },
  125 + {
  126 + key: '${SYS.LOGIN_INFO}',
  127 + titleStr: '登录信息',
  128 + widget: 'qxObject',
  129 + fieldGroupType: 'OBJECT',
  130 + attrs: [
  131 + {
  132 + key: '${SYS.LOGIN_INFO.ipAddr}',
  133 + titleStr: 'IP地址',
  134 + fieldGroupType: 'TEXT',
  135 + },
  136 + {
  137 + key: '${SYS.LOGIN_INFO.terminal}',
  138 + titleStr: '终端类型',
  139 + fieldGroupType: 'TEXT',
  140 + },
  141 + {
  142 + key: '${SYS.LOGIN_INFO.browser}',
  143 + titleStr: '浏览器信息',
  144 + fieldGroupType: 'TEXT',
  145 + },
  146 + {
  147 + key: '${SYS.LOGIN_INFO.browserRoute}',
  148 + titleStr: '当前浏览器路由信息',
  149 + fieldGroupType: 'TEXT',
  150 + },
  151 + {
  152 + key: '${SYS.LOGIN_INFO.session}',
  153 + titleStr: 'session信息',
  154 + fieldGroupType: 'TEXT',
  155 + },
  156 + ],
  157 + },
  158 + ],
  159 + },
  160 + ]}
  161 + />,
  162 + );
  163 +
  164 + expect(screen.getByText('暂无数据')).toBeNull();
  165 + // userEvent.click(screen.getByTestId('clickBtn'));
  166 + // // 异步
  167 + // await waitFor(() => {
  168 + // });
  169 + });
  170 +});
... ...
... ... @@ -110,10 +110,10 @@ const VarPicker: React.FC<VarProps> = ({ onPick, ...props }) => {
110 110 };
111 111
112 112 // 设置当前选中的变量
113   - const onHandlePickVar = (varData: ColsTreeSelectProps) => {
114   - _.isFunction(onPick) && onPick(varData);
115   - searchInputRef?.current?.blur();
116   - };
  113 + // const onHandlePickVar = (varData: ColsTreeSelectProps) => {
  114 + // _.isFunction(onPick) && onPick(varData);
  115 + // searchInputRef?.current?.blur();
  116 + // };
117 117 /**
118 118 * 设置键盘事件逻辑
119 119 * keyCode 38:ArrowUp 40:ArrowDown 13: Enter
... ... @@ -131,13 +131,16 @@ const VarPicker: React.FC<VarProps> = ({ onPick, ...props }) => {
131 131 // 设置popover-content内滚动条位置。DOM更新之后立即执行
132 132 useLayoutEffect(() => {
133 133 const dom = document.getElementsByClassName('var-selected')[0];
134   - dom &&
  134 + if (dom) {
135 135 dom.scrollIntoView(Object.assign({ block: 'center', inline: 'nearest' }));
  136 + }
136 137 }, [selectIndex]);
137 138
138 139 const onHandleSelectTNode: any = (key: string, event: any) => {
139 140 if (event.node.children && event.node.children.length > 0) return;
140   - _.isFunction(onPick) && onPick(event.node);
  141 + if (_.isFunction(onPick)) {
  142 + onPick(event.node);
  143 + }
141 144 };
142 145
143 146 // 设置popover-content
... ... @@ -171,6 +174,7 @@ const VarPicker: React.FC<VarProps> = ({ onPick, ...props }) => {
171 174 justifyContent: 'center',
172 175 color: '#999',
173 176 }}
  177 + description="暂无数据"
174 178 />
175 179 ) : (
176 180 <Tree
... ... @@ -244,7 +248,18 @@ const VarPicker: React.FC<VarProps> = ({ onPick, ...props }) => {
244 248 {dataSource?.length ? (
245 249 treeRender
246 250 ) : (
247   - <div className={'qx-empty-center'}>(暂无数据)</div>
  251 + <Empty
  252 + image={emptyImg}
  253 + style={{
  254 + height: '100%',
  255 + width: '100%',
  256 + display: 'flex',
  257 + flexDirection: 'column',
  258 + justifyContent: 'center',
  259 + color: '#999',
  260 + }}
  261 + description="暂无数据"
  262 + />
248 263 )}
249 264 {/*{_.size(dataSource) === 0 && (*/}
250 265 {/* <div className={'qx-empty-center'}>(暂无数据)</div>*/}
... ...
... ... @@ -464,6 +464,9 @@
464 464 }
465 465 }
466 466 }
  467 + .ant-empty .ant-empty-description {
  468 + color: #999;
  469 + }
467 470 }
468 471
469 472 &.fx-fullscreen {
... ...
... ... @@ -148,7 +148,7 @@ export const QxFunctionOperation: React.FC<QxFunOperationProps> = ({
148 148 if (!_.isArray(originData)) {
149 149 return;
150 150 }
151   - const funcList = originData?.map(
  151 + const funcList: any = originData?.map(
152 152 (item: { name: string; code: string; details?: any[] }) => {
153 153 return {
154 154 key: item.code,
... ...
... ... @@ -23,12 +23,8 @@
23 23 ],
24 24 "@qx/*": [
25 25 "./*/"
26   - ]
  26 + ],
27 27 }
28 28 },
29   - "include": [
30   - ".dumirc.ts",
31   - "src/**/*",
32   - "typings.d.ts"
33   - ]
  29 + "include": [".dumi/**/*", ".dumirc.ts", "src/**/*", "typings.d.ts"],
34 30 }
\ No newline at end of file
... ...