@jackuait/blok 0.23.1 → 0.23.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/README.md +3 -1
  2. package/dist/blok.cjs +1 -1
  3. package/dist/blok.iife.js +73 -73
  4. package/dist/blok.mjs +3 -3
  5. package/dist/blok.umd.js +53 -53
  6. package/dist/chunks/{blok-BPeM6wKv.mjs → blok-1H9roBGf.mjs} +2271 -2249
  7. package/dist/chunks/{blok-Ci1zCOUg.cjs → blok-J3Lfa_bK.cjs} +13 -13
  8. package/dist/chunks/{constants-DR3sya6U.mjs → constants-BJ79cqMa.mjs} +288 -284
  9. package/dist/chunks/constants-BZUc1kAY.cjs +606 -0
  10. package/dist/chunks/{tools-B72rczVw.mjs → tools-ByOjWADT.mjs} +420 -418
  11. package/dist/chunks/{tools-DlOZpcVU.cjs → tools-OHDv2C7w.cjs} +2 -2
  12. package/dist/full.cjs +1 -1
  13. package/dist/full.mjs +3 -3
  14. package/dist/react.cjs +1 -1
  15. package/dist/react.mjs +54 -33
  16. package/dist/tools.cjs +1 -1
  17. package/dist/tools.mjs +2 -2
  18. package/package.json +1 -1
  19. package/src/blok.ts +12 -0
  20. package/src/components/block/tool-renderer.ts +2 -2
  21. package/src/components/blocks.ts +32 -10
  22. package/src/components/constants/test-ids.ts +17 -0
  23. package/src/components/constants.ts +5 -0
  24. package/src/components/events/BlockRendered.ts +9 -0
  25. package/src/components/events/BlocksRendered.ts +13 -0
  26. package/src/components/events/index.ts +8 -0
  27. package/src/components/inline-tools/inline-tool-link.ts +23 -9
  28. package/src/components/modules/api/events.ts +10 -10
  29. package/src/components/modules/api/index.ts +3 -0
  30. package/src/components/modules/api/tools.ts +3 -0
  31. package/src/components/modules/blockManager/blockManager.ts +1 -1
  32. package/src/components/modules/paste/index.ts +10 -1
  33. package/src/components/modules/renderer.ts +146 -131
  34. package/src/components/modules/toolbar/plus-button.ts +2 -1
  35. package/src/components/modules/toolbar/settings-toggler.ts +2 -2
  36. package/src/components/modules/tools.ts +18 -0
  37. package/src/components/tools/factory.ts +28 -1
  38. package/src/react/BlokEditor.tsx +17 -5
  39. package/src/react/config-keys.ts +2 -0
  40. package/src/react/deep-equal.ts +48 -0
  41. package/src/react/types.ts +2 -0
  42. package/src/react/useBlok.ts +37 -0
  43. package/types/api/events.d.ts +35 -5
  44. package/types/api/tools.d.ts +16 -1
  45. package/types/configs/blok-config.d.ts +37 -0
  46. package/types/events/editor-events.ts +41 -0
  47. package/types/index.d.ts +5 -1
  48. package/types/react.d.ts +13 -2
  49. package/dist/chunks/constants-Bkncy0y5.cjs +0 -606
@@ -132,7 +132,7 @@ var a = {
132
132
  RIGHT: 2,
133
133
  BACKWARD: 3,
134
134
  FORWARD: 4
135
- }, l = () => "0.23.1", u = /* @__PURE__ */ function(e) {
135
+ }, l = () => "0.23.3", u = /* @__PURE__ */ function(e) {
136
136
  return e.VERBOSE = "VERBOSE", e.INFO = "INFO", e.WARN = "WARN", e.ERROR = "ERROR", e;
137
137
  }({}), d = (e, t, n = "log", r, i = "color: inherit") => {
138
138
  let a = typeof console > "u" ? void 0 : console;
@@ -731,7 +731,11 @@ var S = () => {
731
731
  destroy() {
732
732
  this.subscribers = {};
733
733
  }
734
- }, We = "blok", Ge = "inline-toolbar", Ke = "tooltip", qe = "[data-blok-interface=inline-toolbar]", Je = typeof process < "u" ? process.platform === "darwin" ? "Meta" : "Control" : typeof navigator < "u" && navigator.userAgent.toLowerCase().includes("mac") ? "Meta" : "Control", k = class {
734
+ }, We = {
735
+ plusButton: "plus-button",
736
+ settingsToggler: "settings-toggler",
737
+ blockWrapper: "block-wrapper"
738
+ }, Ge = "blok", Ke = "inline-toolbar", qe = "tooltip", Je = "[data-blok-interface=inline-toolbar]", Ye = typeof process < "u" ? process.platform === "darwin" ? "Meta" : "Control" : typeof navigator < "u" && navigator.userAgent.toLowerCase().includes("mac") ? "Meta" : "Control", k = class {
735
739
  static getAnchorNode() {
736
740
  let e = window.getSelection();
737
741
  return e ? e.anchorNode : null;
@@ -800,7 +804,7 @@ var S = () => {
800
804
  let t = window.getSelection();
801
805
  return (e = t == null ? void 0 : t.toString()) == null ? "" : e;
802
806
  }
803
- }, Ye = class {
807
+ }, Xe = class {
804
808
  static setCursor(e, t = 0) {
805
809
  var n, r;
806
810
  let i = document.createRange(), a = window.getSelection(), o = T.isNativeInput(e);
@@ -821,7 +825,7 @@ var S = () => {
821
825
  let t = document.createRange();
822
826
  t.selectNodeContents(e.focusNode), t.collapse(!1), e.removeAllRanges(), e.addRange(t);
823
827
  }
824
- }, Xe, A = class {
828
+ }, Ze, A = class {
825
829
  static applyBoxShadowToWrapper(e) {
826
830
  let t = e.parentElement;
827
831
  if (!t) return;
@@ -885,10 +889,10 @@ var S = () => {
885
889
  return n.push(`inset 0 0 0 9999px ${this.BG_COLOR}`), t > 0 && n.push(`0 ${t}px 0 ${this.BG_COLOR}`), e > 0 && n.push(`0 -${e}px 0 ${this.BG_COLOR}`), n.join(", ");
886
890
  }
887
891
  };
888
- Xe = A, Xe.BG_COLOR = "rgba(0, 0, 0, 0.08)";
892
+ Ze = A, Ze.BG_COLOR = "rgba(0, 0, 0, 0.08)";
889
893
  //#endregion
890
894
  //#region src/components/selection/fake-background/text-nodes.ts
891
- var Ze = class {
895
+ var Qe = class {
892
896
  static collectTextNodes(e) {
893
897
  let t = [], { commonAncestorContainer: n } = e;
894
898
  if (n.nodeType === Node.TEXT_NODE) return t.push(n), t;
@@ -941,9 +945,9 @@ var Ze = class {
941
945
  if (!r || !n) return A.applyBoxShadowToWrapper(e), [e];
942
946
  let i = [], a = e.firstChild;
943
947
  if (!a || a.nodeType !== Node.TEXT_NODE) return A.applyBoxShadowToWrapper(e), [e];
944
- let o = Ze.findLineBreakPositions(a, t.length);
948
+ let o = Qe.findLineBreakPositions(a, t.length);
945
949
  if (o.length === 0) return A.applyBoxShadowToWrapper(e), [e];
946
- let s = Ze.splitTextAtPositions(n, o), c = document.createDocumentFragment();
950
+ let s = Qe.splitTextAtPositions(n, o), c = document.createDocumentFragment();
947
951
  return s.forEach((e) => {
948
952
  if (e.length === 0) return;
949
953
  let t = T.make("span");
@@ -957,7 +961,7 @@ var Ze = class {
957
961
  t.removeChild(e);
958
962
  }
959
963
  }
960
- }, Qe = class {
964
+ }, $e = class {
961
965
  constructor(e) {
962
966
  this.selectionUtils = e;
963
967
  }
@@ -967,7 +971,7 @@ var Ze = class {
967
971
  if (!e || e.rangeCount === 0) return;
968
972
  let t = e.getRangeAt(0);
969
973
  if (t.collapsed) return;
970
- let n = Ze.collectTextNodes(t);
974
+ let n = Qe.collectTextNodes(t);
971
975
  if (n.length === 0) return;
972
976
  let r = t.startContainer, i = t.startOffset, a = t.endContainer, o = t.endOffset, s = [];
973
977
  if (n.forEach((e) => {
@@ -1008,7 +1012,7 @@ var Ze = class {
1008
1012
  e.setStart(r, 0), e.setEnd(i, ((a = i.textContent) == null ? void 0 : a.length) || 0), this.selectionUtils.savedSelectionRange = e;
1009
1013
  }
1010
1014
  }
1011
- }, $e = class {
1015
+ }, et = class {
1012
1016
  static addFakeCursor() {
1013
1017
  let e = k.getRange();
1014
1018
  if (e === null) return;
@@ -1022,7 +1026,7 @@ var Ze = class {
1022
1026
  let t = T.find(e, o(a.fakeCursor));
1023
1027
  t && t.remove();
1024
1028
  }
1025
- }, et = class {
1029
+ }, tt = class {
1026
1030
  static findParentTag(e, t, n = 10) {
1027
1031
  let r = window.getSelection();
1028
1032
  if (!r || !r.anchorNode || !r.focusNode) return null;
@@ -1050,9 +1054,9 @@ var Ze = class {
1050
1054
  let n = document.createRange();
1051
1055
  n.selectNodeContents(e), t.addRange(n);
1052
1056
  }
1053
- }, tt = class {
1057
+ }, nt = class {
1054
1058
  constructor() {
1055
- this.instance = null, this.selection = null, this.savedSelectionRange = null, this.isFakeBackgroundEnabled = !1, this.fakeBackgroundManager = new Qe(this);
1059
+ this.instance = null, this.selection = null, this.savedSelectionRange = null, this.isFakeBackgroundEnabled = !1, this.fakeBackgroundManager = new $e(this);
1056
1060
  }
1057
1061
  static get anchorNode() {
1058
1062
  return k.getAnchorNode();
@@ -1094,19 +1098,19 @@ var Ze = class {
1094
1098
  return k.get();
1095
1099
  }
1096
1100
  static setCursor(e, t = 0) {
1097
- return Ye.setCursor(e, t);
1101
+ return Xe.setCursor(e, t);
1098
1102
  }
1099
1103
  static isRangeInsideContainer(e) {
1100
- return Ye.isRangeInsideContainer(e);
1104
+ return Xe.isRangeInsideContainer(e);
1101
1105
  }
1102
1106
  static addFakeCursor() {
1103
- $e.addFakeCursor();
1107
+ et.addFakeCursor();
1104
1108
  }
1105
1109
  static isFakeCursorInsideContainer(e) {
1106
- return $e.isFakeCursorInsideContainer(e);
1110
+ return et.isFakeCursorInsideContainer(e);
1107
1111
  }
1108
1112
  static removeFakeCursor(e = document.body) {
1109
- $e.removeFakeCursor(e);
1113
+ et.removeFakeCursor(e);
1110
1114
  }
1111
1115
  removeFakeBackground() {
1112
1116
  this.fakeBackgroundManager.removeFakeBackground();
@@ -1132,17 +1136,17 @@ var Ze = class {
1132
1136
  this.savedSelectionRange = null;
1133
1137
  }
1134
1138
  collapseToEnd() {
1135
- Ye.collapseToEnd();
1139
+ Xe.collapseToEnd();
1136
1140
  }
1137
1141
  findParentTag(e, t, n = 10) {
1138
- return et.findParentTag(e, t, n);
1142
+ return tt.findParentTag(e, t, n);
1139
1143
  }
1140
1144
  expandToTag(e) {
1141
- et.expandToTag(e);
1145
+ tt.expandToTag(e);
1142
1146
  }
1143
1147
  }, M = /* @__PURE__ */ function(e) {
1144
1148
  return e.Default = "default", e.Separator = "separator", e.Html = "html", e;
1145
- }({}), nt = /* @__PURE__ */ e((/* @__PURE__ */ t(((e, t) => {
1149
+ }({}), rt = /* @__PURE__ */ e((/* @__PURE__ */ t(((e, t) => {
1146
1150
  (function(n, r) {
1147
1151
  typeof define == "function" && define.amd ? define("html-janitor", r) : typeof e == "object" ? t.exports = r() : n.HTMLJanitor = r();
1148
1152
  })(e, function() {
@@ -1230,56 +1234,56 @@ var Ze = class {
1230
1234
  }
1231
1235
  return e;
1232
1236
  });
1233
- })))()), rt = /^\s*(?:javascript\s*:|data\s*:\s*text\s*\/\s*html)/i, it = /\s*(?:href|src)\s*=\s*(?:"\s*(?:javascript\s*:|data\s*:\s*text\s*\/\s*html)[^"]*"|'\s*(?:javascript\s*:|data\s*:\s*text\s*\/\s*html)[^']*|(?:javascript\s*:|data\s*:\s*text\s*\/\s*html)[^ \t\r\n>]*)/gi, at = (e, t, r = {}) => e.map((e) => {
1237
+ })))()), it = /^\s*(?:javascript\s*:|data\s*:\s*text\s*\/\s*html)/i, at = /\s*(?:href|src)\s*=\s*(?:"\s*(?:javascript\s*:|data\s*:\s*text\s*\/\s*html)[^"]*"|'\s*(?:javascript\s*:|data\s*:\s*text\s*\/\s*html)[^']*|(?:javascript\s*:|data\s*:\s*text\s*\/\s*html)[^ \t\r\n>]*)/gi, ot = (e, t, r = {}) => e.map((e) => {
1234
1238
  let i = h(t) ? t(e.tool) : t, a = i == null ? {} : i;
1235
- return g(a) && b(a) && b(r) ? e : n(n({}, e), {}, { data: ot(e.data, a, r) });
1236
- }), N = (e, t = {}) => new nt.default({ tags: t }).clean(e), ot = (e, t, n) => Array.isArray(e) ? st(e, t, n) : g(e) ? ct(e, t, n) : _(e) ? lt(e, t, n) : e, st = (e, t, n) => e.map((e) => ot(e, t, n)), ct = (e, t, n) => {
1239
+ return g(a) && b(a) && b(r) ? e : n(n({}, e), {}, { data: st(e.data, a, r) });
1240
+ }), N = (e, t = {}) => new rt.default({ tags: t }).clean(e), st = (e, t, n) => Array.isArray(e) ? ct(e, t, n) : g(e) ? lt(e, t, n) : _(e) ? ut(e, t, n) : e, ct = (e, t, n) => e.map((e) => st(e, t, n)), lt = (e, t, n) => {
1237
1241
  let r = {}, i = e;
1238
1242
  for (let a in e) {
1239
1243
  if (!Object.prototype.hasOwnProperty.call(e, a)) continue;
1240
1244
  let o = i[a], s = g(t) ? t : void 0, c = s == null ? void 0 : s[a];
1241
- r[a] = ot(o, c !== void 0 && ut(c) ? c : t, n);
1245
+ r[a] = st(o, c !== void 0 && dt(c) ? c : t, n);
1242
1246
  }
1243
1247
  return r;
1244
- }, lt = (e, t, n) => {
1245
- let r = yt(t, n);
1246
- return r ? ft(xt(N(e, r), r)) : b(n) ? ft(e) : ft(xt(N(e, n), n));
1247
- }, ut = (e) => g(e) || v(e) || h(e), dt = (e) => e ? rt.test(e) : !1, ft = (e) => {
1248
+ }, ut = (e, t, n) => {
1249
+ let r = bt(t, n);
1250
+ return r ? pt(St(N(e, r), r)) : b(n) ? pt(e) : pt(St(N(e, n), n));
1251
+ }, dt = (e) => g(e) || v(e) || h(e), ft = (e) => e ? it.test(e) : !1, pt = (e) => {
1248
1252
  if (!e || e.indexOf("<") === -1) return e;
1249
1253
  if (typeof document < "u") {
1250
1254
  let t = document.createElement("template");
1251
1255
  return t.innerHTML = e, t.content.querySelectorAll("[href],[src]").forEach((e) => {
1252
1256
  ["href", "src"].forEach((t) => {
1253
- dt(e.getAttribute(t)) && e.removeAttribute(t);
1257
+ ft(e.getAttribute(t)) && e.removeAttribute(t);
1254
1258
  });
1255
1259
  }), t.innerHTML;
1256
1260
  }
1257
- return e.replace(it, "");
1258
- }, pt = (e) => {
1261
+ return e.replace(at, "");
1262
+ }, mt = (e) => {
1259
1263
  if (b(e)) return {};
1260
1264
  let t = {};
1261
1265
  for (let n in e) Object.prototype.hasOwnProperty.call(e, n) && (t[n] = P(e[n]));
1262
1266
  return t;
1263
- }, mt = (e) => function(t) {
1267
+ }, ht = (e) => function(t) {
1264
1268
  let n = e.call(this, t);
1265
1269
  return n == null ? {} : n;
1266
- }, ht = new Set([
1270
+ }, gt = new Set([
1267
1271
  "class",
1268
1272
  "id",
1269
1273
  "title",
1270
1274
  "role",
1271
1275
  "dir",
1272
1276
  "lang"
1273
- ]), gt = (e) => {
1277
+ ]), _t = (e) => {
1274
1278
  let t = e.toLowerCase();
1275
- return t.startsWith("data-") || t.startsWith("aria-") || ht.has(t);
1276
- }, _t = (e) => {
1279
+ return t.startsWith("data-") || t.startsWith("aria-") || gt.has(t);
1280
+ }, vt = (e) => {
1277
1281
  let t = {};
1278
1282
  return Array.from(e.attributes).forEach((e) => {
1279
- gt(e.name) && (t[e.name] = !0);
1283
+ _t(e.name) && (t[e.name] = !0);
1280
1284
  }), t;
1281
- }, P = (e) => e === !0 ? mt(_t) : e === !1 ? !1 : h(e) ? mt(e) : _(e) ? e : g(e) ? C({}, e) : e, vt = (e, t) => {
1282
- if (b(e)) return pt(t);
1285
+ }, P = (e) => e === !0 ? ht(vt) : e === !1 ? !1 : h(e) ? ht(e) : _(e) ? e : g(e) ? C({}, e) : e, yt = (e, t) => {
1286
+ if (b(e)) return mt(t);
1283
1287
  let n = {};
1284
1288
  for (let r in e) {
1285
1289
  if (!Object.prototype.hasOwnProperty.call(e, r)) continue;
@@ -1305,9 +1309,9 @@ var Ze = class {
1305
1309
  if (!t) return n;
1306
1310
  for (let e in t) Object.prototype.hasOwnProperty.call(t, e) && (Object.prototype.hasOwnProperty.call(n, e) || (n[e] = P(t[e])));
1307
1311
  return n;
1308
- }, yt = (e, t) => g(e) && !h(e) ? vt(t, e) : e === !1 ? {} : b(t) ? null : pt(t), bt = (e, ...t) => {
1312
+ }, bt = (e, t) => g(e) && !h(e) ? yt(t, e) : e === !1 ? {} : b(t) ? null : mt(t), xt = (e, ...t) => {
1309
1313
  if (b(e)) return Object.assign({}, ...t);
1310
- let n = pt(e);
1314
+ let n = mt(e);
1311
1315
  return t.forEach((e) => {
1312
1316
  if (e) for (let t in e) {
1313
1317
  if (!Object.prototype.hasOwnProperty.call(e, t)) continue;
@@ -1331,7 +1335,7 @@ var Ze = class {
1331
1335
  }
1332
1336
  }
1333
1337
  }), n;
1334
- }, xt = (e, t) => {
1338
+ }, St = (e, t) => {
1335
1339
  if (typeof document > "u" || !e || e.indexOf("<") === -1) return e;
1336
1340
  let n = Object.entries(t).filter(([, e]) => h(e));
1337
1341
  if (n.length === 0) return e;
@@ -1348,24 +1352,24 @@ var Ze = class {
1348
1352
  }
1349
1353
  });
1350
1354
  }), r.innerHTML;
1351
- }, F = "popover", St = "manual", Ct = "data-blok-top-layer", I = () => typeof HTMLElement < "u" && "popover" in HTMLElement.prototype, wt = (e) => {
1352
- if (e.setAttribute(Ct, "true"), !I()) return !1;
1353
- e.hasAttribute(F) || e.setAttribute(F, St);
1355
+ }, F = "popover", Ct = "manual", wt = "data-blok-top-layer", I = () => typeof HTMLElement < "u" && "popover" in HTMLElement.prototype, Tt = (e) => {
1356
+ if (e.setAttribute(wt, "true"), !I()) return !1;
1357
+ e.hasAttribute(F) || e.setAttribute(F, Ct);
1354
1358
  try {
1355
1359
  return e.showPopover(), !0;
1356
1360
  } catch (e) {
1357
1361
  return !1;
1358
1362
  }
1359
- }, Tt = (e) => {
1360
- if (e.removeAttribute(Ct), I() && e.hasAttribute(F)) {
1363
+ }, Et = (e) => {
1364
+ if (e.removeAttribute(wt), I() && e.hasAttribute(F)) {
1361
1365
  try {
1362
1366
  e.hidePopover();
1363
1367
  } catch (e) {}
1364
1368
  e.removeAttribute(F);
1365
1369
  }
1366
- }, Et = (e) => e.hasAttribute(Ct), Dt = (e) => {
1370
+ }, Dt = (e) => e.hasAttribute(wt), Ot = (e) => {
1367
1371
  e.removeAttribute(F);
1368
- }, Ot, kt = 10, At = "tooltip", jt = "aria-hidden", Mt = "false", Nt = "true", Pt = "visibility", Ft = "visible", It = "hidden", Lt = class e {
1372
+ }, kt, At = 10, jt = "tooltip", Mt = "aria-hidden", Nt = "false", Pt = "true", Ft = "visibility", It = "visible", Lt = "hidden", Rt = class e {
1369
1373
  get CSS() {
1370
1374
  return {
1371
1375
  tooltip: i("fixed z-overlay top-0 left-0", "bg-tooltip-bg opacity-0", "select-none pointer-events-none", "rounded-lg shadow-tooltip", "mobile:hidden").split(" "),
@@ -1380,7 +1384,7 @@ var Ze = class {
1380
1384
  this.nodes = {
1381
1385
  wrapper: null,
1382
1386
  content: null
1383
- }, this.showed = !1, this.offsetTop = kt, this.offsetLeft = kt, this.offsetRight = kt, this.showingTimeout = null, this.ariaObserver = null, this.handleWindowScroll = () => {
1387
+ }, this.showed = !1, this.offsetTop = At, this.offsetLeft = At, this.offsetRight = At, this.showingTimeout = null, this.ariaObserver = null, this.handleWindowScroll = () => {
1384
1388
  this.showed && this.hide();
1385
1389
  }, this.prepare(), window.addEventListener("scroll", this.handleWindowScroll, { passive: !0 });
1386
1390
  }
@@ -1427,7 +1431,7 @@ var Ze = class {
1427
1431
  }
1428
1432
  }
1429
1433
  promoteToTopLayer() {
1430
- this.nodes.wrapper !== null && wt(this.nodes.wrapper);
1434
+ this.nodes.wrapper !== null && Tt(this.nodes.wrapper);
1431
1435
  }
1432
1436
  createContentNode(e) {
1433
1437
  if (typeof e == "string") return document.createTextNode(e);
@@ -1442,7 +1446,7 @@ var Ze = class {
1442
1446
  this.showed = !1;
1443
1447
  }
1444
1448
  removeFromTopLayer() {
1445
- this.nodes.wrapper !== null && Tt(this.nodes.wrapper);
1449
+ this.nodes.wrapper !== null && Et(this.nodes.wrapper);
1446
1450
  }
1447
1451
  onHover(e, t, n = {}) {
1448
1452
  e.addEventListener("mouseenter", () => {
@@ -1457,12 +1461,12 @@ var Ze = class {
1457
1461
  (t = this.ariaObserver) == null || t.disconnect(), this.ariaObserver = null, this.nodes.wrapper && this.nodes.wrapper.remove(), window.removeEventListener("scroll", this.handleWindowScroll), e.instance = null;
1458
1462
  }
1459
1463
  prepare() {
1460
- this.nodes.wrapper = this.make("div", this.CSS.tooltip), this.nodes.wrapper.setAttribute(a.interface, Ke), this.nodes.wrapper.setAttribute("data-blok-testid", "tooltip"), this.nodes.content = this.make("div", this.CSS.tooltipContent), this.nodes.content.setAttribute("data-blok-testid", "tooltip-content"), this.nodes.wrapper && this.nodes.content && (this.append(this.nodes.wrapper, this.nodes.content), this.append(document.body, this.nodes.wrapper), this.ensureTooltipAttributes());
1464
+ this.nodes.wrapper = this.make("div", this.CSS.tooltip), this.nodes.wrapper.setAttribute(a.interface, qe), this.nodes.wrapper.setAttribute("data-blok-testid", "tooltip"), this.nodes.content = this.make("div", this.CSS.tooltipContent), this.nodes.content.setAttribute("data-blok-testid", "tooltip-content"), this.nodes.wrapper && this.nodes.content && (this.append(this.nodes.wrapper, this.nodes.content), this.append(document.body, this.nodes.wrapper), this.ensureTooltipAttributes());
1461
1465
  }
1462
1466
  updateTooltipVisibility() {
1463
1467
  if (!this.nodes.wrapper) return;
1464
1468
  let e = Array.isArray(this.CSS.tooltipShown) ? this.CSS.tooltipShown[0] : this.CSS.tooltipShown, t = this.nodes.wrapper.classList.contains(e);
1465
- this.nodes.wrapper.style.setProperty(Pt, t ? Ft : It, t ? "" : "important"), this.nodes.wrapper.setAttribute(jt, t ? Mt : Nt), this.nodes.wrapper.setAttribute("data-blok-shown", t ? "true" : "false");
1469
+ this.nodes.wrapper.style.setProperty(Ft, t ? It : Lt, t ? "" : "important"), this.nodes.wrapper.setAttribute(Mt, t ? Nt : Pt), this.nodes.wrapper.setAttribute("data-blok-shown", t ? "true" : "false");
1466
1470
  }
1467
1471
  watchTooltipVisibility() {
1468
1472
  var e;
@@ -1474,7 +1478,7 @@ var Ze = class {
1474
1478
  }));
1475
1479
  }
1476
1480
  ensureTooltipAttributes() {
1477
- this.nodes.wrapper && ((!this.nodes.wrapper.hasAttribute(a.interface) || this.nodes.wrapper.getAttribute(a.interface) !== "tooltip") && this.nodes.wrapper.setAttribute(a.interface, Ke), this.nodes.wrapper.setAttribute("role", At), this.watchTooltipVisibility());
1481
+ this.nodes.wrapper && ((!this.nodes.wrapper.hasAttribute(a.interface) || this.nodes.wrapper.getAttribute(a.interface) !== "tooltip") && this.nodes.wrapper.setAttribute(a.interface, qe), this.nodes.wrapper.setAttribute("role", jt), this.watchTooltipVisibility());
1478
1482
  }
1479
1483
  placeBottom(e, t) {
1480
1484
  var n;
@@ -1515,16 +1519,16 @@ var Ze = class {
1515
1519
  Array.isArray(t) ? t.forEach((t) => e.appendChild(t)) : e.appendChild(t);
1516
1520
  }
1517
1521
  };
1518
- Ot = Lt, Ot.instance = null;
1519
- var L = () => Lt.getInstance(), Rt = (e, t, n) => {
1522
+ kt = Rt, kt.instance = null;
1523
+ var L = () => Rt.getInstance(), zt = (e, t, n) => {
1520
1524
  L().show(e, t, n == null ? {} : n);
1521
- }, zt = () => {
1525
+ }, Bt = () => {
1522
1526
  L().hide();
1523
- }, Bt = (e, t, n) => {
1527
+ }, Vt = (e, t, n) => {
1524
1528
  L().onHover(e, t, n == null ? {} : n);
1525
- }, Vt = () => {
1526
- L().destroy();
1527
1529
  }, Ht = () => {
1530
+ L().destroy();
1531
+ }, Ut = () => {
1528
1532
  var e, t;
1529
1533
  let n = window.getSelection();
1530
1534
  if (n === null) return [null, 0];
@@ -1535,7 +1539,7 @@ var L = () => Lt.getInstance(), Rt = (e, t, n) => {
1535
1539
  if (a !== void 0) return [a, 0];
1536
1540
  let o = (e = r.childNodes[i - 1]) == null ? null : e, s = (t = o == null ? void 0 : o.textContent) == null ? null : t;
1537
1541
  return [o, s === null ? 0 : s.length];
1538
- }, Ut = (e) => {
1542
+ }, Wt = (e) => {
1539
1543
  var t;
1540
1544
  let n = window.getSelection();
1541
1545
  if (n === null || n.rangeCount === 0) return 0;
@@ -1543,7 +1547,7 @@ var L = () => Lt.getInstance(), Rt = (e, t, n) => {
1543
1547
  if (i == null) return 0;
1544
1548
  let a = document.createRange();
1545
1549
  return a.selectNodeContents(i), a.setEnd(r.startContainer, r.startOffset), a.toString().length;
1546
- }, Wt = (e, t, n, r) => {
1550
+ }, Gt = (e, t, n, r) => {
1547
1551
  let i = document.createRange();
1548
1552
  r === "left" ? (i.selectNodeContents(e), i.setEnd(t, n)) : (i.selectNodeContents(e), i.setStart(t, n));
1549
1553
  let a = i.cloneContents(), o = document.createElement("div");
@@ -1555,23 +1559,23 @@ var L = () => Lt.getInstance(), Rt = (e, t, n) => {
1555
1559
  o.style.position = "absolute", o.style.visibility = "hidden", o.style.height = "auto", o.style.width = "auto", o.style.whiteSpace = window.getComputedStyle(e).whiteSpace, document.body.appendChild(o);
1556
1560
  let u = o.getBoundingClientRect().width;
1557
1561
  return document.body.removeChild(o), !(u > 0 || !Ee(s) || window.getComputedStyle(e).whiteSpace.startsWith("pre") && s.length > 0);
1558
- }, Gt = (e) => {
1562
+ }, Kt = (e) => {
1559
1563
  var t;
1560
1564
  let n = T.getDeepestNode(e);
1561
1565
  if (n === null || T.isEmpty(e)) return !0;
1562
1566
  if (T.isNativeInput(n)) return n.selectionEnd === 0;
1563
1567
  if (T.isEmpty(e)) return !0;
1564
- let [r, i] = Ht();
1568
+ let [r, i] = Ut();
1565
1569
  if (r === null) return !1;
1566
1570
  let a = window.getSelection(), o = (t = a == null ? void 0 : a.focusNode) == null ? null : t;
1567
- return o !== null && o !== e && !(o.nodeType === Node.TEXT_NODE && o.parentNode === e) ? !1 : Wt(e, r, i, "left");
1568
- }, Kt = (e) => {
1571
+ return o !== null && o !== e && !(o.nodeType === Node.TEXT_NODE && o.parentNode === e) ? !1 : Gt(e, r, i, "left");
1572
+ }, qt = (e) => {
1569
1573
  let t = T.getDeepestNode(e, !0);
1570
1574
  if (t === null) return !0;
1571
1575
  if (T.isNativeInput(t)) return t.selectionEnd === t.value.length;
1572
- let [n, r] = Ht();
1573
- return n === null ? !1 : Wt(e, n, r, "right");
1574
- }, qt, R = class e {
1576
+ let [n, r] = Ut();
1577
+ return n === null ? !1 : Gt(e, n, r, "right");
1578
+ }, Jt, R = class e {
1575
1579
  constructor(e, t) {
1576
1580
  this.cursor = -1, this.items = [], this.items = e == null ? [] : e, this.focusedCssClass = t;
1577
1581
  }
@@ -1601,16 +1605,16 @@ var L = () => Lt.getInstance(), Rt = (e, t, n) => {
1601
1605
  let n = t === e.directions.RIGHT ? -1 : 0, r = this.cursor === -1 ? n : this.cursor;
1602
1606
  r !== -1 && (this.items[r].classList.remove(this.focusedCssClass), this.items[r].removeAttribute("data-blok-focused"));
1603
1607
  let i = t === e.directions.RIGHT ? (r + 1) % this.items.length : (this.items.length + r - 1) % this.items.length;
1604
- return T.canSetCaret(this.items[i]) && te(() => tt.setCursor(this.items[i]), 50)(), this.items[i].classList.add(this.focusedCssClass), this.items[i].setAttribute("data-blok-focused", "true"), i;
1608
+ return T.canSetCaret(this.items[i]) && te(() => nt.setCursor(this.items[i]), 50)(), this.items[i].classList.add(this.focusedCssClass), this.items[i].setAttribute("data-blok-focused", "true"), i;
1605
1609
  }
1606
1610
  };
1607
- qt = R, qt.directions = {
1611
+ Jt = R, Jt.directions = {
1608
1612
  RIGHT: "right",
1609
1613
  LEFT: "left"
1610
1614
  };
1611
1615
  //#endregion
1612
1616
  //#region src/components/flipper.ts
1613
- var Jt = class e {
1617
+ var Yt = class e {
1614
1618
  get isActivated() {
1615
1619
  return this.activated;
1616
1620
  }
@@ -1770,7 +1774,7 @@ var Jt = class e {
1770
1774
  let n = e instanceof HTMLInputElement || e instanceof HTMLTextAreaElement, r = t.key === "Tab" || t.key === "ArrowUp" || t.key === "ArrowDown" || t.key === "Enter" || t.key === "ArrowRight" || t.key === "ArrowLeft", i = e.getAttribute("data-blok-flipper-navigation-target") === "true" && r, a = e.isContentEditable, o = e.closest("[data-blok-link-tool-input-opened=\"true\"]") !== null, s = a && !this.handleContentEditableTargets;
1771
1775
  return n && !i || s || o;
1772
1776
  }
1773
- }, Yt = "column_list", Xt = "column", Zt = "data-blok-columns", Qt = "data-blok-column", $t = "data-blok-column-resizer", en = (e) => {
1777
+ }, Xt = "column_list", Zt = "column", Qt = "data-blok-columns", $t = "data-blok-column", en = "data-blok-column-resizer", tn = (e) => {
1774
1778
  let t = e.leftWidth + e.rightWidth, n = e.leftGrow + e.rightGrow;
1775
1779
  if (t <= 0 || n <= 0) return {
1776
1780
  leftGrow: e.leftGrow,
@@ -1781,11 +1785,11 @@ var Jt = class e {
1781
1785
  leftGrow: n * r / t,
1782
1786
  rightGrow: n * i / t
1783
1787
  };
1784
- }, tn = (e, t, n) => {
1788
+ }, nn = (e, t, n) => {
1785
1789
  let r = Number(t.style.flexGrow) || 1, i = r + (Number(n.style.flexGrow) || 1), a = i > 0 ? Math.round(r / i * 100) : 50;
1786
1790
  e.setAttribute("aria-valuenow", String(a));
1787
- }, nn = (e, t, n, r) => {
1788
- let i = t, a = n, o = en({
1791
+ }, rn = (e, t, n, r) => {
1792
+ let i = t, a = n, o = tn({
1789
1793
  leftWidth: i.getBoundingClientRect().width,
1790
1794
  rightWidth: a.getBoundingClientRect().width,
1791
1795
  leftGrow: Number(i.style.flexGrow) || 1,
@@ -1793,22 +1797,22 @@ var Jt = class e {
1793
1797
  delta: r,
1794
1798
  minWidth: 0
1795
1799
  });
1796
- i.style.flexGrow = String(o.leftGrow), a.style.flexGrow = String(o.rightGrow), tn(e, i, a);
1797
- }, rn = 16, an = (e, t, n, r) => {
1800
+ i.style.flexGrow = String(o.leftGrow), a.style.flexGrow = String(o.rightGrow), nn(e, i, a);
1801
+ }, an = 16, on = (e, t, n, r) => {
1798
1802
  let i = n.getBoundingClientRect().width + r.getBoundingClientRect().width, a = {
1799
- ArrowLeft: -rn,
1800
- ArrowRight: rn,
1803
+ ArrowLeft: -an,
1804
+ ArrowRight: an,
1801
1805
  Home: -i,
1802
1806
  End: i
1803
1807
  }[e.key];
1804
- a !== void 0 && (e.preventDefault(), nn(t, n, r, a));
1805
- }, on = (e, t, n, r) => {
1808
+ a !== void 0 && (e.preventDefault(), rn(t, n, r, a));
1809
+ }, sn = (e, t, n, r) => {
1806
1810
  if (e.button !== 0) return;
1807
1811
  e.preventDefault();
1808
1812
  let i = n, a = r, o = e.clientX, s = i.getBoundingClientRect().width, c = a.getBoundingClientRect().width, l = Number(i.style.flexGrow) || 1, u = Number(a.style.flexGrow) || 1;
1809
1813
  t.setPointerCapture(e.pointerId), t.setAttribute("data-dragging", "");
1810
1814
  let d = (e) => {
1811
- let n = en({
1815
+ let n = tn({
1812
1816
  leftWidth: s,
1813
1817
  rightWidth: c,
1814
1818
  leftGrow: l,
@@ -1816,38 +1820,38 @@ var Jt = class e {
1816
1820
  delta: e.clientX - o,
1817
1821
  minWidth: 0
1818
1822
  });
1819
- i.style.flexGrow = String(n.leftGrow), a.style.flexGrow = String(n.rightGrow), tn(t, i, a);
1823
+ i.style.flexGrow = String(n.leftGrow), a.style.flexGrow = String(n.rightGrow), nn(t, i, a);
1820
1824
  }, f = (e) => {
1821
1825
  t.releasePointerCapture(e.pointerId), t.removeAttribute("data-dragging"), t.removeEventListener("pointermove", d), t.removeEventListener("pointerup", f);
1822
1826
  };
1823
1827
  t.addEventListener("pointermove", d), t.addEventListener("pointerup", f);
1824
- }, sn = (e, t, n, r) => {
1828
+ }, cn = (e, t, n, r) => {
1825
1829
  let i = document.createElement("div");
1826
- return i.setAttribute($t, ""), i.setAttribute("data-blok-testid", "column-resizer"), i.setAttribute("role", "separator"), i.setAttribute("aria-orientation", "vertical"), i.setAttribute("tabindex", "0"), i.setAttribute("aria-label", n.i18n.t("tools.columns.resizeAriaLabel")), i.setAttribute("aria-valuemin", "0"), i.setAttribute("aria-valuemax", "100"), tn(i, e, t), i.addEventListener("pointerdown", (n) => {
1827
- on(n, i, e, t);
1830
+ return i.setAttribute(en, ""), i.setAttribute("data-blok-testid", "column-resizer"), i.setAttribute("role", "separator"), i.setAttribute("aria-orientation", "vertical"), i.setAttribute("tabindex", "0"), i.setAttribute("aria-label", n.i18n.t("tools.columns.resizeAriaLabel")), i.setAttribute("aria-valuemin", "0"), i.setAttribute("aria-valuemax", "100"), nn(i, e, t), i.addEventListener("pointerdown", (n) => {
1831
+ sn(n, i, e, t);
1828
1832
  }), i.addEventListener("dblclick", () => {
1829
- ln(n, r);
1833
+ un(n, r);
1830
1834
  }), i.addEventListener("keydown", (n) => {
1831
- an(n, i, e, t);
1835
+ on(n, i, e, t);
1832
1836
  }), i;
1833
- }, cn = (e, t, n, r, i) => {
1834
- n || (e.querySelectorAll(`[${$t}]`).forEach((e) => e.remove()), t.slice(1).forEach((n, a) => {
1835
- let o = t[a], s = sn(o, n, r, i);
1837
+ }, ln = (e, t, n, r, i) => {
1838
+ n || (e.querySelectorAll(`[${en}]`).forEach((e) => e.remove()), t.slice(1).forEach((n, a) => {
1839
+ let o = t[a], s = cn(o, n, r, i);
1836
1840
  e.insertBefore(s, n);
1837
1841
  }));
1838
- }, ln = (e, t) => {
1842
+ }, un = (e, t) => {
1839
1843
  for (let n of e.blocks.getChildren(t)) n.holder.style.flexGrow = "1";
1840
- }, un = async (e, t) => {
1844
+ }, dn = async (e, t) => {
1841
1845
  let n = e.blocks.getBlockIndex(t);
1842
1846
  n !== void 0 && await e.blocks.delete(n);
1843
- }, dn = async (e, t, n) => {
1847
+ }, fn = async (e, t, n) => {
1844
1848
  var r, i;
1845
1849
  let a = e.blocks.getChildren(t), o = n === void 0 ? a : a.filter((e) => e.id !== n);
1846
1850
  if (o.length !== 1) return !1;
1847
1851
  let s = (r = (i = e.blocks.getById(t)) == null ? void 0 : i.parentId) == null ? null : r, [c] = o, l = e.blocks.getChildren(c.id);
1848
1852
  for (let t of l) e.blocks.setBlockParent(t.id, s);
1849
- return e.blocks.setBlockParent(c.id, null), await un(e, c.id), await un(e, t), !0;
1850
- }, fn = [
1853
+ return e.blocks.setBlockParent(c.id, null), await dn(e, c.id), await dn(e, t), !0;
1854
+ }, pn = [
1851
1855
  {
1852
1856
  name: "gray",
1853
1857
  text: "#787774",
@@ -1893,7 +1897,7 @@ var Jt = class e {
1893
1897
  text: "#d44c47",
1894
1898
  bg: "#fdebec"
1895
1899
  }
1896
- ], pn = [
1900
+ ], mn = [
1897
1901
  {
1898
1902
  name: "gray",
1899
1903
  text: "#9b9b9b",
@@ -1940,7 +1944,7 @@ var Jt = class e {
1940
1944
  bg: "#4e1a18"
1941
1945
  }
1942
1946
  ];
1943
- function mn(e, t) {
1947
+ function hn(e, t) {
1944
1948
  return `var(--blok-color-${e}-${t})`;
1945
1949
  }
1946
1950
  //#endregion
@@ -1949,7 +1953,7 @@ function z(e) {
1949
1953
  let t = e.replace(/\s/g, "").toLowerCase();
1950
1954
  return t === "rgb(255,255,255)" || t === "#ffffff" || t === "#fff" || t === "white";
1951
1955
  }
1952
- function hn(e) {
1956
+ function gn(e) {
1953
1957
  let t = e.replace(/\s/g, "").toLowerCase(), n = /^rgba?\((\d+),(\d+),(\d+)(?:,[\d.]+)?\)$/.exec(t);
1954
1958
  if (n) {
1955
1959
  let e = parseInt(n[1], 10) / 255, t = parseInt(n[2], 10) / 255, r = parseInt(n[3], 10) / 255;
@@ -1981,12 +1985,12 @@ function hn(e) {
1981
1985
  return -1;
1982
1986
  }
1983
1987
  function B(e) {
1984
- let t = hn(e);
1988
+ let t = gn(e);
1985
1989
  return t >= 0 && t < .12;
1986
1990
  }
1987
1991
  //#endregion
1988
1992
  //#region src/components/utils/color-mapping.ts
1989
- function gn(e, t, n) {
1993
+ function _n(e, t, n) {
1990
1994
  let r = t / 100, i = n / 100;
1991
1995
  if (r === 0) {
1992
1996
  let e = Math.round(i * 255);
@@ -2038,10 +2042,10 @@ function V(e) {
2038
2042
  Number(a[3])
2039
2043
  ];
2040
2044
  let o = /^hsla?\(\s*([\d.]+)\s*,\s*([\d.]+)%\s*,\s*([\d.]+)%\s*(?:,\s*[\d.]+\s*)?\)$/i.exec(e);
2041
- return o ? gn(Number(o[1]), Number(o[2]), Number(o[3])) : null;
2045
+ return o ? _n(Number(o[1]), Number(o[2]), Number(o[3])) : null;
2042
2046
  }
2043
- var _n = .1;
2044
- function vn(e) {
2047
+ var vn = .1;
2048
+ function yn(e) {
2045
2049
  let t = e[0] / 255, n = e[1] / 255, r = e[2] / 255, i = Math.max(t, n, r), a = Math.min(t, n, r), o = (i + a) / 2;
2046
2050
  if (i === a) return [
2047
2051
  0,
@@ -2055,8 +2059,8 @@ function vn(e) {
2055
2059
  o
2056
2060
  ];
2057
2061
  }
2058
- function yn(e, t) {
2059
- let n = e[1] < _n, r = t[1] < _n;
2062
+ function bn(e, t) {
2063
+ let n = e[1] < vn, r = t[1] < vn;
2060
2064
  if (n && r) {
2061
2065
  let n = Math.abs(e[2] - t[2]);
2062
2066
  return n * n;
@@ -2069,11 +2073,11 @@ function H(e, t) {
2069
2073
  if (t === "bg" && (z(e) || B(e))) return e;
2070
2074
  let n = V(e);
2071
2075
  if (n === null) return e;
2072
- let r = vn(n);
2073
- return fn.reduce((e, n) => {
2076
+ let r = yn(n);
2077
+ return pn.reduce((e, n) => {
2074
2078
  let i = V(n[t]);
2075
2079
  if (i === null) return e;
2076
- let a = yn(r, vn(i));
2080
+ let a = bn(r, yn(i));
2077
2081
  return a < e.distance ? {
2078
2082
  color: n[t],
2079
2083
  distance: a
@@ -2083,15 +2087,15 @@ function H(e, t) {
2083
2087
  distance: Infinity
2084
2088
  }).color;
2085
2089
  }
2086
- function bn(e, t) {
2090
+ function xn(e, t) {
2087
2091
  var n;
2088
2092
  if (t === "bg" && (z(e) || B(e))) return null;
2089
2093
  let r = V(e);
2090
2094
  if (r === null) return null;
2091
- let i = vn(r), a = [...fn, ...pn].reduce((e, n) => {
2095
+ let i = yn(r), a = [...pn, ...mn].reduce((e, n) => {
2092
2096
  let r = V(n[t]);
2093
2097
  if (r === null) return e;
2094
- let a = yn(i, vn(r));
2098
+ let a = bn(i, yn(r));
2095
2099
  return e === null || a < e.distance ? {
2096
2100
  name: n.name,
2097
2101
  distance: a
@@ -2101,17 +2105,17 @@ function bn(e, t) {
2101
2105
  }
2102
2106
  //#endregion
2103
2107
  //#region src/components/modules/paste/google-docs-preprocessor.ts
2104
- function xn(e) {
2108
+ function Sn(e) {
2105
2109
  let t = document.createElement("div");
2106
2110
  t.innerHTML = e;
2107
- let n = On(t);
2108
- return zn(t, n), n && (Vn(t), Dn(t)), t.innerHTML;
2111
+ let n = kn(t);
2112
+ return Bn(t, n), n && (Hn(t), On(t)), t.innerHTML;
2109
2113
  }
2110
- function Sn(e, t) {
2114
+ function Cn(e, t) {
2111
2115
  let n = e.parentElement;
2112
- return n === null ? null : n === t ? e : Sn(n, t);
2116
+ return n === null ? null : n === t ? e : Cn(n, t);
2113
2117
  }
2114
- function Cn(e, t, n) {
2118
+ function wn(e, t, n) {
2115
2119
  let r = e.cloneNode(!1), i = [];
2116
2120
  for (let n of Array.from(e.childNodes)) {
2117
2121
  if (n === t) break;
@@ -2119,11 +2123,11 @@ function Cn(e, t, n) {
2119
2123
  }
2120
2124
  return i.forEach((e) => r.appendChild(e)), n !== null && r.appendChild(n), r.childNodes.length > 0 ? r : null;
2121
2125
  }
2122
- function wn(e, t, n) {
2126
+ function Tn(e, t, n) {
2123
2127
  let r = e.cloneNode(!1), i = Array.from(e.childNodes), a = i.findIndex((e) => e === t), o = i.slice(a + 1);
2124
2128
  return n !== null && r.appendChild(n), o.forEach((e) => r.appendChild(e)), r.childNodes.length > 0 ? r : null;
2125
2129
  }
2126
- function Tn(e, t) {
2130
+ function En(e, t) {
2127
2131
  let n = (e, r, i) => {
2128
2132
  if (e === t) return {
2129
2133
  before: r,
@@ -2133,39 +2137,39 @@ function Tn(e, t) {
2133
2137
  return a === null ? {
2134
2138
  before: r,
2135
2139
  after: i
2136
- } : n(a, Cn(a, e, r), wn(a, e, i));
2140
+ } : n(a, wn(a, e, r), Tn(a, e, i));
2137
2141
  };
2138
2142
  return n(e, null, null);
2139
2143
  }
2140
- function En(e, t) {
2144
+ function Dn(e, t) {
2141
2145
  let n = e.parentElement;
2142
- return n === null || n === t ? !1 : n.tagName === "TABLE" ? !0 : En(n, t);
2146
+ return n === null || n === t ? !1 : n.tagName === "TABLE" ? !0 : Dn(n, t);
2143
2147
  }
2144
- function Dn(e) {
2148
+ function On(e) {
2145
2149
  let t = Array.from(e.querySelectorAll("img"));
2146
2150
  for (let n of t) {
2147
- if (En(n, e)) continue;
2148
- let t = Sn(n, e);
2151
+ if (Dn(n, e)) continue;
2152
+ let t = Cn(n, e);
2149
2153
  if (!t) continue;
2150
- let { before: r, after: i } = Tn(n, t), a = document.createDocumentFragment();
2154
+ let { before: r, after: i } = En(n, t), a = document.createDocumentFragment();
2151
2155
  r && a.appendChild(r), a.appendChild(n), i && a.appendChild(i), t.replaceWith(a);
2152
2156
  }
2153
2157
  }
2154
- function On(e) {
2158
+ function kn(e) {
2155
2159
  let t = e.querySelector("b[id^=\"docs-internal-guid-\"]");
2156
2160
  if (!t) return !1;
2157
2161
  let n = document.createDocumentFragment();
2158
2162
  for (; t.firstChild;) n.appendChild(t.firstChild);
2159
2163
  return t.replaceWith(n), !0;
2160
2164
  }
2161
- function kn(e, t, n) {
2165
+ function An(e, t, n) {
2162
2166
  return e ? `background-color: ${n}` : t ? "background-color: transparent" : "";
2163
2167
  }
2164
- function An(e) {
2168
+ function jn(e) {
2165
2169
  let t = e.replace(/\s/g, "");
2166
2170
  return t === "rgb(0,0,0)" || t === "#000000";
2167
2171
  }
2168
- function jn(e) {
2172
+ function Mn(e) {
2169
2173
  let t = e.replace(/\s/g, "").toLowerCase(), n = /^rgba?\((\d+),(\d+),(\d+)(?:,[\d.]+)?\)$/.exec(t);
2170
2174
  if (n) {
2171
2175
  let e = parseInt(n[1], 10) / 255, t = parseInt(n[2], 10) / 255, r = parseInt(n[3], 10) / 255;
@@ -2196,17 +2200,17 @@ function jn(e) {
2196
2200
  }
2197
2201
  return -1;
2198
2202
  }
2199
- var Mn = z, Nn = B;
2200
- function Pn(e) {
2201
- let t = jn(e);
2203
+ var Nn = z, Pn = B;
2204
+ function Fn(e) {
2205
+ let t = Mn(e);
2202
2206
  return t >= 0 && t > .75;
2203
2207
  }
2204
- function Fn(e, t, n, r, i) {
2208
+ function In(e, t, n, r, i) {
2205
2209
  if (!t && !n) return e;
2206
- let a = t && r !== void 0 ? H(r, "text") : "", o = n && i !== void 0 ? H(i, "bg") : "", s = [t ? `color: ${a}` : "", kn(n, t, o)].filter(Boolean).join("; ");
2210
+ let a = t && r !== void 0 ? H(r, "text") : "", o = n && i !== void 0 ? H(i, "bg") : "", s = [t ? `color: ${a}` : "", An(n, t, o)].filter(Boolean).join("; ");
2207
2211
  return s ? `<mark style="${s};">${e}</mark>` : e;
2208
2212
  }
2209
- var In = new Set([
2213
+ var Ln = new Set([
2210
2214
  "H1",
2211
2215
  "H2",
2212
2216
  "H3",
@@ -2214,34 +2218,34 @@ var In = new Set([
2214
2218
  "H5",
2215
2219
  "H6"
2216
2220
  ]);
2217
- function Ln(e) {
2221
+ function Rn(e) {
2218
2222
  let t = e.parentElement;
2219
- return t === null ? !1 : In.has(t.tagName) ? !0 : Ln(t);
2223
+ return t === null ? !1 : Ln.has(t.tagName) ? !0 : Rn(t);
2220
2224
  }
2221
- function Rn(e, t) {
2225
+ function zn(e, t) {
2222
2226
  var n, r, i;
2223
- let a = (n = e.getAttribute("style")) == null ? "" : n, o = /font-weight\s*:\s*(700|bold)/i.test(a) && !Ln(e), s = /font-style\s*:\s*italic/i.test(a), c = (/* @__PURE__ */ RegExp("(?<![a-z-])color\\s*:\\s*([^;]+)", "i")).exec(a), l = /background-color\s*:\s*([^;]+)/i.exec(a), u = c == null || (r = c[1]) == null ? void 0 : r.trim(), d = l == null || (i = l[1]) == null ? void 0 : i.trim(), f = t ? u !== void 0 && !An(u) : u !== void 0 && !An(u) && !Pn(u), p = d !== void 0 && d !== "transparent" && !Mn(d) && !Nn(d);
2227
+ let a = (n = e.getAttribute("style")) == null ? "" : n, o = /font-weight\s*:\s*(700|bold)/i.test(a) && !Rn(e), s = /font-style\s*:\s*italic/i.test(a), c = (/* @__PURE__ */ RegExp("(?<![a-z-])color\\s*:\\s*([^;]+)", "i")).exec(a), l = /background-color\s*:\s*([^;]+)/i.exec(a), u = c == null || (r = c[1]) == null ? void 0 : r.trim(), d = l == null || (i = l[1]) == null ? void 0 : i.trim(), f = t ? u !== void 0 && !jn(u) : u !== void 0 && !jn(u) && !Fn(u), p = d !== void 0 && d !== "transparent" && !Nn(d) && !Pn(d);
2224
2228
  if (!o && !s && !f && !p) return null;
2225
- let m = Fn(e.innerHTML, f, p, u, d), h = s ? `<i>${m}</i>` : m;
2229
+ let m = In(e.innerHTML, f, p, u, d), h = s ? `<i>${m}</i>` : m;
2226
2230
  return o ? `<b>${h}</b>` : h;
2227
2231
  }
2228
- function zn(e, t) {
2232
+ function Bn(e, t) {
2229
2233
  for (let n of Array.from(e.querySelectorAll("span[style]"))) {
2230
- let e = Rn(n, t);
2234
+ let e = zn(n, t);
2231
2235
  e !== null && n.replaceWith(document.createRange().createContextualFragment(e));
2232
2236
  }
2233
- t && Bn(e);
2237
+ t && Vn(e);
2234
2238
  }
2235
- function Bn(e) {
2239
+ function Vn(e) {
2236
2240
  for (let i of Array.from(e.querySelectorAll("a[style]"))) {
2237
2241
  var t, n, r;
2238
- let e = (t = i.getAttribute("style")) == null ? "" : t, a = (/* @__PURE__ */ RegExp("(?<![a-z-])color\\s*:\\s*([^;]+)", "i")).exec(e), o = /background-color\s*:\s*([^;]+)/i.exec(e), s = a == null || (n = a[1]) == null ? void 0 : n.trim(), c = o == null || (r = o[1]) == null ? void 0 : r.trim(), l = s !== void 0 && !An(s) && s !== "inherit", u = c !== void 0 && c !== "transparent" && c !== "inherit";
2242
+ let e = (t = i.getAttribute("style")) == null ? "" : t, a = (/* @__PURE__ */ RegExp("(?<![a-z-])color\\s*:\\s*([^;]+)", "i")).exec(e), o = /background-color\s*:\s*([^;]+)/i.exec(e), s = a == null || (n = a[1]) == null ? void 0 : n.trim(), c = o == null || (r = o[1]) == null ? void 0 : r.trim(), l = s !== void 0 && !jn(s) && s !== "inherit", u = c !== void 0 && c !== "transparent" && c !== "inherit";
2239
2243
  if (!l && !u) continue;
2240
- let d = l ? H(s, "text") : "", f = u ? H(c, "bg") : "", p = [l ? `color: ${d}` : "", kn(u, l, f)].filter(Boolean).join("; "), m = i;
2244
+ let d = l ? H(s, "text") : "", f = u ? H(c, "bg") : "", p = [l ? `color: ${d}` : "", An(u, l, f)].filter(Boolean).join("; "), m = i;
2241
2245
  m.innerHTML = `<mark style="${p};">${m.innerHTML}</mark>`, m.style.removeProperty("color"), m.style.removeProperty("background-color");
2242
2246
  }
2243
2247
  }
2244
- function Vn(e) {
2248
+ function Hn(e) {
2245
2249
  for (let t of Array.from(e.querySelectorAll("td, th"))) {
2246
2250
  let e = t.querySelectorAll("p");
2247
2251
  if (e.length !== 0) {
@@ -2255,7 +2259,7 @@ function Vn(e) {
2255
2259
  }
2256
2260
  //#endregion
2257
2261
  //#region src/tools/callout/constants.ts
2258
- var Hn = "callout", Un = "tools.callout.color", Wn = "tools.callout.editIcon", Gn = "tools.callout.addEmoji", Kn = "tools.callout.removeEmoji", qn = "tools.callout.filterEmojis", Jn = "tools.callout.calloutEmojiCategory", Yn = "tools.callout.noEmojisFound", Xn = "tools.callout.pickRandom", Zn = "tools.callout.skinTone", Qn = "tools.callout.emojiCategoryPeople", $n = "tools.callout.emojiCategoryNature", er = "tools.callout.emojiCategoryFood", tr = "tools.callout.emojiCategoryActivity", nr = "tools.callout.emojiCategoryTravel", rr = "tools.callout.emojiCategoryObjects", ir = "tools.callout.emojiCategorySymbols", ar = "tools.callout.emojiCategoryFlags", or = "💡", sr = "rounded-xl pl-8 pr-4 py-[5px] my-1 flex items-start gap-2 relative", cr = "text-[1.5rem] leading-[1] cursor-pointer bg-transparent border-0 px-0 py-[7px] h-[38px] flex-shrink-0 select-none", lr = "flex-1 min-w-0", ur = "tools.code.language", dr = "tools.code.copied", fr = "tools.code.copyCode", pr = "tools.code.searchLanguage", mr = "plain text", hr = [
2262
+ var Un = "callout", Wn = "tools.callout.color", Gn = "tools.callout.editIcon", Kn = "tools.callout.addEmoji", qn = "tools.callout.removeEmoji", Jn = "tools.callout.filterEmojis", Yn = "tools.callout.calloutEmojiCategory", Xn = "tools.callout.noEmojisFound", Zn = "tools.callout.pickRandom", Qn = "tools.callout.skinTone", $n = "tools.callout.emojiCategoryPeople", er = "tools.callout.emojiCategoryNature", tr = "tools.callout.emojiCategoryFood", nr = "tools.callout.emojiCategoryActivity", rr = "tools.callout.emojiCategoryTravel", ir = "tools.callout.emojiCategoryObjects", ar = "tools.callout.emojiCategorySymbols", or = "tools.callout.emojiCategoryFlags", sr = "💡", cr = "rounded-xl pl-8 pr-4 py-[5px] my-1 flex items-start gap-2 relative", lr = "text-[1.5rem] leading-[1] cursor-pointer bg-transparent border-0 px-0 py-[7px] h-[38px] flex-shrink-0 select-none", ur = "flex-1 min-w-0", dr = "tools.code.language", fr = "tools.code.copied", pr = "tools.code.copyCode", mr = "tools.code.searchLanguage", hr = "plain text", gr = [
2259
2263
  {
2260
2264
  id: "plain text",
2261
2265
  name: "Plain Text"
@@ -2380,8 +2384,8 @@ var Hn = "callout", Un = "tools.callout.color", Wn = "tools.callout.editIcon", G
2380
2384
  id: "lua",
2381
2385
  name: "Lua"
2382
2386
  }
2383
- ], gr = "group/code flex flex-col rounded-xl border border-border-secondary bg-bg-secondary overflow-hidden my-2", _r = "flex items-center gap-1 px-3 py-1.5 text-xs text-gray-text", vr = "inline-flex items-center px-1.5 py-0.5 rounded cursor-pointer bg-transparent border-0 text-xs text-gray-text font-medium transition-colors can-hover:hover:bg-item-hover-bg select-none", yr = "flex items-center gap-1 opacity-0 group-hover/code:opacity-100 transition-opacity", br = "p-1 rounded cursor-pointer bg-transparent border-0 text-gray-text transition-colors can-hover:hover:bg-item-hover-bg flex items-center justify-center", xr = "p-1.5 rounded-lg cursor-pointer bg-transparent border-0 text-gray-text transition-colors can-hover:hover:bg-item-hover-bg flex items-center justify-center", Sr = "block px-4 py-3 font-mono text-sm leading-relaxed outline-hidden whitespace-pre-wrap overflow-x-auto min-h-[1.5em] caret-text-primary", Cr = "text-xs text-gray-text font-medium select-none", wr = new Set(["latex", "mermaid"]), Tr = "tools.code.codeTab", Er = "tools.code.previewTab", Dr = "px-4 py-3 overflow-x-auto min-h-[1.5em] flex justify-center", Or = "tools.code.sideBySide", kr = "flex items-center rounded-lg border border-border-secondary p-0.5 gap-0.5", Ar = "p-1 rounded cursor-pointer bg-transparent border-0 text-gray-text transition-colors flex items-center justify-center", jr = "p-1 rounded cursor-pointer bg-item-hover-bg border-0 text-primary transition-colors flex items-center justify-center", Mr = "flex flex-col overflow-hidden", Nr = "flex flex-row overflow-hidden", Pr = "flex-1 min-w-0 overflow-hidden", Fr = new Set(hr.map((e) => e.id).filter((e) => e !== mr)), Ir = "flex overflow-hidden", Lr = "select-none text-right pl-4 pr-3 py-3 font-mono text-sm leading-relaxed text-gray-text/40 shrink-0", Rr = "leading-relaxed cursor-text", zr = /<%=\s*remote_id\s*%>/;
2384
- function Br(e) {
2387
+ ], _r = "group/code flex flex-col rounded-xl border border-border-secondary bg-bg-secondary overflow-hidden my-2", vr = "flex items-center gap-1 px-3 py-1.5 text-xs text-gray-text", yr = "inline-flex items-center px-1.5 py-0.5 rounded cursor-pointer bg-transparent border-0 text-xs text-gray-text font-medium transition-colors can-hover:hover:bg-item-hover-bg select-none", br = "flex items-center gap-1 opacity-0 group-hover/code:opacity-100 transition-opacity", xr = "p-1 rounded cursor-pointer bg-transparent border-0 text-gray-text transition-colors can-hover:hover:bg-item-hover-bg flex items-center justify-center", Sr = "p-1.5 rounded-lg cursor-pointer bg-transparent border-0 text-gray-text transition-colors can-hover:hover:bg-item-hover-bg flex items-center justify-center", Cr = "block px-4 py-3 font-mono text-sm leading-relaxed outline-hidden whitespace-pre-wrap overflow-x-auto min-h-[1.5em] caret-text-primary", wr = "text-xs text-gray-text font-medium select-none", Tr = new Set(["latex", "mermaid"]), Er = "tools.code.codeTab", Dr = "tools.code.previewTab", Or = "px-4 py-3 overflow-x-auto min-h-[1.5em] flex justify-center", kr = "tools.code.sideBySide", Ar = "flex items-center rounded-lg border border-border-secondary p-0.5 gap-0.5", jr = "p-1 rounded cursor-pointer bg-transparent border-0 text-gray-text transition-colors flex items-center justify-center", Mr = "p-1 rounded cursor-pointer bg-item-hover-bg border-0 text-primary transition-colors flex items-center justify-center", Nr = "flex flex-col overflow-hidden", Pr = "flex flex-row overflow-hidden", Fr = "flex-1 min-w-0 overflow-hidden", Ir = new Set(gr.map((e) => e.id).filter((e) => e !== hr)), Lr = "flex overflow-hidden", Rr = "select-none text-right pl-4 pr-3 py-3 font-mono text-sm leading-relaxed text-gray-text/40 shrink-0", zr = "leading-relaxed cursor-text", Br = /<%=\s*remote_id\s*%>/;
2388
+ function Vr(e) {
2385
2389
  var t, n, r, i;
2386
2390
  let a = (t = /[?&](?:t|start)=([0-9hms]+)/.exec(e)) == null ? void 0 : t[1];
2387
2391
  if (a === void 0) return null;
@@ -2389,7 +2393,7 @@ function Br(e) {
2389
2393
  let o = /^(?:(\d+)h)?(?:(\d+)m)?(?:(\d+)s)?$/.exec(a);
2390
2394
  return !o || o[1] === void 0 && o[2] === void 0 && o[3] === void 0 ? null : Number((n = o[1]) == null ? 0 : n) * 3600 + Number((r = o[2]) == null ? 0 : r) * 60 + Number((i = o[3]) == null ? 0 : i);
2391
2395
  }
2392
- var Vr = {
2396
+ var Hr = {
2393
2397
  youtube: {
2394
2398
  title: "YouTube",
2395
2399
  type: "video",
@@ -2397,7 +2401,7 @@ var Vr = {
2397
2401
  embedUrl: "https://www.youtube.com/embed/<%= remote_id %>",
2398
2402
  id: (e) => {
2399
2403
  var t, n;
2400
- let r = Br((t = e[1]) == null ? "" : t);
2404
+ let r = Vr((t = e[1]) == null ? "" : t);
2401
2405
  return r !== null && r > 0 ? `${e[0]}?start=${r}` : (n = e[0]) == null ? "" : n;
2402
2406
  },
2403
2407
  width: 580,
@@ -3589,8 +3593,8 @@ var Vr = {
3589
3593
  height: 0
3590
3594
  }
3591
3595
  };
3592
- function Hr(e) {
3593
- for (let [n, r] of Object.entries(Vr)) {
3596
+ function Ur(e) {
3597
+ for (let [n, r] of Object.entries(Hr)) {
3594
3598
  var t;
3595
3599
  let i = r.regex.exec(e);
3596
3600
  if (!i) continue;
@@ -3598,7 +3602,7 @@ function Hr(e) {
3598
3602
  return {
3599
3603
  service: n,
3600
3604
  remoteId: o,
3601
- embedUrl: Ur(n, o),
3605
+ embedUrl: Wr(n, o),
3602
3606
  kind: (t = r.kind) == null ? "iframe" : t,
3603
3607
  title: r.title,
3604
3608
  type: r.type
@@ -3606,12 +3610,12 @@ function Hr(e) {
3606
3610
  }
3607
3611
  return null;
3608
3612
  }
3609
- function Ur(e, t) {
3610
- let n = Vr[e];
3613
+ function Wr(e, t) {
3614
+ let n = Hr[e];
3611
3615
  if (!n) throw Error(`Unknown embed service: ${e}`);
3612
- return n.embedUrl.replace(zr, () => t);
3616
+ return n.embedUrl.replace(Br, () => t);
3613
3617
  }
3614
- function Wr(e) {
3618
+ function Gr(e) {
3615
3619
  try {
3616
3620
  let { protocol: t } = new URL(e);
3617
3621
  return t === "http:" || t === "https:";
@@ -3621,7 +3625,7 @@ function Wr(e) {
3621
3625
  }
3622
3626
  //#endregion
3623
3627
  //#region src/components/utils/key-icon.ts
3624
- var Gr = {
3628
+ var Kr = {
3625
3629
  "⌘": "⌘",
3626
3630
  "⇧": "⇧",
3627
3631
  "⌥": "⌥",
@@ -3647,12 +3651,12 @@ var Gr = {
3647
3651
  ins: "Ins",
3648
3652
  win: "⊞"
3649
3653
  };
3650
- function Kr(e) {
3654
+ function qr(e) {
3651
3655
  var t, n;
3652
3656
  let r = e.trim();
3653
- return (t = (n = Gr[r.toLowerCase()]) == null ? Gr[r] : n) == null ? r : t;
3657
+ return (t = (n = Kr[r.toLowerCase()]) == null ? Kr[r] : n) == null ? r : t;
3654
3658
  }
3655
- function qr(e) {
3659
+ function Jr(e) {
3656
3660
  let t = /([⌘⇧⌥⌃⌫⏎⎋⌦↑↓←→↵⇥])|([^⌘⇧⌥⌃⌫⏎⎋⌦↑↓←→↵⇥]+)/gu, n = [];
3657
3661
  for (let r of e.matchAll(t)) {
3658
3662
  let e = r[0].trim();
@@ -3660,15 +3664,15 @@ function qr(e) {
3660
3664
  }
3661
3665
  return n;
3662
3666
  }
3663
- function Jr(e) {
3667
+ function Yr(e) {
3664
3668
  let t = e.length === 1, n = t ? 13 : 11, r = t ? 13 : 7.5, i = Math.ceil(e.length * r);
3665
3669
  return `<svg xmlns="http://www.w3.org/2000/svg" width="${i}" height="16" viewBox="0 0 ${i} 16" style="display:inline-block;vertical-align:middle;flex-shrink:0" aria-hidden="true"><text x="${i / 2}" y="9" text-anchor="middle" dominant-baseline="middle" font-family="-apple-system,BlinkMacSystemFont,'SF Pro Text','Helvetica Neue',sans-serif" font-size="${n}" font-weight="400" fill="currentColor">${e}</text></svg>`;
3666
3670
  }
3667
- function Yr(e) {
3668
- let t = e.split(" + ").flatMap(qr);
3669
- return t.length === 0 ? e : `<span style="display:inline-flex;align-items:center;line-height:1">${t.map((e) => Jr(Kr(e))).join("")}</span>`;
3671
+ function Xr(e) {
3672
+ let t = e.split(" + ").flatMap(Jr);
3673
+ return t.length === 0 ? e : `<span style="display:inline-flex;align-items:center;line-height:1">${t.map((e) => Yr(qr(e))).join("")}</span>`;
3670
3674
  }
3671
- var Xr = {
3675
+ var Zr = {
3672
3676
  "⌘": "Command",
3673
3677
  "⇧": "Shift",
3674
3678
  "⌥": "Option",
@@ -3687,12 +3691,12 @@ var Xr = {
3687
3691
  ins: "Insert",
3688
3692
  "⊞": "Win"
3689
3693
  };
3690
- function Zr(e) {
3691
- let t = e.split(" + ").flatMap(qr);
3694
+ function Qr(e) {
3695
+ let t = e.split(" + ").flatMap(Jr);
3692
3696
  return t.length === 0 ? e : t.map((e) => {
3693
3697
  var t, n;
3694
3698
  let r = e.trim(), i = r.toLowerCase();
3695
- return (t = (n = Xr[r]) == null ? Xr[i] : n) == null ? r.toUpperCase() : t;
3699
+ return (t = (n = Zr[r]) == null ? Zr[i] : n) == null ? r.toUpperCase() : t;
3696
3700
  }).join("+");
3697
3701
  }
3698
3702
  //#endregion
@@ -3703,18 +3707,18 @@ var U = {
3703
3707
  alignedCenter: "text-center",
3704
3708
  title: "",
3705
3709
  description: "opacity-60 mt-[3px]"
3706
- }, Qr = class {
3710
+ }, $r = class {
3707
3711
  constructor(e) {
3708
3712
  let t = e.alignment === "center" ? "center" : "start";
3709
3713
  this.nodes = {
3710
3714
  root: T.make("div", [U.root, t === "center" ? U.alignedCenter : U.alignedStart]),
3711
3715
  title: T.make("div", U.title, { textContent: e.title })
3712
- }, this.nodes.root.setAttribute("data-alignment", t), this.nodes.root.appendChild(this.nodes.title), e.description !== void 0 && (this.nodes.description = T.make("div", U.description), this.nodes.description.innerHTML = Yr(e.description), this.nodes.root.appendChild(this.nodes.description));
3716
+ }, this.nodes.root.setAttribute("data-alignment", t), this.nodes.root.appendChild(this.nodes.title), e.description !== void 0 && (this.nodes.description = T.make("div", U.description), this.nodes.description.innerHTML = Xr(e.description), this.nodes.root.appendChild(this.nodes.description));
3713
3717
  }
3714
3718
  getElement() {
3715
3719
  return this.nodes.root;
3716
3720
  }
3717
- }, $r = class {
3721
+ }, ei = class {
3718
3722
  constructor(e) {
3719
3723
  this.params = e;
3720
3724
  }
@@ -3722,7 +3726,7 @@ var U = {
3722
3726
  if (this.params !== void 0 && "name" in this.params) return this.params.name;
3723
3727
  }
3724
3728
  destroy() {
3725
- zt();
3729
+ Bt();
3726
3730
  }
3727
3731
  onChildrenOpen() {
3728
3732
  var e;
@@ -3737,7 +3741,7 @@ var U = {
3737
3741
  this.params !== void 0 && "onActivate" in this.params && ((e = (t = this.params).onActivate) == null || e.call(t, this.params));
3738
3742
  }
3739
3743
  addHint(e, t) {
3740
- Bt(e, new Qr(t).getElement(), { placement: t.position });
3744
+ Vt(e, new $r(t).getElement(), { placement: t.position });
3741
3745
  }
3742
3746
  getMountElement() {
3743
3747
  return this.getElement();
@@ -3779,7 +3783,7 @@ var U = {
3779
3783
  get isActive() {
3780
3784
  return this.params === void 0 || !("isActive" in this.params) ? !1 : typeof this.params.isActive == "function" ? this.params.isActive() : this.params.isActive === !0;
3781
3785
  }
3782
- }, ei = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m4.5 10.5 4 4 7-8\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ti = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 3.5 Q10.8 9.2 16.5 10 Q10.8 10.8 10 16.5 Q9.2 10.8 3.5 10 Q9.2 9.2 10 3.5Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n</svg>\n", ni = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m5 15 10-10m0 10L5 5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ri = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path\n d=\"M6 10h4.9231c.6528 0 1.2789-.3161 1.7405-.8787.4617-.56259.721-1.32565.721-2.1213 0-.79565-.2593-1.55871-.721-2.12132C12.202 4.31607 11.5759 4 10.9231 4H6v6Zm0 0h5.5385c.6528 0 1.2789.3161 1.7405.8787.4617.5626.721 1.3257.721 2.1213 0 .7956-.2593 1.5587-.721 2.1213-.4616.5626-1.0877.8787-1.7405.8787H6v-6Z\"\n stroke=\"currentColor\"\n stroke-width=\"1.25\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n</svg>\n", ii = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path\n d=\"M8.5 4h6m-10 12h6m1-12-4 12\"\n stroke=\"currentColor\"\n stroke-width=\"1.25\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n</svg>\n", ai = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M8.5 11.5a3.5 3.5 0 0 0 5 0l2-2a3.536 3.536 0 0 0-5-5l-1 1\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M11.5 8.5a3.5 3.5 0 0 0-5 0l-2 2a3.536 3.536 0 0 0 5 5l1-1\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", oi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"2.75\" y=\"2.75\" width=\"14.5\" height=\"14.5\" rx=\"3.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M7.1 13.75 10 6.5l2.9 7.25\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.75 10.75h2.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", si = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M6 3.5V10a4 4 0 0 0 8 0V3.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4.5 16.5h11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", ci = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 10h12\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M8.2 10c-1-.5-1.8-1.27-1.8-2.4 0-1.99 1.61-3.6 3.6-3.6s3.6 1.61 3.6 3.6\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M11.8 10c1 .5 1.8 1.27 1.8 2.4 0 1.99-1.61 3.6-3.6 3.6s-3.6-1.61-3.6-3.6\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", li = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M14.5 6.5l2-2-2-2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M16.5 4.5h-4a5 5 0 0 0-5 5v1\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M5.5 13.5l-2 2 2 2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M3.5 15.5h4a5 5 0 0 0 5-5v-1\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ui = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"7.5\" cy=\"5.5\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"12.5\" cy=\"5.5\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"7.5\" cy=\"10\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"12.5\" cy=\"10\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"7.5\" cy=\"14.5\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"12.5\" cy=\"14.5\" r=\"1\" fill=\"currentColor\"/>\n</svg>\n", di = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.5 10h11M10 4.5v11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", fi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.5 10h11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", pi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m6 8 4 4 4-4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", mi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m12 5-5 5 5 5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", hi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m8 5 5 5-5 5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", gi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"9\" cy=\"9\" r=\"4.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"m12.5 12.5 3.5 3.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", _i = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M15.56 15V9.12H14.61Q14.56 9.45 14.4 9.68Q14.24 9.91 14.01 10.05Q13.78 10.18 13.49 10.24Q13.2 10.29 12.89 10.29V11.18H14.37V15Z\" fill=\"currentColor\"/>\n</svg>\n", vi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M12.58 11.38H13.72Q13.72 11.14 13.77 10.9Q13.82 10.66 13.93 10.47Q14.03 10.27 14.22 10.15Q14.4 10.03 14.66 10.03Q15.04 10.03 15.29 10.26Q15.54 10.5 15.54 10.93Q15.54 11.2 15.42 11.41Q15.3 11.62 15.11 11.79Q14.93 11.96 14.72 12.1Q14.5 12.24 14.3 12.37Q13.93 12.63 13.59 12.88Q13.24 13.13 12.99 13.43Q12.74 13.73 12.59 14.11Q12.45 14.49 12.45 15H16.77V13.97H13.98Q14.2 13.67 14.49 13.45Q14.77 13.22 15.08 13.02Q15.38 12.82 15.68 12.62Q15.98 12.42 16.21 12.17Q16.45 11.92 16.59 11.61Q16.73 11.29 16.73 10.84Q16.73 10.41 16.57 10.07Q16.4 9.72 16.13 9.49Q15.85 9.25 15.48 9.13Q15.12 9 14.72 9Q14.19 9 13.78 9.18Q13.37 9.36 13.1 9.68Q12.83 10.01 12.7 10.44Q12.56 10.87 12.58 11.38Z\" fill=\"currentColor\"/>\n</svg>\n", yi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M14.19 11.5V12.34Q14.4 12.34 14.64 12.35Q14.88 12.36 15.09 12.44Q15.29 12.52 15.42 12.7Q15.55 12.87 15.55 13.21Q15.55 13.64 15.27 13.89Q14.99 14.13 14.59 14.13Q14.33 14.13 14.14 14.04Q13.95 13.95 13.82 13.79Q13.7 13.64 13.63 13.42Q13.56 13.21 13.56 12.97H12.42Q12.41 13.49 12.57 13.88Q12.72 14.28 13.01 14.55Q13.3 14.82 13.7 14.97Q14.11 15.11 14.61 15.11Q15.03 15.11 15.43 14.98Q15.82 14.86 16.13 14.61Q16.43 14.37 16.61 14.01Q16.79 13.65 16.79 13.18Q16.79 12.68 16.51 12.32Q16.24 11.96 15.75 11.85V11.83Q16.16 11.71 16.37 11.39Q16.57 11.06 16.57 10.63Q16.57 10.24 16.4 9.93Q16.22 9.63 15.94 9.42Q15.66 9.21 15.3 9.11Q14.95 9 14.6 9Q14.14 9 13.77 9.15Q13.4 9.29 13.14 9.56Q12.88 9.83 12.73 10.21Q12.58 10.58 12.56 11.03H13.7Q13.69 10.58 13.92 10.28Q14.15 9.98 14.61 9.98Q14.93 9.98 15.19 10.18Q15.44 10.39 15.44 10.76Q15.44 11.02 15.32 11.17Q15.19 11.32 15.01 11.4Q14.82 11.48 14.6 11.5Q14.38 11.51 14.19 11.5Z\" fill=\"currentColor\"/>\n</svg>\n", bi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M14.89 10.61V12.66H13.35L14.87 10.61ZM14.89 13.64V15H16.03V13.64H16.81V12.66H16.03V9.12H14.96L12.4 12.55V13.64Z\" fill=\"currentColor\"/>\n</svg>\n", xi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M16.47 10.1V9.12H13.19L12.61 12.37H13.68Q13.86 12.13 14.06 12.01Q14.26 11.9 14.58 11.9Q14.82 11.9 15.01 11.98Q15.19 12.07 15.33 12.22Q15.46 12.37 15.53 12.57Q15.6 12.77 15.6 13Q15.6 13.22 15.53 13.42Q15.45 13.63 15.32 13.79Q15.19 13.94 15.01 14.04Q14.82 14.13 14.58 14.13Q14.18 14.13 13.92 13.89Q13.66 13.66 13.61 13.25H12.42Q12.43 13.71 12.61 14.06Q12.79 14.41 13.09 14.65Q13.4 14.88 13.79 15Q14.18 15.11 14.61 15.11Q15.05 15.12 15.45 14.96Q15.84 14.81 16.14 14.52Q16.44 14.24 16.61 13.84Q16.79 13.45 16.79 13Q16.79 12.59 16.67 12.22Q16.55 11.86 16.32 11.59Q16.09 11.32 15.75 11.16Q15.41 11 14.98 11Q14.62 11 14.35 11.11Q14.07 11.21 13.82 11.45L13.81 11.44L14.04 10.1Z\" fill=\"currentColor\"/>\n</svg>\n", Si = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M14.67 11.95Q14.9 11.95 15.07 12.05Q15.24 12.14 15.35 12.3Q15.46 12.45 15.52 12.65Q15.57 12.85 15.57 13.06Q15.57 13.26 15.51 13.45Q15.45 13.65 15.34 13.8Q15.22 13.95 15.06 14.04Q14.89 14.13 14.67 14.13Q14.45 14.13 14.27 14.04Q14.09 13.95 13.97 13.79Q13.85 13.64 13.79 13.44Q13.72 13.24 13.72 13.04Q13.72 12.82 13.78 12.63Q13.84 12.43 13.96 12.28Q14.08 12.13 14.26 12.04Q14.44 11.95 14.67 11.95ZM15.53 10.63H16.66Q16.61 10.24 16.45 9.93Q16.3 9.63 16.04 9.42Q15.79 9.22 15.46 9.11Q15.14 9 14.76 9Q14.13 9 13.69 9.28Q13.25 9.55 12.98 10Q12.7 10.44 12.57 10.98Q12.45 11.53 12.45 12.08Q12.45 12.64 12.55 13.18Q12.65 13.72 12.91 14.15Q13.17 14.58 13.61 14.84Q14.04 15.11 14.71 15.11Q15.17 15.11 15.55 14.95Q15.93 14.78 16.2 14.49Q16.47 14.2 16.62 13.81Q16.77 13.42 16.77 12.97Q16.77 12.61 16.66 12.27Q16.55 11.92 16.31 11.66Q16.06 11.38 15.7 11.21Q15.34 11.05 14.96 11.05Q14.53 11.05 14.2 11.2Q13.88 11.35 13.63 11.71L13.61 11.69Q13.62 11.45 13.68 11.13Q13.74 10.82 13.87 10.55Q13.99 10.28 14.21 10.09Q14.42 9.9 14.74 9.9Q15.05 9.9 15.26 10.12Q15.47 10.34 15.53 10.63Z\" fill=\"currentColor\"/>\n</svg>\n", Ci = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path\n d=\"M5.5 5h9M10 5v10\"\n stroke=\"currentColor\"\n stroke-width=\"1.25\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n</svg>\n", wi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M8.9 4.7a1.3 1.3 0 0 1 2.2 0l5.9 10.1a1.3 1.3 0 0 1-1.1 1.95H4.1a1.3 1.3 0 0 1-1.1-1.95Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10 8.75v3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <circle cx=\"10\" cy=\"14.25\" r=\"0.7\" fill=\"currentColor\"/>\n</svg>\n", Ti = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M2.8 2.9L6.0 5L2.8 7.1Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M9 5h8M6 10h11M6 15h11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Ei = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path\n d=\"M8 5h9M8 10h9M8 15h9\"\n stroke=\"currentColor\"\n stroke-width=\"1.25\"\n stroke-linecap=\"round\"\n />\n <circle cx=\"4\" cy=\"5\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"4\" cy=\"10\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"4\" cy=\"15\" r=\"1\" fill=\"currentColor\"/>\n</svg>\n", Di = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M8 5h9M8 10h9M8 15h9\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M4.65 7V3.08H4.01Q3.98 3.3 3.87 3.45Q3.77 3.61 3.61 3.7Q3.46 3.79 3.27 3.83Q3.07 3.86 2.86 3.86V4.46H3.85V7Z\" fill=\"currentColor\"/>\n <path d=\"M2.66 9.59H3.42Q3.42 9.43 3.45 9.27Q3.48 9.11 3.55 8.98Q3.63 8.85 3.75 8.76Q3.87 8.68 4.04 8.68Q4.3 8.68 4.46 8.84Q4.63 9 4.63 9.29Q4.63 9.47 4.55 9.61Q4.47 9.75 4.35 9.86Q4.23 9.97 4.08 10.06Q3.93 10.16 3.81 10.25Q3.55 10.42 3.33 10.59Q3.1 10.76 2.93 10.96Q2.76 11.15 2.67 11.41Q2.57 11.66 2.57 12H5.45V11.32H3.59Q3.74 11.11 3.93 10.96Q4.12 10.81 4.32 10.68Q4.52 10.55 4.72 10.41Q4.92 10.28 5.08 10.11Q5.23 9.95 5.33 9.74Q5.42 9.52 5.42 9.23Q5.42 8.94 5.32 8.71Q5.21 8.48 5.02 8.32Q4.84 8.17 4.59 8.08Q4.35 8 4.08 8Q3.73 8 3.46 8.12Q3.18 8.24 3 8.46Q2.83 8.67 2.74 8.96Q2.65 9.25 2.66 9.59Z\" fill=\"currentColor\"/>\n <path d=\"M3.73 14.66V15.22Q3.87 15.22 4.03 15.23Q4.19 15.24 4.33 15.29Q4.46 15.35 4.55 15.46Q4.63 15.58 4.63 15.81Q4.63 16.09 4.45 16.26Q4.27 16.42 4 16.42Q3.82 16.42 3.7 16.36Q3.57 16.3 3.49 16.2Q3.4 16.09 3.36 15.95Q3.31 15.81 3.31 15.65H2.55Q2.55 15.99 2.65 16.25Q2.75 16.52 2.94 16.7Q3.13 16.88 3.41 16.98Q3.68 17.07 4.01 17.07Q4.29 17.07 4.56 16.99Q4.82 16.9 5.02 16.74Q5.22 16.58 5.34 16.34Q5.46 16.1 5.46 15.79Q5.46 15.45 5.28 15.21Q5.09 14.97 4.77 14.9V14.89Q5.04 14.81 5.18 14.59Q5.32 14.37 5.32 14.09Q5.32 13.82 5.2 13.62Q5.08 13.42 4.9 13.28Q4.71 13.14 4.47 13.07Q4.24 13 4 13Q3.7 13 3.45 13.1Q3.21 13.2 3.03 13.38Q2.85 13.55 2.76 13.8Q2.66 14.05 2.65 14.36H3.4Q3.4 14.05 3.55 13.85Q3.7 13.66 4.01 13.66Q4.23 13.66 4.39 13.79Q4.56 13.92 4.56 14.18Q4.56 14.34 4.48 14.45Q4.4 14.55 4.27 14.6Q4.15 14.65 4 14.66Q3.86 14.68 3.73 14.66Z\" fill=\"currentColor\"/>\n</svg>\n", Oi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path\n d=\"M10 5h7M10 10h7M10 15h7M3 5l1 1 2-2M3 10l1 1 2-2M3 15l1 1 2-2\"\n stroke=\"currentColor\"\n stroke-width=\"1.25\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n</svg>\n", ki = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M3 8h14M3 12h14M7.5 4v12M12.5 4v12\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", Ai = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.5 4h11A1.5 1.5 0 0 1 17 5.5V8H3V5.5A1.5 1.5 0 0 1 4.5 4Z\" fill=\"currentColor\"/>\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M3 8h14M3 12h14M7.5 4v12M12.5 4v12\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", ji = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M2.5 10C5 5.5 15 5.5 17.5 10C15 14.5 5 14.5 2.5 10Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <circle cx=\"10\" cy=\"10\" r=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", Mi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.5 4H7.5v12H4.5A1.5 1.5 0 0 1 3 14.5v-9A1.5 1.5 0 0 1 4.5 4Z\" fill=\"currentColor\"/>\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M3 8h14M3 12h14M7.5 4v12M12.5 4v12\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", Ni = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 4l-3 3m3-3l3 3M10 4v7M5 16h10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Pi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 16l-3-3m3 3l3-3M10 16V9M5 4h10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Fi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 10l3-3M4 10l3 3M4 10h7M16 5v10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Ii = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M16 10l-3-3m3 3l-3 3M16 10H9M4 5v10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Li = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"7\" y=\"7\" width=\"9\" height=\"9\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M5 13h-.5A1.5 1.5 0 0 1 3 11.5v-7A1.5 1.5 0 0 1 4.5 3h7A1.5 1.5 0 0 1 13 4.5V5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", Ri = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.4 12.9 13.6 3.7a1.65 1.65 0 0 1 2.33 0l.37.37a1.65 1.65 0 0 1 0 2.33L7.1 15.6l-3.6 1 .9-3.7Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"m12.3 5 2.7 2.7\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", zi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.5 6.5h11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M8 6.5V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.5 6.5l.5 8.5a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1l.5-8.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.5 9.5v3.5M11.5 9.5v3.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Bi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"5\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"10\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"15\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n</svg>\n", Vi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M2.5 7.9L5.7 10L2.5 12.1Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.47 6.25V13.75H8.98V10.51H11.78V13.75H13.29V6.25H11.78V9.13H8.98V6.25Z\" fill=\"currentColor\"/>\n <path d=\"M16.9 13.75V9.04H16.14Q16.1 9.31 15.97 9.49Q15.84 9.68 15.65 9.79Q15.47 9.9 15.24 9.94Q15.01 9.99 14.76 9.98V10.7H15.94V13.75Z\" fill=\"currentColor\"/>\n</svg>\n", Hi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M2.5 7.9L5.7 10L2.5 12.1Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.47 6.25V13.75H8.98V10.51H11.78V13.75H13.29V6.25H11.78V9.13H8.98V6.25Z\" fill=\"currentColor\"/>\n <path d=\"M14.51 10.85H15.42Q15.42 10.66 15.46 10.47Q15.5 10.28 15.58 10.12Q15.67 9.97 15.82 9.87Q15.96 9.77 16.17 9.77Q16.48 9.77 16.68 9.96Q16.88 10.15 16.88 10.5Q16.88 10.71 16.78 10.88Q16.68 11.05 16.54 11.18Q16.39 11.32 16.22 11.43Q16.04 11.54 15.89 11.65Q15.58 11.85 15.31 12.06Q15.04 12.26 14.84 12.5Q14.64 12.73 14.52 13.04Q14.4 13.34 14.4 13.75H17.86V12.93H15.63Q15.81 12.69 16.03 12.51Q16.26 12.32 16.51 12.17Q16.75 12.01 16.99 11.85Q17.22 11.69 17.41 11.49Q17.6 11.29 17.72 11.03Q17.83 10.78 17.83 10.42Q17.83 10.08 17.7 9.8Q17.57 9.53 17.35 9.34Q17.12 9.15 16.83 9.05Q16.54 8.95 16.22 8.95Q15.79 8.95 15.47 9.09Q15.14 9.24 14.93 9.5Q14.71 9.76 14.6 10.1Q14.5 10.45 14.51 10.85Z\" fill=\"currentColor\"/>\n</svg>\n", Ui = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M2.5 7.9L5.7 10L2.5 12.1Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.47 6.25V13.75H8.98V10.51H11.78V13.75H13.29V6.25H11.78V9.13H8.98V6.25Z\" fill=\"currentColor\"/>\n <path d=\"M15.79 10.95V11.62Q15.97 11.62 16.16 11.63Q16.35 11.64 16.51 11.7Q16.67 11.77 16.78 11.91Q16.88 12.05 16.88 12.32Q16.88 12.66 16.66 12.86Q16.44 13.06 16.12 13.06Q15.91 13.06 15.76 12.98Q15.6 12.91 15.5 12.79Q15.4 12.66 15.35 12.49Q15.3 12.32 15.29 12.13H14.38Q14.37 12.54 14.5 12.86Q14.62 13.17 14.85 13.39Q15.08 13.61 15.41 13.72Q15.73 13.84 16.13 13.84Q16.47 13.84 16.79 13.74Q17.1 13.64 17.35 13.44Q17.59 13.25 17.73 12.96Q17.88 12.67 17.88 12.3Q17.88 11.89 17.65 11.61Q17.43 11.32 17.04 11.23V11.22Q17.37 11.12 17.54 10.86Q17.7 10.6 17.7 10.25Q17.7 9.94 17.56 9.7Q17.42 9.45 17.19 9.29Q16.97 9.12 16.69 9.03Q16.4 8.95 16.12 8.95Q15.76 8.95 15.46 9.07Q15.17 9.19 14.96 9.4Q14.74 9.62 14.63 9.91Q14.51 10.21 14.5 10.58H15.4Q15.4 10.21 15.58 9.98Q15.77 9.74 16.13 9.74Q16.39 9.74 16.59 9.9Q16.79 10.06 16.79 10.36Q16.79 10.56 16.7 10.68Q16.6 10.81 16.45 10.87Q16.3 10.93 16.12 10.95Q15.95 10.96 15.79 10.95Z\" fill=\"currentColor\"/>\n</svg>\n", Wi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"10\" cy=\"10\" r=\"6\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M10 4C8 6 7.5 8 7.5 10C7.5 12 8 14 10 16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10 4C12 6 12.5 8 12.5 10C12.5 12 12 14 10 16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4 10H16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Gi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M6.5 4.5h7a1 1 0 0 1 1 1v10l-4.5-2.75L5.5 15.5v-10a1 1 0 0 1 1-1z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Ki = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"5.5\" width=\"14\" height=\"9\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M3 8L10 10L17 8\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", qi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M7.5 4L7.5 16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M12.5 4L12.5 16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M4 8H16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M4 12H16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ji = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3.5\" y=\"4\" width=\"2.25\" height=\"12\" rx=\"1.125\" fill=\"currentColor\"/>\n <path d=\"M9 6h7\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M9 10h7\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M9 14h5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Yi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"6.75\" cy=\"10\" r=\"1\" fill=\"currentColor\"/>\n <path d=\"M9.75 8.5h4.5M9.75 11.5h4.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Xi = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"3\" width=\"11.5\" height=\"6\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M14.5 6H16a1 1 0 0 1 1 1v3.5a1 1 0 0 1-1 1h-6a1 1 0 0 0-1 1V14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <rect x=\"8\" y=\"14\" width=\"3\" height=\"3.5\" rx=\"0.75\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>", Zi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 10h12\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Qi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m7 6-4 4 4 4m6-8 4 4-4 4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", $i = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m6 7-3 3 3 3m8-6 3 3-3 3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"m12 5-4 10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", ea = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 3l2.2 4.4 4.8.7-3.5 3.4.8 4.8L10 14l-4.3 2.3.8-4.8L3 8.1l4.8-.7L10 3z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ta = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"10\" cy=\"10\" r=\"6.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"7.5\" cy=\"8.5\" r=\"0.75\" fill=\"currentColor\"/>\n <circle cx=\"12.5\" cy=\"8.5\" r=\"0.75\" fill=\"currentColor\"/>\n <path d=\"M7.5 12a3 3 0 0 0 5 0\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", na = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 17v-7\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M10 13c-3 0-6-2-6-5 3 0 6 2 6 5z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M10 10c3 0 6-2.5 6-5.5-3 0-6 2.5-6 5.5z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n</svg>\n", ra = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5 3v4c0 1.1.9 2 2 2v8\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M9 3v4c0 1.1-.9 2-2 2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7 3v3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M13 3v14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M13 3c1.7 0 3 1.5 3 3.5S13 10 13 10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n</svg>\n", ia = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"10\" cy=\"10\" r=\"6.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M10 7.5l2.4 1.7-.9 2.8h-3l-.9-2.8z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M10 7.5V4\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M12.4 9.2l3.1-1.1\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M11.5 12l2 2.6\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M8.5 12l-2 2.6\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M7.6 9.2l-3.1-1.1\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", aa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M8 13.5c-.25-1.5-1.5-3.5-2.5-5.5a4.5 4.5 0 0 1 9 0c-1 2-2.25 4-2.5 5.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8 13.5v1.75c0 .41.34.75.75.75h2.5c.41 0 .75-.34.75-.75V13.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M8 14.75h4\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", oa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5 17V3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M5 3c2 0 3 1.5 5 1.5S14 3 16 3v8c-2 0-3 1.5-5 1.5S7 11 5 11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", sa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <ellipse cx=\"10\" cy=\"5.5\" rx=\"6\" ry=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M4 5.5v4c0 1.38 2.69 2.5 6 2.5s6-1.12 6-2.5v-4\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M4 9.5v4c0 1.38 2.69 2.5 6 2.5s6-1.12 6-2.5v-4\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", ca = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M7.5 4v12M12.5 4v12\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"4.5\" y=\"6\" width=\"1.5\" height=\"2\" rx=\"0.5\" fill=\"currentColor\"/>\n <rect x=\"4.5\" y=\"9\" width=\"1.5\" height=\"2\" rx=\"0.5\" fill=\"currentColor\"/>\n <rect x=\"9\" y=\"6\" width=\"1.5\" height=\"2\" rx=\"0.5\" fill=\"currentColor\"/>\n <rect x=\"14\" y=\"6\" width=\"1.5\" height=\"2\" rx=\"0.5\" fill=\"currentColor\"/>\n</svg>\n", la = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"3\" rx=\"1\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"3\" y=\"8.5\" width=\"14\" height=\"3\" rx=\"1\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"3\" y=\"13\" width=\"14\" height=\"3\" rx=\"1\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", ua = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4.5\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M3 8.5h14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M7 3v3M13 3v3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <circle cx=\"7\" cy=\"12\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"10\" cy=\"12\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"13\" cy=\"12\" r=\"1\" fill=\"currentColor\"/>\n</svg>\n", da = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 4.25v11.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-dasharray=\"0.1 2.6\"/>\n <path d=\"M4.5 7.5 7 10 4.5 12.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M15.5 7.5 13 10 15.5 12.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", fa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 4.25v11.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-dasharray=\"0.1 2.6\"/>\n <path d=\"M7 7.5 4.5 10 7 12.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M13 7.5 15.5 10 13 12.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", pa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"6\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"11\" y=\"4\" width=\"6\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", ma = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"6\" cy=\"6\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"10\" cy=\"6\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"14\" cy=\"6\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"6\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"10\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"14\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"6\" cy=\"14\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"10\" cy=\"14\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"14\" cy=\"14\" r=\"1.25\" fill=\"currentColor\"/>\n</svg>\n", ha = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"2.5\" y=\"3.5\" width=\"15\" height=\"13\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"7\" cy=\"8\" r=\"1.3\" fill=\"currentColor\"/>\n <path d=\"M3 13.25 6.25 10l2.25 2.25L12.25 8.25 17 13\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", W = (e) => `<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" focusable="false">${e}</svg>`, ga = W("<rect x=\"3\" y=\"8\" width=\"8\" height=\"8\" rx=\"1.5\" fill=\"currentColor\" stroke=\"none\"/><path d=\"M3 4h18\"/><path d=\"M14 10h7\"/><path d=\"M14 14h7\"/><path d=\"M3 20h18\"/>"), _a = W("<rect x=\"8\" y=\"8\" width=\"8\" height=\"8\" rx=\"1.5\" fill=\"currentColor\" stroke=\"none\"/><path d=\"M3 4h18\"/><path d=\"M3 20h18\"/>"), va = W("<rect x=\"13\" y=\"8\" width=\"8\" height=\"8\" rx=\"1.5\" fill=\"currentColor\" stroke=\"none\"/><path d=\"M3 4h18\"/><path d=\"M3 10h7\"/><path d=\"M3 14h7\"/><path d=\"M3 20h18\"/>"), ya = W("<path d=\"M5 12h14\"/>"), ba = W("<path d=\"M12 5v14\"/><path d=\"M5 12h14\"/>"), xa = W("<path d=\"M10 13a4 4 0 0 1 0-5.66l3-3a4 4 0 0 1 5.66 5.66l-1.5 1.5\"/><path d=\"M14 11a4 4 0 0 1 0 5.66l-3 3a4 4 0 1 1-5.66-5.66l1.5-1.5\"/>"), Sa = W("<path d=\"M9 3v6H3\"/><path d=\"M21 9h-6V3\"/><path d=\"M3 15h6v6\"/><path d=\"M15 21v-6h6\"/>"), Ca = W("<path d=\"M15 3h6v6\"/><path d=\"M9 21H3v-6\"/><path d=\"m21 3-7 7\"/><path d=\"m3 21 7-7\"/>"), wa = W("<path d=\"M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4\"/><path d=\"M7 10l5 5 5-5\"/><path d=\"M12 15V3\"/>"), Ta = W("<rect x=\"3\" y=\"3.5\" width=\"18\" height=\"12\" rx=\"2.5\"/><circle cx=\"7.5\" cy=\"7.5\" r=\"1.2\" fill=\"currentColor\" stroke=\"none\"/><path d=\"m4 13.6 3.4-3.2 2.4 2.2 3.6-3.3 4.4 4\"/><path d=\"M5 19h14\"/><path d=\"M5 22h8\"/>"), Ea = W("<path d=\"m17.5 8 2.5-2.5L17.5 3\"/><path d=\"M20 5.5h-5.5a6 6 0 0 0-6 6V13\"/><path d=\"m6.5 16-2.5 2.5L6.5 21\"/><path d=\"M4 18.5h5.5a6 6 0 0 0 6-6V11\"/>"), Da = W("<path d=\"M6 2v14a2 2 0 0 0 2 2h14\"/><path d=\"M2 6h14a2 2 0 0 1 2 2v14\"/>"), Oa = "<svg viewBox=\"0 0 24 24\" fill=\"currentColor\" aria-hidden=\"true\" focusable=\"false\"><circle cx=\"6\" cy=\"12\" r=\"1.5\"/><circle cx=\"12\" cy=\"12\" r=\"1.5\"/><circle cx=\"18\" cy=\"12\" r=\"1.5\"/></svg>", ka = "<svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" width=\"14\" height=\"14\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M18 6L6 18M6 6l12 12\"/></svg>", Aa = "<svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.75\" stroke-linecap=\"round\" stroke-linejoin=\"round\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M14.5 4.5H6A2.5 2.5 0 0 0 3.5 7v10A2.5 2.5 0 0 0 6 19.5h12a2.5 2.5 0 0 0 2.5-2.5v-6.25\"/><path d=\"m14.5 4.5 1.75 2.25 2.25-1.25 2 2.75\"/><circle cx=\"8\" cy=\"9\" r=\"1.2\" fill=\"currentColor\" stroke=\"none\"/><path d=\"m3.8 16.25 3.45-3.45 2.5 2.5 3.5-3.5 4 4\"/></svg>", ja = "<svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.75\" stroke-linecap=\"round\" stroke-linejoin=\"round\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M20 16.5A4.5 4.5 0 0 0 17 8.25a6 6 0 0 0-11.7 1.5A4 4 0 0 0 6 17.5\"/><path d=\"M12 12v5\"/><path d=\"m9.5 14.5 2.5-2.5 2.5 2.5\"/><path d=\"m4 4 16 16\"/></svg>", Ma = W("<path d=\"M12 4v10\"/><path d=\"m7.5 8.5 4.5-4.5 4.5 4.5\"/><path d=\"M5 14v3.5A2.5 2.5 0 0 0 7.5 20h9a2.5 2.5 0 0 0 2.5-2.5V14\"/>"), Na = W("<path d=\"M19 13.5V18a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 5 18V9a2.5 2.5 0 0 1 2.5-2.5H12\"/><path d=\"M15.5 4H20v4.5\"/><path d=\"M20 4l-8.5 8.5\"/>"), Pa = W("<path d=\"M12 4v12\"/><path d=\"m6.5 10.5 5.5 5.5 5.5-5.5\"/><path d=\"M4 18h16\"/>"), Fa = W("<path d=\"M12 5v11\"/><path d=\"m7 10 5-5 5 5\"/>"), Ia = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"6.75\" width=\"6.5\" height=\"6.5\" rx=\"1.25\" fill=\"currentColor\"/>\n <path d=\"M3 3.5h14M12 8.5h5M12 11.5h5M3 16.5h14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", La = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"6.75\" y=\"6.75\" width=\"6.5\" height=\"6.5\" rx=\"1.25\" fill=\"currentColor\"/>\n <path d=\"M3 3.5h14M3 16.5h14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ra = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"10.5\" y=\"6.75\" width=\"6.5\" height=\"6.5\" rx=\"1.25\" fill=\"currentColor\"/>\n <path d=\"M3 3.5h14M3 8.5h5M3 11.5h5M3 16.5h14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", za = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"3\" width=\"14\" height=\"9\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"6.1\" cy=\"5.9\" r=\".9\" fill=\"currentColor\"/>\n <path d=\"M3.6 10.4 6.4 7.8l1.9 1.7 2.9-2.6 3.2 2.9\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4.5 14.5h11M4.5 17h6.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ba = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5.5 2.5v10a2 2 0 0 0 2 2h10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M2.5 5.5h10a2 2 0 0 1 2 2v10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Va = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M12.5 3.5h4v4M7.5 16.5h-4v-4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"m16.5 3.5-5.5 5.5M3.5 16.5 9 11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ha = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M16.5 7.5h-4v-4M3.5 12.5h4v4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"m12.5 7.5 4-4M7.5 12.5l-4 4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ua = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M6.5 4.7v10.6a.6.6 0 0 0 .92.5l8.2-5.3a.6.6 0 0 0 0-1l-8.2-5.3a.6.6 0 0 0-.92.5Z\" fill=\"currentColor\"/>\n</svg>\n", Wa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"5.75\" y=\"4.5\" width=\"3\" height=\"11\" rx=\"1\" fill=\"currentColor\"/>\n <rect x=\"11.25\" y=\"4.5\" width=\"3\" height=\"11\" rx=\"1\" fill=\"currentColor\"/>\n</svg>\n", Ga = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M17 5.5v9a.6.6 0 0 1-.92.5l-6.3-4.5a.6.6 0 0 1 0-1L16.08 5a.6.6 0 0 1 .92.5Z\" fill=\"currentColor\"/>\n <path d=\"M10 5.5v9a.6.6 0 0 1-.92.5l-6.3-4.5a.6.6 0 0 1 0-1L9.08 5a.6.6 0 0 1 .92.5Z\" fill=\"currentColor\"/>\n</svg>\n", Ka = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3 5.5v9a.6.6 0 0 0 .92.5l6.3-4.5a.6.6 0 0 0 0-1L3.92 5a.6.6 0 0 0-.92.5Z\" fill=\"currentColor\"/>\n <path d=\"M10 5.5v9a.6.6 0 0 0 .92.5l6.3-4.5a.6.6 0 0 0 0-1L10.92 5a.6.6 0 0 0-.92.5Z\" fill=\"currentColor\"/>\n</svg>\n", qa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 7.5h2.5L10 4.5v11L6.5 12.5H4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5Z\" fill=\"currentColor\"/>\n <path d=\"M12.5 7.75a3 3 0 0 1 0 4.5M14.5 5.5a6 6 0 0 1 0 9\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ja = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 7.5h2.5L10 4.5v11L6.5 12.5H4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5Z\" fill=\"currentColor\"/>\n <path d=\"m13 8 4 4M17 8l-4 4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ya = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3 6h7.5M15.5 6H17M3 10h2.5M10.5 10H17M3 14h5.5M13.5 14H17\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <circle cx=\"13\" cy=\"6\" r=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"8\" cy=\"10\" r=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"11\" cy=\"14\" r=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", Xa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4.5\" width=\"14\" height=\"11\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"10\" y=\"9.5\" width=\"5.5\" height=\"4.5\" rx=\"1\" fill=\"currentColor\"/>\n</svg>\n", Za = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"2.5\" y=\"6\" width=\"15\" height=\"8\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", Qa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5.4 15.4a6.5 6.5 0 1 1 9.2 0\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10 10.8 13.1 7.7\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <circle cx=\"10\" cy=\"10.8\" r=\"1\" fill=\"currentColor\"/>\n</svg>\n", $a = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 12V9a2.5 2.5 0 0 1 2.5-2.5H14.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M12.5 4.5 15 6.5l-2.5 2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M16 8v3a2.5 2.5 0 0 1-2.5 2.5H5.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 15.5 5 13.5l2.5-2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", eo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.5 13.5v1.5A1.5 1.5 0 0 0 5 16.5h10a1.5 1.5 0 0 0 1.5-1.5v-1.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.5 9 10 12.5 13.5 9\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10 12.5v-9\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", to = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"5.5\" width=\"14\" height=\"9\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M6 10h3.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"m11.75 9.25 1.625 1.5 1.625-1.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", no = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4.5\" width=\"6.5\" height=\"3.75\" rx=\"1.875\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"11\" y=\"4.5\" width=\"6\" height=\"3.75\" rx=\"1.875\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"3\" y=\"11.75\" width=\"9\" height=\"3.75\" rx=\"1.875\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", ro = "<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"1.5\" y=\"1.5\" width=\"11\" height=\"11\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\"/><circle cx=\"4.5\" cy=\"4.5\" r=\".9\" fill=\"currentColor\"/><circle cx=\"7\" cy=\"7\" r=\".9\" fill=\"currentColor\"/><circle cx=\"9.5\" cy=\"9.5\" r=\".9\" fill=\"currentColor\"/></svg>", io = "<svg aria-hidden=\"true\" focusable=\"false\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.5 2.5L8.5 6L4.5 9.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>", ao = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M10 4v12\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", oo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"2.5\" y=\"4.5\" width=\"15\" height=\"11\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M8.5 7.75v4.5l3.9-2.25-3.9-2.25Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", so = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M7.5 15.5V5.5l8-1.5v10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <circle cx=\"5.75\" cy=\"15.5\" r=\"1.75\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"13.75\" cy=\"14\" r=\"1.75\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", co = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3 5.5 7.5 4l5 1.5L17 4v10.5L12.5 16l-5-1.5L3 16V5.5Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 4v10.5M12.5 5.5V16\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", lo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.5 16.5h13\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M6 13.5V10M10 13.5V5.5M14 13.5V8\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", uo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M6 4.5h8A2.5 2.5 0 0 1 16.5 7v4a2.5 2.5 0 0 1-2.5 2.5H8.75L5.25 16.25v-2.92A2.5 2.5 0 0 1 3.5 11V7A2.5 2.5 0 0 1 6 4.5Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", fo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5 4A1.5 1.5 0 0 1 6.5 2.5h4.75L15 6.25V16a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 5 16V4Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M11.25 2.5v3.75H15\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 10.5h5M7.5 13h5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", po = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5 4A1.5 1.5 0 0 1 6.5 2.5h4.75L15 6.25V16a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 5 16V4Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M11.25 2.5v3.75H15\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 10.5h5M7.5 13h5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", mo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5 4A1.5 1.5 0 0 1 6.5 2.5h4.75L15 6.25V16a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 5 16V4Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M11.25 2.5v3.75H15\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 9.5h5M7.5 11.75h5M7.5 14h3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", ho = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3.5\" y=\"3\" width=\"13\" height=\"14\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M3.5 8h13M3.5 12h13M10 3v14\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", go = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"3.5\" width=\"14\" height=\"9\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M10 12.5v2.5M7.5 17l2.5-2 2.5 2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", _o = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"4\" y=\"2.5\" width=\"12\" height=\"15\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M10 2.5v2.25M10 6.5v1.5M10 9.75v1.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <rect x=\"8.5\" y=\"11.75\" width=\"3\" height=\"3.5\" rx=\"0.75\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", vo = (e) => {
3786
+ }, ti = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m4.5 10.5 4 4 7-8\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ni = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 3.5 Q10.8 9.2 16.5 10 Q10.8 10.8 10 16.5 Q9.2 10.8 3.5 10 Q9.2 9.2 10 3.5Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n</svg>\n", ri = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m5 15 10-10m0 10L5 5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ii = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path\n d=\"M6 10h4.9231c.6528 0 1.2789-.3161 1.7405-.8787.4617-.56259.721-1.32565.721-2.1213 0-.79565-.2593-1.55871-.721-2.12132C12.202 4.31607 11.5759 4 10.9231 4H6v6Zm0 0h5.5385c.6528 0 1.2789.3161 1.7405.8787.4617.5626.721 1.3257.721 2.1213 0 .7956-.2593 1.5587-.721 2.1213-.4616.5626-1.0877.8787-1.7405.8787H6v-6Z\"\n stroke=\"currentColor\"\n stroke-width=\"1.25\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n</svg>\n", ai = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path\n d=\"M8.5 4h6m-10 12h6m1-12-4 12\"\n stroke=\"currentColor\"\n stroke-width=\"1.25\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n</svg>\n", oi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M8.5 11.5a3.5 3.5 0 0 0 5 0l2-2a3.536 3.536 0 0 0-5-5l-1 1\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M11.5 8.5a3.5 3.5 0 0 0-5 0l-2 2a3.536 3.536 0 0 0 5 5l1-1\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", si = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"2.75\" y=\"2.75\" width=\"14.5\" height=\"14.5\" rx=\"3.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M7.1 13.75 10 6.5l2.9 7.25\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.75 10.75h2.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", ci = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M6 3.5V10a4 4 0 0 0 8 0V3.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4.5 16.5h11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", li = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 10h12\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M8.2 10c-1-.5-1.8-1.27-1.8-2.4 0-1.99 1.61-3.6 3.6-3.6s3.6 1.61 3.6 3.6\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M11.8 10c1 .5 1.8 1.27 1.8 2.4 0 1.99-1.61 3.6-3.6 3.6s-3.6-1.61-3.6-3.6\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ui = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M14.5 6.5l2-2-2-2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M16.5 4.5h-4a5 5 0 0 0-5 5v1\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M5.5 13.5l-2 2 2 2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M3.5 15.5h4a5 5 0 0 0 5-5v-1\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", di = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"7.5\" cy=\"5.5\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"12.5\" cy=\"5.5\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"7.5\" cy=\"10\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"12.5\" cy=\"10\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"7.5\" cy=\"14.5\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"12.5\" cy=\"14.5\" r=\"1\" fill=\"currentColor\"/>\n</svg>\n", fi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.5 10h11M10 4.5v11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", pi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.5 10h11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", mi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m6 8 4 4 4-4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", hi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m12 5-5 5 5 5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", gi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m8 5 5 5-5 5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", _i = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"9\" cy=\"9\" r=\"4.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"m12.5 12.5 3.5 3.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", vi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M15.56 15V9.12H14.61Q14.56 9.45 14.4 9.68Q14.24 9.91 14.01 10.05Q13.78 10.18 13.49 10.24Q13.2 10.29 12.89 10.29V11.18H14.37V15Z\" fill=\"currentColor\"/>\n</svg>\n", yi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M12.58 11.38H13.72Q13.72 11.14 13.77 10.9Q13.82 10.66 13.93 10.47Q14.03 10.27 14.22 10.15Q14.4 10.03 14.66 10.03Q15.04 10.03 15.29 10.26Q15.54 10.5 15.54 10.93Q15.54 11.2 15.42 11.41Q15.3 11.62 15.11 11.79Q14.93 11.96 14.72 12.1Q14.5 12.24 14.3 12.37Q13.93 12.63 13.59 12.88Q13.24 13.13 12.99 13.43Q12.74 13.73 12.59 14.11Q12.45 14.49 12.45 15H16.77V13.97H13.98Q14.2 13.67 14.49 13.45Q14.77 13.22 15.08 13.02Q15.38 12.82 15.68 12.62Q15.98 12.42 16.21 12.17Q16.45 11.92 16.59 11.61Q16.73 11.29 16.73 10.84Q16.73 10.41 16.57 10.07Q16.4 9.72 16.13 9.49Q15.85 9.25 15.48 9.13Q15.12 9 14.72 9Q14.19 9 13.78 9.18Q13.37 9.36 13.1 9.68Q12.83 10.01 12.7 10.44Q12.56 10.87 12.58 11.38Z\" fill=\"currentColor\"/>\n</svg>\n", bi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M14.19 11.5V12.34Q14.4 12.34 14.64 12.35Q14.88 12.36 15.09 12.44Q15.29 12.52 15.42 12.7Q15.55 12.87 15.55 13.21Q15.55 13.64 15.27 13.89Q14.99 14.13 14.59 14.13Q14.33 14.13 14.14 14.04Q13.95 13.95 13.82 13.79Q13.7 13.64 13.63 13.42Q13.56 13.21 13.56 12.97H12.42Q12.41 13.49 12.57 13.88Q12.72 14.28 13.01 14.55Q13.3 14.82 13.7 14.97Q14.11 15.11 14.61 15.11Q15.03 15.11 15.43 14.98Q15.82 14.86 16.13 14.61Q16.43 14.37 16.61 14.01Q16.79 13.65 16.79 13.18Q16.79 12.68 16.51 12.32Q16.24 11.96 15.75 11.85V11.83Q16.16 11.71 16.37 11.39Q16.57 11.06 16.57 10.63Q16.57 10.24 16.4 9.93Q16.22 9.63 15.94 9.42Q15.66 9.21 15.3 9.11Q14.95 9 14.6 9Q14.14 9 13.77 9.15Q13.4 9.29 13.14 9.56Q12.88 9.83 12.73 10.21Q12.58 10.58 12.56 11.03H13.7Q13.69 10.58 13.92 10.28Q14.15 9.98 14.61 9.98Q14.93 9.98 15.19 10.18Q15.44 10.39 15.44 10.76Q15.44 11.02 15.32 11.17Q15.19 11.32 15.01 11.4Q14.82 11.48 14.6 11.5Q14.38 11.51 14.19 11.5Z\" fill=\"currentColor\"/>\n</svg>\n", xi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M14.89 10.61V12.66H13.35L14.87 10.61ZM14.89 13.64V15H16.03V13.64H16.81V12.66H16.03V9.12H14.96L12.4 12.55V13.64Z\" fill=\"currentColor\"/>\n</svg>\n", Si = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M16.47 10.1V9.12H13.19L12.61 12.37H13.68Q13.86 12.13 14.06 12.01Q14.26 11.9 14.58 11.9Q14.82 11.9 15.01 11.98Q15.19 12.07 15.33 12.22Q15.46 12.37 15.53 12.57Q15.6 12.77 15.6 13Q15.6 13.22 15.53 13.42Q15.45 13.63 15.32 13.79Q15.19 13.94 15.01 14.04Q14.82 14.13 14.58 14.13Q14.18 14.13 13.92 13.89Q13.66 13.66 13.61 13.25H12.42Q12.43 13.71 12.61 14.06Q12.79 14.41 13.09 14.65Q13.4 14.88 13.79 15Q14.18 15.11 14.61 15.11Q15.05 15.12 15.45 14.96Q15.84 14.81 16.14 14.52Q16.44 14.24 16.61 13.84Q16.79 13.45 16.79 13Q16.79 12.59 16.67 12.22Q16.55 11.86 16.32 11.59Q16.09 11.32 15.75 11.16Q15.41 11 14.98 11Q14.62 11 14.35 11.11Q14.07 11.21 13.82 11.45L13.81 11.44L14.04 10.1Z\" fill=\"currentColor\"/>\n</svg>\n", Ci = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.46 5.5V15H5.43V10.9H9.04V15H11V5.5H9.04V9.15H5.43V5.5Z\" fill=\"currentColor\"/>\n <path d=\"M14.67 11.95Q14.9 11.95 15.07 12.05Q15.24 12.14 15.35 12.3Q15.46 12.45 15.52 12.65Q15.57 12.85 15.57 13.06Q15.57 13.26 15.51 13.45Q15.45 13.65 15.34 13.8Q15.22 13.95 15.06 14.04Q14.89 14.13 14.67 14.13Q14.45 14.13 14.27 14.04Q14.09 13.95 13.97 13.79Q13.85 13.64 13.79 13.44Q13.72 13.24 13.72 13.04Q13.72 12.82 13.78 12.63Q13.84 12.43 13.96 12.28Q14.08 12.13 14.26 12.04Q14.44 11.95 14.67 11.95ZM15.53 10.63H16.66Q16.61 10.24 16.45 9.93Q16.3 9.63 16.04 9.42Q15.79 9.22 15.46 9.11Q15.14 9 14.76 9Q14.13 9 13.69 9.28Q13.25 9.55 12.98 10Q12.7 10.44 12.57 10.98Q12.45 11.53 12.45 12.08Q12.45 12.64 12.55 13.18Q12.65 13.72 12.91 14.15Q13.17 14.58 13.61 14.84Q14.04 15.11 14.71 15.11Q15.17 15.11 15.55 14.95Q15.93 14.78 16.2 14.49Q16.47 14.2 16.62 13.81Q16.77 13.42 16.77 12.97Q16.77 12.61 16.66 12.27Q16.55 11.92 16.31 11.66Q16.06 11.38 15.7 11.21Q15.34 11.05 14.96 11.05Q14.53 11.05 14.2 11.2Q13.88 11.35 13.63 11.71L13.61 11.69Q13.62 11.45 13.68 11.13Q13.74 10.82 13.87 10.55Q13.99 10.28 14.21 10.09Q14.42 9.9 14.74 9.9Q15.05 9.9 15.26 10.12Q15.47 10.34 15.53 10.63Z\" fill=\"currentColor\"/>\n</svg>\n", wi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path\n d=\"M5.5 5h9M10 5v10\"\n stroke=\"currentColor\"\n stroke-width=\"1.25\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n</svg>\n", Ti = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M8.9 4.7a1.3 1.3 0 0 1 2.2 0l5.9 10.1a1.3 1.3 0 0 1-1.1 1.95H4.1a1.3 1.3 0 0 1-1.1-1.95Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10 8.75v3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <circle cx=\"10\" cy=\"14.25\" r=\"0.7\" fill=\"currentColor\"/>\n</svg>\n", Ei = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M2.8 2.9L6.0 5L2.8 7.1Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M9 5h8M6 10h11M6 15h11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Di = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path\n d=\"M8 5h9M8 10h9M8 15h9\"\n stroke=\"currentColor\"\n stroke-width=\"1.25\"\n stroke-linecap=\"round\"\n />\n <circle cx=\"4\" cy=\"5\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"4\" cy=\"10\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"4\" cy=\"15\" r=\"1\" fill=\"currentColor\"/>\n</svg>\n", Oi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M8 5h9M8 10h9M8 15h9\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M4.65 7V3.08H4.01Q3.98 3.3 3.87 3.45Q3.77 3.61 3.61 3.7Q3.46 3.79 3.27 3.83Q3.07 3.86 2.86 3.86V4.46H3.85V7Z\" fill=\"currentColor\"/>\n <path d=\"M2.66 9.59H3.42Q3.42 9.43 3.45 9.27Q3.48 9.11 3.55 8.98Q3.63 8.85 3.75 8.76Q3.87 8.68 4.04 8.68Q4.3 8.68 4.46 8.84Q4.63 9 4.63 9.29Q4.63 9.47 4.55 9.61Q4.47 9.75 4.35 9.86Q4.23 9.97 4.08 10.06Q3.93 10.16 3.81 10.25Q3.55 10.42 3.33 10.59Q3.1 10.76 2.93 10.96Q2.76 11.15 2.67 11.41Q2.57 11.66 2.57 12H5.45V11.32H3.59Q3.74 11.11 3.93 10.96Q4.12 10.81 4.32 10.68Q4.52 10.55 4.72 10.41Q4.92 10.28 5.08 10.11Q5.23 9.95 5.33 9.74Q5.42 9.52 5.42 9.23Q5.42 8.94 5.32 8.71Q5.21 8.48 5.02 8.32Q4.84 8.17 4.59 8.08Q4.35 8 4.08 8Q3.73 8 3.46 8.12Q3.18 8.24 3 8.46Q2.83 8.67 2.74 8.96Q2.65 9.25 2.66 9.59Z\" fill=\"currentColor\"/>\n <path d=\"M3.73 14.66V15.22Q3.87 15.22 4.03 15.23Q4.19 15.24 4.33 15.29Q4.46 15.35 4.55 15.46Q4.63 15.58 4.63 15.81Q4.63 16.09 4.45 16.26Q4.27 16.42 4 16.42Q3.82 16.42 3.7 16.36Q3.57 16.3 3.49 16.2Q3.4 16.09 3.36 15.95Q3.31 15.81 3.31 15.65H2.55Q2.55 15.99 2.65 16.25Q2.75 16.52 2.94 16.7Q3.13 16.88 3.41 16.98Q3.68 17.07 4.01 17.07Q4.29 17.07 4.56 16.99Q4.82 16.9 5.02 16.74Q5.22 16.58 5.34 16.34Q5.46 16.1 5.46 15.79Q5.46 15.45 5.28 15.21Q5.09 14.97 4.77 14.9V14.89Q5.04 14.81 5.18 14.59Q5.32 14.37 5.32 14.09Q5.32 13.82 5.2 13.62Q5.08 13.42 4.9 13.28Q4.71 13.14 4.47 13.07Q4.24 13 4 13Q3.7 13 3.45 13.1Q3.21 13.2 3.03 13.38Q2.85 13.55 2.76 13.8Q2.66 14.05 2.65 14.36H3.4Q3.4 14.05 3.55 13.85Q3.7 13.66 4.01 13.66Q4.23 13.66 4.39 13.79Q4.56 13.92 4.56 14.18Q4.56 14.34 4.48 14.45Q4.4 14.55 4.27 14.6Q4.15 14.65 4 14.66Q3.86 14.68 3.73 14.66Z\" fill=\"currentColor\"/>\n</svg>\n", ki = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path\n d=\"M10 5h7M10 10h7M10 15h7M3 5l1 1 2-2M3 10l1 1 2-2M3 15l1 1 2-2\"\n stroke=\"currentColor\"\n stroke-width=\"1.25\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n</svg>\n", Ai = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M3 8h14M3 12h14M7.5 4v12M12.5 4v12\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", ji = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.5 4h11A1.5 1.5 0 0 1 17 5.5V8H3V5.5A1.5 1.5 0 0 1 4.5 4Z\" fill=\"currentColor\"/>\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M3 8h14M3 12h14M7.5 4v12M12.5 4v12\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", Mi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M2.5 10C5 5.5 15 5.5 17.5 10C15 14.5 5 14.5 2.5 10Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <circle cx=\"10\" cy=\"10\" r=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", Ni = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.5 4H7.5v12H4.5A1.5 1.5 0 0 1 3 14.5v-9A1.5 1.5 0 0 1 4.5 4Z\" fill=\"currentColor\"/>\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M3 8h14M3 12h14M7.5 4v12M12.5 4v12\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", Pi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 4l-3 3m3-3l3 3M10 4v7M5 16h10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Fi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 16l-3-3m3 3l3-3M10 16V9M5 4h10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Ii = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 10l3-3M4 10l3 3M4 10h7M16 5v10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Li = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M16 10l-3-3m3 3l-3 3M16 10H9M4 5v10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Ri = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"7\" y=\"7\" width=\"9\" height=\"9\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M5 13h-.5A1.5 1.5 0 0 1 3 11.5v-7A1.5 1.5 0 0 1 4.5 3h7A1.5 1.5 0 0 1 13 4.5V5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", zi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.4 12.9 13.6 3.7a1.65 1.65 0 0 1 2.33 0l.37.37a1.65 1.65 0 0 1 0 2.33L7.1 15.6l-3.6 1 .9-3.7Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"m12.3 5 2.7 2.7\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Bi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4.5 6.5h11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M8 6.5V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.5 6.5l.5 8.5a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1l.5-8.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.5 9.5v3.5M11.5 9.5v3.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Vi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"5\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"10\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"15\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n</svg>\n", Hi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M2.5 7.9L5.7 10L2.5 12.1Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.47 6.25V13.75H8.98V10.51H11.78V13.75H13.29V6.25H11.78V9.13H8.98V6.25Z\" fill=\"currentColor\"/>\n <path d=\"M16.9 13.75V9.04H16.14Q16.1 9.31 15.97 9.49Q15.84 9.68 15.65 9.79Q15.47 9.9 15.24 9.94Q15.01 9.99 14.76 9.98V10.7H15.94V13.75Z\" fill=\"currentColor\"/>\n</svg>\n", Ui = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M2.5 7.9L5.7 10L2.5 12.1Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.47 6.25V13.75H8.98V10.51H11.78V13.75H13.29V6.25H11.78V9.13H8.98V6.25Z\" fill=\"currentColor\"/>\n <path d=\"M14.51 10.85H15.42Q15.42 10.66 15.46 10.47Q15.5 10.28 15.58 10.12Q15.67 9.97 15.82 9.87Q15.96 9.77 16.17 9.77Q16.48 9.77 16.68 9.96Q16.88 10.15 16.88 10.5Q16.88 10.71 16.78 10.88Q16.68 11.05 16.54 11.18Q16.39 11.32 16.22 11.43Q16.04 11.54 15.89 11.65Q15.58 11.85 15.31 12.06Q15.04 12.26 14.84 12.5Q14.64 12.73 14.52 13.04Q14.4 13.34 14.4 13.75H17.86V12.93H15.63Q15.81 12.69 16.03 12.51Q16.26 12.32 16.51 12.17Q16.75 12.01 16.99 11.85Q17.22 11.69 17.41 11.49Q17.6 11.29 17.72 11.03Q17.83 10.78 17.83 10.42Q17.83 10.08 17.7 9.8Q17.57 9.53 17.35 9.34Q17.12 9.15 16.83 9.05Q16.54 8.95 16.22 8.95Q15.79 8.95 15.47 9.09Q15.14 9.24 14.93 9.5Q14.71 9.76 14.6 10.1Q14.5 10.45 14.51 10.85Z\" fill=\"currentColor\"/>\n</svg>\n", Wi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M2.5 7.9L5.7 10L2.5 12.1Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.47 6.25V13.75H8.98V10.51H11.78V13.75H13.29V6.25H11.78V9.13H8.98V6.25Z\" fill=\"currentColor\"/>\n <path d=\"M15.79 10.95V11.62Q15.97 11.62 16.16 11.63Q16.35 11.64 16.51 11.7Q16.67 11.77 16.78 11.91Q16.88 12.05 16.88 12.32Q16.88 12.66 16.66 12.86Q16.44 13.06 16.12 13.06Q15.91 13.06 15.76 12.98Q15.6 12.91 15.5 12.79Q15.4 12.66 15.35 12.49Q15.3 12.32 15.29 12.13H14.38Q14.37 12.54 14.5 12.86Q14.62 13.17 14.85 13.39Q15.08 13.61 15.41 13.72Q15.73 13.84 16.13 13.84Q16.47 13.84 16.79 13.74Q17.1 13.64 17.35 13.44Q17.59 13.25 17.73 12.96Q17.88 12.67 17.88 12.3Q17.88 11.89 17.65 11.61Q17.43 11.32 17.04 11.23V11.22Q17.37 11.12 17.54 10.86Q17.7 10.6 17.7 10.25Q17.7 9.94 17.56 9.7Q17.42 9.45 17.19 9.29Q16.97 9.12 16.69 9.03Q16.4 8.95 16.12 8.95Q15.76 8.95 15.46 9.07Q15.17 9.19 14.96 9.4Q14.74 9.62 14.63 9.91Q14.51 10.21 14.5 10.58H15.4Q15.4 10.21 15.58 9.98Q15.77 9.74 16.13 9.74Q16.39 9.74 16.59 9.9Q16.79 10.06 16.79 10.36Q16.79 10.56 16.7 10.68Q16.6 10.81 16.45 10.87Q16.3 10.93 16.12 10.95Q15.95 10.96 15.79 10.95Z\" fill=\"currentColor\"/>\n</svg>\n", Gi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"10\" cy=\"10\" r=\"6\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M10 4C8 6 7.5 8 7.5 10C7.5 12 8 14 10 16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10 4C12 6 12.5 8 12.5 10C12.5 12 12 14 10 16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4 10H16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ki = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M6.5 4.5h7a1 1 0 0 1 1 1v10l-4.5-2.75L5.5 15.5v-10a1 1 0 0 1 1-1z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", qi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"5.5\" width=\"14\" height=\"9\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M3 8L10 10L17 8\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Ji = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M7.5 4L7.5 16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M12.5 4L12.5 16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M4 8H16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M4 12H16\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Yi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3.5\" y=\"4\" width=\"2.25\" height=\"12\" rx=\"1.125\" fill=\"currentColor\"/>\n <path d=\"M9 6h7\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M9 10h7\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M9 14h5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Xi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"6.75\" cy=\"10\" r=\"1\" fill=\"currentColor\"/>\n <path d=\"M9.75 8.5h4.5M9.75 11.5h4.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Zi = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"3\" width=\"11.5\" height=\"6\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M14.5 6H16a1 1 0 0 1 1 1v3.5a1 1 0 0 1-1 1h-6a1 1 0 0 0-1 1V14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <rect x=\"8\" y=\"14\" width=\"3\" height=\"3.5\" rx=\"0.75\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>", Qi = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 10h12\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", $i = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m7 6-4 4 4 4m6-8 4 4-4 4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ea = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"m6 7-3 3 3 3m8-6 3 3-3 3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"m12 5-4 10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", ta = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 3l2.2 4.4 4.8.7-3.5 3.4.8 4.8L10 14l-4.3 2.3.8-4.8L3 8.1l4.8-.7L10 3z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", na = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"10\" cy=\"10\" r=\"6.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"7.5\" cy=\"8.5\" r=\"0.75\" fill=\"currentColor\"/>\n <circle cx=\"12.5\" cy=\"8.5\" r=\"0.75\" fill=\"currentColor\"/>\n <path d=\"M7.5 12a3 3 0 0 0 5 0\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", ra = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 17v-7\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M10 13c-3 0-6-2-6-5 3 0 6 2 6 5z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M10 10c3 0 6-2.5 6-5.5-3 0-6 2.5-6 5.5z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n</svg>\n", ia = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5 3v4c0 1.1.9 2 2 2v8\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M9 3v4c0 1.1-.9 2-2 2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7 3v3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M13 3v14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M13 3c1.7 0 3 1.5 3 3.5S13 10 13 10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n</svg>\n", aa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"10\" cy=\"10\" r=\"6.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M10 7.5l2.4 1.7-.9 2.8h-3l-.9-2.8z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M10 7.5V4\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M12.4 9.2l3.1-1.1\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M11.5 12l2 2.6\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M8.5 12l-2 2.6\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M7.6 9.2l-3.1-1.1\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", oa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M8 13.5c-.25-1.5-1.5-3.5-2.5-5.5a4.5 4.5 0 0 1 9 0c-1 2-2.25 4-2.5 5.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8 13.5v1.75c0 .41.34.75.75.75h2.5c.41 0 .75-.34.75-.75V13.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M8 14.75h4\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", sa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5 17V3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M5 3c2 0 3 1.5 5 1.5S14 3 16 3v8c-2 0-3 1.5-5 1.5S7 11 5 11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ca = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <ellipse cx=\"10\" cy=\"5.5\" rx=\"6\" ry=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M4 5.5v4c0 1.38 2.69 2.5 6 2.5s6-1.12 6-2.5v-4\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M4 9.5v4c0 1.38 2.69 2.5 6 2.5s6-1.12 6-2.5v-4\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", la = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M7.5 4v12M12.5 4v12\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"4.5\" y=\"6\" width=\"1.5\" height=\"2\" rx=\"0.5\" fill=\"currentColor\"/>\n <rect x=\"4.5\" y=\"9\" width=\"1.5\" height=\"2\" rx=\"0.5\" fill=\"currentColor\"/>\n <rect x=\"9\" y=\"6\" width=\"1.5\" height=\"2\" rx=\"0.5\" fill=\"currentColor\"/>\n <rect x=\"14\" y=\"6\" width=\"1.5\" height=\"2\" rx=\"0.5\" fill=\"currentColor\"/>\n</svg>\n", ua = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"3\" rx=\"1\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"3\" y=\"8.5\" width=\"14\" height=\"3\" rx=\"1\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"3\" y=\"13\" width=\"14\" height=\"3\" rx=\"1\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", da = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4.5\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M3 8.5h14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M7 3v3M13 3v3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <circle cx=\"7\" cy=\"12\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"10\" cy=\"12\" r=\"1\" fill=\"currentColor\"/>\n <circle cx=\"13\" cy=\"12\" r=\"1\" fill=\"currentColor\"/>\n</svg>\n", fa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 4.25v11.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-dasharray=\"0.1 2.6\"/>\n <path d=\"M4.5 7.5 7 10 4.5 12.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M15.5 7.5 13 10 15.5 12.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", pa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M10 4.25v11.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-dasharray=\"0.1 2.6\"/>\n <path d=\"M7 7.5 4.5 10 7 12.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M13 7.5 15.5 10 13 12.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ma = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"6\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"11\" y=\"4\" width=\"6\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", ha = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <circle cx=\"6\" cy=\"6\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"10\" cy=\"6\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"14\" cy=\"6\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"6\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"10\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"14\" cy=\"10\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"6\" cy=\"14\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"10\" cy=\"14\" r=\"1.25\" fill=\"currentColor\"/>\n <circle cx=\"14\" cy=\"14\" r=\"1.25\" fill=\"currentColor\"/>\n</svg>\n", ga = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"2.5\" y=\"3.5\" width=\"15\" height=\"13\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"7\" cy=\"8\" r=\"1.3\" fill=\"currentColor\"/>\n <path d=\"M3 13.25 6.25 10l2.25 2.25L12.25 8.25 17 13\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", W = (e) => `<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" focusable="false">${e}</svg>`, _a = W("<rect x=\"3\" y=\"8\" width=\"8\" height=\"8\" rx=\"1.5\" fill=\"currentColor\" stroke=\"none\"/><path d=\"M3 4h18\"/><path d=\"M14 10h7\"/><path d=\"M14 14h7\"/><path d=\"M3 20h18\"/>"), va = W("<rect x=\"8\" y=\"8\" width=\"8\" height=\"8\" rx=\"1.5\" fill=\"currentColor\" stroke=\"none\"/><path d=\"M3 4h18\"/><path d=\"M3 20h18\"/>"), ya = W("<rect x=\"13\" y=\"8\" width=\"8\" height=\"8\" rx=\"1.5\" fill=\"currentColor\" stroke=\"none\"/><path d=\"M3 4h18\"/><path d=\"M3 10h7\"/><path d=\"M3 14h7\"/><path d=\"M3 20h18\"/>"), ba = W("<path d=\"M5 12h14\"/>"), xa = W("<path d=\"M12 5v14\"/><path d=\"M5 12h14\"/>"), Sa = W("<path d=\"M10 13a4 4 0 0 1 0-5.66l3-3a4 4 0 0 1 5.66 5.66l-1.5 1.5\"/><path d=\"M14 11a4 4 0 0 1 0 5.66l-3 3a4 4 0 1 1-5.66-5.66l1.5-1.5\"/>"), Ca = W("<path d=\"M9 3v6H3\"/><path d=\"M21 9h-6V3\"/><path d=\"M3 15h6v6\"/><path d=\"M15 21v-6h6\"/>"), wa = W("<path d=\"M15 3h6v6\"/><path d=\"M9 21H3v-6\"/><path d=\"m21 3-7 7\"/><path d=\"m3 21 7-7\"/>"), Ta = W("<path d=\"M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4\"/><path d=\"M7 10l5 5 5-5\"/><path d=\"M12 15V3\"/>"), Ea = W("<rect x=\"3\" y=\"3.5\" width=\"18\" height=\"12\" rx=\"2.5\"/><circle cx=\"7.5\" cy=\"7.5\" r=\"1.2\" fill=\"currentColor\" stroke=\"none\"/><path d=\"m4 13.6 3.4-3.2 2.4 2.2 3.6-3.3 4.4 4\"/><path d=\"M5 19h14\"/><path d=\"M5 22h8\"/>"), Da = W("<path d=\"m17.5 8 2.5-2.5L17.5 3\"/><path d=\"M20 5.5h-5.5a6 6 0 0 0-6 6V13\"/><path d=\"m6.5 16-2.5 2.5L6.5 21\"/><path d=\"M4 18.5h5.5a6 6 0 0 0 6-6V11\"/>"), Oa = W("<path d=\"M6 2v14a2 2 0 0 0 2 2h14\"/><path d=\"M2 6h14a2 2 0 0 1 2 2v14\"/>"), ka = "<svg viewBox=\"0 0 24 24\" fill=\"currentColor\" aria-hidden=\"true\" focusable=\"false\"><circle cx=\"6\" cy=\"12\" r=\"1.5\"/><circle cx=\"12\" cy=\"12\" r=\"1.5\"/><circle cx=\"18\" cy=\"12\" r=\"1.5\"/></svg>", Aa = "<svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" width=\"14\" height=\"14\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M18 6L6 18M6 6l12 12\"/></svg>", ja = "<svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.75\" stroke-linecap=\"round\" stroke-linejoin=\"round\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M14.5 4.5H6A2.5 2.5 0 0 0 3.5 7v10A2.5 2.5 0 0 0 6 19.5h12a2.5 2.5 0 0 0 2.5-2.5v-6.25\"/><path d=\"m14.5 4.5 1.75 2.25 2.25-1.25 2 2.75\"/><circle cx=\"8\" cy=\"9\" r=\"1.2\" fill=\"currentColor\" stroke=\"none\"/><path d=\"m3.8 16.25 3.45-3.45 2.5 2.5 3.5-3.5 4 4\"/></svg>", Ma = "<svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.75\" stroke-linecap=\"round\" stroke-linejoin=\"round\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M20 16.5A4.5 4.5 0 0 0 17 8.25a6 6 0 0 0-11.7 1.5A4 4 0 0 0 6 17.5\"/><path d=\"M12 12v5\"/><path d=\"m9.5 14.5 2.5-2.5 2.5 2.5\"/><path d=\"m4 4 16 16\"/></svg>", Na = W("<path d=\"M12 4v10\"/><path d=\"m7.5 8.5 4.5-4.5 4.5 4.5\"/><path d=\"M5 14v3.5A2.5 2.5 0 0 0 7.5 20h9a2.5 2.5 0 0 0 2.5-2.5V14\"/>"), Pa = W("<path d=\"M19 13.5V18a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 5 18V9a2.5 2.5 0 0 1 2.5-2.5H12\"/><path d=\"M15.5 4H20v4.5\"/><path d=\"M20 4l-8.5 8.5\"/>"), Fa = W("<path d=\"M12 4v12\"/><path d=\"m6.5 10.5 5.5 5.5 5.5-5.5\"/><path d=\"M4 18h16\"/>"), Ia = W("<path d=\"M12 5v11\"/><path d=\"m7 10 5-5 5 5\"/>"), La = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"6.75\" width=\"6.5\" height=\"6.5\" rx=\"1.25\" fill=\"currentColor\"/>\n <path d=\"M3 3.5h14M12 8.5h5M12 11.5h5M3 16.5h14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ra = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"6.75\" y=\"6.75\" width=\"6.5\" height=\"6.5\" rx=\"1.25\" fill=\"currentColor\"/>\n <path d=\"M3 3.5h14M3 16.5h14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", za = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"10.5\" y=\"6.75\" width=\"6.5\" height=\"6.5\" rx=\"1.25\" fill=\"currentColor\"/>\n <path d=\"M3 3.5h14M3 8.5h5M3 11.5h5M3 16.5h14\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ba = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"3\" width=\"14\" height=\"9\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"6.1\" cy=\"5.9\" r=\".9\" fill=\"currentColor\"/>\n <path d=\"M3.6 10.4 6.4 7.8l1.9 1.7 2.9-2.6 3.2 2.9\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4.5 14.5h11M4.5 17h6.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Va = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5.5 2.5v10a2 2 0 0 0 2 2h10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M2.5 5.5h10a2 2 0 0 1 2 2v10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", Ha = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M12.5 3.5h4v4M7.5 16.5h-4v-4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"m16.5 3.5-5.5 5.5M3.5 16.5 9 11\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ua = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M16.5 7.5h-4v-4M3.5 12.5h4v4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"m12.5 7.5 4-4M7.5 12.5l-4 4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Wa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M6.5 4.7v10.6a.6.6 0 0 0 .92.5l8.2-5.3a.6.6 0 0 0 0-1l-8.2-5.3a.6.6 0 0 0-.92.5Z\" fill=\"currentColor\"/>\n</svg>\n", Ga = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"5.75\" y=\"4.5\" width=\"3\" height=\"11\" rx=\"1\" fill=\"currentColor\"/>\n <rect x=\"11.25\" y=\"4.5\" width=\"3\" height=\"11\" rx=\"1\" fill=\"currentColor\"/>\n</svg>\n", Ka = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M17 5.5v9a.6.6 0 0 1-.92.5l-6.3-4.5a.6.6 0 0 1 0-1L16.08 5a.6.6 0 0 1 .92.5Z\" fill=\"currentColor\"/>\n <path d=\"M10 5.5v9a.6.6 0 0 1-.92.5l-6.3-4.5a.6.6 0 0 1 0-1L9.08 5a.6.6 0 0 1 .92.5Z\" fill=\"currentColor\"/>\n</svg>\n", qa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3 5.5v9a.6.6 0 0 0 .92.5l6.3-4.5a.6.6 0 0 0 0-1L3.92 5a.6.6 0 0 0-.92.5Z\" fill=\"currentColor\"/>\n <path d=\"M10 5.5v9a.6.6 0 0 0 .92.5l6.3-4.5a.6.6 0 0 0 0-1L10.92 5a.6.6 0 0 0-.92.5Z\" fill=\"currentColor\"/>\n</svg>\n", Ja = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 7.5h2.5L10 4.5v11L6.5 12.5H4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5Z\" fill=\"currentColor\"/>\n <path d=\"M12.5 7.75a3 3 0 0 1 0 4.5M14.5 5.5a6 6 0 0 1 0 9\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Ya = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 7.5h2.5L10 4.5v11L6.5 12.5H4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5Z\" fill=\"currentColor\"/>\n <path d=\"m13 8 4 4M17 8l-4 4\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", Xa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3 6h7.5M15.5 6H17M3 10h2.5M10.5 10H17M3 14h5.5M13.5 14H17\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <circle cx=\"13\" cy=\"6\" r=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"8\" cy=\"10\" r=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"11\" cy=\"14\" r=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", Za = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4.5\" width=\"14\" height=\"11\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"10\" y=\"9.5\" width=\"5.5\" height=\"4.5\" rx=\"1\" fill=\"currentColor\"/>\n</svg>\n", Qa = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"2.5\" y=\"6\" width=\"15\" height=\"8\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", $a = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5.4 15.4a6.5 6.5 0 1 1 9.2 0\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10 10.8 13.1 7.7\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <circle cx=\"10\" cy=\"10.8\" r=\"1\" fill=\"currentColor\"/>\n</svg>\n", eo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M4 12V9a2.5 2.5 0 0 1 2.5-2.5H14.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M12.5 4.5 15 6.5l-2.5 2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M16 8v3a2.5 2.5 0 0 1-2.5 2.5H5.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 15.5 5 13.5l2.5-2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", to = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.5 13.5v1.5A1.5 1.5 0 0 0 5 16.5h10a1.5 1.5 0 0 0 1.5-1.5v-1.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.5 9 10 12.5 13.5 9\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10 12.5v-9\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", no = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"5.5\" width=\"14\" height=\"9\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M6 10h3.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"m11.75 9.25 1.625 1.5 1.625-1.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", ro = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4.5\" width=\"6.5\" height=\"3.75\" rx=\"1.875\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"11\" y=\"4.5\" width=\"6\" height=\"3.75\" rx=\"1.875\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <rect x=\"3\" y=\"11.75\" width=\"9\" height=\"3.75\" rx=\"1.875\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", io = "<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"1.5\" y=\"1.5\" width=\"11\" height=\"11\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\"/><circle cx=\"4.5\" cy=\"4.5\" r=\".9\" fill=\"currentColor\"/><circle cx=\"7\" cy=\"7\" r=\".9\" fill=\"currentColor\"/><circle cx=\"9.5\" cy=\"9.5\" r=\".9\" fill=\"currentColor\"/></svg>", ao = "<svg aria-hidden=\"true\" focusable=\"false\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.5 2.5L8.5 6L4.5 9.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>", oo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"4\" width=\"14\" height=\"12\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M10 4v12\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", so = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"2.5\" y=\"4.5\" width=\"15\" height=\"11\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M8.5 7.75v4.5l3.9-2.25-3.9-2.25Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", co = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M7.5 15.5V5.5l8-1.5v10\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <circle cx=\"5.75\" cy=\"15.5\" r=\"1.75\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <circle cx=\"13.75\" cy=\"14\" r=\"1.75\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", lo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3 5.5 7.5 4l5 1.5L17 4v10.5L12.5 16l-5-1.5L3 16V5.5Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 4v10.5M12.5 5.5V16\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", uo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M3.5 16.5h13\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <path d=\"M6 13.5V10M10 13.5V5.5M14 13.5V8\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", fo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M6 4.5h8A2.5 2.5 0 0 1 16.5 7v4a2.5 2.5 0 0 1-2.5 2.5H8.75L5.25 16.25v-2.92A2.5 2.5 0 0 1 3.5 11V7A2.5 2.5 0 0 1 6 4.5Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", po = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5 4A1.5 1.5 0 0 1 6.5 2.5h4.75L15 6.25V16a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 5 16V4Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M11.25 2.5v3.75H15\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 10.5h5M7.5 13h5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", mo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5 4A1.5 1.5 0 0 1 6.5 2.5h4.75L15 6.25V16a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 5 16V4Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M11.25 2.5v3.75H15\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 10.5h5M7.5 13h5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", ho = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <path d=\"M5 4A1.5 1.5 0 0 1 6.5 2.5h4.75L15 6.25V16a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 5 16V4Z\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M11.25 2.5v3.75H15\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 9.5h5M7.5 11.75h5M7.5 14h3\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n</svg>\n", go = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3.5\" y=\"3\" width=\"13\" height=\"14\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M3.5 8h13M3.5 12h13M10 3v14\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", _o = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"3\" y=\"3.5\" width=\"14\" height=\"9\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M10 12.5v2.5M7.5 17l2.5-2 2.5 2\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n", vo = "\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\">\n <rect x=\"4\" y=\"2.5\" width=\"12\" height=\"15\" rx=\"1.5\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n <path d=\"M10 2.5v2.25M10 6.5v1.5M10 9.75v1.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>\n <rect x=\"8.5\" y=\"11.75\" width=\"3\" height=\"3.5\" rx=\"0.75\" stroke=\"currentColor\" stroke-width=\"1.25\"/>\n</svg>\n", yo = (e) => {
3783
3787
  let t = 14 / e;
3784
3788
  return `<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke="currentColor" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" focusable="false"><rect x="3" y="4" width="14" height="12" rx="1.5"/>${Array.from({ length: e - 1 }, (e, n) => {
3785
3789
  let r = +(3 + t * (n + 1)).toFixed(2);
@@ -3790,11 +3794,11 @@ var U = {
3790
3794
  itemDisabled: "cursor-default pointer-events-none text-text-secondary",
3791
3795
  icon: "flex items-center justify-center w-6 h-6 shrink-0 rounded-lg bg-popover-icon-bg [&_svg]:w-4 [&_svg]:h-4",
3792
3796
  focused: "is-focused"
3793
- }, yo = {
3797
+ }, bo = {
3794
3798
  item: "rounded-md px-1 py-1.5",
3795
3799
  itemIconOnly: "justify-center",
3796
3800
  itemWithTitle: "px-2"
3797
- }, bo = { item: "rounded p-[3px] mobile:p-1" }, K = class extends $r {
3801
+ }, xo = { item: "rounded p-[3px] mobile:p-1" }, K = class extends ei {
3798
3802
  get isDisabled() {
3799
3803
  return this.params.isDisabled === !0;
3800
3804
  }
@@ -3876,9 +3880,9 @@ var U = {
3876
3880
  }
3877
3881
  if (t.secondaryLabel) {
3878
3882
  let n = document.createElement("div");
3879
- if (n.className = "ml-auto shrink-0 inline-flex items-center whitespace-nowrap pl-20 leading-none text-text-secondary/60", n.setAttribute(a.popoverItemSecondaryTitle, ""), n.setAttribute("data-blok-testid", "popover-item-secondary-title"), n.innerHTML = Yr(t.secondaryLabel), e.appendChild(n), this.nodes.secondaryLabelEl = n, t.title !== void 0) {
3883
+ if (n.className = "ml-auto shrink-0 inline-flex items-center whitespace-nowrap pl-20 leading-none text-text-secondary/60", n.setAttribute(a.popoverItemSecondaryTitle, ""), n.setAttribute("data-blok-testid", "popover-item-secondary-title"), n.innerHTML = Xr(t.secondaryLabel), e.appendChild(n), this.nodes.secondaryLabelEl = n, t.title !== void 0) {
3880
3884
  var d;
3881
- Bt((d = n.firstElementChild) == null ? n : d, Zr(t.secondaryLabel), { placement: "top" });
3885
+ Vt((d = n.firstElementChild) == null ? n : d, Qr(t.secondaryLabel), { placement: "top" });
3882
3886
  }
3883
3887
  }
3884
3888
  if (t.trailingIcon) {
@@ -3887,7 +3891,7 @@ var U = {
3887
3891
  }
3888
3892
  if (this.hasChildren && !this.isChevronHidden) {
3889
3893
  let t = document.createElement("div");
3890
- t.className = this.getChevronClass(c), t.setAttribute(a.popoverItemIcon, ""), t.setAttribute(a.popoverItemIconChevronRight, ""), t.setAttribute("data-blok-testid", "popover-item-chevron-right"), t.innerHTML = hi, e.appendChild(t), this.nodes.chevron = t;
3894
+ t.className = this.getChevronClass(c), t.setAttribute(a.popoverItemIcon, ""), t.setAttribute(a.popoverItemIconChevronRight, ""), t.setAttribute("data-blok-testid", "popover-item-chevron-right"), t.innerHTML = gi, e.appendChild(t), this.nodes.chevron = t;
3891
3895
  }
3892
3896
  }
3893
3897
  createIconElement(e, t, n, r) {
@@ -3897,7 +3901,7 @@ var U = {
3897
3901
  getContainerClass() {
3898
3902
  var e, t, n, i;
3899
3903
  let a = (e = (t = this.renderParams) == null ? void 0 : t.isInline) == null ? !1 : e, o = (n = (i = this.renderParams) == null ? void 0 : i.isNestedInline) == null ? !1 : n;
3900
- return r(G.item, !a && !o && "pl-2 pr-3", a && yo.item, a && this.params.icon && yo.itemIconOnly, a && this.params.title && yo.itemWithTitle, o && bo.item, this.params.isDisabled && G.itemDisabled);
3904
+ return r(G.item, !a && !o && "pl-2 pr-3", a && bo.item, a && this.params.icon && bo.itemIconOnly, a && this.params.title && bo.itemWithTitle, o && xo.item, this.params.isDisabled && G.itemDisabled);
3901
3905
  }
3902
3906
  getIconClass(e, t, n) {
3903
3907
  return r(G.icon, t && "w-auto h-auto bg-transparent [&_svg]:w-icon [&_svg]:h-icon mobile:[&_svg]:w-icon-mobile mobile:[&_svg]:h-icon-mobile", n && "w-toolbox-btn h-toolbox-btn", e && "mr-3", e && t && "shadow-none mr-0!", e && n && "mr-2!");
@@ -3949,7 +3953,7 @@ var U = {
3949
3953
  restoreOriginalSecondaryLabel() {
3950
3954
  if (!this.nodes.secondaryLabelEl) return;
3951
3955
  let e = this.params.secondaryLabel;
3952
- this.nodes.secondaryLabelEl.innerHTML = e ? Yr(e) : "", this.nodes.secondaryLabelEl.style.display = e ? "" : "none";
3956
+ this.nodes.secondaryLabelEl.innerHTML = e ? Xr(e) : "", this.nodes.secondaryLabelEl.style.display = e ? "" : "none";
3953
3957
  }
3954
3958
  updateIcon(e) {
3955
3959
  !this.nodes.icon || !e || (this.nodes.icon.innerHTML = e);
@@ -3958,7 +3962,7 @@ var U = {
3958
3962
  !this.nodes.titleEl || e.title === void 0 || (this.nodes.titleEl.textContent = e.title);
3959
3963
  }
3960
3964
  updateSecondaryLabel(e) {
3961
- this.nodes.secondaryLabelEl && (this.nodes.secondaryLabelEl.innerHTML = e ? Yr(e) : "", this.nodes.secondaryLabelEl.style.display = e ? "" : "none");
3965
+ this.nodes.secondaryLabelEl && (this.nodes.secondaryLabelEl.innerHTML = e ? Xr(e) : "", this.nodes.secondaryLabelEl.style.display = e ? "" : "none");
3962
3966
  }
3963
3967
  disableConfirmationMode() {
3964
3968
  this.nodes.root !== null && (this.setConfirmation(null), this.confirmationState = null, this.disableSpecialHoverAndFocusBehavior());
@@ -3985,12 +3989,12 @@ var U = {
3985
3989
  container: "py-1.5 max-h-5 overflow-hidden",
3986
3990
  containerHidden: "opacity-0 max-h-0! py-0!",
3987
3991
  line: "h-px w-full bg-popover-border/60"
3988
- }, xo = {
3992
+ }, So = {
3989
3993
  container: "px-1 py-0 max-h-none",
3990
3994
  line: "h-full w-px",
3991
3995
  nestedContainer: "py-1 px-[3px]",
3992
3996
  nestedLine: "w-full h-px"
3993
- }, So = class extends $r {
3997
+ }, Co = class extends ei {
3994
3998
  constructor(e) {
3995
3999
  var t, n;
3996
4000
  super(), this.nodes = {
@@ -4008,10 +4012,10 @@ var U = {
4008
4012
  }
4009
4013
  getContainerClass(e) {
4010
4014
  let t = q.container;
4011
- return this.isNestedInline ? r(t, xo.nestedContainer, e && q.containerHidden) : this.isInline ? r(t, xo.container, e && q.containerHidden) : r(t, e && q.containerHidden);
4015
+ return this.isNestedInline ? r(t, So.nestedContainer, e && q.containerHidden) : this.isInline ? r(t, So.container, e && q.containerHidden) : r(t, e && q.containerHidden);
4012
4016
  }
4013
4017
  getLineClass() {
4014
- return this.isNestedInline ? r(q.line, xo.nestedLine) : this.isInline ? r(q.line, xo.line) : q.line;
4018
+ return this.isNestedInline ? r(q.line, So.nestedLine) : this.isInline ? r(q.line, So.line) : q.line;
4015
4019
  }
4016
4020
  createRootElement() {
4017
4021
  let e = document.createElement("div");
@@ -4019,10 +4023,10 @@ var U = {
4019
4023
  let t = document.createElement("div");
4020
4024
  return t.className = this.getLineClass(), t.setAttribute(a.popoverItemSeparatorLine, ""), e.appendChild(t), this.nodes.line = t, e;
4021
4025
  }
4022
- }, Co = {
4026
+ }, wo = {
4023
4027
  root: "",
4024
4028
  rootHidden: "hidden"
4025
- }, wo = { root: "flex items-center" }, J = class extends $r {
4029
+ }, To = { root: "flex items-center" }, J = class extends ei {
4026
4030
  constructor(e, t) {
4027
4031
  var n;
4028
4032
  super(e), this.nodes = { root: null }, this.isHidden = !1, this.isInline = (n = t == null ? void 0 : t.isInline) == null ? !1 : n, this.nodes.root = this.createRootElement(e, t);
@@ -4039,12 +4043,12 @@ var U = {
4039
4043
  return Array.from(e);
4040
4044
  }
4041
4045
  updateRootClasses() {
4042
- this.nodes.root && (this.nodes.root.className = r(Co.root, this.isInline && wo.root, this.isHidden && Co.rootHidden));
4046
+ this.nodes.root && (this.nodes.root.className = r(wo.root, this.isInline && To.root, this.isHidden && wo.rootHidden));
4043
4047
  }
4044
4048
  createRootElement(e, t) {
4045
4049
  var i;
4046
4050
  let o = document.createElement("div");
4047
- if (o.className = r(Co.root, this.isInline && wo.root), o.setAttribute(a.popoverItemHtml, ""), o.setAttribute("data-blok-testid", "popover-item-html"), e.name && o.setAttribute("data-blok-item-name", e.name), o.appendChild(e.element), e.hint !== void 0 && (t == null || (i = t.hint) == null ? void 0 : i.enabled) !== !1) {
4051
+ if (o.className = r(wo.root, this.isInline && To.root), o.setAttribute(a.popoverItemHtml, ""), o.setAttribute("data-blok-testid", "popover-item-html"), e.name && o.setAttribute("data-blok-item-name", e.name), o.appendChild(e.element), e.hint !== void 0 && (t == null || (i = t.hint) == null ? void 0 : i.enabled) !== !1) {
4048
4052
  var s, c;
4049
4053
  this.addHint(o, n(n({}, e.hint), {}, {
4050
4054
  position: (t == null || (s = t.hint) == null ? void 0 : s.position) || "right",
@@ -4053,11 +4057,11 @@ var U = {
4053
4057
  }
4054
4058
  return o;
4055
4059
  }
4056
- }, To = {
4060
+ }, Eo = {
4057
4061
  wrapper: "bg-search-input-bg border border-search-input-border rounded-lg px-2 py-0.5 grid grid-cols-[auto_1fr] grid-rows-[auto] focus-within:border-search-input-focus-border focus-within:shadow-[0_0_0_2px_rgba(35,131,226,0.15)]",
4058
4062
  icon: "w-6 h-6 flex items-center justify-center mr-1.5 [&_svg]:w-4 [&_svg]:h-4 [&_svg]:text-gray-text",
4059
4063
  input: "text-sm outline-hidden font-medium font-inherit border-0 bg-transparent m-0 p-0 leading-[20px] min-w-[calc(100%-(--spacing(6))-6px)] text-text-primary placeholder:text-gray-text/80 placeholder:font-normal"
4060
- }, Eo = (e, t) => {
4064
+ }, Do = (e, t) => {
4061
4065
  if (e.length === 0) return t.length;
4062
4066
  if (t.length === 0) return e.length;
4063
4067
  let n = Array.from({ length: t.length + 1 }, (e, t) => t), r = Array(t.length + 1);
@@ -4070,37 +4074,37 @@ var U = {
4070
4074
  n.splice(0, n.length, ...r);
4071
4075
  }
4072
4076
  return n[t.length];
4073
- }, Do = (e, t) => [...e].reduce((e, n) => e < t.length && n === t[e] ? e + 1 : e, 0) === t.length, Oo = (e, t) => [...e].reduce((n, r, i) => {
4077
+ }, Oo = (e, t) => [...e].reduce((e, n) => e < t.length && n === t[e] ? e + 1 : e, 0) === t.length, ko = (e, t) => [...e].reduce((n, r, i) => {
4074
4078
  let a = i === 0 || e[i - 1] === " " || e[i - 1] === "-" || e[i - 1] === "_";
4075
4079
  return n < t.length && a && r === t[n] ? n + 1 : n;
4076
- }, 0) === t.length, ko = (e, t) => {
4080
+ }, 0) === t.length, Ao = (e, t) => {
4077
4081
  if (e === t) return 100;
4078
4082
  if (e.startsWith(t)) return 90;
4079
4083
  if (e.includes(t)) return 75;
4080
- if (t.length >= 2 && Oo(e, t)) return 55;
4081
- if (t.length >= 2 && Do(e, t)) return 35;
4084
+ if (t.length >= 2 && ko(e, t)) return 55;
4085
+ if (t.length >= 2 && Oo(e, t)) return 35;
4082
4086
  if (t.length >= 3) {
4083
4087
  let n = Math.floor(t.length / 3);
4084
- if (Eo(e, t) <= n) return 15;
4088
+ if (Do(e, t) <= n) return 15;
4085
4089
  }
4086
4090
  return 0;
4087
- }, Ao = (e, t) => {
4091
+ }, jo = (e, t) => {
4088
4092
  if (t === "") return 100;
4089
4093
  let n = t.toLowerCase(), r = [];
4090
4094
  if (e.title !== void 0 && r.push(e.title.toLowerCase()), e.englishTitle !== void 0 && r.push(e.englishTitle.toLowerCase()), e.searchTerms !== void 0) for (let t of e.searchTerms) r.push(t.toLowerCase());
4091
4095
  return r.reduce((e, t) => {
4092
- let r = ko(t, n);
4096
+ let r = Ao(t, n);
4093
4097
  return r > e ? r : e;
4094
4098
  }, 0);
4095
- }, jo = /* @__PURE__ */ function(e) {
4099
+ }, Mo = /* @__PURE__ */ function(e) {
4096
4100
  return e.Search = "search", e;
4097
- }({}), Mo = class extends Ue {
4101
+ }({}), No = class extends Ue {
4098
4102
  constructor({ items: e, placeholder: t }) {
4099
4103
  super(), this.searchQuery = "", this.handleValueChange = () => {
4100
4104
  this.applySearch(this.input.value);
4101
- }, this.listeners = new Ne(), this.items = e, this.wrapper = T.make("div", To.wrapper), this.wrapper.setAttribute("data-blok-testid", "popover-search-field");
4102
- let n = T.make("div", To.icon, { innerHTML: gi });
4103
- this.input = T.make("input", To.input, {
4105
+ }, this.listeners = new Ne(), this.items = e, this.wrapper = T.make("div", Eo.wrapper), this.wrapper.setAttribute("data-blok-testid", "popover-search-field");
4106
+ let n = T.make("div", Eo.icon, { innerHTML: _i });
4107
+ this.input = T.make("input", Eo.input, {
4104
4108
  type: "search",
4105
4109
  placeholder: t,
4106
4110
  tabIndex: -1
@@ -4123,7 +4127,7 @@ var U = {
4123
4127
  this.input.value = "";
4124
4128
  }
4125
4129
  applySearch(e) {
4126
- this.searchQuery !== e && (this.searchQuery = e, this.emit(jo.Search, {
4130
+ this.searchQuery !== e && (this.searchQuery = e, this.emit(Mo.Search, {
4127
4131
  query: e,
4128
4132
  items: this.foundItems
4129
4133
  }));
@@ -4151,10 +4155,10 @@ var U = {
4151
4155
  get foundItems() {
4152
4156
  return this.items.map((e) => ({
4153
4157
  item: e,
4154
- score: Ao(e, this.searchQuery)
4158
+ score: jo(e, this.searchQuery)
4155
4159
  })).filter(({ score: e }) => e > 0).sort((e, t) => t.score - e.score).map(({ item: e }) => e);
4156
4160
  }
4157
- }, No, Po = class e {
4161
+ }, Po, Fo = class e {
4158
4162
  constructor() {
4159
4163
  this.stack = [], this.boundPointerDown = null;
4160
4164
  }
@@ -4206,7 +4210,7 @@ var U = {
4206
4210
  t !== -1 && this.stack.splice(t, 1);
4207
4211
  }
4208
4212
  };
4209
- No = Po, No._instance = null;
4213
+ Po = Fo, Po._instance = null;
4210
4214
  //#endregion
4211
4215
  //#region src/components/utils/popover/popover.const.ts
4212
4216
  var Y = {
@@ -4216,15 +4220,15 @@ var Y = {
4216
4220
  popoverOverlay: "hidden bg-dark",
4217
4221
  items: "flex-1 min-h-0 overflow-y-auto overscroll-contain pb-1.5",
4218
4222
  scrollHaze: "absolute inset-x-0 h-6 pointer-events-none z-1 transition-opacity duration-300 ease-in-out"
4219
- }, Fo = {
4223
+ }, Io = {
4220
4224
  popover: "relative",
4221
4225
  popoverContainer: "flex-row top-0 min-w-max w-max p-1 mobile:absolute",
4222
4226
  popoverContainerOpened: "pb-1.5"
4223
- }, Io = (e) => `level-${e}`, X = /* @__PURE__ */ function(e) {
4227
+ }, Lo = (e) => `level-${e}`, X = /* @__PURE__ */ function(e) {
4224
4228
  return e.NestingLevel = "--nesting-level", e.PopoverHeight = "--popover-height", e.InlinePopoverWidth = "--inline-popover-width", e.PopoverTop = "--popover-top", e.PopoverLeft = "--popover-left", e.TriggerItemLeft = "--trigger-item-left", e.TriggerItemTop = "--trigger-item-top", e;
4225
4229
  }({}), Z = /* @__PURE__ */ function(e) {
4226
4230
  return e.Closed = "closed", e.ClosedOnActivate = "closed-on-activate", e;
4227
- }({}), Lo = class extends Ue {
4231
+ }({}), Ro = class extends Ue {
4228
4232
  get itemsDefault() {
4229
4233
  return this.items.filter((e) => e instanceof K);
4230
4234
  }
@@ -4249,15 +4253,15 @@ var Y = {
4249
4253
  let n = this.nodes.popover;
4250
4254
  n !== null && !n.isConnected && document.body.appendChild(n);
4251
4255
  let i = ((e = this.params.nestingLevel) == null ? 0 : e) === 0, o = this.params.trigger !== void 0;
4252
- n !== null && i && o && I() && wt(n), this.nodes.popover.setAttribute(a.popoverOpened, "true"), this.nodes.popoverContainer.className = r(this.nodes.popoverContainer.className, Y.popoverContainerOpened), this.itemsDefault.forEach((e) => this.refreshItemActiveState(e)), this.search !== void 0 && this.search.focus(), this.nodes.scrollHazeTop.style.transition = "none", this.nodes.scrollHazeBottom.style.transition = "none", this.updateScrollHazes(), requestAnimationFrame(() => {
4256
+ n !== null && i && o && I() && Tt(n), this.nodes.popover.setAttribute(a.popoverOpened, "true"), this.nodes.popoverContainer.className = r(this.nodes.popoverContainer.className, Y.popoverContainerOpened), this.itemsDefault.forEach((e) => this.refreshItemActiveState(e)), this.search !== void 0 && this.search.focus(), this.nodes.scrollHazeTop.style.transition = "none", this.nodes.scrollHazeBottom.style.transition = "none", this.updateScrollHazes(), requestAnimationFrame(() => {
4253
4257
  this.nodes.scrollHazeTop.style.transition = "", this.nodes.scrollHazeBottom.style.transition = "";
4254
4258
  });
4255
4259
  let { trigger: s } = this.params;
4256
- ((t = this.params.nestingLevel) == null ? 0 : t) === 0 && s !== void 0 && Po.instance.register(this, s);
4260
+ ((t = this.params.nestingLevel) == null ? 0 : t) === 0 && s !== void 0 && Fo.instance.register(this, s);
4257
4261
  }
4258
4262
  hide() {
4259
4263
  let e = this.nodes.popover;
4260
- e !== null && I() && Et(e) && Tt(e), this.nodes.popover.removeAttribute(a.popoverOpened), this.nodes.popover.removeAttribute(a.popoverOpenTop), this.nodes.popover.removeAttribute(a.popoverOpenLeft), this.nodes.popoverContainer.className = Y.popoverContainer, this.itemsDefault.forEach((e) => e.reset()), this.nodes.scrollHazeTop.style.opacity = "0", this.nodes.scrollHazeBottom.style.opacity = "0", this.search !== void 0 && this.search.clear(), Po.instance.unregister(this), this.emit(Z.Closed);
4264
+ e !== null && I() && Dt(e) && Et(e), this.nodes.popover.removeAttribute(a.popoverOpened), this.nodes.popover.removeAttribute(a.popoverOpenTop), this.nodes.popover.removeAttribute(a.popoverOpenLeft), this.nodes.popoverContainer.className = Y.popoverContainer, this.itemsDefault.forEach((e) => e.reset()), this.nodes.scrollHazeTop.style.opacity = "0", this.nodes.scrollHazeBottom.style.opacity = "0", this.search !== void 0 && this.search.clear(), Fo.instance.unregister(this), this.emit(Z.Closed);
4261
4265
  }
4262
4266
  destroy() {
4263
4267
  var e, t;
@@ -4298,7 +4302,7 @@ var Y = {
4298
4302
  buildItems(e) {
4299
4303
  return e.map((e) => {
4300
4304
  switch (e.type) {
4301
- case M.Separator: return new So(this.itemsRenderParams[M.Separator]);
4305
+ case M.Separator: return new Co(this.itemsRenderParams[M.Separator]);
4302
4306
  case M.Html: return new J(e, this.itemsRenderParams[M.Html]);
4303
4307
  case M.Default:
4304
4308
  case void 0: return new K(e, this.itemsRenderParams[M.Default]);
@@ -4404,7 +4408,7 @@ var Y = {
4404
4408
  };
4405
4409
  //#endregion
4406
4410
  //#region src/components/utils/popover/popover-nested-position.ts
4407
- function Ro(e) {
4411
+ function zo(e) {
4408
4412
  let { parentRect: t, nestedWidth: n, viewportWidth: r, parentPrefersLeft: i, overlap: a = 4 } = e, o = Math.max(0, t.left), s = Math.max(0, r - t.right + a), c = n <= o, l = n <= s;
4409
4413
  if (i) {
4410
4414
  if (c) return { openLeft: !0 };
@@ -4415,16 +4419,16 @@ function Ro(e) {
4415
4419
  }
4416
4420
  return { openLeft: o > s };
4417
4421
  }
4418
- function zo(e) {
4422
+ function Bo(e) {
4419
4423
  let { desiredTop: t, nestedHeight: n, viewportHeight: r, margin: i = 8 } = e, a = i, o = r - n - i;
4420
4424
  return o < a ? { top: a } : { top: Math.max(a, Math.min(o, t)) };
4421
4425
  }
4422
4426
  //#endregion
4423
4427
  //#region src/components/utils/popover/popover-position.ts
4424
- function Bo(e, t, n) {
4428
+ function Vo(e, t, n) {
4425
4429
  return e <= t ? !1 : e <= n;
4426
4430
  }
4427
- function Vo(e) {
4431
+ function Ho(e) {
4428
4432
  var t;
4429
4433
  let { anchor: n, popoverSize: r, scopeBounds: i, viewportSize: a, scrollOffset: o, offset: s = 8, leftAlignRect: c, placeLeftOfAnchor: l = !1, viewportMargin: u = 0 } = e, d = Math.min(a.height, i.bottom), f = Math.max(0, i.top), p = Math.min(a.width, i.right), m = Math.max(0, i.left), h = i.top + o.y;
4430
4434
  if (l) {
@@ -4436,7 +4440,7 @@ function Vo(e) {
4436
4440
  openLeft: !0
4437
4441
  };
4438
4442
  }
4439
- let g = d - n.bottom - s, _ = n.top - s - f, v = Bo(r.height, g, _), y = v ? n.top - s - r.height + o.y : n.bottom + s + o.y, ee = y < h ? h : y, b = ((t = c == null ? void 0 : c.left) == null ? n.left : t) + o.x, te = n.right + o.x, ne = p + o.x - b, re = te - m - o.x, x = Bo(r.width, ne, re), S = x ? Math.max(m + o.x, n.right - r.width + o.x) : b;
4443
+ let g = d - n.bottom - s, _ = n.top - s - f, v = Vo(r.height, g, _), y = v ? n.top - s - r.height + o.y : n.bottom + s + o.y, ee = y < h ? h : y, b = ((t = c == null ? void 0 : c.left) == null ? n.left : t) + o.x, te = n.right + o.x, ne = p + o.x - b, re = te - m - o.x, x = Vo(r.width, ne, re), S = x ? Math.max(m + o.x, n.right - r.width + o.x) : b;
4440
4444
  return {
4441
4445
  top: ee,
4442
4446
  left: S + r.width > p + o.x ? Math.max(m + o.x, p + o.x - r.width) : S,
@@ -4449,11 +4453,11 @@ function Vo(e) {
4449
4453
  var Q = {
4450
4454
  x: null,
4451
4455
  y: null
4452
- }, Ho = "__blokPopoverPointerTracker__";
4453
- typeof document < "u" && !document[Ho] && (document.addEventListener("mousemove", (e) => {
4456
+ }, Uo = "__blokPopoverPointerTracker__";
4457
+ typeof document < "u" && !document[Uo] && (document.addEventListener("mousemove", (e) => {
4454
4458
  Q.x = e.clientX, Q.y = e.clientY;
4455
- }, { capture: !0 }), document[Ho] = !0);
4456
- var Uo = class e extends Lo {
4459
+ }, { capture: !0 }), document[Uo] = !0);
4460
+ var Wo = class e extends Ro {
4457
4461
  setLeftAlignElement(e) {
4458
4462
  this.leftAlignElement = e;
4459
4463
  }
@@ -4471,7 +4475,7 @@ var Uo = class e extends Lo {
4471
4475
  this.nodes.contextLabel !== void 0 && (n ? (this.nodes.contextLabel.removeAttribute(a.hidden), this.nodes.contextLabel.classList.remove("hidden")) : (this.nodes.contextLabel.setAttribute(a.hidden, "true"), this.nodes.contextLabel.classList.add("hidden")));
4472
4476
  let i = !n && e.promotedItems.length > 0 ? this.deduplicateAgainstPromoted(r, e.promotedItems) : r, o = i.length === 0 && e.promotedItems.length === 0;
4473
4477
  this.items.forEach((e) => {
4474
- let t = e instanceof K, r = e instanceof So || e instanceof J, a = t ? !i.includes(e) || e.name !== void 0 && this.isNamePermanentlyHidden(e.name) : r && (o || !n);
4478
+ let t = e instanceof K, r = e instanceof Co || e instanceof J, a = t ? !i.includes(e) || e.name !== void 0 && this.isNamePermanentlyHidden(e.name) : r && (o || !n);
4475
4479
  e.toggleHidden(a);
4476
4480
  }), this._size = void 0, !n && i.length > 0 ? this.reorderItemsByRank(i) : n && this.originalItemOrder !== void 0 && this.restoreOriginalItemOrder();
4477
4481
  for (let e of this.promotedSeparators) e.remove();
@@ -4519,7 +4523,7 @@ var Uo = class e extends Lo {
4519
4523
  }
4520
4524
  if (e.leftAlignElement && (this.leftAlignElement = e.leftAlignElement), e.placeLeftOfAnchor === !0 && (this.placeLeftOfAnchor = !0), typeof e.viewportMargin == "number" && (this.viewportMargin = e.viewportMargin), e.nestingLevel !== void 0 && (this.nestingLevel = e.nestingLevel), this.nestingLevel > 0 && this.nodes.popover.setAttribute(a.nested, "true"), e.scopeElement !== void 0 && (this.scopeElement = e.scopeElement), this.nodes.popoverContainer !== null && (this.listeners.on(this.nodes.popoverContainer, "mouseover", (e) => this.handleHover(e)), this.listeners.on(this.nodes.popoverContainer, "mouseleave", (e) => this.handleMouseLeave(e))), e.searchable && this.addSearch(), e.flippable === !1) return;
4521
4525
  let r = e.flipper;
4522
- r === void 0 ? this.flipper = new Jt({
4526
+ r === void 0 ? this.flipper = new Yt({
4523
4527
  items: this.flippableElements,
4524
4528
  focusedItemClass: G.focused,
4525
4529
  allowedKeys: [
@@ -4559,7 +4563,7 @@ var Uo = class e extends Lo {
4559
4563
  this.nodes.popover.style.setProperty("--width", t + "px");
4560
4564
  }
4561
4565
  if (!this.trigger) {
4562
- let { openTop: e, openLeft: t } = Vo({
4566
+ let { openTop: e, openLeft: t } = Ho({
4563
4567
  anchor: this.nodes.popoverContainer.getBoundingClientRect(),
4564
4568
  popoverSize: n,
4565
4569
  scopeBounds: this.scopeElement.getBoundingClientRect(),
@@ -4603,7 +4607,7 @@ var Uo = class e extends Lo {
4603
4607
  openLeft: !1
4604
4608
  };
4605
4609
  let o = n === void 0 ? (t = this.leftAlignElement) == null ? void 0 : t.getBoundingClientRect() : void 0;
4606
- return Vo({
4610
+ return Ho({
4607
4611
  anchor: a,
4608
4612
  popoverSize: this.size,
4609
4613
  scopeBounds: this.scopeElement.getBoundingClientRect(),
@@ -4727,7 +4731,7 @@ var Uo = class e extends Lo {
4727
4731
  this.nodes.popover.hasAttribute(a.popoverOpenTop);
4728
4732
  let d = this.nodes.popover.hasAttribute(a.popoverOpenLeft);
4729
4733
  c.style.position = "absolute";
4730
- let f = this.nodes.popoverContainer.offsetWidth, p = this.params.width === void 0 || this.params.width === "auto" ? `${f}px` : "var(--width)", m = this.nodes.popoverContainer.getBoundingClientRect(), h = (n = (r = this.nestedPopover) == null ? void 0 : r.size.width) == null ? f : n, { openLeft: g } = Ro({
4734
+ let f = this.nodes.popoverContainer.offsetWidth, p = this.params.width === void 0 || this.params.width === "auto" ? `${f}px` : "var(--width)", m = this.nodes.popoverContainer.getBoundingClientRect(), h = (n = (r = this.nestedPopover) == null ? void 0 : r.size.width) == null ? f : n, { openLeft: g } = zo({
4731
4735
  parentRect: {
4732
4736
  left: m.left,
4733
4737
  right: m.right,
@@ -4740,7 +4744,7 @@ var Uo = class e extends Lo {
4740
4744
  g ? u.style.setProperty(X.PopoverLeft, `calc(-1 * (var(--nesting-level) + 1) * ${p} + 100%)`) : u.style.setProperty(X.PopoverLeft, `calc(var(--nesting-level) * (${p} - var(--nested-popover-overlap)))`);
4741
4745
  let _ = t.getElement(), v = _ == null ? void 0 : _.getBoundingClientRect(), y = (i = (o = this.nestedPopover) == null ? void 0 : o.size.height) == null ? 0 : i;
4742
4746
  if (v && y > 0) {
4743
- let { top: e } = zo({
4747
+ let { top: e } = Bo({
4744
4748
  desiredTop: v.top + v.height / 2 - y / 2,
4745
4749
  nestedHeight: y,
4746
4750
  viewportHeight: window.innerHeight
@@ -4757,7 +4761,7 @@ var Uo = class e extends Lo {
4757
4761
  };
4758
4762
  if (this.nodes.popover === null) return t;
4759
4763
  let n = this.nodes.popover.cloneNode(!0);
4760
- n.style.visibility = "hidden", n.style.position = "absolute", n.style.top = "-1000px", Dt(n), n.setAttribute(a.popoverOpened, "true"), (e = n.querySelector(`[${a.nested}]`)) == null || e.remove();
4764
+ n.style.visibility = "hidden", n.style.position = "absolute", n.style.top = "-1000px", Ot(n), n.setAttribute(a.popoverOpened, "true"), (e = n.querySelector(`[${a.nested}]`)) == null || e.remove();
4761
4765
  let i = n.querySelector(`[${a.popoverContainer}]`);
4762
4766
  return i.className = r(i.className, Y.popoverContainerOpened), document.body.appendChild(n), t.height = i.offsetHeight, t.width = i.offsetWidth, n.remove(), this._size = t, t;
4763
4767
  }
@@ -4831,10 +4835,10 @@ var Uo = class e extends Lo {
4831
4835
  return e.filter((e) => !(e instanceof K) || e.title === void 0 ? !0 : !n.has(e.title.toLowerCase()));
4832
4836
  }
4833
4837
  addSearch() {
4834
- this.search = new Mo({
4838
+ this.search = new No({
4835
4839
  items: this.itemsDefault,
4836
4840
  placeholder: this.messages.search
4837
- }), this.search.on(jo.Search, (e) => {
4841
+ }), this.search.on(Mo.Search, (e) => {
4838
4842
  if (e.query === "") {
4839
4843
  this.cleanupPromotedItems(), this.onSearch({
4840
4844
  query: e.query,
@@ -4848,7 +4852,7 @@ var Uo = class e extends Lo {
4848
4852
  var r;
4849
4853
  return {
4850
4854
  item: n,
4851
- score: Ao(n, e.query),
4855
+ score: jo(n, e.query),
4852
4856
  chain: (r = t.get(n)) == null ? [] : r
4853
4857
  };
4854
4858
  }).filter(({ score: e }) => e > 0).sort((e, t) => t.score - e.score);
@@ -4873,12 +4877,12 @@ var Uo = class e extends Lo {
4873
4877
  this.promotedItemCache === null && (this.promotedItemCache = this.buildPromotedItemCache());
4874
4878
  let t = this.itemsDefault.map((t) => ({
4875
4879
  item: t,
4876
- score: Ao(t, e)
4880
+ score: jo(t, e)
4877
4881
  })).filter(({ score: e }) => e > 0).sort((e, t) => t.score - e.score), { parentChains: n } = this.promotedItemCache, r = this.promotedItemCache.items.map((t) => {
4878
4882
  var r;
4879
4883
  return {
4880
4884
  item: t,
4881
- score: Ao(t, e),
4885
+ score: jo(t, e),
4882
4886
  chain: (r = n.get(t)) == null ? [] : r
4883
4887
  };
4884
4888
  }).filter(({ score: e }) => e > 0).sort((e, t) => t.score - e.score);
@@ -4903,11 +4907,11 @@ var Uo = class e extends Lo {
4903
4907
  this.originalItemOrder = void 0;
4904
4908
  }
4905
4909
  }
4906
- }, Wo = "data-blok-table-cells";
4907
- function Go(e, t, n) {
4910
+ }, Go = "data-blok-table-cells";
4911
+ function Ko(e, t, n) {
4908
4912
  return e ? `background-color: ${n}` : t ? "background-color: transparent" : "";
4909
4913
  }
4910
- function Ko(e) {
4914
+ function qo(e) {
4911
4915
  if (e.length === 0) return {
4912
4916
  rows: 0,
4913
4917
  cols: 0,
@@ -4927,28 +4931,28 @@ function Ko(e) {
4927
4931
  cells: s
4928
4932
  };
4929
4933
  }
4930
- function qo(e) {
4934
+ function Jo(e) {
4931
4935
  let { data: t } = e;
4932
4936
  return typeof t.text == "string" ? t.text : Array.isArray(t.items) ? t.items.filter((e) => typeof e == "string").join(" ") : "";
4933
4937
  }
4934
- function Jo(e) {
4938
+ function Yo(e) {
4935
4939
  var t;
4936
4940
  let n = document.createElement("div");
4937
4941
  return n.innerHTML = e, (t = n.textContent) == null ? "" : t;
4938
4942
  }
4939
- function Yo(e) {
4940
- return Jo(qo(e));
4941
- }
4942
4943
  function Xo(e) {
4943
- return `<table ${Wo}='${JSON.stringify(e).replace(/'/g, "&#39;")}'>${e.cells.map((e) => `<tr>${e.map((e) => {
4944
- let t = e.blocks.map(qo).join(" "), n = [e.color ? `background-color: ${e.color}` : "", e.textColor ? `color: ${e.textColor}` : ""].filter(Boolean).join("; ");
4944
+ return Yo(Jo(e));
4945
+ }
4946
+ function Zo(e) {
4947
+ return `<table ${Go}='${JSON.stringify(e).replace(/'/g, "&#39;")}'>${e.cells.map((e) => `<tr>${e.map((e) => {
4948
+ let t = e.blocks.map(Jo).join(" "), n = [e.color ? `background-color: ${e.color}` : "", e.textColor ? `color: ${e.textColor}` : ""].filter(Boolean).join("; ");
4945
4949
  return `<td${n ? ` style="${n}"` : ""}>${t}</td>`;
4946
4950
  }).join("")}</tr>`).join("")}</table>`;
4947
4951
  }
4948
- function Zo(e) {
4949
- return e.cells.map((e) => e.map((e) => e.blocks.map(Yo).join(" ")).join(" ")).join("\n");
4952
+ function Qo(e) {
4953
+ return e.cells.map((e) => e.map((e) => e.blocks.map(Xo).join(" ")).join(" ")).join("\n");
4950
4954
  }
4951
- var Qo = new Set(["color", "background-color"]), $o = {
4955
+ var $o = new Set(["color", "background-color"]), es = {
4952
4956
  b: !0,
4953
4957
  strong: !0,
4954
4958
  i: !0,
@@ -4961,7 +4965,7 @@ var Qo = new Set(["color", "background-color"]), $o = {
4961
4965
  },
4962
4966
  mark: (e) => {
4963
4967
  let t = e.style, n = Array.from({ length: t.length }, (e, n) => t.item(n));
4964
- for (let e of n) Qo.has(e) || t.removeProperty(e);
4968
+ for (let e of n) $o.has(e) || t.removeProperty(e);
4965
4969
  return t.length > 0 ? { style: !0 } : {};
4966
4970
  }
4967
4971
  };
@@ -4969,32 +4973,32 @@ function $(e) {
4969
4973
  let t = e.replace(/\s/g, "");
4970
4974
  return t === "rgb(0,0,0)" || t === "#000000";
4971
4975
  }
4972
- function es(e) {
4976
+ function ts(e) {
4973
4977
  let t = e.cloneNode(!0);
4974
4978
  for (let e of Array.from(t.querySelectorAll("span"))) {
4975
4979
  var n, r, i;
4976
- let t = (n = e.getAttribute("style")) == null ? "" : n, a = /font-weight\s*:\s*(700|bold)/i.test(t), o = /font-style\s*:\s*italic/i.test(t), s = (/* @__PURE__ */ RegExp("(?<![a-z-])color\\s*:\\s*([^;]+)", "i")).exec(t), c = /background-color\s*:\s*([^;]+)/i.exec(t), l = s == null || (r = s[1]) == null ? void 0 : r.trim(), u = c == null || (i = c[1]) == null ? void 0 : i.trim(), d = l !== void 0 && !$(l), f = u !== void 0 && u !== "transparent" && !Mn(u) && !Nn(u);
4980
+ let t = (n = e.getAttribute("style")) == null ? "" : n, a = /font-weight\s*:\s*(700|bold)/i.test(t), o = /font-style\s*:\s*italic/i.test(t), s = (/* @__PURE__ */ RegExp("(?<![a-z-])color\\s*:\\s*([^;]+)", "i")).exec(t), c = /background-color\s*:\s*([^;]+)/i.exec(t), l = s == null || (r = s[1]) == null ? void 0 : r.trim(), u = c == null || (i = c[1]) == null ? void 0 : i.trim(), d = l !== void 0 && !$(l), f = u !== void 0 && u !== "transparent" && !Nn(u) && !Pn(u);
4977
4981
  if (!a && !o && !d && !f) continue;
4978
- let p = d ? H(l, "text") : "", m = f ? H(u, "bg") : "", h = [d ? `color: ${p}` : "", Go(f, d, m)].filter(Boolean).join("; "), g = e.innerHTML, _ = h ? `<mark style="${h};">${g}</mark>` : g, v = o ? `<i>${_}</i>` : _, y = a ? `<b>${v}</b>` : v;
4982
+ let p = d ? H(l, "text") : "", m = f ? H(u, "bg") : "", h = [d ? `color: ${p}` : "", Ko(f, d, m)].filter(Boolean).join("; "), g = e.innerHTML, _ = h ? `<mark style="${h};">${g}</mark>` : g, v = o ? `<i>${_}</i>` : _, y = a ? `<b>${v}</b>` : v;
4979
4983
  e.replaceWith(document.createRange().createContextualFragment(y));
4980
4984
  }
4981
4985
  for (let e of Array.from(t.querySelectorAll("a[style]"))) {
4982
4986
  var a, o, s;
4983
- let t = (a = e.getAttribute("style")) == null ? "" : a, n = (/* @__PURE__ */ RegExp("(?<![a-z-])color\\s*:\\s*([^;]+)", "i")).exec(t), r = /background-color\s*:\s*([^;]+)/i.exec(t), i = n == null || (o = n[1]) == null ? void 0 : o.trim(), c = r == null || (s = r[1]) == null ? void 0 : s.trim(), l = i !== void 0 && !$(i) && i !== "inherit", u = c !== void 0 && c !== "transparent" && c !== "inherit" && !Mn(c) && !Nn(c);
4987
+ let t = (a = e.getAttribute("style")) == null ? "" : a, n = (/* @__PURE__ */ RegExp("(?<![a-z-])color\\s*:\\s*([^;]+)", "i")).exec(t), r = /background-color\s*:\s*([^;]+)/i.exec(t), i = n == null || (o = n[1]) == null ? void 0 : o.trim(), c = r == null || (s = r[1]) == null ? void 0 : s.trim(), l = i !== void 0 && !$(i) && i !== "inherit", u = c !== void 0 && c !== "transparent" && c !== "inherit" && !Nn(c) && !Pn(c);
4984
4988
  if (!l && !u) continue;
4985
- let d = l ? H(i, "text") : "", f = u ? H(c, "bg") : "", p = [l ? `color: ${d}` : "", Go(u, l, f)].filter(Boolean).join("; "), m = e;
4989
+ let d = l ? H(i, "text") : "", f = u ? H(c, "bg") : "", p = [l ? `color: ${d}` : "", Ko(u, l, f)].filter(Boolean).join("; "), m = e;
4986
4990
  m.innerHTML = `<mark style="${p};">${m.innerHTML}</mark>`, m.style.removeProperty("color"), m.style.removeProperty("background-color");
4987
4991
  }
4988
4992
  for (let e of Array.from(t.querySelectorAll("p"))) {
4989
4993
  let t = document.createRange().createContextualFragment(e.innerHTML + "<br>");
4990
4994
  e.replaceWith(t);
4991
4995
  }
4992
- return N(t.innerHTML, $o).replace(/(<br\s*\/?>|\s)+$/i, "").trim();
4996
+ return N(t.innerHTML, es).replace(/(<br\s*\/?>|\s)+$/i, "").trim();
4993
4997
  }
4994
- function ts(e) {
4998
+ function ns(e) {
4995
4999
  if (!e) return null;
4996
5000
  let t = new DOMParser().parseFromString(e, "text/html").querySelector("table");
4997
- if (!t || t.hasAttribute(Wo)) return null;
5001
+ if (!t || t.hasAttribute(Go)) return null;
4998
5002
  let n = t.querySelectorAll("tr");
4999
5003
  if (n.length === 0) return null;
5000
5004
  let r = [];
@@ -5002,7 +5006,7 @@ function ts(e) {
5002
5006
  let t = e.querySelectorAll("td, th"), n = [];
5003
5007
  t.forEach((e) => {
5004
5008
  var t;
5005
- let r = es(e).split(/<br\s*\/?>/i).map((e) => e.trim()).filter(Boolean), i = { blocks: r.length > 0 ? r.map((e) => ({
5009
+ let r = ts(e).split(/<br\s*\/?>/i).map((e) => e.trim()).filter(Boolean), i = { blocks: r.length > 0 ? r.map((e) => ({
5006
5010
  tool: "paragraph",
5007
5011
  data: { text: e }
5008
5012
  })) : [{
@@ -5011,7 +5015,7 @@ function ts(e) {
5011
5015
  }] }, a = (t = e.getAttribute("style")) == null ? "" : t, o = /background-color\s*:\s*([^;]+)/i.exec(a);
5012
5016
  if (o != null && o[1]) {
5013
5017
  let e = o[1].trim();
5014
- !Mn(e) && !Nn(e) && (i.color = H(e, "bg"));
5018
+ !Nn(e) && !Pn(e) && (i.color = H(e, "bg"));
5015
5019
  }
5016
5020
  let s = (/* @__PURE__ */ RegExp("(?<![a-z-])color\\s*:\\s*([^;]+)", "i")).exec(a);
5017
5021
  s != null && s[1] && !$(s[1].trim()) && (i.textColor = H(s[1].trim(), "text")), n.push(i);
@@ -5029,48 +5033,48 @@ function ts(e) {
5029
5033
  cells: r
5030
5034
  };
5031
5035
  }
5032
- function ns(e) {
5033
- let t = RegExp(`${Wo}='([^']*)'|${Wo}="([^"]*)"`, "s").exec(e);
5036
+ function rs(e) {
5037
+ let t = RegExp(`${Go}='([^']*)'|${Go}="([^"]*)"`, "s").exec(e);
5034
5038
  if (!t) return null;
5035
5039
  try {
5036
5040
  var n;
5037
5041
  let e = (n = t[1]) == null ? t[2] : n;
5038
5042
  if (e === void 0) return null;
5039
5043
  let r = e.replace(/&#39;/g, "'").replace(/&quot;/g, "\"").replace(/&lt;/g, "<").replace(/&gt;/g, ">").replace(/&amp;/g, "&");
5040
- return rs(JSON.parse(r));
5044
+ return is(JSON.parse(r));
5041
5045
  } catch (e) {
5042
5046
  return null;
5043
5047
  }
5044
5048
  }
5045
- function rs(e) {
5049
+ function is(e) {
5046
5050
  let t = e.cells.flatMap((e) => e.flatMap((e) => e.blocks));
5047
- for (let e of t) typeof e.data.text == "string" && (e.data.text = N(e.data.text, $o));
5051
+ for (let e of t) typeof e.data.text == "string" && (e.data.text = N(e.data.text, es));
5048
5052
  return e;
5049
5053
  }
5050
5054
  //#endregion
5051
5055
  //#region src/components/modules/toolbar/tooltip.ts
5052
- var is = (e) => {
5056
+ var as = (e) => {
5053
5057
  e.style.color = "white", e.style.fontWeight = "500";
5054
- }, as = function(e) {
5058
+ }, os = function(e) {
5055
5059
  let t = T.make("div");
5056
5060
  return t.style.display = "flex", t.style.flexDirection = "column", t.style.gap = "4px", t.style.color = "rgba(255, 255, 255, 0.55)", e.forEach((e) => {
5057
5061
  let n = T.make("div");
5058
5062
  if (Array.isArray(e)) e.forEach((e) => {
5059
5063
  if (e.highlight) {
5060
5064
  let t = T.make("span", null, { textContent: e.text });
5061
- is(t), n.appendChild(t);
5065
+ as(t), n.appendChild(t);
5062
5066
  } else n.appendChild(document.createTextNode(e.text));
5063
5067
  });
5064
5068
  else {
5065
5069
  let t = e.indexOf(" ");
5066
5070
  if (t > 0) {
5067
5071
  let r = e.substring(0, t), i = e.substring(t), a = T.make("span", null, { textContent: r });
5068
- is(a), n.appendChild(a), n.appendChild(document.createTextNode(i));
5072
+ as(a), n.appendChild(a), n.appendChild(document.createTextNode(i));
5069
5073
  } else n.appendChild(document.createTextNode(e));
5070
5074
  }
5071
5075
  t.appendChild(n);
5072
5076
  }), t;
5073
- }, os, ss = class {
5077
+ }, ss, cs = class {
5074
5078
  constructor({ api: e }) {
5075
5079
  this.i18nAPI = e.i18n, this.blocksAPI = e.blocks, this.selectionAPI = e.selection, this.toolsAPI = e.tools, this.caretAPI = e.caret, this.i18nInstance = {
5076
5080
  t: (e, t) => this.i18nAPI.t(e),
@@ -5079,7 +5083,7 @@ var is = (e) => {
5079
5083
  }
5080
5084
  async render() {
5081
5085
  var e = this;
5082
- let t = tt.get();
5086
+ let t = nt.get();
5083
5087
  if (t === null) return [];
5084
5088
  let n = e.blocksAPI.getBlockByElement(t.anchorNode);
5085
5089
  if (n === void 0) return [];
@@ -5118,10 +5122,10 @@ var is = (e) => {
5118
5122
  };
5119
5123
  }
5120
5124
  };
5121
- os = ss, os.isInline = !0;
5125
+ ss = cs, ss.isInline = !0;
5122
5126
  //#endregion
5123
5127
  //#region src/tools/toggle/constants.ts
5124
- var cs = "toggle", ls = "tools.toggle.placeholder", us = "tools.toggle.bodyPlaceholder", ds = "tools.toggle.ariaLabelCollapse", fs = "tools.toggle.ariaLabelExpand", ps = "outline-hidden py-[7px] mt-[2px] mb-px", ms = "outline-hidden pl-0.5 leading-[1.5] flex-1 min-w-0", hs = "flex items-center", gs = "flex-shrink-0 p-[8px] flex items-center justify-center cursor-pointer select-none rounded can-hover:hover:bg-item-hover-bg transition-colors duration-200 ease-in-out focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:outline-none in-data-[blok-toggle-empty=true]:text-gray-text", _s = io, vs = "hidden pl-7 pt-[8px] pb-[8px] text-gray-text leading-[1.5] cursor-pointer select-none", ys = "pl-7", bs = {
5128
+ var ls = "toggle", us = "tools.toggle.placeholder", ds = "tools.toggle.bodyPlaceholder", fs = "tools.toggle.ariaLabelCollapse", ps = "tools.toggle.ariaLabelExpand", ms = "outline-hidden py-[7px] mt-[2px] mb-px", hs = "outline-hidden pl-0.5 leading-[1.5] flex-1 min-w-0", gs = "flex items-center", _s = "flex-shrink-0 p-[8px] flex items-center justify-center cursor-pointer select-none rounded can-hover:hover:bg-item-hover-bg transition-colors duration-200 ease-in-out focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:outline-none in-data-[blok-toggle-empty=true]:text-gray-text", vs = ao, ys = "hidden pl-7 pt-[8px] pb-[8px] text-gray-text leading-[1.5] cursor-pointer select-none", bs = "pl-7", xs = {
5125
5129
  toggleOpen: "data-blok-toggle-open",
5126
5130
  toggleArrow: "data-blok-toggle-arrow",
5127
5131
  toggleContent: "data-blok-toggle-content",
@@ -5130,4 +5134,4 @@ var cs = "toggle", ls = "tools.toggle.placeholder", us = "tools.toggle.bodyPlace
5130
5134
  toggleEmpty: "data-blok-toggle-empty"
5131
5135
  };
5132
5136
  //#endregion
5133
- export { $i as $, De as $i, Hr as $n, bn as $r, Di as $t, Po as A, c as Aa, tt as Ai, gi as An, Jn as Ar, yi as At, ri as B, Be as Bi, Ti as Bn, rr as Br, va as Bt, Uo as C, ee as Ca, wt as Ci, qa as Cn, Mr as Cr, mo as Ct, Y as D, f as Da, bt as Di, Ji as Dn, kr as Dr, Wi as Dt, X as E, m as Ea, N as Ei, ji as En, Ar as Er, go as Et, Ia as F, Ue as Fi, ki as Fn, cr as Fr, Mi as Ft, Ta as G, Pe as Gi, oo as Gn, Yn as Gr, Ii as Gt, ua as H, Le as Hi, si as Hn, ir as Hr, Ni as Ht, Ra as I, ze as Ii, Ci as In, tr as Ir, Ai as It, pi as J, je as Ji, ba as Jn, Zn as Jr, xa as Jt, lo as K, Ne as Ki, ti as Kn, Xn as Kr, ii as Kt, Pa as L, Ve as Li, Vi as Ln, ar as Lr, ha as Lt, K as M, o as Ma, qe as Mi, fa as Mn, Un as Mr, xi as Mt, G as N, Ge as Ni, pa as Nn, or as Nr, Si as Nt, Fo as O, l as Oa, at as Oi, li as On, gr as Or, _i as Ot, La as P, Je as Pi, ci as Pn, Wn as Pr, qi as Pt, Qi as Q, Ee as Qi, Wr as Qn, H as Qr, Oi as Qt, Fa as R, He as Ri, Hi as Rn, er as Rr, _a as Rt, Ko as S, _ as Sa, Rt as Si, Za as Sn, Nr as Sr, _o as St, Z as T, p as Ta, I as Ti, di as Tn, jr as Tr, ho as Tt, Yi as U, D as Ui, Ma as Un, nr as Ur, Pi as Ut, Gi as V, Ie as Vi, zi as Vn, Qn as Vr, Aa as Vt, za as W, Fe as Wi, ja as Wn, qn as Wr, Fi as Wt, hi as X, ke as Xi, vo as Xn, sr as Xr, la as Xt, mi as Y, Me as Yi, ya as Yn, Hn as Yr, Na as Yt, ka as Z, T as Zi, Vr as Zn, xn as Zr, Ei as Zt, Xo as _, te as _a, Ht as _i, Wa as _n, wr as _r, ea as _t, ps as a, ge as aa, mn as ai, uo as an, fr as ar, ni as at, ns as b, h as ba, zt as bi, Ya as bn, pr as br, Ca as bt, ms as c, fe as ca, Yt as ci, no as cn, Lr as cr, Zi as ct, ys as d, le as da, cn as di, Ri as dn, yr as dr, wa as dt, we as ea, V as ei, Ki as en, Sr as er, Sa as et, hs as f, ce as fa, ln as fi, ma as fn, _r as fr, ia as ft, Qo as g, ne as ga, Gt as gi, $a as gn, ur as gr, na as gt, as as h, ue as ha, Kt as hi, Ha as hn, vr as hr, ta as ht, gs as i, ye as ia, pn as ii, da as in, dr as ir, Da as it, J as j, a as ja, We as ji, to as jn, lr as jr, bi as jt, Io as k, s as ka, M as ki, Ea as kn, Gn as kr, vi as kt, ls as l, de as la, $t as li, so as ln, xr as lr, Bi as lt, ss as m, ae as ma, Jt as mi, Ka as mn, hr as mr, aa as mt, fs as n, Te as na, z as ni, oi as nn, Tr as nr, Li as nt, us as o, C as oa, Zt as oi, fi as on, mr as or, sa as ot, cs as p, se as pa, dn as pi, Ga as pn, Fr as pr, oa as pt, ei as q, Ae as qi, wi as qn, Kn as qr, ai as qt, _s as r, xe as ra, fn as ri, ui as rn, Cr as rr, Ba as rt, vs as s, w as sa, Qt as si, Oa as sn, Rr as sr, ro as st, ds as t, Ce as ta, B as ti, co as tn, Ir as tr, ao as tt, bs as u, oe as ua, Xt as ui, Xi as un, br as ur, eo as ut, Zo as v, re as va, Ut as vi, Xa as vn, Dr as vr, ra as vt, Lo as w, u as wa, Tt as wi, Ja as wn, Pr as wr, po as wt, ts as x, g as xa, Bt as xi, Qa as xn, Or as xr, fo as xt, $ as y, b as ya, Vt as yi, Ua as yn, Er as yr, Va as yt, ca as z, Re as zi, Ui as zn, $n as zr, ga as zt };
5137
+ export { ea as $, Ee as $i, Ur as $n, xn as $r, Oi as $t, Fo as A, s as Aa, nt as Ai, _i as An, Yn as Ar, bi as At, ii as B, Re as Bi, Ei as Bn, ir as Br, ya as Bt, Wo as C, _ as Ca, Tt as Ci, Ja as Cn, Nr as Cr, ho as Ct, Y as D, m as Da, xt as Di, Yi as Dn, Ar as Dr, Gi as Dt, X as E, p as Ea, N as Ei, Mi as En, jr as Er, _o as Et, La as F, We as Fi, Ai as Fn, lr as Fr, Ni as Ft, Ea as G, Fe as Gi, so as Gn, Xn as Gr, Li as Gt, da as H, Ie as Hi, ci as Hn, ar as Hr, Pi as Ht, za as I, Ue as Ii, wi as In, nr as Ir, ji as It, mi as J, Ae as Ji, xa as Jn, Qn as Jr, Sa as Jt, uo as K, Pe as Ki, ni as Kn, Zn as Kr, ai as Kt, Fa as L, ze as Li, Hi as Ln, or as Lr, ga as Lt, K as M, a as Ma, Je as Mi, pa as Mn, Wn as Mr, Si as Mt, G as N, o as Na, Ke as Ni, ma as Nn, sr as Nr, Ci as Nt, Io as O, f as Oa, ot as Oi, ui as On, _r as Or, vi as Ot, Ra as P, Ye as Pi, li as Pn, Gn as Pr, Ji as Pt, $i as Q, T as Qi, Gr as Qn, H as Qr, ki as Qt, Ia as R, Ve as Ri, Ui as Rn, tr as Rr, va as Rt, qo as S, g as Sa, zt as Si, Qa as Sn, Pr as Sr, vo as St, Z as T, u as Ta, I as Ti, fi as Tn, Mr as Tr, go as Tt, Xi as U, Le as Ui, Na as Un, rr as Ur, Fi as Ut, Ki as V, Be as Vi, Bi as Vn, $n as Vr, ja as Vt, Ba as W, D as Wi, Ma as Wn, Jn as Wr, Ii as Wt, gi as X, Me as Xi, yo as Xn, cr as Xr, ua as Xt, hi as Y, je as Yi, ba as Yn, Un as Yr, Pa as Yt, Aa as Z, ke as Zi, Hr as Zn, Sn as Zr, Di as Zt, Zo as _, ne as _a, Ut as _i, Ga as _n, Tr as _r, ta as _t, ms as a, ye as aa, hn as ai, fo as an, pr as ar, ri as at, rs as b, b as ba, Bt as bi, Xa as bn, mr as br, wa as bt, hs as c, w as ca, Xt as ci, ro as cn, Rr as cr, Qi as ct, bs as d, oe as da, ln as di, zi as dn, br as dr, Ta as dt, De as ea, V as ei, qi as en, Cr as er, Ca as et, gs as f, le as fa, un as fi, ha as fn, vr as fr, aa as ft, $o as g, ue as ga, Kt as gi, eo as gn, dr as gr, ra as gt, os as h, ae as ha, qt as hi, Ua as hn, yr as hr, na as ht, _s as i, xe as ia, mn as ii, fa as in, fr as ir, Oa as it, J as j, c as ja, Ge as ji, no as jn, ur as jr, xi as jt, Lo as k, l as ka, M as ki, Da as kn, Kn as kr, yi as kt, us as l, fe as la, en as li, co as ln, Sr as lr, Vi as lt, cs as m, se as ma, Yt as mi, qa as mn, gr as mr, oa as mt, ps as n, Ce as na, z as ni, si as nn, Er as nr, Ri as nt, ds as o, ge as oa, Qt as oi, pi as on, hr as or, ca as ot, ls as p, ce as pa, fn as pi, Ka as pn, Ir as pr, sa as pt, ti as q, Ne as qi, Ti as qn, qn as qr, oi as qt, vs as r, Te as ra, pn as ri, di as rn, wr as rr, Va as rt, ys as s, C as sa, $t as si, ka as sn, zr as sr, io as st, fs as t, we as ta, B as ti, lo as tn, Lr as tr, oo as tt, xs as u, de as ua, Zt as ui, Zi as un, xr as ur, to as ut, Qo as v, te as va, Wt as vi, Za as vn, Or as vr, ia as vt, Ro as w, ee as wa, Et as wi, Ya as wn, Fr as wr, mo as wt, ns as x, h as xa, Vt as xi, $a as xn, kr as xr, po as xt, $ as y, re as ya, Ht as yi, Wa as yn, Dr as yr, Ha as yt, la as z, He as zi, Wi as zn, er as zr, _a as zt };